From 2c8b9cdbb576236cb2a946b49d6de3f0dfefbdf3 Mon Sep 17 00:00:00 2001 From: Chunkit Yeung Date: Tue, 6 Dec 2022 11:28:09 +0800 Subject: [PATCH 1/2] =?UTF-8?q?UI=E7=95=8C=E9=9D=A2=E5=B0=8F=E9=83=A8?= =?UTF-8?q?=E5=88=86=E6=94=B9=E5=8A=A8=EF=BC=9B=20=E5=AE=9E=E4=BD=93?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=E6=94=B9=E5=8A=A8=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SYS.Application/Business/Room/RoomService.cs | 14 ++ SYS.Core/Business/Customer/Custo.cs | 11 +- SYS.Core/Business/Room/Room.cs | 15 +- SYS.Core/Sys/NavBar/NavBar.cs | 4 + SYS.FormUI/AppFunction/FrmAddAdmin.cs | 9 - SYS.FormUI/AppFunction/FrmAddRoom.Designer.cs | 1 - SYS.FormUI/AppFunction/FrmAddWorker.cs | 15 -- SYS.FormUI/AppFunction/FrmCash.cs | 4 - SYS.FormUI/AppFunction/FrmChangePosition.cs | 4 - SYS.FormUI/AppFunction/FrmChangeRoom.cs | 4 - SYS.FormUI/AppFunction/FrmChangeWorker.cs | 4 - SYS.FormUI/AppFunction/FrmCheckIn.cs | 4 - SYS.FormUI/AppFunction/FrmCheckList.cs | 4 - SYS.FormUI/AppFunction/FrmCheckOutForm.cs | 4 - SYS.FormUI/AppFunction/FrmCustoManager.cs | 4 - SYS.FormUI/AppFunction/FrmCustoSpend.cs | 4 - SYS.FormUI/AppFunction/FrmCustomerManager.cs | 4 - SYS.FormUI/AppFunction/FrmEditInputs.cs | 5 - SYS.FormUI/AppFunction/FrmNotice.cs | 5 - SYS.FormUI/AppFunction/FrmOperation.cs | 5 - SYS.FormUI/AppFunction/FrmReserList.cs | 5 - SYS.FormUI/AppFunction/FrmReserManager.cs | 4 - .../AppFunction/FrmRoomManager.Designer.cs | 2 +- SYS.FormUI/AppFunction/FrmRoomManager.cs | 34 +-- SYS.FormUI/AppFunction/FrmRoomManager.resx | 12 +- SYS.FormUI/AppFunction/FrmRoomStateManager.cs | 4 - SYS.FormUI/AppFunction/FrmSelectCustoInfo.cs | 5 - SYS.FormUI/AppFunction/FrmSellThing.cs | 4 - SYS.FormUI/AppFunction/FrmSellThingManager.cs | 4 - SYS.FormUI/AppFunction/FrmUpLoadNotice.cs | 4 - SYS.FormUI/AppFunction/FrmWorkerCheckInfo.cs | 4 - SYS.FormUI/AppFunction/FrmWorkerManager.cs | 4 - SYS.FormUI/AppFunction/FrmWtiInfo.cs | 4 - SYS.FormUI/AppMain/FrmBackgroundSystem.cs | 16 +- SYS.FormUI/AppMain/FrmMain.Designer.cs | 205 +++++++++--------- SYS.FormUI/AppMain/FrmMain.cs | 41 ++-- .../AppUserControls/ucBaseInformation.cs | 4 - .../AppUserControls/ucEducationInformation.cs | 4 - SYS.FormUI/AppUserControls/ucHistory.cs | 4 - .../AppUserControls/ucPositionInformation.cs | 4 - SYS.FormUI/AppUserControls/ucRoomList.cs | 24 +- SYS.FormUI/Font/UI-FontUtil.cs | 68 +++--- SYS.FormUI/Properties/AssemblyInfo.cs | 4 +- SYS.FormUI/Properties/Resources.Designer.cs | 4 +- SYS.FormUI/Properties/Resources.resx | 138 ++++++------ SYS.FormUI/Resources/arrow-down-b.png | Bin 424 -> 1706 bytes SYS.FormUI/Resources/close.png | Bin 447 -> 1789 bytes SYS.FormUI/Resources/settings2.png | Bin 1174 -> 2557 bytes .../Resources/\346\211\223\345\215\241.png" | Bin 0 -> 16172 bytes SYS.FormUI/SYS.FormUI.csproj | 22 +- 50 files changed, 304 insertions(+), 448 deletions(-) create mode 100644 "SYS.FormUI/Resources/\346\211\223\345\215\241.png" diff --git a/SYS.Application/Business/Room/RoomService.cs b/SYS.Application/Business/Room/RoomService.cs index ef65093..701051e 100644 --- a/SYS.Application/Business/Room/RoomService.cs +++ b/SYS.Application/Business/Room/RoomService.cs @@ -24,6 +24,7 @@ using System; using System.Collections.Generic; using System.Linq; +using jvncorelib_fr.EntityLib; using MySql.Data.MySqlClient; using SYS.Common; using SYS.Core; @@ -99,6 +100,9 @@ namespace SYS.Application roomTypes = base.Change().GetList(a => a.delete_mk != 1); List rooms = new List(); rooms = base.GetList(a => a.delete_mk != 1).OrderBy(a => a.RoomNo).ToList(); + var listCustoNo = rooms.Select(a => a.CustoNo).Distinct().ToList(); + List custos = new List(); + custos = base.Change().GetList(a => listCustoNo.Contains(a.CustoNo)); rooms.ForEach(source => { var roomState = roomStates.FirstOrDefault(a => a.RoomStateId == source.RoomStateId); @@ -106,6 +110,9 @@ namespace SYS.Application var roomType = roomTypes.FirstOrDefault(a => a.Roomtype == source.RoomType); source.RoomName = string.IsNullOrEmpty(roomType.RoomName) ? "" : roomType.RoomName; + var custo = custos.FirstOrDefault(a => a.CustoNo.Equals(source.CustoNo)); + source.CustoName = custo.IsNullOrEmpty() ? "" : custo.CustoName; + //把入住时间格式化 source.CheckTimeFormat = string.IsNullOrEmpty(source.CheckTime + "") ? "" : Convert.ToDateTime(source.CheckTime).ToString("yyyy-MM-dd HH:mm"); @@ -129,12 +136,19 @@ namespace SYS.Application var listTypes = roomTypes.Select(a => a.Roomtype).Distinct().ToList(); List rooms = new List(); rooms = base.GetList(a => a.delete_mk != 1 && listTypes.Contains(a.RoomType)).OrderBy(a => a.RoomNo).ToList(); + var listCustoNo = rooms.Select(a => a.CustoNo).Distinct().ToList(); + List custos = new List(); + custos = base.Change().GetList(a => listCustoNo.Contains(a.CustoNo)); rooms.ForEach(source => { var roomState = roomStates.FirstOrDefault(a => a.RoomStateId == source.RoomStateId); source.RoomState = string.IsNullOrEmpty(roomState.RoomStateName) ? "" : roomState.RoomStateName; var roomType = roomTypes.FirstOrDefault(a => a.Roomtype == source.RoomType); source.RoomName = string.IsNullOrEmpty(roomType.RoomName) ? "" : roomType.RoomName; + + var custo = custos.FirstOrDefault(a => a.CustoNo.Equals(source.CustoNo)); + source.CustoName = custo.IsNullOrEmpty() ? "" : custo.CustoName; + }); return rooms; } diff --git a/SYS.Core/Business/Customer/Custo.cs b/SYS.Core/Business/Customer/Custo.cs index 2cb892b..25ae389 100644 --- a/SYS.Core/Business/Customer/Custo.cs +++ b/SYS.Core/Business/Customer/Custo.cs @@ -29,44 +29,53 @@ namespace SYS.Core /// /// 客户信息 /// - [SqlSugar.SugarTable("userinfo")] + [SqlSugar.SugarTable("customer")] public class Custo { /// /// 客户编号 /// + [SqlSugar.SugarColumn(ColumnName = "custo_no",IsPrimaryKey = true)] public string CustoNo { get; set; } /// /// 客户名称 /// + [SqlSugar.SugarColumn(ColumnName = "custo_name", IsNullable = false)] public string CustoName { get; set; } /// /// 客户性别 /// + [SqlSugar.SugarColumn(ColumnName = "custo_sex", IsNullable = true)] public int CustoSex { get; set; } /// /// 客户电话 /// + [SqlSugar.SugarColumn(ColumnName = "custo_tel", IsNullable = false)] public string CustoTel { get; set; } /// /// 证件类型 /// + [SqlSugar.SugarColumn(ColumnName = "passport_type", IsNullable = false)] public int PassportType { get; set; } /// /// 证件号码 /// + [SqlSugar.SugarColumn(ColumnName = "passport_id", IsNullable = false)] public string CustoID { get; set; } /// /// 居住地址 /// + [SqlSugar.SugarColumn(ColumnName = "custo_address", IsNullable = true)] public string CustoAdress { get; set; } /// /// 出生日期 /// + [SqlSugar.SugarColumn(ColumnName = "custo_birth", IsNullable = true)] public DateTime CustoBirth { get; set; } /// /// 客户类型 /// + [SqlSugar.SugarColumn(ColumnName = "custo_type", IsNullable = false)] public int CustoType { get; set; } /// /// 客户类型 diff --git a/SYS.Core/Business/Room/Room.cs b/SYS.Core/Business/Room/Room.cs index 6d27dbe..9939b7b 100644 --- a/SYS.Core/Business/Room/Room.cs +++ b/SYS.Core/Business/Room/Room.cs @@ -36,26 +36,37 @@ namespace SYS.Core /// /// 房间编号 /// + [SqlSugar.SugarColumn(ColumnName = "room_no", IsPrimaryKey = true)] public string RoomNo { get; set; } /// /// 房间类型 /// + [SqlSugar.SugarColumn(ColumnName = "room_type")] public int RoomType { get; set; } /// /// 客户编号 /// + [SqlSugar.SugarColumn(ColumnName = "custo_no")] public string CustoNo { get; set; } /// + /// 客户姓名 + /// + [SqlSugar.SugarColumn(IsIgnore = true)] + public string CustoName { get; set; } + /// /// 最后一次入住时间 /// + [SqlSugar.SugarColumn(ColumnName = "check_in_time")] public DateTime? CheckTime { get; set; } /// /// 最后一次退房时间 /// + [SqlSugar.SugarColumn(ColumnName = "check_out_time")] public DateTime? CheckOutTime { get; set; } /// /// 房间状态ID /// + [SqlSugar.SugarColumn(ColumnName = "room_state_id")] public int RoomStateId { get; set; } /// /// 房间状态 @@ -65,15 +76,17 @@ namespace SYS.Core /// /// 房间单价 /// + [SqlSugar.SugarColumn(ColumnName = "room_rent")] public decimal RoomMoney { get; set; } /// /// 房间押金 /// - [SqlSugar.SugarColumn(ColumnName = "deposit")] + [SqlSugar.SugarColumn(ColumnName = "room_deposit")] public decimal RoomDeposit { get; set; } /// /// 房间位置 /// + [SqlSugar.SugarColumn(ColumnName = "room_position")] public string RoomPosition { get; set; } /// /// 客户类型名称 diff --git a/SYS.Core/Sys/NavBar/NavBar.cs b/SYS.Core/Sys/NavBar/NavBar.cs index 32ff195..ba568b8 100644 --- a/SYS.Core/Sys/NavBar/NavBar.cs +++ b/SYS.Core/Sys/NavBar/NavBar.cs @@ -34,6 +34,10 @@ namespace SYS.Core /// public string nav_event { get; set; } /// + /// 导航控件事件 + /// + public int margin_left { get; set; } + /// /// 删除标记 /// public int delete_mk { get; set; } diff --git a/SYS.FormUI/AppFunction/FrmAddAdmin.cs b/SYS.FormUI/AppFunction/FrmAddAdmin.cs index eb3d430..2ec60cf 100644 --- a/SYS.FormUI/AppFunction/FrmAddAdmin.cs +++ b/SYS.FormUI/AppFunction/FrmAddAdmin.cs @@ -105,15 +105,6 @@ namespace SYS.FormUI private void btnReset_Click(object sender, EventArgs e) { - foreach (Control item in this.Controls) - { - switch (item.GetType().ToString()) - { - case "Sunny.UI.UITextBox": - item.Text = ""; - break; - } - } } } } diff --git a/SYS.FormUI/AppFunction/FrmAddRoom.Designer.cs b/SYS.FormUI/AppFunction/FrmAddRoom.Designer.cs index eb3ee4b..b229da2 100644 --- a/SYS.FormUI/AppFunction/FrmAddRoom.Designer.cs +++ b/SYS.FormUI/AppFunction/FrmAddRoom.Designer.cs @@ -170,7 +170,6 @@ this.txtDeposit.Name = "txtDeposit"; this.txtDeposit.Padding = new System.Windows.Forms.Padding(5); this.txtDeposit.Radius = 20; - this.txtDeposit.ReadOnly = true; this.txtDeposit.Size = new System.Drawing.Size(128, 35); this.txtDeposit.Style = Sunny.UI.UIStyle.Custom; this.txtDeposit.StyleCustomMode = true; diff --git a/SYS.FormUI/AppFunction/FrmAddWorker.cs b/SYS.FormUI/AppFunction/FrmAddWorker.cs index 25bd52c..876fe29 100644 --- a/SYS.FormUI/AppFunction/FrmAddWorker.cs +++ b/SYS.FormUI/AppFunction/FrmAddWorker.cs @@ -158,21 +158,6 @@ namespace SYS.FormUI bool dr = UIMessageBox.Show("修改操作仅能修改姓名、性别、电话号码、联系地址、民族、面貌以及最高学历,以上是否知晓?点击确定继续进行修改!", "修改提醒",UIStyle.Orange, UIMessageBoxButtons.OKCancel); if (dr == true) { - foreach (Control item in this.Controls) - { - switch (item.Name) - { - case "Sunny.UI.UITextBox": - (item as Sunny.UI.UITextBox).ReadOnly = true; - break; - case "Sunny.UI.UIComboBox": - (item as Sunny.UI.UIComboBox).ReadOnly = true; - break; - case "Sunny.UI.UIDatePicker": - (item as Sunny.UI.UIDatePicker).ReadOnly = true; - break; - } - } WorkerNo.Text = FrmChangeWorker.wk_WorkerNo; WorkerName.Text = FrmChangeWorker.wk_WorkerName; cboSex.Text = FrmChangeWorker.wk_WorkerSex; diff --git a/SYS.FormUI/AppFunction/FrmCash.cs b/SYS.FormUI/AppFunction/FrmCash.cs index 44999b2..51b62d5 100644 --- a/SYS.FormUI/AppFunction/FrmCash.cs +++ b/SYS.FormUI/AppFunction/FrmCash.cs @@ -41,10 +41,6 @@ namespace SYS.FormUI private void FrmCash_Load(object sender, EventArgs e) { - foreach (Control item in this.Controls) - { - item.Font = UI_FontUtil.mainFont; - } //获取所有部门信息 cboClub.DataSource = new BaseService().SelectDeptAll(); cboClub.DisplayMember = "dept_name"; diff --git a/SYS.FormUI/AppFunction/FrmChangePosition.cs b/SYS.FormUI/AppFunction/FrmChangePosition.cs index a2ae0f2..87d4044 100644 --- a/SYS.FormUI/AppFunction/FrmChangePosition.cs +++ b/SYS.FormUI/AppFunction/FrmChangePosition.cs @@ -44,10 +44,6 @@ namespace SYS.FormUI private void FrmChangePosition_Load(object sender, EventArgs e) { - foreach (Control item in this.Controls) - { - item.Font = UI_FontUtil.scorllingFont; - } txtworkerId.Text = FrmChangeWorker.wk_WorkerNo; txtworkerName.Text = FrmChangeWorker.wk_WorkerName; txtClub.Text = FrmChangeWorker.wk_WorkerClub; diff --git a/SYS.FormUI/AppFunction/FrmChangeRoom.cs b/SYS.FormUI/AppFunction/FrmChangeRoom.cs index 6a1551c..d3079b5 100644 --- a/SYS.FormUI/AppFunction/FrmChangeRoom.cs +++ b/SYS.FormUI/AppFunction/FrmChangeRoom.cs @@ -41,10 +41,6 @@ namespace SYS.FormUI private void FrmChangeRoom_Load(object sender, EventArgs e) { - foreach (Control item in this.Controls) - { - item.Font = UI_FontUtil.scorllingFont; - } string rno = cboRoomList.Text; cboRoomList.DataSource = new RoomService().SelectCanUseRoomAll(); cboRoomList.ValueMember = "RoomNo"; diff --git a/SYS.FormUI/AppFunction/FrmChangeWorker.cs b/SYS.FormUI/AppFunction/FrmChangeWorker.cs index ad1328d..6bef312 100644 --- a/SYS.FormUI/AppFunction/FrmChangeWorker.cs +++ b/SYS.FormUI/AppFunction/FrmChangeWorker.cs @@ -59,10 +59,6 @@ namespace SYS.FormUI } private void FrmChangeWorker_Load(object sender, EventArgs e) { - foreach (Control item in this.Controls) - { - item.Font = UI_FontUtil.roomControlFont; - } if (AdminInfo.isAdmin == false && AdminInfo.Type != "GeneralManager" && AdminInfo.Type != "HRManager") { btnUpWorker.Enabled = false; diff --git a/SYS.FormUI/AppFunction/FrmCheckIn.cs b/SYS.FormUI/AppFunction/FrmCheckIn.cs index 51fc237..34df48e 100644 --- a/SYS.FormUI/AppFunction/FrmCheckIn.cs +++ b/SYS.FormUI/AppFunction/FrmCheckIn.cs @@ -51,10 +51,6 @@ namespace SYS.FormUI #region 窗体加载事件方法 private void FrmCheckIn_Load(object sender, EventArgs e) { - foreach (Control item in this.Controls) - { - item.Font = UI_FontUtil.controlFont; - } txtRoomNo.Text = ucRoomList.rm_RoomNo; Room r = new RoomService().SelectRoomByRoomNo(txtRoomNo.Text); RoomType t = new RoomTypeService().SelectRoomTypeByRoomNo(txtRoomNo.Text); diff --git a/SYS.FormUI/AppFunction/FrmCheckList.cs b/SYS.FormUI/AppFunction/FrmCheckList.cs index 7baf294..0da5640 100644 --- a/SYS.FormUI/AppFunction/FrmCheckList.cs +++ b/SYS.FormUI/AppFunction/FrmCheckList.cs @@ -38,10 +38,6 @@ namespace SYS.FormUI private void FrmCashList_Load(object sender, EventArgs e) { - foreach (Control item in this.Controls) - { - item.Font = UI_FontUtil.mainFont; - } dgvCheckInfo.AutoGenerateColumns = false; dgvCheckInfo.DataSource = new CheckInfoService().SelectCheckInfoAll(); diff --git a/SYS.FormUI/AppFunction/FrmCheckOutForm.cs b/SYS.FormUI/AppFunction/FrmCheckOutForm.cs index b9f80cd..74876f2 100644 --- a/SYS.FormUI/AppFunction/FrmCheckOutForm.cs +++ b/SYS.FormUI/AppFunction/FrmCheckOutForm.cs @@ -84,10 +84,6 @@ namespace SYS.FormUI #region 窗体加载事件 private void FrmCheckOutForm_Load(object sender, EventArgs e) { - foreach (Control item in this.Controls) - { - item.Font = UI_FontUtil.scorllingFont; - } #region 加载客户类型信息 List lstSourceGrid = new BaseService().SelectCustoTypeAllCanUse(); this.cboCustoType.DataSource = lstSourceGrid; diff --git a/SYS.FormUI/AppFunction/FrmCustoManager.cs b/SYS.FormUI/AppFunction/FrmCustoManager.cs index 8121e4f..8f50b35 100644 --- a/SYS.FormUI/AppFunction/FrmCustoManager.cs +++ b/SYS.FormUI/AppFunction/FrmCustoManager.cs @@ -58,10 +58,6 @@ namespace SYS.FormUI private void FrmCustoManager_Load(object sender, EventArgs e) { - foreach (Control item in this.Controls) - { - item.Font = UI_FontUtil.childControlFont; - } //dgvCustomerList.AutoGenerateColumns = false; LoadCustomer(); LoadCustoType(); diff --git a/SYS.FormUI/AppFunction/FrmCustoSpend.cs b/SYS.FormUI/AppFunction/FrmCustoSpend.cs index 45a7c20..f8c5845 100644 --- a/SYS.FormUI/AppFunction/FrmCustoSpend.cs +++ b/SYS.FormUI/AppFunction/FrmCustoSpend.cs @@ -37,10 +37,6 @@ namespace SYS.FormUI private void FrmCustoSpend_Load(object sender, EventArgs e) { - foreach (Control label in this.Controls) - { - label.Font = UI_FontUtil.childControlFont; - } dgvSpendList.AutoGenerateColumns = false; dgvSpendList.DataSource = new SpendService().SelectSpendInfoAll(); } diff --git a/SYS.FormUI/AppFunction/FrmCustomerManager.cs b/SYS.FormUI/AppFunction/FrmCustomerManager.cs index 7532a0a..4eea61b 100644 --- a/SYS.FormUI/AppFunction/FrmCustomerManager.cs +++ b/SYS.FormUI/AppFunction/FrmCustomerManager.cs @@ -52,10 +52,6 @@ namespace SYS.FormUI #region 用户管理界面加载事件方法 private void FrmCustomerManager_Load(object sender, EventArgs e) { - foreach (Control label in this.Controls) - { - label.Font = UI_FontUtil.childControlFont; - } LoadCustomer(); } diff --git a/SYS.FormUI/AppFunction/FrmEditInputs.cs b/SYS.FormUI/AppFunction/FrmEditInputs.cs index 282f2fb..511e4ee 100644 --- a/SYS.FormUI/AppFunction/FrmEditInputs.cs +++ b/SYS.FormUI/AppFunction/FrmEditInputs.cs @@ -33,11 +33,6 @@ namespace SYS.FormUI private void FrmEditInputs_Load(object sender, EventArgs e) { - foreach (Control label in this.Controls) - { - label.Font = UI_FontUtil.controlFont; - } - string cardId = new CounterHelper().GetNewId(CounterRuleConsts.CustoId); txtCustoNo.Text = cardId; diff --git a/SYS.FormUI/AppFunction/FrmNotice.cs b/SYS.FormUI/AppFunction/FrmNotice.cs index 25dcd3e..71d6122 100644 --- a/SYS.FormUI/AppFunction/FrmNotice.cs +++ b/SYS.FormUI/AppFunction/FrmNotice.cs @@ -45,11 +45,6 @@ namespace SYS.FormUI private void FrmNotice_Load(object sender, EventArgs e) { - foreach (Control label in this.Controls) - { - label.Font = UI_FontUtil.controlFont; - } - List notices = new NoticeService().SelectNoticeAll(); notices.ForEach(source => { diff --git a/SYS.FormUI/AppFunction/FrmOperation.cs b/SYS.FormUI/AppFunction/FrmOperation.cs index ed0e730..1a4548a 100644 --- a/SYS.FormUI/AppFunction/FrmOperation.cs +++ b/SYS.FormUI/AppFunction/FrmOperation.cs @@ -40,11 +40,6 @@ namespace SYS.FormUI private void FrmOperation_Load(object sender, EventArgs e) { - foreach (Control label in this.Controls) - { - label.Font = UI_FontUtil.childControlFont; - } - dgvOperationlog.AutoGenerateColumns = false; dgvOperationlog.DataSource = new OperationlogService().SelectOperationlogAll(); } diff --git a/SYS.FormUI/AppFunction/FrmReserList.cs b/SYS.FormUI/AppFunction/FrmReserList.cs index ad66193..fc3cccf 100644 --- a/SYS.FormUI/AppFunction/FrmReserList.cs +++ b/SYS.FormUI/AppFunction/FrmReserList.cs @@ -21,11 +21,6 @@ namespace SYS.FormUI private void FrmReserList_Load(object sender, EventArgs e) { - foreach (Control label in this.Controls) - { - label.Font = UI_FontUtil.controlFont; - } - //cbCustoType.SelectedIndex = 0; dgvReserList.AutoGenerateColumns = false; dgvReserList.DataSource = new ReserService().SelectReserAll(); diff --git a/SYS.FormUI/AppFunction/FrmReserManager.cs b/SYS.FormUI/AppFunction/FrmReserManager.cs index cb68742..f32f5ac 100644 --- a/SYS.FormUI/AppFunction/FrmReserManager.cs +++ b/SYS.FormUI/AppFunction/FrmReserManager.cs @@ -60,10 +60,6 @@ namespace SYS.FormUI private void FrmRoomManager_Load(object sender, EventArgs e) { - foreach (Control label in this.Controls) - { - label.Font = UI_FontUtil.controlFont; - } cboReserWay.SelectedIndex = 0; cboReserRoomNo.DataSource = new RoomService().SelectCanUseRoomAll(); cboReserRoomNo.DisplayMember = "RoomNo"; diff --git a/SYS.FormUI/AppFunction/FrmRoomManager.Designer.cs b/SYS.FormUI/AppFunction/FrmRoomManager.Designer.cs index 67ee655..0bfc60d 100644 --- a/SYS.FormUI/AppFunction/FrmRoomManager.Designer.cs +++ b/SYS.FormUI/AppFunction/FrmRoomManager.Designer.cs @@ -334,7 +334,7 @@ this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(67, 15); this.label2.TabIndex = 1; - this.label2.Text = "客户编号:"; + this.label2.Text = "客户名字:"; // // label1 // diff --git a/SYS.FormUI/AppFunction/FrmRoomManager.cs b/SYS.FormUI/AppFunction/FrmRoomManager.cs index 90ea328..c757250 100644 --- a/SYS.FormUI/AppFunction/FrmRoomManager.cs +++ b/SYS.FormUI/AppFunction/FrmRoomManager.cs @@ -69,23 +69,15 @@ namespace SYS.FormUI lblRoomNo.Text = ucRoomList.co_RoomNo; lblCustoNo.Text = ucRoomList.co_CustoNo; lblRoomPosition.Text = ucRoomList.co_RoomPosition; - if (ucRoomList.co_CheckTime == "0001/01/01") - { - lblCheckTime.Text = ""; - } - else - { - lblCheckTime.Text = ucRoomList.co_CheckTime; - } - + lblCheckTime.Text = ucRoomList.co_CheckTime == null ? "" : Convert.ToDateTime(ucRoomList.co_CheckTime).ToString("yyyy-MM-dd"); lblRoomState.Text = ucRoomList.co_RoomState; - foreach (Control item in this.pnlRoomInfo.Controls) - { - if (item.GetType().ToString() == "System.Windows.Forms.Label") - { - item.Font = UI_FontUtil.childControlFont; - } - } + //foreach (Control item in this.pnlRoomInfo.Controls) + //{ + // if (item.GetType().ToString() == "System.Windows.Forms.Label") + // { + // item.Font = UI_FontUtil.childControlFont; + // } + //} LoadData(); @@ -118,15 +110,7 @@ namespace SYS.FormUI lblRoomNo.Text = ucRoomList.co_RoomNo; lblCustoNo.Text = ucRoomList.co_CustoNo; lblRoomPosition.Text = ucRoomList.co_RoomPosition; - if (ucRoomList.co_CheckTime == "0001/01/01") - { - lblCheckTime.Text = ""; - } - else - { - lblCheckTime.Text = ucRoomList.co_CheckTime; - } - + lblCheckTime.Text = ucRoomList.co_CheckTime == null ? "" : Convert.ToDateTime(ucRoomList.co_CheckTime).ToString("yyyy-MM-dd"); lblRoomState.Text = ucRoomList.co_RoomState; } diff --git a/SYS.FormUI/AppFunction/FrmRoomManager.resx b/SYS.FormUI/AppFunction/FrmRoomManager.resx index 8cb6122..c4b77a4 100644 --- a/SYS.FormUI/AppFunction/FrmRoomManager.resx +++ b/SYS.FormUI/AppFunction/FrmRoomManager.resx @@ -121,7 +121,7 @@ iVBORw0KGgoAAAANSUhEUgAAANQAAAAqCAYAAADLRnVxAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL - EQAACxEBf2RfkQAABnpJREFUeF7tnPuLVVUUx/vXMiqKiggJKigoglKzDKWnohkRKolBaVRGGIQl/SDp + EAAACxABrSO9dQAABnpJREFUeF7tnPuLVVUUx/vXMiqKiggJKigoglKzDKWnohkRKolBaVRGGIQl/SDp L1EkCfVD9qAoA4nG8TXN+MzHpOLJz7l+u8vtOvvcx4aZO7MOfJh77l57n3Od9Tlrn33PeNPNT45VQRCU IYQKgoKEUEFQkBAqCAoSQgVBQUKoIChICBUEBQmhgqAgIVQQFKSoUMs2TlRvbj9RbfnsZPXYq0er25ce dOOCdhauGHffF23twcxQTKjXPpiq0u3Y8ctubJBn7eZj1bnTF6pPdk257bD108k65vufTlebPpxwY/qF @@ -155,7 +155,7 @@ iVBORw0KGgoAAAANSUhEUgAAANQAAAAqCAYAAADLRnVxAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL - EQAACxEBf2RfkQAABsVJREFUeF7tnPtvFUUUx/1PxRCfkRgTjTH4g9EYjb+okWj8AY2JUUBQiSLBR+oL + EAAACxABrSO9dQAABsVJREFUeF7tnPtvFUUUx/1PxRCfkRgTjTH4g9EYjb+okWj8AY2JUUBQiSLBR+oL FQq1VCuv8hSQ8hawggGGfrb3W06nZ/fubcfkrpxJPrm7c86c2Zucb8/M3IV77v1gNAVBUIYQVBAUJAQV BAUJQQVBQUJQQVCQEFQQFCQEFQQFCUEFQUFCUEFQkKKCevHrfem93cfT+vE/0jNbJ9P9G3a7fkHwf6WY oN766XDK27m/r7u+XWfDzsNpZPJEWv3pxCIbfSfOXKrsL22brO5/PvCn69vEO9sPuv2AjTk+Gz82cNwm @@ -190,7 +190,7 @@ iVBORw0KGgoAAAANSUhEUgAAANQAAAAqCAYAAADLRnVxAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL - EQAACxEBf2RfkQAABWBJREFUeF7tnI9PFEcUx/v3Uyn+pCrIKeXX1So/IyogLRK11lq1USEqUYJEDUaR + EAAACxABrSO9dQAABWBJREFUeF7tnI9PFEcUx/v3Uyn+pCrIKeXX1So/IyogLRK11lq1USEqUYJEDUaR NCGxOPY75V3eDe/udm+HZVe+k3zC7XtvZufC+87Mzs3dd0d6OhwhJA4UFCERoaAIiQgFRUhEKChCIkJB ERIRCoqQiFBQhESEgiIkIlEFVZ0acXO3Zt1vv//qLlyquKOVH8y4w8Kp/hNufnHGTc9Nmn7y7RFNUFfm p1xYNrc2zdjDwrs3r92X7W3/1/IXhRfPl3wfR6d/Mf0kOVEEdfuvW15Af/59zx0/f9Qd6e1wE7Pj3vbx @@ -219,7 +219,7 @@ iVBORw0KGgoAAAANSUhEUgAAANQAAAAqCAYAAADLRnVxAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL - EQAACxEBf2RfkQAABbNJREFUeF7tnItvVEUUxv1TwRjfraApAcSIysP4iEWMAUlrNAIhhgSNiRJN0PQF + EAAACxABrSO9dQAABbNJREFUeF7tnItvVEUUxv1TwRjfraApAcSIysP4iEWMAUlrNAIhhgSNiRJN0PQF tBZa0xYKpakp0lislagUg4x+sz1lOpyde+7dSbrb/Sb5ZR/nO2fvhvk65869y2PP921xhJA80FCEZISG IiQjNBQhGaGhCMkIDUVIRmgoQjJCQxGSERqKkIxkNdSh8Tfd5zOfuTOzp9zB0Vfc9oEnVR0p5tj4+27X UKcaA4il4mRjyGaoT64edfFYWrmtaluV/cO73YnJHv+oxVPAIMi1muDG4pS7+9eyf4xzRuYHfGxiYXTd @@ -249,7 +249,7 @@ iVBORw0KGgoAAAANSUhEUgAAANQAAAAqCAYAAADLRnVxAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL - EAAACxABrSO9dQAABX1JREFUeF7tnN2PFEUUxf1rxWj8CkYTjfHjwagh8UWFGH2QxMQYffDBmBhfiG8G + DwAACw8BkvkDpQAABX1JREFUeF7tnN2PFEUUxf1rxWj8CkYTjfHjwagh8UWFGH2QxMQYffDBmBhfiG8G EBX5UFgUXFEMimLW3WV3r31q5sCl9k519UwZ5uNU8mO2+566zbB1pm5X13Df/XbchBBtkKGEaIgMJURD ZCghGiJDCdEQGUqIhshQQjREhhKiITKUEA1paqhDdt7et8v2of1sL9oZe8hOhjrRz5G983bQvgpjALFS XNwbmhnqHbtkebtuW6FW9HNx+7ptbG2k19w4X966mmKnb1276/ysIN/69o1k5igu+mliqE/sajLQ5/ab @@ -322,7 +322,7 @@ RudN65tdA8sHzg46DF645Xrr8m2v29fvrLwzMBQydHc4cnjkLvvu5L2key/vZ9yff7DpIfph4SOpR+WP lR7X/aj3Y+uI5ciZUdfRvidBTx6Mscae/5T+04fx/Kfkp+UTqhONk2aTp6fcp24+W/1s/Hnq8/npgp+l f65+ofviu18cf+mbWTUz/pL/cuHX4lfyr468Xva6e9Z/9vGb5Dfzc4Vv5d8efcd41/s+7P3EfOYH7IeK - j3ofuz55f3q4kLyw8Bv3hPP74uYdwgAAAAlwSFlzAAAOwgAADsIBFShKgAAAA2NJREFUSEudlE1IVFEY + j3ofuz55f3q4kLyw8Bv3hPP74uYdwgAAAAlwSFlzAAAOwQAADsEBuJFr7QAAA2NJREFUSEudlE1IVFEY hq/260KTyrJWQasgEGpTCTp37syobcpatUkJahG5CInaBWYQEbiooEWuZu4d2wSB9AM1RFS0iCiYc0Hp h5DAaBFECFpaz3dmznjmekfBxcu593zv+d7v7xzH85WTDoqOm1NO0oC9TBBqYG90fXUskVN3QKEzqz6D b3yHYBxcBQfhaB+pQPyFsagpJkbEdrtZ9Rbn/5ZDIqt+I3gfH/tXIaYzErSwPxEnUAM/CPRUnJAgTmwr diff --git a/SYS.FormUI/AppFunction/FrmRoomStateManager.cs b/SYS.FormUI/AppFunction/FrmRoomStateManager.cs index 9952a60..b2239db 100644 --- a/SYS.FormUI/AppFunction/FrmRoomStateManager.cs +++ b/SYS.FormUI/AppFunction/FrmRoomStateManager.cs @@ -39,10 +39,6 @@ namespace SYS.FormUI #region 窗体加载事件 private void FrmRoomStateManager_Load(object sender, EventArgs e) { - foreach (Control label in this.Controls) - { - label.Font = UI_FontUtil.controlFont; - } txtRoomNo.Text = ucRoomList.rm_RoomNo; cboState.DataSource = new RoomService().SelectRoomStateAll(); cboState.DisplayMember = "RoomStateName"; diff --git a/SYS.FormUI/AppFunction/FrmSelectCustoInfo.cs b/SYS.FormUI/AppFunction/FrmSelectCustoInfo.cs index 3227d61..d2a905a 100644 --- a/SYS.FormUI/AppFunction/FrmSelectCustoInfo.cs +++ b/SYS.FormUI/AppFunction/FrmSelectCustoInfo.cs @@ -52,11 +52,6 @@ namespace SYS.FormUI private void FrmSelectCustoInfo_Load(object sender, EventArgs e) { - - foreach (Control label in this.Controls) - { - label.Font = UI_FontUtil.controlFont; - } #region 加载客户类型信息 List lstSourceGrid = new BaseService().SelectCustoTypeAllCanUse(); this.cbCustoType.DataSource = lstSourceGrid; diff --git a/SYS.FormUI/AppFunction/FrmSellThing.cs b/SYS.FormUI/AppFunction/FrmSellThing.cs index 5008235..acac7cc 100644 --- a/SYS.FormUI/AppFunction/FrmSellThing.cs +++ b/SYS.FormUI/AppFunction/FrmSellThing.cs @@ -55,10 +55,6 @@ namespace SYS.FormUI txtRoomNo.AutoCompleteCustomSource.Add(roms[i].RoomNo); } LoadSellThingInfo(); - foreach (Control label in this.Controls) - { - label.Font = UI_FontUtil.childControlFont; - } } #endregion diff --git a/SYS.FormUI/AppFunction/FrmSellThingManager.cs b/SYS.FormUI/AppFunction/FrmSellThingManager.cs index 154bc79..f50b185 100644 --- a/SYS.FormUI/AppFunction/FrmSellThingManager.cs +++ b/SYS.FormUI/AppFunction/FrmSellThingManager.cs @@ -49,10 +49,6 @@ namespace SYS.FormUI private void FrmSellThingManager_Load(object sender, EventArgs e) { - foreach (Control label in this.Controls) - { - label.Font = UI_FontUtil.childControlFont; - } string SellId = new CounterHelper().GetNewId(CounterRuleConsts.SellId); txtSellNo.Text = SellId; dgvSellthing.AutoGenerateColumns = false; diff --git a/SYS.FormUI/AppFunction/FrmUpLoadNotice.cs b/SYS.FormUI/AppFunction/FrmUpLoadNotice.cs index 3f8b07e..9e2d1c0 100644 --- a/SYS.FormUI/AppFunction/FrmUpLoadNotice.cs +++ b/SYS.FormUI/AppFunction/FrmUpLoadNotice.cs @@ -105,10 +105,6 @@ namespace SYS.FormUI private void FrmUpLoad_Load(object sender, EventArgs e) { - foreach (Control label in this.Controls) - { - label.Font = UI_FontUtil.controlFont; - } cboSelectClub.DataSource = new BaseService().SelectDeptAll(); cboSelectClub.DisplayMember = "dept_name"; cboSelectClub.ValueMember = "dept_no"; diff --git a/SYS.FormUI/AppFunction/FrmWorkerCheckInfo.cs b/SYS.FormUI/AppFunction/FrmWorkerCheckInfo.cs index da8d4ca..d100828 100644 --- a/SYS.FormUI/AppFunction/FrmWorkerCheckInfo.cs +++ b/SYS.FormUI/AppFunction/FrmWorkerCheckInfo.cs @@ -40,10 +40,6 @@ namespace SYS.FormUI private void FrmWorkerCheckInfo_Load(object sender, EventArgs e) { - foreach (Control label in this.Controls) - { - label.Font = UI_FontUtil.childControlFont; - } lblWorkerInfo.Text = "以下为员工编号:" + FrmChangeWorker.wk_WorkerNo + "员工姓名:" + FrmChangeWorker.wk_WorkerName + "的所有打卡考勤记录:"; DgvCheckInfoList.AutoGenerateColumns = false; DgvCheckInfoList.DataSource = new WorkerCheckService().SelectCheckInfoByWorkerNo(FrmChangeWorker.wk_WorkerNo); diff --git a/SYS.FormUI/AppFunction/FrmWorkerManager.cs b/SYS.FormUI/AppFunction/FrmWorkerManager.cs index 36a84a2..c36445a 100644 --- a/SYS.FormUI/AppFunction/FrmWorkerManager.cs +++ b/SYS.FormUI/AppFunction/FrmWorkerManager.cs @@ -69,10 +69,6 @@ namespace SYS.FormUI private void FrmTopChange_Load(object sender, EventArgs e) { - foreach (Control item in this.Controls) - { - item.Font = UI_FontUtil.childControlFont; - } LoadWorker(); if (AdminInfo.isAdmin == false && AdminInfo.Type != "GeneralManager" && AdminInfo.Type != "HRManager") { diff --git a/SYS.FormUI/AppFunction/FrmWtiInfo.cs b/SYS.FormUI/AppFunction/FrmWtiInfo.cs index ff00a31..14ac3e1 100644 --- a/SYS.FormUI/AppFunction/FrmWtiInfo.cs +++ b/SYS.FormUI/AppFunction/FrmWtiInfo.cs @@ -40,10 +40,6 @@ namespace SYS.FormUI #region 窗体加载事件 private void WtiInfo_Load(object sender, EventArgs e) { - foreach (Control item in this.Controls) - { - item.Font = UI_FontUtil.childControlFont; - } LoadWtiInfo();//加载水电费信息 if (AdminInfo.isAdmin == false) { diff --git a/SYS.FormUI/AppMain/FrmBackgroundSystem.cs b/SYS.FormUI/AppMain/FrmBackgroundSystem.cs index 619d63f..6455fb5 100644 --- a/SYS.FormUI/AppMain/FrmBackgroundSystem.cs +++ b/SYS.FormUI/AppMain/FrmBackgroundSystem.cs @@ -62,21 +62,7 @@ namespace SYS.FormUI private void FrmBackgroundSystem_Load(object sender, EventArgs e) { this.Owner.Close(); - foreach (Control item in this.Controls) - { - switch (item.GetType().ToString()) - { - case "Sunny.UI.UILabel": - item.Font = UI_FontUtil.mainFont; - break; - case "Sunny.UI.UIScrollingText": - item.Font = UI_FontUtil.scorllingFont; - break; - case "Sunny.UI.UINavMenu": - item.Font = UI_FontUtil.scorllingFont; - break; - } - } + LoadModule(); DateTime tmCur = DateTime.Now; diff --git a/SYS.FormUI/AppMain/FrmMain.Designer.cs b/SYS.FormUI/AppMain/FrmMain.Designer.cs index 406d495..6b1542c 100644 --- a/SYS.FormUI/AppMain/FrmMain.Designer.cs +++ b/SYS.FormUI/AppMain/FrmMain.Designer.cs @@ -32,26 +32,20 @@ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMain)); this.lblTime = new System.Windows.Forms.Label(); this.tmrDate = new System.Windows.Forms.Timer(this.components); - this.label1 = new System.Windows.Forms.Label(); + this.lblSoftName = new System.Windows.Forms.Label(); this.pnlMID = new System.Windows.Forms.Panel(); this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components); this.cmsMain = new System.Windows.Forms.ContextMenuStrip(this.components); - this.tsmiChangeUser = new System.Windows.Forms.ToolStripMenuItem(); - this.tsmiMySpace = new System.Windows.Forms.ToolStripMenuItem(); this.tsmiExChange = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); - this.tsmiLockScreen = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); - this.tsmiLoginBackSystem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); - this.tsmiCheckUpdate = new System.Windows.Forms.ToolStripMenuItem(); - this.tsmiAboutUs = new System.Windows.Forms.ToolStripMenuItem(); - this.tsmiExitSystem = new System.Windows.Forms.ToolStripMenuItem(); this.linkLabel1 = new System.Windows.Forms.LinkLabel(); this.lblScroll = new Sunny.UI.UIScrollingText(); this.tmrFont = new System.Windows.Forms.Timer(this.components); this.label3 = new System.Windows.Forms.Label(); this.btnHello = new Sunny.UI.UIButton(); + this.flpNav = new System.Windows.Forms.FlowLayoutPanel(); this.picSetting = new Sunny.UI.UIButton(); this.uiButton1 = new Sunny.UI.UIButton(); this.picFormSize = new Sunny.UI.UIButton(); @@ -62,7 +56,13 @@ this.lblCheckDay = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.picLogo = new System.Windows.Forms.PictureBox(); - this.flpNav = new System.Windows.Forms.FlowLayoutPanel(); + this.tsmiChangeUser = new System.Windows.Forms.ToolStripMenuItem(); + this.tsmiMySpace = new System.Windows.Forms.ToolStripMenuItem(); + this.tsmiLockScreen = new System.Windows.Forms.ToolStripMenuItem(); + this.tsmiLoginBackSystem = new System.Windows.Forms.ToolStripMenuItem(); + this.tsmiCheckUpdate = new System.Windows.Forms.ToolStripMenuItem(); + this.tsmiAboutUs = new System.Windows.Forms.ToolStripMenuItem(); + this.tsmiExitSystem = new System.Windows.Forms.ToolStripMenuItem(); this.cmsMain.SuspendLayout(); this.pnlCheckInfo.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.picLogo)).BeginInit(); @@ -75,10 +75,10 @@ this.lblTime.AutoSize = true; this.lblTime.BackColor = System.Drawing.Color.Transparent; this.lblTime.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.lblTime.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.lblTime.Location = new System.Drawing.Point(53, 157); + this.lblTime.Font = new System.Drawing.Font("MiSans Normal", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.lblTime.Location = new System.Drawing.Point(52, 152); this.lblTime.Name = "lblTime"; - this.lblTime.Size = new System.Drawing.Size(74, 20); + this.lblTime.Size = new System.Drawing.Size(94, 25); this.lblTime.TabIndex = 2; this.lblTime.Text = "NowTime"; // @@ -88,17 +88,17 @@ this.tmrDate.Interval = 60000; this.tmrDate.Tick += new System.EventHandler(this.tmrDate_Tick); // - // label1 + // lblSoftName // - this.label1.BackColor = System.Drawing.Color.Transparent; - this.label1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label1.Location = new System.Drawing.Point(0, 107); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(169, 36); - this.label1.TabIndex = 14; - this.label1.Text = "TS酒店管理系统"; - this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.lblSoftName.BackColor = System.Drawing.Color.Transparent; + this.lblSoftName.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.lblSoftName.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblSoftName.Location = new System.Drawing.Point(282, 4); + this.lblSoftName.Name = "lblSoftName"; + this.lblSoftName.Size = new System.Drawing.Size(670, 36); + this.lblSoftName.TabIndex = 14; + this.lblSoftName.Text = "TS酒店管理系统"; + this.lblSoftName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // pnlMID // @@ -136,24 +136,6 @@ this.cmsMain.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional; this.cmsMain.Size = new System.Drawing.Size(208, 214); // - // tsmiChangeUser - // - this.tsmiChangeUser.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.tsmiChangeUser.Image = global::SYS.FormUI.Properties.Resources.切换账号; - this.tsmiChangeUser.Name = "tsmiChangeUser"; - this.tsmiChangeUser.Size = new System.Drawing.Size(207, 24); - this.tsmiChangeUser.Text = "切换用户"; - this.tsmiChangeUser.Click += new System.EventHandler(this.tsmiChangeUser_Click); - // - // tsmiMySpace - // - this.tsmiMySpace.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.tsmiMySpace.Image = global::SYS.FormUI.Properties.Resources.个人中心; - this.tsmiMySpace.Name = "tsmiMySpace"; - this.tsmiMySpace.Size = new System.Drawing.Size(207, 24); - this.tsmiMySpace.Text = "个人中心"; - this.tsmiMySpace.Click += new System.EventHandler(this.tsmiMySpace_Click); - // // tsmiExChange // this.tsmiExChange.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F); @@ -166,62 +148,16 @@ this.toolStripSeparator3.Name = "toolStripSeparator3"; this.toolStripSeparator3.Size = new System.Drawing.Size(204, 6); // - // tsmiLockScreen - // - this.tsmiLockScreen.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.tsmiLockScreen.Image = global::SYS.FormUI.Properties.Resources.锁屏; - this.tsmiLockScreen.Name = "tsmiLockScreen"; - this.tsmiLockScreen.Size = new System.Drawing.Size(207, 24); - this.tsmiLockScreen.Text = "快速锁屏"; - this.tsmiLockScreen.Click += new System.EventHandler(this.tsmiLockScreen_Click); - // // toolStripSeparator4 // this.toolStripSeparator4.Name = "toolStripSeparator4"; this.toolStripSeparator4.Size = new System.Drawing.Size(204, 6); // - // tsmiLoginBackSystem - // - this.tsmiLoginBackSystem.Enabled = false; - this.tsmiLoginBackSystem.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.tsmiLoginBackSystem.Image = global::SYS.FormUI.Properties.Resources.系统管理员; - this.tsmiLoginBackSystem.Name = "tsmiLoginBackSystem"; - this.tsmiLoginBackSystem.Size = new System.Drawing.Size(207, 24); - this.tsmiLoginBackSystem.Text = "进入后台管理系统"; - this.tsmiLoginBackSystem.Click += new System.EventHandler(this.tsmiLoginBackSystem_Click); - // // toolStripSeparator2 // this.toolStripSeparator2.Name = "toolStripSeparator2"; this.toolStripSeparator2.Size = new System.Drawing.Size(204, 6); // - // tsmiCheckUpdate - // - this.tsmiCheckUpdate.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.tsmiCheckUpdate.Image = global::SYS.FormUI.Properties.Resources.检查更新__1_; - this.tsmiCheckUpdate.Name = "tsmiCheckUpdate"; - this.tsmiCheckUpdate.Size = new System.Drawing.Size(207, 24); - this.tsmiCheckUpdate.Text = "检查更新"; - this.tsmiCheckUpdate.Click += new System.EventHandler(this.tsmiCheckUpdate_Click); - // - // tsmiAboutUs - // - this.tsmiAboutUs.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.tsmiAboutUs.Image = global::SYS.FormUI.Properties.Resources.关于我们; - this.tsmiAboutUs.Name = "tsmiAboutUs"; - this.tsmiAboutUs.Size = new System.Drawing.Size(207, 24); - this.tsmiAboutUs.Text = "关于我们"; - this.tsmiAboutUs.Click += new System.EventHandler(this.tsmiAboutUs_Click); - // - // tsmiExitSystem - // - this.tsmiExitSystem.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.tsmiExitSystem.Image = global::SYS.FormUI.Properties.Resources.注销; - this.tsmiExitSystem.Name = "tsmiExitSystem"; - this.tsmiExitSystem.Size = new System.Drawing.Size(207, 24); - this.tsmiExitSystem.Text = "退出系统"; - this.tsmiExitSystem.Click += new System.EventHandler(this.tsmiExitSystem_Click); - // // linkLabel1 // this.linkLabel1.AutoSize = true; @@ -244,11 +180,12 @@ this.lblScroll.Font = new System.Drawing.Font("微软雅黑", 12F); this.lblScroll.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255))))); this.lblScroll.Interval = 1000; - this.lblScroll.Location = new System.Drawing.Point(232, 5); + this.lblScroll.Location = new System.Drawing.Point(282, 62); this.lblScroll.MinimumSize = new System.Drawing.Size(1, 1); this.lblScroll.Name = "lblScroll"; this.lblScroll.Radius = 0; - this.lblScroll.Size = new System.Drawing.Size(720, 35); + this.lblScroll.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None; + this.lblScroll.Size = new System.Drawing.Size(793, 45); this.lblScroll.TabIndex = 0; // // tmrFont @@ -264,10 +201,10 @@ this.label3.AutoSize = true; this.label3.BackColor = System.Drawing.Color.Transparent; this.label3.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); - this.label3.Location = new System.Drawing.Point(53, 192); + this.label3.Font = new System.Drawing.Font("MiSans Normal", 14.25F); + this.label3.Location = new System.Drawing.Point(53, 189); this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(74, 20); + this.label3.Size = new System.Drawing.Size(94, 25); this.label3.TabIndex = 30; this.label3.Text = "NowTime"; // @@ -290,6 +227,15 @@ this.btnHello.StyleCustomMode = true; this.btnHello.TabIndex = 33; // + // flpNav + // + this.flpNav.AutoScroll = true; + this.flpNav.BackColor = System.Drawing.Color.Transparent; + this.flpNav.Location = new System.Drawing.Point(282, 130); + this.flpNav.Name = "flpNav"; + this.flpNav.Size = new System.Drawing.Size(793, 90); + this.flpNav.TabIndex = 72; + // // picSetting // this.picSetting.BackColor = System.Drawing.Color.Transparent; @@ -375,7 +321,7 @@ // pnlCheckInfo // this.pnlCheckInfo.BackColor = System.Drawing.Color.Transparent; - this.pnlCheckInfo.BackgroundImage = global::SYS.FormUI.Properties.Resources.打卡; + this.pnlCheckInfo.BackgroundImage = global::SYS.FormUI.Properties.Resources.打卡2; this.pnlCheckInfo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.pnlCheckInfo.Controls.Add(this.lblClose); this.pnlCheckInfo.Controls.Add(this.label4); @@ -436,19 +382,74 @@ this.picLogo.Cursor = System.Windows.Forms.Cursors.Hand; this.picLogo.Location = new System.Drawing.Point(4, 5); this.picLogo.Name = "picLogo"; - this.picLogo.Size = new System.Drawing.Size(163, 99); + this.picLogo.Size = new System.Drawing.Size(163, 111); this.picLogo.TabIndex = 15; this.picLogo.TabStop = false; this.picLogo.Click += new System.EventHandler(this.picLogo_Click); // - // flpNav + // tsmiChangeUser // - this.flpNav.AutoScroll = true; - this.flpNav.BackColor = System.Drawing.Color.Transparent; - this.flpNav.Location = new System.Drawing.Point(282, 130); - this.flpNav.Name = "flpNav"; - this.flpNav.Size = new System.Drawing.Size(793, 90); - this.flpNav.TabIndex = 72; + this.tsmiChangeUser.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.tsmiChangeUser.Image = global::SYS.FormUI.Properties.Resources.切换账号; + this.tsmiChangeUser.Name = "tsmiChangeUser"; + this.tsmiChangeUser.Size = new System.Drawing.Size(207, 24); + this.tsmiChangeUser.Text = "切换用户"; + this.tsmiChangeUser.Click += new System.EventHandler(this.tsmiChangeUser_Click); + // + // tsmiMySpace + // + this.tsmiMySpace.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.tsmiMySpace.Image = global::SYS.FormUI.Properties.Resources.个人中心; + this.tsmiMySpace.Name = "tsmiMySpace"; + this.tsmiMySpace.Size = new System.Drawing.Size(207, 24); + this.tsmiMySpace.Text = "个人中心"; + this.tsmiMySpace.Click += new System.EventHandler(this.tsmiMySpace_Click); + // + // tsmiLockScreen + // + this.tsmiLockScreen.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.tsmiLockScreen.Image = global::SYS.FormUI.Properties.Resources.锁屏; + this.tsmiLockScreen.Name = "tsmiLockScreen"; + this.tsmiLockScreen.Size = new System.Drawing.Size(207, 24); + this.tsmiLockScreen.Text = "快速锁屏"; + this.tsmiLockScreen.Click += new System.EventHandler(this.tsmiLockScreen_Click); + // + // tsmiLoginBackSystem + // + this.tsmiLoginBackSystem.Enabled = false; + this.tsmiLoginBackSystem.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.tsmiLoginBackSystem.Image = global::SYS.FormUI.Properties.Resources.系统管理员; + this.tsmiLoginBackSystem.Name = "tsmiLoginBackSystem"; + this.tsmiLoginBackSystem.Size = new System.Drawing.Size(207, 24); + this.tsmiLoginBackSystem.Text = "进入后台管理系统"; + this.tsmiLoginBackSystem.Click += new System.EventHandler(this.tsmiLoginBackSystem_Click); + // + // tsmiCheckUpdate + // + this.tsmiCheckUpdate.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.tsmiCheckUpdate.Image = global::SYS.FormUI.Properties.Resources.检查更新__1_; + this.tsmiCheckUpdate.Name = "tsmiCheckUpdate"; + this.tsmiCheckUpdate.Size = new System.Drawing.Size(207, 24); + this.tsmiCheckUpdate.Text = "检查更新"; + this.tsmiCheckUpdate.Click += new System.EventHandler(this.tsmiCheckUpdate_Click); + // + // tsmiAboutUs + // + this.tsmiAboutUs.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.tsmiAboutUs.Image = global::SYS.FormUI.Properties.Resources.关于我们; + this.tsmiAboutUs.Name = "tsmiAboutUs"; + this.tsmiAboutUs.Size = new System.Drawing.Size(207, 24); + this.tsmiAboutUs.Text = "关于我们"; + this.tsmiAboutUs.Click += new System.EventHandler(this.tsmiAboutUs_Click); + // + // tsmiExitSystem + // + this.tsmiExitSystem.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); + this.tsmiExitSystem.Image = global::SYS.FormUI.Properties.Resources.注销; + this.tsmiExitSystem.Name = "tsmiExitSystem"; + this.tsmiExitSystem.Size = new System.Drawing.Size(207, 24); + this.tsmiExitSystem.Text = "退出系统"; + this.tsmiExitSystem.Click += new System.EventHandler(this.tsmiExitSystem_Click); // // FrmMain // @@ -469,7 +470,7 @@ this.Controls.Add(this.linkLabel1); this.Controls.Add(this.pnlMID); this.Controls.Add(this.picLogo); - this.Controls.Add(this.label1); + this.Controls.Add(this.lblSoftName); this.Controls.Add(this.lblTime); this.DoubleBuffered = true; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; @@ -494,7 +495,7 @@ #endregion private System.Windows.Forms.Label lblTime; private System.Windows.Forms.Timer tmrDate; - private System.Windows.Forms.Label label1; + private System.Windows.Forms.Label lblSoftName; private System.Windows.Forms.PictureBox picLogo; private System.Windows.Forms.Panel pnlMID; private System.Windows.Forms.ToolStripMenuItem tsmiChangeUser; diff --git a/SYS.FormUI/AppMain/FrmMain.cs b/SYS.FormUI/AppMain/FrmMain.cs index 76d994a..36a3b58 100644 --- a/SYS.FormUI/AppMain/FrmMain.cs +++ b/SYS.FormUI/AppMain/FrmMain.cs @@ -128,9 +128,9 @@ namespace SYS.FormUI #region 定时器:获取网络时间 private void tmrDate_Tick(object sender, EventArgs e) { - lblTime.Text = DateTime.Now.ToString("HH:mm"); + lblTime.Text = DateTime.Now.ToString("yyyy-MM-dd HH:mm"); - DateTime tmCur = Convert.ToDateTime("2020-12-4" + lblTime.Text); + DateTime tmCur = DateTime.Now; if (tmCur.Hour < 8 || tmCur.Hour > 18) {//晚上 @@ -239,8 +239,10 @@ namespace SYS.FormUI private void RoomManager_Event(object sender, EventArgs e) { pnlMID.Controls.Clear(); - FrmRoomManager frm1 = new FrmRoomManager(); - frm1.TopLevel = false; + FrmRoomManager frm1 = new FrmRoomManager + { + TopLevel = false + }; pnlMID.Controls.Add(frm1); frm1.Show(); } @@ -279,7 +281,6 @@ namespace SYS.FormUI private void LoadNavBar() { #region 菜单导航代码块 - flpNav.Controls.Clear(); var listSource = new NavBarService().NavBarList(); ucNavBar ucNavBar = null; @@ -304,36 +305,28 @@ namespace SYS.FormUI ucNavBar.BackgroundImage = Resources.picCommodity_Image; break; } - if (i == 0) - { - ucNavBar.Margin = new Padding(0, 0, 0, 0); - } - else - { - ucNavBar.Margin = new Padding(180, 0, 0, 0); - } + ucNavBar.Margin = new Padding(listSource[i].margin_left, 0, 0, 0); flpNav.Controls.Add(ucNavBar); } } + else + { + UIMessageBox.ShowError("服务器维护中,请过会再试"); + return; + } #endregion } #region 窗体加载事件方法 private void FrmMain_Load(object sender, EventArgs e) { + lblSoftName.Text = System.Windows.Forms.Application.ProductName.ToString() + "_V" + System.Windows.Forms.Application.ProductVersion.ToString(); + tmrDate.Enabled = true; LoadNavBar(); - foreach (Control item in this.Controls) - { - if (item.GetType().ToString() == "System.Windows.Forms.Label") - { - item.Font = UI_FontUtil.mainFont; - } - } - - lblTime.Text = DateTime.Now.ToString("HH:mm:ss"); + lblTime.Text = DateTime.Now.ToString("yyyy-MM-dd HH:mm"); DateTime tmCur = DateTime.Now; @@ -556,12 +549,12 @@ namespace SYS.FormUI private void picSetting_MouseDown(object sender, MouseEventArgs e) { - this.picSetting.BackColor = System.Drawing.Color.FromArgb(74, 131, 229); + this.picSetting.BackColor = System.Drawing.Color.FromArgb(111, 168, 255); } private void picSetting_MouseHover(object sender, EventArgs e) { - this.picSetting.BackColor = System.Drawing.Color.FromArgb(74, 131, 229); + this.picSetting.BackColor = System.Drawing.Color.FromArgb(111, 168, 255); } private void picSetting_MouseLeave(object sender, EventArgs e) diff --git a/SYS.FormUI/AppUserControls/ucBaseInformation.cs b/SYS.FormUI/AppUserControls/ucBaseInformation.cs index 8c9528e..b7010ce 100644 --- a/SYS.FormUI/AppUserControls/ucBaseInformation.cs +++ b/SYS.FormUI/AppUserControls/ucBaseInformation.cs @@ -45,10 +45,6 @@ namespace SYS.FormUI private void ucBaseInformation_Load(object sender, EventArgs e) { - foreach (Control label in this.Controls) - { - label.Font = UI_FontUtil.roomControlFont; - } } private void btnOperation_SizeChanged(object sender, EventArgs e) diff --git a/SYS.FormUI/AppUserControls/ucEducationInformation.cs b/SYS.FormUI/AppUserControls/ucEducationInformation.cs index 2fe7a33..33c5b67 100644 --- a/SYS.FormUI/AppUserControls/ucEducationInformation.cs +++ b/SYS.FormUI/AppUserControls/ucEducationInformation.cs @@ -45,10 +45,6 @@ namespace SYS.FormUI private void ucBaseInformation_Load(object sender, EventArgs e) { - foreach (Control label in this.Controls) - { - label.Font = UI_FontUtil.roomControlFont; - } } private void btnOperation_SizeChanged(object sender, EventArgs e) diff --git a/SYS.FormUI/AppUserControls/ucHistory.cs b/SYS.FormUI/AppUserControls/ucHistory.cs index 4190fdd..73293db 100644 --- a/SYS.FormUI/AppUserControls/ucHistory.cs +++ b/SYS.FormUI/AppUserControls/ucHistory.cs @@ -34,10 +34,6 @@ namespace SYS.FormUI private void ucHistory_Load(object sender, System.EventArgs e) { - foreach (Control item in this.Controls) - { - item.Font = UI_FontUtil.controlFont; - } } private void ucHistory_SizeChanged(object sender, System.EventArgs e) diff --git a/SYS.FormUI/AppUserControls/ucPositionInformation.cs b/SYS.FormUI/AppUserControls/ucPositionInformation.cs index 8dd1108..ee6b580 100644 --- a/SYS.FormUI/AppUserControls/ucPositionInformation.cs +++ b/SYS.FormUI/AppUserControls/ucPositionInformation.cs @@ -45,10 +45,6 @@ namespace SYS.FormUI private void ucBaseInformation_Load(object sender, EventArgs e) { - foreach (Control label in this.Controls) - { - label.Font = UI_FontUtil.roomControlFont; - } } private void btnOperation_SizeChanged(object sender, EventArgs e) diff --git a/SYS.FormUI/AppUserControls/ucRoomList.cs b/SYS.FormUI/AppUserControls/ucRoomList.cs index 1546570..6080e69 100644 --- a/SYS.FormUI/AppUserControls/ucRoomList.cs +++ b/SYS.FormUI/AppUserControls/ucRoomList.cs @@ -108,13 +108,14 @@ namespace SYS.FormUI #region 存放房间信息类 public static string rm_RoomNo; public static string rm_CustoNo; + public static string rm_CustoName; public static string rm_RoomType; public static string rm_RoomMoney; - public static string rm_CheckTime; + public static DateTime? rm_CheckTime; public static int rm_RoomStateId; public static string co_RoomNo; public static string co_CustoNo; - public static string co_CheckTime; + public static DateTime? co_CheckTime; public static string co_RoomPosition; public static string co_RoomState; public static string co_CustoName; @@ -151,14 +152,6 @@ namespace SYS.FormUI #region 房态图加载事件方法 private void ucRoomList_Load(object sender, EventArgs e) { - foreach (Control label in this.Controls) - { - if (label.GetType().ToString() == "System.Windows.Forms.Label") - { - label.Font = UI_FontUtil.roomControlFont; - } - } - this.CanPenetrate(); this.Region = new Region(GetRoundRectPath(new RectangleF(0, 0, this.Width, this.Height), 6f)); us_CustoNo = romRoomInfo.CustoNo; @@ -166,7 +159,7 @@ namespace SYS.FormUI us_CustoSex = romRoomInfo.CustoSex == 1 ? "男" : "女"; us_CustoTel = romRoomInfo.CustoTel; us_CustoID = romRoomInfo.CustoID; - us_CustoBirthday = Convert.ToDateTime(romRoomInfo.CustoBirth).ToString(); + us_CustoBirthday = romRoomInfo.CustoBirth == null? "":Convert.ToDateTime(romRoomInfo.CustoBirth).ToString(); us_CustoPassportType = romRoomInfo.PassportType; us_CustoType = romRoomInfo.CustoType; us_CustoAddress = romRoomInfo.CustoAdress; @@ -195,10 +188,6 @@ namespace SYS.FormUI #region 当右键菜单打开时事件方法 private void cmsMain_Opening(object sender, CancelEventArgs e) { - foreach (Control label in cmsMain.Controls) - { - label.Font = UI_FontUtil.roomControlFont; - } r = new RoomService().SelectRoomByRoomNo(lblRoomNo.Text); if (lblCustoNo.Text != "") { @@ -277,7 +266,6 @@ namespace SYS.FormUI rm_CustoNo = lblCustoNo.Text; rm_RoomNo = lblRoomNo.Text; rm_RoomType = lblRoomType.Text; - //rm_CheckTime = co_CheckTime; FrmCheckOutForm frm = new FrmCheckOutForm(); frm.Show(); } @@ -364,9 +352,9 @@ namespace SYS.FormUI public void LoadRoomInfo() { co_RoomNo = romCustoInfo.RoomNo; - co_CustoNo = romCustoInfo.CustoNo; + co_CustoNo = romCustoInfo.CustoName; romTypeName = romCustoInfo.RoomName; - co_CheckTime = romCustoInfo.CheckTimeFormat; + co_CheckTime = romCustoInfo.CheckTime; co_RoomPosition = romCustoInfo.RoomPosition; co_RoomState = romCustoInfo.RoomState; diff --git a/SYS.FormUI/Font/UI-FontUtil.cs b/SYS.FormUI/Font/UI-FontUtil.cs index ed7f17e..d600ba6 100644 --- a/SYS.FormUI/Font/UI-FontUtil.cs +++ b/SYS.FormUI/Font/UI-FontUtil.cs @@ -14,42 +14,42 @@ using System.Threading.Tasks; namespace SYS.FormUI { - public static class UI_FontUtil - { + //public static class UI_FontUtil + //{ - private static PrivateFontCollection pfc = new PrivateFontCollection(); - private static ResourceManager rm = new ResourceManager("SYS.FormUI.Resource", Assembly.GetExecutingAssembly()); - private static Assembly assembly = Assembly.GetExecutingAssembly(); - /// - /// 子控件字体 - /// - public static Font childControlFont = null; - public static Font mainFont = null; - public static Font scorllingFont = null; - public static Font controlFont = null; - public static Font roomControlFont = null; + // private static PrivateFontCollection pfc = new PrivateFontCollection(); + // private static ResourceManager rm = new ResourceManager("SYS.FormUI.Resource", Assembly.GetExecutingAssembly()); + // private static Assembly assembly = Assembly.GetExecutingAssembly(); + // /// + // /// 子控件字体 + // /// + // public static Font childControlFont = null; + // public static Font mainFont = null; + // public static Font scorllingFont = null; + // public static Font controlFont = null; + // public static Font roomControlFont = null; - static UI_FontUtil() - { - Stream stream = assembly.GetManifestResourceStream("SYS.FormUI.Resources.Alibaba-PuHuiTi-Regular.ttf"); - //Stream stream = response.GetResponseStream(); - byte[] fontdata = new byte[stream.Length]; - stream.Read(fontdata, 0, (int)stream.Length); - stream.Close(); - unsafe - { - fixed (byte* pFontData = fontdata) - { - pfc.AddMemoryFont((System.IntPtr)pFontData, fontdata.Length); - } - } - childControlFont = new Font(pfc.Families[0], 10); - mainFont = new Font(pfc.Families[0], 10); - scorllingFont = new Font(pfc.Families[0], 10); - controlFont = new Font(pfc.Families[0], 11); - roomControlFont = new Font(pfc.Families[0], 10); - } + // static UI_FontUtil() + // { + // Stream stream = assembly.GetManifestResourceStream("SYS.FormUI.Resources.Alibaba-PuHuiTi-Regular.ttf"); + // //Stream stream = response.GetResponseStream(); + // byte[] fontdata = new byte[stream.Length]; + // stream.Read(fontdata, 0, (int)stream.Length); + // stream.Close(); + // unsafe + // { + // fixed (byte* pFontData = fontdata) + // { + // pfc.AddMemoryFont((System.IntPtr)pFontData, fontdata.Length); + // } + // } + // childControlFont = new Font(pfc.Families[0], 10); + // mainFont = new Font(pfc.Families[0], 10); + // scorllingFont = new Font(pfc.Families[0], 10); + // controlFont = new Font(pfc.Families[0], 11); + // roomControlFont = new Font(pfc.Families[0], 10); + // } - } + //} } diff --git a/SYS.FormUI/Properties/AssemblyInfo.cs b/SYS.FormUI/Properties/AssemblyInfo.cs index a58d0c0..8567fec 100644 --- a/SYS.FormUI/Properties/AssemblyInfo.cs +++ b/SYS.FormUI/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, // 方法是按如下所示使用“*”: : // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.5.0.7")] -[assembly: AssemblyFileVersion("1.5.0.7")] +[assembly: AssemblyVersion("1.5.0.8")] +[assembly: AssemblyFileVersion("1.5.0.8")] diff --git a/SYS.FormUI/Properties/Resources.Designer.cs b/SYS.FormUI/Properties/Resources.Designer.cs index 6a50f62..ee8c0f4 100644 --- a/SYS.FormUI/Properties/Resources.Designer.cs +++ b/SYS.FormUI/Properties/Resources.Designer.cs @@ -553,9 +553,9 @@ namespace SYS.FormUI.Properties { /// /// 查找 System.Drawing.Bitmap 类型的本地化资源。 /// - public static System.Drawing.Bitmap 打卡 { + public static System.Drawing.Bitmap 打卡2 { get { - object obj = ResourceManager.GetObject("打卡", resourceCulture); + object obj = ResourceManager.GetObject("打卡2", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } diff --git a/SYS.FormUI/Properties/Resources.resx b/SYS.FormUI/Properties/Resources.resx index 122f268..f429618 100644 --- a/SYS.FormUI/Properties/Resources.resx +++ b/SYS.FormUI/Properties/Resources.resx @@ -118,21 +118,24 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ..\Resources\脏房状态.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\picCustomer.ImagePress.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\picExtend.ImageHover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\arrow-down-b.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\餐饮部卡片.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\Resources\维修部卡片.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\jpg_auto_04N58PICPw2s58PICaP4M8cef_PIC2018.jpg!w1024_new_small.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\picLogo.BackgroundImage.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\Resources\商品部卡片.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -157,6 +160,9 @@ ..\Resources\搜索--1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\minus (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\Resources\常规部门卡片.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -187,9 +193,6 @@ ..\Resources\主页 (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\bin\Debug\打卡.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\Resources\监管小组卡片.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -205,9 +208,6 @@ ..\Resources\已住状态.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\close.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\Resources\上传照片.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -220,21 +220,27 @@ ..\Resources\白金会员.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\可住房(hover)icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\Resources\黄金会员.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\钻石会员.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\可住房(hover)icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\picRoom.ImageHover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\早上.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\picCommodity.ImagePress.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\注销.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\修改.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\Resources\77377282_p0_master1200.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -244,6 +250,9 @@ ..\Resources\导出 (4)1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\系统管理员.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\Resources\锁屏.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -256,6 +265,18 @@ ..\Resources\个人中心.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\Alibaba-PuHuiTi-Regular.ttf;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\picCustomer.ImageHover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\picRoom.Image.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\picRoom.ImageSelected.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\Resources\隐藏.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -268,26 +289,38 @@ ..\Resources\修改a.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\脏房(hover)icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\Resources\预约状态.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\总经办卡片.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\picExtend.ImagePress.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\Resources\获取用户编号.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\icon\转换.ico;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\picRoom.ImagePress.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\Resources\获取用户编号-ia.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\修改.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\uiButton1.BackgroundImage.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\minus (1).png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\picCommodity.ImageHover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\picCommodity.Image.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\770e7b52ecafc807247aad51bb6c6b43.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -295,24 +328,33 @@ ..\Resources\delete2-a.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\脏房(hover)icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\close.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\月亮.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\Alibaba-PuHuiTi-Regular.ttf;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ..\Resources\picCustomer.Image.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\餐饮部卡片.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\普通会员.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\系统管理员.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\脏房状态.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\早上.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\显示.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\picExtend.Image.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\Resources\咖啡.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -337,49 +379,7 @@ ..\Resources\添 加a.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\picCommodity.Image.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\picCommodity.ImageHover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\picCommodity.ImagePress.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\picCustomer.Image.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\picCustomer.ImageHover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\picCustomer.ImagePress.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\picExtend.Image.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\picExtend.ImageHover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\picExtend.ImagePress.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\picLogo.BackgroundImage.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\picRoom.Image.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\picRoom.ImageHover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\picRoom.ImagePress.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\picRoom.ImageSelected.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - - ..\Resources\uiButton1.BackgroundImage.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\打卡.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a \ No newline at end of file diff --git a/SYS.FormUI/Resources/arrow-down-b.png b/SYS.FormUI/Resources/arrow-down-b.png index ac29f75d1e43542f6a03199f89af00db99a88b0a..7eabdc7ca4b00a854b670f4e02bdfd7b849ffd4f 100644 GIT binary patch literal 1706 zcmbVN3rrhj96#J7$|Kq0#^z)3a+oNV>pl9S=eh+c(&AbPR46)<9d{q)Mtk3JchHAf zWT^20CI+_z=QJ4I2y>8t1`WnAF=LV$NtS?aAc-!S%w@y5MXgz{%_bQ%x4a0KpGp;Ob-~Npl zw)(sj2#p&FtXr_)K%EXA@ULXcWq*7+DIYlSNeZlDROr05cqaf6X>gl)Qu zK%S-~M3fAztfj+*0!GDng<{OKAt?zIg$zz{U=22f~yzKo4q`Vxs`OlW#}JCczO$Su)YAg%za8fdUh6+n4AaGTrLNL+_ zL?XQ{-Ejm`w9#gONdF_Z(6r@)Dy@XsPuj`XuYu%^TKkb~F z9lhwMg7mgCV~=am!KKAR-@e4N(W%z=vx)BhGr@1%#^JLDSiQ2MFpG64#)tn!G z?2AvqhS^=%+j~FMKe#$Kb9Ub;Sf}nW_a!9sHOLjY*fE|6@(wq~)9C{nrVi obR_szals>9cTY8Jp4`#-H%Kp1xc~qF delta 399 zcmV;A0dW4R4X6W&t6Eil#v*gIgnE`RI^u-FCIJz%Xatj%8o z6Ac320Fzbyo?}pSyaIhyg$duk0sWpi1$F><_LPd5LEyzRqrh6<6maP&c4nr5D`z(8 zIctxyL+^r;+%j;a^r&Ww?sZ^CS@a{j0qm;tsj#-E4Q#3lfo)(bVJ_(ybne*)R)oa| zz^ah{7Oi8pD1WlQ$$1CB8L;5U{TaytYvuRAND0UTFj@!HW^=(>*Lw*}mOWWYJ|TyI z$6tVlfv37wbDOok8Q{DFY!TWq7u(C4eK$vxkl4D_3 tR^}WCvrbWREX>NvoC9IjDN2rg0Q3nVEGkitJOBUy00>D%PDHLkV1mI0w!{Dc diff --git a/SYS.FormUI/Resources/close.png b/SYS.FormUI/Resources/close.png index 1f32edfbe55c3756d5aeb647883e2da63d7c82a7..5fa944123722d8c0f82e5999c347238621bcfe76 100644 GIT binary patch literal 1789 zcmbVNe^3-v9A7R55%Ncn3ehy{oVc3ikm$MShxIU7T&|7V7{S8giW!EYd!&1}rk$`pW&cLw5 zanW0=)w)YrUJ9BxLGnRUBq$>^hUFJTWR7oy8t#L2V#q=KeDXsA7X=4Vlj{a>-deMewtg&L?BC(9S{B zYnsebR5%x`UFYSJ78 z(sa^5=i%_){&B%sIs`gee>w`rl$n!5>*temRLnp!F91!K*Xb2z;e8v-424+ z!wLl=_F24d4@}aA>mefjk8n@IRLQS}IRzHhA#dF?ohYO{rPtx49n?QfjGo%Z~*J4XkPeV%8)j&GlK{cxS*;24wb)n6$AV0Bv z-_<$R?+cuL#eWueov*ohbYy6L!od4kdoEdCTgHu^SUi9It%=gA9)2*NYIgO4ce}hq zPq=^4hU(xqI_4VdJ(f6eFgrD}ZOy!eqXYh( z)fdzs|2Uj-pl{UWOd0EITDaFxAtTL>^m{vJ&n4#ET>3Tqs9{OM;HQ^;c9Y61d3&<|dKBj6z^v8nJC{qD+=umpzTg@5@990T`3iEV{1ch-+c zSONmsGC*%Capy?v0O!D>vF-_2AAWBMtOAmSH6y^gO59c?b``!*flD1oJ^Vhk8fZy; z04Kmr2ePN|`6yi0wf+SyiBFZdR@lD6=Q40lKz?sYe5r)2lQW;q!XpBn#J56c`oNm9B{->bMAI3oI|36-LrnF$6iX)5}AR-gGVl_&_H61WKp;$ z5gN%P$go5fUXut9r6oWa%TK#wl-1QL?@CRi$MOVYydS0BMKoUYz}HiOAH2hEArk9q QH2?qr07*qoM6N<$f&DAFUe}4Kqy2EhnN%8>ab)t5J|Eji6mfs)Hy_? zfIL)+RH5M%R8WfoiWT2reH8J9BH(2J$71mj6;YtKL15ZW?>g7aZ1&sze&6r^|NURH z=@H=}4tBHb003|hg$g67J7~GakE8yzDJie0+XQv!3M~NGJ6bLpP*^kr0BnAiOQLnr z;w7k*R5CD}j3pQbrJ6zmz#@Nx8j~gvIxv=qldA;Kv$}c+l;Z*@iYtc2>L4Os9-5*d zmZgMCq$vqfJ`VZ&fr|_%MW7^f7-&!`R9e&^fQETdYHfMVgur2lE0%mo+l83>QV<-gaKP54FhrM7*4%TqZl@hOPPd%P!cMgmck-q zSam$9Ben75f1w`R{*3`Dv|{m?jX(57sT?z*)deR}GDZUOhiI)NSxqn_2`#x!BPD{9 zC^y|LYSd_uhQM^BMnaN`(L_azx(u>d3{FL29XLJeKEQ(o6looTs|MiV@J;mN$EOEW=GHC|L6I?YvfdCVT!-ZW9c_bNuZ%} zEtRa~k&akKB#x{Ua&Wi`P)us6ZUH2&FMxCKB-anO0I7o*K3zrDWIS`A=JVZi}58)_5BHPc3B6e%f|ef3IY@_iNEE*(S5! zM)T`-wyEgCp(!)~?7tBIS*cMHtyp_E1FJY0G^hXRyp2hfeG|T#c6xt=D7-&${*@=~ zpD%W~P%kufiRAk$`xoKWy%PsTnv}Rep_1u;;KRys@yKBXfqFHm0by~JMBg7SwRK5{KW-i$oZ_|hC(**&otGO(DPo_oi5ou z>{sJ=+(gz}PyF`f`xDbM>5{wk>Mia;cLvQgtIpy#d)TtvfkC*T^mI}{SzEo^?cNTs z>xBJKG;8%9T@o{{n6nXcUQIewX5 z3GBkt(Rx^K+t@C1Sy4#*_{H-(Iro}4=aO}?KERu!G1xKPt<_CJ^w7T;g1KwE_R*|L zPo4y^j@3VQ0Lq-SOr2s=W#3Id%sb5x|akD~m zZsab1!rTqybxvAs+qQLn@4yT0^adN!!?xB5 zx17Prk@S6aGZHWFJ?UEgf>RvhR9AB97x!~qFZWP964Y9&B?d+&8@2gynN~mvcwA_k42NS!BsV)kn$Z_-(@P=x^oOR z#eK8o)Si>j@a}mWz9&Ci*0B!8%hm&XB}>pBc$uEJ+7G0?TE08``;E=@GqFSF#!uhP zbtd*K);vi2N4duV+el<*XVqpHx?ZuRC!M{}2k<*=+xw~O!s?_)DkFVYRMncmFPAjB zC-&_(ZPMHO@TRISUXBajSJth)p$w@`?7RPUM(Sn=04w^vLtjn?fbWiP@HUH*WBei< z(j=AB^V^Rh8P?OA-7gzo}?Ab$rw(3Tk=F|*^P+fnd zCnsUbvzUr@4stHW=z@bOfrw|l;X(e{0e_BH7oK5O_W%M#T z*kfv)N0HrSuZFbOo;Yc)GzNKAb);rqY41k;4*MrMMc&vt&UQxguJyqYc2}#5>bhn{ zqzOX?HE(B{9R_jUyyJ!hQYij;;(-5#N6f5`u7lM#U z?vXS6cldMX&Lk5To<+FxKhFQ1^PN`+|Fh6?-e=|!0JjzH9)A~+-QDWz8bFdHdsKB- z*+WG1s&nq;Za{Pepjxe77DdrT0GGFUEWZ2=@nGOVgQ0IUNr2H*n# zcLI3PloQcT=iEN~PLgDYs=n?YeGS030GDq?2! z9A9$IUA@#`>U1uS-Aq|W@i3qL(4V*Z}`3SB655&3T_ARy+8D;h+I`dlW}b^5lV}7 zw#m$=d@9?|UH$$2Z;g+S|C3*AdZ1dZJ|0EUV*m_5Q;MABG188flJiBde*$=0MD{jl zwm(UdY=2bM!v&=$i0GX#cbWN30MGk#$B5`_`&QMv0o>!)4~WPMp{^uJwy5e>0N3Q} zs=6gj(}N8F%xo@iSgxw0Q520j=T3)8hK7b#)a&)%{Mtzoxi#Ep<`V#Jv9(I2a^=Lt z#P224g(+#xYkdoVq6>2+wOVa$mSs7pkz(ib9e>guKomvmCMPFm&{||s001mF4vC0$y{1^&_4W1TZapR<_ZBGlDvyKN+1V9kX_+L+ zR#iRV?=A3vmCA{(K~+S~ z=E^#HAdF~cwqfKh0JEz4ZkQdW%!7XxKp%i_a_Yj&u?Z!dWdZ2+kxu9T1?#R3 UKgF*6umAu607*qoM6N<$f{eT`N&o-= diff --git "a/SYS.FormUI/Resources/\346\211\223\345\215\241.png" "b/SYS.FormUI/Resources/\346\211\223\345\215\241.png" new file mode 100644 index 0000000000000000000000000000000000000000..9666128ef6538148d40e4aded40f6d4d864b8284 GIT binary patch literal 16172 zcmbWe1yoznwl<0r+}ji=Ufcq~-Q8V^h2ZW^ad-FP4h4!7Efl9fi%YR$#og_t=bU@q zz5lrPe|Nl$5wiErT;H^B&8)fhCQ4OV1`C}S9S#l-OHNi&9roD?dshHZV1M1-xEv+4ds7^Y1s3@$>g{XA6l-QM=B%oH-vOX?Q4IgDqh>tCV&zwp`m_pEt9|m9# zbu*>#vbS?^<@XYz`UfsQ?D+3xHY$pLh`8AbQHlLkNTI8wN+IFs0;S+$mkq?p0^;Tev-5LsQ2gsf1=HqYZo#iEDg7^9urnblD>pYM zel|8wPfu1)PF6=3OEwT6A0Hb#2O9?m3rvE=)!V_%)QiQzmHIyrB%!Vl7i%XsYexr) zzlf%0j_z(kR4_~b>4Lq}zhNC*{}m=!z}UP@o!CIE?0;SQhoCv+-*QgwE_VM=ZVq9C z+ClB14sNb6S3!|y`7+J>QGllcNYj$$^&L5^cb$oa0+o{#qJp{2YHe-K&u+%e&dCEZXW?e&<7DBp09&x|K|rP~TwpF9 z9t#UDh$$E7KgLTsLfro*_wV?B^4#1J0>k)!wVHzYxOvPt!7Qd`AU+l|5Euq&3WBn5 zTYw?FTws_ADEL3nR9viKQ_a-wKcoJ&${dDhVa5aIf$(s!Ksb5KSxkAsyexb?=4LD) zFqD^_las>?%nSKT=znm8U)I_cmObx(O%V;K^S_SltSSCM3w~3`U%CrXLH_0$YEJd9 z%hvx*JpNaj|25vz3JL@Lza;;k+Fczj+&oQPpkkJ=*!^$##r8ki@95wGb@@*oIGMVb z!U_%4#Z`#P!o|^^;-6fwae`V>xH@PF^M@UywkN{&xiVr>Fm2K>iEG|9=ML zU-5=mnL1cPVMUqkAO5iYEnol4HrxM6gnxYZpGqApqW`!AtDk=l|6RCYC;u+}PzM;a z3#_nzRd{6%2gh3{Cn=`sm3!1>{ptO@`|gc_?}_Wg+f~eUcqBAcLbQpZir&VWmhHmL zhFa}v7J(3gR>-2Yj7Nu|S~-(*IpbZTe5s*ONtIB4e8h3`QF_Obl@qg!y9Iz7rj%VdX;!=o9KM^Pi5>j{BaVvjnzH$CtMa5raeV zLa##nSqJxt-P`%qPa3KYgzN31d8V?NVjd>1)4QQRJ34C0x~OXhC1jQsA=v)fd18n6 z*Rpz4AiEA_DJm1i;_2~|p0;1!%kpoIujJHQ8n<3L=#C7{zwO2*{YU zwW+=nZv2jX%LjtG(cz$+fUBLkh3V<2hh$FTQQ+doeIQ*VfI^amAtt(CDVdA9Tip!G zJ{Zgrsc+Pj@373$Nerec)S33bT46A&LDE=x`5s0Wcy4$0m~im;7&KCbnBn4aHju)j zw04dvj=auM@#rJ>+@G8Q+%UGpt%fJud|#&0t| z1U2xWzc;E!`TVyYnBL_};;;7$#`mSh?K>Hg%v7%;>63s&c$7+SS5dcI3OLPvlPA@9-CAiGRj!YlIzs0z-qc1?Gr0rB!C=2CefvlLrn0P ziCJ>qbwpF3u%pz#LvU@kXXJMU$g)rT))g$-x-A{}$aDDE!$EK(y#q!8u5aW6OI98& zFil5>A`_D2iK5_1TG*ay@FqNcPy8;^!f*t;6MJq*b|;jS6_tM|XVZ^-7iW&&?h+)+ z0tQa#>4_r6ew1dHw7bl4Xl+3IjsFR|M#4~>b?3-f(DxWI;imn>_i|=0OMA-9%rBa> zG}_t2*?RkjQtfpHoyLPwze#LmX%!y22Ena9nDC>H_GM=|dJqQ^BYEUpoKQf(naIQF zuSXRjm+Ni45&h3YgT3#L#J@C8AFOcB4gc0m4;5O&AhP}tO?sksmIi(o74P` z1grwg_o6Vy6i$rk&v^*(N1`qx`&E-PiI(&9B#}af_mrPol|46c3VfiZ;?BIbVu)r4 z4SA~`-K~$*<-5Dby2BVd7i6z}gxaOzG3N8jP*p3JlNH2O)P0iG7g94`wXfaF*9G3> z?7k|mrZCYE4Azx#W8k|E%3%E-IObRX&CoOKf=Pk-wNQ~mKqAu*S<+gMoSg;WcmrsV zc2Jl3o2Ovc=Su>W@%Mr=S4l1AyhI4m`VwND4+9swYsPxs5>pPpmz3-}qQ;Xc8&AmU z666s-OkqW9Dgf{xq$_@BEHMEa6FNSwnsLtP5VRS{ye>OP)`)o}=k=IO%I7Dg*$-7K z>5QAPlw9eKhHave(VWTo*!Mz~RW?-I*$V*tH2QFpuNWT$+cbA>xQJ7XE5K8cqnYSb z%f-HcARx7x(`%;g1I2lj-DDH4kLYG$xCn14l#(BI+VfCTZ}%9bm*o0-JrLCv)fcPq zdNpX#q7wm)y5T2+84)2DM7ql~74K|>MCFk|Z(_85^81@6aWEd$^wx4V893AfX!a`& z!>`N3w%1Si2_73R5V-Bl1c9L((ldZCE@qwWkQLlx0^4p}xYty5OOK*!=yf@vsH)DP z=ESz7Q9#YjAo;Nto+Jv~N)ksx)pzKURRR*jYgUS)Gli5Z+KXywmCTz9{Yb7Wth*Tk zgo&x@o*pzNgpy(OC~V?rUj3$|S-Q0TNVE1y?y zJjT?I`!3`ovD-Tyh)f354{+Ml6T5_Bdr}pW$p`}^5?^N+$)jy5RzX*dfVw8n^$^h8S3;E z%hS9Yra_5O%aT??B&>#iP0bn{b5%qiO-+ofVHF#`KIEablxj(wPE7?d&k|2sHiry%OQ@?~jOzKnwH>^s=e! z$M_E9Btub)E#s2#3LhDSBsFJ4b*m$;^hE)@SHN0P1V(x5$hwuSIGKc`b~hPY%W8RQ zH#M{m(Q)GVa8zlv4=d6k6cvDIc$yNtCE>%0wfeBPRbcfOJV>l;r(amDI?t$Vc%sR+ z_`DfAUJY6s&`C{=ND?c$*4>DJL|mY05ExsnBl-KjEV#BSk|HUmyew6I2`A6slN?fU zbSu1MLoY7!C-+?e&|;A2P8^r>YoG2Uz1&R6S4Iut2*nL-P!vw$Hu^RSbL-?TQybc` z$TBdzfsXAME)jcTwk%^L(FrE9wvaRnclf>K8IZ!}D}TEsF|H1{5YhKBUxs^-O?Z!(lB%zrMqOI6xL;k&&K?`r|DH51X| z(O@(#FjkdrN*Q(Xg*yGpR7eTOM=JrQmTe7)pZr2=eicXHKSCvms76UF#bpL!W}OVI zsL8*bgv>m5R?XC`-G>qq8LC^$K|}a_>gTy_Ce0uOT9n!7W+ZfcE!j}(Jra???)9#; zGVOY3Ob4cIcrl=Yii(j~No(R4+ms{}4N1|BMlCXxreP#F$3k!N(arHJ=VgS{-XJN- zy0`g=`oI=1cKs1J$85FdV^PZQ!}gs*9|4}7Uhc_JGxo#QU4kcD_pN;xLmU=a)EhO5 z1%%>P#RioTAD1NXe<};Rst`)hNSRSwpm6cQ$H*f_F;oe$PKexHXs54{nAxy3>q&B@ z4`#E08+QmQ^X_Y07aNp8M_B+1bGIyKY zPR1uKEumB-0I=aZOSjihpGRngcUC)=;2 zu`mHmmZd-*Go&~?tyO645pb$Lw$*}MnEfd{qO6hH7&OSjG_@jsVi$B8tWYw`^qO4o zX=*;uBjBv`MsIhB-Mb67q4~)pj$tgd!UCwoUKo+~fr|^Chqex$fn6?WjM(c0WIIz* zE9V6drlr86eigEtJTd_P>Qq#+6d@&KPwdbvw`RXHXMlYJnbM|4OStx{*N?biCLjr} zhDizB{5O6|brUlj*%nPy)mSuHq$H@FIwgoMoOFPi1d~Fmw;df612ix(6SWI$UA}Hn zy!B!CMPT4&pxmM-s&4wc^gM}IAu4aDE_P@lc^|X?yzn_%R6{EV{>A@dg>$XzhqndP z?72l{#pRZzz^VlG`MdA?1-o%>Ij;el&%5bH0lOIGJ=YgvtdH;K58rSJNfP{VL}$pT zJX2>wJg8hL!b?S>tR-nz(?J7-18ql|G@6y{Bui+d#TX76rS>N@_1+cAiZ;VBsHPw; zUUNT%ALAXpH1j_=oQehk@e@P!LkJ`ZlOl0(l@`xu>=C#&54fxJB{_c}aqFVTh-#|L zeAshLh_MRv=gv%MK}mw!5{+*-Qzy}c^OaLb1E}MF*1;gPu5mD*^JQ}vvgsP5s*^Xd z_UXQudC|LatmWYJxO_PiOXt?8x5YPN&!lPD(a!h3!6;XGE*kxHv))cCuf`*u zl6^^k@Jk5%u>_aE1}X%n1TM><8D1j!p}V{i*XARSVe6JX{@MD8(_S(*OczH1?+tV7 zgG!AYL)o!SF>cZFl*RltC315H zD{YM81vvYem-*FF$119_{4=n=B(W8<=v(5HZsdV^k_dy;)5xI(A049y>VS2Erk}Qi zW-KcbQ#!5p{_mcS)itU;%U;RTGQHn6zK`FX9GCgN{LSs*T4hi^y?y|Xr*qg)2MsS* zLGLhE_`YupCy*lh*weIKSy7ZLD05C@#b%sU#&|b9p!T8o&6jM~g^v>EkZU_4n|rpk zOH>Vem&9I|kM+|JC_hb}WUOzm^Cy+SQ zTlE-zxjaedm$UZ^20{?vGS(DlWVl&>Z!6CLkchCCg5;8qu}A8_xsa_NR@$G1se3t<_V?&qNVq0 z2P1fj@q_p^sC(BWZQaGV#s?kMdBUB5)o`f(^!@(BHbqOzm!S_fJ*01$e;<~f;Mna5 zg#9>)=tY?;<;E)UPgP!9`Gl$;d|BGAY1`d1f^vgqG-eD{)mPnQI z>HIxg_vKX#okQShHD#OSrk0>WUPFdbeKN(KwBU{=Z zmfL6XN4hCH*sAy#BW3>O^}tU_^_=n7lRdlN{jP5}vV5PjqQ=z|v5-rm3bkt?AO3^^ z@im$8=)7kITue7+5*AB*IIBHQO{dq_gIv<8UzCVqokOdB-)?-1RWq$dh|*VqGdt_W zg$Okbhilx;jxPS;Xf9EHWlf`?IOzI|%RUp`1YO}W;>SKkmWp)-^7y{sQAtg$g2c|Z zJR_>~vwfm?u2+2gD8%yo*&xeuJw@yv>DboJ`I^2!jT2)EycLJ6kRuGFpQ0A+ieKJ2 zh=AiqhR{rd6P5AtL!6m1PnqLmfDQieT)%FXD?`MhB-_E`=uKr~?^85B`@EqQiM*xe z6_IKpY@FcObd$3aV-KL%u6q>k6 zmR^!&mm?thW`5#K+cuo~zIPv;QJ%fbadK5T$KGCE5)>tqSI+1g%QN)G_Ln4+l8vQM z`pBd8;J2plZOH2I{WZtrcI3g?ksu;0WEMm{{t-8i57wOVoNttw2A_~=&oy9Tq)d{C z&7;i&jSsI%*RK}5Y&}Y6d2d6dkL+kR=Ck1T-Ic==yzfWvUI(f|z2y~aSO5ZFzh;fL zhyFn%_$_DfMyoX@vJ^lj$3a{flzCE7v(aMZ1{8r0$d}7;Wny!x+sCCF`V$6aX7BZ; z9VcZuGAWWN{o>HoNkA_iy{kGWc0t!x4N_2J{TTLPGAmspmJXhTUlJjtdF;^1Ov;V=4UMP0;KfQ!KAgg>Hy{<1HQX@4rvwhB=us)j z6QaGP{q0>gEv1fLMeijL4ml83G*dhR$jtITjADp@0}dCGo5pb>KGqvPuZ#ieBY#SC z(t+kTN&}RPh^8>fqIFK3ai4lbKc}TGlX`4gaK$lU{r$S@@ zwna8ozb~upX-bMZ5tjzOA@Y@ZcFGs2VDB(P5>5Sw(gZpph?bP~y+`O<1y8szlLmh2 z&wSDunY4-7d_LM0c3(H%TnII;gR*h03BVE+{`M`}hW1hN>Xzqb-q*i>ec2AtXzj#0 zc!?d`k@K|XWf){vOB;CqdY6?|y3z>c3N&{=#fsj!gl=9EKMG2x*B8)=I*EYo*%6eR zlz7}9@kf*fO$TfLF;(i99H^v|7mX_=42i=d@XR=bBZJqNN`&U7NAg5!R_K*YrRvt_ zsA3j1qcW%qWZDy<;LvC$Q%qG9yf!=-8QGrRC9oA>F$Rg{iwe#iDRxAvZGR#j7I?%id3-nO#kS?fD+&&~Sb79y1(|1V~q z1yx*X>E_%#gSN~Jt-F$vRZ&6+Qh!6#pGp==Nx-0q;*l$U6z|mxM*e#mK_Pab&a6VJ z!VSte`4E&W99#l)x-Df}|1~enj{0vTaA=WUMSxxlBso=`4YLX&pmTFvmj05XPAOh0 z{gO^JX?V@5;#8`<1}R@WDHl<%Ui+L`2qjhr*LUP3bjeD^uCaqhAS=4spCQT;%|UfE z69jEnQXvGamQ5lCs?c?YQ6dAb(e)4!KAzUo^sKB(=(_j4l56#}PHICMc9S>PO~t}z zsaR#i}iK~R_Ra4AY=YS`q)wR4Fz8lKQi$Oi>%`= zTw-l0`F^QJZ;{jy-Y#&i3Zlw#S?(9HX3-N9{L`mtOfJO1GwN*aCuiR3l-HcIBRP3a zTjVDs6Pp)TkZ?cs*ccNNm7Dpe_F2>UUn@gb-uu#}H9Rfw{%qr7Bv*~Tb(a1MAHN?2 zx#w?JXJGr&w7+JVa}V_BSwp5y4=dG3)uIDJ3XJshp388awf7>jvI2fVi<=rb478rT zwOsRZMEU^p1i?7S3QU%`4c+u(<=WcXWoEJCxCn!Mbd-Yz9bLzrNi~o@)BU5>0~UX2 z;0C|g#~S{~V6M95gR7m+o1xlfGdP{C0nONrSXsj3 z>JmVGi1`FZ{?_X`yzXW-6SvQl0{ifcYU)NC{ApWg6;ImBU9|txl)xm#)F{x^NK0VC z_e9IR`#E{tU#_Hv`n!^#K;vwz6Lrzt3SzA`#%yGjO{`iTsBAaaAau$3;QO5n{S&&0 zRm<-+YhKqC%+!!Q3!YyeJk_7!a%zW^^Ojm-m}XCW<}KTP*`{&b9yc4tdOoZuh>%Ft z7RnwuFWvk&BFG0qx~6l>7$#_$J&g-b6@bnm>^%a1e7O(hm(D3M`Ae>o0^RYfT8~K_ z=C4R+d>PoeC4So$I`Zkgv;6gkCX}Uc^-Efzr7;6_1xYtD#UTHJK9P8=mKtFwdeNeg z`zlZ(*^X;%^ceDkZyqB|b=Op9 zN$wzZwX8@!x5)mhG~~5MBtMqJ+a|m*Ok-kA1ikjvH_l3M!|SDnjSGfl1Vr#5?To3+p!u2EV*_C9~!=l!qx1ZpcsUekEe3s?YE4q4)AP088| z$UX`m?Mn6oq1higQmtB*9~fkcYN)H-gFMR8Z6Gz&V1s^uMWU0QD7UO2JI%&{1cv1D zOgWg|YRAvIm!+^}%%NnN#58n8iYDCovkin(&J;~qTAIiZqP znHk>dpBbW~TPBb8+L!nwjUN!IL%z>a{vm0YX?IuHrvVfJFt_$ynK;R&H0gIaIP-Oy znB9*XWZUtU3Dc}moR-h!Tc5Y~rA?majVNXHDe!MUr0g}r7fa|=6O9ge(Uz&Ot=S7+r33- z*e6fn<5jf(a21a}ABW?p8 z;)Q!riHFyh=! zBQqN1VN5%L_*eaodguvi=S_3Zw6KZDvVHA4x#YLwb^^!EK0 zU#Z*P_4Czwk7uKFEccFS@XEB9uqw%DW67f3vE1S}28dZ~wRT@#E@3y5nHdH2Mt|Sy zq+#y3@>$sHXGl=X{1-EnradG1#UNtS+V@@8#O_7LJ)66SxAsTPn&cZ-QM0*80=aq~ zinq9ZWu9N8fu?i-)7^5&N#<#Ni<>ufXG_Bgj2d_jH2-y}2SSG*vSoKtaBKFLKARS7+k?lljhM1YCTB1azx9`MQ4@kz9K>8f` z`>ML&@*e{we+Ec*gj$Mk>2zNLUUsSJ_|nXQcxHeOkDdLiL71(EZ_$aO%i=L8&t;6g zQ&T2RGger89)_t2p;65iI)1Y^2rwKtQRR{!aHU0Luhi1j=u?>!n9Xj}>O}@1?=xpW zgDI&mUeA~>zoT}&)v$u$jp2yMpu6#%^QeDE&J;Q-!)aI|SxL)ks+GGfy$QUWnHKch z0h_05rb%ZdTABy`E9O(bT@7Uus#p5Yf)jlW7If0^@i zaV?HZhj+(=-2gab^-zj+PP2T-Zl(wo)zZ=#M|KfnAAZ|rJO_XBli`#i` z;dn@Pur@L`IFY`jP{!9g=w{8IZY}T-w+!$jI8isYAy%rlLbTEMszWf+cMZ@(lC&kj z@*w@`<@i;dj&Vj2P|J|rD<~n)FE&LhiW{fc1-tj-QWXxV?&w|b=8*RqNxZ4J*k^gd zLU1tr6a}s+&txN+!;Nz2LEZP5Z=uTy=U6jYUCb9QeMeU&BwLEVjJ~+rd{rgE16}dC zdtpS&_)*Z4138TpxPx3_=R(0q}}XQv{(v ziq`n@=wM_2OHjUhdYL`vtlE;+S9GM}*hOf-eeKPu=v3b}vNw8~E4Zp_jHt)pF9aN3 zFDA=sy`&Fv=ib2*JpQJx=56gz!It@+^&)8L{Q&=lcyW zceU;}BymTvfIx^u+JZ>rO&Z6pVZFh@CXyyZNgm2YUny+QBd!V%$N4ry9vIz|Wk6-G z@}n*lNkJ#|?$xDP#LMNi!JTgePI7p1W8r0NX%O|m$Br*epJiY+p@fA;vI$r*drzP~ zpUvm5XOIO3XN-~clgZ0%3lWP-`1kopg+&of)t*v44i4Sd2M3&@2(=hBo*X|5lgWpUD&i_i(KSU*;>xqS#P|4{hvRf_7`bF5 zk+@RZu#v!0NP>&7HP~PXeLRO4Z~hEp4X{g=<`~%ZMSl6cwV7K-7)3#-nF>su5r~!Z zs_5u*6uhTN%PW1)9VI7)oJw0v9ph&?b{h0>{58sqF+$_pYQBa06Re110U)7`1b4f} zLL(bOD1v#Dajh;9)cY{JdwZUjsQoy{=u^0}Jn8Y+ zf>f{DRG7)zU&OHK!t*tLUT)Uvmvc8IhP>&LS*ei8=EI*3rQcohO=Tr zdTh{H3PuD(s?gz}Zwx)RExulmR*EC$hTOEzOc(*VXl!nS%a7KJ+dMBjXgeX>X49v( zlL2u(`)QdCAmT#QM#WF>_TS3rFb3@O`hKx)R8rF_Sv8~H!hW=s`I-O-q!tI!FrTqR zEI+3Bs;uWQY3k!aQlhPwq(o~9IfVz;nCnhAhVr*>i~{mizIRCi9SNwx(dZ39X*1LG z3c_CVA)W5`aJw~hXeb)Q!CXk*_DNgKGwJhqRJ3GYx8C58zTJJj=7KYgzgGy>+@ob* z#UOnj)!(wIqCIgDF=+_ro9gjJaR>SJ;7I9!y6*3x6W*_${WYQges%~p|}zJBR1dv%T*bB#j-TY|m1gfjgmMWwarSszRA+T~(q478J@ z6DKdGBUZoO?VzG$ z>E0Y}Z?lSXsqUMyZ;vx?Jvr32Kh6g5SgU-3c(#r~^lmurty?FKe<^<oc) zr!91f9wF3`UgZ<&W$WA%d!B`;G^n~q$|1U=kRua)QnS_??R4{=pP>=)yzws~{;8VO zU(zyYDCPYIdu}a3m>lWh@ImfZ2zu|TG~AI)$?SGsSH{u%tH{HbHAaB=q}VscI&{CA zEwN}Gp4;JX#=p~m4EmdzRD^RsW@K9$zec^;2*DBjY8N^x9b2|wRVk4^*J^pYg57s; zO+97H6S^OdcG6Woe{iH=Xk9-~tu*aFVwkvl*Ih!VrWIZE(ZpKzX`dPDvJEx8H*@9)<8z0=S}%!0sm6o`FC`j-Hev%aH&_IFvP4R) zCZJ{hh%EI>J*ak0pEz!iapRi9Hz@LuZzIAuARVe}Tkk*3YMPicK%qH~i3*mNkU(?%=arRq3x;dYd#^@a4S~3SpvM`!_7XD*W>=J>v zlQX`P-|YPX7r{IKH3o*kL&(p7> zNhVBcRsMX3deWH?c(={Q(KEHtx5vvZo6 zh{q^)4lpmtfXs~-%TH#-a~FnsYd0i?LFtb?trr7Zn|#(D&V!E-FS1>|K2U4_2D>V^pi16UUZ%WL4N$Wg zdAUzNq3-LUEtIa5j1rADf!O;;A=JO^89FkB{d7@D;t_s(=R-pDoy_IER#cV5EAac; zxKHkupZOJn4e#$9KC>DXFVaIIeSWo5QH$kx=UE8y?A^i>u8Na`) zSd7jaxAyn#E63T>@-4P+qe02Ld}eb330RKN@8rajY5XpW$+r&|n;sVup6SP>U7N9C zN-%_KE{rs(ic|3z{`yox8o!_UX@W;l+ zyiR!DU1_B?GV=)DnX~^H9315JKHqvOc-*3Ux$f@|wFVOxJWXZv9FqH8 zK_p`fnH6?+cK}ZsUur=}aX`FAi^+j&~OU)XfHO4F2HAw4?SLAiij7?*Oe zZP42BwBs4>LC^MRl1$L+bc~aeb1lB=W)%m(_Sao|`VXMn^{kwN@^h`)GLwp6I(zfb z3cq{Kf{ps;bJtuU-}HW3AjD~6>U(zoIQ}XCkophUnFrlI`Em)hSG>D6%N?S=cCi@~-QQ0FZ*RQMN9e41vSXVEMNzMv zrKo|6xkHuG?~70Bg)Y!y>4hb871)%Ol>B?@AEj)W>5h3pPLAB5!M}}(N2t*%1PU#s z^);Td&>PfH5gDj|zOSEtzsC;Z4(CEK>jzd6bZF1+Q+YJ?(j+ZO@yjK1g_IbH5c1}@ zEZesRRQ$9u`raYr(DUR$OGk$)##BZhjR$L9$xvwC>*?vuR>pzA#8~;h$9w@-Iss{o zRaQJXGgH4LFx}2`wW|ky=3s-kxTK1Iel-;9WAb;G5gYg*ce;9UyP1IFuK?&JfS8E4tB8h=y-aHoJ_OmG!)%=RrVIO0Hv(7M}ve zrwcn}6Y^N==*x4n>dTXoLeQ^Ea4{tM$KKN& zucHR8KV;_Tf28;EGNzy++@75d!L&P!+u;p7dtI;*WBf>U?TfJ+-~*8ZH@$Dqr!{+{cRBUi_J^=pP@eA-9YG$D z+0XzA#*qwz-5@wHSQ}lt>pgjQ8$21=k5(myal2wasR(Npo(tEU!l11l-EuExbh&q4%p-)0*uzXa3-G@aQ5EcM#VbQ&)xF zI@D-GVGXHyGVQ!cg$7mC9h(L0a2Dvj%Ni7Ac3t&4825X*>B_-vhdpdChzI!^`JRg! zyBSwaOcHHhER@;Sb${T(Z(jq4vP^hMcu>{Sc&x)XD?k5POo|Qjo=$SozIA0h2(d|1 z%iEjN!yy8PQWa*z76ZeWi`M9gyHR!{^Nru9Bf5>C*+x_yy;PI^ZV~r=LKTrGx2`K3 zApCA9`R(&bZ?>%7t4QaMmkA9KSKW8PCO`i)%u!A>v@L8Wh}_FX%ggGcX`KSKg6n;( zvpadhoeHP-)QQ4@)U0xCyT=dp^pPIFY$v|>ly(heA%2+EeDmP`_~_)5+{NnKqYjM( z#7RTeTZ0pVESg3%RD=d#B?bb4REVn)3VOY)kP3nowmWi|#STP?v}%+X#-bAf4hfjq z*nV1lj`|6aj9PVF|N33T8l25G02~nz@|kHmR^oXJ_3^P7r=4Yo?J@L%TgmYQM5YdV zpG$8;n)%GG5x-5Cefwf#W`d!{nO`txAL zW@{>p1JnLD0ms+NjxRlP`+tIOi0G7m#esHQp8SbA(lacI3+j1L7zd0dSikXMn+Cp0 z^sSZ0B6v9O%%0O12YeqNe=i?~N@LyEi-;ON=Q(OYr6w6#^Yb^G@Pjv*?;*+OrOk>t zIu1>#iJ#Om-A)(dJUyuN;ZN4EF21<8aB;D^u3CCAL}r0Ie57Fa?p>eEJ0(uyI22I0 z(xh~ieDUo1nDG-Mj?g80+zyiPOhcO%y|Xr%u-EBVUr6j&#u|x)iN`fybCW>l-6NKL zI;m+OD0js3D7F}gSHu{6`L=_5t}^0eq%n3kKQLY7<+9wl4jwR9s#*AP)?v?n$l-2J zyF*ClE?T*@X|RtV*z)=`$riirZ`I*4RQE2SZPTR3j_YHem3*L_!&g<)d>ciw`TG}o z;A2!zN$eZB-?&=h!_L9o8@FeH>;k^0B{%uF)ZIOWNVsMuHZIXoQ6sk5Q8J9<0D(d2 zm_Pi(?M7B}J43x%5+&T?bDSZn$lIF*x18ze=&?#_$nWs|NBVUiENhy{$rc_^4_anB zi>iJ(551?6<4=Zd5BaF=igDBEg(L)As_;FXD}aae`zvs%)r4w24g$Xu$E}ea-WV$X z!A0PlM&x*w@_hG`7^1iX(bv^92%sKmr8zfo7)tvCXH>5zsYyE3a zH0bwObj<6Wc_GG0*vwph3nq?JDxD^)1XCaK6`}Z@f|nqEcT5Rq^MOz7aUK|;U|coh zWZs+8%b6Kpt!CHK-I;E%((3Kta%I(co*EZyGx-6o^ry}F<3;)HOyDg>^5-a^0u5CW z^Y_WX#mGnYPevs;g;k8oxos(ni{EV3gAB2#(=0-}!h*-}U%kq>U7!;Vs_F$s$kT*I z&*%y{@4kJhNP@nOB`Wdg)2) zK}FYyVPp!^Ow{Z{Q4!b5^By9q1sU=6*A*+3Mbyc{MLi2k9OIvHCe(j-;oLubFyv>K z@5eO@Ya?uk7kNrialXHNlO2btiC5XhP7-(6Blj`m%4~b_S##A7NN^ zI^`Qu5K<&$&6Ih ze#exz%`_-mlX2QG5k|Wt0yX`#(A|f~x_xOtPT|xABK2>|XzQ%?egACp@scdfch&>j zAMCVW#h8#um;t_nt;cdRjN3(v`A`^vas8@JFI}Gg_dCTrFW6sy{}!B|T83c4o&vXS zS<=BdWe?vjl^PtP)mC|{ckvLX|B*PVxkI0y{xn+a&AH*S?V(K8r#T!y5tG`L3o-88 zd!KR39rgZ2C$9of_@w{wh2UBLymj+(H7&^rhJ{6$u;=4K!%b8qLcgvhcE{AVzg*Me z?>|2c+O#t;#I@3DYMAYZ6S(k=By|mS4ec{QI|mvX8bA3xr7WTVu(n1{uk$s~JeOFx zu}23tNoy^xD|>QpK~Oxoq#qYvLT!tb z&&6wFLcsCmVS-DWn_#o5s>FIUDJR}6R_bcW8diR{xAjNoIiA${YytIEumH&7M=(YX zmrDR#sa$^Wj!DZ-yNwezWw75Jjkx*v>;G~CvCc3qIi$Hh(B4=ySYCHI54grWdBR04+b8;y;P-~0PDj~spt z@uL~1y(_Gzjvls~vwEaFb=C2?4XEV&nq6{BZ75>6I{9sAfxcZj?Tsidc&?*H*aw&8 zr2V0;z>W3JljN@17+Y&V_gnv#SHWRUzLc#a3Z6FqSZsny-NSaaIHPgxb4}HxE#O6< zZ`4A8#1skm=doE(OY8W{ZvM;Bk3xx;7U2LFSDmKCulh||Y0e03MKp#Iw?Pj4yjV(- zZqB9~r4#bI1@midQ>>Xr8^jyUA>&<}3R_@+xZbN@o+n)e0Yd_-XKa=h7P9IwKz8jq zA3e+AMmIX5l^@tW6U+>Qr!&(k93nhJN-~bHd>7y9KC`W?P9^Z}9(!^h(alyu@TB^} zv3mM8W!fm67X{M!;YiRV_ccVQ+zC^F5|PnK=vYDy?R%%Y@nl_l{!l#!IR#+Nn-)`C z-Ozvu(k7!H^`<4DaOLuE^96pvM)eBW?|!*Fz7huzN<9aBKHClE+cE6>QMhAJ`vbs3 z%IZ5*^)zO>PbvredWBe(2l6rw-rp@RFJCJr)@f;(NU_Z(ufIdWqopfrd&IqW4-MR# z!RW`8P5C_W@cxc}zMyH1zWVor=*xWn7xFKciPf`qC3BtJpH>kxG=5Qp&cfq{$RvkW zFz9K)5kb09gh2UVl>$2*oB3=Srjy5leC*)>u!C^MZI^Opm12zGm-24 zMYv_z7nSsNlH*{2z71r11i1OY6^;`e07&DBZZHXrv&=87bW%O@AB}2bnb`??svD?= ziyxD#e|mch6qHaf|UGsoUG{;C~v`qas9D zSfaKvR}Q`u&mTOqN|&Y3?78|VO;P|TQ6}<*4yvjeH8fIYXSNh;GWhD10pSCs-aH~A zYp|Z+a9oibP``73{El_;m+ix&ZpX;)-)6qn)@QB=sEy#eI~qA*L-JhQdAobNQp^Nn zAvZJFbD~+9nN>INbrz*+$Pg9+0)nSFn%W|pz1%Jqr4&b-*sU(?ylp9cRGfNlNy%4Y zuj;kp_@e^62Rc{kx%+{zWwXYJzfnE=pwq^qcfS8lGJ{UZ?OU-_#f57 zIt5hJ6cfv8S-95KV}C#A#eLQ~+$Bl~?!cq?+292*8|WxG%FFBHm2*%4 zyV;xWJlTcg^ykOnUmc(JBI#^d2vVkV1Gg2|=CGN@E>?hAC~U%mqOCcuyLmYA!|Z)u z%jtM`1C-pU-chAymu*p9-2Z?p4hUFh&>^>K{=#4p zI*;Qq2GP`#YeK;hyq#lFxE?ooyHV?|sH|MS#1?^rwS0isFYWaNYwnN#SQ0GDcV~^8 ztz2i=nE06`gOy~s|KME{HlO$o=B%B!9C(oaK?z0O#iymU;64fz>;rTJRaLb;#S_44 z_OyG_u_{48UI0GC+|LZXH45p1I`$KZYAui8+T*%GJ>71<>d8wz(=WcE%bCIhty2JX rP0&sLX6x!8tk$f4UhyXZyof|HrSrcM-{1fH|Lk&7%93^BCc*y?x*$v1 literal 0 HcmV?d00001 diff --git a/SYS.FormUI/SYS.FormUI.csproj b/SYS.FormUI/SYS.FormUI.csproj index bbae7db..5979bd2 100644 --- a/SYS.FormUI/SYS.FormUI.csproj +++ b/SYS.FormUI/SYS.FormUI.csproj @@ -252,6 +252,12 @@ FrmLoading.cs + + Form + + + FrmMain.cs + UserControl @@ -432,12 +438,6 @@ FrmLogin.cs - - Form - - - FrmMain.cs - Form @@ -469,7 +469,7 @@ ucVipType.cs - Always + PreserveNewest @@ -622,9 +622,6 @@ FrmLogin.cs Designer - - FrmMain.cs - FrmReserManager.cs @@ -637,6 +634,9 @@ FrmWorkerCheckInfo.cs + + FrmMain.cs + ucBaseInformation.cs @@ -867,6 +867,7 @@ Always + Always @@ -994,6 +995,7 @@ + -- Gitee From 37ca0acd8e9696db1637dc2d4522a7599f0944e5 Mon Sep 17 00:00:00 2001 From: Chunkit Yeung Date: Tue, 6 Dec 2022 11:35:19 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=BA=93=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../MySQL\347\211\210\346\234\254/Data.sql" | 5440 ----- .../MySQL\347\211\210\346\234\254/Table.sql" | 648 - .../db_file.sql" | 19096 ++++++++++++++++ .../data.sql" | 5096 ----- .../db_file.sql" | 19096 ++++++++++++++++ .../table.sql" | 1215 - 6 files changed, 38192 insertions(+), 12399 deletions(-) delete mode 100644 "\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/Data.sql" delete mode 100644 "\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/Table.sql" create mode 100644 "\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/db_file.sql" delete mode 100644 "\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/PostgreSQL\347\211\210\346\234\254/data.sql" create mode 100644 "\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/PostgreSQL\347\211\210\346\234\254/db_file.sql" delete mode 100644 "\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/PostgreSQL\347\211\210\346\234\254/table.sql" diff --git "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/Data.sql" "b/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/Data.sql" deleted file mode 100644 index 0b913c9..0000000 --- "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/Data.sql" +++ /dev/null @@ -1,5440 +0,0 @@ -INSERT INTO `admininfo` (`Id`, `AdminAccount`, `AdminPassword`, `AdminType`, `AdminName`, `IsAdmin`, `DeleteMk`, `datains_usr`, `datains_time`, `datachg_usr`, `datachg_time`) VALUES (1, 'admin', 'admin', 'Admin', '杨俊杰', 1, 0, NULL, NULL, NULL, NULL); -INSERT INTO `admininfo` (`Id`, `AdminAccount`, `AdminPassword`, `AdminType`, `AdminName`, `IsAdmin`, `DeleteMk`, `datains_usr`, `datains_time`, `datachg_usr`, `datachg_time`) VALUES (2, 'bha', 'hotelmin', 'HotelManager', '宾华安', 0, 0, NULL, NULL, NULL, NULL); -INSERT INTO `admininfo` (`Id`, `AdminAccount`, `AdminPassword`, `AdminType`, `AdminName`, `IsAdmin`, `DeleteMk`, `datains_usr`, `datains_time`, `datachg_usr`, `datachg_time`) VALUES (3, 'testmin', 'testmin', 'GeneralManager', '测试', 0, 1, '', '2021-05-16', NULL, NULL); -INSERT INTO `admininfo` (`Id`, `AdminAccount`, `AdminPassword`, `AdminType`, `AdminName`, `IsAdmin`, `DeleteMk`, `datains_usr`, `datains_time`, `datachg_usr`, `datachg_time`) VALUES (4, 'xym', 'cashmin', 'FinanceManager', '熊越明', 0, 0, NULL, NULL, NULL, NULL); -INSERT INTO `admininfo` (`Id`, `AdminAccount`, `AdminPassword`, `AdminType`, `AdminName`, `IsAdmin`, `DeleteMk`, `datains_usr`, `datains_time`, `datachg_usr`, `datachg_time`) VALUES (6, 'hr', '123456', 'HRManager', '人力经理', 0, 0, 'admin', '2021-05-22', NULL, NULL); -INSERT INTO `admininfo` (`Id`, `AdminAccount`, `AdminPassword`, `AdminType`, `AdminName`, `IsAdmin`, `DeleteMk`, `datains_usr`, `datains_time`, `datachg_usr`, `datachg_time`) VALUES (9, 'test1', '6666', 'test', '测试', 0, 1, 'admin', '2021-07-31', NULL, NULL); -INSERT INTO `admininfo` (`Id`, `AdminAccount`, `AdminPassword`, `AdminType`, `AdminName`, `IsAdmin`, `DeleteMk`, `datains_usr`, `datains_time`, `datachg_usr`, `datachg_time`) VALUES (5, 'lishun', 'lishun', 'GeneralManager', '李顺', 0, 1, 'admin', '2021-05-18', NULL, NULL); -INSERT INTO `admintype` (`Id`, `type_id`, `type_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, 'Admin', '超级管理员', 0, NULL, NULL, NULL, NULL); -INSERT INTO `admintype` (`Id`, `type_id`, `type_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (2, 'FinanceManager', '财务经理', 0, NULL, NULL, NULL, NULL); -INSERT INTO `admintype` (`Id`, `type_id`, `type_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (3, 'GeneralManager', '总经理', 0, NULL, NULL, NULL, NULL); -INSERT INTO `admintype` (`Id`, `type_id`, `type_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (4, 'HotelManager', '酒店经理', 0, NULL, NULL, NULL, NULL); -INSERT INTO `admintype` (`Id`, `type_id`, `type_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (5, 'HRManager', '人力资源经理', 0, NULL, NULL, NULL, NULL); -INSERT INTO `admintype` (`Id`, `type_id`, `type_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (6, 'LogisticsManager', '后勤经理', 0, NULL, NULL, NULL, NULL); -INSERT INTO `admintype` (`Id`, `type_id`, `type_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (7, 'CheckGroup', '监管小组', 0, NULL, NULL, NULL, NULL); -INSERT INTO `applicationversion` (`base_versionId`, `base_version`) VALUES (1, '1.5.0.7'); -INSERT INTO `backinfo` (`BackNo`, `BackName`, `BackSource`, `BackCash`, `BackType`, `BackPerson`, `ControlClub`, `BackClub`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('B001', '一次性毛巾', '超市', 1000.00, 1, '李杰峰', '财务部', '餐饮部', 0, NULL, NULL, NULL, NULL); -INSERT INTO `backinfo` (`BackNo`, `BackName`, `BackSource`, `BackCash`, `BackType`, `BackPerson`, `ControlClub`, `BackClub`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('B002', '一次性牙刷', '超市', 2000.00, 2, '李杰峰', '财务部', '酒店部', 0, NULL, NULL, NULL, NULL); -INSERT INTO `base` (`url_no`, `url_addr`) VALUES (1, 'https://gitee.com/java-and-net/TopskyHotelManagerSystem/releases'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1, '北京市', NULL, '东城区', '110101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2, '北京市', NULL, '西城区', '110102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3, '北京市', NULL, '崇文区', '110103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4, '北京市', NULL, '宣武区', '110104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (5, '北京市', NULL, '朝阳区', '110105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (6, '北京市', NULL, '丰台区', '110106'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (7, '北京市', NULL, '石景山区', '110107'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (8, '北京市', NULL, '海淀区', '110108'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (9, '北京市', NULL, '门头沟区', '110109'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (10, '北京市', NULL, '燕山区', '110110'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (11, '北京市', NULL, '房山区', '110111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (12, '北京市', NULL, '通州区', '110112'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (13, '北京市', NULL, '顺义区', '110113'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (14, '北京市', NULL, '昌平区', '110114'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (15, '北京市', NULL, '大兴区', '110115'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (16, '北京市', NULL, '怀柔区', '110116'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (17, '北京市', NULL, '平谷区', '110117'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (18, '北京市', NULL, '昌平县', '110221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (19, '北京市', NULL, '顺义县', '110222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (20, '北京市', NULL, '通县', '110223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (21, '北京市', NULL, '大兴县', '110224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (22, '北京市', NULL, '房山县', '110225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (23, '北京市', NULL, '平谷县', '110226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (24, '北京市', NULL, '怀柔县', '110227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (25, '北京市', NULL, '密云县', '110228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (26, '北京市', NULL, '延庆县', '110229'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (27, '天津市', NULL, '和平区', '120101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (28, '天津市', NULL, '河东区', '120102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (29, '天津市', NULL, '河西区', '120103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (30, '天津市', NULL, '南开区', '120104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (31, '天津市', NULL, '河北区', '120105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (32, '天津市', NULL, '红桥区', '120106'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (33, '天津市', NULL, '塘沽区', '120107'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (34, '天津市', NULL, '汉沽区', '120108'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (35, '天津市', NULL, '大港区', '120109'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (36, '天津市', NULL, '东丽区', '120110'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (37, '天津市', NULL, '西青区', '120111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (38, '天津市', NULL, '津南区', '120112'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (39, '天津市', NULL, '北辰区', '120113'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (40, '天津市', NULL, '武清区', '120114'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (41, '天津市', NULL, '宝坻区', '120115'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (42, '天津市', NULL, '宁河县', '120221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (43, '天津市', NULL, '武清县', '120222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (44, '天津市', NULL, '静海县', '120223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (45, '天津市', NULL, '宝坻县', '120224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (46, '天津市', NULL, '蓟县', '120225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (47, '河北省', '石家庄市', '市辖区', '130101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (48, '河北省', '石家庄市', '长安区', '130102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (49, '河北省', '石家庄市', '桥东区', '130103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (50, '河北省', '石家庄市', '桥西区', '130104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (51, '河北省', '石家庄市', '新华区', '130105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (52, '河北省', '石家庄市', '郊区', '130106'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (53, '河北省', '石家庄市', '井陉矿区', '130107'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (54, '河北省', '石家庄市', '裕华区', '130108'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (55, '河北省', '石家庄市', '井陉县', '130121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (56, '河北省', '石家庄市', '获鹿县', '130122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (57, '河北省', '石家庄市', '正定县', '130123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (58, '河北省', '石家庄市', '栾城县', '130124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (59, '河北省', '石家庄市', '行唐县', '130125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (60, '河北省', '石家庄市', '灵寿县', '130126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (61, '河北省', '石家庄市', '高邑县', '130127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (62, '河北省', '石家庄市', '深泽县', '130128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (63, '河北省', '石家庄市', '赞皇县', '130129'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (64, '河北省', '石家庄市', '无极县', '130130'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (65, '河北省', '石家庄市', '平山县', '130131'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (66, '河北省', '石家庄市', '元氏县', '130132'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (67, '河北省', '石家庄市', '赵县', '130133'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (68, '河北省', '石家庄市', '辛集市', '130181'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (69, '河北省', '石家庄市', '藁城市', '130182'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (70, '河北省', '石家庄市', '晋州市', '130183'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (71, '河北省', '石家庄市', '新乐市', '130184'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (72, '河北省', '石家庄市', '鹿泉市', '130185'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (73, '河北省', '唐山市', '市辖区', '130201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (74, '河北省', '唐山市', '路南区', '130202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (75, '河北省', '唐山市', '路北区', '130203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (76, '河北省', '唐山市', '古冶区', '130204'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (77, '河北省', '唐山市', '开平区', '130205'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (78, '河北省', '唐山市', '新区', '130206'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (79, '河北省', '唐山市', '丰南区', '130207'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (80, '河北省', '唐山市', '丰润区', '130208'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (81, '河北省', '唐山市', '丰润县', '130221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (82, '河北省', '唐山市', '丰南县', '130222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (83, '河北省', '唐山市', '滦县', '130223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (84, '河北省', '唐山市', '滦南县', '130224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (85, '河北省', '唐山市', '乐亭县', '130225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (86, '河北省', '唐山市', '迁安县', '130226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (87, '河北省', '唐山市', '迁西县', '130227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (88, '河北省', '唐山市', '遵化县', '130228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (89, '河北省', '唐山市', '玉田县', '130229'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (90, '河北省', '唐山市', '唐海县', '130230'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (91, '河北省', '唐山市', '遵化市', '130281'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (92, '河北省', '唐山市', '丰南市', '130282'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (93, '河北省', '唐山市', '迁安市', '130283'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (94, '河北省', '秦皇岛市', '市辖区', '130301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (95, '河北省', '秦皇岛市', '海港区', '130302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (96, '河北省', '秦皇岛市', '山海关区', '130303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (97, '河北省', '秦皇岛市', '北戴河区', '130304'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (98, '河北省', '秦皇岛市', '青龙满族自治县', '130321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (99, '河北省', '秦皇岛市', '昌黎县', '130322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (100, '河北省', '秦皇岛市', '抚宁县', '130323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (101, '河北省', '秦皇岛市', '卢龙县', '130324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (102, '河北省', '邯郸市', '市辖区', '130401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (103, '河北省', '邯郸市', '邯山区', '130402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (104, '河北省', '邯郸市', '丛台区', '130403'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (105, '河北省', '邯郸市', '复兴区', '130404'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (106, '河北省', '邯郸市', '郊区', '130405'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (107, '河北省', '邯郸市', '峰峰矿区', '130406'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (108, '河北省', '邯郸市', '邯郸县', '130421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (109, '河北省', '邯郸市', '武安县', '130422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (110, '河北省', '邯郸市', '临漳县', '130423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (111, '河北省', '邯郸市', '成安县', '130424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (112, '河北省', '邯郸市', '大名县', '130425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (113, '河北省', '邯郸市', '涉县', '130426'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (114, '河北省', '邯郸市', '磁县', '130427'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (115, '河北省', '邯郸市', '肥乡县', '130428'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (116, '河北省', '邯郸市', '永年县', '130429'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (117, '河北省', '邯郸市', '邱县', '130430'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (118, '河北省', '邯郸市', '鸡泽县', '130431'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (119, '河北省', '邯郸市', '广平县', '130432'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (120, '河北省', '邯郸市', '馆陶县', '130433'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (121, '河北省', '邯郸市', '魏县', '130434'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (122, '河北省', '邯郸市', '曲周县', '130435'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (123, '河北省', '邯郸市', '武安市', '130481'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (124, '河北省', '邢台市', '市辖区', '130501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (125, '河北省', '邢台市', '桥东区', '130502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (126, '河北省', '邢台市', '桥西区', '130503'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (127, '河北省', '邢台市', '邢台县', '130521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (128, '河北省', '邢台市', '临城县', '130522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (129, '河北省', '邢台市', '内丘县', '130523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (130, '河北省', '邢台市', '柏乡县', '130524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (131, '河北省', '邢台市', '隆尧县', '130525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (132, '河北省', '邢台市', '任县', '130526'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (133, '河北省', '邢台市', '南和县', '130527'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (134, '河北省', '邢台市', '宁晋县', '130528'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (135, '河北省', '邢台市', '巨鹿县', '130529'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (136, '河北省', '邢台市', '新河县', '130530'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (137, '河北省', '邢台市', '广宗县', '130531'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (138, '河北省', '邢台市', '平乡县', '130532'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (139, '河北省', '邢台市', '威县', '130533'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (140, '河北省', '邢台市', '清河县', '130534'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (141, '河北省', '邢台市', '临西县', '130535'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (142, '河北省', '邢台市', '南宫市', '130581'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (143, '河北省', '邢台市', '沙河市', '130582'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (144, '河北省', '保定市', '市辖区', '130601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (145, '河北省', '保定市', '新市区', '130602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (146, '河北省', '保定市', '北市区', '130603'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (147, '河北省', '保定市', '南市区', '130604'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (148, '河北省', '保定市', '满城县', '130621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (149, '河北省', '保定市', '清苑县', '130622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (150, '河北省', '保定市', '涞水县', '130623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (151, '河北省', '保定市', '阜平县', '130624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (152, '河北省', '保定市', '徐水县', '130625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (153, '河北省', '保定市', '定兴县', '130626'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (154, '河北省', '保定市', '唐县', '130627'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (155, '河北省', '保定市', '高阳县', '130628'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (156, '河北省', '保定市', '容城县', '130629'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (157, '河北省', '保定市', '涞源县', '130630'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (158, '河北省', '保定市', '望都县', '130631'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (159, '河北省', '保定市', '安新县', '130632'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (160, '河北省', '保定市', '易县', '130633'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (161, '河北省', '保定市', '曲阳县', '130634'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (162, '河北省', '保定市', '蠡县', '130635'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (163, '河北省', '保定市', '顺平县', '130636'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (164, '河北省', '保定市', '博野县', '130637'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (165, '河北省', '保定市', '雄县', '130638'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (166, '河北省', '保定市', '涿州市', '130681'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (167, '河北省', '保定市', '定州市', '130682'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (168, '河北省', '保定市', '安国市', '130683'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (169, '河北省', '保定市', '高碑店市', '130684'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (170, '河北省', '张家口市', '市辖区', '130701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (171, '河北省', '张家口市', '桥东区', '130702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (172, '河北省', '张家口市', '桥西区', '130703'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (173, '河北省', '张家口市', '宣化区', '130705'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (174, '河北省', '张家口市', '下花园区', '130706'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (175, '河北省', '张家口市', '宣化县', '130721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (176, '河北省', '张家口市', '张北县', '130722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (177, '河北省', '张家口市', '康保县', '130723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (178, '河北省', '张家口市', '沽源县', '130724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (179, '河北省', '张家口市', '尚义县', '130725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (180, '河北省', '张家口市', '蔚县', '130726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (181, '河北省', '张家口市', '阳原县', '130727'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (182, '河北省', '张家口市', '怀安县', '130728'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (183, '河北省', '张家口市', '万全县', '130729'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (184, '河北省', '张家口市', '怀来县', '130730'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (185, '河北省', '张家口市', '涿鹿县', '130731'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (186, '河北省', '张家口市', '赤城县', '130732'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (187, '河北省', '张家口市', '崇礼县', '130733'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (188, '河北省', '承德市', '市辖区', '130801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (189, '河北省', '承德市', '双桥区', '130802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (190, '河北省', '承德市', '双滦区', '130803'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (191, '河北省', '承德市', '鹰手营子矿区', '130804'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (192, '河北省', '承德市', '承德县', '130821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (193, '河北省', '承德市', '兴隆县', '130822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (194, '河北省', '承德市', '平泉县', '130823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (195, '河北省', '承德市', '滦平县', '130824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (196, '河北省', '承德市', '隆化县', '130825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (197, '河北省', '承德市', '丰宁满族自治县', '130826'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (198, '河北省', '承德市', '宽城满族自治县', '130827'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (199, '河北省', '承德市', '围场满族蒙古族自治县', '130828'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (200, '河北省', '沧州市', '市辖区', '130901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (201, '河北省', '沧州市', '新华区', '130902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (202, '河北省', '沧州市', '运河区', '130903'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (203, '河北省', '沧州市', '郊区', '130904'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (204, '河北省', '沧州市', '沧县', '130921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (205, '河北省', '沧州市', '青县', '130922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (206, '河北省', '沧州市', '东光县', '130923'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (207, '河北省', '沧州市', '海兴县', '130924'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (208, '河北省', '沧州市', '盐山县', '130925'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (209, '河北省', '沧州市', '肃宁县', '130926'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (210, '河北省', '沧州市', '南皮县', '130927'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (211, '河北省', '沧州市', '吴桥县', '130928'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (212, '河北省', '沧州市', '献县', '130929'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (213, '河北省', '沧州市', '孟村回族自治县', '130930'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (214, '河北省', '沧州市', '泊头市', '130981'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (215, '河北省', '沧州市', '任丘市', '130982'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (216, '河北省', '沧州市', '黄骅市', '130983'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (217, '河北省', '沧州市', '河间市', '130984'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (218, '河北省', '廊坊市', '市辖区', '131001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (219, '河北省', '廊坊市', '安次区', '131002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (220, '河北省', '廊坊市', '广阳区', '131003'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (221, '河北省', '廊坊市', '三河县', '131021'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (222, '河北省', '廊坊市', '固安县', '131022'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (223, '河北省', '廊坊市', '永清县', '131023'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (224, '河北省', '廊坊市', '香河县', '131024'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (225, '河北省', '廊坊市', '大城县', '131025'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (226, '河北省', '廊坊市', '文安县', '131026'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (227, '河北省', '廊坊市', '霸县', '131027'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (228, '河北省', '廊坊市', '大厂回族自治县', '131028'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (229, '河北省', '廊坊市', '霸州市', '131081'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (230, '河北省', '廊坊市', '三河市', '131082'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (231, '河北省', '衡水市', '市辖区', '131101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (232, '河北省', '衡水市', '桃城区', '131102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (233, '河北省', '衡水市', '枣强县', '131121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (234, '河北省', '衡水市', '武邑县', '131122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (235, '河北省', '衡水市', '武强县', '131123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (236, '河北省', '衡水市', '饶阳县', '131124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (237, '河北省', '衡水市', '安平县', '131125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (238, '河北省', '衡水市', '故城县', '131126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (239, '河北省', '衡水市', '景县', '131127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (240, '河北省', '衡水市', '阜城县', '131128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (241, '河北省', '衡水市', '冀州市', '131181'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (242, '河北省', '衡水市', '深州市', '131182'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (243, '河北省', '邯郸地区', '邯郸市', '132101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (244, '河北省', '邯郸地区', '大名县', '132121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (245, '河北省', '邯郸地区', '魏县', '132122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (246, '河北省', '邯郸地区', '曲周县', '132123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (247, '河北省', '邯郸地区', '丘县', '132124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (248, '河北省', '邯郸地区', '鸡泽县', '132125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (249, '河北省', '邯郸地区', '肥乡县', '132126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (250, '河北省', '邯郸地区', '广平县', '132127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (251, '河北省', '邯郸地区', '成安县', '132128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (252, '河北省', '邯郸地区', '临漳县', '132129'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (253, '河北省', '邯郸地区', '磁县', '132130'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (254, '河北省', '邯郸地区', '武安县', '132131'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (255, '河北省', '邯郸地区', '涉县', '132132'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (256, '河北省', '邯郸地区', '永年县', '132133'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (257, '河北省', '邯郸地区', '邯郸县', '132134'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (258, '河北省', '邯郸地区', '馆陶县', '132135'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (259, '河北省', '邢台地区', '南宫市', '132201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (260, '河北省', '邢台地区', '沙河市', '132202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (261, '河北省', '邢台地区', '邢台县', '132221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (262, '河北省', '邢台地区', '沙河县', '132222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (263, '河北省', '邢台地区', '临城县', '132223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (264, '河北省', '邢台地区', '内丘县', '132224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (265, '河北省', '邢台地区', '柏乡县', '132225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (266, '河北省', '邢台地区', '隆尧县', '132226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (267, '河北省', '邢台地区', '任县', '132227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (268, '河北省', '邢台地区', '南和县', '132228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (269, '河北省', '邢台地区', '宁晋县', '132229'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (270, '河北省', '邢台地区', '南宫县', '132230'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (271, '河北省', '邢台地区', '巨鹿县', '132231'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (272, '河北省', '邢台地区', '新河县', '132232'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (273, '河北省', '邢台地区', '广宗县', '132233'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (274, '河北省', '邢台地区', '平乡县', '132234'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (275, '河北省', '邢台地区', '威县', '132235'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (276, '河北省', '邢台地区', '清河县', '132236'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (277, '河北省', '邢台地区', '临西县', '132237'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (278, '河北省', '石家庄市', '辛集市', '132301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (279, '河北省', '石家庄市', '藁城市', '132302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (280, '河北省', '石家庄市', '束鹿县', '132321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (281, '河北省', '石家庄市', '晋县', '132322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (282, '河北省', '石家庄市', '深泽县', '132323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (283, '河北省', '石家庄市', '无极县', '132324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (284, '河北省', '石家庄市', '藁城县', '132325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (285, '河北省', '石家庄市', '赵县', '132326'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (286, '河北省', '石家庄市', '栾城县', '132327'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (287, '河北省', '石家庄市', '正定县', '132328'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (288, '河北省', '石家庄市', '新乐县', '132329'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (289, '河北省', '石家庄市', '高邑县', '132330'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (290, '河北省', '石家庄市', '元氏县', '132331'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (291, '河北省', '石家庄市', '赞皇县', '132332'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (292, '河北省', '石家庄市', '井陉县', '132333'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (293, '河北省', '石家庄市', '获鹿县', '132334'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (294, '河北省', '石家庄市', '平山县', '132335'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (295, '河北省', '石家庄市', '灵寿县', '132336'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (296, '河北省', '石家庄市', '行唐县', '132337'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (297, '河北省', '保定地区', '定州市', '132401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (298, '河北省', '保定地区', '涿州市', '132402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (299, '河北省', '保定地区', '安国市', '132403'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (300, '河北省', '保定地区', '高碑店市', '132404'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (301, '河北省', '保定地区', '易县', '132421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (302, '河北省', '保定地区', '满城县', '132422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (303, '河北省', '保定地区', '徐水县', '132423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (304, '河北省', '保定地区', '涞源县', '132424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (305, '河北省', '保定地区', '定兴县', '132425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (306, '河北省', '保定地区', '完县', '132426'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (307, '河北省', '保定地区', '唐县', '132427'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (308, '河北省', '保定地区', '望都县', '132428'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (309, '河北省', '保定地区', '涞水县', '132429'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (310, '河北省', '保定地区', '涿县', '132430'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (311, '河北省', '保定地区', '清苑县', '132431'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (312, '河北省', '保定地区', '高阳县', '132432'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (313, '河北省', '保定地区', '安新县', '132433'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (314, '河北省', '保定地区', '雄县', '132434'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (315, '河北省', '保定地区', '容城县', '132435'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (316, '河北省', '保定地区', '新城县', '132436'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (317, '河北省', '保定地区', '曲阳县', '132437'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (318, '河北省', '保定地区', '阜平县', '132438'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (319, '河北省', '保定地区', '定县', '132439'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (320, '河北省', '保定地区', '安国县', '132440'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (321, '河北省', '保定地区', '博野县', '132441'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (322, '河北省', '保定地区', '蠡县', '132442'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (323, '河北省', '张家口地区', '张家口市', '132501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (324, '河北省', '张家口地区', '张北市', '132521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1332, '上海市', NULL, '宝山县', '310223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (325, '河北省', '张家口地区', '康保县', '132522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (326, '河北省', '张家口地区', '沽源县', '132523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (327, '河北省', '张家口地区', '尚义县', '132524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (328, '河北省', '张家口地区', '蔚县', '132525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (329, '河北省', '张家口地区', '阳原县', '132526'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (330, '河北省', '张家口地区', '怀安县', '132527'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (331, '河北省', '张家口地区', '万全县', '132528'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (332, '河北省', '张家口地区', '怀来县', '132529'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (333, '河北省', '张家口地区', '涿鹿县', '132530'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (334, '河北省', '张家口地区', '宣化县', '132531'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (335, '河北省', '张家口地区', '赤城县', '132532'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (336, '河北省', '张家口地区', '崇礼县', '132533'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (337, '河北省', '承德地区', '承德市', '132601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (338, '河北省', '承德地区', '青龙县', '132621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (339, '河北省', '承德地区', '宽城满族自治县', '132622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (340, '河北省', '承德地区', '兴隆县', '132623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (341, '河北省', '承德地区', '平泉县', '132624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (342, '河北省', '承德地区', '承德县', '132625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (343, '河北省', '承德地区', '滦平县', '132626'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (344, '河北省', '承德地区', '丰宁满族自治县', '132627'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (345, '河北省', '承德地区', '隆化县', '132628'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (346, '河北省', '承德地区', '围场满族蒙古族自治县', '132629'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (347, '河北省', '廊坊地区', '廊坊市', '132801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (348, '河北省', '廊坊地区', '三河县', '132821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (349, '河北省', '廊坊地区', '大厂回族自治县', '132822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (350, '河北省', '廊坊地区', '香河县', '132823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (351, '河北省', '廊坊地区', '永清县', '132825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (352, '河北省', '廊坊地区', '固安县', '132826'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (353, '河北省', '廊坊地区', '霸县', '132827'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (354, '河北省', '廊坊地区', '文安县', '132828'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (355, '河北省', '廊坊地区', '大城县', '132829'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (356, '河北省', '沧州地区', '沧州市', '132901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (357, '河北省', '沧州地区', '泊头市', '132902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (358, '河北省', '沧州地区', '任丘市', '132903'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (359, '河北省', '沧州地区', '黄骅市', '132904'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (360, '河北省', '沧州地区', '河间市', '132905'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (361, '河北省', '沧州地区', '沧县', '132921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (362, '河北省', '沧州地区', '河间县', '132922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (363, '河北省', '沧州地区', '肃宁县', '132923'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (364, '河北省', '沧州地区', '献县', '132924'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (365, '河北省', '沧州地区', '交河县', '132925'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (366, '河北省', '沧州地区', '吴桥县', '132926'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (367, '河北省', '沧州地区', '东光县', '132927'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (368, '河北省', '沧州地区', '南皮县', '132928'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (369, '河北省', '沧州地区', '盐山县', '132929'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (370, '河北省', '沧州地区', '黄骅县', '132930'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (371, '河北省', '沧州地区', '孟村回族自治县', '132931'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (372, '河北省', '沧州地区', '青县', '132932'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (373, '河北省', '沧州地区', '任丘县', '132933'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (374, '河北省', '沧州地区', '海兴县', '132934'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (375, '河北省', '衡水地区', '衡水市', '133001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (376, '河北省', '衡水地区', '冀州市', '133002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (377, '河北省', '衡水地区', '衡水县', '133021'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (378, '河北省', '衡水地区', '冀县', '133022'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (379, '河北省', '衡水地区', '枣强县', '133023'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (380, '河北省', '衡水地区', '武邑县', '133024'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (381, '河北省', '衡水地区', '深县', '133025'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (382, '河北省', '衡水地区', '武强县', '133026'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (383, '河北省', '衡水地区', '饶阳县', '133027'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (384, '河北省', '衡水地区', '安平县', '133028'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (385, '河北省', '衡水地区', '故城县', '133029'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (386, '河北省', '衡水地区', '景县', '133030'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (387, '河北省', '衡水地区', '阜城县', '133031'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (388, '河北省', NULL, '武安市', '139001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (389, '山西省', '太原市', '市辖区', '140101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (390, '山西省', '太原市', '南城区', '140102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (391, '山西省', '太原市', '北城区', '140103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (392, '山西省', '太原市', '河西区', '140104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (393, '山西省', '太原市', '小店区', '140105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (394, '山西省', '太原市', '迎泽区', '140106'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (395, '山西省', '太原市', '杏花岭区', '140107'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (396, '山西省', '太原市', '尖草坪区', '140108'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (397, '山西省', '太原市', '万柏林区', '140109'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (398, '山西省', '太原市', '晋源区', '140110'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (399, '山西省', '太原市', '古交工矿区', '140111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (400, '山西省', '太原市', '南郊区', '140112'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (401, '山西省', '太原市', '北郊区', '140113'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (402, '山西省', '太原市', '清徐县', '140121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (403, '山西省', '太原市', '阳曲县', '140122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (404, '山西省', '太原市', '娄烦县', '140123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (405, '山西省', '太原市', '古交市', '140181'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (406, '山西省', '大同市', '市辖区', '140201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (407, '山西省', '大同市', '城区', '140202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (408, '山西省', '大同市', '矿区', '140203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (409, '山西省', '大同市', '南郊区', '140211'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (410, '山西省', '大同市', '新荣区', '140212'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (411, '山西省', '大同市', '阳高县', '140221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (412, '山西省', '大同市', '天镇县', '140222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (413, '山西省', '大同市', '广灵县', '140223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (414, '山西省', '大同市', '灵丘县', '140224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (415, '山西省', '大同市', '浑源县', '140225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (416, '山西省', '大同市', '左云县', '140226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (417, '山西省', '大同市', '大同县', '140227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (418, '山西省', '大同市', '左云县', '140230'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (419, '山西省', '大同市', '大同县', '140232'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (420, '山西省', '阳泉市', '市辖区', '140301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (421, '山西省', '阳泉市', '城区', '140302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (422, '山西省', '阳泉市', '矿区', '140303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (423, '山西省', '阳泉市', '郊区', '140311'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (424, '山西省', '阳泉市', '平定县', '140321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (425, '山西省', '阳泉市', '盂县', '140322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (426, '山西省', '长治市', '市辖区', '140401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (427, '山西省', '长治市', '城区', '140402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (428, '山西省', '长治市', '郊区', '140411'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (429, '山西省', '长治市', '长治县', '140421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (430, '山西省', '长治市', '襄垣县', '140423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (431, '山西省', '长治市', '屯留县', '140424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (432, '山西省', '长治市', '平顺县', '140425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (433, '山西省', '长治市', '黎城县', '140426'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (434, '山西省', '长治市', '壶关县', '140427'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (435, '山西省', '长治市', '长子县', '140428'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (436, '山西省', '长治市', '武乡县', '140429'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (437, '山西省', '长治市', '沁县', '140430'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (438, '山西省', '长治市', '沁源县', '140431'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (439, '山西省', '长治市', '潞城市', '140481'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (440, '山西省', '晋城市', '市辖区', '140501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (441, '山西省', '晋城市', '城区', '140502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (442, '山西省', '晋城市', '郊区', '140511'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (443, '山西省', '晋城市', '沁水县', '140521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (444, '山西省', '晋城市', '阳城县', '140522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (445, '山西省', '晋城市', '高平县', '140523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (446, '山西省', '晋城市', '陵川县', '140524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (447, '山西省', '晋城市', '泽州县', '140525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (448, '山西省', '晋城市', '高平市', '140581'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (449, '山西省', '朔州市', '市辖区', '140601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (450, '山西省', '朔州市', '朔城区', '140602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (451, '山西省', '朔州市', '平鲁区', '140603'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (452, '山西省', '朔州市', '山阴县', '140621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (453, '山西省', '朔州市', '应县', '140622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (454, '山西省', '朔州市', '右玉县', '140623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (455, '山西省', '朔州市', '怀仁县', '140624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (456, '山西省', '晋中市', '市辖区', '140701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (457, '山西省', '晋中市', '榆次区', '140702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (458, '山西省', '晋中市', '榆社县', '140721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (459, '山西省', '晋中市', '左权县', '140722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (460, '山西省', '晋中市', '和顺县', '140723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (461, '山西省', '晋中市', '昔阳县', '140724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (462, '山西省', '晋中市', '寿阳县', '140725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (463, '山西省', '晋中市', '太谷县', '140726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (464, '山西省', '晋中市', '祁县', '140727'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (465, '山西省', '晋中市', '平遥县', '140728'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (466, '山西省', '晋中市', '灵石县', '140729'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (467, '山西省', '晋中市', '介休市', '140781'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (468, '山西省', '运城市', '市辖区', '140801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (469, '山西省', '运城市', '盐湖区', '140802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (470, '山西省', '运城市', '临猗县', '140821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (471, '山西省', '运城市', '万荣县', '140822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (472, '山西省', '运城市', '闻喜县', '140823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (473, '山西省', '运城市', '稷山县', '140824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (474, '山西省', '运城市', '新绛县', '140825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (475, '山西省', '运城市', '绛县', '140826'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (476, '山西省', '运城市', '垣曲县', '140827'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (477, '山西省', '运城市', '夏县', '140828'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (478, '山西省', '运城市', '平陆县', '140829'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (479, '山西省', '运城市', '芮城县', '140830'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (480, '山西省', '运城市', '永济市', '140881'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (481, '山西省', '运城市', '河津市', '140882'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (482, '山西省', '忻州市', '市辖区', '140901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (483, '山西省', '忻州市', '忻府区', '140902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (484, '山西省', '忻州市', '定襄县', '140921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (485, '山西省', '忻州市', '五台县', '140922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (486, '山西省', '忻州市', '代县', '140923'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (487, '山西省', '忻州市', '繁峙县', '140924'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (488, '山西省', '忻州市', '宁武县', '140925'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (489, '山西省', '忻州市', '静乐县', '140926'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (490, '山西省', '忻州市', '神池县', '140927'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (491, '山西省', '忻州市', '五寨县', '140928'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (492, '山西省', '忻州市', '岢岚县', '140929'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (493, '山西省', '忻州市', '河曲县', '140930'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (494, '山西省', '忻州市', '保德县', '140931'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (495, '山西省', '忻州市', '偏关县', '140932'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (496, '山西省', '忻州市', '原平市', '140981'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (497, '山西省', '临汾市', '市辖区', '141001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (498, '山西省', '临汾市', '尧都区', '141002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (499, '山西省', '临汾市', '曲沃县', '141021'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (500, '山西省', '临汾市', '翼城县', '141022'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (501, '山西省', '临汾市', '襄汾县', '141023'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (502, '山西省', '临汾市', '洪洞县', '141024'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (503, '山西省', '临汾市', '古县', '141025'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (504, '山西省', '临汾市', '安泽县', '141026'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (505, '山西省', '临汾市', '浮山县', '141027'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (506, '山西省', '临汾市', '吉县', '141028'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (507, '山西省', '临汾市', '乡宁县', '141029'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (508, '山西省', '临汾市', '大宁县', '141030'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (509, '山西省', '临汾市', '隰县', '141031'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (510, '山西省', '临汾市', '永和县', '141032'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (511, '山西省', '临汾市', '蒲县', '141033'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (512, '山西省', '临汾市', '汾西县', '141034'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (513, '山西省', '临汾市', '侯马市', '141081'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (514, '山西省', '临汾市', '霍州市', '141082'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (515, '山西省', '吕梁市', '市辖区', '141101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (516, '山西省', '吕梁市', '离石区', '141102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (517, '山西省', '吕梁市', '文水县', '141121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (518, '山西省', '吕梁市', '交城县', '141122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (519, '山西省', '吕梁市', '兴县', '141123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (520, '山西省', '吕梁市', '临县', '141124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (521, '山西省', '吕梁市', '柳林县', '141125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (522, '山西省', '吕梁市', '石楼县', '141126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (523, '山西省', '吕梁市', '岚县', '141127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (524, '山西省', '吕梁市', '方山县', '141128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (525, '山西省', '吕梁市', '中阳县', '141129'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (526, '山西省', '吕梁市', '交口县', '141130'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (527, '山西省', '吕梁市', '孝义市', '141181'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (528, '山西省', '吕梁市', '汾阳市', '141182'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (529, '山西省', '雁北地区', '阳高县', '142121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (530, '山西省', '雁北地区', '天镇县', '142122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (531, '山西省', '雁北地区', '广灵县', '142123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (532, '山西省', '雁北地区', '灵丘县', '142124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (533, '山西省', '雁北地区', '浑源县', '142125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (534, '山西省', '雁北地区', '应县', '142126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (535, '山西省', '雁北地区', '山阴县', '142127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (536, '山西省', '雁北地区', '朔县', '142128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (537, '山西省', '雁北地区', '平鲁县', '142129'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (538, '山西省', '雁北地区', '左云县', '142130'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (539, '山西省', '雁北地区', '右玉县', '142131'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (540, '山西省', '雁北地区', '大同县', '142132'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (541, '山西省', '雁北地区', '怀仁县', '142133'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (542, '山西省', '忻州地区', '忻州市', '142201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (543, '山西省', '忻州地区', '原平市', '142202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (544, '山西省', '忻州地区', '定襄县', '142222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (545, '山西省', '忻州地区', '五台县', '142223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (546, '山西省', '忻州地区', '代县', '142225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (547, '山西省', '忻州地区', '繁峙县', '142226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (548, '山西省', '忻州地区', '宁武县', '142227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (549, '山西省', '忻州地区', '静乐县', '142228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (550, '山西省', '忻州地区', '神池县', '142229'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (551, '山西省', '忻州地区', '五寨县', '142230'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (552, '山西省', '忻州地区', '岢岚县', '142231'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (553, '山西省', '忻州地区', '河曲县', '142232'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (554, '山西省', '忻州地区', '保德县', '142233'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (555, '山西省', '忻州地区', '偏关县', '142234'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (556, '山西省', '吕梁地区', '孝义市', '142301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (557, '山西省', '吕梁地区', '离石市', '142302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (558, '山西省', '吕梁地区', '汾阳市', '142303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (559, '山西省', '吕梁地区', '汾阳县', '142321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (560, '山西省', '吕梁地区', '文水县', '142322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (561, '山西省', '吕梁地区', '交城县', '142323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (562, '山西省', '吕梁地区', '兴县', '142325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (563, '山西省', '吕梁地区', '临县', '142326'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (564, '山西省', '吕梁地区', '柳林县', '142327'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (565, '山西省', '吕梁地区', '石楼县', '142328'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (566, '山西省', '吕梁地区', '岚县', '142329'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (567, '山西省', '吕梁地区', '方山县', '142330'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (568, '山西省', '吕梁地区', '中阳县', '142332'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (569, '山西省', '吕梁地区', '交口县', '142333'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (570, '山西省', '晋中地区', '榆次市', '142401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (571, '山西省', '晋中地区', '介休市', '142402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (572, '山西省', '晋中地区', '榆社县', '142421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (573, '山西省', '晋中地区', '左权县', '142422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (574, '山西省', '晋中地区', '和顺县', '142423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (575, '山西省', '晋中地区', '昔阳县', '142424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (576, '山西省', '晋中地区', '寿阳县', '142427'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (577, '山西省', '晋中地区', '太谷县', '142429'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (578, '山西省', '晋中地区', '祁县', '142430'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (579, '山西省', '晋中地区', '平遥县', '142431'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (580, '山西省', '晋中地区', '灵石县', '142433'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (581, '山西省', '临汾地区', '临汾市', '142601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (582, '山西省', '临汾地区', '侯马市', '142602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (583, '山西省', '临汾地区', '霍州市', '142603'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (584, '山西省', '临汾地区', '曲沃县', '142621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (585, '山西省', '临汾地区', '翼城县', '142622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (586, '山西省', '临汾地区', '襄汾县', '142623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (587, '山西省', '临汾地区', '洪洞县', '142625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (588, '山西省', '临汾地区', '古县', '142627'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (589, '山西省', '临汾地区', '安泽县', '142628'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (590, '山西省', '临汾地区', '浮山县', '142629'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (591, '山西省', '临汾地区', '吉县', '142630'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (592, '山西省', '临汾地区', '乡宁县', '142631'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (593, '山西省', '临汾地区', '蒲县', '142632'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (594, '山西省', '临汾地区', '大宁县', '142633'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (595, '山西省', '临汾地区', '永和县', '142634'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (596, '山西省', '临汾地区', '隰县', '142635'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (597, '山西省', '临汾地区', '汾西县', '142636'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (598, '山西省', '运城地区', '运城市', '142701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (599, '山西省', '运城地区', '永济市', '142702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (600, '山西省', '运城地区', '河津市', '142703'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (601, '山西省', '运城地区', '芮城县', '142723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (602, '山西省', '运城地区', '临猗县', '142724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (603, '山西省', '运城地区', '万荣县', '142725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (604, '山西省', '运城地区', '新绛县', '142726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (605, '山西省', '运城地区', '稷山县', '142727'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (606, '山西省', '运城地区', '闻喜县', '142729'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (607, '山西省', '运城地区', '夏县', '142730'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (608, '山西省', '运城地区', '绛县', '142731'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (609, '山西省', '运城地区', '平陆县', '142732'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (610, '山西省', '运城地区', '垣曲县', '142733'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (611, '山西省', NULL, '古交市', '149001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (612, '内蒙古自治区', '呼和浩特市', '市辖区', '150101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (613, '内蒙古自治区', '呼和浩特市', '新城区', '150102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (614, '内蒙古自治区', '呼和浩特市', '回民区', '150103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (615, '内蒙古自治区', '呼和浩特市', '玉泉区', '150104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (616, '内蒙古自治区', '呼和浩特市', '郊区', '150105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (617, '内蒙古自治区', '呼和浩特市', '土默特左旗', '150121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (618, '内蒙古自治区', '呼和浩特市', '托克托县', '150122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (619, '内蒙古自治区', '呼和浩特市', '和林格尔县', '150123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (620, '内蒙古自治区', '呼和浩特市', '清水河县', '150124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (621, '内蒙古自治区', '呼和浩特市', '武川县', '150125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (622, '内蒙古自治区', '包头市', '市辖区', '150201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (623, '内蒙古自治区', '包头市', '东河区', '150202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (624, '内蒙古自治区', '包头市', '昆都伦区', '150203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (625, '内蒙古自治区', '包头市', '青山区', '150204'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (626, '内蒙古自治区', '包头市', '石拐矿区', '150205'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (627, '内蒙古自治区', '包头市', '白云矿区', '150206'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (628, '内蒙古自治区', '包头市', '郊区', '150207'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (629, '内蒙古自治区', '包头市', '土默特右旗', '150221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (630, '内蒙古自治区', '包头市', '固阳县', '150222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (631, '内蒙古自治区', '包头市', '达尔罕茂明安联合旗', '150223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (632, '内蒙古自治区', '乌海市', '市辖区', '150301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (633, '内蒙古自治区', '乌海市', '海勃湾区', '150302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (634, '内蒙古自治区', '乌海市', '海南区', '150303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (635, '内蒙古自治区', '乌海市', '乌达区', '150304'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (636, '内蒙古自治区', '赤峰市', '市辖区', '150401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (637, '内蒙古自治区', '赤峰市', '红山区', '150402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (638, '内蒙古自治区', '赤峰市', '元宝山区', '150403'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (639, '内蒙古自治区', '赤峰市', '松山区', '150404'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (640, '内蒙古自治区', '赤峰市', '阿鲁科尔沁旗', '150421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (641, '内蒙古自治区', '赤峰市', '巴林左旗', '150422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (642, '内蒙古自治区', '赤峰市', '巴林右旗', '150423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (643, '内蒙古自治区', '赤峰市', '林西县', '150424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (644, '内蒙古自治区', '赤峰市', '克什克腾旗', '150425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (645, '内蒙古自治区', '赤峰市', '翁牛特旗', '150426'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (646, '内蒙古自治区', '赤峰市', '喀喇沁旗', '150428'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (647, '内蒙古自治区', '赤峰市', '宁城县', '150429'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (648, '内蒙古自治区', '赤峰市', '敖汉旗', '150430'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (649, '内蒙古自治区', '通辽市', '市辖区', '150501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (650, '内蒙古自治区', '通辽市', '科尔沁区', '150502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (651, '内蒙古自治区', '通辽市', '科尔沁左翼中旗', '150521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (652, '内蒙古自治区', '通辽市', '科尔沁左翼后旗', '150522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (653, '内蒙古自治区', '通辽市', '开鲁县', '150523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (654, '内蒙古自治区', '通辽市', '库伦旗', '150524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (655, '内蒙古自治区', '通辽市', '奈曼旗', '150525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (656, '内蒙古自治区', '通辽市', '扎鲁特旗', '150526'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (657, '内蒙古自治区', '通辽市', '霍林郭勒市', '150581'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (658, '内蒙古自治区', '鄂尔多斯市', '鄂尔多斯市', '150601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (659, '内蒙古自治区', '鄂尔多斯市', '东胜区', '150602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (660, '内蒙古自治区', '鄂尔多斯市', '达拉特旗', '150621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (661, '内蒙古自治区', '鄂尔多斯市', '准格尔旗', '150622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (662, '内蒙古自治区', '鄂尔多斯市', '鄂托克前旗', '150623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (663, '内蒙古自治区', '鄂尔多斯市', '鄂托克旗', '150624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (664, '内蒙古自治区', '鄂尔多斯市', '杭锦旗', '150625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (665, '内蒙古自治区', '鄂尔多斯市', '乌审旗', '150626'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (666, '内蒙古自治区', '鄂尔多斯市', '伊金霍洛旗', '150627'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (667, '内蒙古自治区', '呼伦贝尔市', '市辖区', '150701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (668, '内蒙古自治区', '呼伦贝尔市', '海拉尔区', '150702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (669, '内蒙古自治区', '呼伦贝尔市', '阿荣旗', '150721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (670, '内蒙古自治区', '呼伦贝尔市', '莫力达瓦达斡尔族自治旗', '150722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (671, '内蒙古自治区', '呼伦贝尔市', '鄂伦春自治旗', '150723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (672, '内蒙古自治区', '呼伦贝尔市', '鄂温克族自治旗', '150724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (673, '内蒙古自治区', '呼伦贝尔市', '陈巴尔虎旗', '150725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (674, '内蒙古自治区', '呼伦贝尔市', '新巴尔虎左旗', '150726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (675, '内蒙古自治区', '呼伦贝尔市', '新巴尔虎右旗', '150727'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (676, '内蒙古自治区', '呼伦贝尔市', '满洲里市', '150781'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (677, '内蒙古自治区', '呼伦贝尔市', '牙克石市', '150782'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (678, '内蒙古自治区', '呼伦贝尔市', '扎兰屯市', '150783'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (679, '内蒙古自治区', '呼伦贝尔市', '额尔古纳市', '150784'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (680, '内蒙古自治区', '呼伦贝尔市', '根河市', '150785'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (681, '内蒙古自治区', '巴彦淖尔市', '市辖区', '150801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (682, '内蒙古自治区', '巴彦淖尔市', '临河区', '150802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (683, '内蒙古自治区', '巴彦淖尔市', '五原县', '150821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (684, '内蒙古自治区', '巴彦淖尔市', '磴口县', '150822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (685, '内蒙古自治区', '巴彦淖尔市', '乌拉特前旗', '150823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (686, '内蒙古自治区', '巴彦淖尔市', '乌拉特中旗', '150824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (687, '内蒙古自治区', '巴彦淖尔市', '乌拉特后旗', '150825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (688, '内蒙古自治区', '巴彦淖尔市', '杭锦后旗', '150826'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (689, '内蒙古自治区', '乌兰察布市', '市辖区', '150901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (690, '内蒙古自治区', '乌兰察布市', '集宁区', '150902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (691, '内蒙古自治区', '乌兰察布市', '卓资县', '150921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (692, '内蒙古自治区', '乌兰察布市', '化德县', '150922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (693, '内蒙古自治区', '乌兰察布市', '商都县', '150923'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (694, '内蒙古自治区', '乌兰察布市', '兴和县', '150924'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (695, '内蒙古自治区', '乌兰察布市', '凉城县', '150925'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (696, '内蒙古自治区', '乌兰察布市', '察哈尔右翼前旗', '150926'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (697, '内蒙古自治区', '乌兰察布市', '察哈尔右翼中旗', '150927'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (698, '内蒙古自治区', '乌兰察布市', '察哈尔右翼后旗', '150928'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (699, '内蒙古自治区', '乌兰察布市', '四子王旗', '150929'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (700, '内蒙古自治区', '乌兰察布市', '丰镇市', '150981'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (701, '内蒙古自治区', '呼伦贝尔盟', '海拉尔市', '152101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (702, '内蒙古自治区', '呼伦贝尔盟', '满洲里市', '152102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (703, '内蒙古自治区', '呼伦贝尔盟', '扎兰屯市', '152103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (704, '内蒙古自治区', '呼伦贝尔盟', '牙克石市', '152104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (705, '内蒙古自治区', '呼伦贝尔盟', '根河市', '152105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (706, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳市', '152106'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (707, '内蒙古自治区', '呼伦贝尔盟', '布特哈旗', '152121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (708, '内蒙古自治区', '呼伦贝尔盟', '阿荣旗', '152122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (709, '内蒙古自治区', '呼伦贝尔盟', '莫力达瓦达斡尔族自治旗', '152123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (710, '内蒙古自治区', '呼伦贝尔盟', '喜桂图旗', '152124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (711, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳右旗', '152125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (712, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳左旗', '152126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (713, '内蒙古自治区', '呼伦贝尔盟', '鄂伦春自治旗', '152127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (714, '内蒙古自治区', '呼伦贝尔盟', '鄂温克族自治旗', '152128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (715, '内蒙古自治区', '呼伦贝尔盟', '新巴尔虎右旗', '152129'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (716, '内蒙古自治区', '呼伦贝尔盟', '新巴尔虎左旗', '152130'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (717, '内蒙古自治区', '呼伦贝尔盟', '陈巴尔虎旗', '152131'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (718, '内蒙古自治区', '兴安盟', '乌兰浩特市', '152201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (719, '内蒙古自治区', '兴安盟', '阿尔山市', '152202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (720, '内蒙古自治区', '兴安盟', '科尔沁右翼前旗', '152221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (721, '内蒙古自治区', '兴安盟', '科尔沁右翼中旗', '152222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (722, '内蒙古自治区', '兴安盟', '扎赉特旗', '152223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (723, '内蒙古自治区', '兴安盟', '突泉县', '152224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (724, '内蒙古自治区', '哲里木盟', '通辽市', '152301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (725, '内蒙古自治区', '哲里木盟', '霍林郭勒市', '152302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (726, '内蒙古自治区', '哲里木盟', '通辽县', '152321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (727, '内蒙古自治区', '哲里木盟', '科尔沁左翼中旗', '152322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (728, '内蒙古自治区', '哲里木盟', '科尔沁左翼后旗', '152323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (729, '内蒙古自治区', '哲里木盟', '开鲁县', '152324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (730, '内蒙古自治区', '哲里木盟', '库伦旗', '152325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (731, '内蒙古自治区', '哲里木盟', '奈曼旗', '152326'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (732, '内蒙古自治区', '哲里木盟', '扎鲁特旗', '152327'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (733, '内蒙古自治区', '锡林郭勒盟', '二连浩特市', '152501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (734, '内蒙古自治区', '锡林郭勒盟', '锡林浩特市', '152502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (735, '内蒙古自治区', '锡林郭勒盟', '阿巴嘎旗', '152522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (736, '内蒙古自治区', '锡林郭勒盟', '苏尼特左旗', '152523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (737, '内蒙古自治区', '锡林郭勒盟', '苏尼特右旗', '152524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (738, '内蒙古自治区', '锡林郭勒盟', '东乌珠穆沁旗', '152525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (739, '内蒙古自治区', '锡林郭勒盟', '西乌珠穆沁旗', '152526'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (740, '内蒙古自治区', '锡林郭勒盟', '太仆寺旗', '152527'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (741, '内蒙古自治区', '锡林郭勒盟', '镶黄旗', '152528'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (742, '内蒙古自治区', '锡林郭勒盟', '正镶白旗', '152529'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (743, '内蒙古自治区', '锡林郭勒盟', '正蓝旗', '152530'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (744, '内蒙古自治区', '锡林郭勒盟', '多伦县', '152531'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (745, '内蒙古自治区', '乌兰察布盟', '集宁市', '152601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (746, '内蒙古自治区', '乌兰察布盟', '丰镇市', '152602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (747, '内蒙古自治区', '乌兰察布盟', '武川县', '152621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (748, '内蒙古自治区', '乌兰察布盟', '和林格尔县', '152622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (749, '内蒙古自治区', '乌兰察布盟', '清水河县', '152623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (750, '内蒙古自治区', '乌兰察布盟', '卓资县', '152624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (751, '内蒙古自治区', '乌兰察布盟', '化德县', '152625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (752, '内蒙古自治区', '乌兰察布盟', '商都县', '152626'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (753, '内蒙古自治区', '乌兰察布盟', '兴和县', '152627'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (754, '内蒙古自治区', '乌兰察布盟', '丰镇县', '152628'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (755, '内蒙古自治区', '乌兰察布盟', '凉城县', '152629'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (756, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼前旗', '152630'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (757, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼中旗', '152631'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (758, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼后旗', '152632'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (759, '内蒙古自治区', '乌兰察布盟', '达尔罕茂明安联合旗', '152633'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (760, '内蒙古自治区', '乌兰察布盟', '四子王旗', '152634'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (761, '内蒙古自治区', '伊克昭盟', '东胜市', '152701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (762, '内蒙古自治区', '伊克昭盟', '东胜县', '152721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (763, '内蒙古自治区', '伊克昭盟', '达拉特旗', '152722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (764, '内蒙古自治区', '伊克昭盟', '准格尔旗', '152723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (765, '内蒙古自治区', '伊克昭盟', '鄂托克前旗', '152724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (766, '内蒙古自治区', '伊克昭盟', '鄂托克旗', '152725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (767, '内蒙古自治区', '伊克昭盟', '杭锦旗', '152726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (768, '内蒙古自治区', '伊克昭盟', '乌审旗', '152727'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (769, '内蒙古自治区', '伊克昭盟', '伊金霍洛旗', '152728'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (770, '内蒙古自治区', '巴彦淖尔盟', '临河市', '152801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (771, '内蒙古自治区', '巴彦淖尔盟', '临河县', '152821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (772, '内蒙古自治区', '巴彦淖尔盟', '五原县', '152822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (773, '内蒙古自治区', '巴彦淖尔盟', '磴口县', '152823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (774, '内蒙古自治区', '巴彦淖尔盟', '乌拉特前旗', '152824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (775, '内蒙古自治区', '巴彦淖尔盟', '乌拉特中旗', '152825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (776, '内蒙古自治区', '巴彦淖尔盟', '乌拉特后旗', '152826'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (777, '内蒙古自治区', '巴彦淖尔盟', '杭锦后旗', '152827'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (778, '内蒙古自治区', '阿拉善盟', '阿拉善左旗', '152921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (779, '内蒙古自治区', '阿拉善盟', '阿拉善右旗', '152922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (780, '内蒙古自治区', '阿拉善盟', '额济纳旗', '152923'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (781, '辽宁省', '沈阳市', '市辖区', '210101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (782, '辽宁省', '沈阳市', '和平区', '210102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (783, '辽宁省', '沈阳市', '沈河区', '210103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (784, '辽宁省', '沈阳市', '大东区', '210104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (785, '辽宁省', '沈阳市', '皇姑区', '210105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (786, '辽宁省', '沈阳市', '铁西区', '210106'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (787, '辽宁省', '沈阳市', '苏家屯区', '210111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (788, '辽宁省', '沈阳市', '东陵区', '210112'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (789, '辽宁省', '沈阳市', '沈北新区', '210113'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (790, '辽宁省', '沈阳市', '于洪区', '210114'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (791, '辽宁省', '沈阳市', '市区', '210120'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (792, '辽宁省', '沈阳市', '新民县', '210121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (793, '辽宁省', '沈阳市', '辽中县', '210122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (794, '辽宁省', '沈阳市', '康平县', '210123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (795, '辽宁省', '沈阳市', '法库县', '210124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (796, '辽宁省', '沈阳市', '新民市', '210181'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (797, '辽宁省', '大连市', '市辖区', '210201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (798, '辽宁省', '大连市', '中山区', '210202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (799, '辽宁省', '大连市', '西岗区', '210203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (800, '辽宁省', '大连市', '沙河口区', '210204'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (801, '辽宁省', '大连市', '甘井子区', '210211'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (802, '辽宁省', '大连市', '旅顺口区', '210212'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (803, '辽宁省', '大连市', '金州区', '210213'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (804, '辽宁省', '大连市', '瓦房店市', '210219'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (805, '辽宁省', '大连市', '市区', '210220'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (806, '辽宁省', '大连市', '金县', '210221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (807, '辽宁省', '大连市', '新金县', '210222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (808, '辽宁省', '大连市', '复县', '210223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (809, '辽宁省', '大连市', '长海县', '210224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (810, '辽宁省', '大连市', '庄河县', '210225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (811, '辽宁省', '大连市', '瓦房店市', '210281'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (812, '辽宁省', '大连市', '普兰店市', '210282'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (813, '辽宁省', '大连市', '庄河市', '210283'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (814, '辽宁省', '鞍山市', '市辖区', '210301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (815, '辽宁省', '鞍山市', '铁东区', '210302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (816, '辽宁省', '鞍山市', '铁西区', '210303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (817, '辽宁省', '鞍山市', '立山区', '210304'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1333, '上海市', NULL, '川沙县', '310224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (818, '辽宁省', '鞍山市', '千山区', '210311'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (819, '辽宁省', '鞍山市', '开发区', '210319'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (820, '辽宁省', '鞍山市', '台安县', '210321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (821, '辽宁省', '鞍山市', '岫岩满族自治县', '210323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (822, '辽宁省', '鞍山市', '海城市', '210381'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (823, '辽宁省', '抚顺市', '市辖区', '210401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (824, '辽宁省', '抚顺市', '新抚区', '210402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (825, '辽宁省', '抚顺市', '东洲区', '210403'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (826, '辽宁省', '抚顺市', '望花区', '210404'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (827, '辽宁省', '抚顺市', '顺城区', '210411'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (828, '辽宁省', '抚顺市', '抚顺县', '210421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (829, '辽宁省', '抚顺市', '新宾满族自治县', '210422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (830, '辽宁省', '抚顺市', '清原满族自治县', '210423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (831, '辽宁省', '本溪市', '市辖区', '210501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (832, '辽宁省', '本溪市', '平山区', '210502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (833, '辽宁省', '本溪市', '溪湖区', '210503'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (834, '辽宁省', '本溪市', '明山区', '210504'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (835, '辽宁省', '本溪市', '南芬区', '210505'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (836, '辽宁省', '本溪市', '南芬区', '210511'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (837, '辽宁省', '本溪市', '本溪满族自治县', '210521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (838, '辽宁省', '本溪市', '桓仁满族自治县', '210522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (839, '辽宁省', '丹东市', '市辖区', '210601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (840, '辽宁省', '丹东市', '元宝区', '210602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (841, '辽宁省', '丹东市', '振兴区', '210603'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (842, '辽宁省', '丹东市', '振安区', '210604'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (843, '辽宁省', '丹东市', '市区', '210620'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (844, '辽宁省', '丹东市', '凤城满族自治县', '210621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (845, '辽宁省', '丹东市', '岫岩满族自治县', '210622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (846, '辽宁省', '丹东市', '东沟县', '210623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (847, '辽宁省', '丹东市', '宽甸满族自治县', '210624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (848, '辽宁省', '丹东市', '东港市', '210681'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (849, '辽宁省', '丹东市', '凤城市', '210682'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (850, '辽宁省', '锦州市', '市辖区', '210701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (851, '辽宁省', '锦州市', '古塔区', '210702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (852, '辽宁省', '锦州市', '凌河区', '210703'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (853, '辽宁省', '锦州市', '南票区', '210704'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (854, '辽宁省', '锦州市', '葫芦岛区', '210705'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (855, '辽宁省', '锦州市', '太和区', '210711'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (856, '辽宁省', '锦州市', '锦西市', '210719'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (857, '辽宁省', '锦州市', '市区', '210720'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (858, '辽宁省', '锦州市', '锦西县', '210721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (859, '辽宁省', '锦州市', '兴城县', '210722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (860, '辽宁省', '锦州市', '绥中县', '210723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (861, '辽宁省', '锦州市', '锦县', '210724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (862, '辽宁省', '锦州市', '北镇满族自治县', '210725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (863, '辽宁省', '锦州市', '黑山县', '210726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (864, '辽宁省', '锦州市', '义县', '210727'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (865, '辽宁省', '锦州市', '凌海市', '210781'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (866, '辽宁省', '锦州市', '北镇市', '210782'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (867, '辽宁省', '营口市', '市辖区', '210801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (868, '辽宁省', '营口市', '站前区', '210802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (869, '辽宁省', '营口市', '西市区', '210803'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (870, '辽宁省', '营口市', '鲅鱼圈区', '210804'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (871, '辽宁省', '营口市', '老边区', '210811'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (872, '辽宁省', '营口市', '营口县', '210821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (873, '辽宁省', '营口市', '盖县', '210824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (874, '辽宁省', '营口市', '盖州市', '210881'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (875, '辽宁省', '营口市', '大石桥市', '210882'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (876, '辽宁省', '阜新市', '市辖区', '210901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (877, '辽宁省', '阜新市', '海州区', '210902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (878, '辽宁省', '阜新市', '新邱区', '210903'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (879, '辽宁省', '阜新市', '太平区', '210904'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (880, '辽宁省', '阜新市', '清河门区', '210905'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (881, '辽宁省', '阜新市', '细河区', '210911'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (882, '辽宁省', '阜新市', '阜新蒙古族自治县', '210921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (883, '辽宁省', '阜新市', '彰武县', '210922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (884, '辽宁省', '辽阳市', '市辖区', '211001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (885, '辽宁省', '辽阳市', '白塔区', '211002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (886, '辽宁省', '辽阳市', '文圣区', '211003'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (887, '辽宁省', '辽阳市', '宏伟区', '211004'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (888, '辽宁省', '辽阳市', '弓长岭区', '211005'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (889, '辽宁省', '辽阳市', '太子河区', '211011'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (890, '辽宁省', '辽阳市', '辽阳县', '211021'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (891, '辽宁省', '辽阳市', '灯塔县', '211022'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (892, '辽宁省', '辽阳市', '灯塔市', '211081'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (893, '辽宁省', '盘锦市', '市辖区', '211101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (894, '辽宁省', '盘锦市', '双台子区', '211102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (895, '辽宁省', '盘锦市', '兴隆台区', '211103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (896, '辽宁省', '盘锦市', '郊区', '211111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (897, '辽宁省', '盘锦市', '大洼县', '211121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (898, '辽宁省', '盘锦市', '盘山县', '211122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (899, '辽宁省', '铁岭市', '市辖区', '211201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (900, '辽宁省', '铁岭市', '银州区', '211202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (901, '辽宁省', '铁岭市', '铁法区', '211203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (902, '辽宁省', '铁岭市', '清河区', '211204'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (903, '辽宁省', '铁岭市', '铁岭县', '211221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (904, '辽宁省', '铁岭市', '开原县', '211222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (905, '辽宁省', '铁岭市', '西丰县', '211223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (906, '辽宁省', '铁岭市', '昌图县', '211224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (907, '辽宁省', '铁岭市', '康平县', '211225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (908, '辽宁省', '铁岭市', '法库县', '211226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (909, '辽宁省', '铁岭市', '调兵山市', '211281'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (910, '辽宁省', '铁岭市', '开原市', '211282'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (911, '辽宁省', '朝阳市', '市辖区', '211301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (912, '辽宁省', '朝阳市', '双塔区', '211302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (913, '辽宁省', '朝阳市', '龙城区', '211303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (914, '辽宁省', '朝阳市', '朝阳县', '211321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (915, '辽宁省', '朝阳市', '建平县', '211322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (916, '辽宁省', '朝阳市', '凌源县', '211323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (917, '辽宁省', '朝阳市', '喀喇沁左翼蒙古族自治县', '211324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (918, '辽宁省', '朝阳市', '建昌县', '211325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (919, '辽宁省', '朝阳市', '北票县', '211326'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (920, '辽宁省', '朝阳市', '北票市', '211381'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (921, '辽宁省', '朝阳市', '凌源市', '211382'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (922, '辽宁省', '葫芦岛市', '市辖区', '211401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (923, '辽宁省', '葫芦岛市', '连山区', '211402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (924, '辽宁省', '葫芦岛市', '龙港区', '211403'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (925, '辽宁省', '葫芦岛市', '南票区', '211404'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (926, '辽宁省', '葫芦岛市', '绥中县', '211421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (927, '辽宁省', '葫芦岛市', '建昌县', '211422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (928, '辽宁省', '葫芦岛市', '兴城市', '211481'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (929, '辽宁省', '铁岭市', '铁岭市', '212101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (930, '辽宁省', '铁岭市', '铁法市', '212102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (931, '辽宁省', '铁岭市', '铁岭县', '212121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (932, '辽宁省', '铁岭市', '开原县', '212122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (933, '辽宁省', '铁岭市', '西丰县', '212123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (934, '辽宁省', '铁岭市', '昌图县', '212124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (935, '辽宁省', '铁岭市', '康平县', '212125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (936, '辽宁省', '铁岭市', '法库县', '212126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (937, '辽宁省', '朝阳市', '建昌县', '212225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (938, '辽宁省', '朝阳市', '北票县', '212226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (939, '辽宁省', NULL, '瓦房店市', '219001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (940, '辽宁省', NULL, '海城市', '219002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (941, '辽宁省', NULL, '锦西市', '219003'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (942, '辽宁省', NULL, '兴城市', '219004'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (943, '辽宁省', NULL, '铁法市', '219005'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (944, '辽宁省', NULL, '北票市', '219006'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (945, '辽宁省', NULL, '开原市', '219007'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (946, '吉林省', '长春市', '市辖区', '220101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (947, '吉林省', '长春市', '南关区', '220102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (948, '吉林省', '长春市', '宽城区', '220103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (949, '吉林省', '长春市', '朝阳区', '220104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (950, '吉林省', '长春市', '二道区', '220105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (951, '吉林省', '长春市', '绿园区', '220106'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (952, '吉林省', '长春市', '郊区', '220111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (953, '吉林省', '长春市', '双阳区', '220112'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (954, '吉林省', '长春市', '市区', '220120'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (955, '吉林省', '长春市', '榆树县', '220121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (956, '吉林省', '长春市', '农安县', '220122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (957, '吉林省', '长春市', '九台县', '220123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (958, '吉林省', '长春市', '德惠县', '220124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (959, '吉林省', '长春市', '双阳县', '220125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (960, '吉林省', '长春市', '九台市', '220181'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (961, '吉林省', '长春市', '榆树市', '220182'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (962, '吉林省', '长春市', '德惠市', '220183'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (963, '吉林省', '吉林市', '市辖区', '220201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (964, '吉林省', '吉林市', '昌邑区', '220202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (965, '吉林省', '吉林市', '龙潭区', '220203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (966, '吉林省', '吉林市', '船营区', '220204'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (967, '吉林省', '吉林市', '丰满区', '220211'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (968, '吉林省', '吉林市', '市区', '220220'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (969, '吉林省', '吉林市', '永吉县', '220221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (970, '吉林省', '吉林市', '舒兰县', '220222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (971, '吉林省', '吉林市', '磐石县', '220223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (972, '吉林省', '吉林市', '蛟河县', '220224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (973, '吉林省', '吉林市', '桦甸县', '220225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (974, '吉林省', '吉林市', '蛟河市', '220281'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (975, '吉林省', '吉林市', '桦甸市', '220282'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (976, '吉林省', '吉林市', '舒兰市', '220283'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (977, '吉林省', '吉林市', '磐石市', '220284'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (978, '吉林省', '四平市', '市辖区', '220301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (979, '吉林省', '四平市', '铁西区', '220302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (980, '吉林省', '四平市', '铁东区', '220303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (981, '吉林省', '四平市', '公主岭市', '220319'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (982, '吉林省', '四平市', '怀德县', '220321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (983, '吉林省', '四平市', '梨树县', '220322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (984, '吉林省', '四平市', '伊通满族自治县', '220323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (985, '吉林省', '四平市', '双辽县', '220324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (986, '吉林省', '四平市', '公主岭市', '220381'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (987, '吉林省', '四平市', '双辽市', '220382'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (988, '吉林省', '辽源市', '市辖区', '220401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (989, '吉林省', '辽源市', '龙山区', '220402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (990, '吉林省', '辽源市', '西安区', '220403'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (991, '吉林省', '辽源市', '东丰县', '220421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (992, '吉林省', '辽源市', '东辽县', '220422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (993, '吉林省', '通化市', '市辖区', '220501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (994, '吉林省', '通化市', '东昌区', '220502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (995, '吉林省', '通化市', '二道江区', '220503'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (996, '吉林省', '通化市', '梅河口市', '220519'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (997, '吉林省', '通化市', '通化县', '220521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (998, '吉林省', '通化市', '集安县', '220522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (999, '吉林省', '通化市', '辉南县', '220523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1000, '吉林省', '通化市', '柳河县', '220524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1001, '吉林省', '通化市', '梅河口市', '220581'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1002, '吉林省', '通化市', '集安市', '220582'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1003, '吉林省', '白山市', '市辖区', '220601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1004, '吉林省', '白山市', '八道江区', '220602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1005, '吉林省', '白山市', '三岔子区', '220603'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1006, '吉林省', '白山市', '临江区', '220604'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1007, '吉林省', '白山市', '抚松县', '220621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1008, '吉林省', '白山市', '靖宇县', '220622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1009, '吉林省', '白山市', '长白朝鲜族自治县', '220623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1010, '吉林省', '白山市', '江源县', '220625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1011, '吉林省', '白山市', '临江市', '220681'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1012, '吉林省', '松原市', '市辖区', '220701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1013, '吉林省', '松原市', '宁江区', '220702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1014, '吉林省', '松原市', '前郭尔罗斯蒙古族自治县', '220721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1015, '吉林省', '松原市', '长岭县', '220722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1016, '吉林省', '松原市', '乾安县', '220723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1017, '吉林省', '松原市', '扶余县', '220724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1018, '吉林省', '白城市', '市辖区', '220801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1019, '吉林省', '白城市', '洮北区', '220802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1020, '吉林省', '白城市', '镇赉县', '220821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1021, '吉林省', '白城市', '通榆县', '220822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1022, '吉林省', '白城市', '洮南市', '220881'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1023, '吉林省', '白城市', '大安市', '220882'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1024, '吉林省', '白城地区', '白城市', '222301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1025, '吉林省', '白城地区', '洮南市', '222302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1026, '吉林省', '白城地区', '扶余市', '222303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1027, '吉林省', '白城地区', '大安市', '222304'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1028, '吉林省', '白城地区', '扶余县', '222321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1029, '吉林省', '白城地区', '洮安县', '222322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1030, '吉林省', '白城地区', '长岭县', '222323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1031, '吉林省', '白城地区', '前郭尔罗斯蒙古族自治县', '222324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1032, '吉林省', '白城地区', '大安县', '222325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1033, '吉林省', '白城地区', '镇赉县', '222326'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1034, '吉林省', '白城地区', '通榆县', '222327'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1035, '吉林省', '白城地区', '乾安县', '222328'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1036, '吉林省', '延边朝鲜族自治州', '延吉市', '222401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1037, '吉林省', '延边朝鲜族自治州', '图们市', '222402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1038, '吉林省', '延边朝鲜族自治州', '敦化市', '222403'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1039, '吉林省', '延边朝鲜族自治州', '珲春市', '222404'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1040, '吉林省', '延边朝鲜族自治州', '龙井市', '222405'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1041, '吉林省', '延边朝鲜族自治州', '和龙市', '222406'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1042, '吉林省', '延边朝鲜族自治州', '龙井县', '222421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1043, '吉林省', '延边朝鲜族自治州', '敦化县', '222422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1044, '吉林省', '延边朝鲜族自治州', '和龙县', '222423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1045, '吉林省', '延边朝鲜族自治州', '汪清县', '222424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1046, '吉林省', '延边朝鲜族自治州', '珲春县', '222425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1047, '吉林省', '延边朝鲜族自治州', '安图县', '222426'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1048, '吉林省', NULL, '四平市', '222101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1049, '吉林省', NULL, '辽源市', '222102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1050, '吉林省', NULL, '怀德县', '222121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1051, '吉林省', NULL, '梨树县', '222122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1052, '吉林省', NULL, '伊通满族自治县', '222123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1053, '吉林省', NULL, '东丰县', '222124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1054, '吉林省', NULL, '双辽县', '222125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1055, '吉林省', NULL, '通化市', '222201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1056, '吉林省', NULL, '浑江市', '222202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1057, '吉林省', NULL, '海龙县', '222221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1058, '吉林省', NULL, '通化县', '222222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1059, '吉林省', NULL, '柳河县', '222223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1060, '吉林省', NULL, '辉南县', '222224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1061, '吉林省', NULL, '集安县', '222225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1062, '吉林省', NULL, '抚松县', '222226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1063, '吉林省', NULL, '靖宇县', '222227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1064, '吉林省', NULL, '长白朝鲜族自治县', '222228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1065, '吉林省', NULL, '公主岭市', '229001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1066, '吉林省', NULL, '梅河口市', '229002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1067, '吉林省', NULL, '集安市', '229003'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1068, '吉林省', NULL, '桦甸市', '229004'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1069, '吉林省', NULL, '九台市', '229005'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1070, '黑龙江省', '哈尔滨市', '市辖区', '230101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1071, '黑龙江省', '哈尔滨市', '道里区', '230102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1072, '黑龙江省', '哈尔滨市', '南岗区', '230103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1073, '黑龙江省', '哈尔滨市', '道外区', '230104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1074, '黑龙江省', '哈尔滨市', '太平区', '230105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1075, '黑龙江省', '哈尔滨市', '香坊区', '230106'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1076, '黑龙江省', '哈尔滨市', '动力区', '230107'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1077, '黑龙江省', '哈尔滨市', '平房区', '230108'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1078, '黑龙江省', '哈尔滨市', '松北区', '230109'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1079, '黑龙江省', '哈尔滨市', '香坊区', '230110'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1080, '黑龙江省', '哈尔滨市', '呼兰区', '230111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1081, '黑龙江省', '哈尔滨市', '阿城区', '230112'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1082, '黑龙江省', '哈尔滨市', '阿城市', '230119'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1083, '黑龙江省', '哈尔滨市', '呼兰县', '230121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1084, '黑龙江省', '哈尔滨市', '阿城县', '230122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1085, '黑龙江省', '哈尔滨市', '依兰县', '230123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1086, '黑龙江省', '哈尔滨市', '方正县', '230124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1087, '黑龙江省', '哈尔滨市', '宾县', '230125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1088, '黑龙江省', '哈尔滨市', '巴彦县', '230126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1089, '黑龙江省', '哈尔滨市', '木兰县', '230127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1090, '黑龙江省', '哈尔滨市', '通河县', '230128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1091, '黑龙江省', '哈尔滨市', '延寿县', '230129'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1092, '黑龙江省', '哈尔滨市', '阿城市', '230181'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1093, '黑龙江省', '哈尔滨市', '双城市', '230182'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1094, '黑龙江省', '哈尔滨市', '尚志市', '230183'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1095, '黑龙江省', '哈尔滨市', '五常市', '230184'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1096, '黑龙江省', '齐齐哈尔市', '市辖区', '230201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1097, '黑龙江省', '齐齐哈尔市', '龙沙区', '230202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1098, '黑龙江省', '齐齐哈尔市', '建华区', '230203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1099, '黑龙江省', '齐齐哈尔市', '铁锋区', '230204'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1100, '黑龙江省', '齐齐哈尔市', '昂昂溪区', '230205'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1101, '黑龙江省', '齐齐哈尔市', '富拉尔基区', '230206'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1102, '黑龙江省', '齐齐哈尔市', '碾子山区', '230207'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1103, '黑龙江省', '齐齐哈尔市', '梅里斯达斡尔族区', '230208'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1104, '黑龙江省', '齐齐哈尔市', '龙江县', '230221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1105, '黑龙江省', '齐齐哈尔市', '讷河县', '230222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1106, '黑龙江省', '齐齐哈尔市', '依安县', '230223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1107, '黑龙江省', '齐齐哈尔市', '泰来县', '230224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1108, '黑龙江省', '齐齐哈尔市', '甘南县', '230225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1109, '黑龙江省', '齐齐哈尔市', '杜尔伯特蒙古族自治县', '230226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1110, '黑龙江省', '齐齐哈尔市', '富裕县', '230227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1111, '黑龙江省', '齐齐哈尔市', '林甸县', '230228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1112, '黑龙江省', '齐齐哈尔市', '克山县', '230229'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1113, '黑龙江省', '齐齐哈尔市', '克东县', '230230'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1114, '黑龙江省', '齐齐哈尔市', '拜泉县', '230231'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1115, '黑龙江省', '齐齐哈尔市', '讷河市', '230281'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1116, '黑龙江省', '鸡西市', '市辖区', '230301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1117, '黑龙江省', '鸡西市', '鸡冠区', '230302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1118, '黑龙江省', '鸡西市', '恒山区', '230303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1119, '黑龙江省', '鸡西市', '滴道区', '230304'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1120, '黑龙江省', '鸡西市', '梨树区', '230305'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1121, '黑龙江省', '鸡西市', '城子河区', '230306'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1122, '黑龙江省', '鸡西市', '麻山区', '230307'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1123, '黑龙江省', '鸡西市', '鸡东县', '230321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1124, '黑龙江省', '鸡西市', '虎林市', '230381'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1125, '黑龙江省', '鸡西市', '密山市', '230382'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1126, '黑龙江省', '鹤岗市', '市辖区', '230401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1127, '黑龙江省', '鹤岗市', '向阳区', '230402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1128, '黑龙江省', '鹤岗市', '工农区', '230403'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1129, '黑龙江省', '鹤岗市', '南山区', '230404'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1334, '上海市', NULL, '南汇县', '310225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1130, '黑龙江省', '鹤岗市', '兴安区', '230405'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1131, '黑龙江省', '鹤岗市', '东山区', '230406'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1132, '黑龙江省', '鹤岗市', '兴山区', '230407'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1133, '黑龙江省', '鹤岗市', '萝北县', '230421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1134, '黑龙江省', '鹤岗市', '绥滨县', '230422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1135, '黑龙江省', '双鸭山市', '市辖区', '230501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1136, '黑龙江省', '双鸭山市', '尖山区', '230502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1137, '黑龙江省', '双鸭山市', '岭东区', '230503'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1138, '黑龙江省', '双鸭山市', '岭西区', '230504'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1139, '黑龙江省', '双鸭山市', '四方台区', '230505'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1140, '黑龙江省', '双鸭山市', '宝山区', '230506'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1141, '黑龙江省', '双鸭山市', '集贤县', '230521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1142, '黑龙江省', '双鸭山市', '友谊县', '230522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1143, '黑龙江省', '双鸭山市', '宝清县', '230523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1144, '黑龙江省', '双鸭山市', '饶河县', '230524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1145, '黑龙江省', '大庆市', '市辖区', '230601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1146, '黑龙江省', '大庆市', '萨尔图区', '230602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1147, '黑龙江省', '大庆市', '龙凤区', '230603'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1148, '黑龙江省', '大庆市', '让胡路区', '230604'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1149, '黑龙江省', '大庆市', '红岗区', '230605'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1150, '黑龙江省', '大庆市', '大同区', '230606'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1151, '黑龙江省', '大庆市', '肇州县', '230621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1152, '黑龙江省', '大庆市', '肇源县', '230622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1153, '黑龙江省', '大庆市', '林甸县', '230623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1154, '黑龙江省', '大庆市', '杜尔伯特蒙古族自治县', '230624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1155, '黑龙江省', '伊春市', '市辖区', '230701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1156, '黑龙江省', '伊春市', '伊春区', '230702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1157, '黑龙江省', '伊春市', '南岔区', '230703'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1158, '黑龙江省', '伊春市', '友好区', '230704'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1159, '黑龙江省', '伊春市', '西林区', '230705'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1160, '黑龙江省', '伊春市', '翠峦区', '230706'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1161, '黑龙江省', '伊春市', '新青区', '230707'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1162, '黑龙江省', '伊春市', '美溪区', '230708'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1163, '黑龙江省', '伊春市', '金山屯区', '230709'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1164, '黑龙江省', '伊春市', '五营区', '230710'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1165, '黑龙江省', '伊春市', '乌马河区', '230711'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1166, '黑龙江省', '伊春市', '汤旺河区', '230712'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1167, '黑龙江省', '伊春市', '带岭区', '230713'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1168, '黑龙江省', '伊春市', '乌伊岭区', '230714'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1169, '黑龙江省', '伊春市', '红星区', '230715'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1170, '黑龙江省', '伊春市', '上甘岭区', '230716'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1171, '黑龙江省', '伊春市', '铁力县', '230721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1172, '黑龙江省', '伊春市', '嘉荫县', '230722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1173, '黑龙江省', '伊春市', '铁力市', '230781'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1174, '黑龙江省', '佳木斯市', '市辖区', '230801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1175, '黑龙江省', '佳木斯市', '永红区', '230802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1176, '黑龙江省', '佳木斯市', '向阳区', '230803'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1177, '黑龙江省', '佳木斯市', '前进区', '230804'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1178, '黑龙江省', '佳木斯市', '东风区', '230805'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1179, '黑龙江省', '佳木斯市', '郊区', '230811'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1180, '黑龙江省', '佳木斯市', '富锦县', '230821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1181, '黑龙江省', '佳木斯市', '桦南县', '230822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1182, '黑龙江省', '佳木斯市', '依兰县', '230823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1183, '黑龙江省', '佳木斯市', '集贤县', '230825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1184, '黑龙江省', '佳木斯市', '桦川县', '230826'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1185, '黑龙江省', '佳木斯市', '宝清县', '230827'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1186, '黑龙江省', '佳木斯市', '汤原县', '230828'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1187, '黑龙江省', '佳木斯市', '绥滨县', '230829'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1188, '黑龙江省', '佳木斯市', '萝北县', '230830'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1189, '黑龙江省', '佳木斯市', '同江县', '230831'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1190, '黑龙江省', '佳木斯市', '饶河县', '230832'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1191, '黑龙江省', '佳木斯市', '抚远县', '230833'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1192, '黑龙江省', '佳木斯市', '友谊县', '230834'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1193, '黑龙江省', '佳木斯市', '同江市', '230881'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1194, '黑龙江省', '佳木斯市', '富锦市', '230882'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1195, '黑龙江省', '七台河市', '市辖区', '230901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1196, '黑龙江省', '七台河市', '新兴区', '230902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1197, '黑龙江省', '七台河市', '桃山区', '230903'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1198, '黑龙江省', '七台河市', '茄子河区', '230904'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1199, '黑龙江省', '七台河市', '勃利县', '230921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1200, '黑龙江省', '牡丹江市', '市辖区', '231001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1201, '黑龙江省', '牡丹江市', '东安区', '231002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1202, '黑龙江省', '牡丹江市', '阳明区', '231003'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1203, '黑龙江省', '牡丹江市', '爱民区', '231004'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1204, '黑龙江省', '牡丹江市', '西安区', '231005'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1205, '黑龙江省', '牡丹江市', '郊区', '231011'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1206, '黑龙江省', '牡丹江市', '绥芬河市', '231020'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1207, '黑龙江省', '牡丹江市', '宁安县', '231021'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1208, '黑龙江省', '牡丹江市', '海林县', '231022'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1209, '黑龙江省', '牡丹江市', '穆棱县', '231023'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1210, '黑龙江省', '牡丹江市', '东宁县', '231024'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1211, '黑龙江省', '牡丹江市', '林口县', '231025'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1212, '黑龙江省', '牡丹江市', '密山县', '231026'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1213, '黑龙江省', '牡丹江市', '虎林县', '231027'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1214, '黑龙江省', '牡丹江市', '绥芬河市', '231081'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1215, '黑龙江省', '牡丹江市', '密山市', '231082'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1216, '黑龙江省', '牡丹江市', '海林市', '231083'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1217, '黑龙江省', '牡丹江市', '宁安市', '231084'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1218, '黑龙江省', '牡丹江市', '穆棱市', '231085'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1219, '黑龙江省', '黑河市', '市辖区', '231101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1220, '黑龙江省', '黑河市', '爱辉区', '231102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1221, '黑龙江省', '黑河市', '嫩江县', '231121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1222, '黑龙江省', '黑河市', '逊克县', '231123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1223, '黑龙江省', '黑河市', '孙吴县', '231124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1224, '黑龙江省', '黑河市', '北安市', '231181'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1225, '黑龙江省', '黑河市', '五大连池市', '231182'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1226, '黑龙江省', '绥化市', '市辖区', '231201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1227, '黑龙江省', '绥化市', '北林区', '231202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1228, '黑龙江省', '绥化市', '望奎县', '231221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1229, '黑龙江省', '绥化市', '兰西县', '231222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1230, '黑龙江省', '绥化市', '青冈县', '231223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1231, '黑龙江省', '绥化市', '庆安县', '231224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1232, '黑龙江省', '绥化市', '明水县', '231225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1233, '黑龙江省', '绥化市', '绥棱县', '231226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1234, '黑龙江省', '绥化市', '安达市', '231281'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1235, '黑龙江省', '绥化市', '肇东市', '231282'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1236, '黑龙江省', '绥化市', '海伦市', '231283'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1237, '黑龙江省', '松花江地区', '双城市', '232101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1238, '黑龙江省', '松花江地区', '尚志市', '232102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1239, '黑龙江省', '松花江地区', '五常市', '232103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1240, '黑龙江省', '松花江地区', '阿城市', '232121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1241, '黑龙江省', '松花江地区', '宾县', '232122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1242, '黑龙江省', '松花江地区', '呼兰县', '232123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1243, '黑龙江省', '松花江地区', '双城市', '232124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1244, '黑龙江省', '松花江地区', '五常市', '232125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1245, '黑龙江省', '松花江地区', '巴彦县', '232126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1246, '黑龙江省', '松花江地区', '木兰县', '232127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1247, '黑龙江省', '松花江地区', '通河县', '232128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1248, '黑龙江省', '松花江地区', '尚志市', '232129'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1249, '黑龙江省', '松花江地区', '方正县', '232130'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1250, '黑龙江省', '松花江地区', '延寿县', '232131'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1251, '黑龙江省', '绥化地区', '绥化市', '232301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1252, '黑龙江省', '绥化地区', '安达市', '232302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1253, '黑龙江省', '绥化地区', '肇东市', '232303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1254, '黑龙江省', '绥化地区', '海伦市', '232304'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1255, '黑龙江省', '绥化地区', '海伦县', '232321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1256, '黑龙江省', '绥化地区', '肇东县', '232322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1257, '黑龙江省', '绥化地区', '绥化县', '232323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1258, '黑龙江省', '绥化地区', '望奎县', '232324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1259, '黑龙江省', '绥化地区', '兰西县', '232325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1260, '黑龙江省', '绥化地区', '青冈县', '232326'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1261, '黑龙江省', '绥化地区', '安达县', '232327'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1262, '黑龙江省', '绥化地区', '肇源县', '232328'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1263, '黑龙江省', '绥化地区', '肇州县', '232329'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1264, '黑龙江省', '绥化地区', '庆安县', '232330'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1265, '黑龙江省', '绥化地区', '明水县', '232331'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1266, '黑龙江省', '绥化地区', '绥棱县', '232332'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1267, '黑龙江省', '佳木斯地区', '佳木斯市', '232401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1268, '黑龙江省', '佳木斯地区', '富锦县', '232421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1269, '黑龙江省', '佳木斯地区', '桦南县', '232422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1270, '黑龙江省', '佳木斯地区', '依兰县', '232423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1271, '黑龙江省', '佳木斯地区', '勃利县', '232424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1272, '黑龙江省', '佳木斯地区', '集贤县', '232425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1273, '黑龙江省', '佳木斯地区', '桦川县', '232426'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1274, '黑龙江省', '佳木斯地区', '宝清县', '232427'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1275, '黑龙江省', '佳木斯地区', '汤原县', '232428'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1276, '黑龙江省', '佳木斯地区', '绥滨县', '232429'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1277, '黑龙江省', '佳木斯地区', '萝北县', '232430'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1278, '黑龙江省', '佳木斯地区', '同江县', '232431'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1279, '黑龙江省', '佳木斯地区', '饶河县', '232432'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1280, '黑龙江省', '佳木斯地区', '抚远县', '232433'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1281, '黑龙江省', '牡丹江地区', '牡丹江市', '232501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1282, '黑龙江省', '牡丹江地区', '绥芬河市', '232502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1283, '黑龙江省', '牡丹江地区', '宁安县', '232521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1284, '黑龙江省', '牡丹江地区', '海林县', '232522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1285, '黑龙江省', '牡丹江地区', '穆棱县', '232523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1286, '黑龙江省', '牡丹江地区', '东宁县', '232524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1287, '黑龙江省', '牡丹江地区', '林口县', '232525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1288, '黑龙江省', '牡丹江地区', '鸡东县', '232526'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1289, '黑龙江省', '牡丹江地区', '密山县', '232527'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1290, '黑龙江省', '牡丹江地区', '虎林县', '232528'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1291, '黑龙江省', '黑河地区', '黑河市', '232601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1292, '黑龙江省', '黑河地区', '北安市', '232602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1293, '黑龙江省', '黑河地区', '五大连池市', '232603'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1294, '黑龙江省', '黑河地区', '北安县', '232621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1295, '黑龙江省', '黑河地区', '嫩江县', '232622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1296, '黑龙江省', '黑河地区', '德都县', '232623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1297, '黑龙江省', '黑河地区', '逊克县', '232625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1298, '黑龙江省', '黑河地区', '孙吴县', '232626'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1299, '黑龙江省', '大兴安岭地区', '加格达奇区', '232701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1300, '黑龙江省', '大兴安岭地区', '呼玛县', '232721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1301, '黑龙江省', '大兴安岭地区', '塔河县', '232722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1302, '黑龙江省', '大兴安岭地区', '漠河县', '232723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1303, '黑龙江省', '大兴安岭地区', '漠河县', '232724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1304, '黑龙江省', NULL, '绥芬河市', '239001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1305, '黑龙江省', NULL, '阿城市', '239002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1306, '黑龙江省', NULL, '同江市', '239003'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1307, '黑龙江省', NULL, '富锦市', '239004'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1308, '黑龙江省', NULL, '铁力市', '239005'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1309, '黑龙江省', NULL, '密山市', '239006'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1310, '上海市', NULL, '黄浦区', '310101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1311, '上海市', NULL, '南市区', '310102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1312, '上海市', NULL, '卢湾区', '310103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1313, '上海市', NULL, '徐汇区', '310104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1314, '上海市', NULL, '长宁区', '310105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1315, '上海市', NULL, '静安区', '310106'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1316, '上海市', NULL, '普陀区', '310107'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1317, '上海市', NULL, '闸北区', '310108'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1318, '上海市', NULL, '虹口区', '310109'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1319, '上海市', NULL, '杨浦区', '310110'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1320, '上海市', NULL, '吴凇区', '310111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1321, '上海市', NULL, '闵行区', '310112'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1322, '上海市', NULL, '宝山区', '310113'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1323, '上海市', NULL, '嘉定区', '310114'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1324, '上海市', NULL, '浦东新区', '310115'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1325, '上海市', NULL, '金山区', '310116'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1326, '上海市', NULL, '松江区', '310117'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1327, '上海市', NULL, '青浦区', '310118'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1328, '上海市', NULL, '南汇区', '310119'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1329, '上海市', NULL, '奉贤区', '310120'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1330, '上海市', NULL, '上海县', '310221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1331, '上海市', NULL, '嘉定县', '310222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1335, '上海市', NULL, '奉贤县', '310226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1336, '上海市', NULL, '松江县', '310227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1337, '上海市', NULL, '金山县', '310228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1338, '上海市', NULL, '青浦县', '310229'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1339, '上海市', NULL, '崇明县', '310230'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1340, '江苏省', '南京市', '市辖区', '320101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1341, '江苏省', '南京市', '玄武区', '320102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1342, '江苏省', '南京市', '白下区', '320103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1343, '江苏省', '南京市', '秦淮区', '320104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1344, '江苏省', '南京市', '建邺区', '320105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1345, '江苏省', '南京市', '鼓楼区', '320106'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1346, '江苏省', '南京市', '下关区', '320107'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1347, '江苏省', '南京市', '浦口区', '320111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1348, '江苏省', '南京市', '大厂区', '320112'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1349, '江苏省', '南京市', '栖霞区', '320113'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1350, '江苏省', '南京市', '雨花台区', '320114'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1351, '江苏省', '南京市', '江宁区', '320115'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1352, '江苏省', '南京市', '六合区', '320116'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1353, '江苏省', '南京市', '市区', '320120'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1354, '江苏省', '南京市', '江宁县', '320121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1355, '江苏省', '南京市', '江浦县', '320122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1356, '江苏省', '南京市', '六合县', '320123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1357, '江苏省', '南京市', '溧水县', '320124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1358, '江苏省', '南京市', '高淳县', '320125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1359, '江苏省', '南京市', '江都县', '320126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1360, '江苏省', '无锡市', '市辖区', '320201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1361, '江苏省', '无锡市', '崇安区', '320202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1362, '江苏省', '无锡市', '南长区', '320203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1363, '江苏省', '无锡市', '北塘区', '320204'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1364, '江苏省', '无锡市', '锡山区', '320205'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1365, '江苏省', '无锡市', '惠山区', '320206'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1366, '江苏省', '无锡市', '郊区', '320211'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1367, '江苏省', '无锡市', '马山区', '320212'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1368, '江苏省', '无锡市', '江阴县', '320219'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1369, '江苏省', '无锡市', '江阴县', '320221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1370, '江苏省', '无锡市', '无锡县', '320222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1371, '江苏省', '无锡市', '宜兴县', '320223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1372, '江苏省', '无锡市', '江阴市', '320281'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1373, '江苏省', '无锡市', '宜兴市', '320282'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1374, '江苏省', '无锡市', '锡山市', '320283'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1375, '江苏省', '徐州市', '市辖区', '320301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1376, '江苏省', '徐州市', '鼓楼区', '320302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1377, '江苏省', '徐州市', '云龙区', '320303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1378, '江苏省', '徐州市', '九里区', '320304'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1379, '江苏省', '徐州市', '贾汪区', '320305'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1380, '江苏省', '徐州市', '泉山区', '320311'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1381, '江苏省', '徐州市', '丰县', '320321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1382, '江苏省', '徐州市', '沛县', '320322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1383, '江苏省', '徐州市', '铜山县', '320323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1384, '江苏省', '徐州市', '睢宁县', '320324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1385, '江苏省', '徐州市', '邳县', '320325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1386, '江苏省', '徐州市', '新沂县', '320326'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1387, '江苏省', '徐州市', '新沂市', '320381'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1388, '江苏省', '徐州市', '邳州市', '320382'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1389, '江苏省', '常州市', '市辖区', '320401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1390, '江苏省', '常州市', '天宁区', '320402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1391, '江苏省', '常州市', '钟楼区', '320404'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1392, '江苏省', '常州市', '戚墅堰区', '320405'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1393, '江苏省', '常州市', '郊区', '320411'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1394, '江苏省', '常州市', '武进区', '320412'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1395, '江苏省', '常州市', '武进市', '320419'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1396, '江苏省', '常州市', '武进县', '320421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1397, '江苏省', '常州市', '金坛县', '320422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1398, '江苏省', '常州市', '溧阳县', '320423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1399, '江苏省', '常州市', '溧阳市', '320481'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1400, '江苏省', '常州市', '金坛市', '320482'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1401, '江苏省', '常州市', '武进市', '320483'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1402, '江苏省', '苏州市', '市辖区', '320501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1403, '江苏省', '苏州市', '沧浪区', '320502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1404, '江苏省', '苏州市', '平江区', '320503'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1405, '江苏省', '苏州市', '金阊区', '320504'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1406, '江苏省', '苏州市', '虎丘区', '320505'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1407, '江苏省', '苏州市', '吴中区', '320506'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1408, '江苏省', '苏州市', '相城区', '320507'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1409, '江苏省', '苏州市', '郊区', '320511'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1410, '江苏省', '苏州市', '常熟市', '320520'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1411, '江苏省', '苏州市', '沙洲县', '320521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1412, '江苏省', '苏州市', '太仓县', '320522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1413, '江苏省', '苏州市', '昆山县', '320523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1414, '江苏省', '苏州市', '吴县', '320524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1415, '江苏省', '苏州市', '吴江县', '320525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1416, '江苏省', '苏州市', '常熟市', '320581'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1417, '江苏省', '苏州市', '张家港市', '320582'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1418, '江苏省', '苏州市', '昆山市', '320583'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1419, '江苏省', '苏州市', '吴江市', '320584'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1420, '江苏省', '苏州市', '太仓市', '320585'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1421, '江苏省', '苏州市', '吴县市', '320586'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1422, '江苏省', '南通市', '市辖区', '320601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1423, '江苏省', '南通市', '崇川区', '320602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1424, '江苏省', '南通市', '港闸区', '320611'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1425, '江苏省', '南通市', '海安县', '320621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1426, '江苏省', '南通市', '如皋县', '320622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1427, '江苏省', '南通市', '如东县', '320623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1428, '江苏省', '南通市', '南通县', '320624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1429, '江苏省', '南通市', '海门县', '320625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1430, '江苏省', '南通市', '启东县', '320626'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1431, '江苏省', '南通市', '启东市', '320681'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1432, '江苏省', '南通市', '如皋市', '320682'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1433, '江苏省', '南通市', '通州市', '320683'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1434, '江苏省', '南通市', '海门市', '320684'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1435, '江苏省', '连云港市', '市辖区', '320701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1436, '江苏省', '连云港市', '连云区', '320703'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1437, '江苏省', '连云港市', '云台区', '320704'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1438, '江苏省', '连云港市', '新浦区', '320705'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1439, '江苏省', '连云港市', '海州区', '320706'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1440, '江苏省', '连云港市', '赣榆县', '320721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1441, '江苏省', '连云港市', '东海县', '320722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1442, '江苏省', '连云港市', '灌云县', '320723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1443, '江苏省', '连云港市', '灌南县', '320724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1444, '江苏省', '淮安市', '市辖区', '320801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1445, '江苏省', '淮安市', '清河区', '320802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1446, '江苏省', '淮安市', '楚州区', '320803'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1447, '江苏省', '淮安市', '淮阴区', '320804'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1448, '江苏省', '淮安市', '清浦区', '320811'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1449, '江苏省', '淮安市', '宿迁市', '320819'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1450, '江苏省', '淮安市', '淮阴县', '320821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1451, '江苏省', '淮安市', '灌南县', '320822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1452, '江苏省', '淮安市', '沭阳县', '320823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1453, '江苏省', '淮安市', '宿迁县', '320824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1454, '江苏省', '淮安市', '泗阳县', '320825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1455, '江苏省', '淮安市', '涟水县', '320826'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1456, '江苏省', '淮安市', '泗洪县', '320827'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1457, '江苏省', '淮安市', '淮安县', '320828'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1458, '江苏省', '淮安市', '洪泽县', '320829'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1459, '江苏省', '淮安市', '盱眙县', '320830'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1460, '江苏省', '淮安市', '金湖县', '320831'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1461, '江苏省', '淮安市', '宿迁市', '320881'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1462, '江苏省', '淮安市', '淮安市', '320882'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1463, '江苏省', '盐城市', '市辖区', '320901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1464, '江苏省', '盐城市', '城区', '320902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1465, '江苏省', '盐城市', '盐都区', '320903'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1466, '江苏省', '盐城市', '郊区', '320911'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1467, '江苏省', '盐城市', '东台市', '320919'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1468, '江苏省', '盐城市', '响水县', '320921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1469, '江苏省', '盐城市', '滨海县', '320922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1470, '江苏省', '盐城市', '阜宁县', '320923'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1471, '江苏省', '盐城市', '射阳县', '320924'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1472, '江苏省', '盐城市', '建湖县', '320925'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1473, '江苏省', '盐城市', '大丰县', '320926'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1474, '江苏省', '盐城市', '东台县', '320927'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1475, '江苏省', '盐城市', '盐都县', '320928'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1476, '江苏省', '盐城市', '东台市', '320981'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1477, '江苏省', '盐城市', '大丰市', '320982'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1478, '江苏省', '扬州市', '市辖区', '321001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1479, '江苏省', '扬州市', '广陵区', '321002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1480, '江苏省', '扬州市', '邗江区', '321003'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1481, '江苏省', '扬州市', '郊区', '321011'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1482, '江苏省', '扬州市', '仪征市', '321019'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1483, '江苏省', '扬州市', '泰州市', '321020'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1484, '江苏省', '扬州市', '兴化县', '321021'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1485, '江苏省', '扬州市', '高邮县', '321022'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1486, '江苏省', '扬州市', '宝应县', '321023'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1487, '江苏省', '扬州市', '靖江县', '321024'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1488, '江苏省', '扬州市', '泰兴县', '321025'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1489, '江苏省', '扬州市', '江都县', '321026'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1490, '江苏省', '扬州市', '邗江县', '321027'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1491, '江苏省', '扬州市', '泰县', '321028'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1492, '江苏省', '扬州市', '仪征县', '321029'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1493, '江苏省', '扬州市', '仪征市', '321081'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1494, '江苏省', '扬州市', '泰州市', '321082'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1495, '江苏省', '扬州市', '兴化市', '321083'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1496, '江苏省', '扬州市', '高邮市', '321084'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1497, '江苏省', '扬州市', '泰兴市', '321085'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1498, '江苏省', '扬州市', '靖江市', '321086'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1499, '江苏省', '扬州市', '江都市', '321087'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1500, '江苏省', '扬州市', '江都市', '321088'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1501, '江苏省', '镇江市', '市辖区', '321101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1502, '江苏省', '镇江市', '京口区', '321102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1503, '江苏省', '镇江市', '润州区', '321111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1504, '江苏省', '镇江市', '丹徒区', '321112'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1505, '江苏省', '镇江市', '丹阳市', '321119'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1506, '江苏省', '镇江市', '丹徒县', '321121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1507, '江苏省', '镇江市', '丹阳县', '321122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1508, '江苏省', '镇江市', '句容县', '321123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1509, '江苏省', '镇江市', '扬中县', '321124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1510, '江苏省', '镇江市', '丹阳市', '321181'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1511, '江苏省', '镇江市', '扬中市', '321182'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1512, '江苏省', '镇江市', '句容市', '321183'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1513, '江苏省', '泰州市', '市辖区', '321201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1514, '江苏省', '泰州市', '海陵区', '321202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1515, '江苏省', '泰州市', '高港区', '321203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1516, '江苏省', '泰州市', '兴化市', '321281'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1517, '江苏省', '泰州市', '靖江市', '321282'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1518, '江苏省', '泰州市', '泰兴市', '321283'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1519, '江苏省', '泰州市', '姜堰市', '321284'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1520, '江苏省', '宿迁市', '市辖区', '321301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1521, '江苏省', '宿迁市', '宿城区', '321302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1522, '江苏省', '宿迁市', '宿豫区', '321311'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1523, '江苏省', '宿迁市', '宿豫县', '321321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1524, '江苏省', '宿迁市', '沭阳县', '321322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1525, '江苏省', '宿迁市', '泗阳县', '321323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1526, '江苏省', '宿迁市', '泗洪县', '321324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1527, '浙江省', '杭州市', '市辖区', '330101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1528, '浙江省', '杭州市', '上城区', '330102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1529, '浙江省', '杭州市', '下城区', '330103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1530, '浙江省', '杭州市', '江干区', '330104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1531, '浙江省', '杭州市', '拱墅区', '330105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1532, '浙江省', '杭州市', '西湖区', '330106'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1533, '浙江省', '杭州市', '滨江区', '330107'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1534, '浙江省', '杭州市', '滨江区', '330108'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1535, '浙江省', '杭州市', '萧山区', '330109'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1536, '浙江省', '杭州市', '余杭区', '330110'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1537, '浙江省', '杭州市', '市区', '330120'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1538, '浙江省', '杭州市', '萧山县', '330121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1539, '浙江省', '杭州市', '桐庐县', '330122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1540, '浙江省', '杭州市', '富阳县', '330123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1541, '浙江省', '杭州市', '临安县', '330124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1542, '浙江省', '杭州市', '余杭县', '330125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1543, '浙江省', '杭州市', '建德县', '330126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1544, '浙江省', '杭州市', '淳安县', '330127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1545, '浙江省', '杭州市', '萧山市', '330181'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1546, '浙江省', '杭州市', '建德市', '330182'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1547, '浙江省', '杭州市', '富阳市', '330183'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1548, '浙江省', '杭州市', '余杭市', '330184'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1549, '浙江省', '杭州市', '临安市', '330185'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1550, '浙江省', '台州市', '椒江区', '331002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1551, '浙江省', '台州市', '黄岩区', '331003'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1552, '浙江省', '台州市', '路桥区', '331004'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1553, '浙江省', '台州市', '玉环县', '331021'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1554, '浙江省', '台州市', '三门县', '331022'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1555, '浙江省', '台州市', '天台县', '331023'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1556, '浙江省', '台州市', '仙居县', '331024'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1557, '浙江省', '台州市', '温岭市', '331081'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1558, '浙江省', '台州市', '临海市', '331082'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1559, '浙江省', '台州市', '市辖区', '331001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1560, '浙江省', '丽水市', '市辖区', '331101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1561, '浙江省', '丽水市', '莲都区', '331102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1562, '浙江省', '丽水市', '青田县', '331121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1563, '浙江省', '丽水市', '缙云县', '331122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1564, '浙江省', '丽水市', '遂昌县', '331123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1565, '浙江省', '丽水市', '松阳县', '331124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1566, '浙江省', '丽水市', '云和县', '331125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1567, '浙江省', '丽水市', '庆元县', '331126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1568, '浙江省', '丽水市', '景宁畲族自治县', '331127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1569, '浙江省', '丽水市', '龙泉市', '331181'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1570, '浙江省', '丽水地区', '丽水市', '332501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1571, '浙江省', '丽水地区', '龙泉市', '332502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1572, '浙江省', '丽水地区', '丽水县', '332521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1573, '浙江省', '丽水地区', '青田县', '332522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1574, '浙江省', '丽水地区', '云和县', '332523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1575, '浙江省', '丽水地区', '龙泉县', '332524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1576, '浙江省', '丽水地区', '庆元县', '332525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1577, '浙江省', '丽水地区', '缙云县', '332526'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1578, '浙江省', '丽水地区', '遂昌县', '332527'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1579, '浙江省', '丽水地区', '松阳县', '332528'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1580, '浙江省', '丽水地区', '景宁畲族自治县', '332529'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1581, '浙江省', '台州地区', '椒江市', '332601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1582, '浙江省', '台州地区', '临海市', '332602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1583, '浙江省', '台州地区', '黄岩市', '332603'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1584, '浙江省', '台州地区', '临海县', '332621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1585, '浙江省', '台州地区', '黄岩县', '332622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1586, '浙江省', '台州地区', '温岭县', '332623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1587, '浙江省', '台州地区', '仙居县', '332624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1588, '浙江省', '台州地区', '天台县', '332625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1589, '浙江省', '台州地区', '三门县', '332626'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1590, '浙江省', '台州地区', '玉环县', '332627'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1591, '浙江省', '舟山地区', '定海县', '332721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1592, '浙江省', '舟山地区', '普陀县', '332722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1593, '浙江省', '舟山地区', '岱山县', '332723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1594, '浙江省', '舟山地区', '嵊泗县', '332724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1595, '浙江省', '宁波市', '市辖区', '330201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1596, '浙江省', '宁波市', '镇明区', '330202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1597, '浙江省', '宁波市', '海曙区', '330203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1598, '浙江省', '宁波市', '江东区', '330204'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1599, '浙江省', '宁波市', '江北区', '330205'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1600, '浙江省', '宁波市', '北仑区', '330206'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1601, '浙江省', '宁波市', '鄞州区', '330207'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1602, '浙江省', '宁波市', '镇海区', '330211'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1603, '浙江省', '宁波市', '鄞州区', '330212'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1604, '浙江省', '宁波市', '余姚市', '330219'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1605, '浙江省', '宁波市', '镇海县', '330221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1606, '浙江省', '宁波市', '慈溪县', '330222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1607, '浙江省', '宁波市', '余姚县', '330223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1608, '浙江省', '宁波市', '奉化县', '330224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1609, '浙江省', '宁波市', '象山县', '330225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1610, '浙江省', '宁波市', '宁海县', '330226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1611, '浙江省', '宁波市', '鄞县', '330227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1612, '浙江省', '宁波市', '余姚市', '330281'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1613, '浙江省', '宁波市', '慈溪市', '330282'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1614, '浙江省', '宁波市', '奉化市', '330283'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1615, '浙江省', '温州市', '市辖区', '330301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1616, '浙江省', '温州市', '鹿城区', '330302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1617, '浙江省', '温州市', '龙湾区', '330303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1618, '浙江省', '温州市', '瓯海区', '330304'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1619, '浙江省', '温州市', '瓯海县', '330321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1620, '浙江省', '温州市', '洞头县', '330322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1621, '浙江省', '温州市', '乐清县', '330323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1622, '浙江省', '温州市', '永嘉县', '330324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1623, '浙江省', '温州市', '瑞安县', '330325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1624, '浙江省', '温州市', '平阳县', '330326'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1625, '浙江省', '温州市', '苍南县', '330327'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1626, '浙江省', '温州市', '文成县', '330328'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1627, '浙江省', '温州市', '泰顺县', '330329'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1628, '浙江省', '温州市', '瑞安市', '330381'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1629, '浙江省', '温州市', '乐清市', '330382'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1630, '浙江省', '嘉兴市', '市辖区', '330401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1631, '浙江省', '嘉兴市', '秀城区', '330402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1632, '浙江省', '嘉兴市', '郊区', '330411'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1633, '浙江省', '嘉兴市', '海宁市', '330419'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1634, '浙江省', '嘉兴市', '嘉善县', '330421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1635, '浙江省', '嘉兴市', '平湖县', '330422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1636, '浙江省', '嘉兴市', '海宁县', '330423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1637, '浙江省', '嘉兴市', '海盐县', '330424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1638, '浙江省', '嘉兴市', '桐乡县', '330425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1639, '浙江省', '嘉兴市', '海宁市', '330481'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1640, '浙江省', '嘉兴市', '平湖市', '330482'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1641, '浙江省', '嘉兴市', '桐乡市', '330483'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1642, '浙江省', '湖州市', '市辖区', '330501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1643, '浙江省', '湖州市', '吴兴区', '330502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1644, '浙江省', '湖州市', '南浔区', '330503'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1645, '浙江省', '湖州市', '郊区', '330511'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1646, '浙江省', '湖州市', '德清县', '330521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1647, '浙江省', '湖州市', '长兴县', '330522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1648, '浙江省', '湖州市', '安吉县', '330523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1649, '浙江省', '绍兴市', '市辖区', '330601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1650, '浙江省', '绍兴市', '越城区', '330602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1651, '浙江省', '绍兴市', '绍兴县', '330621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1652, '浙江省', '绍兴市', '上虞县', '330622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1653, '浙江省', '绍兴市', '嵊县', '330623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1654, '浙江省', '绍兴市', '新昌县', '330624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1655, '浙江省', '绍兴市', '诸暨县', '330625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1656, '浙江省', '绍兴市', '诸暨市', '330681'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1657, '浙江省', '绍兴市', '上虞市', '330682'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1658, '浙江省', '绍兴市', '嵊州市', '330683'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1659, '浙江省', '金华市', '市辖区', '330701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1660, '浙江省', '金华市', '婺城区', '330702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1661, '浙江省', '金华市', '金东区', '330703'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1662, '浙江省', '金华市', '兰溪市', '330719'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1663, '浙江省', '金华市', '金华县', '330721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1664, '浙江省', '金华市', '永康县', '330722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1665, '浙江省', '金华市', '武义县', '330723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1666, '浙江省', '金华市', '东阳县', '330724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1667, '浙江省', '金华市', '义乌县', '330725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1668, '浙江省', '金华市', '浦江县', '330726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1669, '浙江省', '金华市', '磐安县', '330727'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1670, '浙江省', '金华市', '兰溪市', '330781'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1671, '浙江省', '金华市', '义乌市', '330782'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1672, '浙江省', '金华市', '东阳市', '330783'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1673, '浙江省', '金华市', '永康市', '330784'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1674, '浙江省', '衢州市', '市辖区', '330801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1675, '浙江省', '衢州市', '柯城区', '330802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1676, '浙江省', '衢州市', '衢江区', '330803'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1677, '浙江省', '衢州市', '衢县', '330821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1678, '浙江省', '衢州市', '常山县', '330822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1679, '浙江省', '衢州市', '江山县', '330823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1680, '浙江省', '衢州市', '开化县', '330824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1681, '浙江省', '衢州市', '龙游县', '330825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1682, '浙江省', '衢州市', '江山市', '330881'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1683, '浙江省', '舟山市', '市辖区', '330901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1684, '浙江省', '舟山市', '定海区', '330902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1685, '浙江省', '舟山市', '普陀区', '330903'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1686, '浙江省', '舟山市', '岱山县', '330921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1687, '浙江省', '舟山市', '嵊泗县', '330922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1688, '浙江省', NULL, '余姚市', '339001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1689, '浙江省', NULL, '海宁市', '339002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1690, '浙江省', NULL, '兰溪市', '339003'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1691, '浙江省', NULL, '瑞安市', '339004'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1692, '浙江省', NULL, '萧山市', '339005'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1693, '浙江省', NULL, '江山市', '339006'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1694, '浙江省', NULL, '义乌市', '339007'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1695, '浙江省', NULL, '东阳市', '339008'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1696, '浙江省', NULL, '慈溪市', '339009'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1697, '浙江省', NULL, '奉化市', '339010'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1698, '浙江省', NULL, '诸暨市', '339011'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1699, '安徽省', '阜阳市', '临泉县', '341221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1700, '安徽省', '阜阳市', '太和县', '341222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1701, '安徽省', '阜阳市', '涡阳县', '341223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1702, '安徽省', '阜阳市', '蒙城县', '341224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1703, '安徽省', '阜阳市', '阜南县', '341225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1704, '安徽省', '阜阳市', '颍上县', '341226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1705, '安徽省', '阜阳市', '利辛县', '341227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1706, '安徽省', '阜阳市', '亳州市', '341281'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1707, '安徽省', '阜阳市', '界首市', '341282'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1708, '安徽省', '阜阳市', '市辖区', '341201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1709, '安徽省', '阜阳市', '颍州区', '341202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1710, '安徽省', '阜阳市', '颍东区', '341203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1711, '安徽省', '阜阳市', '颍泉区', '341204'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1712, '安徽省', '宿州市', '市辖区', '341301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1713, '安徽省', '宿州市', '墉桥区', '341302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1714, '安徽省', '宿州市', '砀山县', '341321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1715, '安徽省', '宿州市', '萧县', '341322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1716, '安徽省', '宿州市', '灵璧县', '341323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1717, '安徽省', '宿州市', '泗县', '341324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1718, '安徽省', '巢湖市', '市辖区', '341401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1719, '安徽省', '巢湖市', '居巢区', '341402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1720, '安徽省', '巢湖市', '庐江县', '341421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1721, '安徽省', '巢湖市', '无为县', '341422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1722, '安徽省', '巢湖市', '含山县', '341423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1723, '安徽省', '巢湖市', '和县', '341424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1724, '安徽省', '六安市', '市辖区', '341501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1725, '安徽省', '六安市', '金安区', '341502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1726, '安徽省', '六安市', '裕安区', '341503'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1727, '安徽省', '六安市', '寿县', '341521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1728, '安徽省', '六安市', '霍邱县', '341522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1729, '安徽省', '六安市', '舒城县', '341523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1730, '安徽省', '六安市', '金寨县', '341524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1731, '安徽省', '六安市', '霍山县', '341525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1732, '安徽省', '亳州市', '市辖区', '341601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1733, '安徽省', '亳州市', '谯城区', '341602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1734, '安徽省', '亳州市', '涡阳县', '341621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1735, '安徽省', '亳州市', '蒙城县', '341622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1736, '安徽省', '亳州市', '利辛县', '341623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1737, '安徽省', '池州市', '市辖区', '341701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1738, '安徽省', '池州市', '贵池区', '341702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1739, '安徽省', '池州市', '东至县', '341721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1740, '安徽省', '池州市', '石台县', '341722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1741, '安徽省', '池州市', '青阳县', '341723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1742, '安徽省', '宣城市', '市辖区', '341801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1743, '安徽省', '宣城市', '宣州区', '341802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1744, '安徽省', '宣城市', '郎溪县', '341821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1745, '安徽省', '宣城市', '广德县', '341822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1746, '安徽省', '宣城市', '泾县', '341823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1747, '安徽省', '宣城市', '绩溪县', '341824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1748, '安徽省', '宣城市', '旌德县', '341825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1749, '安徽省', '宣城市', '宁国市', '341881'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1750, '安徽省', '阜阳地区', '阜阳市', '342101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1751, '安徽省', '阜阳地区', '阜阳县', '342121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1752, '安徽省', '阜阳地区', '临泉县', '342122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1753, '安徽省', '阜阳地区', '太和县', '342123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1754, '安徽省', '阜阳地区', '涡阳县', '342124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1755, '安徽省', '阜阳地区', '蒙城县', '342125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1756, '安徽省', '阜阳地区', '亳县', '342126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1757, '安徽省', '阜阳地区', '阜南县', '342127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1758, '安徽省', '阜阳地区', '颍上县', '342128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1759, '安徽省', '阜阳地区', '界首县', '342129'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1760, '安徽省', '阜阳地区', '利辛县', '342130'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1761, '安徽省', '宿县地区', '宿州市', '342201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1762, '安徽省', '宿县地区', '砀山县', '342221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1763, '安徽省', '宿县地区', '萧县', '342222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1764, '安徽省', '宿县地区', '宿县', '342223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1765, '安徽省', '宿县地区', '灵璧县', '342224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1766, '安徽省', '宿县地区', '泗县', '342225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1767, '安徽省', '宿县地区', '怀远县', '342226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1768, '安徽省', '宿县地区', '五河县', '342227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1769, '安徽省', '宿县地区', '固镇县', '342228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1770, '安徽省', '滁县地区', '滁州市', '342301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1771, '安徽省', '滁县地区', '天长县', '342321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1772, '安徽省', '滁县地区', '来安县', '342322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1773, '安徽省', '滁县地区', '滁县', '342323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1774, '安徽省', '滁县地区', '全椒县', '342324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1775, '安徽省', '滁县地区', '定远县', '342325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1776, '安徽省', '滁县地区', '凤阳县', '342326'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1777, '安徽省', '滁县地区', '嘉山县', '342327'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1778, '安徽省', '六安地区', '六安市', '342401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1779, '安徽省', '六安地区', '六安县', '342421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1780, '安徽省', '六安地区', '寿县', '342422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1781, '安徽省', '六安地区', '霍邱县', '342423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1782, '安徽省', '六安地区', '肥西县', '342424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1783, '安徽省', '六安地区', '舒城县', '342425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1784, '安徽省', '六安地区', '金寨县', '342426'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1785, '安徽省', '六安地区', '霍山县', '342427'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1786, '安徽省', '宣城地区', '宣州市', '342501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1787, '安徽省', '宣城地区', '宁国市', '342502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1788, '安徽省', '宣城地区', '宣州县', '342521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1789, '安徽省', '宣城地区', '郎溪县', '342522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1790, '安徽省', '宣城地区', '广德县', '342523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1791, '安徽省', '宣城地区', '宁国县', '342524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1792, '安徽省', '宣城地区', '当涂县', '342525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1793, '安徽省', '宣城地区', '繁昌县', '342526'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1794, '安徽省', '宣城地区', '南陵县', '342527'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1795, '安徽省', '宣城地区', '青阳县', '342528'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1796, '安徽省', '宣城地区', '泾县', '342529'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1797, '安徽省', '宣城地区', '旌德县', '342530'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1798, '安徽省', '宣城地区', '绩溪县', '342531'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1799, '安徽省', '巢湖地区', '巢湖市', '342601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1800, '安徽省', '巢湖地区', '肥东县', '342621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1801, '安徽省', '巢湖地区', '庐江县', '342622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1802, '安徽省', '巢湖地区', '无为县', '342623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1803, '安徽省', '巢湖地区', '巢县', '342624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1804, '安徽省', '巢湖地区', '含山县', '342625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1805, '安徽省', '巢湖地区', '和县', '342626'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1806, '安徽省', '徽州地区', '屯溪市', '342701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1807, '安徽省', '徽州地区', '绩溪县', '342721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1808, '安徽省', '徽州地区', '旌德县', '342722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1809, '安徽省', '徽州地区', '歙县', '342723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1810, '安徽省', '徽州地区', '休宁县', '342724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1811, '安徽省', '徽州地区', '黟县', '342725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1812, '安徽省', '徽州地区', '祁门县', '342726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1813, '安徽省', '徽州地区', '太平县', '342727'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1814, '安徽省', '徽州地区', '石台县', '342728'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1815, '安徽省', '安庆地区', '怀宁县', '342821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1816, '安徽省', '安庆地区', '桐城县', '342822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1817, '安徽省', '安庆地区', '枞阳县', '342823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1818, '安徽省', '安庆地区', '潜山县', '342824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1819, '安徽省', '安庆地区', '太湖县', '342825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1820, '安徽省', '安庆地区', '宿松县', '342826'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1821, '安徽省', '安庆地区', '望江县', '342827'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1822, '安徽省', '安庆地区', '岳西县', '342828'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1823, '安徽省', '安庆地区', '东至县', '342829'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1824, '安徽省', '安庆地区', '贵池县', '342830'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1825, '安徽省', '池州地区', '贵池市', '342901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1826, '安徽省', '池州地区', '东至县', '342921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1827, '安徽省', '池州地区', '石台县', '342922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1828, '安徽省', '池州地区', '青阳县', '342923'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1829, '安徽省', '合肥市', '市辖区', '340101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1830, '安徽省', '合肥市', '瑶海区', '340102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1831, '安徽省', '合肥市', '庐阳区', '340103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1832, '安徽省', '合肥市', '蜀山区', '340104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1833, '安徽省', '合肥市', '包河区', '340111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1834, '安徽省', '合肥市', '长丰县', '340121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1835, '安徽省', '合肥市', '肥西县', '340122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1836, '安徽省', '合肥市', '肥东县', '340123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1837, '安徽省', '芜湖市', '市辖区', '340201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1838, '安徽省', '芜湖市', '镜湖区', '340202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1839, '安徽省', '芜湖市', '弋江区', '340203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1840, '安徽省', '芜湖市', '新芜区', '340204'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1841, '安徽省', '芜湖市', '裕溪口区', '340205'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1842, '安徽省', '芜湖市', '四褐山区', '340206'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1843, '安徽省', '芜湖市', '鸠江区', '340207'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1844, '安徽省', '芜湖市', '三山区', '340208'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1845, '安徽省', '芜湖市', '郊区', '340211'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1846, '安徽省', '芜湖市', '市区', '340220'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1847, '安徽省', '芜湖市', '芜湖县', '340221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1848, '安徽省', '芜湖市', '繁昌县', '340222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1849, '安徽省', '芜湖市', '南陵县', '340223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1850, '安徽省', '芜湖市', '青阳县', '340224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1851, '安徽省', '蚌埠市', '市辖区', '340301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1852, '安徽省', '蚌埠市', '龙子湖区', '340302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1853, '安徽省', '蚌埠市', '蚌山区', '340303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1854, '安徽省', '蚌埠市', '禹会区', '340304'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1855, '安徽省', '蚌埠市', '淮上区', '340311'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1856, '安徽省', '蚌埠市', '怀远县', '340321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1857, '安徽省', '蚌埠市', '五河县', '340322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1858, '安徽省', '蚌埠市', '固镇县', '340323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1859, '安徽省', '淮南市', '市辖区', '340401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1860, '安徽省', '淮南市', '大通区', '340402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1861, '安徽省', '淮南市', '田家庵区', '340403'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1862, '安徽省', '淮南市', '谢家集区', '340404'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1863, '安徽省', '淮南市', '八公山区', '340405'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1864, '安徽省', '淮南市', '潘集区', '340406'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1865, '安徽省', '淮南市', '凤台县', '340421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1866, '安徽省', '马鞍山市', '市辖区', '340501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1867, '安徽省', '马鞍山市', '金家庄区', '340502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1868, '安徽省', '马鞍山市', '花山区', '340503'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1869, '安徽省', '马鞍山市', '雨山区', '340504'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1870, '安徽省', '马鞍山市', '向山区', '340505'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1871, '安徽省', '马鞍山市', '当涂县', '340521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1872, '安徽省', '淮北市', '市辖区', '340601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1873, '安徽省', '淮北市', '杜集区', '340602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1874, '安徽省', '淮北市', '相山区', '340603'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1875, '安徽省', '淮北市', '烈山区', '340604'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1876, '安徽省', '淮北市', '濉溪县', '340621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1877, '安徽省', '铜陵市', '市辖区', '340701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1878, '安徽省', '铜陵市', '铜官山区', '340702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1879, '安徽省', '铜陵市', '狮子山区', '340703'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1880, '安徽省', '铜陵市', '郊区', '340711'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1881, '安徽省', '铜陵市', '铜陵县', '340721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1882, '安徽省', '安庆市', '市辖区', '340801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1883, '安徽省', '安庆市', '迎江区', '340802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1884, '安徽省', '安庆市', '大观区', '340803'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1885, '安徽省', '安庆市', '郊区', '340811'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1886, '安徽省', '安庆市', '桐城县', '340821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1887, '安徽省', '安庆市', '怀宁县', '340822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1888, '安徽省', '安庆市', '枞阳县', '340823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1889, '安徽省', '安庆市', '潜山县', '340824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1890, '安徽省', '安庆市', '太湖县', '340825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1891, '安徽省', '安庆市', '宿松县', '340826'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1892, '安徽省', '安庆市', '望江县', '340827'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1893, '安徽省', '安庆市', '岳西县', '340828'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1894, '安徽省', '安庆市', '桐城市', '340881'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1895, '安徽省', '黄山市', '市辖区', '341001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1896, '安徽省', '黄山市', '屯溪区', '341002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1897, '安徽省', '黄山市', '黄山区', '341003'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1898, '安徽省', '黄山市', '徽州区', '341004'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1899, '安徽省', '黄山市', '歙县', '341021'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1900, '安徽省', '黄山市', '休宁县', '341022'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1901, '安徽省', '黄山市', '黟县', '341023'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1902, '安徽省', '黄山市', '祁门县', '341024'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1903, '安徽省', '滁州市', '市辖区', '341101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1904, '安徽省', '滁州市', '琅琊区', '341102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1905, '安徽省', '滁州市', '南谯区', '341103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1906, '安徽省', '滁州市', '天长县', '341121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1907, '安徽省', '滁州市', '来安县', '341122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1908, '安徽省', '滁州市', '全椒县', '341124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1909, '安徽省', '滁州市', '定远县', '341125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1910, '安徽省', '滁州市', '凤阳县', '341126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1911, '安徽省', '滁州市', '嘉山县', '341127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1912, '安徽省', '滁州市', '天长市', '341181'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1913, '安徽省', '滁州市', '明光市', '341182'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1914, '福建省', '宁德市', '市辖区', '350901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1915, '福建省', '宁德市', '蕉城区', '350902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1916, '福建省', '宁德市', '霞浦县', '350921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1917, '福建省', '宁德市', '古田县', '350922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1918, '福建省', '宁德市', '屏南县', '350923'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1919, '福建省', '宁德市', '寿宁县', '350924'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1920, '福建省', '宁德市', '周宁县', '350925'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1921, '福建省', '宁德市', '柘荣县', '350926'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1922, '福建省', '宁德市', '福安市', '350981'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1923, '福建省', '宁德市', '福鼎市', '350982'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1924, '福建省', '南平地区', '南平市', '352101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1925, '福建省', '南平地区', '邵武市', '352102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1926, '福建省', '南平地区', '武夷山市', '352103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1927, '福建省', '南平地区', '建瓯市', '352104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1928, '福建省', '南平地区', '顺昌县', '352121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1929, '福建省', '南平地区', '建阳县', '352122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1930, '福建省', '南平地区', '建瓯县', '352123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1931, '福建省', '南平地区', '浦城县', '352124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1932, '福建省', '南平地区', '邵武县', '352125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1933, '福建省', '南平地区', '崇安县', '352126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1934, '福建省', '南平地区', '光泽县', '352127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1935, '福建省', '南平地区', '松溪县', '352128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1936, '福建省', '南平地区', '政和县', '352129'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1937, '福建省', '宁德地区', '宁德市', '352201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1938, '福建省', '宁德地区', '福安市', '352202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1939, '福建省', '宁德地区', '福鼎市', '352203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1940, '福建省', '宁德地区', '宁德县', '352221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1941, '福建省', '宁德地区', '连江县', '352222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1942, '福建省', '宁德地区', '罗源县', '352223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1943, '福建省', '宁德地区', '福鼎县', '352224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1944, '福建省', '宁德地区', '霞浦县', '352225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1945, '福建省', '宁德地区', '福安县', '352226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1946, '福建省', '宁德地区', '古田县', '352227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1947, '福建省', '宁德地区', '屏南县', '352228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1948, '福建省', '宁德地区', '寿宁县', '352229'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1949, '福建省', '宁德地区', '周宁县', '352230'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1950, '福建省', '宁德地区', '柘荣县', '352231'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1951, '福建省', '龙岩地区', '龙岩市', '352601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1952, '福建省', '龙岩地区', '漳平市', '352602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1953, '福建省', '龙岩地区', '长汀县', '352622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1954, '福建省', '龙岩地区', '永定县', '352623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1955, '福建省', '龙岩地区', '上杭县', '352624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1956, '福建省', '龙岩地区', '武平县', '352625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1957, '福建省', '龙岩地区', '漳平县', '352626'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1958, '福建省', '龙岩地区', '连城县', '352627'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1959, '福建省', '三明市', '三明市', '352701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1960, '福建省', '三明市', '明溪县', '352721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1961, '福建省', '三明市', '永安县', '352722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1962, '福建省', '三明市', '清流县', '352723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1963, '福建省', '三明市', '宁化县', '352724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1964, '福建省', '三明市', '大田县', '352725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1965, '福建省', '三明市', '尤溪县', '352726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1966, '福建省', '三明市', '沙县', '352727'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1967, '福建省', '三明市', '将乐县', '352728'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1968, '福建省', '三明市', '泰宁县', '352729'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1969, '福建省', '三明市', '建宁县', '352730'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1970, '福建省', '福州市', '市辖区', '350101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1971, '福建省', '福州市', '鼓楼区', '350102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1972, '福建省', '福州市', '台江区', '350103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1973, '福建省', '福州市', '仓山区', '350104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1974, '福建省', '福州市', '马尾区', '350105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1975, '福建省', '福州市', '晋安区', '350111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1976, '福建省', '福州市', '市区', '350120'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1977, '福建省', '福州市', '闽侯县', '350121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1978, '福建省', '福州市', '连江县', '350122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1979, '福建省', '福州市', '罗源县', '350123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1980, '福建省', '福州市', '闽清县', '350124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1981, '福建省', '福州市', '永泰县', '350125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1982, '福建省', '福州市', '长乐县', '350126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1983, '福建省', '福州市', '福清县', '350127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1984, '福建省', '福州市', '平潭县', '350128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1985, '福建省', '福州市', '福清市', '350181'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1986, '福建省', '福州市', '长乐市', '350182'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1987, '福建省', '厦门市', '市辖区', '350201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1988, '福建省', '厦门市', '鼓浪屿区', '350202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1989, '福建省', '厦门市', '思明区', '350203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1990, '福建省', '厦门市', '开元区', '350204'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1991, '福建省', '厦门市', '海沧区', '350205'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1992, '福建省', '厦门市', '湖里区', '350206'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1993, '福建省', '厦门市', '集美区', '350211'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1994, '福建省', '厦门市', '同安区', '350212'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1995, '福建省', '厦门市', '翔安区', '350213'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1996, '福建省', '莆田市', '市辖区', '350301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1997, '福建省', '莆田市', '城厢区', '350302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1998, '福建省', '莆田市', '涵江区', '350303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (1999, '福建省', '莆田市', '荔城区', '350304'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2000, '福建省', '莆田市', '秀屿区', '350305'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2001, '福建省', '莆田市', '莆田县', '350321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2002, '福建省', '莆田市', '仙游县', '350322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2003, '福建省', '三明市', '市辖区', '350401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2004, '福建省', '三明市', '梅列区', '350402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2005, '福建省', '三明市', '三元区', '350403'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2006, '福建省', '三明市', '永安市', '350404'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2007, '福建省', '三明市', '永安市', '350420'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2008, '福建省', '三明市', '明溪县', '350421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2009, '福建省', '三明市', '永安县', '350422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2010, '福建省', '三明市', '清流县', '350423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2011, '福建省', '三明市', '宁化县', '350424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2012, '福建省', '三明市', '大田县', '350425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2013, '福建省', '三明市', '尤溪县', '350426'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2014, '福建省', '三明市', '沙县', '350427'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2015, '福建省', '三明市', '将乐县', '350428'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2016, '福建省', '三明市', '泰宁县', '350429'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2017, '福建省', '三明市', '建宁县', '350430'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2018, '福建省', '三明市', '永安市', '350481'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2019, '福建省', '泉州市', '市辖区', '350501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2020, '福建省', '泉州市', '鲤城区', '350502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2021, '福建省', '泉州市', '丰泽区', '350503'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2022, '福建省', '泉州市', '洛江区', '350504'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2023, '福建省', '泉州市', '泉港区', '350505'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2024, '福建省', '泉州市', '惠安县', '350521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2025, '福建省', '泉州市', '晋江县', '350522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2026, '福建省', '泉州市', '南安县', '350523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2027, '福建省', '泉州市', '安溪县', '350524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2028, '福建省', '泉州市', '永春县', '350525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2029, '福建省', '泉州市', '德化县', '350526'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2030, '福建省', '泉州市', '金门县', '350527'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2031, '福建省', '泉州市', '石狮市', '350581'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2032, '福建省', '泉州市', '晋江市', '350582'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2033, '福建省', '泉州市', '南安市', '350583'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2034, '福建省', '漳州市', '市辖区', '350601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2035, '福建省', '漳州市', '芗城区', '350602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2036, '福建省', '漳州市', '龙文区', '350603'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2037, '福建省', '漳州市', '龙海县', '350621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2038, '福建省', '漳州市', '云霄县', '350622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2039, '福建省', '漳州市', '漳浦县', '350623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2040, '福建省', '漳州市', '诏安县', '350624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2041, '福建省', '漳州市', '长泰县', '350625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2042, '福建省', '漳州市', '东山县', '350626'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2043, '福建省', '漳州市', '南靖县', '350627'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2044, '福建省', '漳州市', '平和县', '350628'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2045, '福建省', '漳州市', '华安县', '350629'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2046, '福建省', '漳州市', '龙海市', '350681'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2047, '福建省', '南平市', '市辖区', '350701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2048, '福建省', '南平市', '延平区', '350702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2049, '福建省', '南平市', '顺昌县', '350721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2050, '福建省', '南平市', '浦城县', '350722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2051, '福建省', '南平市', '光泽县', '350723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2052, '福建省', '南平市', '松溪县', '350724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2053, '福建省', '南平市', '政和县', '350725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2054, '福建省', '南平市', '邵武市', '350781'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2055, '福建省', '南平市', '武夷山市', '350782'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2056, '福建省', '南平市', '建瓯市', '350783'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2057, '福建省', '南平市', '建阳市', '350784'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2058, '福建省', '龙岩市', '市辖区', '350801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2059, '福建省', '龙岩市', '新罗区', '350802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2060, '福建省', '龙岩市', '长汀县', '350821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2061, '福建省', '龙岩市', '永定县', '350822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2062, '福建省', '龙岩市', '上杭县', '350823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2063, '福建省', '龙岩市', '武平县', '350824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2064, '福建省', '龙岩市', '连城县', '350825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2065, '福建省', '龙岩市', '漳平市', '350881'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2066, '福建省', NULL, '永安市', '359001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2067, '福建省', NULL, '石狮市', '359002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2068, '江西省', '南昌市', '市辖区', '360101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2069, '江西省', '南昌市', '东湖区', '360102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2070, '江西省', '南昌市', '西湖区', '360103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2071, '江西省', '南昌市', '青云谱区', '360104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2072, '江西省', '南昌市', '湾里区', '360105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2073, '江西省', '南昌市', '郊区', '360111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2074, '江西省', '南昌市', '南昌县', '360121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2075, '江西省', '南昌市', '新建县', '360122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2076, '江西省', '南昌市', '安义县', '360123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2077, '江西省', '南昌市', '进贤县', '360124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2078, '江西省', '景德镇市', '市辖区', '360201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2079, '江西省', '景德镇市', '昌江区', '360202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2080, '江西省', '景德镇市', '珠山区', '360203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2081, '江西省', '景德镇市', '鹅湖区', '360211'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2082, '江西省', '景德镇市', '蛟潭区', '360212'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2083, '江西省', '景德镇市', '乐平县', '360221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2084, '江西省', '景德镇市', '浮梁县', '360222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2085, '江西省', '景德镇市', '乐平市', '360281'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2086, '江西省', '上饶市', '鄱阳县', '361128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2087, '江西省', '上饶市', '万年县', '361129'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2088, '江西省', '上饶市', '婺源县', '361130'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2089, '江西省', '上饶市', '德兴市', '361181'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2090, '江西省', '上饶市', '市辖区', '361101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2091, '江西省', '上饶市', '信州区', '361102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2092, '江西省', '上饶市', '上饶县', '361121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2093, '江西省', '上饶市', '广丰县', '361122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2094, '江西省', '上饶市', '玉山县', '361123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2095, '江西省', '上饶市', '铅山县', '361124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2096, '江西省', '上饶市', '横峰县', '361125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2097, '江西省', '上饶市', '弋阳县', '361126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2098, '江西省', '上饶市', '余干县', '361127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2099, '江西省', '赣州地区', '赣州市', '362101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2100, '江西省', '赣州地区', '瑞金市', '362102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2101, '江西省', '赣州地区', '南康市', '362103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2102, '江西省', '赣州地区', '赣县', '362121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2103, '江西省', '赣州地区', '南康市', '362122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2104, '江西省', '赣州地区', '信丰县', '362123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2105, '江西省', '赣州地区', '大余县', '362124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2106, '江西省', '赣州地区', '上犹县', '362125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2107, '江西省', '赣州地区', '崇义县', '362126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2108, '江西省', '赣州地区', '安远县', '362127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2109, '江西省', '赣州地区', '龙南县', '362128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2110, '江西省', '赣州地区', '定南县', '362129'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2111, '江西省', '赣州地区', '全南县', '362130'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2112, '江西省', '赣州地区', '宁都县', '362131'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2113, '江西省', '赣州地区', '于都县', '362132'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2114, '江西省', '赣州地区', '兴国县', '362133'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2115, '江西省', '赣州地区', '瑞金市', '362134'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2116, '江西省', '赣州地区', '会昌县', '362135'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2117, '江西省', '赣州地区', '寻乌县', '362136'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2118, '江西省', '赣州地区', '石城县', '362137'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2119, '江西省', '赣州地区', '广昌县', '362138'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2120, '江西省', '宜春地区', '宜春市', '362201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2121, '江西省', '宜春地区', '丰城市', '362202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2122, '江西省', '宜春地区', '樟树市', '362203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2123, '江西省', '宜春地区', '高安市', '362204'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2124, '江西省', '宜春地区', '丰城县', '362221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2125, '江西省', '宜春地区', '高安县', '362222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2126, '江西省', '宜春地区', '清江县', '362223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2127, '江西省', '宜春地区', '新余县', '362224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2128, '江西省', '宜春地区', '宜春县', '362225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2129, '江西省', '宜春地区', '奉新县', '362226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2130, '江西省', '宜春地区', '万载县', '362227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2131, '江西省', '宜春地区', '上高县', '362228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2132, '江西省', '宜春地区', '宜丰县', '362229'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2133, '江西省', '宜春地区', '分宜县', '362230'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2134, '江西省', '宜春地区', '安义县', '362231'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2135, '江西省', '宜春地区', '靖安县', '362232'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2136, '江西省', '宜春地区', '铜鼓县', '362233'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2137, '江西省', '上饶地区', '上饶市', '362301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2138, '江西省', '上饶地区', '德兴市', '362302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2139, '江西省', '上饶地区', '上饶县', '362321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2140, '江西省', '上饶地区', '广丰县', '362322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2141, '江西省', '上饶地区', '玉山县', '362323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2142, '江西省', '上饶地区', '铅山县', '362324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2143, '江西省', '上饶地区', '横峰县', '362325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2144, '江西省', '上饶地区', '弋阳县', '362326'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2145, '江西省', '上饶地区', '贵溪县', '362327'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2146, '江西省', '上饶地区', '余江县', '362328'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2147, '江西省', '上饶地区', '余干县', '362329'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2148, '江西省', '上饶地区', '波阳县', '362330'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2149, '江西省', '上饶地区', '万年县', '362331'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2150, '江西省', '上饶地区', '乐平县', '362332'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2151, '江西省', '上饶地区', '德兴县', '362333'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2152, '江西省', '上饶地区', '婺源县', '362334'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2153, '江西省', '萍乡市', '市辖区', '360301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2154, '江西省', '萍乡市', '安源区', '360302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2155, '江西省', '萍乡市', '上栗区', '360311'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2156, '江西省', '萍乡市', '芦溪区', '360312'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2157, '江西省', '萍乡市', '湘东区', '360313'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2158, '江西省', '萍乡市', '莲花县', '360321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2159, '江西省', '萍乡市', '上栗县', '360322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2160, '江西省', '萍乡市', '芦溪县', '360323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2161, '江西省', '九江市', '市辖区', '360401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2162, '江西省', '九江市', '庐山区', '360402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2163, '江西省', '九江市', '浔阳区', '360403'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2164, '江西省', '九江市', '九江县', '360421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2165, '江西省', '九江市', '瑞昌县', '360422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2166, '江西省', '九江市', '武宁县', '360423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2167, '江西省', '九江市', '修水县', '360424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2168, '江西省', '九江市', '永修县', '360425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2169, '江西省', '九江市', '德安县', '360426'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2170, '江西省', '九江市', '星子县', '360427'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2171, '江西省', '九江市', '都昌县', '360428'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2172, '江西省', '九江市', '湖口县', '360429'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2173, '江西省', '九江市', '彭泽县', '360430'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2174, '江西省', '九江市', '瑞昌市', '360481'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2175, '江西省', '新余市', '市辖区', '360501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2176, '江西省', '新余市', '渝水区', '360502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2177, '江西省', '新余市', '分宜县', '360521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2178, '江西省', '鹰潭市', '市辖区', '360601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2179, '江西省', '鹰潭市', '月湖区', '360602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2180, '江西省', '鹰潭市', '贵溪县', '360621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2181, '江西省', '鹰潭市', '余江县', '360622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2182, '江西省', '鹰潭市', '贵溪市', '360681'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2183, '江西省', '赣州市', '市辖区', '360701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2184, '江西省', '赣州市', '章贡区', '360702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2185, '江西省', '赣州市', '赣县', '360721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2186, '江西省', '赣州市', '信丰县', '360722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2187, '江西省', '赣州市', '大余县', '360723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2188, '江西省', '赣州市', '上犹县', '360724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2189, '江西省', '赣州市', '崇义县', '360725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2190, '江西省', '赣州市', '安远县', '360726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2191, '江西省', '赣州市', '龙南县', '360727'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2192, '江西省', '赣州市', '定南县', '360728'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2193, '江西省', '赣州市', '全南县', '360729'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2194, '江西省', '赣州市', '宁都县', '360730'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2195, '江西省', '赣州市', '于都县', '360731'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2196, '江西省', '赣州市', '兴国县', '360732'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2197, '江西省', '赣州市', '会昌县', '360733'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2198, '江西省', '赣州市', '寻乌县', '360734'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2199, '江西省', '赣州市', '石城县', '360735'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2200, '江西省', '赣州市', '瑞金市', '360781'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2201, '江西省', '赣州市', '南康市', '360782'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2202, '江西省', '吉安市', '市辖区', '360801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2203, '江西省', '吉安市', '吉州区', '360802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2204, '江西省', '吉安市', '青原区', '360803'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2205, '江西省', '吉安市', '吉安县', '360821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2206, '江西省', '吉安市', '吉水县', '360822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2207, '江西省', '吉安市', '峡江县', '360823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2208, '江西省', '吉安市', '新干县', '360824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2209, '江西省', '吉安市', '永丰县', '360825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2210, '江西省', '吉安市', '泰和县', '360826'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2211, '江西省', '吉安市', '遂川县', '360827'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2212, '江西省', '吉安市', '万安县', '360828'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2213, '江西省', '吉安市', '安福县', '360829'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2214, '江西省', '吉安市', '永新县', '360830'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2215, '江西省', '吉安市', '井冈山市', '360881'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2216, '江西省', '宜春市', '市辖区', '360901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2217, '江西省', '宜春市', '袁州区', '360902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2218, '江西省', '宜春市', '奉新县', '360921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2219, '江西省', '宜春市', '万载县', '360922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2220, '江西省', '宜春市', '上高县', '360923'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2221, '江西省', '宜春市', '宜丰县', '360924'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2222, '江西省', '宜春市', '靖安县', '360925'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2223, '江西省', '宜春市', '铜鼓县', '360926'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2224, '江西省', '宜春市', '丰城市', '360981'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2225, '江西省', '宜春市', '樟树市', '360982'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2226, '江西省', '宜春市', '高安市', '360983'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2227, '江西省', '抚州市', '市辖区', '361001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2228, '江西省', '抚州市', '临川区', '361002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2229, '江西省', '抚州市', '南城县', '361021'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2230, '江西省', '抚州市', '黎川县', '361022'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2231, '江西省', '抚州市', '南丰县', '361023'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2232, '江西省', '抚州市', '崇仁县', '361024'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2233, '江西省', '抚州市', '乐安县', '361025'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2234, '江西省', '抚州市', '宜黄县', '361026'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2235, '江西省', '抚州市', '金溪县', '361027'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2236, '江西省', '抚州市', '资溪县', '361028'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2237, '江西省', '抚州市', '东乡县', '361029'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2238, '江西省', '抚州市', '广昌县', '361030'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2239, '江西省', '吉安地区', '吉安市', '362401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2240, '江西省', '吉安地区', '井冈山市', '362402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2241, '江西省', '吉安地区', '吉安县', '362421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2242, '江西省', '吉安地区', '吉水县', '362422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2243, '江西省', '吉安地区', '峡江县', '362423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2244, '江西省', '吉安地区', '新干县', '362424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2245, '江西省', '吉安地区', '永丰县', '362425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2246, '江西省', '吉安地区', '泰和县', '362426'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2247, '江西省', '吉安地区', '遂川县', '362427'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2248, '江西省', '吉安地区', '万安县', '362428'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2249, '江西省', '吉安地区', '安福县', '362429'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2250, '江西省', '吉安地区', '永新县', '362430'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2251, '江西省', '吉安地区', '莲花县', '362431'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2252, '江西省', '吉安地区', '宁冈县', '362432'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2253, '江西省', '吉安地区', '井岗山县', '362433'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2254, '江西省', '抚州地区', '临川市', '362501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2255, '江西省', '抚州地区', '临川市', '362502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2256, '江西省', '抚州地区', '临川县', '362521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2257, '江西省', '抚州地区', '南城县', '362522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2258, '江西省', '抚州地区', '黎川县', '362523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2259, '江西省', '抚州地区', '南丰县', '362524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2260, '江西省', '抚州地区', '崇仁县', '362525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2261, '江西省', '抚州地区', '乐安县', '362526'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2262, '江西省', '抚州地区', '宜黄县', '362527'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2263, '江西省', '抚州地区', '金溪县', '362528'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2264, '江西省', '抚州地区', '资溪县', '362529'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2265, '江西省', '抚州地区', '进贤县', '362530'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2266, '江西省', '抚州地区', '东乡县', '362531'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2267, '江西省', '抚州地区', '广昌县', '362532'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2268, '江西省', '九江地区', '九江县', '362621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2269, '江西省', '九江地区', '瑞昌县', '362622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2270, '江西省', '九江地区', '武宁县', '362623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2271, '江西省', '九江地区', '修水县', '362624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2272, '江西省', '九江地区', '永修县', '362625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2273, '江西省', '九江地区', '德安县', '362626'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2274, '江西省', '九江地区', '星子县', '362627'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2275, '江西省', '九江地区', '都昌县', '362628'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2276, '江西省', '九江地区', '湖口县', '362629'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2277, '江西省', '九江地区', '彭泽县', '362630'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2278, '山东省', '青岛市', '崂山区', '370212'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2279, '山东省', '青岛市', '李沧区', '370213'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2280, '山东省', '青岛市', '城阳区', '370214'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2281, '山东省', '青岛市', '市区', '370220'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2282, '山东省', '青岛市', '崂山县', '370221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2283, '山东省', '青岛市', '即墨县', '370222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2284, '山东省', '青岛市', '胶南县', '370223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2285, '山东省', '青岛市', '胶县', '370224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2286, '山东省', '青岛市', '莱西县', '370225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2287, '山东省', '青岛市', '平度县', '370226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2288, '山东省', '青岛市', '胶州市', '370281'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2289, '山东省', '青岛市', '即墨市', '370282'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2290, '山东省', '青岛市', '平度市', '370283'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2291, '山东省', '青岛市', '胶南市', '370284'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2292, '山东省', '青岛市', '莱西市', '370285'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2293, '山东省', '青岛市', '市辖区', '370201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2294, '山东省', '青岛市', '市南区', '370202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2295, '山东省', '青岛市', '市北区', '370203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2296, '山东省', '青岛市', '台东区', '370204'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2297, '山东省', '青岛市', '四方区', '370205'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2298, '山东省', '青岛市', '沧口区', '370206'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2299, '山东省', '青岛市', '黄岛区', '370211'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2300, '山东省', '淄博市', '市辖区', '370301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2301, '山东省', '淄博市', '淄川区', '370302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2302, '山东省', '淄博市', '张店区', '370303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2303, '山东省', '淄博市', '博山区', '370304'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2304, '山东省', '淄博市', '临淄区', '370305'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2305, '山东省', '淄博市', '周村区', '370306'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2306, '山东省', '淄博市', '桓台县', '370321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2307, '山东省', '淄博市', '高青县', '370322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2308, '山东省', '淄博市', '沂源县', '370323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2309, '山东省', '枣庄市', '市辖区', '370401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2310, '山东省', '枣庄市', '市中区', '370402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2311, '山东省', '枣庄市', '薛城区', '370403'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2312, '山东省', '枣庄市', '峄城区', '370404'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2313, '山东省', '枣庄市', '台儿庄区', '370405'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2314, '山东省', '枣庄市', '山亭区', '370406'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2315, '山东省', '枣庄市', '市区', '370420'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2316, '山东省', '枣庄市', '滕县', '370421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2317, '山东省', '枣庄市', '滕州市', '370481'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2318, '山东省', '东营市', '市辖区', '370501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2319, '山东省', '东营市', '东营区', '370502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2320, '山东省', '东营市', '河口区', '370503'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2321, '山东省', '东营市', '垦利县', '370521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2322, '山东省', '东营市', '利津县', '370522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2323, '山东省', '东营市', '广饶县', '370523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2324, '山东省', '烟台市', '市辖区', '370601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2325, '山东省', '烟台市', '芝罘区', '370602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2326, '山东省', '烟台市', '福山区', '370611'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2327, '山东省', '烟台市', '牟平区', '370612'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2328, '山东省', '烟台市', '莱山区', '370613'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2329, '山东省', '烟台市', '龙口市', '370619'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2330, '山东省', '烟台市', '威海市', '370620'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2331, '山东省', '烟台市', '蓬莱县', '370622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2332, '山东省', '烟台市', '黄县', '370623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2333, '山东省', '烟台市', '招远县', '370624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2334, '山东省', '烟台市', '掖县', '370625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2335, '山东省', '烟台市', '莱阳县', '370627'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2336, '山东省', '烟台市', '栖霞县', '370628'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2337, '山东省', '烟台市', '海阳县', '370629'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2338, '山东省', '烟台市', '牟平县', '370631'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2339, '山东省', '烟台市', '文登县', '370632'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2340, '山东省', '烟台市', '荣城县', '370633'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2341, '山东省', '烟台市', '长岛县', '370634'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2342, '山东省', '烟台市', '龙口市', '370681'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2343, '山东省', '烟台市', '莱阳市', '370682'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2344, '山东省', '烟台市', '莱州市', '370683'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2345, '山东省', '烟台市', '蓬莱市', '370684'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2346, '山东省', '烟台市', '招远市', '370685'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2347, '山东省', '烟台市', '栖霞市', '370686'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2348, '山东省', '烟台市', '海阳市', '370687'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2349, '山东省', '潍坊市', '市辖区', '370701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2350, '山东省', '潍坊市', '潍城区', '370702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2351, '山东省', '潍坊市', '寒亭区', '370703'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2352, '山东省', '潍坊市', '坊子区', '370704'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2353, '山东省', '潍坊市', '奎文区', '370705'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2354, '山东省', '潍坊市', '青州市', '370719'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2355, '山东省', '潍坊市', '益都县', '370721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2356, '山东省', '潍坊市', '安丘县', '370722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2357, '山东省', '潍坊市', '寿光县', '370723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2358, '山东省', '潍坊市', '临朐县', '370724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2359, '山东省', '潍坊市', '昌乐县', '370725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2360, '山东省', '潍坊市', '昌邑县', '370726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2361, '山东省', '潍坊市', '高密县', '370727'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2362, '山东省', '潍坊市', '诸城县', '370728'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2363, '山东省', '潍坊市', '五莲县', '370729'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2364, '山东省', '潍坊市', '青州市', '370781'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2365, '山东省', '潍坊市', '诸城市', '370782'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2366, '山东省', '潍坊市', '寿光市', '370783'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2367, '山东省', '潍坊市', '安丘市', '370784'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2368, '山东省', '潍坊市', '高密市', '370785'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2369, '山东省', '潍坊市', '昌邑市', '370786'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2370, '山东省', '济宁市', '市辖区', '370801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2371, '山东省', '济宁市', '市中区', '370802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2372, '山东省', '济宁市', '任城区', '370811'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2373, '山东省', '济宁市', '曲阜市', '370819'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2374, '山东省', '济宁市', '兖州县', '370822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2375, '山东省', '济宁市', '曲阜县', '370823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2376, '山东省', '济宁市', '邹县', '370825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2377, '山东省', '济宁市', '微山县', '370826'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2378, '山东省', '济宁市', '鱼台县', '370827'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2379, '山东省', '济宁市', '金乡县', '370828'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2380, '山东省', '济宁市', '嘉祥县', '370829'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2381, '山东省', '济宁市', '汶上县', '370830'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2382, '山东省', '济宁市', '泗水县', '370831'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2383, '山东省', '济宁市', '梁山县', '370832'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2384, '山东省', '济宁市', '曲阜市', '370881'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2385, '山东省', '济宁市', '兖州市', '370882'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2386, '山东省', '济宁市', '邹城市', '370883'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2387, '山东省', '泰安市', '市辖区', '370901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2388, '山东省', '泰安市', '泰山区', '370902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2389, '山东省', '泰安市', '岱岳区', '370903'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2390, '山东省', '泰安市', '郊区', '370911'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2391, '山东省', '泰安市', '莱芜市', '370919'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2392, '山东省', '泰安市', '新泰市', '370920'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2393, '山东省', '泰安市', '宁阳县', '370921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2394, '山东省', '泰安市', '肥城县', '370922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2395, '山东省', '泰安市', '东平县', '370923'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2396, '山东省', '泰安市', '莱芜市', '370981'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2397, '山东省', '泰安市', '新泰市', '370982'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2398, '山东省', '泰安市', '肥城市', '370983'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2399, '山东省', '威海市', '市辖区', '371001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2400, '山东省', '威海市', '环翠区', '371002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2401, '山东省', '威海市', '乳山县', '371021'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2402, '山东省', '威海市', '文登市', '371081'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2403, '山东省', '威海市', '荣成市', '371082'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2404, '山东省', '威海市', '乳山市', '371083'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2405, '山东省', '日照市', '市辖区', '371101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2406, '山东省', '日照市', '东港区', '371102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2407, '山东省', '日照市', '岚山区', '371103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2408, '山东省', '日照市', '五莲县', '371121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2409, '山东省', '日照市', '莒县', '371122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2410, '山东省', '莱芜市', '市辖区', '371201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2411, '山东省', '莱芜市', '莱城区', '371202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2412, '山东省', '莱芜市', '钢城区', '371203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2413, '山东省', '临沂市', '市辖区', '371301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2414, '山东省', '临沂市', '兰山区', '371302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2415, '山东省', '临沂市', '罗庄区', '371311'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2416, '山东省', '临沂市', '河东区', '371312'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2417, '山东省', '临沂市', '沂南县', '371321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2418, '山东省', '临沂市', '郯城县', '371322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2419, '山东省', '临沂市', '沂水县', '371323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2420, '山东省', '临沂市', '苍山县', '371324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2421, '山东省', '临沂市', '费县', '371325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2422, '山东省', '临沂市', '平邑县', '371326'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2423, '山东省', '临沂市', '莒南县', '371327'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2424, '山东省', '临沂市', '蒙阴县', '371328'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2425, '山东省', '临沂市', '临沭县', '371329'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2426, '山东省', '德州市', '市辖区', '371401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2427, '山东省', '德州市', '德城区', '371402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2428, '山东省', '德州市', '陵县', '371421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2429, '山东省', '德州市', '宁津县', '371422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2430, '山东省', '德州市', '庆云县', '371423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2431, '山东省', '德州市', '临邑县', '371424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2432, '山东省', '德州市', '齐河县', '371425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2433, '山东省', '德州市', '平原县', '371426'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2434, '山东省', '德州市', '夏津县', '371427'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2435, '山东省', '德州市', '武城县', '371428'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2436, '山东省', '德州市', '乐陵市', '371481'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2437, '山东省', '德州市', '禹城市', '371482'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2438, '山东省', '聊城市', '市辖区', '371501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2439, '山东省', '聊城市', '东昌府区', '371502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2440, '山东省', '聊城市', '阳谷县', '371521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2441, '山东省', '聊城市', '莘县', '371522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2442, '山东省', '聊城市', '茌平县', '371523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2443, '山东省', '聊城市', '东阿县', '371524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2444, '山东省', '聊城市', '冠县', '371525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2445, '山东省', '聊城市', '高唐县', '371526'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2446, '山东省', '聊城市', '临清市', '371581'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2447, '山东省', '滨州市', '市辖区', '371601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2448, '山东省', '滨州市', '滨城区', '371602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2449, '山东省', '滨州市', '惠民县', '371621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2450, '山东省', '滨州市', '阳信县', '371622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2451, '山东省', '滨州市', '无棣县', '371623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2452, '山东省', '滨州市', '沾化县', '371624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2453, '山东省', '滨州市', '博兴县', '371625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2454, '山东省', '滨州市', '邹平县', '371626'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2455, '山东省', '济南市', '市辖区', '370101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2456, '山东省', '济南市', '历下区', '370102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2457, '山东省', '济南市', '市中区', '370103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2458, '山东省', '济南市', '槐荫区', '370104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2459, '山东省', '济南市', '天桥区', '370105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2460, '山东省', '济南市', '郊区', '370111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2461, '山东省', '济南市', '历城区', '370112'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2462, '山东省', '济南市', '长清区', '370113'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2463, '山东省', '济南市', '市区', '370120'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2464, '山东省', '济南市', '历城县', '370121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2465, '山东省', '济南市', '章丘县', '370122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2466, '山东省', '济南市', '长清县', '370123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2467, '山东省', '济南市', '平阴县', '370124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2468, '山东省', '济南市', '济阳县', '370125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2469, '山东省', '济南市', '商河县', '370126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2470, '山东省', '济南市', '章丘市', '370181'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2471, '山东省', '菏泽市', '市辖区', '371701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2472, '山东省', '菏泽市', '牡丹区', '371702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2473, '山东省', '菏泽市', '曹县', '371721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2474, '山东省', '菏泽市', '单县', '371722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2475, '山东省', '菏泽市', '成武县', '371723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2476, '山东省', '菏泽市', '巨野县', '371724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2477, '山东省', '菏泽市', '郓城县', '371725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2478, '山东省', '菏泽市', '鄄城县', '371726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2479, '山东省', '菏泽市', '定陶县', '371727'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2480, '山东省', '菏泽市', '东明县', '371728'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2481, '山东省', '烟台地区', '烟台市', '372101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2482, '山东省', '烟台地区', '威海市', '372102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2483, '山东省', '烟台地区', '福山县', '372121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2484, '山东省', '烟台地区', '蓬莱县', '372122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2485, '山东省', '烟台地区', '招远县', '372124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2486, '山东省', '烟台地区', '掖县', '372125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2487, '山东省', '烟台地区', '莱西县', '372126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2488, '山东省', '烟台地区', '莱阳县', '372127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2489, '山东省', '烟台地区', '栖霞县', '372128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2490, '山东省', '烟台地区', '海阳县', '372129'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2491, '山东省', '烟台地区', '乳山县', '372130'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2492, '山东省', '烟台地区', '牟平县', '372131'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2493, '山东省', '烟台地区', '文登县', '372132'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2494, '山东省', '烟台地区', '荣城县', '372133'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2495, '山东省', '烟台地区', '长岛县', '372134'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2496, '山东省', '潍坊地区', '潍坊市', '372201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2497, '山东省', '潍坊地区', '益都县', '372221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2498, '山东省', '潍坊地区', '安丘县', '372222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2499, '山东省', '潍坊地区', '寿光县', '372223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2500, '山东省', '潍坊地区', '临朐县', '372224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2501, '山东省', '潍坊地区', '昌乐县', '372225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2502, '山东省', '潍坊地区', '昌邑县', '372226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2503, '山东省', '潍坊地区', '高密县', '372227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2504, '山东省', '潍坊地区', '诸城县', '372228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2505, '山东省', '潍坊地区', '平度县', '372230'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2506, '山东省', '潍坊地区', '潍县', '372231'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2507, '山东省', '滨州地区', '滨州市', '372301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2508, '山东省', '滨州地区', '惠民县', '372321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2509, '山东省', '滨州地区', '滨县', '372322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2510, '山东省', '滨州地区', '阳信县', '372323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2511, '山东省', '滨州地区', '无棣县', '372324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2512, '山东省', '滨州地区', '沾化县', '372325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2513, '山东省', '滨州地区', '利津县', '372326'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2514, '山东省', '滨州地区', '广饶县', '372327'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2515, '山东省', '滨州地区', '博兴县', '372328'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2516, '山东省', '滨州地区', '桓台县', '372329'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2517, '山东省', '滨州地区', '邹平县', '372330'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2518, '山东省', '滨州地区', '高青县', '372331'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2519, '山东省', '滨州地区', '垦利县', '372332'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2520, '山东省', '德州地区', '德州市', '372401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2521, '山东省', '德州地区', '乐陵市', '372402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2522, '山东省', '德州地区', '禹城市', '372403'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2523, '山东省', '德州地区', '陵县', '372421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2524, '山东省', '德州地区', '平原县', '372422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2525, '山东省', '德州地区', '夏津县', '372423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2526, '山东省', '德州地区', '武城县', '372424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2527, '山东省', '德州地区', '齐河县', '372425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2528, '山东省', '德州地区', '禹城县', '372426'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2529, '山东省', '德州地区', '乐陵县', '372427'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2530, '山东省', '德州地区', '临邑县', '372428'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2531, '山东省', '德州地区', '商河县', '372429'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2532, '山东省', '德州地区', '济阳县', '372430'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2533, '山东省', '德州地区', '宁津县', '372431'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2534, '山东省', '德州地区', '庆云县', '372432'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2535, '山东省', '聊城市', '聊城市', '372501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2536, '山东省', '聊城市', '东昌府区', '372502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2537, '山东省', '聊城市', '阳谷县', '372521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2538, '山东省', '聊城市', '莘县', '372522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2539, '山东省', '聊城市', '茌平县', '372523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2540, '山东省', '聊城市', '东阿县', '372524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2541, '山东省', '聊城市', '冠县', '372525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2542, '山东省', '聊城市', '高唐县', '372526'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2543, '山东省', '聊城市', '高唐县', '372527'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2544, '山东省', '聊城市', '临清县', '372528'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2545, '山东省', '聊城市', '临清市', '372581'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2546, '山东省', '泰安地区', '泰安市', '372601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2547, '山东省', '泰安地区', '莱芜市', '372602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2548, '山东省', '泰安地区', '新泰市', '372603'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2549, '山东省', '泰安地区', '莱芜县', '372622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2550, '山东省', '泰安地区', '新泰县', '372623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2551, '山东省', '泰安地区', '宁阳县', '372624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2552, '山东省', '泰安地区', '肥城县', '372625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2553, '山东省', '泰安地区', '东平县', '372626'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2554, '山东省', '泰安地区', '平阴县', '372627'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2555, '山东省', '泰安地区', '新汶县', '372628'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2556, '山东省', '泰安地区', '泗水县', '372630'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2557, '山东省', '济宁地区', '济宁市', '372701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2558, '山东省', '济宁地区', '兖州县', '372722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2559, '山东省', '济宁地区', '曲阜县', '372723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2560, '山东省', '济宁地区', '泗水县', '372724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2561, '山东省', '济宁地区', '邹县', '372725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2562, '山东省', '济宁地区', '微山县', '372726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2563, '山东省', '济宁地区', '鱼台县', '372727'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2564, '山东省', '济宁地区', '金乡县', '372728'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2565, '山东省', '济宁地区', '嘉祥县', '372729'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2566, '山东省', '临沂地区', '临沂市', '372801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2567, '山东省', '临沂地区', '日照市', '372802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2568, '山东省', '临沂地区', '临沂县', '372821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2569, '山东省', '临沂地区', '郯城县', '372822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2570, '山东省', '临沂地区', '苍山县', '372823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2571, '山东省', '临沂地区', '莒南县', '372824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2572, '山东省', '临沂地区', '日照县', '372825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2573, '山东省', '临沂地区', '莒县', '372826'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2574, '山东省', '临沂地区', '沂水县', '372827'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2575, '山东省', '临沂地区', '沂源县', '372828'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2576, '山东省', '临沂地区', '蒙阴县', '372829'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2577, '山东省', '临沂地区', '平邑县', '372830'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2578, '山东省', '临沂地区', '费县', '372831'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2579, '山东省', '临沂地区', '沂南县', '372832'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2580, '山东省', '临沂地区', '临沭县', '372833'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2581, '山东省', '菏泽地区', '菏泽市', '372901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2582, '山东省', '菏泽地区', '菏泽县', '372921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2583, '山东省', '菏泽地区', '曹县', '372922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2584, '山东省', '菏泽地区', '定陶县', '372923'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2585, '山东省', '菏泽地区', '成武县', '372924'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2586, '山东省', '菏泽地区', '单县', '372925'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2587, '山东省', '菏泽地区', '巨野县', '372926'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2588, '山东省', '菏泽地区', '粱山县', '372927'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2589, '山东省', '菏泽地区', '郓城县', '372928'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2590, '山东省', '菏泽地区', '鄄城县', '372929'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2591, '山东省', '菏泽地区', '东明县', '372930'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2592, '山东省', NULL, '青州市', '379001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2593, '山东省', NULL, '龙口市', '379002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2594, '山东省', NULL, '曲阜市', '379003'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2595, '山东省', NULL, '莱芜市', '379004'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2596, '山东省', NULL, '新泰市', '379005'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2597, '山东省', NULL, '胶州市', '379006'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2598, '山东省', NULL, '诸城市', '379007'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2599, '山东省', NULL, '莱阳市', '379008'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2600, '山东省', NULL, '莱州市', '379009'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2601, '山东省', NULL, '滕州市', '379010'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2602, '山东省', NULL, '文登市', '379011'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2603, '山东省', NULL, '荣城市', '379012'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2604, '河南省', '鹤壁市', '鹤山区', '410602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2605, '河南省', '鹤壁市', '山城区', '410603'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2606, '河南省', '鹤壁市', '淇滨区', '410611'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2607, '河南省', '鹤壁市', '浚县', '410621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2608, '河南省', '鹤壁市', '淇县', '410622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2609, '河南省', '鹤壁市', '市辖区', '410601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2610, '河南省', '新乡市', '市辖区', '410701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2611, '河南省', '新乡市', '红旗区', '410702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2612, '河南省', '新乡市', '新华区', '410703'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2613, '河南省', '新乡市', '北站区', '410704'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2614, '河南省', '新乡市', '郊区', '410711'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2615, '河南省', '新乡市', '新乡县', '410721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2616, '河南省', '新乡市', '汲县', '410722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2617, '河南省', '新乡市', '辉县', '410723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2618, '河南省', '新乡市', '获嘉县', '410724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2619, '河南省', '新乡市', '原阳县', '410725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2620, '河南省', '新乡市', '延津县', '410726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2621, '河南省', '新乡市', '封丘县', '410727'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2622, '河南省', '新乡市', '长垣县', '410728'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2623, '河南省', '新乡市', '卫辉市', '410781'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2624, '河南省', '新乡市', '辉县市', '410782'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2625, '河南省', '焦作市', '市辖区', '410801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2626, '河南省', '焦作市', '解放区', '410802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2627, '河南省', '焦作市', '中站区', '410803'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2628, '河南省', '焦作市', '马村区', '410804'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2629, '河南省', '焦作市', '山阳区', '410811'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2630, '河南省', '焦作市', '修武县', '410821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2631, '河南省', '焦作市', '博爱县', '410822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2632, '河南省', '焦作市', '武陟县', '410823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2633, '河南省', '焦作市', '沁阳县', '410824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2634, '河南省', '焦作市', '温县', '410825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2635, '河南省', '焦作市', '孟县', '410826'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2636, '河南省', '焦作市', '济源县', '410827'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2637, '河南省', '焦作市', '济源市', '410881'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2638, '河南省', '焦作市', '沁阳市', '410882'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2639, '河南省', '焦作市', '孟州市', '410883'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2640, '河南省', '濮阳市', '市辖区', '410901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2641, '河南省', '濮阳市', '市区', '410902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2642, '河南省', '濮阳市', '滑县', '410921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2643, '河南省', '濮阳市', '清丰县', '410922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2644, '河南省', '濮阳市', '南乐县', '410923'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2645, '河南省', '濮阳市', '内黄县', '410924'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2646, '河南省', '濮阳市', '长垣县', '410925'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2647, '河南省', '濮阳市', '范县', '410926'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2648, '河南省', '濮阳市', '台前县', '410927'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2649, '河南省', '濮阳市', '濮阳县', '410928'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2650, '河南省', '许昌市', '市辖区', '411001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2651, '河南省', '许昌市', '魏都区', '411002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2652, '河南省', '许昌市', '禹县', '411021'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2653, '河南省', '许昌市', '长葛县', '411022'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2654, '河南省', '许昌市', '许昌县', '411023'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2655, '河南省', '许昌市', '鄢陵县', '411024'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2656, '河南省', '许昌市', '襄城县', '411025'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2657, '河南省', '许昌市', '禹州市', '411081'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2658, '河南省', '许昌市', '长葛市', '411082'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2659, '河南省', '漯河市', '市辖区', '411101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2660, '河南省', '漯河市', '源汇区', '411102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2661, '河南省', '漯河市', '郾城区', '411103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2662, '河南省', '漯河市', '召陵区', '411104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2663, '河南省', '漯河市', '舞阳县', '411121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2664, '河南省', '漯河市', '临颍县', '411122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2665, '河南省', '漯河市', '郾城县', '411123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2666, '河南省', '三门峡市', '市辖区', '411201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2667, '河南省', '三门峡市', '湖滨区', '411202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2668, '河南省', '三门峡市', '渑池县', '411221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2669, '河南省', '三门峡市', '陕县', '411222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2670, '河南省', '三门峡市', '灵宝县', '411223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2671, '河南省', '三门峡市', '卢氏县', '411224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2672, '河南省', '三门峡市', '义马市', '411281'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2673, '河南省', '三门峡市', '灵宝市', '411282'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2674, '河南省', '南阳市', '市辖区', '411301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2675, '河南省', '南阳市', '宛城区', '411302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2676, '河南省', '南阳市', '卧龙区', '411303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2677, '河南省', '南阳市', '南召县', '411321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2678, '河南省', '南阳市', '方城县', '411322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2679, '河南省', '南阳市', '西峡县', '411323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2680, '河南省', '南阳市', '镇平县', '411324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2681, '河南省', '南阳市', '内乡县', '411325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2682, '河南省', '南阳市', '淅川县', '411326'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2683, '河南省', '南阳市', '社旗县', '411327'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2684, '河南省', '南阳市', '唐河县', '411328'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2685, '河南省', '南阳市', '新野县', '411329'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2686, '河南省', '南阳市', '桐柏县', '411330'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2687, '河南省', '南阳市', '邓州市', '411381'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2688, '河南省', '郑州市', '市辖区', '410101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2689, '河南省', '郑州市', '中原区', '410102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2690, '河南省', '郑州市', '二七区', '410103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2691, '河南省', '郑州市', '管城回族区', '410104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2692, '河南省', '郑州市', '金水区', '410105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2693, '河南省', '郑州市', '上街区', '410106'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2694, '河南省', '郑州市', '新密区', '410107'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2695, '河南省', '郑州市', '邙山区', '410108'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2696, '河南省', '郑州市', '金海区', '410111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2697, '河南省', '郑州市', '郊区', '410112'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2698, '河南省', '郑州市', '市区', '410120'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2699, '河南省', '郑州市', '荥阳县', '410121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2700, '河南省', '郑州市', '中牟县', '410122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2701, '河南省', '郑州市', '新郑县', '410123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2702, '河南省', '郑州市', '巩县', '410124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2703, '河南省', '郑州市', '登封县', '410125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2704, '河南省', '郑州市', '密县', '410126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2705, '河南省', '郑州市', '巩义市', '410181'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2706, '河南省', '郑州市', '荥阳市', '410182'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2707, '河南省', '郑州市', '新密市', '410183'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2708, '河南省', '郑州市', '新郑市', '410184'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2709, '河南省', '郑州市', '登封市', '410185'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2710, '河南省', '开封市', '市辖区', '410201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2711, '河南省', '开封市', '龙亭区', '410202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2712, '河南省', '开封市', '顺河回族区', '410203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2713, '河南省', '开封市', '鼓楼区', '410204'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2714, '河南省', '开封市', '禹王台区', '410205'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2715, '河南省', '开封市', '金明区', '410211'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2716, '河南省', '开封市', '杞县', '410221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2717, '河南省', '开封市', '通许县', '410222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2718, '河南省', '开封市', '尉氏县', '410223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2719, '河南省', '开封市', '开封县', '410224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2720, '河南省', '开封市', '兰考县', '410225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2721, '河南省', '洛阳市', '市辖区', '410301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2722, '河南省', '洛阳市', '老城区', '410302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2723, '河南省', '洛阳市', '西工区', '410303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2724, '河南省', '洛阳市', '廛河回族区', '410304'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2725, '河南省', '洛阳市', '涧西区', '410305'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2726, '河南省', '洛阳市', '吉利区', '410306'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2727, '河南省', '洛阳市', '洛龙区', '410307'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2728, '河南省', '洛阳市', '郊区', '410311'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2729, '河南省', '洛阳市', '偃师县', '410321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2730, '河南省', '洛阳市', '孟津县', '410322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2731, '河南省', '洛阳市', '新安县', '410323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2732, '河南省', '洛阳市', '栾川县', '410324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2733, '河南省', '洛阳市', '嵩县', '410325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2734, '河南省', '洛阳市', '汝阳县', '410326'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2735, '河南省', '洛阳市', '宜阳县', '410327'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2736, '河南省', '洛阳市', '洛宁县', '410328'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2737, '河南省', '洛阳市', '伊川县', '410329'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2738, '河南省', '洛阳市', '偃师市', '410381'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2739, '河南省', '平顶山市', '市辖区', '410401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2740, '河南省', '平顶山市', '新华区', '410402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2741, '河南省', '平顶山市', '卫东区', '410403'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2742, '河南省', '平顶山市', '石龙区', '410404'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2743, '河南省', '平顶山市', '湛河区', '410411'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2744, '河南省', '平顶山市', '舞钢区', '410412'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2745, '河南省', '平顶山市', '宝丰县', '410421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2746, '河南省', '平顶山市', '叶县', '410422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2747, '河南省', '平顶山市', '鲁山县', '410423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2748, '河南省', '平顶山市', '临汝县', '410424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2749, '河南省', '平顶山市', '郏县', '410425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2750, '河南省', '平顶山市', '襄城县', '410426'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2751, '河南省', '平顶山市', '舞钢市', '410481'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2752, '河南省', '平顶山市', '汝州市', '410482'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2753, '河南省', '安阳市', '市辖区', '410501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2754, '河南省', '安阳市', '文峰区', '410502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2755, '河南省', '安阳市', '北关区', '410503'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2756, '河南省', '安阳市', '铁西区', '410504'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2757, '河南省', '安阳市', '殷都区', '410505'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2758, '河南省', '安阳市', '龙安区', '410506'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2759, '河南省', '安阳市', '郊区', '410511'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2760, '河南省', '安阳市', '林县', '410521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2761, '河南省', '安阳市', '安阳县', '410522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2762, '河南省', '安阳市', '汤阴县', '410523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2763, '河南省', '安阳市', '淇县', '410524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2764, '河南省', '安阳市', '浚县', '410525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2765, '河南省', '安阳市', '滑县', '410526'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2766, '河南省', '安阳市', '内黄县', '410527'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2767, '河南省', '安阳市', '林州市', '410581'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2768, '河南省', '商丘市', '市辖区', '411401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2769, '河南省', '商丘市', '梁园区', '411402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2770, '河南省', '商丘市', '睢阳区', '411403'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2771, '河南省', '商丘市', '民权县', '411421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2772, '河南省', '商丘市', '睢县', '411422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2773, '河南省', '商丘市', '宁陵县', '411423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2774, '河南省', '商丘市', '柘城县', '411424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2775, '河南省', '商丘市', '虞城县', '411425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2776, '河南省', '商丘市', '夏邑县', '411426'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2777, '河南省', '商丘市', '永城市', '411481'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2778, '河南省', '信阳市', '市辖区', '411501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2779, '河南省', '信阳市', '师河区', '411502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2780, '河南省', '信阳市', '平桥区', '411503'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2781, '河南省', '信阳市', '罗山县', '411521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2782, '河南省', '信阳市', '光山县', '411522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2783, '河南省', '信阳市', '新县', '411523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2784, '河南省', '信阳市', '商城县', '411524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2785, '河南省', '信阳市', '固始县', '411525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2786, '河南省', '信阳市', '潢川县', '411526'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2787, '河南省', '信阳市', '淮滨县', '411527'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2788, '河南省', '信阳市', '息县', '411528'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2789, '河南省', '周口市', '市辖区', '411601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2790, '河南省', '周口市', '川汇区', '411602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2791, '河南省', '周口市', '扶沟县', '411621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2792, '河南省', '周口市', '西华县', '411622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2793, '河南省', '周口市', '商水县', '411623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2794, '河南省', '周口市', '沈丘县', '411624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2795, '河南省', '周口市', '郸城县', '411625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2796, '河南省', '周口市', '淮阳县', '411626'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2797, '河南省', '周口市', '太康县', '411627'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2798, '河南省', '周口市', '鹿邑县', '411628'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2799, '河南省', '周口市', '项城市', '411681'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2800, '河南省', '驻马店市', '市辖区', '411701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2801, '河南省', '驻马店市', '驿城区', '411702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2802, '河南省', '驻马店市', '西平县', '411721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2803, '河南省', '驻马店市', '上蔡县', '411722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2804, '河南省', '驻马店市', '平舆县', '411723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2805, '河南省', '驻马店市', '正阳县', '411724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2806, '河南省', '驻马店市', '确山县', '411725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2807, '河南省', '驻马店市', '泌阳县', '411726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2808, '河南省', '驻马店市', '汝南县', '411727'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2809, '河南省', '驻马店市', '遂平县', '411728'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2810, '河南省', '驻马店市', '新蔡县', '411729'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2811, '河南省', '商丘地区', '商丘市', '412301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2812, '河南省', '商丘地区', '永城市', '412302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2813, '河南省', '商丘地区', '虞城县', '412321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2814, '河南省', '商丘地区', '商丘县', '412322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2815, '河南省', '商丘地区', '民权县', '412323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2816, '河南省', '商丘地区', '宁陵县', '412324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2817, '河南省', '商丘地区', '睢县', '412325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2818, '河南省', '商丘地区', '夏邑县', '412326'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2819, '河南省', '商丘地区', '柘城县', '412327'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2820, '河南省', '商丘地区', '永城县', '412328'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2821, '河南省', '开封地区', '杞县', '412421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2822, '河南省', '开封地区', '通许县', '412422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2823, '河南省', '开封地区', '尉氏县', '412423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2824, '河南省', '开封地区', '开封县', '412424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2825, '河南省', '开封地区', '中牟县', '412425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2826, '河南省', '开封地区', '新郑县', '412426'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2827, '河南省', '开封地区', '巩县', '412427'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2828, '河南省', '开封地区', '登封县', '412428'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2829, '河南省', '开封地区', '密县', '412429'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2830, '河南省', '开封地区', '兰考县', '412430'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2831, '河南省', '三门峡市', '三门峡市', '412501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2832, '河南省', '三门峡市', '义马市', '412502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2833, '河南省', '三门峡市', '偃师县', '412521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2834, '河南省', '三门峡市', '孟津县', '412522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2835, '河南省', '三门峡市', '新安县', '412523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2836, '河南省', '三门峡市', '渑池县', '412524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2837, '河南省', '三门峡市', '陕县', '412525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2838, '河南省', '三门峡市', '灵宝县', '412526'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2839, '河南省', '三门峡市', '伊川县', '412527'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2840, '河南省', '三门峡市', '汝阳县', '412528'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2841, '河南省', '三门峡市', '嵩县', '412529'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2842, '河南省', '三门峡市', '洛宁县', '412530'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2843, '河南省', '三门峡市', '卢氏县', '412531'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2844, '河南省', '三门峡市', '栾川县', '412532'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2845, '河南省', '三门峡市', '临汝县', '412533'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2846, '河南省', '三门峡市', '宜阳县', '412534'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2847, '河南省', '周口地区', '周口市', '412701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2848, '河南省', '周口地区', '项城市', '412702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2849, '河南省', '周口地区', '扶沟县', '412721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2850, '河南省', '周口地区', '西华县', '412722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2851, '河南省', '周口地区', '商水县', '412723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2852, '河南省', '周口地区', '太康县', '412724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2853, '河南省', '周口地区', '鹿邑县', '412725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2854, '河南省', '周口地区', '郸城县', '412726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2855, '河南省', '周口地区', '淮阳县', '412727'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2856, '河南省', '周口地区', '沈丘县', '412728'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2857, '河南省', '驻马店地区', '驻马店市', '412801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2858, '河南省', '驻马店地区', '确山县', '412821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2859, '河南省', '驻马店地区', '泌阳县', '412822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2860, '河南省', '驻马店地区', '遂平县', '412823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2861, '河南省', '驻马店地区', '西平县', '412824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2862, '河南省', '驻马店地区', '上蔡县', '412825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2863, '河南省', '驻马店地区', '汝南县', '412826'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2864, '河南省', '驻马店地区', '平舆县', '412827'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2865, '河南省', '驻马店地区', '新蔡县', '412828'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2866, '河南省', '驻马店地区', '正阳县', '412829'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2867, '河南省', '南阳市', '卧龙区', '412901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2868, '河南省', '南阳市', '邓州市', '412902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2869, '河南省', '南阳市', '宛城区', '412903'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2870, '河南省', '南阳市', '南召县', '412921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2871, '河南省', '南阳市', '方城县', '412922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2872, '河南省', '南阳市', '西峡县', '412923'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2873, '河南省', '南阳市', '南阳县', '412924'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2874, '河南省', '南阳市', '镇平县', '412925'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2875, '河南省', '南阳市', '内乡县', '412926'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2876, '河南省', '南阳市', '淅川县', '412927'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2877, '河南省', '南阳市', '社旗县', '412928'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2878, '河南省', '南阳市', '唐河县', '412929'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2879, '河南省', '南阳市', '邓县', '412930'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2880, '河南省', '南阳市', '新野县', '412931'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2881, '河南省', '南阳市', '桐柏县', '412932'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2882, '河南省', '南阳市', '规划控制区', '412933'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2883, '河南省', '信阳地区', '信阳市', '413001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2884, '河南省', '信阳地区', '息县', '413021'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2885, '河南省', '信阳地区', '淮滨县', '413022'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2886, '河南省', '信阳地区', '平桥区', '413023'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2887, '河南省', '信阳地区', '潢川县', '413024'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2888, '河南省', '信阳地区', '光山县', '413025'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2889, '河南省', '信阳地区', '固始县', '413026'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2890, '河南省', '信阳地区', '商城县', '413027'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2891, '河南省', '信阳地区', '罗山县', '413028'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2892, '河南省', '信阳地区', '新县', '413029'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2893, '河南省', NULL, '许昌市', '412601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2894, '河南省', NULL, '漯河市', '412602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2895, '河南省', NULL, '长葛县', '412621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2896, '河南省', NULL, '禹县', '412622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2897, '河南省', NULL, '鄢陵县', '412623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2898, '河南省', NULL, '许昌县', '412624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2899, '河南省', NULL, '郏县', '412625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2900, '河南省', NULL, '临颍县', '412626'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2901, '河南省', NULL, '襄城县', '412627'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2902, '河南省', NULL, '宝丰县', '412628'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2903, '河南省', NULL, '郾城县', '412629'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2904, '河南省', NULL, '叶县', '412630'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2905, '河南省', NULL, '鲁山县', '412631'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2906, '河南省', NULL, '舞阳县', '412632'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2907, '河南省', NULL, '义马市', '419001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2908, '河南省', NULL, '汝州市', '419002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2909, '河南省', NULL, '济源市', '419003'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2910, '河南省', NULL, '禹州市', '419004'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2911, '河南省', NULL, '卫辉市', '419005'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2912, '河南省', NULL, '辉县市', '419006'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2913, '湖北省', '宜昌市', '市辖区', '420501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2914, '湖北省', '宜昌市', '西陵区', '420502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2915, '湖北省', '宜昌市', '伍家岗区', '420503'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2916, '湖北省', '宜昌市', '点军区', '420504'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2917, '湖北省', '宜昌市', '猇亭区', '420505'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2918, '湖北省', '宜昌市', '夷陵区', '420506'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2919, '湖北省', '宜昌市', '宜昌县', '420521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2920, '湖北省', '宜昌市', '枝江县', '420523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2921, '湖北省', '宜昌市', '远安县', '420525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2922, '湖北省', '宜昌市', '兴山县', '420526'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2923, '湖北省', '宜昌市', '秭归县', '420527'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2924, '湖北省', '宜昌市', '长阳土家族自治县', '420528'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2925, '湖北省', '宜昌市', '五峰土家族自治县', '420529'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2926, '湖北省', '宜昌市', '宜都市', '420581'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2927, '湖北省', '宜昌市', '当阳市', '420582'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2928, '湖北省', '宜昌市', '枝江市', '420583'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2929, '湖北省', '襄樊市', '市辖区', '420601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2930, '湖北省', '襄樊市', '襄城区', '420602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2931, '湖北省', '襄樊市', '樊东区', '420603'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2932, '湖北省', '襄樊市', '樊西区', '420604'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2933, '湖北省', '襄樊市', '郊区', '420605'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2934, '湖北省', '襄樊市', '樊城区', '420606'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2935, '湖北省', '襄樊市', '襄阳区', '420607'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2936, '湖北省', '襄樊市', '随州市', '420619'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2937, '湖北省', '襄樊市', '老河口市', '420620'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2938, '湖北省', '襄樊市', '襄阳县', '420621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2939, '湖北省', '襄樊市', '枣阳县', '420622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2940, '湖北省', '襄樊市', '宜城县', '420623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2941, '湖北省', '襄樊市', '南漳县', '420624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2942, '湖北省', '襄樊市', '谷城县', '420625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2943, '湖北省', '襄樊市', '保康县', '420626'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2944, '湖北省', '襄樊市', '随州市', '420681'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2945, '湖北省', '襄樊市', '老河口市', '420682'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2946, '湖北省', '襄樊市', '枣阳市', '420683'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2947, '湖北省', '襄樊市', '宜城市', '420684'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2948, '湖北省', '鄂州市', '市辖区', '420701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2949, '湖北省', '鄂州市', '梁子湖区', '420702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2950, '湖北省', '鄂州市', '华容区', '420703'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2951, '湖北省', '鄂州市', '鄂城区', '420704'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2952, '湖北省', '荆门市', '市辖区', '420801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2953, '湖北省', '荆门市', '东宝区', '420802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2954, '湖北省', '荆门市', '沙洋区', '420803'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2955, '湖北省', '荆门市', '掇刀区', '420804'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2956, '湖北省', '荆门市', '京山县', '420821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2957, '湖北省', '荆门市', '沙洋县', '420822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2958, '湖北省', '荆门市', '钟祥市', '420881'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2959, '湖北省', '孝感市', '市辖区', '420901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2960, '湖北省', '孝感市', '孝南区', '420902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2961, '湖北省', '孝感市', '孝昌县', '420921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2962, '湖北省', '孝感市', '大悟县', '420922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2963, '湖北省', '孝感市', '云梦县', '420923'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2964, '湖北省', '孝感市', '应城市', '420981'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2965, '湖北省', '孝感市', '安陆市', '420982'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2966, '湖北省', '孝感市', '广水市', '420983'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2967, '湖北省', '孝感市', '汉川市', '420984'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2968, '湖北省', '荆州市', '市辖区', '421001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2969, '湖北省', '荆州市', '沙市区', '421002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2970, '湖北省', '荆州市', '荆州区', '421003'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2971, '湖北省', '荆州市', '江陵区', '421004'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2972, '湖北省', '荆州市', '松滋县', '421021'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2973, '湖北省', '荆州市', '公安县', '421022'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2974, '湖北省', '荆州市', '监利县', '421023'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2975, '湖北省', '荆州市', '江陵县', '421024'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2976, '湖北省', '荆州市', '石首市', '421081'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2977, '湖北省', '荆州市', '洪湖市', '421083'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2978, '湖北省', '荆州市', '松滋市', '421087'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2979, '湖北省', '黄冈市', '市辖区', '421101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2980, '湖北省', '黄冈市', '黄州区', '421102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2981, '湖北省', '黄冈市', '龙感湖管理区', '421103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2982, '湖北省', '黄冈市', '团风县', '421121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2983, '湖北省', '黄冈市', '红安县', '421122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2984, '湖北省', '黄冈市', '罗田县', '421123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2985, '湖北省', '黄冈市', '英山县', '421124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2986, '湖北省', '黄冈市', '浠水县', '421125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2987, '湖北省', '黄冈市', '蕲春县', '421126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2988, '湖北省', '黄冈市', '黄梅县', '421127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2989, '湖北省', '黄冈市', '麻城市', '421181'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2990, '湖北省', '黄冈市', '武穴市', '421182'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2991, '湖北省', '咸宁市', '市辖区', '421201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2992, '湖北省', '咸宁市', '咸安区', '421202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2993, '湖北省', '咸宁市', '嘉鱼县', '421221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2994, '湖北省', '咸宁市', '通城县', '421222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2995, '湖北省', '咸宁市', '崇阳县', '421223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2996, '湖北省', '咸宁市', '通山县', '421224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2997, '湖北省', '咸宁市', '赤壁市', '421281'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2998, '湖北省', '随州市', '市辖区', '421301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (2999, '湖北省', '随州市', '曾都区', '421302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3000, '湖北省', '随州市', '广水市', '421381'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3001, '湖北省', '黄冈地区', '鄂州市', '422101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3002, '湖北省', '黄冈地区', '武穴市', '422102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3003, '湖北省', '黄冈地区', '黄州市', '422103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3004, '湖北省', '黄冈地区', '黄冈县', '422121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3005, '湖北省', '黄冈地区', '新洲县', '422122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3006, '湖北省', '黄冈地区', '红安县', '422123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3007, '湖北省', '黄冈地区', '麻城县', '422124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3008, '湖北省', '黄冈地区', '罗田县', '422125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3009, '湖北省', '黄冈地区', '英山县', '422126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3010, '湖北省', '黄冈地区', '浠水县', '422127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3011, '湖北省', '黄冈地区', '蕲春县', '422128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3012, '湖北省', '黄冈地区', '广济县', '422129'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3013, '湖北省', '黄冈地区', '黄梅县', '422130'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3014, '湖北省', '黄冈地区', '鄂城县', '422131'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3015, '湖北省', '孝感地区', '孝感市', '422201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3016, '湖北省', '孝感地区', '应城市', '422202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3017, '湖北省', '孝感地区', '安陆市', '422203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3018, '湖北省', '孝感地区', '广水市', '422204'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3019, '湖北省', '孝感地区', '孝感县', '422221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3020, '湖北省', '孝感地区', '黄陂县', '422222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3021, '湖北省', '孝感地区', '大悟县', '422223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3022, '湖北省', '孝感地区', '应山县', '422224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3023, '湖北省', '孝感地区', '安陆县', '422225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3024, '湖北省', '孝感地区', '云梦县', '422226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3025, '湖北省', '孝感地区', '应城县', '422227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3026, '湖北省', '孝感地区', '汉川县', '422228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3027, '湖北省', '省直辖行政单位', '神农架林区', '422921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3028, '湖北省', '省直辖行政单位', '随州市', '429001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3029, '湖北省', '省直辖行政单位', '枣阳市', '429003'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3030, '湖北省', '省直辖行政单位', '仙桃市', '429004'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3031, '湖北省', '省直辖行政单位', '潜江市', '429005'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3032, '湖北省', '省直辖行政单位', '天门市', '429006'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3033, '湖北省', '省直辖行政单位', '神农架林区', '429021'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3034, '湖北省', '武汉市', '市辖区', '420101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3035, '湖北省', '武汉市', '江岸区', '420102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3036, '湖北省', '武汉市', '江汉区', '420103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3037, '湖北省', '武汉市', '乔口区', '420104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3038, '湖北省', '武汉市', '汉阳区', '420105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3039, '湖北省', '武汉市', '武昌区', '420106'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3040, '湖北省', '武汉市', '青山区', '420107'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3041, '湖北省', '武汉市', '东湖管理分局', '420109'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3042, '湖北省', '武汉市', '洪山区', '420111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3043, '湖北省', '武汉市', '东西湖区', '420112'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3044, '湖北省', '武汉市', '汉南区', '420113'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3045, '湖北省', '武汉市', '蔡甸区', '420114'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3046, '湖北省', '武汉市', '江夏区', '420115'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3047, '湖北省', '武汉市', '黄陂区', '420116'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3048, '湖北省', '武汉市', '新洲区', '420117'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3049, '湖北省', '武汉市', '蔡甸区', '420121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3050, '湖北省', '武汉市', '江夏区', '420122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3051, '湖北省', '武汉市', '黄陂区', '420123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3052, '湖北省', '武汉市', '新洲县', '420124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3053, '湖北省', '黄石市', '市辖区', '420201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3054, '湖北省', '黄石市', '黄石港区', '420202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3055, '湖北省', '黄石市', '石灰窑区', '420203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3056, '湖北省', '黄石市', '下陆区', '420204'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3057, '湖北省', '黄石市', '铁山区', '420205'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3058, '湖北省', '黄石市', '市区', '420220'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3059, '湖北省', '黄石市', '大冶县', '420221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3060, '湖北省', '黄石市', '阳新县', '420222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3061, '湖北省', '黄石市', '大冶市', '420281'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3062, '湖北省', '十堰市', '市辖区', '420301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3063, '湖北省', '十堰市', '茅箭区', '420302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3064, '湖北省', '十堰市', '张湾区', '420303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3065, '湖北省', '十堰市', '郧县', '420321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3066, '湖北省', '十堰市', '郧西县', '420322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3067, '湖北省', '十堰市', '竹山县', '420323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3068, '湖北省', '十堰市', '竹溪县', '420324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3069, '湖北省', '十堰市', '房县', '420325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3070, '湖北省', '十堰市', '丹江口市', '420381'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3071, '湖北省', '咸宁地区', '咸宁市', '422301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3072, '湖北省', '咸宁地区', '赤壁市', '422302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3073, '湖北省', '咸宁地区', '咸宁县', '422321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3074, '湖北省', '咸宁地区', '嘉鱼县', '422322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3075, '湖北省', '咸宁地区', '蒲圻县', '422323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3076, '湖北省', '咸宁地区', '通城县', '422324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3077, '湖北省', '咸宁地区', '崇阳县', '422325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3078, '湖北省', '咸宁地区', '通山县', '422326'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3079, '湖北省', '咸宁地区', '阳新县', '422327'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3080, '湖北省', '荆州地区', '仙桃市', '422401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3081, '湖北省', '荆州地区', '石首市', '422402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3082, '湖北省', '荆州地区', '洪湖市', '422403'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3083, '湖北省', '荆州地区', '天门市', '422404'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3084, '湖北省', '荆州地区', '潜江市', '422405'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3085, '湖北省', '荆州地区', '钟祥市', '422406'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3086, '湖北省', '荆州地区', '江陵县', '422421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3087, '湖北省', '荆州地区', '松滋县', '422422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3088, '湖北省', '荆州地区', '公安县', '422423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3089, '湖北省', '荆州地区', '石首县', '422424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3090, '湖北省', '荆州地区', '监利县', '422425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3091, '湖北省', '荆州地区', '洪湖县', '422426'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3092, '湖北省', '荆州地区', '沔阳县', '422427'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3093, '湖北省', '荆州地区', '天门县', '422428'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3094, '湖北省', '荆州地区', '潜江县', '422429'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3095, '湖北省', '荆州地区', '荆门县', '422430'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3096, '湖北省', '荆州地区', '钟祥县', '422431'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3097, '湖北省', '荆州地区', '京山县', '422432'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3098, '湖北省', '随州地区', '随州市', '422501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3099, '湖北省', '随州地区', '老河口市', '422502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3100, '湖北省', '随州地区', '襄阳县', '422521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3101, '湖北省', '随州地区', '枣阳县', '422522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3102, '湖北省', '随州地区', '宜城县', '422524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3103, '湖北省', '随州地区', '南漳县', '422525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3104, '湖北省', '随州地区', '谷城县', '422527'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3105, '湖北省', '随州地区', '保康县', '422528'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3106, '湖北省', '郧阳地区', '丹江口市', '422601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3107, '湖北省', '郧阳地区', '郧县', '422622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3108, '湖北省', '郧阳地区', '郧西县', '422623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3109, '湖北省', '郧阳地区', '竹山县', '422624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3110, '湖北省', '郧阳地区', '竹溪县', '422625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3111, '湖北省', '郧阳地区', '房县', '422626'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3112, '湖北省', '郧阳地区', '神农架林区', '422627'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3113, '湖北省', '宜昌地区', '枝城市', '422701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3114, '湖北省', '宜昌地区', '当阳市', '422702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3115, '湖北省', '宜昌地区', '宜昌县', '422721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3116, '湖北省', '宜昌地区', '宜都县', '422722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3117, '湖北省', '宜昌地区', '枝江县', '422723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3118, '湖北省', '宜昌地区', '当阳县', '422724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3119, '湖北省', '宜昌地区', '远安县', '422725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3120, '湖北省', '宜昌地区', '兴山县', '422726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3121, '湖北省', '宜昌地区', '秭归县', '422727'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3122, '湖北省', '宜昌地区', '长阳土家族自治县', '422728'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3123, '湖北省', '宜昌地区', '五峰土家族自治县', '422729'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3124, '湖北省', '恩施土家族苗族自治州', '恩施市', '422801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3125, '湖北省', '恩施土家族苗族自治州', '利川市', '422802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3126, '湖北省', '恩施土家族苗族自治州', '建始县', '422822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3127, '湖北省', '恩施土家族苗族自治州', '巴东县', '422823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3128, '湖北省', '恩施土家族苗族自治州', '宣恩县', '422825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3129, '湖北省', '恩施土家族苗族自治州', '咸丰县', '422826'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3130, '湖北省', '恩施土家族苗族自治州', '来凤县', '422827'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3131, '湖北省', '恩施土家族苗族自治州', '鹤峰县', '422828'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3132, '湖北省', NULL, '沙市', '420400'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3133, '湖北省', NULL, '沙洋监狱管理局', '423022'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3134, '湖南省', '长沙市', '市辖区', '430101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3135, '湖南省', '长沙市', '芙蓉区', '430102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3136, '湖南省', '长沙市', '天心区', '430103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3137, '湖南省', '长沙市', '岳麓区', '430104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3138, '湖南省', '长沙市', '开福区', '430105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3139, '湖南省', '长沙市', '雨花区', '430111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3140, '湖南省', '长沙市', '市区', '430120'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3141, '湖南省', '长沙市', '长沙县', '430121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3142, '湖南省', '长沙市', '望城县', '430122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3143, '湖南省', '长沙市', '浏阳县', '430123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3144, '湖南省', '长沙市', '宁乡县', '430124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3145, '湖南省', '长沙市', '浏阳市', '430181'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3146, '湖南省', '株洲市', '市辖区', '430201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3147, '湖南省', '株洲市', '荷塘区', '430202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3148, '湖南省', '株洲市', '芦淞区', '430203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3149, '湖南省', '株洲市', '石峰区', '430204'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3150, '湖南省', '株洲市', '天元区', '430211'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3151, '湖南省', '株洲市', '醴陵市', '430219'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3152, '湖南省', '株洲市', '市区', '430220'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3153, '湖南省', '株洲市', '株洲县', '430221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3154, '湖南省', '株洲市', '醴陵县', '430222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3155, '湖南省', '株洲市', '攸县', '430223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3156, '湖南省', '株洲市', '茶陵县', '430224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3157, '湖南省', '株洲市', '炎陵县', '430225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3158, '湖南省', '株洲市', '醴陵市', '430281'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3159, '湖南省', '湘潭市', '市辖区', '430301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3160, '湖南省', '湘潭市', '雨湖区', '430302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3161, '湖南省', '湘潭市', '湘江区', '430303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3162, '湖南省', '湘潭市', '岳塘区', '430304'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3163, '湖南省', '湘潭市', '板塘区', '430305'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3164, '湖南省', '湘潭市', '韶山区', '430306'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3165, '湖南省', '湘潭市', '郊区', '430311'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3166, '湖南省', '湘潭市', '韶山区', '430312'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3167, '湖南省', '湘潭市', '湘潭县', '430321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3168, '湖南省', '湘潭市', '湘乡县', '430322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3169, '湖南省', '湘潭市', '湘乡市', '430381'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3170, '湖南省', '湘潭市', '韶山市', '430382'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3171, '湖南省', '衡阳市', '市辖区', '430401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3172, '湖南省', '衡阳市', '江东区', '430402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3173, '湖南省', '衡阳市', '城南区', '430403'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3174, '湖南省', '衡阳市', '城北区', '430404'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3175, '湖南省', '衡阳市', '珠晖区', '430405'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3176, '湖南省', '衡阳市', '雁峰区', '430406'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3177, '湖南省', '衡阳市', '石鼓区', '430407'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3178, '湖南省', '衡阳市', '蒸湘区', '430408'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3179, '湖南省', '衡阳市', '郊区', '430411'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3180, '湖南省', '衡阳市', '南岳区', '430412'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3181, '湖南省', '衡阳市', '耒阳市', '430419'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3182, '湖南省', '衡阳市', '衡阳县', '430421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3183, '湖南省', '衡阳市', '衡南县', '430422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3184, '湖南省', '衡阳市', '衡山县', '430423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3185, '湖南省', '衡阳市', '衡东县', '430424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3186, '湖南省', '衡阳市', '常宁县', '430425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3187, '湖南省', '衡阳市', '祁东县', '430426'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3188, '湖南省', '衡阳市', '耒阳县', '430427'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3189, '湖南省', '衡阳市', '耒阳市', '430481'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3190, '湖南省', '衡阳市', '常宁市', '430482'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3191, '湖南省', '湘潭地区', '湘潭县', '432121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3192, '湖南省', '湘潭地区', '湘乡县', '432122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3193, '湖南省', '湘潭地区', '醴陵县', '432123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3194, '湖南省', '湘潭地区', '浏阳县', '432124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3195, '湖南省', '湘潭地区', '攸县', '432125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3196, '湖南省', '湘潭地区', '茶陵县', '432126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3197, '湖南省', '湘潭地区', '酃县', '432127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3198, '湖南省', '岳阳地区', '岳阳市', '432201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3199, '湖南省', '岳阳地区', '平江县', '432222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3200, '湖南省', '岳阳地区', '湘阴县', '432223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3201, '湖南省', '岳阳地区', '汨罗县', '432224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3202, '湖南省', '岳阳地区', '临湘市', '432225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3203, '湖南省', '岳阳地区', '华容县', '432226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3204, '湖南省', '益阳地区', '益阳市', '432301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3205, '湖南省', '益阳地区', '沅江市', '432302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3206, '湖南省', '益阳地区', '益阳县', '432321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3207, '湖南省', '益阳地区', '南县', '432322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3208, '湖南省', '益阳地区', '沅江县', '432323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3209, '湖南省', '益阳地区', '宁乡县', '432324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3210, '湖南省', '益阳地区', '桃江县', '432325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3211, '湖南省', '益阳地区', '安化县', '432326'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3212, '湖南省', '常德地区', '常德市', '432401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3213, '湖南省', '常德地区', '津市市', '432402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3214, '湖南省', '常德地区', '常德县', '432421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3215, '湖南省', '常德地区', '安乡县', '432422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3216, '湖南省', '常德地区', '汉寿县', '432423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3217, '湖南省', '常德地区', '澧县', '432424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3218, '湖南省', '常德地区', '临澧县', '432425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3219, '湖南省', '常德地区', '桃源县', '432426'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3220, '湖南省', '常德地区', '石门县', '432427'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3221, '湖南省', '常德地区', '慈利县', '432428'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3222, '湖南省', '娄底地区', '娄底市', '432501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3223, '湖南省', '娄底地区', '冷水江市', '432502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3224, '湖南省', '娄底地区', '涟源市', '432503'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3225, '湖南省', '娄底地区', '涟源县', '432521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3226, '湖南省', '娄底地区', '双峰县', '432522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3227, '湖南省', '娄底地区', '邵东县', '432523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3228, '湖南省', '娄底地区', '新化县', '432524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3229, '湖南省', '娄底地区', '新邵县', '432525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3230, '湖南省', '邵阳地区', '邵阳县', '432621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3231, '湖南省', '邵阳地区', '隆回县', '432622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3232, '湖南省', '邵阳地区', '武冈县', '432623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3233, '湖南省', '邵阳地区', '洞口县', '432624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3234, '湖南省', '邵阳地区', '新宁县', '432625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3235, '湖南省', '邵阳地区', '绥宁县', '432626'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3236, '湖南省', '邵阳地区', '城步苗族自治县', '432627'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3237, '湖南省', '衡阳地区', '衡阳县', '432721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3238, '湖南省', '衡阳地区', '衡南县', '432722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3239, '湖南省', '衡阳地区', '衡山县', '432723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3240, '湖南省', '衡阳地区', '衡东县', '432724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3241, '湖南省', '衡阳地区', '常宁县', '432725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3242, '湖南省', '衡阳地区', '祁东县', '432726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3243, '湖南省', '衡阳地区', '祁阳县', '432727'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3244, '湖南省', '郴州地区', '郴州市', '432801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3245, '湖南省', '郴州地区', '资兴市', '432802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3246, '湖南省', '郴州地区', '郴县', '432821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3247, '湖南省', '郴州地区', '桂阳县', '432822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3248, '湖南省', '郴州地区', '永兴县', '432823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3249, '湖南省', '郴州地区', '宜章县', '432824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3250, '湖南省', '郴州地区', '资兴县', '432825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3251, '湖南省', '郴州地区', '嘉禾县', '432826'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3252, '湖南省', '郴州地区', '临武县', '432827'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3253, '湖南省', '郴州地区', '汝城县', '432828'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3254, '湖南省', '郴州地区', '桂东县', '432829'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3255, '湖南省', '郴州地区', '耒阳县', '432830'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3256, '湖南省', '郴州地区', '安仁县', '432831'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3257, '湖南省', '零陵地区', '永州市', '432901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3258, '湖南省', '零陵地区', '冷水滩市', '432902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3259, '湖南省', '零陵地区', '零陵县', '432921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3260, '湖南省', '零陵地区', '东安县', '432922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3261, '湖南省', '零陵地区', '道县', '432923'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3262, '湖南省', '零陵地区', '宁远县', '432924'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3263, '湖南省', '零陵地区', '江永县', '432925'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3264, '湖南省', '零陵地区', '江华瑶族自治县', '432926'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3265, '湖南省', '零陵地区', '蓝山县', '432927'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3266, '湖南省', '零陵地区', '新田县', '432928'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3267, '湖南省', '零陵地区', '双牌县', '432929'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3268, '湖南省', '零陵地区', '双牌县', '432930'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3269, '湖南省', '邵阳市', '市辖区', '430501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3270, '湖南省', '邵阳市', '双清区', '430502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3271, '湖南省', '邵阳市', '大祥区', '430503'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3272, '湖南省', '邵阳市', '北塔区', '430511'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3273, '湖南省', '邵阳市', '邵东县', '430521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3274, '湖南省', '邵阳市', '新邵县', '430522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3275, '湖南省', '邵阳市', '邵阳县', '430523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3276, '湖南省', '邵阳市', '隆回县', '430524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3277, '湖南省', '邵阳市', '洞口县', '430525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3278, '湖南省', '邵阳市', '武冈县', '430526'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3279, '湖南省', '邵阳市', '绥宁县', '430527'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3280, '湖南省', '邵阳市', '新宁县', '430528'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3281, '湖南省', '邵阳市', '城步苗族自治县', '430529'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3282, '湖南省', '邵阳市', '武冈市', '430581'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3283, '湖南省', '岳阳市', '市辖区', '430601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3284, '湖南省', '岳阳市', '岳阳楼区', '430602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3285, '湖南省', '岳阳市', '云溪区', '430603'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3286, '湖南省', '岳阳市', '君山区', '430611'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3287, '湖南省', '岳阳市', '岳阳县', '430621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3288, '湖南省', '岳阳市', '临湘县', '430622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3289, '湖南省', '岳阳市', '华容县', '430623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3290, '湖南省', '岳阳市', '湘阴县', '430624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3291, '湖南省', '岳阳市', '汨罗县', '430625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3292, '湖南省', '岳阳市', '平江县', '430626'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3293, '湖南省', '岳阳市', '汨罗市', '430681'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3294, '湖南省', '岳阳市', '临湘市', '430682'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3295, '湖南省', '常德市', '市辖区', '430701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3296, '湖南省', '常德市', '武陵区', '430702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3297, '湖南省', '常德市', '鼎城区', '430703'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3298, '湖南省', '常德市', '安乡县', '430721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3299, '湖南省', '常德市', '汉寿县', '430722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3300, '湖南省', '常德市', '澧县', '430723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3301, '湖南省', '常德市', '临澧县', '430724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3302, '湖南省', '常德市', '桃源县', '430725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3303, '湖南省', '常德市', '石门县', '430726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3304, '湖南省', '常德市', '津市市', '430781'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3305, '湖南省', '张家界市', '市辖区', '430801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3306, '湖南省', '张家界市', '永定区', '430802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3307, '湖南省', '张家界市', '武陵源区', '430811'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3308, '湖南省', '张家界市', '慈利县', '430821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3309, '湖南省', '张家界市', '桑植县', '430822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3310, '湖南省', '益阳市', '市辖区', '430901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3311, '湖南省', '益阳市', '资阳区', '430902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3312, '湖南省', '益阳市', '赫山区', '430903'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3313, '湖南省', '益阳市', '市区', '430911'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3314, '湖南省', '益阳市', '南县', '430921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3315, '湖南省', '益阳市', '桃江县', '430922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3316, '湖南省', '益阳市', '安化县', '430923'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3317, '湖南省', '益阳市', '沅江市', '430981'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3318, '湖南省', '郴州市', '市辖区', '431001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3319, '湖南省', '郴州市', '北湖区', '431002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3320, '湖南省', '郴州市', '苏仙区', '431003'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3321, '湖南省', '郴州市', '桂阳县', '431021'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3322, '湖南省', '郴州市', '宜章县', '431022'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3323, '湖南省', '郴州市', '永兴县', '431023'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3324, '湖南省', '郴州市', '嘉禾县', '431024'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3325, '湖南省', '郴州市', '临武县', '431025'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3326, '湖南省', '郴州市', '汝城县', '431026'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3327, '湖南省', '郴州市', '桂东县', '431027'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3328, '湖南省', '郴州市', '安仁县', '431028'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3329, '湖南省', '郴州市', '资兴市', '431081'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3330, '湖南省', '永州市', '市辖区', '431101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3331, '湖南省', '永州市', '零陵区', '431102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3332, '湖南省', '永州市', '冷水滩区', '431103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3333, '湖南省', '永州市', '祁阳县', '431121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3334, '湖南省', '永州市', '东安县', '431122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3335, '湖南省', '永州市', '双牌县', '431123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3336, '湖南省', '永州市', '道县', '431124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3337, '湖南省', '永州市', '江永县', '431125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3338, '湖南省', '永州市', '宁远县', '431126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3339, '湖南省', '永州市', '蓝山县', '431127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3340, '湖南省', '永州市', '新田县', '431128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3341, '湖南省', '永州市', '江华瑶族自治县', '431129'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3342, '湖南省', '怀化市', '市辖区', '431201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3343, '湖南省', '怀化市', '鹤城区', '431202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3344, '湖南省', '怀化市', '中方县', '431221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3345, '湖南省', '怀化市', '沅陵县', '431222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3346, '湖南省', '怀化市', '辰溪县', '431223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3347, '湖南省', '怀化市', '溆浦县', '431224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3348, '湖南省', '怀化市', '会同县', '431225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3349, '湖南省', '怀化市', '麻阳苗族自治县', '431226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3350, '湖南省', '怀化市', '新晃侗族自治县', '431227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3351, '湖南省', '怀化市', '芷江侗族自治县', '431228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3352, '湖南省', '怀化市', '靖州苗族侗族自治县', '431229'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3353, '湖南省', '怀化市', '通道侗族自治县', '431230'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3354, '湖南省', '怀化市', '洪江市', '431281'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3355, '湖南省', '娄底市', '市辖区', '431301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3356, '湖南省', '娄底市', '娄星区', '431302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3357, '湖南省', '娄底市', '双峰县', '431321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3358, '湖南省', '娄底市', '新化县', '431322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3359, '湖南省', '娄底市', '冷水江市', '431381'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3360, '湖南省', '娄底市', '涟源市', '431382'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3361, '湖南省', '怀化地区', '怀化市', '433001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3362, '湖南省', '怀化地区', '洪江市', '433002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3363, '湖南省', '怀化地区', '黔阳县', '433021'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3364, '湖南省', '怀化地区', '沅陵县', '433022'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3365, '湖南省', '怀化地区', '辰溪县', '433023'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3366, '湖南省', '怀化地区', '溆浦县', '433024'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3367, '湖南省', '怀化地区', '麻阳县', '433025'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3368, '湖南省', '怀化地区', '新晃侗族自治县', '433026'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3369, '湖南省', '怀化地区', '芷江县', '433027'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3370, '湖南省', '怀化地区', '怀化县', '433028'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3371, '湖南省', '怀化地区', '会同县', '433029'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3372, '湖南省', '怀化地区', '靖县', '433030'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3373, '湖南省', '怀化地区', '通道侗族自治县', '433031'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3374, '湖南省', '湘西土家族苗族自治州', '吉首市', '433101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3375, '湖南省', '湘西土家族苗族自治州', '吉首县', '433121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3376, '湖南省', '湘西土家族苗族自治州', '泸溪县', '433122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3377, '湖南省', '湘西土家族苗族自治州', '凤凰县', '433123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3378, '湖南省', '湘西土家族苗族自治州', '花垣县', '433124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3379, '湖南省', '湘西土家族苗族自治州', '保靖县', '433125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3380, '湖南省', '湘西土家族苗族自治州', '古丈县', '433126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3381, '湖南省', '湘西土家族苗族自治州', '永顺县', '433127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3382, '湖南省', '湘西土家族苗族自治州', '大庸县', '433128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3383, '湖南省', '湘西土家族苗族自治州', '桑植县', '433129'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3384, '湖南省', '湘西土家族苗族自治州', '龙山县', '433130'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3385, '湖南省', NULL, '醴陵市', '439001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3386, '湖南省', NULL, '湘乡市', '439002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3387, '湖南省', NULL, '耒阳市', '439003'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3388, '湖南省', NULL, '汨罗市', '439004'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3389, '湖南省', NULL, '津市市', '439005'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3390, '广东省', '广州市', '市辖区', '440101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3391, '广东省', '广州市', '东山区', '440102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3392, '广东省', '广州市', '荔湾区', '440103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3393, '广东省', '广州市', '越秀区', '440104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3394, '广东省', '广州市', '海珠区', '440105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3395, '广东省', '广州市', '天河区', '440106'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3396, '广东省', '广州市', '芳村区', '440107'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3397, '广东省', '广州市', '白云区', '440111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3398, '广东省', '广州市', '黄埔区', '440112'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3399, '广东省', '广州市', '番禺区', '440113'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3400, '广东省', '广州市', '花都区', '440114'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3401, '广东省', '广州市', '南沙区', '440115'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3402, '广东省', '广州市', '萝岗区', '440116'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3403, '广东省', '广州市', '市区', '440120'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3404, '广东省', '广州市', '花县', '440121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3405, '广东省', '广州市', '从化县', '440122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3406, '广东省', '广州市', '新丰县', '440123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3407, '广东省', '广州市', '龙门县', '440124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3408, '广东省', '广州市', '增城县', '440125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3409, '广东省', '广州市', '番禺县', '440126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3410, '广东省', '广州市', '清远县', '440127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3411, '广东省', '广州市', '佛冈县', '440128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3412, '广东省', '广州市', '番禺市', '440181'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3413, '广东省', '广州市', '花都市', '440182'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3414, '广东省', '广州市', '增城市', '440183'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3415, '广东省', '广州市', '从化市', '440184'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3416, '广东省', '韶关市', '市辖区', '440201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3417, '广东省', '韶关市', '北江区', '440202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3418, '广东省', '韶关市', '武江区', '440203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3419, '广东省', '韶关市', '浈江区', '440204'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3420, '广东省', '韶关市', '曲江区', '440205'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3421, '广东省', '韶关市', '曲江县', '440221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3422, '广东省', '韶关市', '始兴县', '440222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3423, '广东省', '韶关市', '南雄县', '440223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3424, '广东省', '韶关市', '仁化县', '440224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3425, '广东省', '韶关市', '乐昌县', '440225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3426, '广东省', '韶关市', '连县', '440226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3427, '广东省', '韶关市', '阳山县', '440227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3428, '广东省', '韶关市', '英德县', '440228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3429, '广东省', '韶关市', '翁源县', '440229'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3430, '广东省', '韶关市', '连山壮族瑶族自治县', '440230'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3431, '广东省', '韶关市', '连南瑶族自治县', '440231'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3432, '广东省', '韶关市', '乳源瑶族自治县', '440232'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3433, '广东省', '韶关市', '新丰县', '440233'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3434, '广东省', '韶关市', '乐昌市', '440281'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3435, '广东省', '韶关市', '南雄市', '440282'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3436, '广东省', '深圳市', '市辖区', '440301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3437, '广东省', '深圳市', '盐田区', '440302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3438, '广东省', '深圳市', '罗湖区', '440303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3439, '广东省', '深圳市', '福田区', '440304'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3440, '广东省', '深圳市', '南山区', '440305'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3441, '广东省', '深圳市', '宝安区', '440306'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3442, '广东省', '深圳市', '龙岗区', '440307'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3443, '广东省', '深圳市', '盐田区', '440308'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3444, '广东省', '深圳市', '市区', '440320'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3445, '广东省', '深圳市', '宝安县', '440321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3446, '广东省', '珠海市', '市辖区', '440401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3447, '广东省', '珠海市', '香洲区', '440402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3448, '广东省', '珠海市', '斗门区', '440403'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3449, '广东省', '珠海市', '金湾区', '440404'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3450, '广东省', '珠海市', '斗门县', '440421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3451, '广东省', '汕头市', '市辖区', '440501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3452, '广东省', '汕头市', '同平区', '440502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3453, '广东省', '汕头市', '安平区', '440503'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3454, '广东省', '汕头市', '公园区', '440504'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3455, '广东省', '汕头市', '金砂区', '440505'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3456, '广东省', '汕头市', '达濠区', '440506'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3457, '广东省', '汕头市', '龙湖区', '440507'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3458, '广东省', '汕头市', '金园区', '440508'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3459, '广东省', '汕头市', '升平区', '440509'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3460, '广东省', '汕头市', '河浦区', '440510'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3461, '广东省', '汕头市', '金平区', '440511'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3462, '广东省', '汕头市', '濠江区', '440512'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3463, '广东省', '汕头市', '潮阳区', '440513'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3464, '广东省', '汕头市', '潮南区', '440514'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3465, '广东省', '汕头市', '澄海区', '440515'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3466, '广东省', '汕头市', '潮州市', '440520'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3467, '广东省', '汕头市', '澄海县', '440521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3468, '广东省', '汕头市', '饶平县', '440522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3469, '广东省', '汕头市', '南澳县', '440523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3470, '广东省', '汕头市', '潮阳县', '440524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3471, '广东省', '汕头市', '揭阳县', '440525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3472, '广东省', '汕头市', '揭西县', '440526'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3473, '广东省', '汕头市', '普宁县', '440527'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3474, '广东省', '汕头市', '惠来县', '440528'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3475, '广东省', '汕头市', '潮州市', '440581'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3476, '广东省', '汕头市', '潮阳市', '440582'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3477, '广东省', '汕头市', '澄海市', '440583'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3478, '广东省', '佛山市', '市辖区', '440601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3479, '广东省', '佛山市', '城区', '440602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3480, '广东省', '佛山市', '石湾区', '440603'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3481, '广东省', '佛山市', '禅城区', '440604'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3482, '广东省', '佛山市', '南海区', '440605'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3483, '广东省', '佛山市', '顺德区', '440606'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3484, '广东省', '佛山市', '三水区', '440607'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3485, '广东省', '佛山市', '高明区', '440608'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3486, '广东省', '佛山市', '中山市', '440620'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3487, '广东省', '佛山市', '三水县', '440621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3488, '广东省', '佛山市', '南海县', '440622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3489, '广东省', '佛山市', '顺德县', '440623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3490, '广东省', '佛山市', '高明县', '440624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3491, '广东省', '佛山市', '顺德市', '440681'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3492, '广东省', '佛山市', '南海市', '440682'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3493, '广东省', '佛山市', '三水市', '440683'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3494, '广东省', '佛山市', '高明市', '440684'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3495, '广东省', '江门市', '市辖区', '440701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3496, '广东省', '江门市', '城区', '440702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3497, '广东省', '江门市', '蓬江区', '440703'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3498, '广东省', '江门市', '江海区', '440704'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3499, '广东省', '江门市', '新会区', '440705'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3500, '广东省', '江门市', '郊区', '440711'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3501, '广东省', '江门市', '新会县', '440721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3502, '广东省', '江门市', '台山县', '440722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3503, '广东省', '江门市', '恩平县', '440723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3504, '广东省', '江门市', '开平县', '440724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3505, '广东省', '江门市', '鹤山县', '440725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3506, '广东省', '江门市', '阳江县', '440726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3507, '广东省', '江门市', '阳春县', '440727'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3508, '广东省', '江门市', '台山市', '440781'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3509, '广东省', '江门市', '新会市', '440782'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3510, '广东省', '江门市', '开平市', '440783'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3511, '广东省', '江门市', '鹤山市', '440784'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3512, '广东省', '江门市', '恩平市', '440785'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3513, '广东省', '清远市', '连州市', '441882'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3514, '广东省', '清远市', '市辖区', '441801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3515, '广东省', '清远市', '清城区', '441802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3516, '广东省', '清远市', '清郊区', '441811'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3517, '广东省', '清远市', '佛冈县', '441821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3518, '广东省', '清远市', '英德县', '441822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3519, '广东省', '清远市', '阳山县', '441823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3520, '广东省', '清远市', '连县', '441824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3521, '广东省', '清远市', '连山壮族瑶族自治县', '441825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3522, '广东省', '清远市', '连南瑶族自治县', '441826'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3523, '广东省', '清远市', '清新县', '441827'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3524, '广东省', '清远市', '英德市', '441881'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3525, '广东省', '佛山市', '佛山市', '442701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3526, '广东省', '佛山市', '江门市', '442702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3527, '广东省', '佛山市', '三水县', '442721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3528, '广东省', '佛山市', '南海县', '442722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3529, '广东省', '佛山市', '顺德县', '442723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3530, '广东省', '佛山市', '中山县', '442724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3531, '广东省', '佛山市', '斗门县', '442725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3532, '广东省', '佛山市', '新会县', '442726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3533, '广东省', '佛山市', '台山县', '442727'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3534, '广东省', '佛山市', '恩平县', '442728'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3535, '广东省', '佛山市', '开平县', '442729'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3536, '广东省', '佛山市', '鹤山县', '442731'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3537, '广东省', '佛山市', '高明县', '442732'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3538, '广东省', '湛江市', '湛江市', '442901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3539, '广东省', '湛江市', '茂名市', '442902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3540, '广东省', '湛江市', '阳江县', '442921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3541, '广东省', '湛江市', '阳春县', '442922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3542, '广东省', '湛江市', '信宜县', '442923'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3543, '广东省', '湛江市', '高州县', '442924'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3544, '广东省', '湛江市', '电白县', '442925'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3545, '广东省', '湛江市', '吴川县', '442926'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3546, '广东省', '湛江市', '化州县', '442927'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3547, '广东省', '湛江市', '廉江县', '442928'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3548, '广东省', '湛江市', '遂溪县', '442929'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3549, '广东省', '湛江市', '海康县', '442930'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3550, '广东省', '湛江市', '徐闻县', '442931'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3551, '广东省', '潮州市', '市辖区', '445101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3552, '广东省', '潮州市', '湘桥区', '445102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3553, '广东省', '潮州市', '潮安县', '445121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3554, '广东省', '潮州市', '饶平县', '445122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3555, '广东省', '揭阳市', '市辖区', '445201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3556, '广东省', '揭阳市', '榕城区', '445202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3557, '广东省', '揭阳市', '揭东县', '445221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3558, '广东省', '揭阳市', '揭西县', '445222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3559, '广东省', '揭阳市', '惠来县', '445224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3560, '广东省', '揭阳市', '普宁市', '445281'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3561, '广东省', '湛江市', '市辖区', '440801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3562, '广东省', '湛江市', '赤坎区', '440802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3563, '广东省', '湛江市', '霞山区', '440803'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3564, '广东省', '湛江市', '坡头区', '440804'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3565, '广东省', '湛江市', '麻章区', '440811'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3566, '广东省', '湛江市', '吴川县', '440821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3567, '广东省', '湛江市', '廉江县', '440822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3568, '广东省', '湛江市', '遂溪县', '440823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3569, '广东省', '湛江市', '海康县', '440824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3570, '广东省', '湛江市', '徐闻县', '440825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3571, '广东省', '湛江市', '廉江市', '440881'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3572, '广东省', '湛江市', '雷州市', '440882'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3573, '广东省', '湛江市', '吴川市', '440883'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3574, '广东省', '茂名市', '市辖区', '440901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3575, '广东省', '茂名市', '茂南区', '440902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3576, '广东省', '茂名市', '茂港区', '440903'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3577, '广东省', '茂名市', '信宜县', '440921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3578, '广东省', '茂名市', '高州县', '440922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3579, '广东省', '茂名市', '电白县', '440923'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3580, '广东省', '茂名市', '化州县', '440924'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3581, '广东省', '茂名市', '高州市', '440981'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3582, '广东省', '茂名市', '化州市', '440982'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3583, '广东省', '茂名市', '信宜市', '440983'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3584, '广东省', '肇庆市', '市辖区', '441201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3585, '广东省', '肇庆市', '端州区', '441202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3586, '广东省', '肇庆市', '鼎湖区', '441203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3587, '广东省', '肇庆市', '高要县', '441221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3588, '广东省', '肇庆市', '四会县', '441222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3589, '广东省', '肇庆市', '广宁县', '441223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3590, '广东省', '肇庆市', '怀集县', '441224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3591, '广东省', '肇庆市', '封开县', '441225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3592, '广东省', '肇庆市', '德庆县', '441226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3593, '广东省', '肇庆市', '云浮县', '441227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3594, '广东省', '肇庆市', '新兴县', '441228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3595, '广东省', '肇庆市', '郁南县', '441229'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3596, '广东省', '肇庆市', '罗定县', '441230'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3597, '广东省', '肇庆市', '云浮市', '441281'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3598, '广东省', '肇庆市', '罗定市', '441282'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3599, '广东省', '肇庆市', '高要市', '441283'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3600, '广东省', '肇庆市', '四会市', '441284'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3601, '广东省', '惠州市', '市辖区', '441301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3602, '广东省', '惠州市', '惠城区', '441302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3603, '广东省', '惠州市', '惠阳区', '441303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3604, '广东省', '惠州市', '惠阳县', '441321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3605, '广东省', '惠州市', '博罗县', '441322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3606, '广东省', '惠州市', '惠东县', '441323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3607, '广东省', '惠州市', '龙门县', '441324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3608, '广东省', '惠州市', '惠阳市', '441381'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3609, '广东省', '梅州市', '市辖区', '441401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3610, '广东省', '梅州市', '梅江区', '441402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3611, '广东省', '梅州市', '梅县', '441421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3612, '广东省', '梅州市', '大埔县', '441422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3613, '广东省', '梅州市', '丰顺县', '441423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3614, '广东省', '梅州市', '五华县', '441424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3615, '广东省', '梅州市', '兴宁县', '441425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3616, '广东省', '梅州市', '平远县', '441426'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3617, '广东省', '梅州市', '蕉岭县', '441427'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3618, '广东省', '梅州市', '兴宁市', '441481'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3619, '广东省', '汕尾市', '市辖区', '441501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3620, '广东省', '汕尾市', '城区', '441502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3621, '广东省', '汕尾市', '海丰县', '441521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3622, '广东省', '汕尾市', '陆丰县', '441522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3623, '广东省', '汕尾市', '陆河县', '441523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3624, '广东省', '汕尾市', '陆丰市', '441581'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3625, '广东省', '河源市', '市辖区', '441601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3626, '广东省', '河源市', '源城区', '441602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3627, '广东省', '河源市', '郊区', '441611'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3628, '广东省', '河源市', '紫金县', '441621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3629, '广东省', '河源市', '龙川县', '441622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3630, '广东省', '河源市', '连平县', '441623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3631, '广东省', '河源市', '和平县', '441624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3632, '广东省', '河源市', '东源县', '441625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3633, '广东省', '阳江市', '市辖区', '441701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3634, '广东省', '阳江市', '江城区', '441702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3635, '广东省', '阳江市', '阳东区', '441703'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3636, '广东省', '阳江市', '阳西县', '441721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3637, '广东省', '阳江市', '阳春县', '441722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3638, '广东省', '阳江市', '阳东县', '441723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3639, '广东省', '阳江市', '阳春市', '441781'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3640, '广东省', '云浮市', '市辖区', '445301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3641, '广东省', '云浮市', '云城区', '445302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3642, '广东省', '云浮市', '新兴县', '445321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3643, '广东省', '云浮市', '郁南县', '445322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3644, '广东省', '云浮市', '云安县', '445323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3645, '广东省', '云浮市', '罗定市', '445381'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3646, '广东省', NULL, '东莞市', '441900'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3647, '广东省', NULL, '中山市', '442000'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3648, '广东省', NULL, '连平县', '442524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3649, '广东省', NULL, '河源县', '442525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3650, '广东省', NULL, '博罗县', '442526'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3651, '广东省', NULL, '东莞县', '442527'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3652, '广东省', NULL, '惠东县', '442528'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3653, '广东省', NULL, '龙川县', '442529'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3654, '广东省', NULL, '陆丰县', '442530'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3655, '广东省', NULL, '海丰县', '442531'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3656, '广东省', NULL, '始兴县', '442621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3657, '广东省', NULL, '南雄县', '442622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3658, '广东省', NULL, '仁化县', '442623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3659, '广东省', NULL, '乐昌县', '442624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3660, '广东省', NULL, '清远县', '442628'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3661, '广东省', NULL, '翁源县', '442630'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3662, '广东省', NULL, '连山壮族瑶族自治县', '442631'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3663, '广东省', NULL, '连南瑶族自治县', '442632'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3664, '广东省', NULL, '乳源瑶族自治县', '442633'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3665, '广东省', NULL, '高要县', '442821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3666, '广东省', NULL, '四会县', '442822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3667, '广东省', NULL, '广宁县', '442823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3668, '广东省', NULL, '怀集县', '442824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3669, '广东省', NULL, '封开县', '442825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3670, '广东省', NULL, '德庆县', '442826'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3671, '广东省', NULL, '云浮县', '442827'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3672, '广东省', NULL, '新兴县', '442828'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3673, '广东省', NULL, '郁南县', '442829'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3674, '广东省', NULL, '罗定县', '442830'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3675, '广东省', NULL, '惠州市', '442501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3676, '广东省', NULL, '东莞市', '442502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3677, '广东省', NULL, '惠阳县', '442521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3678, '广东省', NULL, '紫金县', '442522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3679, '广东省', NULL, '和平县', '442523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3680, '广西壮族自治区', '百色市', '市辖区', '451001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3681, '广西壮族自治区', '百色市', '右江区', '451002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3682, '广西壮族自治区', '百色市', '田阳县', '451021'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3683, '广西壮族自治区', '百色市', '田东县', '451022'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3684, '广西壮族自治区', '百色市', '平果县', '451023'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3685, '广西壮族自治区', '百色市', '德保县', '451024'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3686, '广西壮族自治区', '百色市', '靖西县', '451025'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3687, '广西壮族自治区', '百色市', '那坡县', '451026'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3688, '广西壮族自治区', '百色市', '凌云县', '451027'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3689, '广西壮族自治区', '百色市', '乐业县', '451028'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3690, '广西壮族自治区', '百色市', '田林县', '451029'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3691, '广西壮族自治区', '百色市', '西林县', '451030'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3692, '广西壮族自治区', '百色市', '隆林各族自治县', '451031'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3693, '广西壮族自治区', '贺州市', '市辖区', '451101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3694, '广西壮族自治区', '贺州市', '八步区', '451102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3695, '广西壮族自治区', '贺州市', '昭平县', '451121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3696, '广西壮族自治区', '贺州市', '钟山县', '451122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3697, '广西壮族自治区', '贺州市', '富川瑶族自治县', '451123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3698, '广西壮族自治区', '河池市', '市辖区', '451201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3699, '广西壮族自治区', '河池市', '金城江区', '451202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3700, '广西壮族自治区', '河池市', '南丹县', '451221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3701, '广西壮族自治区', '河池市', '天峨县', '451222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3702, '广西壮族自治区', '河池市', '凤山县', '451223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3703, '广西壮族自治区', '河池市', '东兰县', '451224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3704, '广西壮族自治区', '河池市', '罗城仫佬族自治县', '451225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3705, '广西壮族自治区', '河池市', '环江毛南族自治县', '451226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3706, '广西壮族自治区', '河池市', '巴马瑶族自治县', '451227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3707, '广西壮族自治区', '河池市', '都安瑶族自治县', '451228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3708, '广西壮族自治区', '河池市', '大化瑶族自治县', '451229'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3709, '广西壮族自治区', '河池市', '宜州市', '451281'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3710, '广西壮族自治区', '来宾市', '市辖区', '451301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3711, '广西壮族自治区', '来宾市', '兴宾区', '451302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3712, '广西壮族自治区', '来宾市', '忻城县', '451321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3713, '广西壮族自治区', '来宾市', '象州县', '451322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3714, '广西壮族自治区', '来宾市', '武宣县', '451323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3715, '广西壮族自治区', '来宾市', '金秀瑶族自治县', '451324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3716, '广西壮族自治区', '来宾市', '合山市', '451381'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3717, '广西壮族自治区', '崇左市', '市辖区', '451401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3718, '广西壮族自治区', '崇左市', '江洲区', '451402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3719, '广西壮族自治区', '崇左市', '扶绥县', '451421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3720, '广西壮族自治区', '崇左市', '宁明县', '451422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3721, '广西壮族自治区', '崇左市', '龙州县', '451423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3722, '广西壮族自治区', '崇左市', '大新县', '451424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3723, '广西壮族自治区', '崇左市', '天等县', '451425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3724, '广西壮族自治区', '崇左市', '凭祥市', '451481'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3725, '广西壮族自治区', '南宁地区', '凭祥市', '452101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3726, '广西壮族自治区', '南宁地区', '横县', '452122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3727, '广西壮族自治区', '南宁地区', '宾阳县', '452123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3728, '广西壮族自治区', '南宁地区', '上林县', '452124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3729, '广西壮族自治区', '南宁地区', '隆安县', '452126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3730, '广西壮族自治区', '南宁地区', '马山县', '452127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3731, '广西壮族自治区', '南宁地区', '扶绥县', '452128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3732, '广西壮族自治区', '南宁地区', '崇左县', '452129'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3733, '广西壮族自治区', '南宁地区', '大新县', '452130'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3734, '广西壮族自治区', '南宁地区', '天等县', '452131'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3735, '广西壮族自治区', '南宁地区', '宁明县', '452132'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3736, '广西壮族自治区', '南宁地区', '龙州县', '452133'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3737, '广西壮族自治区', '柳州地区', '合山市', '452201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3738, '广西壮族自治区', '柳州地区', '鹿寨县', '452223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3739, '广西壮族自治区', '柳州地区', '象州县', '452224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3740, '广西壮族自治区', '柳州地区', '武宣县', '452225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3741, '广西壮族自治区', '柳州地区', '来宾县', '452226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3742, '广西壮族自治区', '柳州地区', '融安县', '452227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3743, '广西壮族自治区', '柳州地区', '三江侗族自治县', '452228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3744, '广西壮族自治区', '柳州地区', '融水苗族自治县', '452229'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3745, '广西壮族自治区', '柳州地区', '金秀瑶族自治县', '452230'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3746, '广西壮族自治区', '柳州地区', '忻城县', '452231'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3747, '广西壮族自治区', '南宁市', '市辖区', '450101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3748, '广西壮族自治区', '南宁市', '兴宁区', '450102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3749, '广西壮族自治区', '南宁市', '青秀区', '450103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3750, '广西壮族自治区', '南宁市', '城北区', '450104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3751, '广西壮族自治区', '南宁市', '江南区', '450105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3752, '广西壮族自治区', '南宁市', '永新区', '450106'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3753, '广西壮族自治区', '南宁市', '西乡塘区', '450107'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3754, '广西壮族自治区', '南宁市', '良庆区', '450108'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3755, '广西壮族自治区', '南宁市', '邕宁区', '450109'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3756, '广西壮族自治区', '南宁市', '郊区', '450111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3757, '广西壮族自治区', '南宁市', '邕宁县', '450121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3758, '广西壮族自治区', '南宁市', '武鸣县', '450122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3759, '广西壮族自治区', '南宁市', '隆安县', '450123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3760, '广西壮族自治区', '南宁市', '马山县', '450124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3761, '广西壮族自治区', '南宁市', '上林县', '450125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3762, '广西壮族自治区', '南宁市', '宾阳县', '450126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3763, '广西壮族自治区', '南宁市', '横县', '450127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3764, '广西壮族自治区', '柳州市', '市辖区', '450201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3765, '广西壮族自治区', '柳州市', '城中区', '450202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3766, '广西壮族自治区', '柳州市', '鱼峰区', '450203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3767, '广西壮族自治区', '柳州市', '柳南区', '450204'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3768, '广西壮族自治区', '柳州市', '柳北区', '450205'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3769, '广西壮族自治区', '柳州市', '市郊区', '450211'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3770, '广西壮族自治区', '柳州市', '柳江县', '450221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3771, '广西壮族自治区', '柳州市', '柳城县', '450222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3772, '广西壮族自治区', '柳州市', '鹿寨县', '450223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3773, '广西壮族自治区', '柳州市', '融安县', '450224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3774, '广西壮族自治区', '柳州市', '融水苗族自治县', '450225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3775, '广西壮族自治区', '柳州市', '三江侗族自治县', '450226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3776, '广西壮族自治区', '桂林市', '市辖区', '450301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3777, '广西壮族自治区', '桂林市', '秀峰区', '450302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3778, '广西壮族自治区', '桂林市', '叠彩区', '450303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3779, '广西壮族自治区', '桂林市', '象山区', '450304'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3780, '广西壮族自治区', '桂林市', '七星区', '450305'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3781, '广西壮族自治区', '桂林市', '雁山区', '450311'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3782, '广西壮族自治区', '桂林市', '阳朔县', '450321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3783, '广西壮族自治区', '桂林市', '临桂县', '450322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3784, '广西壮族自治区', '桂林市', '灵川县', '450323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3785, '广西壮族自治区', '桂林市', '全州县', '450324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3786, '广西壮族自治区', '桂林市', '兴安县', '450325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3787, '广西壮族自治区', '桂林市', '永福县', '450326'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3788, '广西壮族自治区', '桂林市', '灌阳县', '450327'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3789, '广西壮族自治区', '桂林市', '龙胜各族自治县', '450328'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3790, '广西壮族自治区', '桂林市', '资源县', '450329'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3791, '广西壮族自治区', '桂林市', '平乐县', '450330'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3792, '广西壮族自治区', '桂林市', '荔蒲县', '450331'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3793, '广西壮族自治区', '桂林市', '恭城瑶族自治县', '450332'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3794, '广西壮族自治区', '梧州市', '市辖区', '450401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3795, '广西壮族自治区', '梧州市', '白云区', '450402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3796, '广西壮族自治区', '梧州市', '万秀区', '450403'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3797, '广西壮族自治区', '梧州市', '蝶山区', '450404'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3798, '广西壮族自治区', '梧州市', '长洲区', '450405'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3799, '广西壮族自治区', '梧州市', '市郊区', '450411'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3800, '广西壮族自治区', '梧州市', '苍梧县', '450421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3801, '广西壮族自治区', '梧州市', '藤县', '450422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3802, '广西壮族自治区', '梧州市', '蒙山县', '450423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3803, '广西壮族自治区', '梧州市', '岑溪市', '450481'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3804, '广西壮族自治区', '北海市', '市辖区', '450501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3805, '广西壮族自治区', '北海市', '海城区', '450502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3806, '广西壮族自治区', '北海市', '银海区', '450503'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3807, '广西壮族自治区', '北海市', '铁山港区', '450512'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3808, '广西壮族自治区', '北海市', '合浦县', '450521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3809, '广西壮族自治区', '防城港市', '市辖区', '450601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3810, '广西壮族自治区', '防城港市', '港口区', '450602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3811, '广西壮族自治区', '防城港市', '防城区', '450603'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3812, '广西壮族自治区', '防城港市', '上思县', '450621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3813, '广西壮族自治区', '防城港市', '东兴市', '450681'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3814, '广西壮族自治区', '钦州市', '市辖区', '450701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3815, '广西壮族自治区', '钦州市', '钦南区', '450702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3816, '广西壮族自治区', '钦州市', '钦北区', '450703'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3817, '广西壮族自治区', '钦州市', '灵山县', '450721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3818, '广西壮族自治区', '钦州市', '浦北县', '450722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3819, '广西壮族自治区', '贵港市', '市辖区', '450801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3820, '广西壮族自治区', '贵港市', '港北区', '450802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3821, '广西壮族自治区', '贵港市', '港南区', '450803'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3822, '广西壮族自治区', '贵港市', '覃塘区', '450804'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3823, '广西壮族自治区', '贵港市', '平南县', '450821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3824, '广西壮族自治区', '贵港市', '桂平市', '450881'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3825, '广西壮族自治区', '玉林市', '市辖区', '450901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3826, '广西壮族自治区', '玉林市', '玉州区', '450902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3827, '广西壮族自治区', '玉林市', '容县', '450921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3828, '广西壮族自治区', '玉林市', '陆川县', '450922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3829, '广西壮族自治区', '玉林市', '博白县', '450923'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3830, '广西壮族自治区', '玉林市', '兴业县', '450924'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3831, '广西壮族自治区', '玉林市', '北流市', '450981'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3832, '广西壮族自治区', '桂林地区', '临桂县', '452321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3833, '广西壮族自治区', '桂林地区', '灵川县', '452322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3834, '广西壮族自治区', '桂林地区', '全州县', '452323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3835, '广西壮族自治区', '桂林地区', '兴安县', '452324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3836, '广西壮族自治区', '桂林地区', '永福县', '452325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3837, '广西壮族自治区', '桂林地区', '灌阳县', '452327'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3838, '广西壮族自治区', '桂林地区', '龙胜各族自治县', '452328'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3839, '广西壮族自治区', '桂林地区', '资源县', '452329'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3840, '广西壮族自治区', '桂林地区', '平乐县', '452330'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3841, '广西壮族自治区', '桂林地区', '荔蒲县', '452331'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3842, '广西壮族自治区', '桂林地区', '恭城瑶族自治县', '452332'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3843, '广西壮族自治区', '贺州地区', '岑溪市', '452401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3844, '广西壮族自治区', '贺州地区', '贺州市', '452402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3845, '广西壮族自治区', '贺州地区', '岑溪县', '452421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3846, '广西壮族自治区', '贺州地区', '苍梧县', '452422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3847, '广西壮族自治区', '贺州地区', '藤县', '452423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3848, '广西壮族自治区', '贺州地区', '昭平县', '452424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3849, '广西壮族自治区', '贺州地区', '蒙山县', '452425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3850, '广西壮族自治区', '贺州地区', '贺县', '452426'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3851, '广西壮族自治区', '贺州地区', '钟山县', '452427'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3852, '广西壮族自治区', '贺州地区', '富川瑶族自治县', '452428'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3853, '广西壮族自治区', '玉林地区', '玉林市', '452501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3854, '广西壮族自治区', '玉林地区', '贵港市', '452502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3855, '广西壮族自治区', '玉林地区', '北流市', '452503'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3856, '广西壮族自治区', '玉林地区', '桂平市', '452504'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3857, '广西壮族自治区', '玉林地区', '玉林县', '452521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3858, '广西壮族自治区', '玉林地区', '贵县', '452522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3859, '广西壮族自治区', '玉林地区', '桂平县', '452523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3860, '广西壮族自治区', '玉林地区', '平南县', '452524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3861, '广西壮族自治区', '玉林地区', '容县', '452525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3862, '广西壮族自治区', '玉林地区', '北流县', '452526'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3863, '广西壮族自治区', '玉林地区', '陆川县', '452527'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3864, '广西壮族自治区', '玉林地区', '博白县', '452528'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3865, '广西壮族自治区', '百色地区', '百色市', '452601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3866, '广西壮族自治区', '百色地区', '百色县', '452621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3867, '广西壮族自治区', '百色地区', '田阳县', '452622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3868, '广西壮族自治区', '百色地区', '田东县', '452623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3869, '广西壮族自治区', '百色地区', '平果县', '452624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3870, '广西壮族自治区', '百色地区', '德保县', '452625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3871, '广西壮族自治区', '百色地区', '靖西县', '452626'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3872, '广西壮族自治区', '百色地区', '那坡县', '452627'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3873, '广西壮族自治区', '百色地区', '凌云县', '452628'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3874, '广西壮族自治区', '百色地区', '乐业县', '452629'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3875, '广西壮族自治区', '百色地区', '田林县', '452630'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3876, '广西壮族自治区', '百色地区', '隆林各族自治县', '452631'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3877, '广西壮族自治区', '百色地区', '西林县', '452632'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3878, '广西壮族自治区', '河池地区', '河池市', '452701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3879, '广西壮族自治区', '河池地区', '宜州市', '452702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3880, '广西壮族自治区', '河池地区', '河池县', '452721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3881, '广西壮族自治区', '河池地区', '宜山县', '452722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3882, '广西壮族自治区', '河池地区', '罗城仫佬族自治县', '452723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3883, '广西壮族自治区', '河池地区', '环江毛南族自治县', '452724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3884, '广西壮族自治区', '河池地区', '南丹县', '452725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3885, '广西壮族自治区', '河池地区', '天峨县', '452726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3886, '广西壮族自治区', '河池地区', '凤山县', '452727'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3887, '广西壮族自治区', '河池地区', '东兰县', '452728'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3888, '广西壮族自治区', '河池地区', '巴马瑶族自治县', '452729'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3889, '广西壮族自治区', '河池地区', '都安瑶族自治县', '452730'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3890, '广西壮族自治区', '河池地区', '大化瑶族自治县', '452731'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3891, '广西壮族自治区', '钦州地区', '北海市', '452801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3892, '广西壮族自治区', '钦州地区', '钦州市', '452802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3893, '广西壮族自治区', '钦州地区', '上思县', '452821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3894, '广西壮族自治区', '钦州地区', '防城各族自治县', '452822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3895, '广西壮族自治区', '钦州地区', '钦州县', '452823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3896, '广西壮族自治区', '钦州地区', '灵山县', '452824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3897, '广西壮族自治区', '钦州地区', '合浦县', '452825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3898, '广西壮族自治区', '钦州地区', '浦北县', '452826'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3899, '海南省', '海口市', '市辖区', '460101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3900, '海南省', '海口市', '振东区', '460102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3901, '海南省', '海口市', '新华区', '460103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3902, '海南省', '海口市', '秀英区', '460104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3903, '海南省', '海口市', '秀英区', '460105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3904, '海南省', '海口市', '龙华区', '460106'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3905, '海南省', '海口市', '琼山区', '460107'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3906, '海南省', '海口市', '美兰区', '460108'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3907, '海南省', '三亚市', '市辖区', '460201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3908, '海南省', NULL, '陵水黎族自治县', '469034'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3909, '海南省', NULL, '保亭黎族苗族自治县', '469035'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3910, '海南省', NULL, '琼中黎族苗族自治县', '469036'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3911, '海南省', NULL, '西沙群岛', '469037'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3912, '海南省', NULL, '南沙群岛', '469038'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3913, '海南省', NULL, '中沙群岛的岛礁及其海域', '469039'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3914, '海南省', NULL, '通什市', '460001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3915, '海南省', NULL, '琼海市', '460002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3916, '海南省', NULL, '儋州市', '460003'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3917, '海南省', NULL, '琼山市', '460004'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3918, '海南省', NULL, '文昌市', '460005'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3919, '海南省', NULL, '万宁市', '460006'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3920, '海南省', NULL, '东方市', '460007'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3921, '海南省', NULL, '琼山县', '460021'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3922, '海南省', NULL, '文昌县', '460022'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3923, '海南省', NULL, '琼海县', '460023'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3924, '海南省', NULL, '万宁县', '460024'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3925, '海南省', NULL, '定安县', '460025'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3926, '海南省', NULL, '屯昌县', '460026'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3927, '海南省', NULL, '澄迈县', '460027'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3928, '海南省', NULL, '临高县', '460028'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3929, '海南省', NULL, '儋县', '460029'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3930, '海南省', NULL, '白沙黎族自治县', '460030'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3931, '海南省', NULL, '昌江黎族自治县', '460031'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3932, '海南省', NULL, '东方黎族自治县', '460032'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3933, '海南省', NULL, '乐东黎族自治县', '460033'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3934, '海南省', NULL, '陵水黎族自治县', '460034'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3935, '海南省', NULL, '保亭黎族苗族自治县', '460035'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3936, '海南省', NULL, '琼中黎族苗族自治县', '460036'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3937, '海南省', NULL, '西沙群岛', '460037'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3938, '海南省', NULL, '南沙群岛', '460038'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3939, '海南省', NULL, '中沙群岛的岛礁及其海域', '460039'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3940, '海南省', NULL, '五指山市', '469001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3941, '海南省', NULL, '琼海市', '469002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3942, '海南省', NULL, '儋州市', '469003'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3943, '海南省', NULL, '文昌市', '469005'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3944, '海南省', NULL, '万宁市', '469006'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3945, '海南省', NULL, '东方市', '469007'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3946, '海南省', NULL, '定安县', '469025'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3947, '海南省', NULL, '屯昌县', '469026'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3948, '海南省', NULL, '澄迈县', '469027'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3949, '海南省', NULL, '临高县', '469028'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3950, '海南省', NULL, '白沙黎族自治县', '469030'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3951, '海南省', NULL, '昌江黎族自治县', '469031'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3952, '海南省', NULL, '乐东黎族自治县', '469033'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3953, '重庆市', '市', '江津市', '500381'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3954, '重庆市', '市', '合川市', '500382'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3955, '重庆市', '市', '永川市', '500383'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3956, '重庆市', '市', '南川市', '500384'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3957, '重庆市', NULL, '万州区', '500101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3958, '重庆市', NULL, '涪陵区', '500102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3959, '重庆市', NULL, '渝中区', '500103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3960, '重庆市', NULL, '大渡口区', '500104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3961, '重庆市', NULL, '江北区', '500105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3962, '重庆市', NULL, '沙坪坝区', '500106'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3963, '重庆市', NULL, '九龙坡区', '500107'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3964, '重庆市', NULL, '南岸区', '500108'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3965, '重庆市', NULL, '北碚区', '500109'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3966, '重庆市', NULL, '万盛区', '500110'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3967, '重庆市', NULL, '双桥区', '500111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3968, '重庆市', NULL, '渝北区', '500112'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3969, '重庆市', NULL, '巴南区', '500113'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3970, '重庆市', NULL, '黔江区', '500114'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3971, '重庆市', NULL, '长寿区', '500115'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3972, '重庆市', NULL, '渝中区', '500201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3973, '重庆市', NULL, '江北区', '500211'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3974, '重庆市', NULL, '沙坪坝区', '500212'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3975, '重庆市', NULL, '九龙坡区', '500213'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3976, '重庆市', NULL, '南岸区', '500214'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3977, '重庆市', NULL, '北碚区', '500215'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3978, '重庆市', NULL, '万盛区', '500216'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3979, '重庆市', NULL, '双桥区', '500217'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3980, '重庆市', NULL, '长寿县', '500221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3981, '重庆市', NULL, '綦江县', '500222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3982, '重庆市', NULL, '潼南县', '500223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3983, '重庆市', NULL, '铜梁县', '500224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3984, '重庆市', NULL, '大足县', '500225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3985, '重庆市', NULL, '荣昌县', '500226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3986, '重庆市', NULL, '璧山县', '500227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3987, '重庆市', NULL, '梁平县', '500228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3988, '重庆市', NULL, '城口县', '500229'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3989, '重庆市', NULL, '丰都县', '500230'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3990, '重庆市', NULL, '垫江县', '500231'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3991, '重庆市', NULL, '武隆县', '500232'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3992, '重庆市', NULL, '忠县', '500233'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3993, '重庆市', NULL, '开县', '500234'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3994, '重庆市', NULL, '云阳县', '500235'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3995, '重庆市', NULL, '奉节县', '500236'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3996, '重庆市', NULL, '巫山县', '500237'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3997, '重庆市', NULL, '巫溪县', '500238'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3998, '重庆市', NULL, '黔江土家族苗族自治县', '500239'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (3999, '重庆市', NULL, '石柱土家族自治县', '500240'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4000, '重庆市', NULL, '秀山土家族苗族自治县', '500241'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4001, '重庆市', NULL, '酉阳土家族苗族自治县', '500242'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4002, '重庆市', NULL, '彭水苗族土家族自治县', '500243'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4003, '四川省', '自贡市', '市辖区', '510301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4004, '四川省', '自贡市', '自流井区', '510302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4005, '四川省', '自贡市', '贡井区', '510303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4006, '四川省', '自贡市', '大安区', '510304'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4007, '四川省', '自贡市', '沿滩区', '510311'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4008, '四川省', '自贡市', '荣县', '510321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4009, '四川省', '自贡市', '富顺县', '510322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4010, '四川省', '攀枝花市', '市辖区', '510401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4011, '四川省', '攀枝花市', '东区', '510402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4012, '四川省', '攀枝花市', '西区', '510403'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4013, '四川省', '攀枝花市', '仁和区', '510411'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4014, '四川省', '攀枝花市', '米易县', '510421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4015, '四川省', '攀枝花市', '盐边县', '510422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4016, '四川省', '泸州市', '市辖区', '510501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4017, '四川省', '泸州市', '江阳区', '510502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4018, '四川省', '泸州市', '纳溪区', '510503'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4019, '四川省', '泸州市', '龙马潭区', '510504'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4020, '四川省', '泸州市', '泸县', '510521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4021, '四川省', '泸州市', '合江县', '510522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4022, '四川省', '泸州市', '纳溪县', '510523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4023, '四川省', '泸州市', '叙永县', '510524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4024, '四川省', '泸州市', '古蔺县', '510525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4025, '四川省', '德阳市', '市辖区', '510601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4026, '四川省', '德阳市', '市中区', '510602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4027, '四川省', '德阳市', '旌阳区', '510603'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4028, '四川省', '德阳市', '绵竹县', '510622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4029, '四川省', '德阳市', '中江县', '510623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4030, '四川省', '德阳市', '广汉县', '510624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4031, '四川省', '德阳市', '什邡县', '510625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4032, '四川省', '德阳市', '罗江县', '510626'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4033, '四川省', '德阳市', '广汉市', '510681'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4034, '四川省', '德阳市', '什邡市', '510682'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4035, '四川省', '德阳市', '绵竹市', '510683'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4036, '四川省', '绵阳市', '市辖区', '510701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4037, '四川省', '绵阳市', '市中区', '510702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4038, '四川省', '绵阳市', '涪城区', '510703'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4039, '四川省', '绵阳市', '游仙区', '510704'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4040, '四川省', '绵阳市', '江油县', '510721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4041, '四川省', '绵阳市', '三台县', '510722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4042, '四川省', '绵阳市', '盐亭县', '510723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4043, '四川省', '绵阳市', '安县', '510724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4044, '四川省', '绵阳市', '梓潼县', '510725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4045, '四川省', '绵阳市', '北川县', '510726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4046, '四川省', '绵阳市', '平武县', '510727'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4047, '四川省', '绵阳市', '江油市', '510781'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4048, '四川省', '广元市', '市辖区', '510801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4049, '四川省', '广元市', '市中区', '510802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4050, '四川省', '广元市', '元坝区', '510811'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4051, '四川省', '广元市', '朝天区', '510812'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4052, '四川省', '广元市', '旺苍县', '510821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4053, '四川省', '广元市', '青川县', '510822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4054, '四川省', '广元市', '剑阁县', '510823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4055, '四川省', '广元市', '苍溪县', '510824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4056, '四川省', '遂宁市', '市辖区', '510901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4057, '四川省', '遂宁市', '市中区', '510902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4058, '四川省', '遂宁市', '船山区', '510903'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4059, '四川省', '遂宁市', '安居区', '510904'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4060, '四川省', '遂宁市', '蓬溪县', '510921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4061, '四川省', '遂宁市', '射洪县', '510922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4062, '四川省', '遂宁市', '大英县', '510923'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4063, '四川省', '内江市', '市辖区', '511001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4064, '四川省', '内江市', '市中区', '511002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4065, '四川省', '内江市', '东兴区', '511011'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4066, '四川省', '内江市', '内江县', '511021'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4067, '四川省', '内江市', '乐至县', '511022'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4068, '四川省', '内江市', '安岳县', '511023'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4069, '四川省', '内江市', '威远县', '511024'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4070, '四川省', '内江市', '资中县', '511025'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4071, '四川省', '内江市', '资阳市', '511026'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4072, '四川省', '内江市', '简阳县', '511027'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4073, '四川省', '内江市', '隆昌县', '511028'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4074, '四川省', '内江市', '资阳市', '511081'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4075, '四川省', '万县地区', '奉节县', '512226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4076, '四川省', '万县地区', '巫山县', '512227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4077, '四川省', '万县地区', '巫溪县', '512228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4078, '四川省', '万县地区', '城口县', '512229'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4079, '四川省', '万县地区', '万县市', '512201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4080, '四川省', '万县地区', '万县', '512221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4081, '四川省', '万县地区', '开县', '512222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4082, '四川省', '万县地区', '忠县', '512223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4083, '四川省', '万县地区', '梁平县', '512224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4084, '四川省', '万县地区', '云阳县', '512225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4085, '四川省', '涪陵地区', '涪陵市', '512301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4086, '四川省', '涪陵地区', '南川市', '512302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4087, '四川省', '涪陵地区', '涪陵县', '512321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4088, '四川省', '涪陵地区', '垫江县', '512322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4089, '四川省', '涪陵地区', '南川县', '512323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4090, '四川省', '涪陵地区', '丰都县', '512324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4091, '四川省', '涪陵地区', '石柱县', '512325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4092, '四川省', '涪陵地区', '武隆县', '512326'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4093, '四川省', '涪陵地区', '彭水县', '512327'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4094, '四川省', '涪陵地区', '黔江县', '512328'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4095, '四川省', '涪陵地区', '酉阳县', '512329'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4096, '四川省', '涪陵地区', '秀山县', '512330'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4097, '四川省', '宜宾地区', '宜宾市', '512501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4098, '四川省', '宜宾地区', '宜宾县', '512527'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4099, '四川省', '宜宾地区', '南溪县', '512528'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4100, '四川省', '宜宾地区', '江安县', '512529'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4101, '四川省', '宜宾地区', '长宁县', '512530'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4102, '四川省', '宜宾地区', '高县', '512531'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4103, '四川省', '宜宾地区', '筠连县', '512532'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4104, '四川省', '宜宾地区', '珙县', '512533'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4105, '四川省', '宜宾地区', '兴文县', '512534'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4106, '四川省', '宜宾地区', '屏山县', '512535'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4107, '四川省', '南充地区', '南充市', '512901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4108, '四川省', '南充地区', '华蓥市', '512902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4109, '四川省', '南充地区', '阆中市', '512903'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4110, '四川省', '南充地区', '南充县', '512921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4111, '四川省', '南充地区', '南部县', '512922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4112, '四川省', '南充地区', '岳池县', '512923'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4113, '四川省', '南充地区', '营山县', '512924'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4114, '四川省', '南充地区', '广安县', '512925'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4115, '四川省', '南充地区', '蓬安县', '512926'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4116, '四川省', '南充地区', '仪陇县', '512927'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4117, '四川省', '南充地区', '武胜县', '512928'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4118, '四川省', '南充地区', '西充县', '512929'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4119, '四川省', '南充地区', '阆中县', '512930'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4120, '四川省', '南充地区', '苍溪县', '512931'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4121, '四川省', '南充地区', '华云工农区', '512932'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4122, '四川省', '达川地区', '达川市', '513001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4123, '四川省', '达川地区', '万源市', '513002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4124, '四川省', '达川地区', '达县', '513021'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4125, '四川省', '达川地区', '宣汉县', '513022'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4126, '四川省', '达川地区', '开江县', '513023'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4127, '四川省', '达川地区', '万源县', '513024'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4128, '四川省', '达川地区', '通江县', '513025'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4129, '四川省', '达川地区', '南江县', '513026'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4130, '四川省', '达川地区', '巴中县', '513027'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4131, '四川省', '达川地区', '平昌县', '513028'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4132, '四川省', '达川地区', '大竹县', '513029'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4133, '四川省', '达川地区', '渠县', '513030'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4134, '四川省', '达川地区', '邻水县', '513031'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4135, '四川省', '达川地区', '白沙工农区', '513032'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4136, '四川省', '雅安地区', '雅安市', '513101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4137, '四川省', '雅安地区', '名山县', '513122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4138, '四川省', '雅安地区', '荥经县', '513123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4139, '四川省', '雅安地区', '汉源县', '513124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4140, '四川省', '雅安地区', '石棉县', '513125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4141, '四川省', '雅安地区', '天全县', '513126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4142, '四川省', '雅安地区', '芦山县', '513127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4143, '四川省', '雅安地区', '宝兴县', '513128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4144, '四川省', '阿坝藏族羌族自治州', '汶川县', '513221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4145, '四川省', '阿坝藏族羌族自治州', '理县', '513222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4146, '四川省', '阿坝藏族羌族自治州', '茂县', '513223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4147, '四川省', '阿坝藏族羌族自治州', '松潘县', '513224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4148, '四川省', '阿坝藏族羌族自治州', '九寨沟县', '513225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4149, '四川省', '阿坝藏族羌族自治州', '金川县', '513226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4150, '四川省', '阿坝藏族羌族自治州', '小金县', '513227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4151, '四川省', '阿坝藏族羌族自治州', '黑水县', '513228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4152, '四川省', '阿坝藏族羌族自治州', '马尔康县', '513229'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4153, '四川省', '阿坝藏族羌族自治州', '壤塘县', '513230'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4154, '四川省', '阿坝藏族羌族自治州', '阿坝县', '513231'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4155, '四川省', '阿坝藏族羌族自治州', '若尔盖县', '513232'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4156, '四川省', '阿坝藏族羌族自治州', '红原县', '513233'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4157, '四川省', '甘孜藏族自治州', '康定县', '513321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4158, '四川省', '甘孜藏族自治州', '泸定县', '513322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4159, '四川省', '甘孜藏族自治州', '丹巴县', '513323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4160, '四川省', '甘孜藏族自治州', '九龙县', '513324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4161, '四川省', '甘孜藏族自治州', '雅江县', '513325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4162, '四川省', '甘孜藏族自治州', '道孚县', '513326'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4163, '四川省', '甘孜藏族自治州', '炉霍县', '513327'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4164, '四川省', '甘孜藏族自治州', '甘孜县', '513328'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4165, '四川省', '甘孜藏族自治州', '新龙县', '513329'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4166, '四川省', '甘孜藏族自治州', '德格县', '513330'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4167, '四川省', '甘孜藏族自治州', '白玉县', '513331'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4168, '四川省', '甘孜藏族自治州', '石渠县', '513332'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4169, '四川省', '甘孜藏族自治州', '色达县', '513333'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4170, '四川省', '甘孜藏族自治州', '理塘县', '513334'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4171, '四川省', '甘孜藏族自治州', '巴塘县', '513335'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4172, '四川省', '甘孜藏族自治州', '乡城县', '513336'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4173, '四川省', '甘孜藏族自治州', '稻城县', '513337'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4174, '四川省', '甘孜藏族自治州', '得荣县', '513338'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4175, '四川省', '凉山彝族自治州', '西昌市', '513401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4176, '四川省', '凉山彝族自治州', '木里藏族自治县', '513422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4177, '四川省', '凉山彝族自治州', '盐源县', '513423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4178, '四川省', '凉山彝族自治州', '德昌县', '513424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4179, '四川省', '凉山彝族自治州', '会理县', '513425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4180, '四川省', '凉山彝族自治州', '会东县', '513426'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4181, '四川省', '凉山彝族自治州', '宁南县', '513427'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4182, '四川省', '凉山彝族自治州', '普格县', '513428'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4183, '四川省', '凉山彝族自治州', '布拖县', '513429'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4184, '四川省', '凉山彝族自治州', '金阳县', '513430'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4185, '四川省', '凉山彝族自治州', '昭觉县', '513431'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4186, '四川省', '凉山彝族自治州', '喜德县', '513432'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4187, '四川省', '凉山彝族自治州', '冕宁县', '513433'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4188, '四川省', '凉山彝族自治州', '越西县', '513434'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4189, '四川省', '凉山彝族自治州', '甘洛县', '513435'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4190, '四川省', '凉山彝族自治州', '美姑县', '513436'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4191, '四川省', '凉山彝族自治州', '雷波县', '513437'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4192, '四川省', '成都市', '市辖区', '510101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4193, '四川省', '成都市', '东城区', '510102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4194, '四川省', '成都市', '西城区', '510103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4195, '四川省', '成都市', '锦江区', '510104'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4196, '四川省', '成都市', '青羊区', '510105'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4197, '四川省', '成都市', '金牛区', '510106'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4198, '四川省', '成都市', '武侯区', '510107'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4199, '四川省', '成都市', '成华区', '510108'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4200, '四川省', '成都市', '金牛区', '510111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4201, '四川省', '成都市', '龙泉驿区', '510112'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4202, '四川省', '成都市', '青白江区', '510113'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4203, '四川省', '成都市', '新都区', '510114'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4204, '四川省', '成都市', '市区', '510120'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4205, '四川省', '成都市', '金堂县', '510121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4206, '四川省', '成都市', '双流县', '510122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4207, '四川省', '成都市', '温江县', '510123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4208, '四川省', '成都市', '郫县', '510124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4209, '四川省', '成都市', '新都县', '510125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4210, '四川省', '成都市', '彭县', '510126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4211, '四川省', '成都市', '灌县', '510127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4212, '四川省', '成都市', '崇庆县', '510128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4213, '四川省', '成都市', '大邑县', '510129'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4214, '四川省', '成都市', '邛崃县', '510130'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4215, '四川省', '成都市', '蒲江县', '510131'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4216, '四川省', '成都市', '新津县', '510132'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4217, '四川省', '成都市', '都江堰市', '510181'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4218, '四川省', '成都市', '彭州市', '510182'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4219, '四川省', '成都市', '邛崃市', '510183'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4220, '四川省', '成都市', '崇州市', '510184'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4221, '四川省', '重庆市', '市辖区', '510201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4222, '四川省', '重庆市', '市中区', '510202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4223, '四川省', '重庆市', '大渡口区', '510203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4224, '四川省', '重庆市', '江北区', '510211'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4225, '四川省', '重庆市', '沙坪坝区', '510212'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4226, '四川省', '重庆市', '九龙坡区', '510213'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4227, '四川省', '重庆市', '南岸区', '510214'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4228, '四川省', '重庆市', '北碚区', '510215'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4229, '四川省', '重庆市', '万盛区', '510216'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4230, '四川省', '重庆市', '双桥区', '510217'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4231, '四川省', '重庆市', '渝北区', '510218'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4232, '四川省', '重庆市', '巴南区', '510219'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4233, '四川省', '重庆市', '市区', '510220'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4234, '四川省', '重庆市', '长寿县', '510221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4235, '四川省', '重庆市', '巴县', '510222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4236, '四川省', '重庆市', '綦江县', '510223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4237, '四川省', '重庆市', '江北县', '510224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4238, '四川省', '重庆市', '江津县', '510225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4239, '四川省', '重庆市', '合川县', '510226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4240, '四川省', '重庆市', '潼南县', '510227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4241, '四川省', '重庆市', '铜梁县', '510228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4242, '四川省', '重庆市', '永川县', '510229'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4243, '四川省', '重庆市', '大足县', '510230'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4244, '四川省', '重庆市', '北碚区', '510231'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4245, '四川省', '重庆市', '璧山县', '510232'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4246, '四川省', '重庆市', '永川市', '510281'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4247, '四川省', '重庆市', '江津市', '510282'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4248, '四川省', '重庆市', '合川市', '510283'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4249, '四川省', '乐山市', '市辖区', '511101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4250, '四川省', '乐山市', '市中区', '511102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4251, '四川省', '乐山市', '沙湾区', '511111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4252, '四川省', '乐山市', '五通桥区', '511112'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4253, '四川省', '乐山市', '金口河区', '511113'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4254, '四川省', '乐山市', '仁寿县', '511121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4255, '四川省', '乐山市', '眉山县', '511122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4256, '四川省', '乐山市', '犍为县', '511123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4257, '四川省', '乐山市', '井研县', '511124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4258, '四川省', '乐山市', '峨眉县', '511125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4259, '四川省', '乐山市', '夹江县', '511126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4260, '四川省', '乐山市', '洪雅县', '511127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4261, '四川省', '乐山市', '彭山县', '511128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4262, '四川省', '乐山市', '沐川县', '511129'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4263, '四川省', '乐山市', '青神县', '511130'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4264, '四川省', '乐山市', '丹棱县', '511131'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4265, '四川省', '乐山市', '峨边彝族自治县', '511132'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4266, '四川省', '乐山市', '马边彝族自治县', '511133'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4267, '四川省', '乐山市', '峨眉山市', '511181'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4268, '四川省', '万县市', '市辖区', '511201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4269, '四川省', '万县市', '龙宝区', '511202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4270, '四川省', '万县市', '天成区', '511203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4271, '四川省', '万县市', '五桥区', '511204'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4272, '四川省', '万县市', '开县', '511221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4273, '四川省', '万县市', '忠县', '511222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4274, '四川省', '万县市', '梁平县', '511223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4275, '四川省', '万县市', '云阳县', '511224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4276, '四川省', '万县市', '奉节县', '511225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4277, '四川省', '万县市', '巫山县', '511226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4278, '四川省', '万县市', '巫溪县', '511227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4279, '四川省', '万县市', '城口县', '511228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4280, '四川省', '南充市', '市辖区', '511301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4281, '四川省', '南充市', '顺庆区', '511302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4282, '四川省', '南充市', '高坪区', '511303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4283, '四川省', '南充市', '嘉陵区', '511304'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4284, '四川省', '南充市', '南部县', '511321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4285, '四川省', '南充市', '营山县', '511322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4286, '四川省', '南充市', '蓬安县', '511323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4287, '四川省', '南充市', '仪陇县', '511324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4288, '四川省', '南充市', '西充县', '511325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4289, '四川省', '南充市', '阆中市', '511381'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4290, '四川省', '眉山市', '市辖区', '511401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4291, '四川省', '眉山市', '东坡区', '511402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4292, '四川省', '眉山市', '仁寿县', '511421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4293, '四川省', '眉山市', '彭山县', '511422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4294, '四川省', '眉山市', '洪雅县', '511423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4295, '四川省', '眉山市', '丹棱县', '511424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4296, '四川省', '眉山市', '青神县', '511425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4297, '四川省', '宜宾市', '市辖区', '511501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4298, '四川省', '宜宾市', '翠屏区', '511502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4299, '四川省', '宜宾市', '宜宾县', '511521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4300, '四川省', '宜宾市', '南溪县', '511522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4301, '四川省', '宜宾市', '江安县', '511523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4302, '四川省', '宜宾市', '长宁县', '511524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4303, '四川省', '宜宾市', '高县', '511525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4304, '四川省', '宜宾市', '珙县', '511526'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4305, '四川省', '宜宾市', '筠连县', '511527'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4306, '四川省', '宜宾市', '兴文县', '511528'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4307, '四川省', '宜宾市', '屏山县', '511529'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4308, '四川省', '广安市', '市辖区', '511601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4309, '四川省', '广安市', '广安区', '511602'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4310, '四川省', '广安市', '岳池县', '511621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4311, '四川省', '广安市', '武胜县', '511622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4312, '四川省', '广安市', '邻水县', '511623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4313, '四川省', '广安市', '华蓥市', '511681'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4314, '四川省', '达州市', '市辖区', '511701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4315, '四川省', '达州市', '通川区', '511702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4316, '四川省', '达州市', '达县', '511721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4317, '四川省', '达州市', '宣汉县', '511722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4318, '四川省', '达州市', '开江县', '511723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4319, '四川省', '达州市', '大竹县', '511724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4320, '四川省', '达州市', '渠县', '511725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4321, '四川省', '达州市', '万源市', '511781'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4322, '四川省', '雅安市', '市辖区', '511801'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4323, '四川省', '雅安市', '雨城区', '511802'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4324, '四川省', '雅安市', '名山县', '511821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4325, '四川省', '雅安市', '荥经县', '511822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4326, '四川省', '雅安市', '汉源县', '511823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4327, '四川省', '雅安市', '石棉县', '511824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4328, '四川省', '雅安市', '天全县', '511825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4329, '四川省', '雅安市', '芦山县', '511826'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4330, '四川省', '雅安市', '宝兴县', '511827'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4331, '四川省', '巴中市', '市辖区', '511901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4332, '四川省', '巴中市', '巴州区', '511902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4333, '四川省', '巴中市', '通江县', '511921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4334, '四川省', '巴中市', '南江县', '511922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4335, '四川省', '巴中市', '平昌县', '511923'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4336, '四川省', '资阳市', '市辖区', '512001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4337, '四川省', '资阳市', '雁江区', '512002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4338, '四川省', '资阳市', '安岳县', '512021'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4339, '四川省', '资阳市', '乐至县', '512022'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4340, '四川省', '资阳市', '简阳市', '512081'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4341, '四川省', '黔江地区', '石柱土家族自治县', '513521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4342, '四川省', '黔江地区', '秀山土家族苗族自治县', '513522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4343, '四川省', '黔江地区', '黔江土家族苗族自治县', '513523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4344, '四川省', '黔江地区', '酉阳土家族苗族自治县', '513524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4345, '四川省', '广安市', '华蓥市', '513601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4346, '四川省', '广安市', '岳池县', '513621'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4347, '四川省', '广安市', '广安县', '513622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4348, '四川省', '广安市', '武胜县', '513623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4349, '四川省', '广安市', '邻水县', '513624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4350, '四川省', '巴中地区', '巴中市', '513701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4351, '四川省', '巴中地区', '通江县', '513721'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4352, '四川省', '巴中地区', '南江县', '513722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4353, '四川省', '巴中地区', '平昌县', '513723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4354, '四川省', '眉山地区', '眉山县', '513821'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4355, '四川省', '眉山地区', '仁寿县', '513822'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4356, '四川省', '眉山地区', '彭山县', '513823'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4357, '四川省', '眉山地区', '洪雅县', '513824'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4358, '四川省', '眉山地区', '丹棱县', '513825'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4359, '四川省', '眉山地区', '青神县', '513826'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4360, '四川省', '资阳地区', '资阳市', '513901'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4361, '四川省', '资阳地区', '简阳市', '513902'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4362, '四川省', '资阳地区', '安岳县', '513921'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4363, '四川省', '资阳地区', '乐至县', '513922'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4364, '四川省', NULL, '广汉市', '519001'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4365, '四川省', NULL, '江油市', '519002'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4366, '四川省', NULL, '都江堰市', '519003'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4367, '四川省', NULL, '峨眉山市', '519004'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4368, '贵州省', '贵阳市', '市辖区', '520101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4369, '贵州省', '贵阳市', '南明区', '520102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4370, '贵州省', '贵阳市', '云岩区', '520103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4371, '贵州省', '贵阳市', '花溪区', '520111'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4372, '贵州省', '贵阳市', '乌当区', '520112'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4373, '贵州省', '贵阳市', '白云区', '520113'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4374, '贵州省', '贵阳市', '小河区', '520114'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4375, '贵州省', '贵阳市', '开阳县', '520121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4376, '贵州省', '贵阳市', '息烽县', '520122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4377, '贵州省', '贵阳市', '修文县', '520123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4378, '贵州省', '贵阳市', '清镇市', '520181'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4379, '贵州省', '六盘水市', '钟山区', '520201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4380, '贵州省', '六盘水市', '盘县特区', '520202'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4381, '贵州省', '六盘水市', '六枝特区', '520203'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4382, '贵州省', '六盘水市', '水城县', '520221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4383, '贵州省', '六盘水市', '盘县', '520222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4384, '贵州省', '遵义市', '市辖区', '520301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4385, '贵州省', '遵义市', '红花岗区', '520302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4386, '贵州省', '遵义市', '汇川区', '520303'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4387, '贵州省', '遵义市', '遵义县', '520321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4388, '贵州省', '遵义市', '桐梓县', '520322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4389, '贵州省', '遵义市', '绥阳县', '520323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4390, '贵州省', '遵义市', '正安县', '520324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4391, '贵州省', '遵义市', '道真仡佬族苗族自治县', '520325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4392, '贵州省', '遵义市', '务川仡佬族苗族自治县', '520326'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4393, '贵州省', '遵义市', '凤冈县', '520327'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4394, '贵州省', '遵义市', '湄潭县', '520328'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4395, '贵州省', '遵义市', '余庆县', '520329'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4396, '贵州省', '遵义市', '习水县', '520330'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4397, '贵州省', '遵义市', '赤水市', '520381'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4398, '贵州省', '遵义市', '仁怀市', '520382'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4399, '贵州省', '安顺市', '市辖区', '520401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4400, '贵州省', '安顺市', '西秀区', '520402'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4401, '贵州省', '安顺市', '平坝县', '520421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4402, '贵州省', '安顺市', '普定县', '520422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4403, '贵州省', '安顺市', '镇宁布依族苗族自治县', '520423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4404, '贵州省', '安顺市', '关岭布依族苗族自治县', '520424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4405, '贵州省', '安顺市', '紫云苗族布依族自治县', '520425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4406, '贵州省', '遵义地区', '遵义市', '522101'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4407, '贵州省', '遵义地区', '赤水市', '522102'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4408, '贵州省', '遵义地区', '仁怀市', '522103'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4409, '贵州省', '遵义地区', '遵义县', '522121'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4410, '贵州省', '遵义地区', '桐梓县', '522122'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4411, '贵州省', '遵义地区', '绥阳县', '522123'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4412, '贵州省', '遵义地区', '正安县', '522124'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4413, '贵州省', '遵义地区', '道真仡佬族苗族自治县', '522125'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4414, '贵州省', '遵义地区', '务川仡佬族苗族自治县', '522126'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4415, '贵州省', '遵义地区', '凤冈县', '522127'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4416, '贵州省', '遵义地区', '湄潭县', '522128'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4417, '贵州省', '遵义地区', '余庆县', '522129'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4418, '贵州省', '遵义地区', '仁怀县', '522130'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4419, '贵州省', '遵义地区', '赤水县', '522131'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4420, '贵州省', '遵义地区', '习水县', '522132'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4421, '贵州省', '铜仁地区', '铜仁市', '522201'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4422, '贵州省', '铜仁地区', '铜仁县', '522221'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4423, '贵州省', '铜仁地区', '江口县', '522222'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4424, '贵州省', '铜仁地区', '玉屏侗族自治县', '522223'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4425, '贵州省', '铜仁地区', '石阡县', '522224'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4426, '贵州省', '铜仁地区', '思南县', '522225'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4427, '贵州省', '铜仁地区', '印江土家族苗族自治县', '522226'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4428, '贵州省', '铜仁地区', '德江县', '522227'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4429, '贵州省', '铜仁地区', '沿河土家族自治县', '522228'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4430, '贵州省', '铜仁地区', '松桃苗族自治县', '522229'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4431, '贵州省', '铜仁地区', '万山特区', '522230'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4432, '贵州省', '黔西南布依族苗族自治州', '兴义市', '522301'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4433, '贵州省', '黔西南布依族苗族自治州', '赤壁市', '522302'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4434, '贵州省', '黔西南布依族苗族自治州', '兴义县', '522321'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4435, '贵州省', '黔西南布依族苗族自治州', '兴仁县', '522322'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4436, '贵州省', '黔西南布依族苗族自治州', '普安县', '522323'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4437, '贵州省', '黔西南布依族苗族自治州', '晴隆县', '522324'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4438, '贵州省', '黔西南布依族苗族自治州', '贞丰县', '522325'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4439, '贵州省', '黔西南布依族苗族自治州', '望谟县', '522326'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4440, '贵州省', '黔西南布依族苗族自治州', '册亨县', '522327'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4441, '贵州省', '黔西南布依族苗族自治州', '安龙县', '522328'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4442, '贵州省', '毕节地区', '毕节市', '522401'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4443, '贵州省', '毕节地区', '毕节县', '522421'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4444, '贵州省', '毕节地区', '大方县', '522422'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4445, '贵州省', '毕节地区', '黔西县', '522423'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4446, '贵州省', '毕节地区', '金沙县', '522424'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4447, '贵州省', '毕节地区', '织金县', '522425'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4448, '贵州省', '毕节地区', '纳雍县', '522426'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4449, '贵州省', '毕节地区', '威宁彝族回族苗族自治县', '522427'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4450, '贵州省', '毕节地区', '赫章县', '522428'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4451, '贵州省', '安顺地区', '安顺市', '522501'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4452, '贵州省', '安顺地区', '清镇市', '522502'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4453, '贵州省', '安顺地区', '安顺县', '522521'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4454, '贵州省', '安顺地区', '开阳县', '522522'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4455, '贵州省', '安顺地区', '息烽县', '522523'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4456, '贵州省', '安顺地区', '修文县', '522524'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4457, '贵州省', '安顺地区', '清镇县', '522525'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4458, '贵州省', '安顺地区', '平坝县', '522526'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4459, '贵州省', '安顺地区', '普定县', '522527'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4460, '贵州省', '安顺地区', '关岭布依族苗族自治县', '522528'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4461, '贵州省', '安顺地区', '镇宁布依族苗族自治县', '522529'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4462, '贵州省', '安顺地区', '紫云苗族布依族自治县', '522530'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4463, '贵州省', '黔东南苗族侗族自治州', '凯里市', '522601'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4464, '贵州省', '黔东南苗族侗族自治州', '黄平县', '522622'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4465, '贵州省', '黔东南苗族侗族自治州', '施秉县', '522623'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4466, '贵州省', '黔东南苗族侗族自治州', '三穗县', '522624'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4467, '贵州省', '黔东南苗族侗族自治州', '镇远县', '522625'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4468, '贵州省', '黔东南苗族侗族自治州', '岑巩县', '522626'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4469, '贵州省', '黔东南苗族侗族自治州', '天柱县', '522627'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4470, '贵州省', '黔东南苗族侗族自治州', '锦屏县', '522628'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4471, '贵州省', '黔东南苗族侗族自治州', '剑河县', '522629'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4472, '贵州省', '黔东南苗族侗族自治州', '台江县', '522630'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4473, '贵州省', '黔东南苗族侗族自治州', '黎平县', '522631'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4474, '贵州省', '黔东南苗族侗族自治州', '榕江县', '522632'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4475, '贵州省', '黔东南苗族侗族自治州', '从江县', '522633'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4476, '贵州省', '黔东南苗族侗族自治州', '雷山县', '522634'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4477, '贵州省', '黔东南苗族侗族自治州', '麻江县', '522635'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4478, '贵州省', '黔东南苗族侗族自治州', '丹寨县', '522636'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4479, '贵州省', '黔南布依族苗族自治州', '都匀市', '522701'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4480, '贵州省', '黔南布依族苗族自治州', '福泉市', '522702'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4481, '贵州省', '黔南布依族苗族自治州', '荔波县', '522722'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4482, '贵州省', '黔南布依族苗族自治州', '贵定县', '522723'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4483, '贵州省', '黔南布依族苗族自治州', '福泉县', '522724'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4484, '贵州省', '黔南布依族苗族自治州', '瓮安县', '522725'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4485, '贵州省', '黔南布依族苗族自治州', '独山县', '522726'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4486, '中华人民共和国香港特别行政区', NULL, NULL, '810000'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4487, '中华人民共和国澳门特别行政区', NULL, NULL, '820000'); -INSERT INTO `cardcodes` (`id`, `Province`, `City`, `District`, `bm`) VALUES (4488, '台湾省', NULL, NULL, '710000'); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN001', '购入18台PC', 150000.00, 'D-001', '2018-12-03 15:49:16', '联想电脑', 'WK001', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN002', '购入150平方的瓷砖', 800000.00, 'D-001', '2018-12-03 15:49:16', '京瓷', 'WK002', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN003', '与KaMiFood达成合作', 870000.00, 'D-001', '2018-12-04 00:00:00', '神之食餐饮', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN004', '购入40台高配笔记本', 900000.00, 'D-003', '2018-12-05 00:00:00', '戴尔电脑', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN005', '与闪修达成合作', 600000.00, 'D-001', '2018-12-05 00:00:00', '闪修公司', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN006', '顶级床单3000张', 900000.00, 'D-001', '2018-12-15 00:00:00', '席梦思', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN007', '办公椅300张', 50000.00, 'D-003', '2018-12-05 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN008', '办公桌300张', 80000.00, 'D-001', '2018-12-05 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN009', '测试数据', 200000.00, 'D-006', '2018-12-05 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN010', '测试数据', 300000.00, 'D-002', '2018-12-06 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN011', '测试数据', 400000.00, 'D-002', '2018-12-07 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN012', '测试数据', 500000.00, 'D-002', '2018-12-08 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN013', '测试数据', 600000.00, 'D-002', '2018-12-09 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN014', '测试数据', 700000.00, 'D-002', '2018-12-23 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN015', '测试数据', 800000.00, 'D-002', '2018-12-23 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN016', '测试数据', 900000.00, 'D-002', '2018-12-24 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN017', '纪念品', 500.00, 'D-011', '2020-08-22 15:22:44', '赠予', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN1262', '古董', 10000000.00, 'D-001', '2020-08-22 15:22:44', '赠送', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN202100013', '测试测试', 600000.00, 'D-004', '2021-01-30 00:00:00', '测试工厂', 'WK010', 0, 'admin', '2021-02-16', NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN20210002', '戴尔笔记本6台', 80000.00, 'D-010', '2021-01-30 00:00:00', '戴尔(珠海)经销商', 'WK202102007', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN4610', '购入20套办公桌', 50000.00, 'D-010', '2020-04-16 23:25:22', '志远办公', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN4665', '购入10套办公桌椅', 50000.00, 'D-010', '2020-04-16 23:26:57', '志远办公', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN6816', 'test', 20000.00, 'D-002', '2020-04-16 23:42:08', 'adasd', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CN8051', 'cccccc', 10000.00, 'D-002', '2020-08-14 14:33:21', 'ccccccc', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO `cashinfo` (`CashNo`, `CashName`, `CashPrice`, `CashClub`, `CashTime`, `CashSource`, `CashPerson`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('RG001', '唯秒合作入股', 770000.00, 'D-001', '2018-12-05 00:00:00', '唯秒', 'WK001', 0, NULL, NULL, NULL, NULL); -INSERT INTO `checkinfo` (`CheckNo`, `CheckClub`, `CheckProgres`, `CheckCash`, `CheckScore`, `CheckPerson`, `CheckAdvice`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CI001', '后勤部', '有人偷懒', '(^-^)', 4, '罗良建', '合理分配时间', 0, NULL, NULL, NULL, NULL); -INSERT INTO `checkinfo` (`CheckNo`, `CheckClub`, `CheckProgres`, `CheckCash`, `CheckScore`, `CheckPerson`, `CheckAdvice`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CI002', '餐饮部', '有人偷懒', 'QAQ', 4, '罗良建', '合理分配时间', 0, NULL, NULL, NULL, NULL); -INSERT INTO `checkinfo` (`CheckNo`, `CheckClub`, `CheckProgres`, `CheckCash`, `CheckScore`, `CheckPerson`, `CheckAdvice`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('CI003', '酒店部', '有人偷懒', '(-_-)', 4, '罗良建', '合理分配时间', 0, NULL, NULL, NULL, NULL); -INSERT INTO `counterrule` (`rule_id`, `rule_name`, `rule_desc`, `now_id`, `prefix_name`, `custo_format`, `number_format`, `separating_char`, `datains_usrid`, `datains_time`, `datachg_usrid`, `datachg_time`) VALUES (1, 'WorkerId', '员工工号流水号规则', 44, 'WK', 'yyyyMM', '00', '', 'System', NULL, NULL, NULL); -INSERT INTO `counterrule` (`rule_id`, `rule_name`, `rule_desc`, `now_id`, `prefix_name`, `custo_format`, `number_format`, `separating_char`, `datains_usrid`, `datains_time`, `datachg_usrid`, `datachg_time`) VALUES (9, 'EducationId', '学历编号', 3, 'E', 'yyyy', '0', '-', 'System', NULL, NULL, NULL); -INSERT INTO `counterrule` (`rule_id`, `rule_name`, `rule_desc`, `now_id`, `prefix_name`, `custo_format`, `number_format`, `separating_char`, `datains_usrid`, `datains_time`, `datachg_usrid`, `datachg_time`) VALUES (8, 'DeptInfo', '部门编号', 140, 'D', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); -INSERT INTO `counterrule` (`rule_id`, `rule_name`, `rule_desc`, `now_id`, `prefix_name`, `custo_format`, `number_format`, `separating_char`, `datains_usrid`, `datains_time`, `datachg_usrid`, `datachg_time`) VALUES (7, 'CashInfo', '资产编号', 94, 'CN', 'yyyy', '000', '-', 'System', NULL, NULL, NULL); -INSERT INTO `counterrule` (`rule_id`, `rule_name`, `rule_desc`, `now_id`, `prefix_name`, `custo_format`, `number_format`, `separating_char`, `datains_usrid`, `datains_time`, `datachg_usrid`, `datachg_time`) VALUES (4, 'ReserId', '预约编号', 25, 'R', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); -INSERT INTO `counterrule` (`rule_id`, `rule_name`, `rule_desc`, `now_id`, `prefix_name`, `custo_format`, `number_format`, `separating_char`, `datains_usrid`, `datains_time`, `datachg_usrid`, `datachg_time`) VALUES (2, 'NationId', '民族类型编号', 7, 'N', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); -INSERT INTO `counterrule` (`rule_id`, `rule_name`, `rule_desc`, `now_id`, `prefix_name`, `custo_format`, `number_format`, `separating_char`, `datains_usrid`, `datains_time`, `datachg_usrid`, `datachg_time`) VALUES (10, 'PositionId', '职位编号', 8, 'P', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); -INSERT INTO `counterrule` (`rule_id`, `rule_name`, `rule_desc`, `now_id`, `prefix_name`, `custo_format`, `number_format`, `separating_char`, `datains_usrid`, `datains_time`, `datachg_usrid`, `datachg_time`) VALUES (6, 'NoticeId', '公告编号', 5, 'UP', 'yyyyMM', '00', '-', 'System', NULL, NULL, NULL); -INSERT INTO `counterrule` (`rule_id`, `rule_name`, `rule_desc`, `now_id`, `prefix_name`, `custo_format`, `number_format`, `separating_char`, `datains_usrid`, `datains_time`, `datachg_usrid`, `datachg_time`) VALUES (3, 'CustoId', '客户类型编号', 158, 'TS', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); -INSERT INTO `counterrule` (`rule_id`, `rule_name`, `rule_desc`, `now_id`, `prefix_name`, `custo_format`, `number_format`, `separating_char`, `datains_usrid`, `datains_time`, `datachg_usrid`, `datachg_time`) VALUES (11, 'VipRuleId', '会员等级类型编号', 106, 'VR', 'yyyyMMdd', '000', '-', 'System', NULL, NULL, NULL); -INSERT INTO `counterrule` (`rule_id`, `rule_name`, `rule_desc`, `now_id`, `prefix_name`, `custo_format`, `number_format`, `separating_char`, `datains_usrid`, `datains_time`, `datachg_usrid`, `datachg_time`) VALUES (5, 'SellId', '商品编号', 130, 'ST', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, 'BS005', 'TS1081', '乐事薯片(原味)', 27, 20.00, 540.00, '2020-04-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (2, 'BS001', 'TS1571', '片(原味)', 1, 20.00, 0.00, '2020-08-21 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (3, 'BD001', 'TS1862', '特级DLS', 2, 40.00, 80.00, '2018-12-20 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (4, 'BD001', 'TS1239', '三只松鼠夏威夷坚果', 2, 40.00, 80.00, '2020-05-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (5, 'BS005', 'TS1081', '特级杜蕾斯', 27, 40.00, 1080.00, '2020-04-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (6, 'BD002', 'TS1816', '雪碧', 1, 2.50, 2.50, '2018-12-21 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (7, 'BD002', 'TS1816', '特级DLS', 1, 40.00, 40.00, '2018-12-21 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (8, 'BS005', 'TS1081', '青岛啤酒', 27, 15.00, 405.00, '2020-04-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (9, 'BS005', 'TS1081', '可口可乐', 31, 10.00, 310.00, '2020-04-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (10, 'HD006', 'TS1364', '居住HD0057天', 7, 4375.00, 4375.00, '2020-04-14 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (11, 'ZT002', 'TS1364', '居住HD0067天', 7, 4375.00, 4375.00, '2020-04-14 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (12, 'ZT002', 'TS1364', '可口可乐', 5, 2.50, 12.50, '2020-04-14 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (13, 'HD003', 'TS1001', '居住BD0050天', 0, 999.00, 0.00, '2020-04-26 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (14, 'BD004', 'TS1480', '火腿肠', 3, 10.00, 30.00, '2020-04-29 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (15, 'BD004', 'TS1480', '雪碧', 3, 2.50, 7.50, '2020-04-29 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (16, 'BD004', 'TS1480', '92拉菲', 2, 10800.00, 21600.00, '2020-04-29 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (17, 'HD001', 'TS1862', '康师傅方便面', 10, 10.00, 100.00, '2018-12-26 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (18, 'BD007', 'TS1002', '居住BS00865天', 65, 27625.00, 27625.00, '2020-07-05 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (19, 'BS007', 'TS1003', '居住BS00965天', 65, 27625.00, 27625.00, '2020-07-05 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (20, 'ZT005', 'TS1005', '居住HD00168天', 68, 42500.00, 42500.00, '2020-05-10 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (21, 'ZT005', 'TS1005', '特级杜蕾斯', 10, 40.00, 400.00, '2020-05-13 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (22, 'BS003', 'TS1084', '特级杜蕾斯', 20, 40.00, 800.00, '2018-12-26 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (23, 'BS007', 'TS1003', '特级杜蕾斯', 1, 40.00, 40.00, '2020-05-22 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (24, 'HS003', 'TS1194', '拉菲', 2, 10000.00, 20000.00, '2018-12-27 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (25, 'HS003', 'TS1194', '扑克牌', 2, 5.00, 10.00, '2018-12-27 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (26, 'HS003', 'TS1194', '火腿肠', 1, 10.00, 10.00, '2018-12-27 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (27, 'BD001', 'TS1365', '居住HD00247天', 47, 29375.00, 29375.00, '2020-07-19 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (28, 'BD001', 'TS1365', '香皂', 2, 25.00, 50.00, '2020-07-28 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (29, 'BD001', 'TS1365', '香皂', 2, 25.00, 50.00, '2020-07-28 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (30, 'BD001', 'TS1365', '青岛啤酒', 2, 15.00, 30.00, '2020-07-28 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (31, 'BS001', 'TS1571', 'WAHAHA', 2, 5.00, 10.00, '2020-08-21 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (32, 'BD002', 'TS1001', '三只松鼠夏威夷坚果', 12, 40.00, 480.00, '2019-10-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (33, 'BD005', 'TS1005', 'aaa', 1, 10.00, 10.00, '2020-08-22 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (34, 'ZT001', 'TS1457', '拉菲', 30, 10000.00, 300000.00, '2019-10-28 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (35, 'BD002', 'TS1001', '康师傅方便面', 1, 10.00, 10.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (36, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (37, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (38, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (39, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (40, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (41, 'BD002', 'TS1001', '康师傅方便面', 2, 10.00, 20.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (42, 'BD002', 'TS1001', '三只松鼠夏威夷坚果', 2, 40.00, 80.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (43, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-18 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (44, 'BD002', 'TS1001', '乐事薯片(原味)', 2, 20.00, 40.00, '2020-03-25 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (45, 'BS006', 'TS1998', '三只松鼠零食大礼包', 2, 299.00, 598.00, '2020-09-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (46, 'BD001', 'TS1862', '青岛啤酒', 2, 15.00, 30.00, '2018-12-20 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (47, 'HD001', 'TS1862', '雪碧', 5, 10.00, 50.00, '2018-12-26 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (48, 'HD001', 'TS1862', 'TS纪念品', 2, 10.00, 20.00, '2018-12-26 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (49, 'BS001', 'TS1005', '乐事薯片(原味)', 20, 20.00, 400.00, '2020-11-13 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (50, 'BS001', 'TS1005', '三只松鼠夏威夷坚果', 4, 40.00, 160.00, '2020-11-26 21:29:13', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (51, 'HD008', 'TS1492', '92拉菲', 1, 10800.00, 10800.00, '2020-12-23 22:25:48', 'Settled', 0, NULL, NULL, 'WK010', '2022-01-30'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (52, 'HD008', 'TS1492', '92拉菲', 1, 10800.00, 10800.00, '2020-12-23 22:57:01', 'Settled', 0, NULL, NULL, 'WK010', '2022-01-30'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (53, 'BD010', 'TS1143', '雪碧', 2, 2.50, 5.00, '2021-01-24 17:02:12', 'Settled', 0, NULL, NULL, 'WK010', '2022-01-30'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (54, 'BD006', 'TS1347', '居住BD00270天', 70, 21000.00, 21000.00, '2021-02-09 18:04:21', 'Settled', 0, NULL, NULL, 'WK010', '2021-05-14'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (55, 'BD008', 'TS1812', '居住BD003共12天', 12, 3600.00, 3600.00, '2021-02-12 15:04:14', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (56, 'BD008', 'TS1812', '三只松鼠夏威夷坚果', 1, 40.00, 40.00, '2021-02-12 15:54:38', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (57, 'BD008', 'TS1812', '三只松鼠夏威夷坚果', 1, 40.00, 40.00, '2021-02-12 15:58:38', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (58, 'BD001', 'TS1074', '黄油华夫饼', 5, 80.00, 400.00, '2021-02-16 00:30:12', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (59, 'BD008', 'TS1812', 'T仔', 20, 90.00, 1800.00, '2021-02-18 17:24:58', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (60, 'BD002', 'R-2021009', '日清方便面', 10, 5.50, 55.00, '2021-03-11 22:34:40', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (61, 'BD002', 'R-2021009', '拉菲', 10, 1080.00, 10800.00, '2021-03-11 22:34:54', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (62, 'BD002', 'R-2021009', '92拉菲', 10, 10800.00, 108000.00, '2021-03-11 22:35:01', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (63, 'BD001', 'TS1074', '乐事薯片(原味)', 1, 20.00, 20.00, '2021-04-17 16:07:38', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (64, 'BD001', 'TS1074', '雪碧', 3, 2.50, 7.50, '2021-04-17 16:07:43', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (65, 'BD001', 'TS1074', '特级杜蕾斯', 3, 40.00, 120.00, '2021-04-17 16:07:52', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (66, 'BD001', 'TS1074', '可口可乐', 3, 10.00, 30.00, '2021-04-17 16:08:12', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (67, 'BD001', 'TS1074', '乐事薯片(原味)', 3, 20.00, 60.00, '2021-04-17 16:08:14', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (68, 'BD001', 'TS1074', '雪碧', 3, 2.50, 7.50, '2021-04-17 16:08:16', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (69, 'BD001', 'TS1074', '特级杜蕾斯', 3, 40.00, 120.00, '2021-04-17 16:08:19', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (70, 'BD001', 'TS1074', '可口可乐', 3, 10.00, 30.00, '2021-04-17 16:08:40', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (71, 'BD001', 'TS1074', '乐事薯片(原味)', 3, 20.00, 60.00, '2021-04-17 16:08:42', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (72, 'BD001', 'TS1074', '雪碧', 3, 2.50, 7.50, '2021-04-17 16:08:45', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (73, 'BD001', 'TS1074', '乐事薯片(原味)', 3, 20.00, 60.00, '2021-04-17 16:08:57', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (74, 'BD001', 'TS1074', '雪碧', 3, 2.50, 7.50, '2021-04-17 16:08:59', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (75, 'BD001', 'TS1074', '特级杜蕾斯', 3, 40.00, 120.00, '2021-04-17 16:09:02', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (76, 'BD001', 'TS1074', '三只松鼠夏威夷坚果', 3, 40.00, 120.00, '2021-04-17 16:09:04', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (77, 'BD002', 'R-2021009', '乐事薯片(原味)', 3, 20.00, 60.00, '2021-04-17 16:09:38', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (78, 'BD006', 'TS1347', '三只松鼠夏威夷坚果', 3, 40.00, 120.00, '2021-04-17 21:02:33', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-05-14'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (79, 'BD006', 'TS1347', '火腿肠', 5, 10.00, 50.00, '2021-04-17 21:13:30', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-05-14'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (80, 'BD006', 'TS1347', '澡巾', 5, 12.50, 62.50, '2021-04-17 21:13:36', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-05-14'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (81, 'BD006', 'TS1347', '扑克牌', 5, 5.00, 25.00, '2021-04-17 21:13:46', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-05-14'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (82, 'BD006', 'TS1347', '澡巾', 3, 12.50, 37.50, '2021-04-17 21:15:16', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-05-14'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (83, 'BD006', 'TS1347', '三只松鼠夏威夷坚果', 5, 40.00, 200.00, '2021-05-05 13:34:48', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-05-14'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (84, 'BD005', 'TS-20210068', '测试勿选', 1, 9999999.00, 9999999.00, '2021-06-06 00:07:49', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (85, 'BS004', 'TS1364', '红枣', 10, 25.00, 250.00, '2021-07-17 17:45:20', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-07-17'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (86, 'BS004', 'TS1364', 'TS纪念品', 10, 10.00, 100.00, '2021-07-17 17:45:30', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-07-17'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (87, 'BS004', 'TS1364', '92拉菲', 50, 10800.00, 540000.00, '2021-07-17 17:45:49', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-07-17'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (88, 'BD010', 'TS1143', '测试数据(勿选)', 1, 9999999.99, 9999999.99, '2021-07-19 19:44:57', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (89, 'ZT002', 'TS-20210078', '黄油华夫饼', 2, 80.00, 160.00, '2022-01-30 23:38:14', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-02-26'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (90, 'ZT002', 'TS-20210078', '92拉菲', 5, 10800.00, 54000.00, '2022-01-30 23:38:52', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-02-26'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (102, 'ZT005', 'TS-20210078', '火腿肠', 13, 10.00, 130.00, '2022-02-26 13:59:32', 'UnSettle', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (150, 'ZT005', 'TS-20210078', '毛巾', 3, 10.00, 30.00, '2022-02-26 15:58:38', 'UnSettle', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (363, 'BD001', 'TS001344013384', '雪碧', 1, 2.50, 2.50, '2022-04-05 21:38:31', 'Settled', 0, NULL, '0001-01-01', '', '2022-05-23'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (365, 'BD001', 'TS001344013384', '三只松鼠夏威夷坚果', 1, 40.00, 40.00, '2022-04-05 21:38:38', 'Settled', 0, NULL, '0001-01-01', '', '2022-05-23'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (370, 'BD001', 'TS001344013384', '可口可乐', 1, 10.00, 10.00, '2022-04-06 15:21:49', 'Settled', 0, NULL, '0001-01-01', '', '2022-05-23'); -INSERT INTO `custospend` (`SpendId`, `RoomNo`, `CustoNo`, `SpendName`, `SpendAmount`, `SpendPrice`, `SpendMoney`, `SpendTime`, `MoneyState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (372, 'BD001', 'TS001344013384', '黄油华夫饼', 1, 80.00, 80.00, '2022-04-06 15:21:55', 'Settled', 0, NULL, '0001-01-01', '', '2022-05-23'); -INSERT INTO `dept` (`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-001', '经理部', '各部门经理', '2019-10-01', 'WK010', NULL, 0, 'System', '2019-10-01', NULL, NULL); -INSERT INTO `dept` (`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-002', '酒店部', '酒店部门人员', '2019-10-02', 'WK010', NULL, 0, 'System', '2019-10-02', NULL, NULL); -INSERT INTO `dept` (`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-003', '财务部', '财务部门人员', '2019-10-03', 'WK005', '', 0, 'System', '2019-10-03', '', '2021-02-17'); -INSERT INTO `dept` (`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-004', '人力资源部', '人力资源部门人员', '2019-10-04', 'WK001', '', 0, 'System', '2019-10-04', '', '2021-02-17'); -INSERT INTO `dept` (`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-005', '后勤部', '后勤部门人员', '2019-10-05', 'WK003', '', 0, 'System', '2019-10-05', '', '2021-02-17'); -INSERT INTO `dept` (`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-006', '商品部', '商品部门人员', '2019-10-06', 'WK004', 'D-006', 0, 'System', '2019-10-06', 'WK010', '2021-02-28'); -INSERT INTO `dept` (`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-007', '维修部', '维修部门人员', '2019-10-07', 'WK007', 'D-007', 0, 'System', '2019-10-07', 'WK010', '2021-02-28'); -INSERT INTO `dept` (`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-008', '内控部', '内控部门人员', '2019-10-08', NULL, '', 0, 'System', '2019-10-08', NULL, NULL); -INSERT INTO `dept` (`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-009', '监管小组', '监管小组人员', '2019-10-09', 'WK010', '', 0, 'System', '2019-10-09', 'WK009', '2021-05-29'); -INSERT INTO `dept` (`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-010', '总经办', '总经办人员', '2019-10-10', 'WK010', 'D-001', 0, 'System', '2019-10-10', 'WK010', '2021-02-28'); -INSERT INTO `dept` (`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-20210034', '测试测试', '测试测试', '2021-02-17', 'Shenyou', '', 0, NULL, '0001-01-01', '', '2021-05-30'); -INSERT INTO `dept` (`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-20210087', '测试', '测试', '2021-05-30', 'Duyen', 'D-001', 0, NULL, '0001-01-01', '', '2021-05-30'); -INSERT INTO `dept` (`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-202200114', 'IT技术部', '维护酒店管理系统安全及更新', '2022-01-31', 'WK005', 'D-001', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO `dept` (`dept_no`, `dept_name`, `dept_desc`, `dept_date`, `dept_leader`, `dept_parent`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('D-011', '餐饮部', '餐饮部人员', '2019-10-11', 'Lien', 'D-008', 0, 'System', '2019-10-11', '', '2022-04-08'); -INSERT INTO `education` (`education_no`, `education_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('E-00001', '小学', 0, 'System', '2021-01-31', '', '2021-06-27'); -INSERT INTO `education` (`education_no`, `education_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('E-00002', '初中', 0, 'System', '2021-02-01', 'System', '2021-02-01'); -INSERT INTO `education` (`education_no`, `education_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('E-00003', '高中', 0, 'System', '2021-02-02', 'System', '2021-02-02'); -INSERT INTO `education` (`education_no`, `education_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('E-00004', '中专', 0, 'System', '2021-02-03', 'WK009', '2021-05-29'); -INSERT INTO `education` (`education_no`, `education_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('E-00005', '大专', 0, 'System', '2021-02-04', 'System', '2021-02-04'); -INSERT INTO `education` (`education_no`, `education_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('E-00006', '本科', 0, 'System', '2021-02-05', 'System', '2021-02-05'); -INSERT INTO `education` (`education_no`, `education_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('E-00007', '研究生', 0, 'System', '2021-02-06', 'System', '2021-02-06'); -INSERT INTO `education` (`education_no`, `education_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('E-00008', '博士', 0, 'System', '2021-02-07', '', '2022-02-26'); -INSERT INTO `education` (`education_no`, `education_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('E-202101', '硕士', 0, 'admin', '2021-05-10', '', '2022-02-26'); -INSERT INTO `education` (`education_no`, `education_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('E-00009', '博士后', 0, 'System', '2021-02-08', '', '2022-02-26'); -INSERT INTO `fonts` (`FontsId`, `FontsMess`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, '本酒店即日起与闪修平台联合推出“多修多折”活动,详情请咨询前台!', 0, NULL, NULL, NULL, NULL); -INSERT INTO `fonts` (`FontsId`, `FontsMess`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (2, '本酒店即日起与神之食餐厅联合推出“吃多折多”活动,详情请咨询前台!', 0, NULL, NULL, NULL, NULL); -INSERT INTO `fonts` (`FontsId`, `FontsMess`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (3, '本酒店即日起与Second网吧联合推出“免费体验酒店式网吧”活动,详情请咨询前台!', 0, NULL, NULL, NULL, NULL); -INSERT INTO `gbtype` (`GBTypeId`, `GBName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (0, '奖励', 0, NULL, NULL, NULL, NULL); -INSERT INTO `gbtype` (`GBTypeId`, `GBName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, '惩罚', 0, NULL, NULL, NULL, NULL); -INSERT INTO `module` (`module_id`, `module_name`, `module_desc`, `delete_mk`, `datains_usr`, `datains_time`, `datachg_usr`, `datachg_time`) VALUES (1, 'BaseInfo', NULL, 0, NULL, NULL, NULL, NULL); -INSERT INTO `module` (`module_id`, `module_name`, `module_desc`, `delete_mk`, `datains_usr`, `datains_time`, `datachg_usr`, `datachg_time`) VALUES (2, 'CashInfo', NULL, 0, NULL, NULL, NULL, NULL); -INSERT INTO `module` (`module_id`, `module_name`, `module_desc`, `delete_mk`, `datains_usr`, `datains_time`, `datachg_usr`, `datachg_time`) VALUES (3, 'WtiInfo', NULL, 0, NULL, NULL, NULL, NULL); -INSERT INTO `module` (`module_id`, `module_name`, `module_desc`, `delete_mk`, `datains_usr`, `datains_time`, `datachg_usr`, `datachg_time`) VALUES (4, 'CheckInfo', NULL, 0, NULL, NULL, NULL, NULL); -INSERT INTO `module` (`module_id`, `module_name`, `module_desc`, `delete_mk`, `datains_usr`, `datains_time`, `datachg_usr`, `datachg_time`) VALUES (5, 'RoomManager', NULL, 0, NULL, NULL, NULL, NULL); -INSERT INTO `module` (`module_id`, `module_name`, `module_desc`, `delete_mk`, `datains_usr`, `datains_time`, `datachg_usr`, `datachg_time`) VALUES (6, 'CustomerManager', NULL, 0, NULL, NULL, NULL, NULL); -INSERT INTO `module` (`module_id`, `module_name`, `module_desc`, `delete_mk`, `datains_usr`, `datains_time`, `datachg_usr`, `datachg_time`) VALUES (7, 'HumanResourcesManager', NULL, 0, NULL, NULL, NULL, NULL); -INSERT INTO `module` (`module_id`, `module_name`, `module_desc`, `delete_mk`, `datains_usr`, `datains_time`, `datachg_usr`, `datachg_time`) VALUES (8, 'MaterialManager', NULL, 0, NULL, NULL, NULL, NULL); -INSERT INTO `module` (`module_id`, `module_name`, `module_desc`, `delete_mk`, `datains_usr`, `datains_time`, `datachg_usr`, `datachg_time`) VALUES (9, 'OperationLogManager', NULL, 0, NULL, NULL, NULL, NULL); -INSERT INTO `module` (`module_id`, `module_name`, `module_desc`, `delete_mk`, `datains_usr`, `datains_time`, `datachg_usr`, `datachg_time`) VALUES (10, 'AdminManager', NULL, 0, NULL, NULL, NULL, NULL); -INSERT INTO `module_zero` (`module_id`, `admin_account`, `module_name`, `module_enable`) VALUES (1, 'admin', 'BaseInfo', 1); -INSERT INTO `module_zero` (`module_id`, `admin_account`, `module_name`, `module_enable`) VALUES (2, 'admin', 'CashInfo', 1); -INSERT INTO `module_zero` (`module_id`, `admin_account`, `module_name`, `module_enable`) VALUES (3, 'admin', 'WtiInfo', 1); -INSERT INTO `module_zero` (`module_id`, `admin_account`, `module_name`, `module_enable`) VALUES (4, 'admin', 'CheckInfo', 1); -INSERT INTO `module_zero` (`module_id`, `admin_account`, `module_name`, `module_enable`) VALUES (5, 'admin', 'RoomManager', 1); -INSERT INTO `module_zero` (`module_id`, `admin_account`, `module_name`, `module_enable`) VALUES (6, 'admin', 'CustomerManager', 1); -INSERT INTO `module_zero` (`module_id`, `admin_account`, `module_name`, `module_enable`) VALUES (7, 'admin', 'HumanResourcesManager', 1); -INSERT INTO `module_zero` (`module_id`, `admin_account`, `module_name`, `module_enable`) VALUES (8, 'admin', 'MaterialManager', 1); -INSERT INTO `module_zero` (`module_id`, `admin_account`, `module_name`, `module_enable`) VALUES (9, 'admin', 'OperationLogManager', 1); -INSERT INTO `module_zero` (`module_id`, `admin_account`, `module_name`, `module_enable`) VALUES (10, 'admin', 'AdminManager', 1); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00001', '汉族', 0, 'System', '2021-01-31', '', '2021-02-07'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00002', '满族', 0, 'System', '2021-02-01', 'System', '2021-02-01'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00003', '蒙古族', 0, 'System', '2021-02-02', 'System', '2021-02-02'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00004', '回族', 0, 'System', '2021-02-03', '', '2021-02-11'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00005', '藏族', 0, 'System', '2021-02-04', 'System', '2021-02-04'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00006', '维吾尔族', 0, 'System', '2021-02-05', '', '2021-02-01'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00007', '苗族', 0, 'System', '2021-02-06', 'System', '2021-02-06'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00008', '彝族', 0, 'System', '2021-02-07', '', '2021-06-29'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00009', '壮族', 0, 'System', '2021-02-08', 'System', '2021-02-08'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00010', '布依族', 0, 'System', '2021-02-09', '', '2021-02-01'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00011', '侗族', 0, 'System', '2021-02-10', 'System', '2021-02-10'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00012', '瑶族', 0, 'System', '2021-02-11', 'System', '2021-02-11'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00026', '纳西族', 0, 'System', '2021-02-25', 'System', '2021-02-25'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00027', '景颇族', 0, 'System', '2021-02-26', 'System', '2021-02-26'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00044', '俄罗斯族', 0, 'System', '2021-03-15', 'System', '2021-03-15'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00045', '鄂温克族', 0, 'System', '2021-03-16', 'System', '2021-03-16'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00046', '德昂族', 0, 'System', '2021-03-17', 'System', '2021-03-17'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00047', '保安族', 0, 'System', '2021-03-18', 'System', '2021-03-18'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00048', '裕固族', 0, 'System', '2021-03-19', 'System', '2021-03-19'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00049', '京族', 0, 'System', '2021-03-20', 'System', '2021-03-20'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00050', '塔塔尔族', 0, 'System', '2021-03-21', '', '2021-02-11'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00051', '独龙族', 0, 'System', '2021-03-22', 'System', '2021-03-22'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00042', '怒族', 0, 'System', '2021-03-13', 'System', '2021-03-13'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00043', '乌孜别克族', 0, 'System', '2021-03-14', 'System', '2021-03-14'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-2022006', '大韩民族', 0, 'admin', '2022-02-26', NULL, NULL); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00035', '毛南族', 0, 'System', '2021-03-06', '', '2022-05-09'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00052', '鄂伦春族', 0, 'System', '2021-03-23', 'System', '2021-03-23'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00053', '赫哲族', 0, 'System', '2021-03-24', 'System', '2021-03-24'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00054', '门巴族', 0, 'System', '2021-03-25', 'System', '2021-03-25'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00055', '珞巴族', 0, 'System', '2021-03-26', '', '2021-05-10'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00056', '基诺族', 0, 'System', '2021-03-27', '', '2021-05-10'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-2022005', '大和民族', 0, 'admin', '2022-02-01', '', '2022-02-26'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00013', '白族', 0, 'System', '2021-02-12', 'WK010', '2021-02-17'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00014', '土家族', 0, 'System', '2021-02-13', 'System', '2021-02-13'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00015', '哈尼族', 0, 'System', '2021-02-14', 'System', '2021-02-14'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00016', '哈萨克族', 0, 'System', '2021-02-15', 'System', '2021-02-15'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00017', '傣族', 0, 'System', '2021-02-16', 'System', '2021-02-16'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00018', '黎族', 0, 'System', '2021-02-17', 'System', '2021-02-17'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00019', '傈僳族', 0, 'System', '2021-02-18', '', '2021-02-11'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00020', '佤族', 0, 'System', '2021-02-19', 'System', '2021-02-19'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00021', '畲族', 0, 'System', '2021-02-20', 'System', '2021-02-20'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00022', '高山族', 0, 'System', '2021-02-21', 'System', '2021-02-21'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00023', '拉祜族', 0, 'System', '2021-02-22', 'System', '2021-02-22'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00024', '水族', 0, 'System', '2021-02-23', 'System', '2021-02-23'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00025', '东乡族', 0, 'System', '2021-02-24', 'System', '2021-02-24'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00028', '柯尔克孜族', 0, 'System', '2021-02-27', 'System', '2021-02-27'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00029', '土族', 0, 'System', '2021-02-28', 'System', '2021-02-28'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00030', '达斡尔族', 0, 'System', '2021-03-01', 'System', '2021-03-01'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00031', '仫佬族', 0, 'System', '2021-03-02', 'System', '2021-03-02'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00032', '羌族', 0, 'System', '2021-03-03', 'System', '2021-03-03'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00033', '布朗族', 0, 'System', '2021-03-04', 'System', '2021-03-04'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00034', '撒拉族', 0, 'System', '2021-03-05', 'System', '2021-03-05'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00036', '仡佬族', 0, 'System', '2021-03-07', 'System', '2021-03-07'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00037', '锡伯族', 0, 'System', '2021-03-08', 'System', '2021-03-08'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00038', '阿昌族', 0, 'System', '2021-03-09', 'System', '2021-03-09'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00039', '普米族', 0, 'System', '2021-03-10', 'System', '2021-03-10'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00040', '朝鲜族', 0, 'System', '2021-03-11', 'System', '2021-03-11'); -INSERT INTO `nation` (`nation_no`, `nation_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('N-00041', '塔吉克族', 0, 'System', '2021-03-12', 'System', '2021-03-12'); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (55, '2022-02-20 13:43:58', 'admin-杨俊杰在2022/2/20 13:43:57位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-20 13:43:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (56, '2022-02-20 20:05:40', 'WK010-杨俊杰在2022/2/20 20:05:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-20 20:05:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (57, '2022-02-20 20:43:48', 'admin-杨俊杰在2022/2/20 20:43:48位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-20 20:43:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (58, '2022-02-21 17:23:44', 'admin-杨俊杰在2022-02-21 17:23:43位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-21 17:23:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (59, '2022-02-21 17:24:18', 'admin-杨俊杰在2022-02-21 17:24:17位于1.5.0.7执行:新增职位类型操作!新增值为:P-2022006', 'admin', 200, 0, 'admin', '2022-02-21 17:24:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (60, '2022-02-21 20:29:44', 'WK010-杨俊杰在2022/2/21 20:29:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-21 20:29:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (62, '2022-02-21 20:29:54', 'SqlSugar.SqlSugarException: 23505: 重复键违反唯一约束\"workercheck_pkey\"', 'WK010', 300, 0, 'WK010', '2022-02-21 20:29:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (64, '2022-02-21 20:30:00', 'SqlSugar.SqlSugarException: 23505: 重复键违反唯一约束\"workercheck_pkey\"', 'WK010', 300, 0, 'WK010', '2022-02-21 20:30:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (65, '2022-02-21 20:31:16', 'WK010-杨俊杰在2022/2/21 20:31:15位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-21 20:31:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (67, '2022-02-22 23:11:35', 'admin-杨俊杰在2022/2/22 23:11:35位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-22 23:11:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (68, '2022-02-22 23:12:36', 'WK010-杨俊杰在2022/2/22 23:12:35位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-22 23:12:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (69, '2022-02-22 23:13:12', 'SqlSugar.SqlSugarException: 42804: 字段 \"WtiNo\" 的类型为 integer, 但表达式的类型为 text', 'WK010', 300, 0, 'WK010', '2022-02-22 23:13:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (70, '2022-02-22 23:13:19', 'SqlSugar.SqlSugarException: 42804: 字段 \"WtiNo\" 的类型为 integer, 但表达式的类型为 text', 'WK010', 300, 0, 'WK010', '2022-02-22 23:13:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (71, '2022-02-22 23:15:11', 'SqlSugar.SqlSugarException: 23502: null value in column \"WtiNo\" of relation \"wtinfo\" violates not-null constraint', 'WK010', 300, 0, 'WK010', '2022-02-22 23:15:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (73, '2022-02-23 23:17:30', 'admin-杨俊杰在2022/2/23 23:17:29位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-23 23:17:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (74, '2022-02-25 22:13:25', 'WK010-杨俊杰在2022/2/25 22:13:25位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-25 22:13:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (76, '2022-02-26 11:53:17', 'admin-杨俊杰在2022/2/26 11:53:17位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 11:53:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (77, '2022-02-26 11:54:54', 'admin-杨俊杰在2022/2/26 11:54:53位于1.5.0.7执行:删除学历类型操作!删除值为:E-00008', 'admin', 200, 0, 'admin', '2022-02-26 11:54:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (78, '2022-02-26 11:54:57', 'admin-杨俊杰在2022/2/26 11:54:57位于1.5.0.7执行:删除学历类型操作!删除值为:E-202101', 'admin', 200, 0, 'admin', '2022-02-26 11:54:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (79, '2022-02-26 11:55:00', 'admin-杨俊杰在2022/2/26 11:55:00位于1.5.0.7执行:删除学历类型操作!删除值为:E-00009', 'admin', 200, 0, 'admin', '2022-02-26 11:55:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (80, '2022-02-26 12:19:59', 'WK010-杨俊杰在2022/2/26 12:19:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 12:19:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (81, '2022-02-26 12:20:22', 'SqlSugar.SqlSugarException: 42804: 字段 \"WtiNo\" 的类型为 integer, 但表达式的类型为 text', 'WK010', 300, 0, 'WK010', '2022-02-26 12:20:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (82, '2022-02-26 12:21:04', 'WK010-杨俊杰在2022/2/26 12:21:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 12:21:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (83, '2022-02-26 12:22:00', 'SqlSugar.SqlSugarException: 42804: 字段 \"WtiNo\" 的类型为 integer, 但表达式的类型为 text', 'WK010', 300, 0, 'WK010', '2022-02-26 12:22:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (84, '2022-02-26 12:28:05', 'WK010-杨俊杰在2022/2/26 12:28:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 12:28:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (85, '2022-02-26 12:28:45', '经理部-总经理-杨俊杰于2022/2/26 12:28:44帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-02-26 12:28:45', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (87, '2022-02-26 12:29:23', '经理部-总经理-杨俊杰于2022/2/26 12:29:22帮助TS-20210078进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-02-26 12:29:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (88, '2022-02-26 12:29:41', '经理部-总经理-杨俊杰于2022/2/26 12:29:40帮助TS-20220089进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-02-26 12:29:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (89, '2022-02-26 12:29:57', '经理部-总经理-杨俊杰于2022/2/26 12:29:56帮助TS-20220090进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-02-26 12:29:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (90, '2022-02-26 12:30:12', '经理部-总经理-杨俊杰于2022/2/26 12:30:11帮助TS-20220099进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-02-26 12:30:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (91, '2022-02-26 12:31:08', 'WK010-杨俊杰在2022/2/26 12:31:08位于1.5.0.7执行:添加了一名客户,客户编号为:TS-202200136', 'WK010', 300, 0, 'WK010', '2022-02-26 12:31:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (92, '2022-02-26 13:33:18', 'WK010-杨俊杰在2022/2/26 13:33:18位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:33:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (93, '2022-02-26 13:33:43', 'admin-杨俊杰在2022/2/26 13:33:43位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 13:33:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (94, '2022-02-26 13:38:52', 'WK010-杨俊杰在2022/2/26 13:38:51位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:38:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (95, '2022-02-26 13:39:54', 'WK010-杨俊杰在2022/2/26 13:39:53位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:39:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (96, '2022-02-26 13:40:17', 'WK010-杨俊杰在2022/2/26 13:40:17位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:40:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (97, '2022-02-26 13:51:19', 'WK010-杨俊杰在2022/2/26 13:51:18位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:51:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (98, '2022-02-26 13:53:19', 'WK010-杨俊杰在2022/2/26 13:53:18位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:53:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (100, '2022-02-26 13:54:46', 'WK010-杨俊杰在2022/2/26 13:54:45位于1.5.0.7执行:帮助TS-20210078进行了消费商品:乐事薯片(原味)操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 13:54:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (101, '2022-02-26 13:59:10', 'WK010-杨俊杰在2022/2/26 13:59:09位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:59:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (103, '2022-02-26 13:59:34', 'WK010-杨俊杰在2022/2/26 13:59:34位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 13:59:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (104, '2022-02-26 14:22:12', 'WK010-杨俊杰在2022/2/26 14:22:11位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:22:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (105, '2022-02-26 14:22:49', 'WK010-杨俊杰在2022/2/26 14:22:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:22:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (106, '2022-02-26 14:24:34', 'WK010-杨俊杰在2022/2/26 14:24:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:24:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (107, '2022-02-26 14:26:30', 'WK010-杨俊杰在2022/2/26 14:26:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:26:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (108, '2022-02-26 14:27:59', 'WK010-杨俊杰在2022/2/26 14:27:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:27:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (109, '2022-02-26 14:31:00', 'WK010-杨俊杰在2022/2/26 14:30:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:31:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (110, '2022-02-26 14:36:26', 'WK010-杨俊杰在2022/2/26 14:36:25位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:36:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (112, '2022-02-26 14:37:06', 'SqlSugar.SqlSugarException: 23502: null value in column \"SellName\" of relation \"sellthing\" violates not-null constraint', 'WK010', 300, 0, 'WK010', '2022-02-26 14:37:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (113, '2022-02-26 14:37:25', 'WK010-杨俊杰在2022/2/26 14:37:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:37:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (115, '2022-02-26 14:38:04', 'SqlSugar.SqlSugarException: 23502: null value in column \"SellName\" of relation \"sellthing\" violates not-null constraint', 'WK010', 300, 0, 'WK010', '2022-02-26 14:38:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (116, '2022-02-26 14:46:52', 'WK010-杨俊杰在2022/2/26 14:46:51位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:46:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (118, '2022-02-26 14:47:15', 'WK010-杨俊杰在2022/2/26 14:47:15位于1.5.0.7执行:帮助TS-20210078进行了消费商品:毛巾操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 14:47:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (119, '2022-02-26 14:52:54', 'WK010-杨俊杰在2022/2/26 14:52:53位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:52:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (120, '2022-02-26 14:58:06', 'WK010-杨俊杰在2022/2/26 14:58:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:58:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (121, '2022-02-26 14:58:56', 'WK010-杨俊杰在2022/2/26 14:58:55位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:58:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (122, '2022-02-26 15:00:16', 'WK010-杨俊杰在2022/2/26 15:00:16位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:00:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (123, '2022-02-26 15:00:49', 'WK010-杨俊杰在2022/2/26 15:00:49位于1.5.0.7执行:帮助TS-20210078撤销了消费商品:操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:00:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (124, '2022-02-26 15:20:40', 'WK010-杨俊杰在2022/2/26 15:20:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:20:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (125, '2022-02-26 15:21:54', 'WK010-杨俊杰在2022/2/26 15:21:54位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:21:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (126, '2022-02-26 15:23:35', 'WK010-杨俊杰在2022/2/26 15:23:35位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:23:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (127, '2022-02-26 15:24:04', 'WK010-杨俊杰在2022/2/26 15:24:03位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:24:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (128, '2022-02-26 15:27:25', 'WK010-杨俊杰在2022/2/26 15:27:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:27:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (129, '2022-02-26 15:27:46', 'SqlSugar.SqlSugarException: 42601: 语法错误 在 \"\"SpendPrice\"\" 或附近的', 'WK010', 300, 0, 'WK010', '2022-02-26 15:27:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (130, '2022-02-26 15:27:57', 'WK010-杨俊杰在2022/2/26 15:27:56位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:27:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (131, '2022-02-26 15:28:29', 'SqlSugar.SqlSugarException: 42601: 语法错误 在 \"\"SpendPrice\"\" 或附近的', 'WK010', 300, 0, 'WK010', '2022-02-26 15:28:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (132, '2022-02-26 15:28:58', 'WK010-杨俊杰在2022/2/26 15:28:57位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:28:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (133, '2022-02-26 15:29:15', 'SqlSugar.SqlSugarException: 42601: 语法错误 在 \"$3\" 或附近的', 'WK010', 300, 0, 'WK010', '2022-02-26 15:29:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (134, '2022-02-26 15:29:49', 'WK010-杨俊杰在2022/2/26 15:29:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:29:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (135, '2022-02-26 15:32:04', 'SqlSugar.SqlSugarException: 42601: 语法错误 在 \"$3\" 或附近的', 'WK010', 300, 0, 'WK010', '2022-02-26 15:32:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (136, '2022-02-26 15:34:30', 'WK010-杨俊杰在2022/2/26 15:34:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:34:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (137, '2022-02-26 15:36:01', 'WK010-杨俊杰在2022/2/26 15:36:00位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:36:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (138, '2022-02-26 15:37:14', 'WK010-杨俊杰在2022/2/26 15:37:13位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:37:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (139, '2022-02-26 15:39:14', 'WK010-杨俊杰在2022/2/26 15:39:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:39:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (140, '2022-02-26 15:40:18', 'WK010-杨俊杰在2022/2/26 15:40:18位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:40:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (141, '2022-02-26 15:47:03', 'WK010-杨俊杰在2022/2/26 15:47:03位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:47:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (142, '2022-02-26 15:48:27', 'WK010-杨俊杰在2022/2/26 15:48:26位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:48:27', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (143, '2022-02-26 15:48:54', 'WK010-杨俊杰在2022/2/26 15:48:53位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:48:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (144, '2022-02-26 15:50:40', 'WK010-杨俊杰在2022/2/26 15:50:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:50:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (145, '2022-02-26 15:52:28', 'WK010-杨俊杰在2022/2/26 15:52:28位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:52:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (146, '2022-02-26 15:53:06', 'WK010-杨俊杰在2022/2/26 15:53:05位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:53:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (147, '2022-02-26 15:55:23', 'WK010-杨俊杰在2022/2/26 15:55:23位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:55:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (148, '2022-02-26 15:55:43', 'WK010-杨俊杰在2022/2/26 15:55:43位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:55:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (149, '2022-02-26 15:58:23', 'WK010-杨俊杰在2022/2/26 15:58:22位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:58:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (151, '2022-02-26 15:58:40', 'WK010-杨俊杰在2022/2/26 15:58:40位于1.5.0.7执行:帮助TS-20210078进行了消费商品:毛巾操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:58:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (152, '2022-02-26 15:58:54', 'WK010-杨俊杰在2022/2/26 15:58:53位于1.5.0.7执行:帮助TS-20210078进行了消费商品:毛巾操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:58:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (153, '2022-02-26 15:59:34', 'WK010-杨俊杰在2022/2/26 15:59:34位于1.5.0.7执行:修改了一名客户信息,客户编号为:TS-20220099', 'WK010', 300, 0, 'WK010', '2022-02-26 15:59:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (154, '2022-02-26 16:02:33', 'WK010-杨俊杰在2022/2/26 16:02:33位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:02:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (155, '2022-02-26 16:03:29', 'WK010-杨俊杰在2022/2/26 16:03:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:03:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (156, '2022-02-26 16:04:46', 'WK010-杨俊杰在2022/2/26 16:04:45位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:04:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (157, '2022-02-26 16:06:30', 'WK010-杨俊杰在2022/2/26 16:06:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:06:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (158, '2022-02-26 16:08:18', 'WK010-杨俊杰在2022/2/26 16:08:18位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:08:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (159, '2022-02-26 16:09:01', 'WK010-杨俊杰在2022/2/26 16:09:00位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:09:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (160, '2022-02-26 16:09:23', 'WK010-杨俊杰在2022/2/26 16:09:22位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:09:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (161, '2022-02-26 16:10:38', 'WK010-杨俊杰在2022/2/26 16:10:38位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:10:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (162, '2022-02-26 16:13:00', 'WK010-杨俊杰在2022/2/26 16:12:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:13:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (163, '2022-02-26 16:15:31', 'WK010-杨俊杰在2022/2/26 16:15:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:15:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (164, '2022-02-26 16:17:50', 'WK010-杨俊杰在2022/2/26 16:17:50位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:17:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (165, '2022-02-26 16:20:22', 'WK010-杨俊杰在2022/2/26 16:20:21位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:20:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (166, '2022-02-26 16:21:31', 'WK010-杨俊杰在2022/2/26 16:21:31位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:21:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (167, '2022-02-26 16:47:30', 'WK010-杨俊杰在2022/2/26 16:47:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:47:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (168, '2022-02-26 16:48:22', 'SqlSugar.SqlSugarException: 22001: 对于可变字符类型来说,值太长了(11)', 'WK010', 300, 0, 'WK010', '2022-02-26 16:48:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (169, '2022-02-26 16:49:35', 'WK010-杨俊杰在2022/2/26 16:49:35位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:49:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (170, '2022-02-26 16:50:30', 'SqlSugar.SqlSugarException: 22001: 对于可变字符类型来说,值太长了(11)', 'WK010', 300, 0, 'WK010', '2022-02-26 16:50:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (171, '2022-02-26 16:51:19', 'WK010-杨俊杰在2022/2/26 16:51:19位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:51:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (172, '2022-02-26 16:51:40', 'SqlSugar.SqlSugarException: 22001: 对于可变字符类型来说,值太长了(11)', 'WK010', 300, 0, 'WK010', '2022-02-26 16:51:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (173, '2022-02-26 16:52:59', 'WK010-杨俊杰在2022/2/26 16:52:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:52:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (174, '2022-02-26 16:53:19', 'SqlSugar.SqlSugarException: 22001: 对于可变字符类型来说,值太长了(20)', 'WK010', 300, 0, 'WK010', '2022-02-26 16:53:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (175, '2022-02-26 16:54:41', 'WK010-杨俊杰在2022/2/26 16:54:41位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:54:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (176, '2022-02-26 16:55:06', '经理部总经理杨俊杰于2022/2/26 16:55:06帮助21321313213进行了预订房间操作!', 'WK010', 100, 0, 'WK010', '2022-02-26 16:55:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (177, '2022-02-26 17:01:13', 'admin-杨俊杰在2022/2/26 17:01:12位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:01:13', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (178, '2022-02-26 17:01:21', 'admin-杨俊杰在2022/2/26 17:01:20位于1.5.0.7执行:删除职位类型操作!删除值为:P-2022006', 'admin', 200, 0, 'admin', '2022-02-26 17:01:21', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (179, '2022-02-26 17:01:39', 'admin-杨俊杰在2022/2/26 17:01:38位于1.5.0.7执行:恢复学历类型操作!删除值为:E-00008', 'admin', 200, 0, 'admin', '2022-02-26 17:01:39', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (180, '2022-02-26 17:01:44', 'admin-杨俊杰在2022/2/26 17:01:43位于1.5.0.7执行:恢复学历类型操作!删除值为:E-202101', 'admin', 200, 0, 'admin', '2022-02-26 17:01:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (181, '2022-02-26 17:01:46', 'admin-杨俊杰在2022/2/26 17:01:45位于1.5.0.7执行:恢复学历类型操作!删除值为:E-00009', 'admin', 200, 0, 'admin', '2022-02-26 17:01:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (182, '2022-02-26 17:03:19', 'admin-杨俊杰在2022/2/26 17:03:18位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:03:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (183, '2022-02-26 17:04:13', 'admin-杨俊杰在2022/2/26 17:04:13位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:04:13', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (184, '2022-02-26 17:10:47', 'admin-杨俊杰在2022/2/26 17:10:47位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:10:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (185, '2022-02-26 17:12:36', 'admin-杨俊杰在2022/2/26 17:12:35位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:12:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (186, '2022-02-26 17:14:43', 'admin-杨俊杰在2022/2/26 17:14:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:14:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (187, '2022-02-26 17:15:52', 'admin-杨俊杰在2022/2/26 17:15:52位于1.5.0.7执行:添加会员规则操作!新增值为:VR-2022022600052', 'admin', 200, 0, 'admin', '2022-02-26 17:15:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (188, '2022-02-26 17:22:44', 'WK010-杨俊杰在2022/2/26 17:22:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 17:22:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (189, '2022-02-26 17:22:57', 'admin-杨俊杰在2022/2/26 17:22:57位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:22:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (190, '2022-02-26 17:36:42', 'admin-杨俊杰在2022/2/26 17:36:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:36:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (191, '2022-02-26 17:36:52', 'admin-杨俊杰在2022/2/26 17:36:52位于1.5.0.7执行:恢复职位类型操作!恢复值为:P-2022006', 'admin', 200, 0, 'admin', '2022-02-26 17:36:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (192, '2022-02-26 17:36:55', 'admin-杨俊杰在2022/2/26 17:36:55位于1.5.0.7执行:删除职位类型操作!删除值为:P-2022006', 'admin', 200, 0, 'admin', '2022-02-26 17:36:55', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (193, '2022-02-26 17:40:21', 'admin-杨俊杰在2022/2/26 17:40:21位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:40:21', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (194, '2022-02-26 17:49:47', 'admin-杨俊杰在2022/2/26 17:49:46位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:49:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (195, '2022-02-26 17:51:08', 'admin-杨俊杰在2022/2/26 17:51:08位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:51:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (196, '2022-02-26 17:57:30', 'admin-杨俊杰在2022/2/26 17:57:30位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:57:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (197, '2022-02-26 17:57:44', 'admin-杨俊杰在2022/2/26 17:57:44位于1.5.0.7执行:删除民族类型操作!删除值为:N-2022005', 'admin', 200, 0, 'admin', '2022-02-26 17:57:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (198, '2022-02-26 17:57:49', 'admin-杨俊杰在2022/2/26 17:57:48位于1.5.0.7执行:恢复民族类型操作!恢复值为:N-2022005', 'admin', 200, 0, 'admin', '2022-02-26 17:57:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (199, '2022-02-26 18:39:36', 'admin-杨俊杰在2022/2/26 18:39:35位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 18:39:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (200, '2022-02-26 18:40:42', 'admin-杨俊杰在2022/2/26 18:40:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 18:40:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (201, '2022-02-26 18:53:34', 'admin-杨俊杰在2022/2/26 18:53:34位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 18:53:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (202, '2022-02-26 18:54:48', 'admin-杨俊杰在2022/2/26 18:54:48位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 18:54:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (203, '2022-02-26 18:58:04', 'admin-杨俊杰在2022/2/26 18:58:03位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 18:58:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (204, '2022-02-26 19:30:36', 'admin-杨俊杰在2022/2/26 19:30:35位于1.5.0.7执行:新增民族类型操作!新增值为:N-2022006', 'admin', 200, 0, 'admin', '2022-02-26 19:30:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (205, '2022-02-26 19:31:41', 'admin-杨俊杰在2022/2/26 19:31:41位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 19:31:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (208, '2022-02-26 20:36:36', 'WK010-杨俊杰在2022/2/26 20:36:36位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 20:36:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (209, '2022-02-26 22:50:37', 'admin-杨俊杰在2022/2/26 22:50:36位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 22:50:37', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (210, '2022-02-27 01:10:49', 'WK010-杨俊杰在2022/2/27 1:10:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:10:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (212, '2022-02-27 01:24:30', 'WK010-杨俊杰在2022/2/27 1:24:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:24:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (213, '2022-02-27 01:25:08', 'WK010-杨俊杰在2022/2/27 1:25:08位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:25:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (214, '2022-02-27 01:25:26', 'WK010-杨俊杰在2022/2/27 1:25:26位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:25:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (215, '2022-02-27 01:30:48', 'WK010-杨俊杰在2022/2/27 1:30:48位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:30:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (216, '2022-02-27 01:31:18', 'WK010-杨俊杰在2022/2/27 1:31:17位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:31:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (217, '2022-02-27 01:32:12', 'WK010-杨俊杰在2022/2/27 1:32:11位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:32:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (218, '2022-02-27 01:36:45', 'WK010-杨俊杰在2022/2/27 1:36:45位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:36:45', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (219, '2022-02-27 01:38:15', 'WK010-杨俊杰在2022/2/27 1:38:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:38:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (220, '2022-02-27 01:38:28', 'admin-杨俊杰在2022/2/27 1:38:28位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-27 01:38:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (221, '2022-02-27 01:43:00', 'WK010-杨俊杰在2022/2/27 1:43:00位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:43:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (222, '2022-02-27 01:43:20', 'WK010-杨俊杰在2022/2/27 1:43:20位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:43:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (223, '2022-02-27 01:44:32', 'WK010-杨俊杰在2022/2/27 1:44:31位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:44:32', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (224, '2022-02-28 00:03:11', 'WK010-杨俊杰在2022/2/28 0:03:11位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-28 00:03:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (226, '2022-02-28 19:15:56', 'admin-杨俊杰在2022/2/28 19:15:55位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-28 19:15:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (227, '2022-02-28 19:16:38', 'SqlSugar.SqlSugarException: 23502: null value in column \"module_id\" of relation \"module_zero\" violates not-null constraint', 'admin', 300, 0, 'admin', '2022-02-28 19:16:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (228, '2022-03-01 23:36:38', 'WK010-杨俊杰在2022/3/1 23:36:37位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-01 23:36:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (229, '2022-03-01 23:39:04', 'admin-杨俊杰在2022/3/1 23:39:03位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-01 23:39:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (230, '2022-03-03 08:01:59', 'WK010-杨俊杰在2022-03-03 8:01:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-03 08:01:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (231, '2022-03-03 08:03:38', 'SqlSugar.SqlSugarException: 42804: 字段 \"WtiNo\" 的类型为 smallint, 但表达式的类型为 text', 'WK010', 300, 0, 'WK010', '2022-03-03 08:03:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (232, '2022-03-03 09:14:56', 'admin-杨俊杰在2022/3/3 9:14:55位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-03 09:14:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (233, '2022-03-03 09:21:23', 'admin-杨俊杰在2022/3/3 9:21:23位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-03 09:21:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (234, '2022-03-05 21:18:20', 'WK010-杨俊杰在2022/3/5 21:18:19位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-05 21:18:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (235, '2022-03-06 01:22:01', 'WK010-杨俊杰在2022/3/6 1:22:01位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-06 01:22:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (236, '2022-03-06 01:23:01', 'admin-杨俊杰在2022/3/6 1:23:01位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-06 01:23:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (237, '2022-03-06 12:39:56', 'WK010-杨俊杰在2022/3/6 12:39:56位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-06 12:39:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (238, '2022-03-09 17:23:43', 'admin-杨俊杰在2022/3/9 17:23:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-09 17:23:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (239, '2022-03-09 17:31:00', 'admin-杨俊杰在2022/3/9 17:30:59位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-09 17:31:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (240, '2022-03-09 23:12:25', 'WK010-杨俊杰在2022/3/9 23:12:25位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-09 23:12:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (241, '2022-03-10 17:43:52', 'WK010-杨俊杰在2022/3/10 17:43:52位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-10 17:43:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (242, '2022-03-11 20:43:40', 'admin-杨俊杰在2022/3/11 20:43:40位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-11 20:43:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (243, '2022-03-13 14:05:06', 'WK010-杨俊杰在2022/3/13 14:05:05位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 14:05:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (244, '2022-03-13 14:42:34', 'admin-杨俊杰在2022/3/13 14:42:33位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-13 14:42:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (245, '2022-03-13 14:43:15', 'WK010-杨俊杰在2022/3/13 14:43:15位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 14:43:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (246, '2022-03-13 14:46:11', 'WK010-杨俊杰在2022/3/13 14:46:10位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 14:46:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (247, '2022-03-13 14:47:45', 'WK010-杨俊杰在2022/3/13 14:47:45位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 14:47:45', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (248, '2022-03-13 14:49:06', 'WK010-杨俊杰在2022/3/13 14:49:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 14:49:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (249, '2022-03-13 14:52:30', 'WK010-杨俊杰在2022/3/13 14:52:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 14:52:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (250, '2022-03-13 14:53:01', '经理部-总经理-杨俊杰于2022/3/13 14:53:00帮助TS001344013384进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 14:53:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (252, '2022-03-13 14:54:46', '经理部-总经理-杨俊杰于2022/3/13 14:54:46帮助TS000299787414进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 14:54:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (253, '2022-03-13 14:55:12', '经理部-总经理-杨俊杰于2022/3/13 14:55:11帮助TS001535098782进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 14:55:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (254, '2022-03-13 14:55:35', '经理部-总经理-杨俊杰于2022/3/13 14:55:34帮助TS003574305322进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 14:55:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (255, '2022-03-13 14:56:01', '经理部-总经理-杨俊杰于2022/3/13 14:56:00帮助TS004121649776进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 14:56:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (256, '2022-03-13 15:02:23', 'WK010-杨俊杰在2022/3/13 15:02:23位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:02:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (257, '2022-03-13 15:04:04', 'WK010-杨俊杰在2022/3/13 15:04:03位于1.5.0.7执行:添加了一名客户,客户编号为:TS-202200141', 'WK010', 300, 0, 'WK010', '2022-03-13 15:04:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (258, '2022-03-13 15:08:38', 'WK010-杨俊杰在2022/3/13 15:08:37位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:08:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (259, '2022-03-13 15:11:39', 'WK010-杨俊杰在2022/3/13 15:11:38位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:11:39', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (260, '2022-03-13 15:14:06', 'WK010-杨俊杰在2022/3/13 15:14:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:14:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (261, '2022-03-13 15:14:31', '经理部-总经理-杨俊杰于2022/3/13 15:14:31帮助TS01562313进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 15:14:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (262, '2022-03-13 15:15:00', '经理部-总经理-杨俊杰于2022/3/13 15:14:59帮助TS096263040047进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 15:15:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (263, '2022-03-13 15:15:26', '经理部-总经理-杨俊杰于2022/3/13 15:15:26帮助TS039625402835进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 15:15:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (264, '2022-03-13 15:26:28', 'WK010-杨俊杰在2022/3/13 15:26:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:26:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (265, '2022-03-13 15:27:55', 'WK010-杨俊杰在2022/3/13 15:27:54位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:27:55', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (266, '2022-03-13 15:36:35', 'WK010-杨俊杰在2022/3/13 15:36:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:36:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (267, '2022-03-13 15:39:10', 'WK010-杨俊杰在2022/3/13 15:39:10位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:39:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (268, '2022-03-13 15:40:31', 'WK010-杨俊杰在2022/3/13 15:40:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:40:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (269, '2022-03-13 15:50:28', 'WK010-杨俊杰在2022/3/13 15:50:27位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:50:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (270, '2022-03-13 15:51:05', 'admin-杨俊杰在2022/3/13 15:51:04位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-13 15:51:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (271, '2022-03-13 15:57:15', 'WK010-杨俊杰在2022/3/13 15:57:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:57:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (272, '2022-03-13 15:59:33', 'admin-杨俊杰在2022/3/13 15:59:33位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-13 15:59:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (273, '2022-03-13 16:06:39', 'WK010-杨俊杰在2022/3/13 16:06:39位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 16:06:39', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (274, '2022-03-13 20:55:34', 'WK010-杨俊杰在2022/3/13 20:55:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 20:55:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (275, '2022-03-13 20:56:20', '经理部-总经理-杨俊杰于2022/3/13 20:56:20帮助TS006957585451进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 20:56:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (276, '2022-03-13 23:43:06', 'admin-杨俊杰在2022/3/13 23:43:06位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-13 23:43:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (278, '2022-03-14 19:54:50', 'WK010-杨俊杰在2022/3/14 19:54:50位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-14 19:54:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (280, '2022-03-14 19:55:42', '经理部-总经理-杨俊杰于2022/3/14 19:55:42帮助TS001535098782进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-14 19:55:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (281, '2022-03-14 19:56:13', '经理部-总经理-杨俊杰于2022/3/14 19:56:12帮助TS006292728074进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-14 19:56:13', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (282, '2022-03-14 20:04:10', 'WK010-杨俊杰在2022/3/14 20:04:10位于1.5.0.7执行:修改了一名客户信息,客户编号为:TS-202200136', 'WK010', 300, 0, 'WK010', '2022-03-14 20:04:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (283, '2022-03-14 22:34:43', 'WK010-杨俊杰在2022/3/14 22:34:42位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-14 22:34:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (284, '2022-03-14 22:39:19', 'WK010-杨俊杰在2022/3/14 22:39:18位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-14 22:39:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (285, '2022-03-14 22:39:36', 'WK010-杨俊杰在2022/3/14 22:39:35位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-14 22:39:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (286, '2022-03-14 22:40:34', 'WK010-杨俊杰在2022/3/14 22:40:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-14 22:40:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (288, '2022-03-14 23:31:29', 'WK010-杨俊杰在2022/3/14 23:31:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-14 23:31:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (289, '2022-03-14 23:31:52', '经理部-总经理-杨俊杰于2022/3/14 23:31:52帮助TS015253323658进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-14 23:31:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (290, '2022-03-14 23:32:19', '经理部-总经理-杨俊杰于2022/3/14 23:32:19帮助TS026428262056进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-14 23:32:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (291, '2022-03-14 23:32:47', '经理部-总经理-杨俊杰于2022/3/14 23:32:47帮助TS063603838018进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-14 23:32:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (292, '2022-03-14 23:33:59', 'admin-杨俊杰在2022/3/14 23:33:59位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-14 23:33:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (293, '2022-03-15 19:38:17', 'WK010-杨俊杰在2022/3/15 19:38:17位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-15 19:38:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (294, '2022-03-15 19:38:41', '经理部-总经理-杨俊杰于2022/3/15 19:38:40帮助TS012832200601进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-15 19:38:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (296, '2022-03-15 23:17:28', 'WK010-杨俊杰在2022/3/15 23:17:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-15 23:17:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (297, '2022-03-16 23:08:06', 'WK010-杨俊杰在2022/3/16 23:08:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-16 23:08:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (299, '2022-03-17 23:14:16', 'WK010-杨俊杰在2022/3/17 23:14:15位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-17 23:14:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (301, '2022-03-17 23:15:20', 'admin-杨俊杰在2022/3/17 23:15:20位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-17 23:15:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (302, '2022-03-20 16:05:46', 'WK010-杨俊杰在2022/3/20 16:05:45位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-20 16:05:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (304, '2022-03-20 16:06:22', '经理部-总经理-杨俊杰于2022/3/20 16:06:21帮助TS006957585451进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-20 16:06:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (305, '2022-03-20 16:06:46', '经理部-总经理-杨俊杰于2022/3/20 16:06:45帮助TS011721677405进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-20 16:06:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (306, '2022-03-21 18:58:59', 'admin-杨俊杰在2022/3/21 18:58:59位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-21 18:58:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (307, '2022-03-22 11:42:43', 'WK010-杨俊杰在2022-03-22 11:42:42位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-22 11:42:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (308, '2022-03-22 16:03:40', 'admin-杨俊杰在2022-03-22 16:03:40位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-22 16:03:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (309, '2022-03-22 16:04:24', 'WK010-杨俊杰在2022-03-22 16:04:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-22 16:04:24', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (311, '2022-03-23 19:44:05', 'WK010-杨俊杰在2022/3/23 19:44:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-23 19:44:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (313, '2022-03-24 23:03:01', 'WK010-杨俊杰在2022/3/24 23:03:00位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-24 23:03:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (315, '2022-03-25 19:38:14', 'WK010-杨俊杰在2022-03-25 19:38:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-25 19:38:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (316, '2022-03-26 00:48:02', 'WK010-杨俊杰在2022/3/26 0:48:02位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-26 00:48:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (317, '2022-03-26 20:44:52', 'WK010-杨俊杰在2022/3/26 20:44:52位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-26 20:44:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (319, '2022-03-28 23:05:20', 'WK010-杨俊杰在2022/3/28 23:05:20位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-28 23:05:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (321, '2022-03-28 23:06:03', '经理部-总经理-杨俊杰于2022/3/28 23:06:02帮助TS053630244707进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-28 23:06:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (322, '2022-03-28 23:06:37', '经理部-总经理-杨俊杰于2022/3/28 23:06:37帮助TS900880194151进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-28 23:06:37', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (323, '2022-03-28 23:07:09', '经理部-总经理-杨俊杰于2022/3/28 23:07:09帮助TS040379060037进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-28 23:07:09', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (324, '2022-03-29 15:23:35', 'admin-杨俊杰在2022/3/29 15:23:34位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-29 15:23:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (325, '2022-03-29 15:24:58', 'WK010-杨俊杰在2022/3/29 15:24:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-29 15:24:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (327, '2022-03-29 15:28:27', 'admin-杨俊杰在2022/3/29 15:28:27位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-29 15:28:27', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (328, '2022-03-29 16:44:20', 'WK010-杨俊杰在2022/3/29 16:44:19位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-29 16:44:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (329, '2022-03-29 16:47:25', '经理部-总经理-杨俊杰于2022/3/29 16:47:25帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-03-29 16:47:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (330, '2022-03-29 16:48:12', 'admin-杨俊杰在2022/3/29 16:48:12位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-29 16:48:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (331, '2022-03-29 16:49:34', 'WK010-杨俊杰在2022/3/29 16:49:33位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-29 16:49:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (332, '2022-03-30 19:13:03', 'WK010-杨俊杰在2022/3/30 19:13:03位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-30 19:13:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (334, '2022-03-30 20:52:14', 'admin-杨俊杰在2022/3/30 20:52:13位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-30 20:52:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (335, '2022-03-30 23:06:33', 'WK010-杨俊杰在2022/3/30 23:06:32位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-30 23:06:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (336, '2022-03-31 23:11:32', 'WK010-杨俊杰在2022/3/31 23:11:31位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-31 23:11:32', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (338, '2022-04-01 23:00:16', 'admin-杨俊杰在2022/4/1 23:00:16位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-01 23:00:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (339, '2022-04-03 12:48:05', 'WK010-杨俊杰在2022/4/3 12:48:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 12:48:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (341, '2022-04-03 13:39:57', 'WK010-杨俊杰在2022/4/3 13:39:56位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 13:39:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (342, '2022-04-03 13:40:41', 'WK010-杨俊杰在2022/4/3 13:40:41位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 13:40:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (343, '2022-04-03 13:53:28', 'WK010-杨俊杰在2022/4/3 13:53:27位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 13:53:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (344, '2022-04-03 13:55:12', 'WK010-杨俊杰在2022/4/3 13:55:12位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 13:55:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (345, '2022-04-03 13:56:07', 'WK010-杨俊杰在2022/4/3 13:56:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 13:56:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (346, '2022-04-03 13:58:34', 'WK010-杨俊杰在2022/4/3 13:58:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 13:58:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (347, '2022-04-03 14:00:41', 'WK010-杨俊杰在2022/4/3 14:00:41位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 14:00:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (348, '2022-04-04 12:10:04', 'WK010-杨俊杰在2022/4/4 12:10:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-04 12:10:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (349, '2022-04-04 12:10:37', 'admin-杨俊杰在2022/4/4 12:10:36位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-04 12:10:37', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (350, '2022-04-04 14:35:33', 'admin-杨俊杰在2022/4/4 14:35:33位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-04 14:35:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (351, '2022-04-05 16:57:32', 'WK010-杨俊杰在2022/4/5 16:57:32位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-05 16:57:32', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (352, '2022-04-05 17:00:15', 'admin-杨俊杰在2022/4/5 17:00:15位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-05 17:00:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (353, '2022-04-05 17:01:58', 'admin-杨俊杰在2022/4/5 17:01:58位于1.5.0.7执行:恢复职位类型操作!恢复值为:P-2022006', 'admin', 200, 0, 'admin', '2022-04-05 17:01:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (354, '2022-04-05 17:02:02', 'admin-杨俊杰在2022/4/5 17:02:01位于1.5.0.7执行:删除职位类型操作!删除值为:P-0001', 'admin', 200, 0, 'admin', '2022-04-05 17:02:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (355, '2022-04-05 17:08:50', 'admin-杨俊杰在2022/4/5 17:08:49位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-05 17:08:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (356, '2022-04-05 17:53:54', 'WK010-杨俊杰在2022/4/5 17:53:53位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-05 17:53:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (357, '2022-04-05 17:58:00', 'admin-杨俊杰在2022/4/5 17:57:59位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-05 17:58:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (358, '2022-04-05 18:04:58', 'SqlSugar.SqlSugarException: Exception while reading from stream', 'admin', 300, 0, 'admin', '2022-04-05 18:04:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (359, '2022-04-05 19:58:11', 'admin-杨俊杰在2022/4/5 19:58:11位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-05 19:58:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (360, '2022-04-05 20:01:07', 'WK010-杨俊杰在2022/4/5 20:01:07位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-05 20:01:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (361, '2022-04-05 20:32:02', 'WK010-杨俊杰在2022/4/5 20:32:02位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-05 20:32:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (362, '2022-04-05 20:50:10', 'WK010-杨俊杰在2022/4/5 20:50:10位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-05 20:50:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (364, '2022-04-05 21:38:33', 'WK010-杨俊杰在2022/4/5 21:38:33位于1.5.0.7执行:帮助TS001344013384进行了消费商品:雪碧操作!', 'WK010', 200, 0, 'WK010', '2022-04-05 21:38:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (366, '2022-04-05 21:38:40', 'WK010-杨俊杰在2022/4/5 21:38:39位于1.5.0.7执行:帮助TS001344013384进行了消费商品:三只松鼠夏威夷坚果操作!', 'WK010', 200, 0, 'WK010', '2022-04-05 21:38:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (367, '2022-04-06 15:14:06', 'WK010-杨俊杰在2022/4/6 15:14:05位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-06 15:14:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (369, '2022-04-06 15:18:50', '经理部总经理杨俊杰于2022/4/6 15:18:50帮助1111111进行了预订房间操作!', 'WK010', 100, 0, 'WK010', '2022-04-06 15:18:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (371, '2022-04-06 15:21:50', 'WK010-杨俊杰在2022/4/6 15:21:50位于1.5.0.7执行:帮助TS001344013384进行了消费商品:可口可乐操作!', 'WK010', 200, 0, 'WK010', '2022-04-06 15:21:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (373, '2022-04-06 15:21:57', 'WK010-杨俊杰在2022/4/6 15:21:56位于1.5.0.7执行:帮助TS001344013384进行了消费商品:黄油华夫饼操作!', 'WK010', 200, 0, 'WK010', '2022-04-06 15:21:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (374, '2022-04-06 15:22:48', 'admin-杨俊杰在2022/4/6 15:22:48位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-06 15:22:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (375, '2022-04-06 23:02:26', 'WK010-杨俊杰在2022/4/6 23:02:26位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-06 23:02:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (376, '2022-04-06 23:02:57', 'admin-杨俊杰在2022/4/6 23:02:57位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-06 23:02:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (377, '2022-04-06 23:04:54', 'admin-杨俊杰在2022/4/6 23:04:53位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-06 23:04:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (378, '2022-04-06 23:05:02', 'admin-杨俊杰在2022/4/6 23:05:02位于1.5.0.7执行:恢复职位类型操作!恢复值为:P-0001', 'admin', 200, 0, 'admin', '2022-04-06 23:05:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (379, '2022-04-07 16:18:44', 'WK010-杨俊杰在2022/4/7 16:18:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-07 16:18:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (381, '2022-04-07 16:22:11', 'admin-杨俊杰在2022/4/7 16:22:11位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-07 16:22:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (382, '2022-04-07 23:04:08', 'WK010-杨俊杰在2022/4/7 23:04:07位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-07 23:04:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (383, '2022-04-07 23:04:18', 'admin-杨俊杰在2022/4/7 23:04:18位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-07 23:04:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (384, '2022-04-08 23:06:49', 'admin-杨俊杰在2022/4/8 23:06:49位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-08 23:06:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (385, '2022-04-08 23:07:59', 'admin-杨俊杰在2022/4/8 23:07:58位于1.5.0.7执行:修改部门类型操作!修改值为:D-011', 'admin', 200, 0, 'admin', '2022-04-08 23:07:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (386, '2022-04-09 00:10:47', 'WK010-杨俊杰在2022/4/9 0:10:46位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-09 00:10:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (387, '2022-04-10 10:01:08', 'WK010-杨俊杰在2022/4/10 10:01:08位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-10 10:01:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (389, '2022-04-13 17:09:07', 'admin-杨俊杰在2022/4/13 17:09:06位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-13 17:09:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (390, '2022-04-14 13:33:52', 'WK010-杨俊杰在2022/4/14 13:33:51位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-14 13:33:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (392, '2022-04-15 09:52:15', 'WK010-杨俊杰在2022/4/15 9:52:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-15 09:52:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (393, '2022-04-15 09:55:11', 'admin-杨俊杰在2022/4/15 9:55:11位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-15 09:55:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (394, '2022-04-15 21:17:51', 'admin-杨俊杰在2022/4/15 星期五 21:17:50位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-15 21:17:51', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (395, '2022-04-15 21:19:08', 'admin-杨俊杰在2022/4/15 星期五 21:19:08位于1.5.0.7执行:新增商品操作!新增值为:ST-202200107', 'admin', 200, 0, 'admin', '2022-04-15 21:19:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (396, '2022-04-16 20:30:58', 'WK010-杨俊杰在2022/4/16 20:30:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-16 20:30:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (398, '2022-04-18 19:19:38', 'WK010-杨俊杰在2022/4/18 19:19:38位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-18 19:19:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (400, '2022-04-20 23:11:02', 'WK010-杨俊杰在2022/4/20 23:11:02位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-20 23:11:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (401, '2022-04-22 09:38:10', 'WK010-杨俊杰在2022/4/22 9:38:10位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-22 09:38:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (402, '2022-04-22 10:20:36', 'admin-杨俊杰在2022/4/22 10:20:35位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-22 10:20:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (403, '2022-04-22 10:21:47', 'WK010-杨俊杰在2022/4/22 10:21:46位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-22 10:21:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (404, '2022-04-22 10:26:02', 'admin-杨俊杰在2022/4/22 10:26:02位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-22 10:26:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (405, '2022-04-22 14:04:40', 'WK010-杨俊杰在2022/4/22 14:04:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-22 14:04:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (407, '2022-04-26 12:00:49', 'WK010-杨俊杰在2022/4/26 12:00:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-26 12:00:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (408, '2022-04-26 14:27:22', 'WK010-杨俊杰在2022-04-26 14:27:22位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-26 14:27:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (409, '2022-04-26 23:29:05', 'WK010-杨俊杰在2022/4/26 23:29:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-26 23:29:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (411, '2022-04-28 00:18:37', 'WK010-杨俊杰在2022/4/28 0:18:36位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-28 00:18:37', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (412, '2022-04-29 09:45:58', 'admin-杨俊杰在2022-04-29 9:45:58位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-29 09:45:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (413, '2022-04-29 09:47:04', 'WK010-杨俊杰在2022-04-29 9:47:03位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-29 09:47:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (414, '2022-04-29 11:28:26', 'admin-杨俊杰在2022/4/29 11:28:25位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-29 11:28:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (415, '2022-04-29 11:29:15', 'admin-杨俊杰在2022/4/29 11:29:15位于1.5.0.7执行:删除职位类型操作!删除值为:P-0004', 'admin', 200, 0, 'admin', '2022-04-29 11:29:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (416, '2022-04-29 11:29:36', 'admin-杨俊杰在2022/4/29 11:29:35位于1.5.0.7执行:新增职位类型操作!新增值为:P-2022007', 'admin', 200, 0, 'admin', '2022-04-29 11:29:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (417, '2022-04-29 11:29:43', 'admin-杨俊杰在2022/4/29 11:29:43位于1.5.0.7执行:恢复职位类型操作!恢复值为:P-0004', 'admin', 200, 0, 'admin', '2022-04-29 11:29:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (418, '2022-04-29 11:34:52', 'admin-杨俊杰在2022/4/29 11:34:52位于1.5.0.7执行:上传公告操作!新增值为:UP-202204004', 'admin', 200, 0, 'admin', '2022-04-29 11:34:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (419, '2022-04-29 11:35:29', 'WK010-杨俊杰在2022/4/29 11:35:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-29 11:35:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (421, '2022-04-29 11:38:04', 'WK010-杨俊杰在2022/4/29 11:38:03位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-29 11:38:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (422, '2022-04-29 13:34:01', 'admin-杨俊杰在2022/4/29 13:34:00位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-29 13:34:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (423, '2022-04-30 15:48:42', 'admin-杨俊杰在2022/4/30 15:48:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-30 15:48:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (424, '2022-05-02 00:51:57', 'WK010-杨俊杰在2022/5/2 0:51:56位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-02 00:51:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (426, '2022-05-03 19:21:56', 'admin-杨俊杰在2022-05-03 19:21:56位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-03 19:21:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (427, '2022-05-03 19:22:17', 'WK010-杨俊杰在2022-05-03 19:22:17位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-03 19:22:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (428, '2022-05-03 19:24:49', 'WK010-杨俊杰在2022-05-03 19:24:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-03 19:24:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (429, '2022-05-04 23:21:12', 'WK010-杨俊杰在2022/5/4 23:21:11位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-04 23:21:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (430, '2022-05-06 10:57:20', 'admin-杨俊杰在2022.05.06 10:57:19位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-06 10:57:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (431, '2022-05-06 14:14:28', 'admin-杨俊杰在2022.05.06 14:14:28位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-06 14:14:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (432, '2022-05-06 14:32:52', 'WK010-杨俊杰在2022-05-06 14:32:51位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-06 14:32:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (433, '2022-05-07 16:18:34', 'admin-杨俊杰在2022/5/7 16:18:33位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-07 16:18:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (434, '2022-05-07 19:14:55', 'WK010-杨俊杰在2022/5/7 19:14:54位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-07 19:14:55', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (435, '2022-05-07 19:15:14', 'admin-杨俊杰在2022/5/7 19:15:14位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-07 19:15:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (436, '2022-05-08 23:25:36', 'WK010-杨俊杰在2022/5/8 23:25:36位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-08 23:25:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (437, '2022-05-09 13:49:20', 'admin-杨俊杰在2022/5/9 13:49:19位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-09 13:49:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (438, '2022-05-09 13:49:40', 'admin-杨俊杰在2022/5/9 13:49:39位于1.5.0.7执行:删除民族类型操作!删除值为:N-00035', 'admin', 200, 0, 'admin', '2022-05-09 13:49:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (439, '2022-05-09 13:49:44', 'admin-杨俊杰在2022/5/9 13:49:43位于1.5.0.7执行:恢复民族类型操作!恢复值为:N-00035', 'admin', 200, 0, 'admin', '2022-05-09 13:49:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (440, '2022-05-09 13:51:06', 'admin-杨俊杰在2022/5/9 13:51:06位于1.5.0.7执行:禁用/启用管理账号操作!新增值为:1', 'admin', 200, 0, 'admin', '2022-05-09 13:51:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (441, '2022-05-10 00:12:57', 'admin-杨俊杰在2022/5/10 0:12:56位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-10 00:12:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (442, '2022-05-12 20:57:15', 'WK010-杨俊杰在2022/5/12 20:57:15位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-12 20:57:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (444, '2022-05-12 21:01:56', 'WK010-杨俊杰在2022/5/12 21:01:55位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-12 21:01:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (445, '2022-05-13 00:41:36', 'WK010-杨俊杰在2022/5/13 0:41:36位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-13 00:41:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (446, '2022-05-13 22:15:43', 'admin-杨俊杰在2022/5/13 22:15:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-13 22:15:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (447, '2022-05-15 16:15:28', 'WK010-杨俊杰在2022/5/15 16:15:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-15 16:15:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (448, '2022-05-16 10:59:19', 'WK010-杨俊杰在2022/5/16 10:59:19位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-16 10:59:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (449, '2022-05-16 11:02:04', 'admin-杨俊杰在2022/5/16 11:02:03位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-16 11:02:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (450, '2022-05-18 08:55:30', 'admin-杨俊杰在2022/5/18 8:55:30位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-18 08:55:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (451, '2022-05-18 08:56:57', 'admin-杨俊杰在2022/5/18 8:56:56位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-18 08:56:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (452, '2022-05-18 08:58:46', 'admin-杨俊杰在2022/5/18 8:58:45位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-18 08:58:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (453, '2022-05-18 15:46:10', 'admin-杨俊杰在2022/5/18 15:46:09位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-18 15:46:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (454, '2022-05-18 15:50:07', 'WK010-杨俊杰在2022/5/18 15:50:07位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-18 15:50:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (455, '2022-05-18 15:51:20', 'admin-杨俊杰在2022/5/18 15:51:19位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-18 15:51:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (456, '2022-05-18 15:51:31', 'WK010-杨俊杰在2022/5/18 15:51:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-18 15:51:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (457, '2022-05-18 15:54:30', 'admin-杨俊杰在2022/5/18 15:54:29位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-18 15:54:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (458, '2022-05-18 16:01:03', 'WK010-杨俊杰在2022/5/18 16:01:03位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-18 16:01:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (459, '2022-05-18 16:13:41', 'admin-杨俊杰在2022/5/18 16:13:41位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-18 16:13:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (460, '2022-05-18 17:42:29', 'WK010-杨俊杰在2022/5/18 17:42:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-18 17:42:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (461, '2022-05-18 17:46:08', 'WK010-杨俊杰在2022/5/18 17:46:08位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-18 17:46:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (462, '2022-05-18 19:56:26', 'WK010-杨俊杰在2022/5/18 19:56:26位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-18 19:56:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (463, '2022-05-18 23:03:38', 'WK010-杨俊杰在2022/5/18 23:03:37位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-18 23:03:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (464, '2022-05-19 15:54:42', 'admin-杨俊杰在2022/5/19 15:54:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-19 15:54:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (465, '2022-05-19 22:52:30', 'WK010-杨俊杰在2022/5/19 22:52:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-19 22:52:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (466, '2022-05-19 22:54:43', 'admin-杨俊杰在2022/5/19 22:54:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-19 22:54:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (467, '2022-05-21 09:38:58', 'WK010-杨俊杰在2022/5/21 9:38:57位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-21 09:38:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (469, '2022-05-21 21:36:50', 'admin-杨俊杰在2022/5/21 21:36:50位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-21 21:36:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (470, '2022-05-21 22:17:16', 'WK010-杨俊杰在2022/5/21 22:17:16位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-21 22:17:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (471, '2022-05-23 16:53:05', 'WK010-杨俊杰在2022-05-23 16:53:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-23 16:53:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (472, '2022-05-23 16:58:15', 'admin-杨俊杰在2022-05-23 16:58:14位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-23 16:58:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (473, '2022-05-23 17:03:35', 'SqlSugar.SqlSugarException: 23505: 重复键违反唯一约束\"wtinfo_pkey\"', 'admin', 300, 0, 'admin', '2022-05-23 17:03:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (474, '2022-05-23 17:07:28', 'WK010-杨俊杰在2022-05-23 17:07:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-23 17:07:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (475, '2022-05-23 17:15:07', 'admin-杨俊杰在2022-05-23 17:15:07位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-23 17:15:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (476, '2022-05-23 17:15:51', 'WK010-杨俊杰在2022-05-23 17:15:51位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-23 17:15:51', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (478, '2022-05-23 18:42:03', 'admin-杨俊杰在2022-05-23 18:42:03位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-23 18:42:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (479, '2022-05-25 11:08:57', 'admin-杨俊杰在2022/5/25 11:08:56位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-25 11:08:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (480, '2022-05-25 11:09:42', 'WK010-杨俊杰在2022/5/25 11:09:42位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-25 11:09:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (481, '2022-05-25 11:10:01', 'admin-杨俊杰在2022/5/25 11:10:00位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-25 11:10:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (482, '2022-05-25 17:22:51', 'admin-杨俊杰在5/25/2022 5:22:50 PM位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-25 17:22:51', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (483, '2022-05-26 09:07:49', 'admin-杨俊杰在2022/5/26 9:07:48位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-26 09:07:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (484, '2022-05-27 09:42:36', 'WK010-杨俊杰在2022-05-27 09:42:35位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-27 09:42:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (485, '2022-05-27 09:45:13', 'admin-杨俊杰在2022-05-27 09:45:13位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-27 09:45:13', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (486, '2022-05-27 22:32:21', 'WK010-杨俊杰在2022/5/27 22:32:21位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-27 22:32:21', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (487, '2022-05-27 22:33:48', 'admin-杨俊杰在2022/5/27 22:33:47位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-27 22:33:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (488, '2022-05-27 22:34:22', 'WK010-杨俊杰在2022/5/27 22:34:21位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-27 22:34:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (489, '2022-05-27 22:38:02', 'WK010-杨俊杰在2022/5/27 22:38:01位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-27 22:38:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (490, '2022-05-27 22:39:34', 'admin-杨俊杰在2022/5/27 22:39:33位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-27 22:39:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (491, '2022-05-28 10:06:40', 'WK010-杨俊杰在2022/5/28 10:06:39位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-28 10:06:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (492, '2022-05-28 10:10:11', 'admin-杨俊杰在2022/5/28 10:10:10位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-28 10:10:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (493, '2022-05-29 19:04:56', 'admin-杨俊杰在2022-5-29 19:04:56位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-29 19:04:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (494, '2022-05-29 19:05:32', 'admin-杨俊杰在2022-5-29 19:05:32位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-29 19:05:32', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (495, '2022-05-29 19:05:50', 'admin-杨俊杰在2022-5-29 19:05:50位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-29 19:05:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (496, '2022-05-29 19:06:43', 'admin-杨俊杰在2022-5-29 19:06:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-29 19:06:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (497, '2022-05-29 23:54:53', 'WK010-杨俊杰在2022/5/29 23:54:53位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-29 23:54:53', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (499, '2022-05-30 09:49:01', 'admin-杨俊杰在2022-05-30 09:49:01位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-30 09:49:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (500, '2022-05-30 17:05:12', 'admin-杨俊杰在2022/5/30 17:05:12位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-30 17:05:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (501, '2022-05-30 17:05:42', 'WK010-杨俊杰在2022/5/30 17:05:41位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-30 17:05:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (503, '2022-05-30 19:36:59', 'WK010-杨俊杰在2022/5/30 19:36:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-30 19:36:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (504, '2022-05-30 19:41:22', 'admin-杨俊杰在2022/5/30 19:41:22位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-30 19:41:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (505, '2022-05-30 19:43:06', 'WK010-杨俊杰在2022/5/30 19:43:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-30 19:43:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (507, '2022-05-30 19:44:06', 'WK010-杨俊杰在2022/5/30 19:44:06位于1.5.0.7执行:添加了一名客户,客户编号为:TS-202200157', 'WK010', 300, 0, 'WK010', '2022-05-30 19:44:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (508, '2022-05-30 19:45:07', '经理部-总经理-杨俊杰于2022/5/30 19:45:06帮助TS-202200157进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-05-30 19:45:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (509, '2022-05-30 19:45:20', 'admin-杨俊杰在2022/5/30 19:45:19位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-30 19:45:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (510, '2022-05-30 19:47:01', 'WK010-杨俊杰在2022/5/30 19:47:01位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-30 19:47:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (511, '2022-05-30 19:48:30', 'WK010-杨俊杰在2022/5/30 19:48:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-30 19:48:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (512, '2022-05-30 19:50:33', 'WK010-杨俊杰在2022/5/30 19:50:32位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-30 19:50:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (513, '2022-05-31 14:41:04', 'admin-杨俊杰在2022/5/31 14:41:03位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-31 14:41:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (514, '2022-06-04 10:50:45', 'WK010-杨俊杰在2022/6/4 10:50:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 10:50:45', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (515, '2022-06-04 10:52:37', 'SqlSugar.SqlSugarException: 23505: duplicate key value violates unique constraint \"wtinfo_pkey\"', 'WK010', 300, 0, 'WK010', '2022-06-04 10:52:37', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (516, '2022-06-04 10:54:15', 'WK010-杨俊杰在2022/6/4 10:54:15位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 10:54:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (517, '2022-06-04 10:54:52', 'admin-杨俊杰在2022/6/4 10:54:51位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-06-04 10:54:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (518, '2022-06-04 11:25:41', 'WK010-杨俊杰在2022/6/4 11:25:41位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 11:25:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (520, '2022-06-04 11:29:54', 'WK010-杨俊杰在2022/6/4 11:29:54位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 11:29:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (521, '2022-06-04 13:43:26', 'admin-杨俊杰在2022/6/4 13:43:25位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-06-04 13:43:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (522, '2022-06-04 18:06:34', 'WK010-杨俊杰在2022/6/4 18:06:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:06:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (523, '2022-06-04 18:17:41', 'WK010-杨俊杰在2022/6/4 18:17:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:17:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (524, '2022-06-04 18:19:44', 'WK010-杨俊杰在2022/6/4 18:19:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:19:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (525, '2022-06-04 18:20:55', 'WK010-杨俊杰在2022/6/4 18:20:54位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:20:55', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (526, '2022-06-04 18:27:04', 'WK010-杨俊杰在2022/6/4 18:27:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:27:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (527, '2022-06-04 18:34:20', 'WK010-杨俊杰在2022/6/4 18:34:20位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:34:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (529, '2022-06-04 18:35:16', 'WK010-杨俊杰在2022/6/4 18:35:16位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:35:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (531, '2022-06-04 18:36:37', 'WK010-杨俊杰在2022/6/4 18:36:36位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:36:37', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (532, '2022-06-05 19:19:34', 'WK010-杨俊杰在2022/6/5 19:19:33位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-05 19:19:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (534, '2022-06-07 19:31:38', 'WK010-杨俊杰在2022/6/7 19:31:37位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-07 19:31:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (535, '2022-06-12 01:07:15', 'WK010-杨俊杰在2022/6/12 1:07:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-12 01:07:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (537, '2022-06-14 23:14:14', 'WK010-杨俊杰在2022/6/14 23:14:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-14 23:14:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (539, '2022-06-16 20:44:41', 'admin-杨俊杰在2022/6/16 20:44:41位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-06-16 20:44:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (540, '2022-06-16 20:45:35', 'WK010-杨俊杰在2022/6/16 20:45:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-16 20:45:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (541, '2022-06-16 20:48:49', 'WK010-杨俊杰在2022/6/16 20:48:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-16 20:48:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (542, '2022-06-16 23:34:32', 'WK010-杨俊杰在2022-06-16 23:34:32位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-16 23:34:32', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (543, '2022-06-16 23:35:28', 'WK010-杨俊杰在2022-06-16 23:35:27位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-16 23:35:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (544, '2022-06-16 23:36:06', 'admin-杨俊杰在2022-06-16 23:36:05位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-06-16 23:36:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (545, '2022-06-26 16:00:40', 'WK010-杨俊杰在2022/6/26 16:00:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-26 16:00:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (547, '2022-06-27 10:34:09', 'WK010-杨俊杰在2022-06-27 10:34:09位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-27 10:34:09', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (548, '2022-06-27 14:29:38', 'WK010-杨俊杰在2022/6/27 14:29:38位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-27 14:29:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (549, '2022-06-27 14:50:51', 'WK010-杨俊杰在2022/6/27 14:50:50位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-27 14:50:51', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (550, '2022-06-30 11:26:59', 'WK010-杨俊杰在2022/6/30 11:26:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-30 11:26:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (551, '2022-06-30 11:31:23', 'admin-杨俊杰在2022/6/30 11:31:22位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-06-30 11:31:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (552, '2022-07-01 20:22:11', 'WK010-杨俊杰在2022/7/1 20:22:10位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-07-01 20:22:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (554, '2022-07-05 23:05:44', 'admin-杨俊杰在2022/7/5 23:05:44位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-07-05 23:05:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (555, '2022-07-13 23:29:05', 'WK010-杨俊杰在2022/7/13 23:29:05位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-07-13 23:29:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (557, '2022-07-18 21:37:27', 'WK010-杨俊杰在2022/7/18 21:37:26位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-07-18 21:37:27', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `operationlog` (`OperationId`, `OperationTime`, `LogContent`, `OperationAccount`, `OperationLevel`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `SoftwareVersion`, `login_ip`) VALUES (559, '2022-07-21 09:29:08', 'admin-杨俊杰在2022/7/21 9:29:07位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-07-21 09:29:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO `passporttype` (`PassportId`, `PassportName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (0, '中国居民身份证', 0, NULL, NULL, NULL, NULL); -INSERT INTO `passporttype` (`PassportId`, `PassportName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, '港澳通行证', 0, NULL, NULL, NULL, NULL); -INSERT INTO `passporttype` (`PassportId`, `PassportName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (2, '台胞证', 0, NULL, NULL, NULL, NULL); -INSERT INTO `passporttype` (`PassportId`, `PassportName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (3, '军官证', 0, NULL, NULL, NULL, NULL); -INSERT INTO `passporttype` (`PassportId`, `PassportName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (4, '外国护照', 0, NULL, NULL, NULL, NULL); -INSERT INTO `position` (`position_no`, `position_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('P-2022007', 'CEO', 0, 'admin', '2022-04-29', NULL, '0001-01-01'); -INSERT INTO `position` (`position_no`, `position_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('P-0004', '监管组长', 0, 'System', '2021-02-03', '', '2022-04-29'); -INSERT INTO `position` (`position_no`, `position_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('P-0002', '经理', 0, 'System', '2021-02-01', 'System', '2021-02-01'); -INSERT INTO `position` (`position_no`, `position_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('P-0003', '职员', 0, 'System', '2021-02-02', 'System', '2021-02-02'); -INSERT INTO `position` (`position_no`, `position_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('P-0005', '监管组员', 0, 'System', '2021-02-04', '', '2022-01-05'); -INSERT INTO `position` (`position_no`, `position_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('P-2021001', '主管', 0, 'admin', '2021-02-17', NULL, '0001-01-01'); -INSERT INTO `position` (`position_no`, `position_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('P-2022006', '新增职位类型', 0, 'admin', '2022-02-21', '', '2022-04-05'); -INSERT INTO `position` (`position_no`, `position_name`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('P-0001', '总经理', 0, 'System', '2021-01-31', '', '2022-04-06'); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BD006', 0, NULL, NULL, '2021-05-14 22:51:15', 3, 300.00, 'A层', 0, NULL, NULL, NULL, NULL, 120.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BD008', 0, NULL, NULL, '2022-01-30 23:26:16', 3, 300.00, 'A层', 0, NULL, NULL, NULL, NULL, 120.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BD010', 0, NULL, NULL, '2022-01-30 23:26:40', 3, 300.00, 'A层', 0, NULL, NULL, NULL, NULL, 120.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BD011', 0, NULL, NULL, '2022-01-30 23:26:57', 3, 300.00, 'A层', 0, '', '2021-02-13', NULL, '0001-01-01', 120.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BD015', 0, NULL, NULL, NULL, 0, 300.00, 'A层', 0, '', '2021-02-13', NULL, '0001-01-01', 120.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BS001', 1, NULL, NULL, '2020-11-30 00:00:00', 2, 425.00, 'A层', 0, NULL, NULL, NULL, NULL, 150.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BS004', 1, NULL, NULL, '2021-07-17 17:46:55', 3, 425.00, 'A层', 0, NULL, NULL, NULL, NULL, 150.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BS006', 1, '', '2020-11-12 22:23:53', NULL, 3, 425.00, 'A层', 0, 'WK010', NULL, NULL, '2021-04-14', 150.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BS009', 1, NULL, NULL, NULL, 0, 425.00, 'A层', 0, NULL, NULL, NULL, NULL, 150.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BS012', 1, NULL, NULL, NULL, 3, 425.00, 'A层', 0, 'WK010', '2021-02-13', NULL, '2021-05-29', 150.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BS015', 1, NULL, NULL, NULL, 0, 425.00, 'A层', 0, '', '2021-02-13', NULL, '0001-01-01', 150.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HD002', 2, NULL, NULL, '2022-01-30 23:27:16', 3, 625.00, 'B层', 0, NULL, NULL, NULL, NULL, 180.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HD003', 2, NULL, NULL, '2020-05-27 08:31:28', 0, 625.00, 'B层', 0, NULL, NULL, NULL, NULL, 180.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HD005', 2, NULL, NULL, NULL, 0, 625.00, 'B层', 0, NULL, NULL, NULL, NULL, 180.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HD007', 2, NULL, NULL, NULL, 0, 625.00, 'B层', 0, NULL, NULL, NULL, NULL, 180.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HD008', 2, NULL, NULL, '2022-01-30 23:27:39', 3, 625.00, 'B层', 0, NULL, NULL, NULL, NULL, 180.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HD009', 2, NULL, NULL, '2022-01-30 23:27:59', 3, 625.00, 'B层', 0, NULL, NULL, 'WK010', '2021-02-25', 180.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HD010', 2, NULL, NULL, NULL, 0, 625.00, 'B层', 0, '', '2021-02-13', NULL, '0001-01-01', 180.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HD011', 2, NULL, NULL, NULL, 0, 625.00, 'B层', 0, '', '2021-02-13', NULL, '0001-01-01', 180.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HD012', 2, NULL, NULL, NULL, 0, 625.00, 'B层', 0, '', '2021-02-13', NULL, '0001-01-01', 180.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HD013', 2, NULL, NULL, NULL, 0, 625.00, 'B层', 0, '', '2021-02-13', NULL, '0001-01-01', 180.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HD014', 2, NULL, NULL, '2022-01-30 23:28:15', 3, 625.00, 'B层', 0, '', '2021-02-13', NULL, '0001-01-01', 180.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HD015', 2, NULL, NULL, NULL, 0, 625.00, 'B层', 0, '', '2021-02-13', NULL, '0001-01-01', 180.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HS001', 3, NULL, NULL, '2020-04-07 14:48:41', 0, 600.00, 'B层', 0, 'WK010', NULL, NULL, '2021-02-18', 200.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HS003', 3, NULL, NULL, NULL, 0, 660.00, 'B层', 0, NULL, NULL, NULL, NULL, 200.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HS004', 3, NULL, NULL, NULL, 0, 660.00, 'B层', 0, NULL, NULL, NULL, NULL, 200.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HS005', 3, NULL, NULL, '2018-12-25 08:44:07', 3, 660.00, 'B层', 0, 'WK010', NULL, NULL, '2021-04-14', 200.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HS006', 3, NULL, NULL, NULL, 0, 660.00, 'B层', 0, NULL, NULL, NULL, NULL, 200.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HS008', 3, NULL, NULL, NULL, 2, 660.00, 'B层', 0, 'WK010', NULL, NULL, '2021-02-12', 200.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('QL003', 4, NULL, NULL, '2021-02-12 15:13:44', 0, 845.00, 'C层', 0, 'WK010', NULL, NULL, '2021-02-19', 230.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('QL006', 4, NULL, NULL, '2022-01-30 23:28:33', 3, 845.00, 'C层', 0, NULL, NULL, NULL, NULL, 230.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('ZT001', 5, NULL, NULL, '2022-01-30 23:28:50', 3, 1080.00, 'D层', 0, NULL, NULL, NULL, NULL, 250.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('ZT004', 5, NULL, NULL, NULL, 0, 1080.00, 'D层', 0, NULL, NULL, NULL, NULL, 250.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('ZT006', 5, NULL, NULL, '2022-01-30 23:29:10', 3, 1080.00, 'D层', 0, NULL, NULL, NULL, NULL, 250.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('ZT012', 5, NULL, NULL, '2022-01-30 23:29:28', 3, 1080.00, 'D层', 0, 'admin', '2021-02-16', NULL, '0001-01-01', 250.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BS011', 1, 'TS015253323658', '2022-03-14 23:31:49', NULL, 1, 425.00, 'A层', 0, '', '2021-02-13', NULL, '0001-01-01', 150.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BD003', 0, NULL, NULL, '2021-10-20 22:48:06', 0, 300.00, 'A层', 0, 'WK010', NULL, 'WK010', '2022-04-14', 120.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BD007', 0, 'TS001535098782', '2022-03-13 14:55:08', '2020-05-27 08:32:18', 1, 300.00, 'A层', 0, NULL, NULL, NULL, NULL, 120.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('QL001', 4, NULL, NULL, '2022-02-22 23:15:11', 3, 845.00, 'C层', 0, NULL, NULL, NULL, NULL, 230.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('ZT002', 5, NULL, NULL, '2022-02-26 12:20:21', 3, 1080.00, 'D层', 0, NULL, NULL, NULL, NULL, 250.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BS005', 1, NULL, NULL, '2022-02-26 12:28:27', 3, 425.00, 'A层', 0, NULL, NULL, NULL, NULL, 150.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('ZT005', 5, 'TS-20210078', '2022-02-26 12:29:20', '2020-05-27 08:32:01', 1, 1080.00, 'D层', 0, NULL, NULL, NULL, NULL, 250.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HD001', 2, 'TS-20220089', '2022-02-26 12:29:38', NULL, 1, 625.00, 'B层', 0, NULL, NULL, NULL, NULL, 180.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BD009', 0, 'TS003574305322', '2022-03-13 14:55:31', '2020-06-02 11:35:07', 1, 300.00, 'A层', 0, NULL, NULL, NULL, NULL, 120.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BS014', 1, 'TS026428262056', '2022-03-14 23:32:16', NULL, 1, 425.00, 'A层', 0, '', '2021-02-13', NULL, '0001-01-01', 150.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('QL005', 4, NULL, NULL, '2022-03-03 08:03:38', 3, 845.00, 'C层', 0, NULL, NULL, NULL, NULL, 230.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BD012', 0, 'TS004121649776', '2022-03-13 14:55:57', NULL, 1, 300.00, 'A层', 0, '', '2021-02-13', NULL, '0001-01-01', 120.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BD013', 0, 'TS01562313', '2022-03-13 15:14:28', NULL, 1, 300.00, 'A层', 0, '', '2021-02-13', NULL, '0001-01-01', 120.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BD014', 0, 'TS096263040047', '2022-03-13 15:14:56', NULL, 1, 300.00, 'A层', 0, '', '2021-02-13', NULL, '0001-01-01', 120.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BS008', 1, 'TS039625402835', '2022-03-13 15:15:22', NULL, 1, 425.00, 'A层', 0, NULL, NULL, NULL, NULL, 150.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HD004', 2, 'TS006957585451', '2022-03-13 20:56:17', NULL, 1, 625.00, 'B层', 0, NULL, NULL, NULL, NULL, 180.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HS007', 3, 'TS001535098782', '2022-03-14 19:55:40', NULL, 1, 660.00, 'B层', 0, NULL, NULL, NULL, NULL, 200.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HD006', 2, 'TS006292728074', '2022-03-14 19:56:10', NULL, 1, 625.00, 'B层', 0, NULL, NULL, NULL, NULL, 180.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('ZT003', 5, 'TS063603838018', '2022-03-14 23:32:44', NULL, 1, 1080.00, 'D层', 0, NULL, NULL, NULL, NULL, 250.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BS007', 1, 'TS012832200601', '2022-03-15 19:38:38', '2020-05-27 08:32:10', 1, 425.00, 'A层', 0, NULL, NULL, NULL, NULL, 150.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BS003', 1, 'TS006957585451', '2022-03-20 16:06:19', '2020-04-06 19:59:19', 1, 425.00, 'A层', 0, NULL, NULL, NULL, NULL, 150.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('QL002', 4, 'TS011721677405', '2022-03-20 16:06:43', NULL, 1, 845.00, 'C层', 0, NULL, NULL, NULL, NULL, 230.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('HS002', 3, 'TS053630244707', '2022-03-28 23:06:00', NULL, 1, 660.00, 'B层', 0, NULL, NULL, NULL, NULL, 200.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BS002', 1, 'TS900880194151', '2022-03-28 23:06:35', '2020-04-06 20:24:33', 1, 425.00, 'A层', 0, NULL, NULL, NULL, NULL, 150.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BS010', 1, 'TS040379060037', '2022-03-28 23:07:07', NULL, 1, 425.00, 'A层', 0, '', '2021-02-13', NULL, '0001-01-01', 150.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BD004', 0, NULL, NULL, '2021-04-13 22:23:51', 0, 300.00, 'A层', 0, 'WK010', NULL, NULL, '2022-04-22', 120.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BD005', 0, NULL, NULL, '2022-01-30 23:25:57', 0, 300.00, 'A层', 0, 'WK010', NULL, 'WK010', '2022-05-02', 120.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BD001', 0, NULL, NULL, '2022-05-23 17:03:35', 3, 300.00, 'A层', 0, 'WK010', NULL, 'WK010', '2022-05-27', 120.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BS013', 1, NULL, NULL, '2022-02-26 12:21:55', 0, 425.00, 'A层', 0, 'WK010', '2021-02-13', NULL, '2022-05-27', 150.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('BD002', 0, 'TS-202200157', '2022-05-30 19:45:04', '2022-03-29 16:47:23', 1, 300.00, 'A层', 0, 'WK010', NULL, 'WK010', '2022-04-06', 120.00); -INSERT INTO `room` (`RoomNo`, `RoomType`, `CustoNo`, `CheckTime`, `CheckOutTime`, `RoomStateId`, `RoomMoney`, `RoomPosition`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`, `deposit`) VALUES ('QL004', 4, NULL, NULL, '2022-06-04 10:52:37', 3, 845.00, 'C层', 0, NULL, NULL, NULL, NULL, 230.00); -INSERT INTO `roomstate` (`RoomStateId`, `RoomState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (0, '空房', 0, NULL, NULL, NULL, NULL); -INSERT INTO `roomstate` (`RoomStateId`, `RoomState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, '已住', 0, NULL, NULL, NULL, NULL); -INSERT INTO `roomstate` (`RoomStateId`, `RoomState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (2, '维修中', 0, NULL, NULL, NULL, NULL); -INSERT INTO `roomstate` (`RoomStateId`, `RoomState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (3, '脏房', 0, NULL, NULL, NULL, NULL); -INSERT INTO `roomstate` (`RoomStateId`, `RoomState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (4, '已预约', 0, NULL, NULL, NULL, NULL); -INSERT INTO `roomtype` (`RoomType`, `RoomName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (0, '标准单人间', 0, NULL, NULL, NULL, NULL); -INSERT INTO `roomtype` (`RoomType`, `RoomName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, '标准双人间', 0, NULL, NULL, NULL, NULL); -INSERT INTO `roomtype` (`RoomType`, `RoomName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (2, '豪华单人间', 0, NULL, NULL, NULL, NULL); -INSERT INTO `roomtype` (`RoomType`, `RoomName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (3, '豪华双人间', 0, NULL, NULL, NULL, NULL); -INSERT INTO `roomtype` (`RoomType`, `RoomName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (4, '情侣套房', 0, NULL, NULL, NULL, NULL); -INSERT INTO `roomtype` (`RoomType`, `RoomName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (5, '总统套房', 0, NULL, NULL, NULL, NULL); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST-20210020', '测试', 243444.00, '阿斯顿', 10.00, 1, 'admin', '2021-02-15', 'admin', '2021-02-15'); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST-20210027', 'BIG大桶方便面', 8.50, '/桶', 50.00, 1, 'admin', '2021-02-16', 'admin', '2021-02-16'); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST-20210055', '测试数据(勿选)', 9999999.99, '测试数据', 9.00, 0, 'admin', '2021-05-29', 'WK010', '2021-07-19'); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST-20210061', '测试勿选', 9999999.00, '测试', 4.00, 0, 'admin', '2021-05-30', 'WK010', '2021-06-06'); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST008', '特级杜蕾斯', 40.00, '/盒', 178.00, 0, NULL, NULL, 'WK010', '2021-04-17'); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST010', '蟹味瓜子仁', 30.00, '/袋', 1020.00, 0, NULL, NULL, NULL, NULL); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST011', '青岛啤酒', 15.00, '/瓶', 1000.00, 0, NULL, NULL, NULL, NULL); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST014', '澡巾', 12.50, '/条', 996.00, 0, NULL, NULL, 'WK010', '2021-04-17'); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST015', '香皂', 25.00, '/个(145g)', 996.00, 0, NULL, NULL, NULL, NULL); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST016', '牙刷', 10.00, '/个', 1000.00, 0, NULL, NULL, NULL, NULL); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST017', '红枣', 25.00, '/包', 990.00, 0, NULL, NULL, 'WK010', '2021-07-17'); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST019', '扑克牌', 5.00, '/副', 248.00, 0, NULL, NULL, 'WK010', '2021-04-17'); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST020', 'TS纪念品', 10.00, '/个', 990.00, 0, NULL, NULL, 'WK010', '2021-07-17'); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST021', '三只松鼠零食大礼包', 299.00, '/礼包', 2998.00, 0, NULL, NULL, NULL, NULL); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST022', '芬达', 10.00, '/瓶(1.5L)', 900.00, 0, NULL, NULL, NULL, NULL); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST398', '拉菲', 1080.00, '/支', 989.00, 0, NULL, NULL, 'WK010', '2021-03-11'); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST677', '92拉菲', 10800.00, '/瓶', 1088.00, 0, NULL, NULL, 'WK010', '2022-01-30'); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST851', 'T仔', 90.00, '/个', 29980.00, 0, NULL, NULL, 'WK010', '2021-02-18'); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST983', '日清方便面', 5.50, '/桶', 2991.00, 0, NULL, NULL, 'WK010', '2021-03-11'); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST005', '乐事薯片(原味)', 20.00, '/包(145g)', 934.00, 0, NULL, NULL, 'WK010', '2022-02-26'); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST012', '火腿肠', 10.00, '/包(40g)', 990.00, 0, NULL, NULL, 'WK010', '2022-02-26'); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST013', '毛巾', 10.00, '/条', 996.00, 0, NULL, NULL, NULL, NULL); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST007', '雪碧', 2.50, '/罐', 989.00, 0, NULL, NULL, 'WK010', '2021-04-17'); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST009', '三只松鼠夏威夷坚果', 40.00, '/袋(160g)', 1483.00, 0, NULL, NULL, 'WK010', '2021-05-05'); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST003', '可口可乐', 10.00, '/瓶(1.5L)', 968.00, 0, NULL, NULL, 'WK010', '2021-04-17'); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST-2021009', '黄油华夫饼', 80.00, '/包', 97.00, 0, 'admin', '2021-02-15', 'WK010', '2022-01-30'); -INSERT INTO `sellthing` (`SellNo`, `SellName`, `SellPrice`, `format`, `Stock`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('ST-202200107', 'zz', 0.00, 'zz', 4.00, 0, 'admin', '2022-04-15', NULL, '0001-01-01'); -INSERT INTO `sextype` (`sexId`, `sexName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (0, '女', 0, NULL, NULL, NULL, NULL); -INSERT INTO `sextype` (`sexId`, `sexName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, '男', 0, NULL, NULL, NULL, NULL); -INSERT INTO `uploadinfo` (`NoticeNo`, `Noticetheme`, `NoticeType`, `NoticeTime`, `NoticeContent`, `NoticeClub`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('UP-202204004', '', NULL, '2021-02-13 00:00:00', '

 

', 'D-001', 0, 'admin', '2022-04-29', NULL, '0001-01-01'); -INSERT INTO `usertype` (`UserType`, `TypeName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (0, '普通用户', 0, NULL, NULL, NULL, NULL); -INSERT INTO `usertype` (`UserType`, `TypeName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, '钻石会员', 0, NULL, NULL, NULL, NULL); -INSERT INTO `usertype` (`UserType`, `TypeName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (2, '白金会员', 0, NULL, NULL, NULL, NULL); -INSERT INTO `usertype` (`UserType`, `TypeName`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (3, '黄金会员', 0, NULL, NULL, NULL, NULL); -INSERT INTO `vip_rule` (`id`, `rule_id`, `rule_name`, `rule_value`, `type_id`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, 'VR-202107170003', '升级到钻石会员的规则', 70000.00, 1, 0, 'admin', '2021-07-17', NULL, '0001-01-01'); -INSERT INTO `vip_rule` (`id`, `rule_id`, `rule_name`, `rule_value`, `type_id`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (2, 'VR-202107170007', '升级到黄金会员的规则', 50000.00, 3, 0, 'admin', '2021-07-17', NULL, '0001-01-01'); -INSERT INTO `vip_rule` (`id`, `rule_id`, `rule_name`, `rule_value`, `type_id`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (3, 'VR-2021071700010', '升级到白金会员的规则', 30000.00, 2, 0, 'admin', '2021-07-17', NULL, '0001-01-01'); -INSERT INTO `vip_rule` (`id`, `rule_id`, `rule_name`, `rule_value`, `type_id`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (0, 'VR-2022022600052', '尊贵会员', 150000.00, 1, 0, 'admin', '2022-02-26', NULL, '0001-01-01'); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK010', '杨俊杰', '1999-07-20 00:00:00', 1, 'B6CCShOF+ezaHM3LdXEDWPmWHBRpYmEl0DVl/p/Ate8D/LT88ksL9wa35D6vkQqzvnAtzUXkDT5Rpavw8LWgceXalSgDTcEPsopL+KbiHw/1NlTxCeRB4ldpj5Djwi57oRBgzqH7h053DYNmtgLPuGV3DcsDgSawRXY1y1ziYrk=·FHHiDagiBgg0Bg0DaBH(a1226e938724d985)', 'D-001', 'N-00001', '广东珠海', 'P-0001', '123121313132X3', 'admin', '2011-04-20 00:00:00', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2022-02-07'); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK006', '陈洪汉', '1999-10-05 00:00:00', 1, '15693857612', 'D-002', 'N-00001', '南屏', 'P-0002', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-18'); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK023', '三男', '1995-10-11 00:00:00', 1, '13433221223', 'D-006', 'N-00001', '斗门', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK024', '四北', '1996-10-11 00:00:00', 1, '13433221223', 'D-003', 'N-00001', '斗门', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK007', '罗良建', '2000-12-05 00:00:00', 1, '15693857612', 'D-003', 'N-00001', '市区', 'P-0002', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-17'); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK008', '林淑仪', '1999-12-05 00:00:00', 0, '15693857612', 'D-008', 'N-00001', '市区', 'P-2021001', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-04-10'); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK009', '老铁', '1989-12-05 00:00:00', 1, '15693857612', 'D-004', 'N-00001', '市区', 'P-0003', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK011', '六月', '1900-01-18 00:00:00', 1, '13433221223', 'D-002', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK012', '七月', '1989-10-11 00:00:00', 1, '13433221223', 'D-002', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK013', '八月', '1979-10-11 00:00:00', 1, '13433221223', 'D-004', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK014', '九月', '1969-10-11 00:00:00', 1, '13433221223', 'D-004', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK015', '十元', '1959-10-11 00:00:00', 1, '13433221223', 'D-007', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK016', '十月', '1949-10-11 00:00:00', 0, '13433221223', 'D-004', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK017', '十一月', '1939-10-11 00:00:00', 0, '13433221223', 'D-004', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK018', '十二月', '1929-10-11 00:00:00', 0, '13433221223', 'D-007', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK019', '十四年', '1911-10-11 00:00:00', 0, '13433221223', 'D-007', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK020', '十五年', '1992-10-11 00:00:00', 0, '13433221223', 'D-006', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('Duyen', '阿娟', '1969-10-11 00:00:00', 0, '13433221223', 'D-011', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2020-07-05 02:20:31', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK025', '花呗', '1997-10-11 00:00:00', 0, '13433221223', 'D-003', 'N-00001', '斗门', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK026', '蚂蚁', '1998-10-11 00:00:00', 1, '13433221223', 'D-003', 'N-00001', '斗门', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK027', '余额宝', '1919-10-11 00:00:00', 1, '13433221223', 'D-003', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK028', '支付宝', '1929-10-11 00:00:00', 1, '13433221223', 'D-003', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK029', '阿里', '1939-10-11 00:00:00', 0, '13433221223', 'D-005', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK030', '阿狸', '1949-10-11 00:00:00', 1, '13433221223', 'D-005', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK031', '阿力', '1959-10-11 00:00:00', 1, '13433221223', 'D-003', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK032', '瞎小', '1969-10-11 00:00:00', 0, '13433221223', 'D-011', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK033', '沙宣', '1979-10-11 00:00:00', 1, '13433221223', 'D-005', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK034', '沙县', '1989-10-11 00:00:00', 1, '13433221223', 'D-005', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK202102004', '潞州', '2020-11-24 22:50:37', 1, '4AEE3E28DF37EA1AF64BD636ECA59DCB', 'D-008', 'N-00007', '广东珠海', 'P-0003', '79D8861186EB60E3611CD4A5D0BCAE', '123456', '2020-11-24 22:50:37', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK202102007', '江小白', '1993-07-20 00:00:00', 1, 'A89CDE93F692F546F0BEC375DC9E60FB', 'D-010', 'N-00001', '广东省茂名市信宜县', 'P-0003', '3D7640EF7C9B756E75C276FF9C8D233', '123456', '2020-11-24 22:50:37', '群众', 'E-00006', 0, 'admin', '2021-02-14', 'admin', '2021-02-14'); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK2021040024', '赤羽业', '1999-07-20 00:00:00', 1, '15161656165', 'D-011', 'N-00001', '广东省茂名市信宜县', 'P-0003', '440921189910119090', '123456', '2020-11-24 22:50:37', '群众', 'E-00007', 0, 'admin', '2021-04-18', NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK775', '凌峰', '1995-07-14 00:00:00', 1, '13328993360', 'D-003', 'N-00001', '广东省茂名市信宜县', 'P-0003', '440921199507149395', '123456', '2020-05-04 12:57:15', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('Hien', '阿賢', '1969-10-11 00:00:00', 0, '13433221223', 'D-005', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2020-07-05 02:19:53', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('Huong', '阿香', '1969-10-11 00:00:00', 0, '13433221223', 'D-011', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2020-07-05 02:17:25', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('Lam', '阿隆', '1969-10-11 00:00:00', 0, '13433221223', 'D-005', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2020-07-05 02:21:52', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('Lien', '阿蓮', '1969-10-11 00:00:00', 0, '13433221223', 'D-011', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2020-07-05 02:16:44', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('Shenyou', '申酉', '1999-07-20 00:00:00', 1, '15019927415', 'D-001', 'N-00001', '金湾', 'P-0003', '123121313132X3', '123456', '2020-07-05 02:18:19', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK001', '谭国平', '1999-12-05 00:00:00', 1, '15693857612', 'D-004', 'N-00001', '红旗', 'P-0002', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-16'); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK002', '李杰峰', '1999-10-15 00:00:00', 1, '15632343232', 'D-003', 'N-00001', '市区', 'P-0003', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK003', '陈伟瀚', '1999-11-20 00:00:00', 1, '13036456756', 'D-005', 'N-00001', '斗门', 'P-0002', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-17'); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK004', '杨旭东', '1999-02-15 00:00:00', 1, '15693857612', 'D-006', 'N-00001', '井岸', 'P-0001', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-17'); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK005', '付金鑫', '1999-06-05 00:00:00', 1, '15693857612', 'D-202200114', 'N-00001', '市区', 'P-0002', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2022-01-31'); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK021', '一楠', '1993-10-11 00:00:00', 0, '13433221223', 'D-006', 'N-00001', '斗门', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK022', '二南', '1994-10-11 00:00:00', 1, '13433221223', 'D-006', 'N-00001', '斗门', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK2021040025', '冈崎朋也', '1999-07-20 00:00:00', 1, 'bEJDqDv3W/o1p69Y2JXPj5H4kCninKF0LrnVJH9plJyOZAXEOaWTolwnnM99GQSEorYGVfZNYtBqt2ohO4vKO6OrgWtBTg4Kh1KjKL6wrBEK42mghcursCod6G73fdbQITFRHMSJmhK68PQNbi/tVw0EUn4aGsxsy6THx2KsK6A=·FHHgciDFiHcHcgDiaB0(2dfb79318b734469)', 'D-010', 'N-00001', '广东省茂名市信宜县', 'P-0003', '440921189910119090', '123456', '2020-11-24 22:50:37', '群众', 'E-00003', 0, 'admin', '2021-04-18', 'admin', '2022-02-01'); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK2021040026', '古河渚', '1996-12-15 00:00:00', 0, 'TqXplZEAJiCJ34jERPTDwnH4vcojLfOX6isZGyHe1M7ThNEiTAa7ZtHrmstzF25S5YjQR4eCbr3Gy+V8qdpQJqn7jh4Rn9vXnzneCBCP5WsvFC+wpoaILCCOpeOrgkZfBt36itg2rhV6h/FT4yrX7wAHly1WFxW1WVGawfAQEZY=·FHHgciDaFB0DgH0cciB(c2ae638db2d0dd83)', 'D-010', 'N-00001', '大阪', 'P-0003', '440921189910119090', '123456', '2020-11-24 22:50:37', '群众', 'E-00003', 0, 'admin', '2021-04-18', 'admin', '2022-02-01'); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK2022020042', '夜莺', '1988-12-13 00:00:00', 0, 'YJmmD35b13Ojc2UJPXXntwk+xpnKSTsCqzkzJBkbsadc3skEyGqlVIJUFU4Em0tjbv0IsTJnLskVB8VjZ95YyhKRJcksmdNXHyR1PF6dvaJ8nv9FHQ93V66I06ObgVXB+/ysSOAuL7DM3Ndj5UxgiAlK2DDE1eKjNttliIq6zvg=·FHHgcaFc☆F☆a☆iga0gB(376e5910042923d5)', 'D-202200114', 'N-00009', '广东省茂名市信宜县', 'P-2021001', 'DjM0t5DO0oIckI4JlN+z9Bkosi/SV0mQllIT6U3515hzns4FSRExxunfW9BEbQoldRlKoifXFXnKz6sulj5rf0yi1lPl+plA+NQ0LA8goCiQAyfEUEBwbCOgvhPjKbptdS3R3y46v4AEy6gcaYS3A4Zrc3m/ipqD2xXchsKuBrM=·FHHgcaFc☆FDa☆c0cFH0(ee00c65e12fee5a2)', '123456', '2020-11-24 22:50:37', '群众', 'E-00005', 0, 'admin', '2022-02-01', NULL, NULL); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('WK388', '张三', '1998-06-27 00:00:00', 1, 'A+XROKGquR9JRSlRmWEIzmz/yA5BvTK8jbGUg3bAT7S3Qc3oxcsJlftz4r45JKDOoP45Ip+Mh7C0DhRLsr8z0GJ/NAdneBkOtKZk1j686EeIMueXRphpU0/hRC4m0aISGSNdn8wr5KFp7U8k/uLdJgfBAgVloy3rAPSiICK66sE=·FHHgci☆BciiHiccHaaB(fc82c054c807242a)', 'D-002', 'N-00001', '广西壮族自治区防城港市上思县', 'P-0003', '450621199806271679', '123456', '2020-08-20 09:33:45', '群众', 'E-00005', 0, NULL, NULL, 'admin', '2022-02-01'); -INSERT INTO `worker` (`WorkerId`, `WorkerName`, `WorkerBirthday`, `WorkerSex`, `WorkerTel`, `WorkerClub`, `WorkerNation`, `WorkerAddress`, `WorkerPosition`, `CardID`, `WorkerPwd`, `WorkerTime`, `WorkerFace`, `WorkerEducation`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES ('Xingxue', '興學', '1999-07-20 00:00:00', 1, '15019927415', 'D-001', 'N-00001', '金湾', 'P-0003', '123121313132X3', '123456', '2020-07-05 02:18:53', '团员', 'E-00005', 0, NULL, NULL, NULL, NULL); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (66, 'WK010', '2022-02-21 20:31:19', '系统界面', 0, 0, 'WK010', '2022-02-21', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (72, 'WK010', '2022-02-22 23:16:46', '系统界面', 0, 0, 'WK010', '2022-02-22', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (75, 'WK010', '2022-02-25 22:13:30', '系统界面', 0, 0, 'WK010', '2022-02-25', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (86, 'WK010', '2022-02-26 12:28:59', '系统界面', 0, 0, 'WK010', '2022-02-26', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (211, 'WK010', '2022-02-27 01:10:54', '系统界面', 0, 0, 'WK010', '2022-02-27', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (225, 'WK010', '2022-02-28 00:03:49', '系统界面', 0, 0, 'WK010', '2022-02-28', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (251, 'WK010', '2022-03-13 14:53:36', '系统界面', 0, 0, 'WK010', '2022-03-13', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (279, 'WK010', '2022-03-14 19:54:55', '系统界面', 0, 0, 'WK010', '2022-03-14', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (295, 'WK010', '2022-03-15 19:38:47', '系统界面', 0, 0, 'WK010', '2022-03-15', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (298, 'WK010', '2022-03-16 23:08:10', '系统界面', 0, 0, 'WK010', '2022-03-16', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (300, 'WK010', '2022-03-17 23:14:22', '系统界面', 0, 0, 'WK010', '2022-03-17', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (303, 'WK010', '2022-03-20 16:05:51', '系统界面', 0, 0, 'WK010', '2022-03-20', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (310, 'WK010', '2022-03-22 16:46:34', '系统界面', 0, 0, 'WK010', '2022-03-22', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (312, 'WK010', '2022-03-23 19:45:31', '系统界面', 0, 0, 'WK010', '2022-03-23', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (314, 'WK010', '2022-03-24 23:03:07', '系统界面', 0, 0, 'WK010', '2022-03-24', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (318, 'WK010', '2022-03-26 20:44:57', '系统界面', 0, 0, 'WK010', '2022-03-26', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (320, 'WK010', '2022-03-28 23:05:26', '系统界面', 0, 0, 'WK010', '2022-03-28', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (326, 'WK010', '2022-03-29 15:26:24', '系统界面', 0, 0, 'WK010', '2022-03-29', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (333, 'WK010', '2022-03-30 19:13:08', '系统界面', 0, 0, 'WK010', '2022-03-30', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (337, 'WK010', '2022-03-31 23:11:43', '系统界面', 0, 0, 'WK010', '2022-03-31', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (340, 'WK010', '2022-04-03 12:48:31', '系统界面', 0, 0, 'WK010', '2022-04-03', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (368, 'WK010', '2022-04-06 15:15:19', '系统界面', 0, 0, 'WK010', '2022-04-06', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (380, 'WK010', '2022-04-07 16:19:50', '系统界面', 0, 0, 'WK010', '2022-04-07', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (388, 'WK010', '2022-04-10 10:01:25', '系统界面', 0, 0, 'WK010', '2022-04-10', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (391, 'WK010', '2022-04-14 13:35:58', '系统界面', 0, 0, 'WK010', '2022-04-14', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (397, 'WK010', '2022-04-16 20:31:07', '系统界面', 0, 0, 'WK010', '2022-04-16', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (399, 'WK010', '2022-04-18 19:19:48', '系统界面', 0, 0, 'WK010', '2022-04-18', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (406, 'WK010', '2022-04-22 14:05:23', '系统界面', 0, 0, 'WK010', '2022-04-22', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (410, 'WK010', '2022-04-26 23:29:45', '系统界面', 0, 0, 'WK010', '2022-04-26', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (420, 'WK010', '2022-04-29 11:37:28', '系统界面', 0, 0, 'WK010', '2022-04-29', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (425, 'WK010', '2022-05-02 00:52:02', '系统界面', 0, 0, 'WK010', '2022-05-02', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (443, 'WK010', '2022-05-12 20:57:55', '系统界面', 0, 0, 'WK010', '2022-05-12', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (468, 'WK010', '2022-05-21 09:39:15', '系统界面', 0, 0, 'WK010', '2022-05-21', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (477, 'WK010', '2022-05-23 17:22:10', '系统界面', 0, 0, 'WK010', '2022-05-23', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (498, 'WK010', '2022-05-29 23:55:06', '系统界面', 0, 0, 'WK010', '2022-05-29', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (506, 'WK010', '2022-05-30 19:43:13', '系统界面', 0, 0, 'WK010', '2022-05-30', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (519, 'WK010', '2022-06-04 11:25:48', '系统界面', 0, 0, 'WK010', '2022-06-04', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (533, 'WK010', '2022-06-05 19:19:41', '系统界面', 0, 0, 'WK010', '2022-06-05', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (536, 'WK010', '2022-06-12 01:07:20', '系统界面', 0, 0, 'WK010', '2022-06-12', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (538, 'WK010', '2022-06-14 23:14:27', '系统界面', 0, 0, 'WK010', '2022-06-14', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (546, 'WK010', '2022-06-26 16:00:51', '系统界面', 0, 0, 'WK010', '2022-06-26', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (553, 'WK010', '2022-07-01 20:22:20', '系统界面', 0, 0, 'WK010', '2022-07-01', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (556, 'WK010', '2022-07-13 23:29:18', '系统界面', 0, 0, 'WK010', '2022-07-13', NULL, '0001-01-01'); -INSERT INTO `workercheck` (`Id`, `WorkerNo`, `CheckTime`, `CheckWay`, `CheckState`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (558, 'WK010', '2022-07-18 21:38:15', '系统界面', 0, 0, 'WK010', '2022-07-18', NULL, '0001-01-01'); -INSERT INTO `workergoodbad` (`Id`, `WorkNo`, `GBInfo`, `GBType`, `GBOperation`, `GBTime`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, 'WK008', '牛逼就完事了!', 0, '杨俊杰', '2020-04-21 21:02:30', 0, NULL, NULL, NULL, NULL); -INSERT INTO `workergoodbad` (`Id`, `WorkNo`, `GBInfo`, `GBType`, `GBOperation`, `GBTime`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (2, 'WK775', '被评为优秀的“五四”行业青年', 0, '杨俊杰', '2020-05-04 13:01:17', 0, NULL, NULL, NULL, NULL); -INSERT INTO `workergoodbad` (`Id`, `WorkNo`, `GBInfo`, `GBType`, `GBOperation`, `GBTime`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (3, 'WK010', '测试', 1, 'admin', '2020-11-24 22:50:37', 0, 'admin', '2021-02-15', NULL, '0001-01-01'); -INSERT INTO `workergoodbad` (`Id`, `WorkNo`, `GBInfo`, `GBType`, `GBOperation`, `GBTime`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (4, 'WK010', '测试', 1, 'admin', '2020-11-24 22:50:37', 0, 'admin', '2021-02-15', NULL, '0001-01-01'); -INSERT INTO `workergoodbad` (`Id`, `WorkNo`, `GBInfo`, `GBType`, `GBOperation`, `GBTime`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (5, 'WK010', '测试', 1, 'admin', '2020-11-24 22:50:37', 0, 'admin', '2021-02-15', NULL, '0001-01-01'); -INSERT INTO `workergoodbad` (`Id`, `WorkNo`, `GBInfo`, `GBType`, `GBOperation`, `GBTime`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (6, 'WK001', '666666666', 0, 'admin', '2020-11-24 22:50:37', 0, 'admin', '2021-02-16', NULL, '0001-01-01'); -INSERT INTO `workerhistory` (`Id`, `WorkerId`, `StartDate`, `EndDate`, `Position`, `Company`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (1, 'WK010', '2005-03-05 00:00:00', '2008-03-05 00:00:00', '部门经理', '海湾大酒店', 0, NULL, NULL, NULL, NULL); -INSERT INTO `workerhistory` (`Id`, `WorkerId`, `StartDate`, `EndDate`, `Position`, `Company`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (2, 'WK010', '2009-06-23 00:00:00', '2010-02-02 00:00:00', '总经理', '非凡大酒店', 0, NULL, NULL, NULL, NULL); -INSERT INTO `workerhistory` (`Id`, `WorkerId`, `StartDate`, `EndDate`, `Position`, `Company`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (3, 'WK775', '2015-07-17 12:57:15', '2018-05-04 12:57:15', '财务会计', '非凡会计所', 0, NULL, NULL, NULL, NULL); -INSERT INTO `workerhistory` (`Id`, `WorkerId`, `StartDate`, `EndDate`, `Position`, `Company`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (4, 'WK261', '2020-07-16 21:13:33', '2020-07-16 21:13:33', '', '', 0, NULL, NULL, NULL, NULL); -INSERT INTO `workerhistory` (`Id`, `WorkerId`, `StartDate`, `EndDate`, `Position`, `Company`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (5, 'WK100', '2020-07-16 21:13:42', '2020-07-16 21:13:42', '', '', 0, NULL, NULL, NULL, NULL); -INSERT INTO `workerhistory` (`Id`, `WorkerId`, `StartDate`, `EndDate`, `Position`, `Company`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (6, 'WK388', '2020-08-20 09:33:45', '2020-08-20 09:33:45', '', '', 0, NULL, NULL, NULL, NULL); -INSERT INTO `workerhistory` (`Id`, `WorkerId`, `StartDate`, `EndDate`, `Position`, `Company`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (7, 'WK202102004', '2020-11-24 22:50:37', '2020-11-24 22:50:37', '', '', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO `workerhistory` (`Id`, `WorkerId`, `StartDate`, `EndDate`, `Position`, `Company`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (8, 'WK202102007', '2020-11-24 22:50:37', '2020-11-24 22:50:37', '', '', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO `workerhistory` (`Id`, `WorkerId`, `StartDate`, `EndDate`, `Position`, `Company`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (9, 'WK2021040024', '2019-05-06 00:00:00', '2020-11-24 22:50:37', '餐饮专员', '比利王大酒店', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO `workerhistory` (`Id`, `WorkerId`, `StartDate`, `EndDate`, `Position`, `Company`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (10, 'WK2021040025', '2020-11-24 22:50:37', '2020-11-24 22:50:37', '', '', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO `workerhistory` (`Id`, `WorkerId`, `StartDate`, `EndDate`, `Position`, `Company`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (11, 'WK2021040026', '2020-11-24 22:50:37', '2020-11-24 22:50:37', '', '', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO `workerhistory` (`Id`, `WorkerId`, `StartDate`, `EndDate`, `Position`, `Company`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (12, 'WK2022020042', '2015-03-01 00:00:00', '2019-03-03 00:00:00', '质量测试主管', '园南计算机科技有限公司', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO `workerpic` (`Id`, `WorkerId`, `Pic`) VALUES (1, 'WK2022020042', 'a212e035-62f7-4b7b-be5e-c1cacce6ab94.png'); -INSERT INTO `workerpic` (`Id`, `WorkerId`, `Pic`) VALUES (2, 'WK2021040026', '98d6f138-3f86-4d76-ae33-6d4cbc436a93.jpg'); -INSERT INTO `workerpic` (`Id`, `WorkerId`, `Pic`) VALUES (3, 'WK2021040025', '0c0b42d9-41f2-487e-8ac8-fc686cb5f5fe.jpg'); -INSERT INTO `workerpic` (`Id`, `WorkerId`, `Pic`) VALUES (4, 'WK2021040024', 'cacacfaa-fef5-4beb-a87a-e4d52e56ae50.jpg'); -INSERT INTO `workerpic` (`Id`, `WorkerId`, `Pic`) VALUES (9, 'WK001', 'fb4bc453-29b8-495f-82d1-36e02f10e3d0.png'); -INSERT INTO `workerpic` (`Id`, `WorkerId`, `Pic`) VALUES (10, 'WK002', '36caf9bd-f3db-4d8b-834d-cf6c39581de3.png'); -INSERT INTO `workerpic` (`Id`, `WorkerId`, `Pic`) VALUES (206, 'Shenyou', 'cea9d22e-cd3e-4ea8-adfd-6d43e9e80698.png'); -INSERT INTO `workerpic` (`Id`, `WorkerId`, `Pic`) VALUES (207, 'WK775', '68137280-5cec-473a-a0d8-6a8538a6daf3.png'); -INSERT INTO `workerpic` (`Id`, `WorkerId`, `Pic`) VALUES (277, 'WK026', '3f7f0972-ccf8-4682-8c44-c4f4bd8b4105.png'); -INSERT INTO `workerpic` (`Id`, `WorkerId`, `Pic`) VALUES (530, 'WK010', 'e0095072-2848-4097-94f7-a3cebc419783.png'); -INSERT INTO `wtinfo` (`WtiNo`, `RoomNo`, `UseDate`, `EndDate`, `WaterUse`, `PowerUse`, `Record`, `CustoNo`, `delete_mk`, `datains_usr`, `datains_date`, `datachg_usr`, `datachg_date`) VALUES (0, 'BD002', '2022-03-29 00:00:00', '2022-03-29 16:46:33', 2.56, 48.00, 'admin', 'TS000299787414', 0, NULL, '0001-01-01', NULL, '0001-01-01'); diff --git "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/Table.sql" "b/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/Table.sql" deleted file mode 100644 index 7220afa..0000000 --- "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/Table.sql" +++ /dev/null @@ -1,648 +0,0 @@ -SET NAMES utf8mb4; -SET FOREIGN_KEY_CHECKS = 0; - --- ---------------------------- --- Table structure for admininfo --- ---------------------------- -DROP TABLE IF EXISTS `admininfo`; -CREATE TABLE `admininfo` ( - `Id` int(11) NOT NULL COMMENT '自增长ID', - `AdminAccount` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '管理员账号', - `AdminPassword` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '管理员密码', - `AdminType` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '管理员类型', - `AdminName` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '管理员名称', - `IsAdmin` int(11) NULL DEFAULT NULL COMMENT '是否为超级管理员', - `DeleteMk` int(11) NULL DEFAULT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料新增人', - `datains_time` date NULL DEFAULT NULL COMMENT '资料新增时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_time` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`Id`, `AdminAccount`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '管理员信息表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for admintype --- ---------------------------- -DROP TABLE IF EXISTS `admintype`; -CREATE TABLE `admintype` ( - `Id` int(11) NOT NULL COMMENT '编号', - `type_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '管理员类型', - `type_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '管理员类型名称', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`Id`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '管理员类型表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for applicationversion --- ---------------------------- -DROP TABLE IF EXISTS `applicationversion`; -CREATE TABLE `applicationversion` ( - `base_versionId` smallint(6) NOT NULL COMMENT '流水号', - `base_version` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '版本号', - PRIMARY KEY (`base_versionId`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '应用程序版本控制表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for backinfo --- ---------------------------- -DROP TABLE IF EXISTS `backinfo`; -CREATE TABLE `backinfo` ( - `BackNo` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '物资编号', - `BackName` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '物资名称', - `BackSource` varchar(18) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '物资来源', - `BackCash` decimal(6, 2) NOT NULL COMMENT '物资金额', - `BackType` int(11) NOT NULL COMMENT '物资类型', - `BackPerson` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '经办人', - `ControlClub` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '管理部门', - `BackClub` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '所属部门', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`BackNo`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '酒店物资表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for base --- ---------------------------- -DROP TABLE IF EXISTS `base`; -CREATE TABLE `base` ( - `url_no` int(11) NOT NULL COMMENT 'ID', - `url_addr` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '地址', - PRIMARY KEY (`url_no`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '程序信息配置表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for cardcodes --- ---------------------------- -DROP TABLE IF EXISTS `cardcodes`; -CREATE TABLE `cardcodes` ( - `id` bigint(20) NOT NULL COMMENT '编号', - `Province` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '省份', - `City` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '城市', - `District` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '地区', - `bm` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '地区识别码', - PRIMARY KEY (`id`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '身份证地区识别码表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for cashinfo --- ---------------------------- -DROP TABLE IF EXISTS `cashinfo`; -CREATE TABLE `cashinfo` ( - `CashNo` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '资产编号', - `CashName` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '资产名称', - `CashPrice` decimal(10, 2) NOT NULL COMMENT '资产总值', - `CashClub` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '所属部门', - `CashTime` datetime NOT NULL COMMENT '入库时间', - `CashSource` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '资产来源', - `CashPerson` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '资产经办人', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`CashNo`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '酒店资产表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for checkinfo --- ---------------------------- -DROP TABLE IF EXISTS `checkinfo`; -CREATE TABLE `checkinfo` ( - `CheckNo` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '监管统计编号', - `CheckClub` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '受监管部门', - `CheckProgres` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '受监管部门总体概述', - `CheckCash` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '受监管部门交易情况', - `CheckScore` int(11) NOT NULL COMMENT '受监管部门得分情况', - `CheckPerson` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '本次监管负责人', - `CheckAdvice` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '监管建议', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`CheckNo`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '监管统计表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for counterrule --- ---------------------------- -DROP TABLE IF EXISTS `counterrule`; -CREATE TABLE `counterrule` ( - `rule_id` int(11) NOT NULL COMMENT '规则编号', - `rule_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '规格名称', - `rule_desc` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '规则描述', - `now_id` int(11) NULL DEFAULT NULL COMMENT '当前ID', - `prefix_name` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '规则简写', - `custo_format` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '规则格式', - `number_format` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '编号前缀', - `separating_char` varchar(5) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '规则分割符', - `datains_usrid` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料新增人', - `datains_time` datetime NULL DEFAULT NULL COMMENT '资料新增时间', - `datachg_usrid` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_time` datetime NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`rule_id`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '业务流水号规则表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for custospend --- ---------------------------- -DROP TABLE IF EXISTS `custospend`; -CREATE TABLE `custospend` ( - `SpendId` int(11) NOT NULL COMMENT '记录编号', - `RoomNo` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '房间编号', - `CustoNo` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '客户编号', - `SpendName` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '商品名称', - `SpendAmount` int(11) NOT NULL COMMENT '商品数量', - `SpendPrice` decimal(10, 2) NOT NULL COMMENT '商品价格', - `SpendMoney` decimal(10, 2) NOT NULL COMMENT '消费总额', - `SpendTime` datetime NOT NULL COMMENT '消费时间', - `MoneyState` varchar(9) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '结算状态', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`SpendId`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '商品消费表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for dept --- ---------------------------- -DROP TABLE IF EXISTS `dept`; -CREATE TABLE `dept` ( - `dept_no` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '部门编号', - `dept_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '部门名称', - `dept_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '部门描述', - `dept_date` date NULL DEFAULT NULL COMMENT '创建时间(部门)', - `dept_leader` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '部门主管', - `dept_parent` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '上级部门', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`dept_no`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '部门表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for education --- ---------------------------- -DROP TABLE IF EXISTS `education`; -CREATE TABLE `education` ( - `education_no` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '学历编号', - `education_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '学历名称', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`education_no`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '学历表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for fonts --- ---------------------------- -DROP TABLE IF EXISTS `fonts`; -CREATE TABLE `fonts` ( - `FontsId` int(11) NOT NULL COMMENT 'ID', - `FontsMess` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '文字信息', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`FontsId`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '主页跑马灯信息表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for gbtype --- ---------------------------- -DROP TABLE IF EXISTS `gbtype`; -CREATE TABLE `gbtype` ( - `GBTypeId` int(11) NOT NULL COMMENT '奖惩类型ID', - `GBName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '奖惩类型名称', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`GBTypeId`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '奖惩类型' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for module --- ---------------------------- -DROP TABLE IF EXISTS `module`; -CREATE TABLE `module` ( - `module_id` int(11) NOT NULL COMMENT '模块ID', - `module_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '模块名称', - `module_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '模块描述', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料新增人', - `datains_time` date NULL DEFAULT NULL COMMENT '资料新增时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_time` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`module_id`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统模块表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for module_zero --- ---------------------------- -DROP TABLE IF EXISTS `module_zero`; -CREATE TABLE `module_zero` ( - `module_id` int(11) NOT NULL COMMENT '模块ID', - `admin_account` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '管理员账号', - `module_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '模块名称', - `module_enable` int(11) NULL DEFAULT NULL COMMENT '是否开启', - PRIMARY KEY (`module_id`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统模块权限表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for nation --- ---------------------------- -DROP TABLE IF EXISTS `nation`; -CREATE TABLE `nation` ( - `nation_no` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '民族编号', - `nation_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '民族名称', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`nation_no`, `nation_name`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '民族信息表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for operationlog --- ---------------------------- -DROP TABLE IF EXISTS `operationlog`; -CREATE TABLE `operationlog` ( - `OperationId` bigint(20) NOT NULL COMMENT '记录ID', - `OperationTime` datetime NOT NULL COMMENT '记录时间', - `LogContent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '日志内容', - `OperationAccount` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '被记录账户', - `OperationLevel` int(11) NULL DEFAULT NULL COMMENT '日志等级', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` datetime NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` datetime NULL DEFAULT NULL COMMENT '资料更新时间', - `SoftwareVersion` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '软件版本', - `login_ip` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '登录IP', - PRIMARY KEY (`OperationId`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '系统操作日志表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for passporttype --- ---------------------------- -DROP TABLE IF EXISTS `passporttype`; -CREATE TABLE `passporttype` ( - `PassportId` int(11) NOT NULL COMMENT '证件类型ID', - `PassportName` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '证件类型名称', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`PassportId`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '证件类型表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for pdman_db_version --- ---------------------------- -DROP TABLE IF EXISTS `pdman_db_version`; -CREATE TABLE `pdman_db_version` ( - `DB_VERSION` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL, - `VERSION_DESC` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL, - `CREATED_TIME` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for position --- ---------------------------- -DROP TABLE IF EXISTS `position`; -CREATE TABLE `position` ( - `position_no` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '职位编号', - `position_name` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '职位名称', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`position_no`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '职位表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for reser --- ---------------------------- -DROP TABLE IF EXISTS `reser`; -CREATE TABLE `reser` ( - `ReserId` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '预约ID ', - `CustoName` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '客户名字', - `CustoTel` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '联系方式', - `ReserWay` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '预约方式', - `ReserRoom` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '预约房号', - `ReserDate` date NULL DEFAULT NULL COMMENT '预约开始日期', - `ReserEndDay` date NULL DEFAULT NULL COMMENT '预约结束日期', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`ReserId`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '预约表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for room --- ---------------------------- -DROP TABLE IF EXISTS `room`; -CREATE TABLE `room` ( - `RoomNo` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '房间编号', - `RoomType` int(11) NOT NULL COMMENT '房间类型', - `CustoNo` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '客户编号', - `CheckTime` datetime NULL DEFAULT NULL COMMENT '入住时间', - `CheckOutTime` datetime NULL DEFAULT NULL COMMENT '退房时间', - `RoomStateId` int(11) NOT NULL COMMENT '房间状态', - `RoomMoney` decimal(10, 2) NULL DEFAULT NULL COMMENT '房间单价', - `RoomPosition` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '房间位置', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - `deposit` decimal(10, 2) NULL DEFAULT NULL COMMENT '房间押金', - PRIMARY KEY (`RoomNo`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '房间表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for roomstate --- ---------------------------- -DROP TABLE IF EXISTS `roomstate`; -CREATE TABLE `roomstate` ( - `RoomStateId` int(11) NOT NULL COMMENT '房间状态ID', - `RoomState` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '房间状态名称', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`RoomStateId`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '房间状态表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for roomtype --- ---------------------------- -DROP TABLE IF EXISTS `roomtype`; -CREATE TABLE `roomtype` ( - `RoomType` int(11) NOT NULL COMMENT '房间类型ID', - `RoomName` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '房间类型名称', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`RoomType`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '房间类型表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for sellthing --- ---------------------------- -DROP TABLE IF EXISTS `sellthing`; -CREATE TABLE `sellthing` ( - `SellNo` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '商品编号', - `SellName` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '商品名称', - `SellPrice` decimal(10, 2) NOT NULL COMMENT '商品价格', - `format` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '规格型号', - `Stock` decimal(16, 2) NOT NULL COMMENT '库存数量', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`SellNo`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '商品表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for sextype --- ---------------------------- -DROP TABLE IF EXISTS `sextype`; -CREATE TABLE `sextype` ( - `sexId` int(11) NOT NULL COMMENT '性别ID', - `sexName` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '性别名称', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`sexId`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '性别类型表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for uploadinfo --- ---------------------------- -DROP TABLE IF EXISTS `uploadinfo`; -CREATE TABLE `uploadinfo` ( - `NoticeNo` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '公告编号', - `Noticetheme` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '公告主题', - `NoticeType` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '公告类型', - `NoticeTime` datetime NOT NULL COMMENT '发布日期', - `NoticeContent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '公告正文', - `NoticeClub` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '发文部门', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`NoticeNo`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '公告表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for user_log --- ---------------------------- -DROP TABLE IF EXISTS `user_log`; -CREATE TABLE `user_log` ( - `id` int(11) NOT NULL, - `user_key` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, - `user_token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, - `datains_time` datetime NULL DEFAULT NULL, - PRIMARY KEY (`id`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '用户登录信息表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for userinfo --- ---------------------------- -DROP TABLE IF EXISTS `userinfo`; -CREATE TABLE `userinfo` ( - `CustoNo` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户编号', - `CustoName` varchar(80) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户名称', - `CustoSex` int(11) NOT NULL COMMENT '用户性别', - `CustoTel` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户电话', - `PassportType` int(11) NOT NULL COMMENT '证照类型', - `CustoID` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '证件号码', - `CustoAdress` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '居住地址', - `CustoBirth` date NOT NULL COMMENT '出生日期', - `CustoType` int(11) NOT NULL COMMENT '客户类型', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`CustoNo`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '用户信息表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for usertype --- ---------------------------- -DROP TABLE IF EXISTS `usertype`; -CREATE TABLE `usertype` ( - `UserType` int(11) NOT NULL COMMENT '客户类型ID', - `TypeName` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '客户类型名称', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`UserType`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '用户类型表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for vip_rule --- ---------------------------- -DROP TABLE IF EXISTS `vip_rule`; -CREATE TABLE `vip_rule` ( - `id` int(11) NOT NULL COMMENT '索引ID', - `rule_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '会员规则流水号', - `rule_name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '会员规则名称', - `rule_value` decimal(32, 2) NOT NULL COMMENT '预设数值', - `type_id` int(11) NOT NULL COMMENT '会员等级', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`id`, `rule_id`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '会员等级规则表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for worker --- ---------------------------- -DROP TABLE IF EXISTS `worker`; -CREATE TABLE `worker` ( - `WorkerId` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '工号', - `WorkerName` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '名字', - `WorkerBirthday` datetime NOT NULL COMMENT '出生日期', - `WorkerSex` int(11) NOT NULL COMMENT '性别', - `WorkerTel` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '电话', - `WorkerClub` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '部门', - `WorkerNation` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '民族', - `WorkerAddress` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '居住地址', - `WorkerPosition` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '职位', - `CardID` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '证件号码', - `WorkerPwd` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '系统密码', - `WorkerTime` datetime NOT NULL COMMENT '入职时间', - `WorkerFace` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '面貌', - `WorkerEducation` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '学历', - `delete_mk` int(11) NULL DEFAULT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`WorkerId`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '员工表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for workercheck --- ---------------------------- -DROP TABLE IF EXISTS `workercheck`; -CREATE TABLE `workercheck` ( - `Id` int(11) NOT NULL COMMENT '自增长ID', - `WorkerNo` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '工号', - `CheckTime` datetime NULL DEFAULT NULL COMMENT '打卡时间', - `CheckWay` varchar(80) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '打卡方式', - `CheckState` int(11) NULL DEFAULT NULL COMMENT '打卡状态', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`Id`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '员工打卡表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for workergoodbad --- ---------------------------- -DROP TABLE IF EXISTS `workergoodbad`; -CREATE TABLE `workergoodbad` ( - `Id` int(11) NOT NULL COMMENT '自增长ID', - `WorkNo` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '工号', - `GBInfo` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '奖惩信息', - `GBType` int(11) NULL DEFAULT NULL COMMENT '奖惩类型', - `GBOperation` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '录入人', - `GBTime` datetime NULL DEFAULT NULL COMMENT '录入时间', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`Id`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '员工奖惩记录表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for workerhistory --- ---------------------------- -DROP TABLE IF EXISTS `workerhistory`; -CREATE TABLE `workerhistory` ( - `Id` int(11) NOT NULL COMMENT '自增长ID', - `WorkerId` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '工号', - `StartDate` datetime NOT NULL COMMENT '开始时间', - `EndDate` datetime NOT NULL COMMENT '结束时间', - `Position` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '职务', - `Company` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '公司', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`Id`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '员工履历表' ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for workerpic --- ---------------------------- -DROP TABLE IF EXISTS `workerpic`; -CREATE TABLE `workerpic` ( - `Id` int(11) NOT NULL COMMENT '自增长流水号', - `WorkerId` varchar(17) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '工号', - `Pic` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '照片路径', - PRIMARY KEY (`Id`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; - --- ---------------------------- --- Table structure for wtinfo --- ---------------------------- -DROP TABLE IF EXISTS `wtinfo`; -CREATE TABLE `wtinfo` ( - `WtiNo` smallint(6) NOT NULL COMMENT '记录编号', - `RoomNo` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '房间编号', - `UseDate` datetime NOT NULL COMMENT '开始时间', - `EndDate` datetime NULL DEFAULT NULL COMMENT '结束时间', - `WaterUse` decimal(6, 2) NOT NULL COMMENT '用水情况', - `PowerUse` decimal(6, 2) NOT NULL COMMENT '用电情况', - `Record` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '记录人', - `CustoNo` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '客户编号', - `delete_mk` int(11) NOT NULL COMMENT '删除标记', - `datains_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料创建人', - `datains_date` date NULL DEFAULT NULL COMMENT '资料创建时间', - `datachg_usr` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '资料更新人', - `datachg_date` date NULL DEFAULT NULL COMMENT '资料更新时间', - PRIMARY KEY (`WtiNo`) USING BTREE -) ENGINE = MyISAM CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '水电费信息表' ROW_FORMAT = Dynamic; - -SET FOREIGN_KEY_CHECKS = 1; diff --git "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/db_file.sql" "b/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/db_file.sql" new file mode 100644 index 0000000..250f534 --- /dev/null +++ "b/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/MySQL\347\211\210\346\234\254/db_file.sql" @@ -0,0 +1,19096 @@ +-- ---------------------------- +-- Table structure for admininfo +-- ---------------------------- +DROP TABLE IF EXISTS "public"."admininfo"; +CREATE TABLE "public"."admininfo" ( + "Id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "AdminAccount" varchar(15) COLLATE "pg_catalog"."default" NOT NULL, + "AdminPassword" varchar(200) COLLATE "pg_catalog"."default", + "AdminType" varchar(15) COLLATE "pg_catalog"."default", + "AdminName" varchar(50) COLLATE "pg_catalog"."default", + "IsAdmin" int4, + "DeleteMk" int4, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_time" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_time" date +) +; +COMMENT ON COLUMN "public"."admininfo"."Id" IS '自增长ID'; +COMMENT ON COLUMN "public"."admininfo"."AdminAccount" IS '管理员账号'; +COMMENT ON COLUMN "public"."admininfo"."AdminPassword" IS '管理员密码'; +COMMENT ON COLUMN "public"."admininfo"."AdminType" IS '管理员类型'; +COMMENT ON COLUMN "public"."admininfo"."AdminName" IS '管理员名称'; +COMMENT ON COLUMN "public"."admininfo"."IsAdmin" IS '是否为超级管理员'; +COMMENT ON COLUMN "public"."admininfo"."DeleteMk" IS '删除标记'; +COMMENT ON COLUMN "public"."admininfo"."datains_usr" IS '资料新增人'; +COMMENT ON COLUMN "public"."admininfo"."datains_time" IS '资料新增时间'; +COMMENT ON COLUMN "public"."admininfo"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."admininfo"."datachg_time" IS '资料更新时间'; +COMMENT ON TABLE "public"."admininfo" IS '管理员信息表'; + +-- ---------------------------- +-- Records of admininfo +-- ---------------------------- +INSERT INTO "public"."admininfo" VALUES (1, 'admin', 'admin', 'Admin', '杨俊杰', 1, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."admininfo" VALUES (3, 'testmin', 'testmin', 'GeneralManager', '测试', 0, 1, '', '2021-05-16', NULL, NULL); +INSERT INTO "public"."admininfo" VALUES (4, 'xym', 'cashmin', 'FinanceManager', '熊越明', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."admininfo" VALUES (6, 'hr', '123456', 'HRManager', '人力经理', 0, 0, 'admin', '2021-05-22', NULL, NULL); +INSERT INTO "public"."admininfo" VALUES (9, 'test1', '6666', 'test', '测试', 0, 1, 'admin', '2021-07-31', NULL, NULL); +INSERT INTO "public"."admininfo" VALUES (5, 'lishun', 'lishun', 'GeneralManager', '李顺', 0, 1, 'admin', '2021-05-18', NULL, NULL); +INSERT INTO "public"."admininfo" VALUES (2, 'bha', 'hotelmin', 'HotelManager', '宾华安', 0, 1, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for admintype +-- ---------------------------- +DROP TABLE IF EXISTS "public"."admintype"; +CREATE TABLE "public"."admintype" ( + "Id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "type_id" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, + "type_name" varchar(50) COLLATE "pg_catalog"."default", + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."admintype"."Id" IS '编号'; +COMMENT ON COLUMN "public"."admintype"."type_id" IS '管理员类型'; +COMMENT ON COLUMN "public"."admintype"."type_name" IS '管理员类型名称'; +COMMENT ON COLUMN "public"."admintype"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."admintype"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."admintype"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."admintype"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."admintype"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."admintype" IS '管理员类型表'; + +-- ---------------------------- +-- Records of admintype +-- ---------------------------- +INSERT INTO "public"."admintype" VALUES (1, 'Admin', '超级管理员', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."admintype" VALUES (2, 'FinanceManager', '财务经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."admintype" VALUES (3, 'GeneralManager', '总经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."admintype" VALUES (4, 'HotelManager', '酒店经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."admintype" VALUES (5, 'HRManager', '人力资源经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."admintype" VALUES (6, 'LogisticsManager', '后勤经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."admintype" VALUES (7, 'CheckGroup', '监管小组', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for applicationversion +-- ---------------------------- +DROP TABLE IF EXISTS "public"."applicationversion"; +CREATE TABLE "public"."applicationversion" ( + "base_versionId" int2 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "base_version" varchar(50) COLLATE "pg_catalog"."default" NOT NULL +) +; +COMMENT ON COLUMN "public"."applicationversion"."base_versionId" IS '流水号'; +COMMENT ON COLUMN "public"."applicationversion"."base_version" IS '版本号'; +COMMENT ON TABLE "public"."applicationversion" IS '应用程序版本控制表'; + +-- ---------------------------- +-- Records of applicationversion +-- ---------------------------- +INSERT INTO "public"."applicationversion" VALUES (1, '1.5.0.8'); + +-- ---------------------------- +-- Table structure for backinfo +-- ---------------------------- +DROP TABLE IF EXISTS "public"."backinfo"; +CREATE TABLE "public"."backinfo" ( + "BackNo" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, + "BackName" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, + "BackSource" varchar(18) COLLATE "pg_catalog"."default" NOT NULL, + "BackCash" numeric(6,2) NOT NULL, + "BackType" int4 NOT NULL, + "BackPerson" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, + "ControlClub" varchar(12) COLLATE "pg_catalog"."default" NOT NULL, + "BackClub" varchar(12) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."backinfo"."BackNo" IS '物资编号'; +COMMENT ON COLUMN "public"."backinfo"."BackName" IS '物资名称'; +COMMENT ON COLUMN "public"."backinfo"."BackSource" IS '物资来源'; +COMMENT ON COLUMN "public"."backinfo"."BackCash" IS '物资金额'; +COMMENT ON COLUMN "public"."backinfo"."BackType" IS '物资类型'; +COMMENT ON COLUMN "public"."backinfo"."BackPerson" IS '经办人'; +COMMENT ON COLUMN "public"."backinfo"."ControlClub" IS '管理部门'; +COMMENT ON COLUMN "public"."backinfo"."BackClub" IS '所属部门'; +COMMENT ON COLUMN "public"."backinfo"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."backinfo"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."backinfo"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."backinfo"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."backinfo"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."backinfo" IS '酒店物资表'; + +-- ---------------------------- +-- Records of backinfo +-- ---------------------------- +INSERT INTO "public"."backinfo" VALUES ('B001', '一次性毛巾', '超市', 1000.00, 1, '李杰峰', '财务部', '餐饮部', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."backinfo" VALUES ('B002', '一次性牙刷', '超市', 2000.00, 2, '李杰峰', '财务部', '酒店部', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for base +-- ---------------------------- +DROP TABLE IF EXISTS "public"."base"; +CREATE TABLE "public"."base" ( + "url_no" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "url_addr" varchar(255) COLLATE "pg_catalog"."default" +) +; +COMMENT ON COLUMN "public"."base"."url_no" IS 'ID'; +COMMENT ON COLUMN "public"."base"."url_addr" IS '地址'; +COMMENT ON TABLE "public"."base" IS '程序信息配置表'; + +-- ---------------------------- +-- Records of base +-- ---------------------------- +INSERT INTO "public"."base" VALUES (1, 'https://gitee.com/java-and-net/TopskyHotelManagerSystem/releases'); + +-- ---------------------------- +-- Table structure for cardcodes +-- ---------------------------- +DROP TABLE IF EXISTS "public"."cardcodes"; +CREATE TABLE "public"."cardcodes" ( + "id" int8 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "Province" varchar(255) COLLATE "pg_catalog"."default" NOT NULL, + "City" varchar(255) COLLATE "pg_catalog"."default", + "District" varchar(255) COLLATE "pg_catalog"."default", + "bm" varchar(255) COLLATE "pg_catalog"."default" +) +; +COMMENT ON COLUMN "public"."cardcodes"."id" IS '编号'; +COMMENT ON COLUMN "public"."cardcodes"."Province" IS '省份'; +COMMENT ON COLUMN "public"."cardcodes"."City" IS '城市'; +COMMENT ON COLUMN "public"."cardcodes"."District" IS '地区'; +COMMENT ON COLUMN "public"."cardcodes"."bm" IS '地区识别码'; +COMMENT ON TABLE "public"."cardcodes" IS '身份证地区识别码表'; + +-- ---------------------------- +-- Records of cardcodes +-- ---------------------------- +INSERT INTO "public"."cardcodes" VALUES (1, '北京市', NULL, '东城区', '110101'); +INSERT INTO "public"."cardcodes" VALUES (2, '北京市', NULL, '西城区', '110102'); +INSERT INTO "public"."cardcodes" VALUES (3, '北京市', NULL, '崇文区', '110103'); +INSERT INTO "public"."cardcodes" VALUES (4, '北京市', NULL, '宣武区', '110104'); +INSERT INTO "public"."cardcodes" VALUES (5, '北京市', NULL, '朝阳区', '110105'); +INSERT INTO "public"."cardcodes" VALUES (6, '北京市', NULL, '丰台区', '110106'); +INSERT INTO "public"."cardcodes" VALUES (7, '北京市', NULL, '石景山区', '110107'); +INSERT INTO "public"."cardcodes" VALUES (8, '北京市', NULL, '海淀区', '110108'); +INSERT INTO "public"."cardcodes" VALUES (9, '北京市', NULL, '门头沟区', '110109'); +INSERT INTO "public"."cardcodes" VALUES (10, '北京市', NULL, '燕山区', '110110'); +INSERT INTO "public"."cardcodes" VALUES (11, '北京市', NULL, '房山区', '110111'); +INSERT INTO "public"."cardcodes" VALUES (12, '北京市', NULL, '通州区', '110112'); +INSERT INTO "public"."cardcodes" VALUES (13, '北京市', NULL, '顺义区', '110113'); +INSERT INTO "public"."cardcodes" VALUES (14, '北京市', NULL, '昌平区', '110114'); +INSERT INTO "public"."cardcodes" VALUES (15, '北京市', NULL, '大兴区', '110115'); +INSERT INTO "public"."cardcodes" VALUES (16, '北京市', NULL, '怀柔区', '110116'); +INSERT INTO "public"."cardcodes" VALUES (17, '北京市', NULL, '平谷区', '110117'); +INSERT INTO "public"."cardcodes" VALUES (18, '北京市', NULL, '昌平县', '110221'); +INSERT INTO "public"."cardcodes" VALUES (19, '北京市', NULL, '顺义县', '110222'); +INSERT INTO "public"."cardcodes" VALUES (20, '北京市', NULL, '通县', '110223'); +INSERT INTO "public"."cardcodes" VALUES (21, '北京市', NULL, '大兴县', '110224'); +INSERT INTO "public"."cardcodes" VALUES (22, '北京市', NULL, '房山县', '110225'); +INSERT INTO "public"."cardcodes" VALUES (23, '北京市', NULL, '平谷县', '110226'); +INSERT INTO "public"."cardcodes" VALUES (24, '北京市', NULL, '怀柔县', '110227'); +INSERT INTO "public"."cardcodes" VALUES (25, '北京市', NULL, '密云县', '110228'); +INSERT INTO "public"."cardcodes" VALUES (26, '北京市', NULL, '延庆县', '110229'); +INSERT INTO "public"."cardcodes" VALUES (27, '天津市', NULL, '和平区', '120101'); +INSERT INTO "public"."cardcodes" VALUES (28, '天津市', NULL, '河东区', '120102'); +INSERT INTO "public"."cardcodes" VALUES (29, '天津市', NULL, '河西区', '120103'); +INSERT INTO "public"."cardcodes" VALUES (30, '天津市', NULL, '南开区', '120104'); +INSERT INTO "public"."cardcodes" VALUES (31, '天津市', NULL, '河北区', '120105'); +INSERT INTO "public"."cardcodes" VALUES (32, '天津市', NULL, '红桥区', '120106'); +INSERT INTO "public"."cardcodes" VALUES (33, '天津市', NULL, '塘沽区', '120107'); +INSERT INTO "public"."cardcodes" VALUES (34, '天津市', NULL, '汉沽区', '120108'); +INSERT INTO "public"."cardcodes" VALUES (35, '天津市', NULL, '大港区', '120109'); +INSERT INTO "public"."cardcodes" VALUES (36, '天津市', NULL, '东丽区', '120110'); +INSERT INTO "public"."cardcodes" VALUES (37, '天津市', NULL, '西青区', '120111'); +INSERT INTO "public"."cardcodes" VALUES (38, '天津市', NULL, '津南区', '120112'); +INSERT INTO "public"."cardcodes" VALUES (39, '天津市', NULL, '北辰区', '120113'); +INSERT INTO "public"."cardcodes" VALUES (40, '天津市', NULL, '武清区', '120114'); +INSERT INTO "public"."cardcodes" VALUES (41, '天津市', NULL, '宝坻区', '120115'); +INSERT INTO "public"."cardcodes" VALUES (42, '天津市', NULL, '宁河县', '120221'); +INSERT INTO "public"."cardcodes" VALUES (43, '天津市', NULL, '武清县', '120222'); +INSERT INTO "public"."cardcodes" VALUES (44, '天津市', NULL, '静海县', '120223'); +INSERT INTO "public"."cardcodes" VALUES (45, '天津市', NULL, '宝坻县', '120224'); +INSERT INTO "public"."cardcodes" VALUES (46, '天津市', NULL, '蓟县', '120225'); +INSERT INTO "public"."cardcodes" VALUES (47, '河北省', '石家庄市', '市辖区', '130101'); +INSERT INTO "public"."cardcodes" VALUES (48, '河北省', '石家庄市', '长安区', '130102'); +INSERT INTO "public"."cardcodes" VALUES (49, '河北省', '石家庄市', '桥东区', '130103'); +INSERT INTO "public"."cardcodes" VALUES (50, '河北省', '石家庄市', '桥西区', '130104'); +INSERT INTO "public"."cardcodes" VALUES (51, '河北省', '石家庄市', '新华区', '130105'); +INSERT INTO "public"."cardcodes" VALUES (52, '河北省', '石家庄市', '郊区', '130106'); +INSERT INTO "public"."cardcodes" VALUES (53, '河北省', '石家庄市', '井陉矿区', '130107'); +INSERT INTO "public"."cardcodes" VALUES (54, '河北省', '石家庄市', '裕华区', '130108'); +INSERT INTO "public"."cardcodes" VALUES (55, '河北省', '石家庄市', '井陉县', '130121'); +INSERT INTO "public"."cardcodes" VALUES (56, '河北省', '石家庄市', '获鹿县', '130122'); +INSERT INTO "public"."cardcodes" VALUES (57, '河北省', '石家庄市', '正定县', '130123'); +INSERT INTO "public"."cardcodes" VALUES (58, '河北省', '石家庄市', '栾城县', '130124'); +INSERT INTO "public"."cardcodes" VALUES (59, '河北省', '石家庄市', '行唐县', '130125'); +INSERT INTO "public"."cardcodes" VALUES (60, '河北省', '石家庄市', '灵寿县', '130126'); +INSERT INTO "public"."cardcodes" VALUES (61, '河北省', '石家庄市', '高邑县', '130127'); +INSERT INTO "public"."cardcodes" VALUES (62, '河北省', '石家庄市', '深泽县', '130128'); +INSERT INTO "public"."cardcodes" VALUES (63, '河北省', '石家庄市', '赞皇县', '130129'); +INSERT INTO "public"."cardcodes" VALUES (64, '河北省', '石家庄市', '无极县', '130130'); +INSERT INTO "public"."cardcodes" VALUES (65, '河北省', '石家庄市', '平山县', '130131'); +INSERT INTO "public"."cardcodes" VALUES (66, '河北省', '石家庄市', '元氏县', '130132'); +INSERT INTO "public"."cardcodes" VALUES (67, '河北省', '石家庄市', '赵县', '130133'); +INSERT INTO "public"."cardcodes" VALUES (68, '河北省', '石家庄市', '辛集市', '130181'); +INSERT INTO "public"."cardcodes" VALUES (69, '河北省', '石家庄市', '藁城市', '130182'); +INSERT INTO "public"."cardcodes" VALUES (70, '河北省', '石家庄市', '晋州市', '130183'); +INSERT INTO "public"."cardcodes" VALUES (71, '河北省', '石家庄市', '新乐市', '130184'); +INSERT INTO "public"."cardcodes" VALUES (72, '河北省', '石家庄市', '鹿泉市', '130185'); +INSERT INTO "public"."cardcodes" VALUES (73, '河北省', '唐山市', '市辖区', '130201'); +INSERT INTO "public"."cardcodes" VALUES (74, '河北省', '唐山市', '路南区', '130202'); +INSERT INTO "public"."cardcodes" VALUES (75, '河北省', '唐山市', '路北区', '130203'); +INSERT INTO "public"."cardcodes" VALUES (76, '河北省', '唐山市', '古冶区', '130204'); +INSERT INTO "public"."cardcodes" VALUES (77, '河北省', '唐山市', '开平区', '130205'); +INSERT INTO "public"."cardcodes" VALUES (78, '河北省', '唐山市', '新区', '130206'); +INSERT INTO "public"."cardcodes" VALUES (79, '河北省', '唐山市', '丰南区', '130207'); +INSERT INTO "public"."cardcodes" VALUES (80, '河北省', '唐山市', '丰润区', '130208'); +INSERT INTO "public"."cardcodes" VALUES (81, '河北省', '唐山市', '丰润县', '130221'); +INSERT INTO "public"."cardcodes" VALUES (82, '河北省', '唐山市', '丰南县', '130222'); +INSERT INTO "public"."cardcodes" VALUES (83, '河北省', '唐山市', '滦县', '130223'); +INSERT INTO "public"."cardcodes" VALUES (84, '河北省', '唐山市', '滦南县', '130224'); +INSERT INTO "public"."cardcodes" VALUES (85, '河北省', '唐山市', '乐亭县', '130225'); +INSERT INTO "public"."cardcodes" VALUES (86, '河北省', '唐山市', '迁安县', '130226'); +INSERT INTO "public"."cardcodes" VALUES (87, '河北省', '唐山市', '迁西县', '130227'); +INSERT INTO "public"."cardcodes" VALUES (88, '河北省', '唐山市', '遵化县', '130228'); +INSERT INTO "public"."cardcodes" VALUES (89, '河北省', '唐山市', '玉田县', '130229'); +INSERT INTO "public"."cardcodes" VALUES (90, '河北省', '唐山市', '唐海县', '130230'); +INSERT INTO "public"."cardcodes" VALUES (91, '河北省', '唐山市', '遵化市', '130281'); +INSERT INTO "public"."cardcodes" VALUES (92, '河北省', '唐山市', '丰南市', '130282'); +INSERT INTO "public"."cardcodes" VALUES (93, '河北省', '唐山市', '迁安市', '130283'); +INSERT INTO "public"."cardcodes" VALUES (94, '河北省', '秦皇岛市', '市辖区', '130301'); +INSERT INTO "public"."cardcodes" VALUES (95, '河北省', '秦皇岛市', '海港区', '130302'); +INSERT INTO "public"."cardcodes" VALUES (96, '河北省', '秦皇岛市', '山海关区', '130303'); +INSERT INTO "public"."cardcodes" VALUES (97, '河北省', '秦皇岛市', '北戴河区', '130304'); +INSERT INTO "public"."cardcodes" VALUES (98, '河北省', '秦皇岛市', '青龙满族自治县', '130321'); +INSERT INTO "public"."cardcodes" VALUES (99, '河北省', '秦皇岛市', '昌黎县', '130322'); +INSERT INTO "public"."cardcodes" VALUES (100, '河北省', '秦皇岛市', '抚宁县', '130323'); +INSERT INTO "public"."cardcodes" VALUES (101, '河北省', '秦皇岛市', '卢龙县', '130324'); +INSERT INTO "public"."cardcodes" VALUES (102, '河北省', '邯郸市', '市辖区', '130401'); +INSERT INTO "public"."cardcodes" VALUES (103, '河北省', '邯郸市', '邯山区', '130402'); +INSERT INTO "public"."cardcodes" VALUES (104, '河北省', '邯郸市', '丛台区', '130403'); +INSERT INTO "public"."cardcodes" VALUES (105, '河北省', '邯郸市', '复兴区', '130404'); +INSERT INTO "public"."cardcodes" VALUES (106, '河北省', '邯郸市', '郊区', '130405'); +INSERT INTO "public"."cardcodes" VALUES (107, '河北省', '邯郸市', '峰峰矿区', '130406'); +INSERT INTO "public"."cardcodes" VALUES (108, '河北省', '邯郸市', '邯郸县', '130421'); +INSERT INTO "public"."cardcodes" VALUES (109, '河北省', '邯郸市', '武安县', '130422'); +INSERT INTO "public"."cardcodes" VALUES (110, '河北省', '邯郸市', '临漳县', '130423'); +INSERT INTO "public"."cardcodes" VALUES (111, '河北省', '邯郸市', '成安县', '130424'); +INSERT INTO "public"."cardcodes" VALUES (112, '河北省', '邯郸市', '大名县', '130425'); +INSERT INTO "public"."cardcodes" VALUES (113, '河北省', '邯郸市', '涉县', '130426'); +INSERT INTO "public"."cardcodes" VALUES (114, '河北省', '邯郸市', '磁县', '130427'); +INSERT INTO "public"."cardcodes" VALUES (115, '河北省', '邯郸市', '肥乡县', '130428'); +INSERT INTO "public"."cardcodes" VALUES (116, '河北省', '邯郸市', '永年县', '130429'); +INSERT INTO "public"."cardcodes" VALUES (117, '河北省', '邯郸市', '邱县', '130430'); +INSERT INTO "public"."cardcodes" VALUES (118, '河北省', '邯郸市', '鸡泽县', '130431'); +INSERT INTO "public"."cardcodes" VALUES (119, '河北省', '邯郸市', '广平县', '130432'); +INSERT INTO "public"."cardcodes" VALUES (120, '河北省', '邯郸市', '馆陶县', '130433'); +INSERT INTO "public"."cardcodes" VALUES (121, '河北省', '邯郸市', '魏县', '130434'); +INSERT INTO "public"."cardcodes" VALUES (122, '河北省', '邯郸市', '曲周县', '130435'); +INSERT INTO "public"."cardcodes" VALUES (123, '河北省', '邯郸市', '武安市', '130481'); +INSERT INTO "public"."cardcodes" VALUES (124, '河北省', '邢台市', '市辖区', '130501'); +INSERT INTO "public"."cardcodes" VALUES (125, '河北省', '邢台市', '桥东区', '130502'); +INSERT INTO "public"."cardcodes" VALUES (126, '河北省', '邢台市', '桥西区', '130503'); +INSERT INTO "public"."cardcodes" VALUES (127, '河北省', '邢台市', '邢台县', '130521'); +INSERT INTO "public"."cardcodes" VALUES (128, '河北省', '邢台市', '临城县', '130522'); +INSERT INTO "public"."cardcodes" VALUES (129, '河北省', '邢台市', '内丘县', '130523'); +INSERT INTO "public"."cardcodes" VALUES (130, '河北省', '邢台市', '柏乡县', '130524'); +INSERT INTO "public"."cardcodes" VALUES (131, '河北省', '邢台市', '隆尧县', '130525'); +INSERT INTO "public"."cardcodes" VALUES (132, '河北省', '邢台市', '任县', '130526'); +INSERT INTO "public"."cardcodes" VALUES (133, '河北省', '邢台市', '南和县', '130527'); +INSERT INTO "public"."cardcodes" VALUES (134, '河北省', '邢台市', '宁晋县', '130528'); +INSERT INTO "public"."cardcodes" VALUES (135, '河北省', '邢台市', '巨鹿县', '130529'); +INSERT INTO "public"."cardcodes" VALUES (136, '河北省', '邢台市', '新河县', '130530'); +INSERT INTO "public"."cardcodes" VALUES (137, '河北省', '邢台市', '广宗县', '130531'); +INSERT INTO "public"."cardcodes" VALUES (138, '河北省', '邢台市', '平乡县', '130532'); +INSERT INTO "public"."cardcodes" VALUES (139, '河北省', '邢台市', '威县', '130533'); +INSERT INTO "public"."cardcodes" VALUES (140, '河北省', '邢台市', '清河县', '130534'); +INSERT INTO "public"."cardcodes" VALUES (141, '河北省', '邢台市', '临西县', '130535'); +INSERT INTO "public"."cardcodes" VALUES (142, '河北省', '邢台市', '南宫市', '130581'); +INSERT INTO "public"."cardcodes" VALUES (143, '河北省', '邢台市', '沙河市', '130582'); +INSERT INTO "public"."cardcodes" VALUES (144, '河北省', '保定市', '市辖区', '130601'); +INSERT INTO "public"."cardcodes" VALUES (145, '河北省', '保定市', '新市区', '130602'); +INSERT INTO "public"."cardcodes" VALUES (146, '河北省', '保定市', '北市区', '130603'); +INSERT INTO "public"."cardcodes" VALUES (147, '河北省', '保定市', '南市区', '130604'); +INSERT INTO "public"."cardcodes" VALUES (148, '河北省', '保定市', '满城县', '130621'); +INSERT INTO "public"."cardcodes" VALUES (149, '河北省', '保定市', '清苑县', '130622'); +INSERT INTO "public"."cardcodes" VALUES (150, '河北省', '保定市', '涞水县', '130623'); +INSERT INTO "public"."cardcodes" VALUES (151, '河北省', '保定市', '阜平县', '130624'); +INSERT INTO "public"."cardcodes" VALUES (152, '河北省', '保定市', '徐水县', '130625'); +INSERT INTO "public"."cardcodes" VALUES (153, '河北省', '保定市', '定兴县', '130626'); +INSERT INTO "public"."cardcodes" VALUES (154, '河北省', '保定市', '唐县', '130627'); +INSERT INTO "public"."cardcodes" VALUES (155, '河北省', '保定市', '高阳县', '130628'); +INSERT INTO "public"."cardcodes" VALUES (156, '河北省', '保定市', '容城县', '130629'); +INSERT INTO "public"."cardcodes" VALUES (157, '河北省', '保定市', '涞源县', '130630'); +INSERT INTO "public"."cardcodes" VALUES (158, '河北省', '保定市', '望都县', '130631'); +INSERT INTO "public"."cardcodes" VALUES (159, '河北省', '保定市', '安新县', '130632'); +INSERT INTO "public"."cardcodes" VALUES (160, '河北省', '保定市', '易县', '130633'); +INSERT INTO "public"."cardcodes" VALUES (161, '河北省', '保定市', '曲阳县', '130634'); +INSERT INTO "public"."cardcodes" VALUES (162, '河北省', '保定市', '蠡县', '130635'); +INSERT INTO "public"."cardcodes" VALUES (163, '河北省', '保定市', '顺平县', '130636'); +INSERT INTO "public"."cardcodes" VALUES (164, '河北省', '保定市', '博野县', '130637'); +INSERT INTO "public"."cardcodes" VALUES (165, '河北省', '保定市', '雄县', '130638'); +INSERT INTO "public"."cardcodes" VALUES (166, '河北省', '保定市', '涿州市', '130681'); +INSERT INTO "public"."cardcodes" VALUES (167, '河北省', '保定市', '定州市', '130682'); +INSERT INTO "public"."cardcodes" VALUES (168, '河北省', '保定市', '安国市', '130683'); +INSERT INTO "public"."cardcodes" VALUES (169, '河北省', '保定市', '高碑店市', '130684'); +INSERT INTO "public"."cardcodes" VALUES (170, '河北省', '张家口市', '市辖区', '130701'); +INSERT INTO "public"."cardcodes" VALUES (171, '河北省', '张家口市', '桥东区', '130702'); +INSERT INTO "public"."cardcodes" VALUES (172, '河北省', '张家口市', '桥西区', '130703'); +INSERT INTO "public"."cardcodes" VALUES (173, '河北省', '张家口市', '宣化区', '130705'); +INSERT INTO "public"."cardcodes" VALUES (174, '河北省', '张家口市', '下花园区', '130706'); +INSERT INTO "public"."cardcodes" VALUES (175, '河北省', '张家口市', '宣化县', '130721'); +INSERT INTO "public"."cardcodes" VALUES (176, '河北省', '张家口市', '张北县', '130722'); +INSERT INTO "public"."cardcodes" VALUES (177, '河北省', '张家口市', '康保县', '130723'); +INSERT INTO "public"."cardcodes" VALUES (178, '河北省', '张家口市', '沽源县', '130724'); +INSERT INTO "public"."cardcodes" VALUES (179, '河北省', '张家口市', '尚义县', '130725'); +INSERT INTO "public"."cardcodes" VALUES (180, '河北省', '张家口市', '蔚县', '130726'); +INSERT INTO "public"."cardcodes" VALUES (181, '河北省', '张家口市', '阳原县', '130727'); +INSERT INTO "public"."cardcodes" VALUES (182, '河北省', '张家口市', '怀安县', '130728'); +INSERT INTO "public"."cardcodes" VALUES (183, '河北省', '张家口市', '万全县', '130729'); +INSERT INTO "public"."cardcodes" VALUES (184, '河北省', '张家口市', '怀来县', '130730'); +INSERT INTO "public"."cardcodes" VALUES (185, '河北省', '张家口市', '涿鹿县', '130731'); +INSERT INTO "public"."cardcodes" VALUES (186, '河北省', '张家口市', '赤城县', '130732'); +INSERT INTO "public"."cardcodes" VALUES (187, '河北省', '张家口市', '崇礼县', '130733'); +INSERT INTO "public"."cardcodes" VALUES (188, '河北省', '承德市', '市辖区', '130801'); +INSERT INTO "public"."cardcodes" VALUES (189, '河北省', '承德市', '双桥区', '130802'); +INSERT INTO "public"."cardcodes" VALUES (190, '河北省', '承德市', '双滦区', '130803'); +INSERT INTO "public"."cardcodes" VALUES (191, '河北省', '承德市', '鹰手营子矿区', '130804'); +INSERT INTO "public"."cardcodes" VALUES (192, '河北省', '承德市', '承德县', '130821'); +INSERT INTO "public"."cardcodes" VALUES (193, '河北省', '承德市', '兴隆县', '130822'); +INSERT INTO "public"."cardcodes" VALUES (194, '河北省', '承德市', '平泉县', '130823'); +INSERT INTO "public"."cardcodes" VALUES (195, '河北省', '承德市', '滦平县', '130824'); +INSERT INTO "public"."cardcodes" VALUES (196, '河北省', '承德市', '隆化县', '130825'); +INSERT INTO "public"."cardcodes" VALUES (197, '河北省', '承德市', '丰宁满族自治县', '130826'); +INSERT INTO "public"."cardcodes" VALUES (198, '河北省', '承德市', '宽城满族自治县', '130827'); +INSERT INTO "public"."cardcodes" VALUES (199, '河北省', '承德市', '围场满族蒙古族自治县', '130828'); +INSERT INTO "public"."cardcodes" VALUES (200, '河北省', '沧州市', '市辖区', '130901'); +INSERT INTO "public"."cardcodes" VALUES (201, '河北省', '沧州市', '新华区', '130902'); +INSERT INTO "public"."cardcodes" VALUES (202, '河北省', '沧州市', '运河区', '130903'); +INSERT INTO "public"."cardcodes" VALUES (203, '河北省', '沧州市', '郊区', '130904'); +INSERT INTO "public"."cardcodes" VALUES (204, '河北省', '沧州市', '沧县', '130921'); +INSERT INTO "public"."cardcodes" VALUES (205, '河北省', '沧州市', '青县', '130922'); +INSERT INTO "public"."cardcodes" VALUES (206, '河北省', '沧州市', '东光县', '130923'); +INSERT INTO "public"."cardcodes" VALUES (207, '河北省', '沧州市', '海兴县', '130924'); +INSERT INTO "public"."cardcodes" VALUES (208, '河北省', '沧州市', '盐山县', '130925'); +INSERT INTO "public"."cardcodes" VALUES (209, '河北省', '沧州市', '肃宁县', '130926'); +INSERT INTO "public"."cardcodes" VALUES (210, '河北省', '沧州市', '南皮县', '130927'); +INSERT INTO "public"."cardcodes" VALUES (211, '河北省', '沧州市', '吴桥县', '130928'); +INSERT INTO "public"."cardcodes" VALUES (212, '河北省', '沧州市', '献县', '130929'); +INSERT INTO "public"."cardcodes" VALUES (213, '河北省', '沧州市', '孟村回族自治县', '130930'); +INSERT INTO "public"."cardcodes" VALUES (214, '河北省', '沧州市', '泊头市', '130981'); +INSERT INTO "public"."cardcodes" VALUES (215, '河北省', '沧州市', '任丘市', '130982'); +INSERT INTO "public"."cardcodes" VALUES (216, '河北省', '沧州市', '黄骅市', '130983'); +INSERT INTO "public"."cardcodes" VALUES (217, '河北省', '沧州市', '河间市', '130984'); +INSERT INTO "public"."cardcodes" VALUES (218, '河北省', '廊坊市', '市辖区', '131001'); +INSERT INTO "public"."cardcodes" VALUES (219, '河北省', '廊坊市', '安次区', '131002'); +INSERT INTO "public"."cardcodes" VALUES (220, '河北省', '廊坊市', '广阳区', '131003'); +INSERT INTO "public"."cardcodes" VALUES (221, '河北省', '廊坊市', '三河县', '131021'); +INSERT INTO "public"."cardcodes" VALUES (222, '河北省', '廊坊市', '固安县', '131022'); +INSERT INTO "public"."cardcodes" VALUES (223, '河北省', '廊坊市', '永清县', '131023'); +INSERT INTO "public"."cardcodes" VALUES (224, '河北省', '廊坊市', '香河县', '131024'); +INSERT INTO "public"."cardcodes" VALUES (225, '河北省', '廊坊市', '大城县', '131025'); +INSERT INTO "public"."cardcodes" VALUES (226, '河北省', '廊坊市', '文安县', '131026'); +INSERT INTO "public"."cardcodes" VALUES (227, '河北省', '廊坊市', '霸县', '131027'); +INSERT INTO "public"."cardcodes" VALUES (228, '河北省', '廊坊市', '大厂回族自治县', '131028'); +INSERT INTO "public"."cardcodes" VALUES (229, '河北省', '廊坊市', '霸州市', '131081'); +INSERT INTO "public"."cardcodes" VALUES (230, '河北省', '廊坊市', '三河市', '131082'); +INSERT INTO "public"."cardcodes" VALUES (231, '河北省', '衡水市', '市辖区', '131101'); +INSERT INTO "public"."cardcodes" VALUES (232, '河北省', '衡水市', '桃城区', '131102'); +INSERT INTO "public"."cardcodes" VALUES (233, '河北省', '衡水市', '枣强县', '131121'); +INSERT INTO "public"."cardcodes" VALUES (234, '河北省', '衡水市', '武邑县', '131122'); +INSERT INTO "public"."cardcodes" VALUES (235, '河北省', '衡水市', '武强县', '131123'); +INSERT INTO "public"."cardcodes" VALUES (236, '河北省', '衡水市', '饶阳县', '131124'); +INSERT INTO "public"."cardcodes" VALUES (237, '河北省', '衡水市', '安平县', '131125'); +INSERT INTO "public"."cardcodes" VALUES (238, '河北省', '衡水市', '故城县', '131126'); +INSERT INTO "public"."cardcodes" VALUES (239, '河北省', '衡水市', '景县', '131127'); +INSERT INTO "public"."cardcodes" VALUES (240, '河北省', '衡水市', '阜城县', '131128'); +INSERT INTO "public"."cardcodes" VALUES (241, '河北省', '衡水市', '冀州市', '131181'); +INSERT INTO "public"."cardcodes" VALUES (242, '河北省', '衡水市', '深州市', '131182'); +INSERT INTO "public"."cardcodes" VALUES (243, '河北省', '邯郸地区', '邯郸市', '132101'); +INSERT INTO "public"."cardcodes" VALUES (244, '河北省', '邯郸地区', '大名县', '132121'); +INSERT INTO "public"."cardcodes" VALUES (245, '河北省', '邯郸地区', '魏县', '132122'); +INSERT INTO "public"."cardcodes" VALUES (246, '河北省', '邯郸地区', '曲周县', '132123'); +INSERT INTO "public"."cardcodes" VALUES (247, '河北省', '邯郸地区', '丘县', '132124'); +INSERT INTO "public"."cardcodes" VALUES (248, '河北省', '邯郸地区', '鸡泽县', '132125'); +INSERT INTO "public"."cardcodes" VALUES (249, '河北省', '邯郸地区', '肥乡县', '132126'); +INSERT INTO "public"."cardcodes" VALUES (250, '河北省', '邯郸地区', '广平县', '132127'); +INSERT INTO "public"."cardcodes" VALUES (251, '河北省', '邯郸地区', '成安县', '132128'); +INSERT INTO "public"."cardcodes" VALUES (252, '河北省', '邯郸地区', '临漳县', '132129'); +INSERT INTO "public"."cardcodes" VALUES (253, '河北省', '邯郸地区', '磁县', '132130'); +INSERT INTO "public"."cardcodes" VALUES (254, '河北省', '邯郸地区', '武安县', '132131'); +INSERT INTO "public"."cardcodes" VALUES (255, '河北省', '邯郸地区', '涉县', '132132'); +INSERT INTO "public"."cardcodes" VALUES (256, '河北省', '邯郸地区', '永年县', '132133'); +INSERT INTO "public"."cardcodes" VALUES (257, '河北省', '邯郸地区', '邯郸县', '132134'); +INSERT INTO "public"."cardcodes" VALUES (258, '河北省', '邯郸地区', '馆陶县', '132135'); +INSERT INTO "public"."cardcodes" VALUES (259, '河北省', '邢台地区', '南宫市', '132201'); +INSERT INTO "public"."cardcodes" VALUES (260, '河北省', '邢台地区', '沙河市', '132202'); +INSERT INTO "public"."cardcodes" VALUES (261, '河北省', '邢台地区', '邢台县', '132221'); +INSERT INTO "public"."cardcodes" VALUES (262, '河北省', '邢台地区', '沙河县', '132222'); +INSERT INTO "public"."cardcodes" VALUES (263, '河北省', '邢台地区', '临城县', '132223'); +INSERT INTO "public"."cardcodes" VALUES (264, '河北省', '邢台地区', '内丘县', '132224'); +INSERT INTO "public"."cardcodes" VALUES (265, '河北省', '邢台地区', '柏乡县', '132225'); +INSERT INTO "public"."cardcodes" VALUES (266, '河北省', '邢台地区', '隆尧县', '132226'); +INSERT INTO "public"."cardcodes" VALUES (267, '河北省', '邢台地区', '任县', '132227'); +INSERT INTO "public"."cardcodes" VALUES (268, '河北省', '邢台地区', '南和县', '132228'); +INSERT INTO "public"."cardcodes" VALUES (269, '河北省', '邢台地区', '宁晋县', '132229'); +INSERT INTO "public"."cardcodes" VALUES (270, '河北省', '邢台地区', '南宫县', '132230'); +INSERT INTO "public"."cardcodes" VALUES (271, '河北省', '邢台地区', '巨鹿县', '132231'); +INSERT INTO "public"."cardcodes" VALUES (272, '河北省', '邢台地区', '新河县', '132232'); +INSERT INTO "public"."cardcodes" VALUES (273, '河北省', '邢台地区', '广宗县', '132233'); +INSERT INTO "public"."cardcodes" VALUES (274, '河北省', '邢台地区', '平乡县', '132234'); +INSERT INTO "public"."cardcodes" VALUES (275, '河北省', '邢台地区', '威县', '132235'); +INSERT INTO "public"."cardcodes" VALUES (276, '河北省', '邢台地区', '清河县', '132236'); +INSERT INTO "public"."cardcodes" VALUES (277, '河北省', '邢台地区', '临西县', '132237'); +INSERT INTO "public"."cardcodes" VALUES (278, '河北省', '石家庄市', '辛集市', '132301'); +INSERT INTO "public"."cardcodes" VALUES (279, '河北省', '石家庄市', '藁城市', '132302'); +INSERT INTO "public"."cardcodes" VALUES (280, '河北省', '石家庄市', '束鹿县', '132321'); +INSERT INTO "public"."cardcodes" VALUES (281, '河北省', '石家庄市', '晋县', '132322'); +INSERT INTO "public"."cardcodes" VALUES (282, '河北省', '石家庄市', '深泽县', '132323'); +INSERT INTO "public"."cardcodes" VALUES (283, '河北省', '石家庄市', '无极县', '132324'); +INSERT INTO "public"."cardcodes" VALUES (284, '河北省', '石家庄市', '藁城县', '132325'); +INSERT INTO "public"."cardcodes" VALUES (285, '河北省', '石家庄市', '赵县', '132326'); +INSERT INTO "public"."cardcodes" VALUES (286, '河北省', '石家庄市', '栾城县', '132327'); +INSERT INTO "public"."cardcodes" VALUES (287, '河北省', '石家庄市', '正定县', '132328'); +INSERT INTO "public"."cardcodes" VALUES (288, '河北省', '石家庄市', '新乐县', '132329'); +INSERT INTO "public"."cardcodes" VALUES (289, '河北省', '石家庄市', '高邑县', '132330'); +INSERT INTO "public"."cardcodes" VALUES (290, '河北省', '石家庄市', '元氏县', '132331'); +INSERT INTO "public"."cardcodes" VALUES (291, '河北省', '石家庄市', '赞皇县', '132332'); +INSERT INTO "public"."cardcodes" VALUES (292, '河北省', '石家庄市', '井陉县', '132333'); +INSERT INTO "public"."cardcodes" VALUES (293, '河北省', '石家庄市', '获鹿县', '132334'); +INSERT INTO "public"."cardcodes" VALUES (294, '河北省', '石家庄市', '平山县', '132335'); +INSERT INTO "public"."cardcodes" VALUES (295, '河北省', '石家庄市', '灵寿县', '132336'); +INSERT INTO "public"."cardcodes" VALUES (296, '河北省', '石家庄市', '行唐县', '132337'); +INSERT INTO "public"."cardcodes" VALUES (297, '河北省', '保定地区', '定州市', '132401'); +INSERT INTO "public"."cardcodes" VALUES (298, '河北省', '保定地区', '涿州市', '132402'); +INSERT INTO "public"."cardcodes" VALUES (299, '河北省', '保定地区', '安国市', '132403'); +INSERT INTO "public"."cardcodes" VALUES (300, '河北省', '保定地区', '高碑店市', '132404'); +INSERT INTO "public"."cardcodes" VALUES (301, '河北省', '保定地区', '易县', '132421'); +INSERT INTO "public"."cardcodes" VALUES (302, '河北省', '保定地区', '满城县', '132422'); +INSERT INTO "public"."cardcodes" VALUES (303, '河北省', '保定地区', '徐水县', '132423'); +INSERT INTO "public"."cardcodes" VALUES (304, '河北省', '保定地区', '涞源县', '132424'); +INSERT INTO "public"."cardcodes" VALUES (305, '河北省', '保定地区', '定兴县', '132425'); +INSERT INTO "public"."cardcodes" VALUES (306, '河北省', '保定地区', '完县', '132426'); +INSERT INTO "public"."cardcodes" VALUES (307, '河北省', '保定地区', '唐县', '132427'); +INSERT INTO "public"."cardcodes" VALUES (308, '河北省', '保定地区', '望都县', '132428'); +INSERT INTO "public"."cardcodes" VALUES (309, '河北省', '保定地区', '涞水县', '132429'); +INSERT INTO "public"."cardcodes" VALUES (310, '河北省', '保定地区', '涿县', '132430'); +INSERT INTO "public"."cardcodes" VALUES (311, '河北省', '保定地区', '清苑县', '132431'); +INSERT INTO "public"."cardcodes" VALUES (312, '河北省', '保定地区', '高阳县', '132432'); +INSERT INTO "public"."cardcodes" VALUES (313, '河北省', '保定地区', '安新县', '132433'); +INSERT INTO "public"."cardcodes" VALUES (314, '河北省', '保定地区', '雄县', '132434'); +INSERT INTO "public"."cardcodes" VALUES (315, '河北省', '保定地区', '容城县', '132435'); +INSERT INTO "public"."cardcodes" VALUES (316, '河北省', '保定地区', '新城县', '132436'); +INSERT INTO "public"."cardcodes" VALUES (317, '河北省', '保定地区', '曲阳县', '132437'); +INSERT INTO "public"."cardcodes" VALUES (318, '河北省', '保定地区', '阜平县', '132438'); +INSERT INTO "public"."cardcodes" VALUES (319, '河北省', '保定地区', '定县', '132439'); +INSERT INTO "public"."cardcodes" VALUES (320, '河北省', '保定地区', '安国县', '132440'); +INSERT INTO "public"."cardcodes" VALUES (321, '河北省', '保定地区', '博野县', '132441'); +INSERT INTO "public"."cardcodes" VALUES (322, '河北省', '保定地区', '蠡县', '132442'); +INSERT INTO "public"."cardcodes" VALUES (323, '河北省', '张家口地区', '张家口市', '132501'); +INSERT INTO "public"."cardcodes" VALUES (324, '河北省', '张家口地区', '张北市', '132521'); +INSERT INTO "public"."cardcodes" VALUES (1332, '上海市', NULL, '宝山县', '310223'); +INSERT INTO "public"."cardcodes" VALUES (325, '河北省', '张家口地区', '康保县', '132522'); +INSERT INTO "public"."cardcodes" VALUES (326, '河北省', '张家口地区', '沽源县', '132523'); +INSERT INTO "public"."cardcodes" VALUES (327, '河北省', '张家口地区', '尚义县', '132524'); +INSERT INTO "public"."cardcodes" VALUES (328, '河北省', '张家口地区', '蔚县', '132525'); +INSERT INTO "public"."cardcodes" VALUES (329, '河北省', '张家口地区', '阳原县', '132526'); +INSERT INTO "public"."cardcodes" VALUES (330, '河北省', '张家口地区', '怀安县', '132527'); +INSERT INTO "public"."cardcodes" VALUES (331, '河北省', '张家口地区', '万全县', '132528'); +INSERT INTO "public"."cardcodes" VALUES (332, '河北省', '张家口地区', '怀来县', '132529'); +INSERT INTO "public"."cardcodes" VALUES (333, '河北省', '张家口地区', '涿鹿县', '132530'); +INSERT INTO "public"."cardcodes" VALUES (334, '河北省', '张家口地区', '宣化县', '132531'); +INSERT INTO "public"."cardcodes" VALUES (335, '河北省', '张家口地区', '赤城县', '132532'); +INSERT INTO "public"."cardcodes" VALUES (336, '河北省', '张家口地区', '崇礼县', '132533'); +INSERT INTO "public"."cardcodes" VALUES (337, '河北省', '承德地区', '承德市', '132601'); +INSERT INTO "public"."cardcodes" VALUES (338, '河北省', '承德地区', '青龙县', '132621'); +INSERT INTO "public"."cardcodes" VALUES (339, '河北省', '承德地区', '宽城满族自治县', '132622'); +INSERT INTO "public"."cardcodes" VALUES (340, '河北省', '承德地区', '兴隆县', '132623'); +INSERT INTO "public"."cardcodes" VALUES (341, '河北省', '承德地区', '平泉县', '132624'); +INSERT INTO "public"."cardcodes" VALUES (342, '河北省', '承德地区', '承德县', '132625'); +INSERT INTO "public"."cardcodes" VALUES (343, '河北省', '承德地区', '滦平县', '132626'); +INSERT INTO "public"."cardcodes" VALUES (344, '河北省', '承德地区', '丰宁满族自治县', '132627'); +INSERT INTO "public"."cardcodes" VALUES (345, '河北省', '承德地区', '隆化县', '132628'); +INSERT INTO "public"."cardcodes" VALUES (346, '河北省', '承德地区', '围场满族蒙古族自治县', '132629'); +INSERT INTO "public"."cardcodes" VALUES (347, '河北省', '廊坊地区', '廊坊市', '132801'); +INSERT INTO "public"."cardcodes" VALUES (348, '河北省', '廊坊地区', '三河县', '132821'); +INSERT INTO "public"."cardcodes" VALUES (349, '河北省', '廊坊地区', '大厂回族自治县', '132822'); +INSERT INTO "public"."cardcodes" VALUES (350, '河北省', '廊坊地区', '香河县', '132823'); +INSERT INTO "public"."cardcodes" VALUES (351, '河北省', '廊坊地区', '永清县', '132825'); +INSERT INTO "public"."cardcodes" VALUES (352, '河北省', '廊坊地区', '固安县', '132826'); +INSERT INTO "public"."cardcodes" VALUES (353, '河北省', '廊坊地区', '霸县', '132827'); +INSERT INTO "public"."cardcodes" VALUES (354, '河北省', '廊坊地区', '文安县', '132828'); +INSERT INTO "public"."cardcodes" VALUES (355, '河北省', '廊坊地区', '大城县', '132829'); +INSERT INTO "public"."cardcodes" VALUES (356, '河北省', '沧州地区', '沧州市', '132901'); +INSERT INTO "public"."cardcodes" VALUES (357, '河北省', '沧州地区', '泊头市', '132902'); +INSERT INTO "public"."cardcodes" VALUES (358, '河北省', '沧州地区', '任丘市', '132903'); +INSERT INTO "public"."cardcodes" VALUES (359, '河北省', '沧州地区', '黄骅市', '132904'); +INSERT INTO "public"."cardcodes" VALUES (360, '河北省', '沧州地区', '河间市', '132905'); +INSERT INTO "public"."cardcodes" VALUES (361, '河北省', '沧州地区', '沧县', '132921'); +INSERT INTO "public"."cardcodes" VALUES (362, '河北省', '沧州地区', '河间县', '132922'); +INSERT INTO "public"."cardcodes" VALUES (363, '河北省', '沧州地区', '肃宁县', '132923'); +INSERT INTO "public"."cardcodes" VALUES (364, '河北省', '沧州地区', '献县', '132924'); +INSERT INTO "public"."cardcodes" VALUES (365, '河北省', '沧州地区', '交河县', '132925'); +INSERT INTO "public"."cardcodes" VALUES (366, '河北省', '沧州地区', '吴桥县', '132926'); +INSERT INTO "public"."cardcodes" VALUES (367, '河北省', '沧州地区', '东光县', '132927'); +INSERT INTO "public"."cardcodes" VALUES (368, '河北省', '沧州地区', '南皮县', '132928'); +INSERT INTO "public"."cardcodes" VALUES (369, '河北省', '沧州地区', '盐山县', '132929'); +INSERT INTO "public"."cardcodes" VALUES (370, '河北省', '沧州地区', '黄骅县', '132930'); +INSERT INTO "public"."cardcodes" VALUES (371, '河北省', '沧州地区', '孟村回族自治县', '132931'); +INSERT INTO "public"."cardcodes" VALUES (372, '河北省', '沧州地区', '青县', '132932'); +INSERT INTO "public"."cardcodes" VALUES (373, '河北省', '沧州地区', '任丘县', '132933'); +INSERT INTO "public"."cardcodes" VALUES (374, '河北省', '沧州地区', '海兴县', '132934'); +INSERT INTO "public"."cardcodes" VALUES (375, '河北省', '衡水地区', '衡水市', '133001'); +INSERT INTO "public"."cardcodes" VALUES (376, '河北省', '衡水地区', '冀州市', '133002'); +INSERT INTO "public"."cardcodes" VALUES (377, '河北省', '衡水地区', '衡水县', '133021'); +INSERT INTO "public"."cardcodes" VALUES (378, '河北省', '衡水地区', '冀县', '133022'); +INSERT INTO "public"."cardcodes" VALUES (379, '河北省', '衡水地区', '枣强县', '133023'); +INSERT INTO "public"."cardcodes" VALUES (380, '河北省', '衡水地区', '武邑县', '133024'); +INSERT INTO "public"."cardcodes" VALUES (381, '河北省', '衡水地区', '深县', '133025'); +INSERT INTO "public"."cardcodes" VALUES (382, '河北省', '衡水地区', '武强县', '133026'); +INSERT INTO "public"."cardcodes" VALUES (383, '河北省', '衡水地区', '饶阳县', '133027'); +INSERT INTO "public"."cardcodes" VALUES (384, '河北省', '衡水地区', '安平县', '133028'); +INSERT INTO "public"."cardcodes" VALUES (385, '河北省', '衡水地区', '故城县', '133029'); +INSERT INTO "public"."cardcodes" VALUES (386, '河北省', '衡水地区', '景县', '133030'); +INSERT INTO "public"."cardcodes" VALUES (387, '河北省', '衡水地区', '阜城县', '133031'); +INSERT INTO "public"."cardcodes" VALUES (388, '河北省', NULL, '武安市', '139001'); +INSERT INTO "public"."cardcodes" VALUES (389, '山西省', '太原市', '市辖区', '140101'); +INSERT INTO "public"."cardcodes" VALUES (390, '山西省', '太原市', '南城区', '140102'); +INSERT INTO "public"."cardcodes" VALUES (391, '山西省', '太原市', '北城区', '140103'); +INSERT INTO "public"."cardcodes" VALUES (392, '山西省', '太原市', '河西区', '140104'); +INSERT INTO "public"."cardcodes" VALUES (393, '山西省', '太原市', '小店区', '140105'); +INSERT INTO "public"."cardcodes" VALUES (394, '山西省', '太原市', '迎泽区', '140106'); +INSERT INTO "public"."cardcodes" VALUES (395, '山西省', '太原市', '杏花岭区', '140107'); +INSERT INTO "public"."cardcodes" VALUES (396, '山西省', '太原市', '尖草坪区', '140108'); +INSERT INTO "public"."cardcodes" VALUES (397, '山西省', '太原市', '万柏林区', '140109'); +INSERT INTO "public"."cardcodes" VALUES (398, '山西省', '太原市', '晋源区', '140110'); +INSERT INTO "public"."cardcodes" VALUES (399, '山西省', '太原市', '古交工矿区', '140111'); +INSERT INTO "public"."cardcodes" VALUES (400, '山西省', '太原市', '南郊区', '140112'); +INSERT INTO "public"."cardcodes" VALUES (401, '山西省', '太原市', '北郊区', '140113'); +INSERT INTO "public"."cardcodes" VALUES (402, '山西省', '太原市', '清徐县', '140121'); +INSERT INTO "public"."cardcodes" VALUES (403, '山西省', '太原市', '阳曲县', '140122'); +INSERT INTO "public"."cardcodes" VALUES (404, '山西省', '太原市', '娄烦县', '140123'); +INSERT INTO "public"."cardcodes" VALUES (405, '山西省', '太原市', '古交市', '140181'); +INSERT INTO "public"."cardcodes" VALUES (406, '山西省', '大同市', '市辖区', '140201'); +INSERT INTO "public"."cardcodes" VALUES (407, '山西省', '大同市', '城区', '140202'); +INSERT INTO "public"."cardcodes" VALUES (408, '山西省', '大同市', '矿区', '140203'); +INSERT INTO "public"."cardcodes" VALUES (409, '山西省', '大同市', '南郊区', '140211'); +INSERT INTO "public"."cardcodes" VALUES (410, '山西省', '大同市', '新荣区', '140212'); +INSERT INTO "public"."cardcodes" VALUES (411, '山西省', '大同市', '阳高县', '140221'); +INSERT INTO "public"."cardcodes" VALUES (412, '山西省', '大同市', '天镇县', '140222'); +INSERT INTO "public"."cardcodes" VALUES (413, '山西省', '大同市', '广灵县', '140223'); +INSERT INTO "public"."cardcodes" VALUES (414, '山西省', '大同市', '灵丘县', '140224'); +INSERT INTO "public"."cardcodes" VALUES (415, '山西省', '大同市', '浑源县', '140225'); +INSERT INTO "public"."cardcodes" VALUES (416, '山西省', '大同市', '左云县', '140226'); +INSERT INTO "public"."cardcodes" VALUES (417, '山西省', '大同市', '大同县', '140227'); +INSERT INTO "public"."cardcodes" VALUES (418, '山西省', '大同市', '左云县', '140230'); +INSERT INTO "public"."cardcodes" VALUES (419, '山西省', '大同市', '大同县', '140232'); +INSERT INTO "public"."cardcodes" VALUES (420, '山西省', '阳泉市', '市辖区', '140301'); +INSERT INTO "public"."cardcodes" VALUES (421, '山西省', '阳泉市', '城区', '140302'); +INSERT INTO "public"."cardcodes" VALUES (422, '山西省', '阳泉市', '矿区', '140303'); +INSERT INTO "public"."cardcodes" VALUES (423, '山西省', '阳泉市', '郊区', '140311'); +INSERT INTO "public"."cardcodes" VALUES (424, '山西省', '阳泉市', '平定县', '140321'); +INSERT INTO "public"."cardcodes" VALUES (425, '山西省', '阳泉市', '盂县', '140322'); +INSERT INTO "public"."cardcodes" VALUES (426, '山西省', '长治市', '市辖区', '140401'); +INSERT INTO "public"."cardcodes" VALUES (427, '山西省', '长治市', '城区', '140402'); +INSERT INTO "public"."cardcodes" VALUES (428, '山西省', '长治市', '郊区', '140411'); +INSERT INTO "public"."cardcodes" VALUES (429, '山西省', '长治市', '长治县', '140421'); +INSERT INTO "public"."cardcodes" VALUES (430, '山西省', '长治市', '襄垣县', '140423'); +INSERT INTO "public"."cardcodes" VALUES (431, '山西省', '长治市', '屯留县', '140424'); +INSERT INTO "public"."cardcodes" VALUES (432, '山西省', '长治市', '平顺县', '140425'); +INSERT INTO "public"."cardcodes" VALUES (433, '山西省', '长治市', '黎城县', '140426'); +INSERT INTO "public"."cardcodes" VALUES (434, '山西省', '长治市', '壶关县', '140427'); +INSERT INTO "public"."cardcodes" VALUES (435, '山西省', '长治市', '长子县', '140428'); +INSERT INTO "public"."cardcodes" VALUES (436, '山西省', '长治市', '武乡县', '140429'); +INSERT INTO "public"."cardcodes" VALUES (437, '山西省', '长治市', '沁县', '140430'); +INSERT INTO "public"."cardcodes" VALUES (438, '山西省', '长治市', '沁源县', '140431'); +INSERT INTO "public"."cardcodes" VALUES (439, '山西省', '长治市', '潞城市', '140481'); +INSERT INTO "public"."cardcodes" VALUES (440, '山西省', '晋城市', '市辖区', '140501'); +INSERT INTO "public"."cardcodes" VALUES (441, '山西省', '晋城市', '城区', '140502'); +INSERT INTO "public"."cardcodes" VALUES (442, '山西省', '晋城市', '郊区', '140511'); +INSERT INTO "public"."cardcodes" VALUES (443, '山西省', '晋城市', '沁水县', '140521'); +INSERT INTO "public"."cardcodes" VALUES (444, '山西省', '晋城市', '阳城县', '140522'); +INSERT INTO "public"."cardcodes" VALUES (445, '山西省', '晋城市', '高平县', '140523'); +INSERT INTO "public"."cardcodes" VALUES (446, '山西省', '晋城市', '陵川县', '140524'); +INSERT INTO "public"."cardcodes" VALUES (447, '山西省', '晋城市', '泽州县', '140525'); +INSERT INTO "public"."cardcodes" VALUES (448, '山西省', '晋城市', '高平市', '140581'); +INSERT INTO "public"."cardcodes" VALUES (449, '山西省', '朔州市', '市辖区', '140601'); +INSERT INTO "public"."cardcodes" VALUES (450, '山西省', '朔州市', '朔城区', '140602'); +INSERT INTO "public"."cardcodes" VALUES (451, '山西省', '朔州市', '平鲁区', '140603'); +INSERT INTO "public"."cardcodes" VALUES (452, '山西省', '朔州市', '山阴县', '140621'); +INSERT INTO "public"."cardcodes" VALUES (453, '山西省', '朔州市', '应县', '140622'); +INSERT INTO "public"."cardcodes" VALUES (454, '山西省', '朔州市', '右玉县', '140623'); +INSERT INTO "public"."cardcodes" VALUES (455, '山西省', '朔州市', '怀仁县', '140624'); +INSERT INTO "public"."cardcodes" VALUES (456, '山西省', '晋中市', '市辖区', '140701'); +INSERT INTO "public"."cardcodes" VALUES (457, '山西省', '晋中市', '榆次区', '140702'); +INSERT INTO "public"."cardcodes" VALUES (458, '山西省', '晋中市', '榆社县', '140721'); +INSERT INTO "public"."cardcodes" VALUES (459, '山西省', '晋中市', '左权县', '140722'); +INSERT INTO "public"."cardcodes" VALUES (460, '山西省', '晋中市', '和顺县', '140723'); +INSERT INTO "public"."cardcodes" VALUES (461, '山西省', '晋中市', '昔阳县', '140724'); +INSERT INTO "public"."cardcodes" VALUES (462, '山西省', '晋中市', '寿阳县', '140725'); +INSERT INTO "public"."cardcodes" VALUES (463, '山西省', '晋中市', '太谷县', '140726'); +INSERT INTO "public"."cardcodes" VALUES (464, '山西省', '晋中市', '祁县', '140727'); +INSERT INTO "public"."cardcodes" VALUES (465, '山西省', '晋中市', '平遥县', '140728'); +INSERT INTO "public"."cardcodes" VALUES (466, '山西省', '晋中市', '灵石县', '140729'); +INSERT INTO "public"."cardcodes" VALUES (467, '山西省', '晋中市', '介休市', '140781'); +INSERT INTO "public"."cardcodes" VALUES (468, '山西省', '运城市', '市辖区', '140801'); +INSERT INTO "public"."cardcodes" VALUES (469, '山西省', '运城市', '盐湖区', '140802'); +INSERT INTO "public"."cardcodes" VALUES (470, '山西省', '运城市', '临猗县', '140821'); +INSERT INTO "public"."cardcodes" VALUES (471, '山西省', '运城市', '万荣县', '140822'); +INSERT INTO "public"."cardcodes" VALUES (472, '山西省', '运城市', '闻喜县', '140823'); +INSERT INTO "public"."cardcodes" VALUES (473, '山西省', '运城市', '稷山县', '140824'); +INSERT INTO "public"."cardcodes" VALUES (474, '山西省', '运城市', '新绛县', '140825'); +INSERT INTO "public"."cardcodes" VALUES (475, '山西省', '运城市', '绛县', '140826'); +INSERT INTO "public"."cardcodes" VALUES (476, '山西省', '运城市', '垣曲县', '140827'); +INSERT INTO "public"."cardcodes" VALUES (477, '山西省', '运城市', '夏县', '140828'); +INSERT INTO "public"."cardcodes" VALUES (478, '山西省', '运城市', '平陆县', '140829'); +INSERT INTO "public"."cardcodes" VALUES (479, '山西省', '运城市', '芮城县', '140830'); +INSERT INTO "public"."cardcodes" VALUES (480, '山西省', '运城市', '永济市', '140881'); +INSERT INTO "public"."cardcodes" VALUES (481, '山西省', '运城市', '河津市', '140882'); +INSERT INTO "public"."cardcodes" VALUES (482, '山西省', '忻州市', '市辖区', '140901'); +INSERT INTO "public"."cardcodes" VALUES (483, '山西省', '忻州市', '忻府区', '140902'); +INSERT INTO "public"."cardcodes" VALUES (484, '山西省', '忻州市', '定襄县', '140921'); +INSERT INTO "public"."cardcodes" VALUES (485, '山西省', '忻州市', '五台县', '140922'); +INSERT INTO "public"."cardcodes" VALUES (486, '山西省', '忻州市', '代县', '140923'); +INSERT INTO "public"."cardcodes" VALUES (487, '山西省', '忻州市', '繁峙县', '140924'); +INSERT INTO "public"."cardcodes" VALUES (488, '山西省', '忻州市', '宁武县', '140925'); +INSERT INTO "public"."cardcodes" VALUES (489, '山西省', '忻州市', '静乐县', '140926'); +INSERT INTO "public"."cardcodes" VALUES (490, '山西省', '忻州市', '神池县', '140927'); +INSERT INTO "public"."cardcodes" VALUES (491, '山西省', '忻州市', '五寨县', '140928'); +INSERT INTO "public"."cardcodes" VALUES (492, '山西省', '忻州市', '岢岚县', '140929'); +INSERT INTO "public"."cardcodes" VALUES (493, '山西省', '忻州市', '河曲县', '140930'); +INSERT INTO "public"."cardcodes" VALUES (494, '山西省', '忻州市', '保德县', '140931'); +INSERT INTO "public"."cardcodes" VALUES (495, '山西省', '忻州市', '偏关县', '140932'); +INSERT INTO "public"."cardcodes" VALUES (496, '山西省', '忻州市', '原平市', '140981'); +INSERT INTO "public"."cardcodes" VALUES (497, '山西省', '临汾市', '市辖区', '141001'); +INSERT INTO "public"."cardcodes" VALUES (498, '山西省', '临汾市', '尧都区', '141002'); +INSERT INTO "public"."cardcodes" VALUES (499, '山西省', '临汾市', '曲沃县', '141021'); +INSERT INTO "public"."cardcodes" VALUES (500, '山西省', '临汾市', '翼城县', '141022'); +INSERT INTO "public"."cardcodes" VALUES (501, '山西省', '临汾市', '襄汾县', '141023'); +INSERT INTO "public"."cardcodes" VALUES (502, '山西省', '临汾市', '洪洞县', '141024'); +INSERT INTO "public"."cardcodes" VALUES (503, '山西省', '临汾市', '古县', '141025'); +INSERT INTO "public"."cardcodes" VALUES (504, '山西省', '临汾市', '安泽县', '141026'); +INSERT INTO "public"."cardcodes" VALUES (505, '山西省', '临汾市', '浮山县', '141027'); +INSERT INTO "public"."cardcodes" VALUES (506, '山西省', '临汾市', '吉县', '141028'); +INSERT INTO "public"."cardcodes" VALUES (507, '山西省', '临汾市', '乡宁县', '141029'); +INSERT INTO "public"."cardcodes" VALUES (508, '山西省', '临汾市', '大宁县', '141030'); +INSERT INTO "public"."cardcodes" VALUES (509, '山西省', '临汾市', '隰县', '141031'); +INSERT INTO "public"."cardcodes" VALUES (510, '山西省', '临汾市', '永和县', '141032'); +INSERT INTO "public"."cardcodes" VALUES (511, '山西省', '临汾市', '蒲县', '141033'); +INSERT INTO "public"."cardcodes" VALUES (512, '山西省', '临汾市', '汾西县', '141034'); +INSERT INTO "public"."cardcodes" VALUES (513, '山西省', '临汾市', '侯马市', '141081'); +INSERT INTO "public"."cardcodes" VALUES (514, '山西省', '临汾市', '霍州市', '141082'); +INSERT INTO "public"."cardcodes" VALUES (515, '山西省', '吕梁市', '市辖区', '141101'); +INSERT INTO "public"."cardcodes" VALUES (516, '山西省', '吕梁市', '离石区', '141102'); +INSERT INTO "public"."cardcodes" VALUES (517, '山西省', '吕梁市', '文水县', '141121'); +INSERT INTO "public"."cardcodes" VALUES (518, '山西省', '吕梁市', '交城县', '141122'); +INSERT INTO "public"."cardcodes" VALUES (519, '山西省', '吕梁市', '兴县', '141123'); +INSERT INTO "public"."cardcodes" VALUES (520, '山西省', '吕梁市', '临县', '141124'); +INSERT INTO "public"."cardcodes" VALUES (521, '山西省', '吕梁市', '柳林县', '141125'); +INSERT INTO "public"."cardcodes" VALUES (522, '山西省', '吕梁市', '石楼县', '141126'); +INSERT INTO "public"."cardcodes" VALUES (523, '山西省', '吕梁市', '岚县', '141127'); +INSERT INTO "public"."cardcodes" VALUES (524, '山西省', '吕梁市', '方山县', '141128'); +INSERT INTO "public"."cardcodes" VALUES (525, '山西省', '吕梁市', '中阳县', '141129'); +INSERT INTO "public"."cardcodes" VALUES (526, '山西省', '吕梁市', '交口县', '141130'); +INSERT INTO "public"."cardcodes" VALUES (527, '山西省', '吕梁市', '孝义市', '141181'); +INSERT INTO "public"."cardcodes" VALUES (528, '山西省', '吕梁市', '汾阳市', '141182'); +INSERT INTO "public"."cardcodes" VALUES (529, '山西省', '雁北地区', '阳高县', '142121'); +INSERT INTO "public"."cardcodes" VALUES (530, '山西省', '雁北地区', '天镇县', '142122'); +INSERT INTO "public"."cardcodes" VALUES (531, '山西省', '雁北地区', '广灵县', '142123'); +INSERT INTO "public"."cardcodes" VALUES (532, '山西省', '雁北地区', '灵丘县', '142124'); +INSERT INTO "public"."cardcodes" VALUES (533, '山西省', '雁北地区', '浑源县', '142125'); +INSERT INTO "public"."cardcodes" VALUES (534, '山西省', '雁北地区', '应县', '142126'); +INSERT INTO "public"."cardcodes" VALUES (535, '山西省', '雁北地区', '山阴县', '142127'); +INSERT INTO "public"."cardcodes" VALUES (536, '山西省', '雁北地区', '朔县', '142128'); +INSERT INTO "public"."cardcodes" VALUES (537, '山西省', '雁北地区', '平鲁县', '142129'); +INSERT INTO "public"."cardcodes" VALUES (538, '山西省', '雁北地区', '左云县', '142130'); +INSERT INTO "public"."cardcodes" VALUES (539, '山西省', '雁北地区', '右玉县', '142131'); +INSERT INTO "public"."cardcodes" VALUES (540, '山西省', '雁北地区', '大同县', '142132'); +INSERT INTO "public"."cardcodes" VALUES (541, '山西省', '雁北地区', '怀仁县', '142133'); +INSERT INTO "public"."cardcodes" VALUES (542, '山西省', '忻州地区', '忻州市', '142201'); +INSERT INTO "public"."cardcodes" VALUES (543, '山西省', '忻州地区', '原平市', '142202'); +INSERT INTO "public"."cardcodes" VALUES (544, '山西省', '忻州地区', '定襄县', '142222'); +INSERT INTO "public"."cardcodes" VALUES (545, '山西省', '忻州地区', '五台县', '142223'); +INSERT INTO "public"."cardcodes" VALUES (546, '山西省', '忻州地区', '代县', '142225'); +INSERT INTO "public"."cardcodes" VALUES (547, '山西省', '忻州地区', '繁峙县', '142226'); +INSERT INTO "public"."cardcodes" VALUES (548, '山西省', '忻州地区', '宁武县', '142227'); +INSERT INTO "public"."cardcodes" VALUES (549, '山西省', '忻州地区', '静乐县', '142228'); +INSERT INTO "public"."cardcodes" VALUES (550, '山西省', '忻州地区', '神池县', '142229'); +INSERT INTO "public"."cardcodes" VALUES (551, '山西省', '忻州地区', '五寨县', '142230'); +INSERT INTO "public"."cardcodes" VALUES (552, '山西省', '忻州地区', '岢岚县', '142231'); +INSERT INTO "public"."cardcodes" VALUES (553, '山西省', '忻州地区', '河曲县', '142232'); +INSERT INTO "public"."cardcodes" VALUES (554, '山西省', '忻州地区', '保德县', '142233'); +INSERT INTO "public"."cardcodes" VALUES (555, '山西省', '忻州地区', '偏关县', '142234'); +INSERT INTO "public"."cardcodes" VALUES (556, '山西省', '吕梁地区', '孝义市', '142301'); +INSERT INTO "public"."cardcodes" VALUES (557, '山西省', '吕梁地区', '离石市', '142302'); +INSERT INTO "public"."cardcodes" VALUES (558, '山西省', '吕梁地区', '汾阳市', '142303'); +INSERT INTO "public"."cardcodes" VALUES (559, '山西省', '吕梁地区', '汾阳县', '142321'); +INSERT INTO "public"."cardcodes" VALUES (560, '山西省', '吕梁地区', '文水县', '142322'); +INSERT INTO "public"."cardcodes" VALUES (561, '山西省', '吕梁地区', '交城县', '142323'); +INSERT INTO "public"."cardcodes" VALUES (562, '山西省', '吕梁地区', '兴县', '142325'); +INSERT INTO "public"."cardcodes" VALUES (563, '山西省', '吕梁地区', '临县', '142326'); +INSERT INTO "public"."cardcodes" VALUES (564, '山西省', '吕梁地区', '柳林县', '142327'); +INSERT INTO "public"."cardcodes" VALUES (565, '山西省', '吕梁地区', '石楼县', '142328'); +INSERT INTO "public"."cardcodes" VALUES (566, '山西省', '吕梁地区', '岚县', '142329'); +INSERT INTO "public"."cardcodes" VALUES (567, '山西省', '吕梁地区', '方山县', '142330'); +INSERT INTO "public"."cardcodes" VALUES (568, '山西省', '吕梁地区', '中阳县', '142332'); +INSERT INTO "public"."cardcodes" VALUES (569, '山西省', '吕梁地区', '交口县', '142333'); +INSERT INTO "public"."cardcodes" VALUES (570, '山西省', '晋中地区', '榆次市', '142401'); +INSERT INTO "public"."cardcodes" VALUES (571, '山西省', '晋中地区', '介休市', '142402'); +INSERT INTO "public"."cardcodes" VALUES (572, '山西省', '晋中地区', '榆社县', '142421'); +INSERT INTO "public"."cardcodes" VALUES (573, '山西省', '晋中地区', '左权县', '142422'); +INSERT INTO "public"."cardcodes" VALUES (574, '山西省', '晋中地区', '和顺县', '142423'); +INSERT INTO "public"."cardcodes" VALUES (575, '山西省', '晋中地区', '昔阳县', '142424'); +INSERT INTO "public"."cardcodes" VALUES (576, '山西省', '晋中地区', '寿阳县', '142427'); +INSERT INTO "public"."cardcodes" VALUES (577, '山西省', '晋中地区', '太谷县', '142429'); +INSERT INTO "public"."cardcodes" VALUES (578, '山西省', '晋中地区', '祁县', '142430'); +INSERT INTO "public"."cardcodes" VALUES (579, '山西省', '晋中地区', '平遥县', '142431'); +INSERT INTO "public"."cardcodes" VALUES (580, '山西省', '晋中地区', '灵石县', '142433'); +INSERT INTO "public"."cardcodes" VALUES (581, '山西省', '临汾地区', '临汾市', '142601'); +INSERT INTO "public"."cardcodes" VALUES (582, '山西省', '临汾地区', '侯马市', '142602'); +INSERT INTO "public"."cardcodes" VALUES (583, '山西省', '临汾地区', '霍州市', '142603'); +INSERT INTO "public"."cardcodes" VALUES (584, '山西省', '临汾地区', '曲沃县', '142621'); +INSERT INTO "public"."cardcodes" VALUES (585, '山西省', '临汾地区', '翼城县', '142622'); +INSERT INTO "public"."cardcodes" VALUES (586, '山西省', '临汾地区', '襄汾县', '142623'); +INSERT INTO "public"."cardcodes" VALUES (587, '山西省', '临汾地区', '洪洞县', '142625'); +INSERT INTO "public"."cardcodes" VALUES (588, '山西省', '临汾地区', '古县', '142627'); +INSERT INTO "public"."cardcodes" VALUES (589, '山西省', '临汾地区', '安泽县', '142628'); +INSERT INTO "public"."cardcodes" VALUES (590, '山西省', '临汾地区', '浮山县', '142629'); +INSERT INTO "public"."cardcodes" VALUES (591, '山西省', '临汾地区', '吉县', '142630'); +INSERT INTO "public"."cardcodes" VALUES (592, '山西省', '临汾地区', '乡宁县', '142631'); +INSERT INTO "public"."cardcodes" VALUES (593, '山西省', '临汾地区', '蒲县', '142632'); +INSERT INTO "public"."cardcodes" VALUES (594, '山西省', '临汾地区', '大宁县', '142633'); +INSERT INTO "public"."cardcodes" VALUES (595, '山西省', '临汾地区', '永和县', '142634'); +INSERT INTO "public"."cardcodes" VALUES (596, '山西省', '临汾地区', '隰县', '142635'); +INSERT INTO "public"."cardcodes" VALUES (597, '山西省', '临汾地区', '汾西县', '142636'); +INSERT INTO "public"."cardcodes" VALUES (598, '山西省', '运城地区', '运城市', '142701'); +INSERT INTO "public"."cardcodes" VALUES (599, '山西省', '运城地区', '永济市', '142702'); +INSERT INTO "public"."cardcodes" VALUES (600, '山西省', '运城地区', '河津市', '142703'); +INSERT INTO "public"."cardcodes" VALUES (601, '山西省', '运城地区', '芮城县', '142723'); +INSERT INTO "public"."cardcodes" VALUES (602, '山西省', '运城地区', '临猗县', '142724'); +INSERT INTO "public"."cardcodes" VALUES (603, '山西省', '运城地区', '万荣县', '142725'); +INSERT INTO "public"."cardcodes" VALUES (604, '山西省', '运城地区', '新绛县', '142726'); +INSERT INTO "public"."cardcodes" VALUES (605, '山西省', '运城地区', '稷山县', '142727'); +INSERT INTO "public"."cardcodes" VALUES (606, '山西省', '运城地区', '闻喜县', '142729'); +INSERT INTO "public"."cardcodes" VALUES (607, '山西省', '运城地区', '夏县', '142730'); +INSERT INTO "public"."cardcodes" VALUES (608, '山西省', '运城地区', '绛县', '142731'); +INSERT INTO "public"."cardcodes" VALUES (609, '山西省', '运城地区', '平陆县', '142732'); +INSERT INTO "public"."cardcodes" VALUES (610, '山西省', '运城地区', '垣曲县', '142733'); +INSERT INTO "public"."cardcodes" VALUES (611, '山西省', NULL, '古交市', '149001'); +INSERT INTO "public"."cardcodes" VALUES (612, '内蒙古自治区', '呼和浩特市', '市辖区', '150101'); +INSERT INTO "public"."cardcodes" VALUES (613, '内蒙古自治区', '呼和浩特市', '新城区', '150102'); +INSERT INTO "public"."cardcodes" VALUES (614, '内蒙古自治区', '呼和浩特市', '回民区', '150103'); +INSERT INTO "public"."cardcodes" VALUES (615, '内蒙古自治区', '呼和浩特市', '玉泉区', '150104'); +INSERT INTO "public"."cardcodes" VALUES (616, '内蒙古自治区', '呼和浩特市', '郊区', '150105'); +INSERT INTO "public"."cardcodes" VALUES (617, '内蒙古自治区', '呼和浩特市', '土默特左旗', '150121'); +INSERT INTO "public"."cardcodes" VALUES (618, '内蒙古自治区', '呼和浩特市', '托克托县', '150122'); +INSERT INTO "public"."cardcodes" VALUES (619, '内蒙古自治区', '呼和浩特市', '和林格尔县', '150123'); +INSERT INTO "public"."cardcodes" VALUES (620, '内蒙古自治区', '呼和浩特市', '清水河县', '150124'); +INSERT INTO "public"."cardcodes" VALUES (621, '内蒙古自治区', '呼和浩特市', '武川县', '150125'); +INSERT INTO "public"."cardcodes" VALUES (622, '内蒙古自治区', '包头市', '市辖区', '150201'); +INSERT INTO "public"."cardcodes" VALUES (623, '内蒙古自治区', '包头市', '东河区', '150202'); +INSERT INTO "public"."cardcodes" VALUES (624, '内蒙古自治区', '包头市', '昆都伦区', '150203'); +INSERT INTO "public"."cardcodes" VALUES (625, '内蒙古自治区', '包头市', '青山区', '150204'); +INSERT INTO "public"."cardcodes" VALUES (626, '内蒙古自治区', '包头市', '石拐矿区', '150205'); +INSERT INTO "public"."cardcodes" VALUES (627, '内蒙古自治区', '包头市', '白云矿区', '150206'); +INSERT INTO "public"."cardcodes" VALUES (628, '内蒙古自治区', '包头市', '郊区', '150207'); +INSERT INTO "public"."cardcodes" VALUES (629, '内蒙古自治区', '包头市', '土默特右旗', '150221'); +INSERT INTO "public"."cardcodes" VALUES (630, '内蒙古自治区', '包头市', '固阳县', '150222'); +INSERT INTO "public"."cardcodes" VALUES (631, '内蒙古自治区', '包头市', '达尔罕茂明安联合旗', '150223'); +INSERT INTO "public"."cardcodes" VALUES (632, '内蒙古自治区', '乌海市', '市辖区', '150301'); +INSERT INTO "public"."cardcodes" VALUES (633, '内蒙古自治区', '乌海市', '海勃湾区', '150302'); +INSERT INTO "public"."cardcodes" VALUES (634, '内蒙古自治区', '乌海市', '海南区', '150303'); +INSERT INTO "public"."cardcodes" VALUES (635, '内蒙古自治区', '乌海市', '乌达区', '150304'); +INSERT INTO "public"."cardcodes" VALUES (636, '内蒙古自治区', '赤峰市', '市辖区', '150401'); +INSERT INTO "public"."cardcodes" VALUES (637, '内蒙古自治区', '赤峰市', '红山区', '150402'); +INSERT INTO "public"."cardcodes" VALUES (638, '内蒙古自治区', '赤峰市', '元宝山区', '150403'); +INSERT INTO "public"."cardcodes" VALUES (639, '内蒙古自治区', '赤峰市', '松山区', '150404'); +INSERT INTO "public"."cardcodes" VALUES (640, '内蒙古自治区', '赤峰市', '阿鲁科尔沁旗', '150421'); +INSERT INTO "public"."cardcodes" VALUES (641, '内蒙古自治区', '赤峰市', '巴林左旗', '150422'); +INSERT INTO "public"."cardcodes" VALUES (642, '内蒙古自治区', '赤峰市', '巴林右旗', '150423'); +INSERT INTO "public"."cardcodes" VALUES (643, '内蒙古自治区', '赤峰市', '林西县', '150424'); +INSERT INTO "public"."cardcodes" VALUES (644, '内蒙古自治区', '赤峰市', '克什克腾旗', '150425'); +INSERT INTO "public"."cardcodes" VALUES (645, '内蒙古自治区', '赤峰市', '翁牛特旗', '150426'); +INSERT INTO "public"."cardcodes" VALUES (646, '内蒙古自治区', '赤峰市', '喀喇沁旗', '150428'); +INSERT INTO "public"."cardcodes" VALUES (647, '内蒙古自治区', '赤峰市', '宁城县', '150429'); +INSERT INTO "public"."cardcodes" VALUES (648, '内蒙古自治区', '赤峰市', '敖汉旗', '150430'); +INSERT INTO "public"."cardcodes" VALUES (649, '内蒙古自治区', '通辽市', '市辖区', '150501'); +INSERT INTO "public"."cardcodes" VALUES (650, '内蒙古自治区', '通辽市', '科尔沁区', '150502'); +INSERT INTO "public"."cardcodes" VALUES (651, '内蒙古自治区', '通辽市', '科尔沁左翼中旗', '150521'); +INSERT INTO "public"."cardcodes" VALUES (652, '内蒙古自治区', '通辽市', '科尔沁左翼后旗', '150522'); +INSERT INTO "public"."cardcodes" VALUES (653, '内蒙古自治区', '通辽市', '开鲁县', '150523'); +INSERT INTO "public"."cardcodes" VALUES (654, '内蒙古自治区', '通辽市', '库伦旗', '150524'); +INSERT INTO "public"."cardcodes" VALUES (655, '内蒙古自治区', '通辽市', '奈曼旗', '150525'); +INSERT INTO "public"."cardcodes" VALUES (656, '内蒙古自治区', '通辽市', '扎鲁特旗', '150526'); +INSERT INTO "public"."cardcodes" VALUES (657, '内蒙古自治区', '通辽市', '霍林郭勒市', '150581'); +INSERT INTO "public"."cardcodes" VALUES (658, '内蒙古自治区', '鄂尔多斯市', '鄂尔多斯市', '150601'); +INSERT INTO "public"."cardcodes" VALUES (659, '内蒙古自治区', '鄂尔多斯市', '东胜区', '150602'); +INSERT INTO "public"."cardcodes" VALUES (660, '内蒙古自治区', '鄂尔多斯市', '达拉特旗', '150621'); +INSERT INTO "public"."cardcodes" VALUES (661, '内蒙古自治区', '鄂尔多斯市', '准格尔旗', '150622'); +INSERT INTO "public"."cardcodes" VALUES (662, '内蒙古自治区', '鄂尔多斯市', '鄂托克前旗', '150623'); +INSERT INTO "public"."cardcodes" VALUES (663, '内蒙古自治区', '鄂尔多斯市', '鄂托克旗', '150624'); +INSERT INTO "public"."cardcodes" VALUES (664, '内蒙古自治区', '鄂尔多斯市', '杭锦旗', '150625'); +INSERT INTO "public"."cardcodes" VALUES (665, '内蒙古自治区', '鄂尔多斯市', '乌审旗', '150626'); +INSERT INTO "public"."cardcodes" VALUES (666, '内蒙古自治区', '鄂尔多斯市', '伊金霍洛旗', '150627'); +INSERT INTO "public"."cardcodes" VALUES (667, '内蒙古自治区', '呼伦贝尔市', '市辖区', '150701'); +INSERT INTO "public"."cardcodes" VALUES (668, '内蒙古自治区', '呼伦贝尔市', '海拉尔区', '150702'); +INSERT INTO "public"."cardcodes" VALUES (669, '内蒙古自治区', '呼伦贝尔市', '阿荣旗', '150721'); +INSERT INTO "public"."cardcodes" VALUES (670, '内蒙古自治区', '呼伦贝尔市', '莫力达瓦达斡尔族自治旗', '150722'); +INSERT INTO "public"."cardcodes" VALUES (671, '内蒙古自治区', '呼伦贝尔市', '鄂伦春自治旗', '150723'); +INSERT INTO "public"."cardcodes" VALUES (672, '内蒙古自治区', '呼伦贝尔市', '鄂温克族自治旗', '150724'); +INSERT INTO "public"."cardcodes" VALUES (673, '内蒙古自治区', '呼伦贝尔市', '陈巴尔虎旗', '150725'); +INSERT INTO "public"."cardcodes" VALUES (674, '内蒙古自治区', '呼伦贝尔市', '新巴尔虎左旗', '150726'); +INSERT INTO "public"."cardcodes" VALUES (675, '内蒙古自治区', '呼伦贝尔市', '新巴尔虎右旗', '150727'); +INSERT INTO "public"."cardcodes" VALUES (676, '内蒙古自治区', '呼伦贝尔市', '满洲里市', '150781'); +INSERT INTO "public"."cardcodes" VALUES (677, '内蒙古自治区', '呼伦贝尔市', '牙克石市', '150782'); +INSERT INTO "public"."cardcodes" VALUES (678, '内蒙古自治区', '呼伦贝尔市', '扎兰屯市', '150783'); +INSERT INTO "public"."cardcodes" VALUES (679, '内蒙古自治区', '呼伦贝尔市', '额尔古纳市', '150784'); +INSERT INTO "public"."cardcodes" VALUES (680, '内蒙古自治区', '呼伦贝尔市', '根河市', '150785'); +INSERT INTO "public"."cardcodes" VALUES (681, '内蒙古自治区', '巴彦淖尔市', '市辖区', '150801'); +INSERT INTO "public"."cardcodes" VALUES (682, '内蒙古自治区', '巴彦淖尔市', '临河区', '150802'); +INSERT INTO "public"."cardcodes" VALUES (683, '内蒙古自治区', '巴彦淖尔市', '五原县', '150821'); +INSERT INTO "public"."cardcodes" VALUES (684, '内蒙古自治区', '巴彦淖尔市', '磴口县', '150822'); +INSERT INTO "public"."cardcodes" VALUES (685, '内蒙古自治区', '巴彦淖尔市', '乌拉特前旗', '150823'); +INSERT INTO "public"."cardcodes" VALUES (686, '内蒙古自治区', '巴彦淖尔市', '乌拉特中旗', '150824'); +INSERT INTO "public"."cardcodes" VALUES (687, '内蒙古自治区', '巴彦淖尔市', '乌拉特后旗', '150825'); +INSERT INTO "public"."cardcodes" VALUES (688, '内蒙古自治区', '巴彦淖尔市', '杭锦后旗', '150826'); +INSERT INTO "public"."cardcodes" VALUES (689, '内蒙古自治区', '乌兰察布市', '市辖区', '150901'); +INSERT INTO "public"."cardcodes" VALUES (690, '内蒙古自治区', '乌兰察布市', '集宁区', '150902'); +INSERT INTO "public"."cardcodes" VALUES (691, '内蒙古自治区', '乌兰察布市', '卓资县', '150921'); +INSERT INTO "public"."cardcodes" VALUES (692, '内蒙古自治区', '乌兰察布市', '化德县', '150922'); +INSERT INTO "public"."cardcodes" VALUES (693, '内蒙古自治区', '乌兰察布市', '商都县', '150923'); +INSERT INTO "public"."cardcodes" VALUES (694, '内蒙古自治区', '乌兰察布市', '兴和县', '150924'); +INSERT INTO "public"."cardcodes" VALUES (695, '内蒙古自治区', '乌兰察布市', '凉城县', '150925'); +INSERT INTO "public"."cardcodes" VALUES (696, '内蒙古自治区', '乌兰察布市', '察哈尔右翼前旗', '150926'); +INSERT INTO "public"."cardcodes" VALUES (697, '内蒙古自治区', '乌兰察布市', '察哈尔右翼中旗', '150927'); +INSERT INTO "public"."cardcodes" VALUES (698, '内蒙古自治区', '乌兰察布市', '察哈尔右翼后旗', '150928'); +INSERT INTO "public"."cardcodes" VALUES (699, '内蒙古自治区', '乌兰察布市', '四子王旗', '150929'); +INSERT INTO "public"."cardcodes" VALUES (700, '内蒙古自治区', '乌兰察布市', '丰镇市', '150981'); +INSERT INTO "public"."cardcodes" VALUES (701, '内蒙古自治区', '呼伦贝尔盟', '海拉尔市', '152101'); +INSERT INTO "public"."cardcodes" VALUES (702, '内蒙古自治区', '呼伦贝尔盟', '满洲里市', '152102'); +INSERT INTO "public"."cardcodes" VALUES (703, '内蒙古自治区', '呼伦贝尔盟', '扎兰屯市', '152103'); +INSERT INTO "public"."cardcodes" VALUES (704, '内蒙古自治区', '呼伦贝尔盟', '牙克石市', '152104'); +INSERT INTO "public"."cardcodes" VALUES (705, '内蒙古自治区', '呼伦贝尔盟', '根河市', '152105'); +INSERT INTO "public"."cardcodes" VALUES (706, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳市', '152106'); +INSERT INTO "public"."cardcodes" VALUES (707, '内蒙古自治区', '呼伦贝尔盟', '布特哈旗', '152121'); +INSERT INTO "public"."cardcodes" VALUES (708, '内蒙古自治区', '呼伦贝尔盟', '阿荣旗', '152122'); +INSERT INTO "public"."cardcodes" VALUES (709, '内蒙古自治区', '呼伦贝尔盟', '莫力达瓦达斡尔族自治旗', '152123'); +INSERT INTO "public"."cardcodes" VALUES (710, '内蒙古自治区', '呼伦贝尔盟', '喜桂图旗', '152124'); +INSERT INTO "public"."cardcodes" VALUES (711, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳右旗', '152125'); +INSERT INTO "public"."cardcodes" VALUES (712, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳左旗', '152126'); +INSERT INTO "public"."cardcodes" VALUES (713, '内蒙古自治区', '呼伦贝尔盟', '鄂伦春自治旗', '152127'); +INSERT INTO "public"."cardcodes" VALUES (714, '内蒙古自治区', '呼伦贝尔盟', '鄂温克族自治旗', '152128'); +INSERT INTO "public"."cardcodes" VALUES (715, '内蒙古自治区', '呼伦贝尔盟', '新巴尔虎右旗', '152129'); +INSERT INTO "public"."cardcodes" VALUES (716, '内蒙古自治区', '呼伦贝尔盟', '新巴尔虎左旗', '152130'); +INSERT INTO "public"."cardcodes" VALUES (717, '内蒙古自治区', '呼伦贝尔盟', '陈巴尔虎旗', '152131'); +INSERT INTO "public"."cardcodes" VALUES (718, '内蒙古自治区', '兴安盟', '乌兰浩特市', '152201'); +INSERT INTO "public"."cardcodes" VALUES (719, '内蒙古自治区', '兴安盟', '阿尔山市', '152202'); +INSERT INTO "public"."cardcodes" VALUES (720, '内蒙古自治区', '兴安盟', '科尔沁右翼前旗', '152221'); +INSERT INTO "public"."cardcodes" VALUES (721, '内蒙古自治区', '兴安盟', '科尔沁右翼中旗', '152222'); +INSERT INTO "public"."cardcodes" VALUES (722, '内蒙古自治区', '兴安盟', '扎赉特旗', '152223'); +INSERT INTO "public"."cardcodes" VALUES (723, '内蒙古自治区', '兴安盟', '突泉县', '152224'); +INSERT INTO "public"."cardcodes" VALUES (724, '内蒙古自治区', '哲里木盟', '通辽市', '152301'); +INSERT INTO "public"."cardcodes" VALUES (725, '内蒙古自治区', '哲里木盟', '霍林郭勒市', '152302'); +INSERT INTO "public"."cardcodes" VALUES (726, '内蒙古自治区', '哲里木盟', '通辽县', '152321'); +INSERT INTO "public"."cardcodes" VALUES (727, '内蒙古自治区', '哲里木盟', '科尔沁左翼中旗', '152322'); +INSERT INTO "public"."cardcodes" VALUES (728, '内蒙古自治区', '哲里木盟', '科尔沁左翼后旗', '152323'); +INSERT INTO "public"."cardcodes" VALUES (729, '内蒙古自治区', '哲里木盟', '开鲁县', '152324'); +INSERT INTO "public"."cardcodes" VALUES (730, '内蒙古自治区', '哲里木盟', '库伦旗', '152325'); +INSERT INTO "public"."cardcodes" VALUES (731, '内蒙古自治区', '哲里木盟', '奈曼旗', '152326'); +INSERT INTO "public"."cardcodes" VALUES (732, '内蒙古自治区', '哲里木盟', '扎鲁特旗', '152327'); +INSERT INTO "public"."cardcodes" VALUES (733, '内蒙古自治区', '锡林郭勒盟', '二连浩特市', '152501'); +INSERT INTO "public"."cardcodes" VALUES (734, '内蒙古自治区', '锡林郭勒盟', '锡林浩特市', '152502'); +INSERT INTO "public"."cardcodes" VALUES (735, '内蒙古自治区', '锡林郭勒盟', '阿巴嘎旗', '152522'); +INSERT INTO "public"."cardcodes" VALUES (736, '内蒙古自治区', '锡林郭勒盟', '苏尼特左旗', '152523'); +INSERT INTO "public"."cardcodes" VALUES (737, '内蒙古自治区', '锡林郭勒盟', '苏尼特右旗', '152524'); +INSERT INTO "public"."cardcodes" VALUES (738, '内蒙古自治区', '锡林郭勒盟', '东乌珠穆沁旗', '152525'); +INSERT INTO "public"."cardcodes" VALUES (739, '内蒙古自治区', '锡林郭勒盟', '西乌珠穆沁旗', '152526'); +INSERT INTO "public"."cardcodes" VALUES (740, '内蒙古自治区', '锡林郭勒盟', '太仆寺旗', '152527'); +INSERT INTO "public"."cardcodes" VALUES (741, '内蒙古自治区', '锡林郭勒盟', '镶黄旗', '152528'); +INSERT INTO "public"."cardcodes" VALUES (742, '内蒙古自治区', '锡林郭勒盟', '正镶白旗', '152529'); +INSERT INTO "public"."cardcodes" VALUES (743, '内蒙古自治区', '锡林郭勒盟', '正蓝旗', '152530'); +INSERT INTO "public"."cardcodes" VALUES (744, '内蒙古自治区', '锡林郭勒盟', '多伦县', '152531'); +INSERT INTO "public"."cardcodes" VALUES (745, '内蒙古自治区', '乌兰察布盟', '集宁市', '152601'); +INSERT INTO "public"."cardcodes" VALUES (746, '内蒙古自治区', '乌兰察布盟', '丰镇市', '152602'); +INSERT INTO "public"."cardcodes" VALUES (747, '内蒙古自治区', '乌兰察布盟', '武川县', '152621'); +INSERT INTO "public"."cardcodes" VALUES (748, '内蒙古自治区', '乌兰察布盟', '和林格尔县', '152622'); +INSERT INTO "public"."cardcodes" VALUES (749, '内蒙古自治区', '乌兰察布盟', '清水河县', '152623'); +INSERT INTO "public"."cardcodes" VALUES (750, '内蒙古自治区', '乌兰察布盟', '卓资县', '152624'); +INSERT INTO "public"."cardcodes" VALUES (751, '内蒙古自治区', '乌兰察布盟', '化德县', '152625'); +INSERT INTO "public"."cardcodes" VALUES (752, '内蒙古自治区', '乌兰察布盟', '商都县', '152626'); +INSERT INTO "public"."cardcodes" VALUES (753, '内蒙古自治区', '乌兰察布盟', '兴和县', '152627'); +INSERT INTO "public"."cardcodes" VALUES (754, '内蒙古自治区', '乌兰察布盟', '丰镇县', '152628'); +INSERT INTO "public"."cardcodes" VALUES (755, '内蒙古自治区', '乌兰察布盟', '凉城县', '152629'); +INSERT INTO "public"."cardcodes" VALUES (756, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼前旗', '152630'); +INSERT INTO "public"."cardcodes" VALUES (757, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼中旗', '152631'); +INSERT INTO "public"."cardcodes" VALUES (758, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼后旗', '152632'); +INSERT INTO "public"."cardcodes" VALUES (759, '内蒙古自治区', '乌兰察布盟', '达尔罕茂明安联合旗', '152633'); +INSERT INTO "public"."cardcodes" VALUES (760, '内蒙古自治区', '乌兰察布盟', '四子王旗', '152634'); +INSERT INTO "public"."cardcodes" VALUES (761, '内蒙古自治区', '伊克昭盟', '东胜市', '152701'); +INSERT INTO "public"."cardcodes" VALUES (762, '内蒙古自治区', '伊克昭盟', '东胜县', '152721'); +INSERT INTO "public"."cardcodes" VALUES (763, '内蒙古自治区', '伊克昭盟', '达拉特旗', '152722'); +INSERT INTO "public"."cardcodes" VALUES (764, '内蒙古自治区', '伊克昭盟', '准格尔旗', '152723'); +INSERT INTO "public"."cardcodes" VALUES (765, '内蒙古自治区', '伊克昭盟', '鄂托克前旗', '152724'); +INSERT INTO "public"."cardcodes" VALUES (766, '内蒙古自治区', '伊克昭盟', '鄂托克旗', '152725'); +INSERT INTO "public"."cardcodes" VALUES (767, '内蒙古自治区', '伊克昭盟', '杭锦旗', '152726'); +INSERT INTO "public"."cardcodes" VALUES (768, '内蒙古自治区', '伊克昭盟', '乌审旗', '152727'); +INSERT INTO "public"."cardcodes" VALUES (769, '内蒙古自治区', '伊克昭盟', '伊金霍洛旗', '152728'); +INSERT INTO "public"."cardcodes" VALUES (770, '内蒙古自治区', '巴彦淖尔盟', '临河市', '152801'); +INSERT INTO "public"."cardcodes" VALUES (771, '内蒙古自治区', '巴彦淖尔盟', '临河县', '152821'); +INSERT INTO "public"."cardcodes" VALUES (772, '内蒙古自治区', '巴彦淖尔盟', '五原县', '152822'); +INSERT INTO "public"."cardcodes" VALUES (773, '内蒙古自治区', '巴彦淖尔盟', '磴口县', '152823'); +INSERT INTO "public"."cardcodes" VALUES (774, '内蒙古自治区', '巴彦淖尔盟', '乌拉特前旗', '152824'); +INSERT INTO "public"."cardcodes" VALUES (775, '内蒙古自治区', '巴彦淖尔盟', '乌拉特中旗', '152825'); +INSERT INTO "public"."cardcodes" VALUES (776, '内蒙古自治区', '巴彦淖尔盟', '乌拉特后旗', '152826'); +INSERT INTO "public"."cardcodes" VALUES (777, '内蒙古自治区', '巴彦淖尔盟', '杭锦后旗', '152827'); +INSERT INTO "public"."cardcodes" VALUES (778, '内蒙古自治区', '阿拉善盟', '阿拉善左旗', '152921'); +INSERT INTO "public"."cardcodes" VALUES (779, '内蒙古自治区', '阿拉善盟', '阿拉善右旗', '152922'); +INSERT INTO "public"."cardcodes" VALUES (780, '内蒙古自治区', '阿拉善盟', '额济纳旗', '152923'); +INSERT INTO "public"."cardcodes" VALUES (781, '辽宁省', '沈阳市', '市辖区', '210101'); +INSERT INTO "public"."cardcodes" VALUES (782, '辽宁省', '沈阳市', '和平区', '210102'); +INSERT INTO "public"."cardcodes" VALUES (783, '辽宁省', '沈阳市', '沈河区', '210103'); +INSERT INTO "public"."cardcodes" VALUES (784, '辽宁省', '沈阳市', '大东区', '210104'); +INSERT INTO "public"."cardcodes" VALUES (785, '辽宁省', '沈阳市', '皇姑区', '210105'); +INSERT INTO "public"."cardcodes" VALUES (786, '辽宁省', '沈阳市', '铁西区', '210106'); +INSERT INTO "public"."cardcodes" VALUES (787, '辽宁省', '沈阳市', '苏家屯区', '210111'); +INSERT INTO "public"."cardcodes" VALUES (788, '辽宁省', '沈阳市', '东陵区', '210112'); +INSERT INTO "public"."cardcodes" VALUES (789, '辽宁省', '沈阳市', '沈北新区', '210113'); +INSERT INTO "public"."cardcodes" VALUES (790, '辽宁省', '沈阳市', '于洪区', '210114'); +INSERT INTO "public"."cardcodes" VALUES (791, '辽宁省', '沈阳市', '市区', '210120'); +INSERT INTO "public"."cardcodes" VALUES (792, '辽宁省', '沈阳市', '新民县', '210121'); +INSERT INTO "public"."cardcodes" VALUES (793, '辽宁省', '沈阳市', '辽中县', '210122'); +INSERT INTO "public"."cardcodes" VALUES (794, '辽宁省', '沈阳市', '康平县', '210123'); +INSERT INTO "public"."cardcodes" VALUES (795, '辽宁省', '沈阳市', '法库县', '210124'); +INSERT INTO "public"."cardcodes" VALUES (796, '辽宁省', '沈阳市', '新民市', '210181'); +INSERT INTO "public"."cardcodes" VALUES (797, '辽宁省', '大连市', '市辖区', '210201'); +INSERT INTO "public"."cardcodes" VALUES (798, '辽宁省', '大连市', '中山区', '210202'); +INSERT INTO "public"."cardcodes" VALUES (799, '辽宁省', '大连市', '西岗区', '210203'); +INSERT INTO "public"."cardcodes" VALUES (800, '辽宁省', '大连市', '沙河口区', '210204'); +INSERT INTO "public"."cardcodes" VALUES (801, '辽宁省', '大连市', '甘井子区', '210211'); +INSERT INTO "public"."cardcodes" VALUES (802, '辽宁省', '大连市', '旅顺口区', '210212'); +INSERT INTO "public"."cardcodes" VALUES (803, '辽宁省', '大连市', '金州区', '210213'); +INSERT INTO "public"."cardcodes" VALUES (804, '辽宁省', '大连市', '瓦房店市', '210219'); +INSERT INTO "public"."cardcodes" VALUES (805, '辽宁省', '大连市', '市区', '210220'); +INSERT INTO "public"."cardcodes" VALUES (806, '辽宁省', '大连市', '金县', '210221'); +INSERT INTO "public"."cardcodes" VALUES (807, '辽宁省', '大连市', '新金县', '210222'); +INSERT INTO "public"."cardcodes" VALUES (808, '辽宁省', '大连市', '复县', '210223'); +INSERT INTO "public"."cardcodes" VALUES (809, '辽宁省', '大连市', '长海县', '210224'); +INSERT INTO "public"."cardcodes" VALUES (810, '辽宁省', '大连市', '庄河县', '210225'); +INSERT INTO "public"."cardcodes" VALUES (811, '辽宁省', '大连市', '瓦房店市', '210281'); +INSERT INTO "public"."cardcodes" VALUES (812, '辽宁省', '大连市', '普兰店市', '210282'); +INSERT INTO "public"."cardcodes" VALUES (813, '辽宁省', '大连市', '庄河市', '210283'); +INSERT INTO "public"."cardcodes" VALUES (814, '辽宁省', '鞍山市', '市辖区', '210301'); +INSERT INTO "public"."cardcodes" VALUES (815, '辽宁省', '鞍山市', '铁东区', '210302'); +INSERT INTO "public"."cardcodes" VALUES (816, '辽宁省', '鞍山市', '铁西区', '210303'); +INSERT INTO "public"."cardcodes" VALUES (817, '辽宁省', '鞍山市', '立山区', '210304'); +INSERT INTO "public"."cardcodes" VALUES (1333, '上海市', NULL, '川沙县', '310224'); +INSERT INTO "public"."cardcodes" VALUES (818, '辽宁省', '鞍山市', '千山区', '210311'); +INSERT INTO "public"."cardcodes" VALUES (819, '辽宁省', '鞍山市', '开发区', '210319'); +INSERT INTO "public"."cardcodes" VALUES (820, '辽宁省', '鞍山市', '台安县', '210321'); +INSERT INTO "public"."cardcodes" VALUES (821, '辽宁省', '鞍山市', '岫岩满族自治县', '210323'); +INSERT INTO "public"."cardcodes" VALUES (822, '辽宁省', '鞍山市', '海城市', '210381'); +INSERT INTO "public"."cardcodes" VALUES (823, '辽宁省', '抚顺市', '市辖区', '210401'); +INSERT INTO "public"."cardcodes" VALUES (824, '辽宁省', '抚顺市', '新抚区', '210402'); +INSERT INTO "public"."cardcodes" VALUES (825, '辽宁省', '抚顺市', '东洲区', '210403'); +INSERT INTO "public"."cardcodes" VALUES (826, '辽宁省', '抚顺市', '望花区', '210404'); +INSERT INTO "public"."cardcodes" VALUES (827, '辽宁省', '抚顺市', '顺城区', '210411'); +INSERT INTO "public"."cardcodes" VALUES (828, '辽宁省', '抚顺市', '抚顺县', '210421'); +INSERT INTO "public"."cardcodes" VALUES (829, '辽宁省', '抚顺市', '新宾满族自治县', '210422'); +INSERT INTO "public"."cardcodes" VALUES (830, '辽宁省', '抚顺市', '清原满族自治县', '210423'); +INSERT INTO "public"."cardcodes" VALUES (831, '辽宁省', '本溪市', '市辖区', '210501'); +INSERT INTO "public"."cardcodes" VALUES (832, '辽宁省', '本溪市', '平山区', '210502'); +INSERT INTO "public"."cardcodes" VALUES (833, '辽宁省', '本溪市', '溪湖区', '210503'); +INSERT INTO "public"."cardcodes" VALUES (834, '辽宁省', '本溪市', '明山区', '210504'); +INSERT INTO "public"."cardcodes" VALUES (835, '辽宁省', '本溪市', '南芬区', '210505'); +INSERT INTO "public"."cardcodes" VALUES (836, '辽宁省', '本溪市', '南芬区', '210511'); +INSERT INTO "public"."cardcodes" VALUES (837, '辽宁省', '本溪市', '本溪满族自治县', '210521'); +INSERT INTO "public"."cardcodes" VALUES (838, '辽宁省', '本溪市', '桓仁满族自治县', '210522'); +INSERT INTO "public"."cardcodes" VALUES (839, '辽宁省', '丹东市', '市辖区', '210601'); +INSERT INTO "public"."cardcodes" VALUES (840, '辽宁省', '丹东市', '元宝区', '210602'); +INSERT INTO "public"."cardcodes" VALUES (841, '辽宁省', '丹东市', '振兴区', '210603'); +INSERT INTO "public"."cardcodes" VALUES (842, '辽宁省', '丹东市', '振安区', '210604'); +INSERT INTO "public"."cardcodes" VALUES (843, '辽宁省', '丹东市', '市区', '210620'); +INSERT INTO "public"."cardcodes" VALUES (844, '辽宁省', '丹东市', '凤城满族自治县', '210621'); +INSERT INTO "public"."cardcodes" VALUES (845, '辽宁省', '丹东市', '岫岩满族自治县', '210622'); +INSERT INTO "public"."cardcodes" VALUES (846, '辽宁省', '丹东市', '东沟县', '210623'); +INSERT INTO "public"."cardcodes" VALUES (847, '辽宁省', '丹东市', '宽甸满族自治县', '210624'); +INSERT INTO "public"."cardcodes" VALUES (848, '辽宁省', '丹东市', '东港市', '210681'); +INSERT INTO "public"."cardcodes" VALUES (849, '辽宁省', '丹东市', '凤城市', '210682'); +INSERT INTO "public"."cardcodes" VALUES (850, '辽宁省', '锦州市', '市辖区', '210701'); +INSERT INTO "public"."cardcodes" VALUES (851, '辽宁省', '锦州市', '古塔区', '210702'); +INSERT INTO "public"."cardcodes" VALUES (852, '辽宁省', '锦州市', '凌河区', '210703'); +INSERT INTO "public"."cardcodes" VALUES (853, '辽宁省', '锦州市', '南票区', '210704'); +INSERT INTO "public"."cardcodes" VALUES (854, '辽宁省', '锦州市', '葫芦岛区', '210705'); +INSERT INTO "public"."cardcodes" VALUES (855, '辽宁省', '锦州市', '太和区', '210711'); +INSERT INTO "public"."cardcodes" VALUES (856, '辽宁省', '锦州市', '锦西市', '210719'); +INSERT INTO "public"."cardcodes" VALUES (857, '辽宁省', '锦州市', '市区', '210720'); +INSERT INTO "public"."cardcodes" VALUES (858, '辽宁省', '锦州市', '锦西县', '210721'); +INSERT INTO "public"."cardcodes" VALUES (859, '辽宁省', '锦州市', '兴城县', '210722'); +INSERT INTO "public"."cardcodes" VALUES (860, '辽宁省', '锦州市', '绥中县', '210723'); +INSERT INTO "public"."cardcodes" VALUES (861, '辽宁省', '锦州市', '锦县', '210724'); +INSERT INTO "public"."cardcodes" VALUES (862, '辽宁省', '锦州市', '北镇满族自治县', '210725'); +INSERT INTO "public"."cardcodes" VALUES (863, '辽宁省', '锦州市', '黑山县', '210726'); +INSERT INTO "public"."cardcodes" VALUES (864, '辽宁省', '锦州市', '义县', '210727'); +INSERT INTO "public"."cardcodes" VALUES (865, '辽宁省', '锦州市', '凌海市', '210781'); +INSERT INTO "public"."cardcodes" VALUES (866, '辽宁省', '锦州市', '北镇市', '210782'); +INSERT INTO "public"."cardcodes" VALUES (867, '辽宁省', '营口市', '市辖区', '210801'); +INSERT INTO "public"."cardcodes" VALUES (868, '辽宁省', '营口市', '站前区', '210802'); +INSERT INTO "public"."cardcodes" VALUES (869, '辽宁省', '营口市', '西市区', '210803'); +INSERT INTO "public"."cardcodes" VALUES (870, '辽宁省', '营口市', '鲅鱼圈区', '210804'); +INSERT INTO "public"."cardcodes" VALUES (871, '辽宁省', '营口市', '老边区', '210811'); +INSERT INTO "public"."cardcodes" VALUES (872, '辽宁省', '营口市', '营口县', '210821'); +INSERT INTO "public"."cardcodes" VALUES (873, '辽宁省', '营口市', '盖县', '210824'); +INSERT INTO "public"."cardcodes" VALUES (874, '辽宁省', '营口市', '盖州市', '210881'); +INSERT INTO "public"."cardcodes" VALUES (875, '辽宁省', '营口市', '大石桥市', '210882'); +INSERT INTO "public"."cardcodes" VALUES (876, '辽宁省', '阜新市', '市辖区', '210901'); +INSERT INTO "public"."cardcodes" VALUES (877, '辽宁省', '阜新市', '海州区', '210902'); +INSERT INTO "public"."cardcodes" VALUES (878, '辽宁省', '阜新市', '新邱区', '210903'); +INSERT INTO "public"."cardcodes" VALUES (879, '辽宁省', '阜新市', '太平区', '210904'); +INSERT INTO "public"."cardcodes" VALUES (880, '辽宁省', '阜新市', '清河门区', '210905'); +INSERT INTO "public"."cardcodes" VALUES (881, '辽宁省', '阜新市', '细河区', '210911'); +INSERT INTO "public"."cardcodes" VALUES (882, '辽宁省', '阜新市', '阜新蒙古族自治县', '210921'); +INSERT INTO "public"."cardcodes" VALUES (883, '辽宁省', '阜新市', '彰武县', '210922'); +INSERT INTO "public"."cardcodes" VALUES (884, '辽宁省', '辽阳市', '市辖区', '211001'); +INSERT INTO "public"."cardcodes" VALUES (885, '辽宁省', '辽阳市', '白塔区', '211002'); +INSERT INTO "public"."cardcodes" VALUES (886, '辽宁省', '辽阳市', '文圣区', '211003'); +INSERT INTO "public"."cardcodes" VALUES (887, '辽宁省', '辽阳市', '宏伟区', '211004'); +INSERT INTO "public"."cardcodes" VALUES (888, '辽宁省', '辽阳市', '弓长岭区', '211005'); +INSERT INTO "public"."cardcodes" VALUES (889, '辽宁省', '辽阳市', '太子河区', '211011'); +INSERT INTO "public"."cardcodes" VALUES (890, '辽宁省', '辽阳市', '辽阳县', '211021'); +INSERT INTO "public"."cardcodes" VALUES (891, '辽宁省', '辽阳市', '灯塔县', '211022'); +INSERT INTO "public"."cardcodes" VALUES (892, '辽宁省', '辽阳市', '灯塔市', '211081'); +INSERT INTO "public"."cardcodes" VALUES (893, '辽宁省', '盘锦市', '市辖区', '211101'); +INSERT INTO "public"."cardcodes" VALUES (894, '辽宁省', '盘锦市', '双台子区', '211102'); +INSERT INTO "public"."cardcodes" VALUES (895, '辽宁省', '盘锦市', '兴隆台区', '211103'); +INSERT INTO "public"."cardcodes" VALUES (896, '辽宁省', '盘锦市', '郊区', '211111'); +INSERT INTO "public"."cardcodes" VALUES (897, '辽宁省', '盘锦市', '大洼县', '211121'); +INSERT INTO "public"."cardcodes" VALUES (898, '辽宁省', '盘锦市', '盘山县', '211122'); +INSERT INTO "public"."cardcodes" VALUES (899, '辽宁省', '铁岭市', '市辖区', '211201'); +INSERT INTO "public"."cardcodes" VALUES (900, '辽宁省', '铁岭市', '银州区', '211202'); +INSERT INTO "public"."cardcodes" VALUES (901, '辽宁省', '铁岭市', '铁法区', '211203'); +INSERT INTO "public"."cardcodes" VALUES (902, '辽宁省', '铁岭市', '清河区', '211204'); +INSERT INTO "public"."cardcodes" VALUES (903, '辽宁省', '铁岭市', '铁岭县', '211221'); +INSERT INTO "public"."cardcodes" VALUES (904, '辽宁省', '铁岭市', '开原县', '211222'); +INSERT INTO "public"."cardcodes" VALUES (905, '辽宁省', '铁岭市', '西丰县', '211223'); +INSERT INTO "public"."cardcodes" VALUES (906, '辽宁省', '铁岭市', '昌图县', '211224'); +INSERT INTO "public"."cardcodes" VALUES (907, '辽宁省', '铁岭市', '康平县', '211225'); +INSERT INTO "public"."cardcodes" VALUES (908, '辽宁省', '铁岭市', '法库县', '211226'); +INSERT INTO "public"."cardcodes" VALUES (909, '辽宁省', '铁岭市', '调兵山市', '211281'); +INSERT INTO "public"."cardcodes" VALUES (910, '辽宁省', '铁岭市', '开原市', '211282'); +INSERT INTO "public"."cardcodes" VALUES (911, '辽宁省', '朝阳市', '市辖区', '211301'); +INSERT INTO "public"."cardcodes" VALUES (912, '辽宁省', '朝阳市', '双塔区', '211302'); +INSERT INTO "public"."cardcodes" VALUES (913, '辽宁省', '朝阳市', '龙城区', '211303'); +INSERT INTO "public"."cardcodes" VALUES (914, '辽宁省', '朝阳市', '朝阳县', '211321'); +INSERT INTO "public"."cardcodes" VALUES (915, '辽宁省', '朝阳市', '建平县', '211322'); +INSERT INTO "public"."cardcodes" VALUES (916, '辽宁省', '朝阳市', '凌源县', '211323'); +INSERT INTO "public"."cardcodes" VALUES (917, '辽宁省', '朝阳市', '喀喇沁左翼蒙古族自治县', '211324'); +INSERT INTO "public"."cardcodes" VALUES (918, '辽宁省', '朝阳市', '建昌县', '211325'); +INSERT INTO "public"."cardcodes" VALUES (919, '辽宁省', '朝阳市', '北票县', '211326'); +INSERT INTO "public"."cardcodes" VALUES (920, '辽宁省', '朝阳市', '北票市', '211381'); +INSERT INTO "public"."cardcodes" VALUES (921, '辽宁省', '朝阳市', '凌源市', '211382'); +INSERT INTO "public"."cardcodes" VALUES (922, '辽宁省', '葫芦岛市', '市辖区', '211401'); +INSERT INTO "public"."cardcodes" VALUES (923, '辽宁省', '葫芦岛市', '连山区', '211402'); +INSERT INTO "public"."cardcodes" VALUES (924, '辽宁省', '葫芦岛市', '龙港区', '211403'); +INSERT INTO "public"."cardcodes" VALUES (925, '辽宁省', '葫芦岛市', '南票区', '211404'); +INSERT INTO "public"."cardcodes" VALUES (926, '辽宁省', '葫芦岛市', '绥中县', '211421'); +INSERT INTO "public"."cardcodes" VALUES (927, '辽宁省', '葫芦岛市', '建昌县', '211422'); +INSERT INTO "public"."cardcodes" VALUES (928, '辽宁省', '葫芦岛市', '兴城市', '211481'); +INSERT INTO "public"."cardcodes" VALUES (929, '辽宁省', '铁岭市', '铁岭市', '212101'); +INSERT INTO "public"."cardcodes" VALUES (930, '辽宁省', '铁岭市', '铁法市', '212102'); +INSERT INTO "public"."cardcodes" VALUES (931, '辽宁省', '铁岭市', '铁岭县', '212121'); +INSERT INTO "public"."cardcodes" VALUES (932, '辽宁省', '铁岭市', '开原县', '212122'); +INSERT INTO "public"."cardcodes" VALUES (933, '辽宁省', '铁岭市', '西丰县', '212123'); +INSERT INTO "public"."cardcodes" VALUES (934, '辽宁省', '铁岭市', '昌图县', '212124'); +INSERT INTO "public"."cardcodes" VALUES (935, '辽宁省', '铁岭市', '康平县', '212125'); +INSERT INTO "public"."cardcodes" VALUES (936, '辽宁省', '铁岭市', '法库县', '212126'); +INSERT INTO "public"."cardcodes" VALUES (937, '辽宁省', '朝阳市', '建昌县', '212225'); +INSERT INTO "public"."cardcodes" VALUES (938, '辽宁省', '朝阳市', '北票县', '212226'); +INSERT INTO "public"."cardcodes" VALUES (939, '辽宁省', NULL, '瓦房店市', '219001'); +INSERT INTO "public"."cardcodes" VALUES (940, '辽宁省', NULL, '海城市', '219002'); +INSERT INTO "public"."cardcodes" VALUES (941, '辽宁省', NULL, '锦西市', '219003'); +INSERT INTO "public"."cardcodes" VALUES (942, '辽宁省', NULL, '兴城市', '219004'); +INSERT INTO "public"."cardcodes" VALUES (943, '辽宁省', NULL, '铁法市', '219005'); +INSERT INTO "public"."cardcodes" VALUES (944, '辽宁省', NULL, '北票市', '219006'); +INSERT INTO "public"."cardcodes" VALUES (945, '辽宁省', NULL, '开原市', '219007'); +INSERT INTO "public"."cardcodes" VALUES (946, '吉林省', '长春市', '市辖区', '220101'); +INSERT INTO "public"."cardcodes" VALUES (947, '吉林省', '长春市', '南关区', '220102'); +INSERT INTO "public"."cardcodes" VALUES (948, '吉林省', '长春市', '宽城区', '220103'); +INSERT INTO "public"."cardcodes" VALUES (949, '吉林省', '长春市', '朝阳区', '220104'); +INSERT INTO "public"."cardcodes" VALUES (950, '吉林省', '长春市', '二道区', '220105'); +INSERT INTO "public"."cardcodes" VALUES (951, '吉林省', '长春市', '绿园区', '220106'); +INSERT INTO "public"."cardcodes" VALUES (952, '吉林省', '长春市', '郊区', '220111'); +INSERT INTO "public"."cardcodes" VALUES (953, '吉林省', '长春市', '双阳区', '220112'); +INSERT INTO "public"."cardcodes" VALUES (954, '吉林省', '长春市', '市区', '220120'); +INSERT INTO "public"."cardcodes" VALUES (955, '吉林省', '长春市', '榆树县', '220121'); +INSERT INTO "public"."cardcodes" VALUES (956, '吉林省', '长春市', '农安县', '220122'); +INSERT INTO "public"."cardcodes" VALUES (957, '吉林省', '长春市', '九台县', '220123'); +INSERT INTO "public"."cardcodes" VALUES (958, '吉林省', '长春市', '德惠县', '220124'); +INSERT INTO "public"."cardcodes" VALUES (959, '吉林省', '长春市', '双阳县', '220125'); +INSERT INTO "public"."cardcodes" VALUES (960, '吉林省', '长春市', '九台市', '220181'); +INSERT INTO "public"."cardcodes" VALUES (961, '吉林省', '长春市', '榆树市', '220182'); +INSERT INTO "public"."cardcodes" VALUES (962, '吉林省', '长春市', '德惠市', '220183'); +INSERT INTO "public"."cardcodes" VALUES (963, '吉林省', '吉林市', '市辖区', '220201'); +INSERT INTO "public"."cardcodes" VALUES (964, '吉林省', '吉林市', '昌邑区', '220202'); +INSERT INTO "public"."cardcodes" VALUES (965, '吉林省', '吉林市', '龙潭区', '220203'); +INSERT INTO "public"."cardcodes" VALUES (966, '吉林省', '吉林市', '船营区', '220204'); +INSERT INTO "public"."cardcodes" VALUES (967, '吉林省', '吉林市', '丰满区', '220211'); +INSERT INTO "public"."cardcodes" VALUES (968, '吉林省', '吉林市', '市区', '220220'); +INSERT INTO "public"."cardcodes" VALUES (969, '吉林省', '吉林市', '永吉县', '220221'); +INSERT INTO "public"."cardcodes" VALUES (970, '吉林省', '吉林市', '舒兰县', '220222'); +INSERT INTO "public"."cardcodes" VALUES (971, '吉林省', '吉林市', '磐石县', '220223'); +INSERT INTO "public"."cardcodes" VALUES (972, '吉林省', '吉林市', '蛟河县', '220224'); +INSERT INTO "public"."cardcodes" VALUES (973, '吉林省', '吉林市', '桦甸县', '220225'); +INSERT INTO "public"."cardcodes" VALUES (974, '吉林省', '吉林市', '蛟河市', '220281'); +INSERT INTO "public"."cardcodes" VALUES (975, '吉林省', '吉林市', '桦甸市', '220282'); +INSERT INTO "public"."cardcodes" VALUES (976, '吉林省', '吉林市', '舒兰市', '220283'); +INSERT INTO "public"."cardcodes" VALUES (977, '吉林省', '吉林市', '磐石市', '220284'); +INSERT INTO "public"."cardcodes" VALUES (978, '吉林省', '四平市', '市辖区', '220301'); +INSERT INTO "public"."cardcodes" VALUES (979, '吉林省', '四平市', '铁西区', '220302'); +INSERT INTO "public"."cardcodes" VALUES (980, '吉林省', '四平市', '铁东区', '220303'); +INSERT INTO "public"."cardcodes" VALUES (981, '吉林省', '四平市', '公主岭市', '220319'); +INSERT INTO "public"."cardcodes" VALUES (982, '吉林省', '四平市', '怀德县', '220321'); +INSERT INTO "public"."cardcodes" VALUES (983, '吉林省', '四平市', '梨树县', '220322'); +INSERT INTO "public"."cardcodes" VALUES (984, '吉林省', '四平市', '伊通满族自治县', '220323'); +INSERT INTO "public"."cardcodes" VALUES (985, '吉林省', '四平市', '双辽县', '220324'); +INSERT INTO "public"."cardcodes" VALUES (986, '吉林省', '四平市', '公主岭市', '220381'); +INSERT INTO "public"."cardcodes" VALUES (987, '吉林省', '四平市', '双辽市', '220382'); +INSERT INTO "public"."cardcodes" VALUES (988, '吉林省', '辽源市', '市辖区', '220401'); +INSERT INTO "public"."cardcodes" VALUES (989, '吉林省', '辽源市', '龙山区', '220402'); +INSERT INTO "public"."cardcodes" VALUES (990, '吉林省', '辽源市', '西安区', '220403'); +INSERT INTO "public"."cardcodes" VALUES (991, '吉林省', '辽源市', '东丰县', '220421'); +INSERT INTO "public"."cardcodes" VALUES (992, '吉林省', '辽源市', '东辽县', '220422'); +INSERT INTO "public"."cardcodes" VALUES (993, '吉林省', '通化市', '市辖区', '220501'); +INSERT INTO "public"."cardcodes" VALUES (994, '吉林省', '通化市', '东昌区', '220502'); +INSERT INTO "public"."cardcodes" VALUES (995, '吉林省', '通化市', '二道江区', '220503'); +INSERT INTO "public"."cardcodes" VALUES (996, '吉林省', '通化市', '梅河口市', '220519'); +INSERT INTO "public"."cardcodes" VALUES (997, '吉林省', '通化市', '通化县', '220521'); +INSERT INTO "public"."cardcodes" VALUES (998, '吉林省', '通化市', '集安县', '220522'); +INSERT INTO "public"."cardcodes" VALUES (999, '吉林省', '通化市', '辉南县', '220523'); +INSERT INTO "public"."cardcodes" VALUES (1000, '吉林省', '通化市', '柳河县', '220524'); +INSERT INTO "public"."cardcodes" VALUES (1001, '吉林省', '通化市', '梅河口市', '220581'); +INSERT INTO "public"."cardcodes" VALUES (1002, '吉林省', '通化市', '集安市', '220582'); +INSERT INTO "public"."cardcodes" VALUES (1003, '吉林省', '白山市', '市辖区', '220601'); +INSERT INTO "public"."cardcodes" VALUES (1004, '吉林省', '白山市', '八道江区', '220602'); +INSERT INTO "public"."cardcodes" VALUES (1005, '吉林省', '白山市', '三岔子区', '220603'); +INSERT INTO "public"."cardcodes" VALUES (1006, '吉林省', '白山市', '临江区', '220604'); +INSERT INTO "public"."cardcodes" VALUES (1007, '吉林省', '白山市', '抚松县', '220621'); +INSERT INTO "public"."cardcodes" VALUES (1008, '吉林省', '白山市', '靖宇县', '220622'); +INSERT INTO "public"."cardcodes" VALUES (1009, '吉林省', '白山市', '长白朝鲜族自治县', '220623'); +INSERT INTO "public"."cardcodes" VALUES (1010, '吉林省', '白山市', '江源县', '220625'); +INSERT INTO "public"."cardcodes" VALUES (1011, '吉林省', '白山市', '临江市', '220681'); +INSERT INTO "public"."cardcodes" VALUES (1012, '吉林省', '松原市', '市辖区', '220701'); +INSERT INTO "public"."cardcodes" VALUES (1013, '吉林省', '松原市', '宁江区', '220702'); +INSERT INTO "public"."cardcodes" VALUES (1014, '吉林省', '松原市', '前郭尔罗斯蒙古族自治县', '220721'); +INSERT INTO "public"."cardcodes" VALUES (1015, '吉林省', '松原市', '长岭县', '220722'); +INSERT INTO "public"."cardcodes" VALUES (1016, '吉林省', '松原市', '乾安县', '220723'); +INSERT INTO "public"."cardcodes" VALUES (1017, '吉林省', '松原市', '扶余县', '220724'); +INSERT INTO "public"."cardcodes" VALUES (1018, '吉林省', '白城市', '市辖区', '220801'); +INSERT INTO "public"."cardcodes" VALUES (1019, '吉林省', '白城市', '洮北区', '220802'); +INSERT INTO "public"."cardcodes" VALUES (1020, '吉林省', '白城市', '镇赉县', '220821'); +INSERT INTO "public"."cardcodes" VALUES (1021, '吉林省', '白城市', '通榆县', '220822'); +INSERT INTO "public"."cardcodes" VALUES (1022, '吉林省', '白城市', '洮南市', '220881'); +INSERT INTO "public"."cardcodes" VALUES (1023, '吉林省', '白城市', '大安市', '220882'); +INSERT INTO "public"."cardcodes" VALUES (1024, '吉林省', '白城地区', '白城市', '222301'); +INSERT INTO "public"."cardcodes" VALUES (1025, '吉林省', '白城地区', '洮南市', '222302'); +INSERT INTO "public"."cardcodes" VALUES (1026, '吉林省', '白城地区', '扶余市', '222303'); +INSERT INTO "public"."cardcodes" VALUES (1027, '吉林省', '白城地区', '大安市', '222304'); +INSERT INTO "public"."cardcodes" VALUES (1028, '吉林省', '白城地区', '扶余县', '222321'); +INSERT INTO "public"."cardcodes" VALUES (1029, '吉林省', '白城地区', '洮安县', '222322'); +INSERT INTO "public"."cardcodes" VALUES (1030, '吉林省', '白城地区', '长岭县', '222323'); +INSERT INTO "public"."cardcodes" VALUES (1031, '吉林省', '白城地区', '前郭尔罗斯蒙古族自治县', '222324'); +INSERT INTO "public"."cardcodes" VALUES (1032, '吉林省', '白城地区', '大安县', '222325'); +INSERT INTO "public"."cardcodes" VALUES (1033, '吉林省', '白城地区', '镇赉县', '222326'); +INSERT INTO "public"."cardcodes" VALUES (1034, '吉林省', '白城地区', '通榆县', '222327'); +INSERT INTO "public"."cardcodes" VALUES (1035, '吉林省', '白城地区', '乾安县', '222328'); +INSERT INTO "public"."cardcodes" VALUES (1036, '吉林省', '延边朝鲜族自治州', '延吉市', '222401'); +INSERT INTO "public"."cardcodes" VALUES (1037, '吉林省', '延边朝鲜族自治州', '图们市', '222402'); +INSERT INTO "public"."cardcodes" VALUES (1038, '吉林省', '延边朝鲜族自治州', '敦化市', '222403'); +INSERT INTO "public"."cardcodes" VALUES (1039, '吉林省', '延边朝鲜族自治州', '珲春市', '222404'); +INSERT INTO "public"."cardcodes" VALUES (1040, '吉林省', '延边朝鲜族自治州', '龙井市', '222405'); +INSERT INTO "public"."cardcodes" VALUES (1041, '吉林省', '延边朝鲜族自治州', '和龙市', '222406'); +INSERT INTO "public"."cardcodes" VALUES (1042, '吉林省', '延边朝鲜族自治州', '龙井县', '222421'); +INSERT INTO "public"."cardcodes" VALUES (1043, '吉林省', '延边朝鲜族自治州', '敦化县', '222422'); +INSERT INTO "public"."cardcodes" VALUES (1044, '吉林省', '延边朝鲜族自治州', '和龙县', '222423'); +INSERT INTO "public"."cardcodes" VALUES (1045, '吉林省', '延边朝鲜族自治州', '汪清县', '222424'); +INSERT INTO "public"."cardcodes" VALUES (1046, '吉林省', '延边朝鲜族自治州', '珲春县', '222425'); +INSERT INTO "public"."cardcodes" VALUES (1047, '吉林省', '延边朝鲜族自治州', '安图县', '222426'); +INSERT INTO "public"."cardcodes" VALUES (1048, '吉林省', NULL, '四平市', '222101'); +INSERT INTO "public"."cardcodes" VALUES (1049, '吉林省', NULL, '辽源市', '222102'); +INSERT INTO "public"."cardcodes" VALUES (1050, '吉林省', NULL, '怀德县', '222121'); +INSERT INTO "public"."cardcodes" VALUES (1051, '吉林省', NULL, '梨树县', '222122'); +INSERT INTO "public"."cardcodes" VALUES (1052, '吉林省', NULL, '伊通满族自治县', '222123'); +INSERT INTO "public"."cardcodes" VALUES (1053, '吉林省', NULL, '东丰县', '222124'); +INSERT INTO "public"."cardcodes" VALUES (1054, '吉林省', NULL, '双辽县', '222125'); +INSERT INTO "public"."cardcodes" VALUES (1055, '吉林省', NULL, '通化市', '222201'); +INSERT INTO "public"."cardcodes" VALUES (1056, '吉林省', NULL, '浑江市', '222202'); +INSERT INTO "public"."cardcodes" VALUES (1057, '吉林省', NULL, '海龙县', '222221'); +INSERT INTO "public"."cardcodes" VALUES (1058, '吉林省', NULL, '通化县', '222222'); +INSERT INTO "public"."cardcodes" VALUES (1059, '吉林省', NULL, '柳河县', '222223'); +INSERT INTO "public"."cardcodes" VALUES (1060, '吉林省', NULL, '辉南县', '222224'); +INSERT INTO "public"."cardcodes" VALUES (1061, '吉林省', NULL, '集安县', '222225'); +INSERT INTO "public"."cardcodes" VALUES (1062, '吉林省', NULL, '抚松县', '222226'); +INSERT INTO "public"."cardcodes" VALUES (1063, '吉林省', NULL, '靖宇县', '222227'); +INSERT INTO "public"."cardcodes" VALUES (1064, '吉林省', NULL, '长白朝鲜族自治县', '222228'); +INSERT INTO "public"."cardcodes" VALUES (1065, '吉林省', NULL, '公主岭市', '229001'); +INSERT INTO "public"."cardcodes" VALUES (1066, '吉林省', NULL, '梅河口市', '229002'); +INSERT INTO "public"."cardcodes" VALUES (1067, '吉林省', NULL, '集安市', '229003'); +INSERT INTO "public"."cardcodes" VALUES (1068, '吉林省', NULL, '桦甸市', '229004'); +INSERT INTO "public"."cardcodes" VALUES (1069, '吉林省', NULL, '九台市', '229005'); +INSERT INTO "public"."cardcodes" VALUES (1070, '黑龙江省', '哈尔滨市', '市辖区', '230101'); +INSERT INTO "public"."cardcodes" VALUES (1071, '黑龙江省', '哈尔滨市', '道里区', '230102'); +INSERT INTO "public"."cardcodes" VALUES (1072, '黑龙江省', '哈尔滨市', '南岗区', '230103'); +INSERT INTO "public"."cardcodes" VALUES (1073, '黑龙江省', '哈尔滨市', '道外区', '230104'); +INSERT INTO "public"."cardcodes" VALUES (1074, '黑龙江省', '哈尔滨市', '太平区', '230105'); +INSERT INTO "public"."cardcodes" VALUES (1075, '黑龙江省', '哈尔滨市', '香坊区', '230106'); +INSERT INTO "public"."cardcodes" VALUES (1076, '黑龙江省', '哈尔滨市', '动力区', '230107'); +INSERT INTO "public"."cardcodes" VALUES (1077, '黑龙江省', '哈尔滨市', '平房区', '230108'); +INSERT INTO "public"."cardcodes" VALUES (1078, '黑龙江省', '哈尔滨市', '松北区', '230109'); +INSERT INTO "public"."cardcodes" VALUES (1079, '黑龙江省', '哈尔滨市', '香坊区', '230110'); +INSERT INTO "public"."cardcodes" VALUES (1080, '黑龙江省', '哈尔滨市', '呼兰区', '230111'); +INSERT INTO "public"."cardcodes" VALUES (1081, '黑龙江省', '哈尔滨市', '阿城区', '230112'); +INSERT INTO "public"."cardcodes" VALUES (1082, '黑龙江省', '哈尔滨市', '阿城市', '230119'); +INSERT INTO "public"."cardcodes" VALUES (1083, '黑龙江省', '哈尔滨市', '呼兰县', '230121'); +INSERT INTO "public"."cardcodes" VALUES (1084, '黑龙江省', '哈尔滨市', '阿城县', '230122'); +INSERT INTO "public"."cardcodes" VALUES (1085, '黑龙江省', '哈尔滨市', '依兰县', '230123'); +INSERT INTO "public"."cardcodes" VALUES (1086, '黑龙江省', '哈尔滨市', '方正县', '230124'); +INSERT INTO "public"."cardcodes" VALUES (1087, '黑龙江省', '哈尔滨市', '宾县', '230125'); +INSERT INTO "public"."cardcodes" VALUES (1088, '黑龙江省', '哈尔滨市', '巴彦县', '230126'); +INSERT INTO "public"."cardcodes" VALUES (1089, '黑龙江省', '哈尔滨市', '木兰县', '230127'); +INSERT INTO "public"."cardcodes" VALUES (1090, '黑龙江省', '哈尔滨市', '通河县', '230128'); +INSERT INTO "public"."cardcodes" VALUES (1091, '黑龙江省', '哈尔滨市', '延寿县', '230129'); +INSERT INTO "public"."cardcodes" VALUES (1092, '黑龙江省', '哈尔滨市', '阿城市', '230181'); +INSERT INTO "public"."cardcodes" VALUES (1093, '黑龙江省', '哈尔滨市', '双城市', '230182'); +INSERT INTO "public"."cardcodes" VALUES (1094, '黑龙江省', '哈尔滨市', '尚志市', '230183'); +INSERT INTO "public"."cardcodes" VALUES (1095, '黑龙江省', '哈尔滨市', '五常市', '230184'); +INSERT INTO "public"."cardcodes" VALUES (1096, '黑龙江省', '齐齐哈尔市', '市辖区', '230201'); +INSERT INTO "public"."cardcodes" VALUES (1097, '黑龙江省', '齐齐哈尔市', '龙沙区', '230202'); +INSERT INTO "public"."cardcodes" VALUES (1098, '黑龙江省', '齐齐哈尔市', '建华区', '230203'); +INSERT INTO "public"."cardcodes" VALUES (1099, '黑龙江省', '齐齐哈尔市', '铁锋区', '230204'); +INSERT INTO "public"."cardcodes" VALUES (1100, '黑龙江省', '齐齐哈尔市', '昂昂溪区', '230205'); +INSERT INTO "public"."cardcodes" VALUES (1101, '黑龙江省', '齐齐哈尔市', '富拉尔基区', '230206'); +INSERT INTO "public"."cardcodes" VALUES (1102, '黑龙江省', '齐齐哈尔市', '碾子山区', '230207'); +INSERT INTO "public"."cardcodes" VALUES (1103, '黑龙江省', '齐齐哈尔市', '梅里斯达斡尔族区', '230208'); +INSERT INTO "public"."cardcodes" VALUES (1104, '黑龙江省', '齐齐哈尔市', '龙江县', '230221'); +INSERT INTO "public"."cardcodes" VALUES (1105, '黑龙江省', '齐齐哈尔市', '讷河县', '230222'); +INSERT INTO "public"."cardcodes" VALUES (1106, '黑龙江省', '齐齐哈尔市', '依安县', '230223'); +INSERT INTO "public"."cardcodes" VALUES (1107, '黑龙江省', '齐齐哈尔市', '泰来县', '230224'); +INSERT INTO "public"."cardcodes" VALUES (1108, '黑龙江省', '齐齐哈尔市', '甘南县', '230225'); +INSERT INTO "public"."cardcodes" VALUES (1109, '黑龙江省', '齐齐哈尔市', '杜尔伯特蒙古族自治县', '230226'); +INSERT INTO "public"."cardcodes" VALUES (1110, '黑龙江省', '齐齐哈尔市', '富裕县', '230227'); +INSERT INTO "public"."cardcodes" VALUES (1111, '黑龙江省', '齐齐哈尔市', '林甸县', '230228'); +INSERT INTO "public"."cardcodes" VALUES (1112, '黑龙江省', '齐齐哈尔市', '克山县', '230229'); +INSERT INTO "public"."cardcodes" VALUES (1113, '黑龙江省', '齐齐哈尔市', '克东县', '230230'); +INSERT INTO "public"."cardcodes" VALUES (1114, '黑龙江省', '齐齐哈尔市', '拜泉县', '230231'); +INSERT INTO "public"."cardcodes" VALUES (1115, '黑龙江省', '齐齐哈尔市', '讷河市', '230281'); +INSERT INTO "public"."cardcodes" VALUES (1116, '黑龙江省', '鸡西市', '市辖区', '230301'); +INSERT INTO "public"."cardcodes" VALUES (1117, '黑龙江省', '鸡西市', '鸡冠区', '230302'); +INSERT INTO "public"."cardcodes" VALUES (1118, '黑龙江省', '鸡西市', '恒山区', '230303'); +INSERT INTO "public"."cardcodes" VALUES (1119, '黑龙江省', '鸡西市', '滴道区', '230304'); +INSERT INTO "public"."cardcodes" VALUES (1120, '黑龙江省', '鸡西市', '梨树区', '230305'); +INSERT INTO "public"."cardcodes" VALUES (1121, '黑龙江省', '鸡西市', '城子河区', '230306'); +INSERT INTO "public"."cardcodes" VALUES (1122, '黑龙江省', '鸡西市', '麻山区', '230307'); +INSERT INTO "public"."cardcodes" VALUES (1123, '黑龙江省', '鸡西市', '鸡东县', '230321'); +INSERT INTO "public"."cardcodes" VALUES (1124, '黑龙江省', '鸡西市', '虎林市', '230381'); +INSERT INTO "public"."cardcodes" VALUES (1125, '黑龙江省', '鸡西市', '密山市', '230382'); +INSERT INTO "public"."cardcodes" VALUES (1126, '黑龙江省', '鹤岗市', '市辖区', '230401'); +INSERT INTO "public"."cardcodes" VALUES (1127, '黑龙江省', '鹤岗市', '向阳区', '230402'); +INSERT INTO "public"."cardcodes" VALUES (1128, '黑龙江省', '鹤岗市', '工农区', '230403'); +INSERT INTO "public"."cardcodes" VALUES (1129, '黑龙江省', '鹤岗市', '南山区', '230404'); +INSERT INTO "public"."cardcodes" VALUES (1334, '上海市', NULL, '南汇县', '310225'); +INSERT INTO "public"."cardcodes" VALUES (1130, '黑龙江省', '鹤岗市', '兴安区', '230405'); +INSERT INTO "public"."cardcodes" VALUES (1131, '黑龙江省', '鹤岗市', '东山区', '230406'); +INSERT INTO "public"."cardcodes" VALUES (1132, '黑龙江省', '鹤岗市', '兴山区', '230407'); +INSERT INTO "public"."cardcodes" VALUES (1133, '黑龙江省', '鹤岗市', '萝北县', '230421'); +INSERT INTO "public"."cardcodes" VALUES (1134, '黑龙江省', '鹤岗市', '绥滨县', '230422'); +INSERT INTO "public"."cardcodes" VALUES (1135, '黑龙江省', '双鸭山市', '市辖区', '230501'); +INSERT INTO "public"."cardcodes" VALUES (1136, '黑龙江省', '双鸭山市', '尖山区', '230502'); +INSERT INTO "public"."cardcodes" VALUES (1137, '黑龙江省', '双鸭山市', '岭东区', '230503'); +INSERT INTO "public"."cardcodes" VALUES (1138, '黑龙江省', '双鸭山市', '岭西区', '230504'); +INSERT INTO "public"."cardcodes" VALUES (1139, '黑龙江省', '双鸭山市', '四方台区', '230505'); +INSERT INTO "public"."cardcodes" VALUES (1140, '黑龙江省', '双鸭山市', '宝山区', '230506'); +INSERT INTO "public"."cardcodes" VALUES (1141, '黑龙江省', '双鸭山市', '集贤县', '230521'); +INSERT INTO "public"."cardcodes" VALUES (1142, '黑龙江省', '双鸭山市', '友谊县', '230522'); +INSERT INTO "public"."cardcodes" VALUES (1143, '黑龙江省', '双鸭山市', '宝清县', '230523'); +INSERT INTO "public"."cardcodes" VALUES (1144, '黑龙江省', '双鸭山市', '饶河县', '230524'); +INSERT INTO "public"."cardcodes" VALUES (1145, '黑龙江省', '大庆市', '市辖区', '230601'); +INSERT INTO "public"."cardcodes" VALUES (1146, '黑龙江省', '大庆市', '萨尔图区', '230602'); +INSERT INTO "public"."cardcodes" VALUES (1147, '黑龙江省', '大庆市', '龙凤区', '230603'); +INSERT INTO "public"."cardcodes" VALUES (1148, '黑龙江省', '大庆市', '让胡路区', '230604'); +INSERT INTO "public"."cardcodes" VALUES (1149, '黑龙江省', '大庆市', '红岗区', '230605'); +INSERT INTO "public"."cardcodes" VALUES (1150, '黑龙江省', '大庆市', '大同区', '230606'); +INSERT INTO "public"."cardcodes" VALUES (1151, '黑龙江省', '大庆市', '肇州县', '230621'); +INSERT INTO "public"."cardcodes" VALUES (1152, '黑龙江省', '大庆市', '肇源县', '230622'); +INSERT INTO "public"."cardcodes" VALUES (1153, '黑龙江省', '大庆市', '林甸县', '230623'); +INSERT INTO "public"."cardcodes" VALUES (1154, '黑龙江省', '大庆市', '杜尔伯特蒙古族自治县', '230624'); +INSERT INTO "public"."cardcodes" VALUES (1155, '黑龙江省', '伊春市', '市辖区', '230701'); +INSERT INTO "public"."cardcodes" VALUES (1156, '黑龙江省', '伊春市', '伊春区', '230702'); +INSERT INTO "public"."cardcodes" VALUES (1157, '黑龙江省', '伊春市', '南岔区', '230703'); +INSERT INTO "public"."cardcodes" VALUES (1158, '黑龙江省', '伊春市', '友好区', '230704'); +INSERT INTO "public"."cardcodes" VALUES (1159, '黑龙江省', '伊春市', '西林区', '230705'); +INSERT INTO "public"."cardcodes" VALUES (1160, '黑龙江省', '伊春市', '翠峦区', '230706'); +INSERT INTO "public"."cardcodes" VALUES (1161, '黑龙江省', '伊春市', '新青区', '230707'); +INSERT INTO "public"."cardcodes" VALUES (1162, '黑龙江省', '伊春市', '美溪区', '230708'); +INSERT INTO "public"."cardcodes" VALUES (1163, '黑龙江省', '伊春市', '金山屯区', '230709'); +INSERT INTO "public"."cardcodes" VALUES (1164, '黑龙江省', '伊春市', '五营区', '230710'); +INSERT INTO "public"."cardcodes" VALUES (1165, '黑龙江省', '伊春市', '乌马河区', '230711'); +INSERT INTO "public"."cardcodes" VALUES (1166, '黑龙江省', '伊春市', '汤旺河区', '230712'); +INSERT INTO "public"."cardcodes" VALUES (1167, '黑龙江省', '伊春市', '带岭区', '230713'); +INSERT INTO "public"."cardcodes" VALUES (1168, '黑龙江省', '伊春市', '乌伊岭区', '230714'); +INSERT INTO "public"."cardcodes" VALUES (1169, '黑龙江省', '伊春市', '红星区', '230715'); +INSERT INTO "public"."cardcodes" VALUES (1170, '黑龙江省', '伊春市', '上甘岭区', '230716'); +INSERT INTO "public"."cardcodes" VALUES (1171, '黑龙江省', '伊春市', '铁力县', '230721'); +INSERT INTO "public"."cardcodes" VALUES (1172, '黑龙江省', '伊春市', '嘉荫县', '230722'); +INSERT INTO "public"."cardcodes" VALUES (1173, '黑龙江省', '伊春市', '铁力市', '230781'); +INSERT INTO "public"."cardcodes" VALUES (1174, '黑龙江省', '佳木斯市', '市辖区', '230801'); +INSERT INTO "public"."cardcodes" VALUES (1175, '黑龙江省', '佳木斯市', '永红区', '230802'); +INSERT INTO "public"."cardcodes" VALUES (1176, '黑龙江省', '佳木斯市', '向阳区', '230803'); +INSERT INTO "public"."cardcodes" VALUES (1177, '黑龙江省', '佳木斯市', '前进区', '230804'); +INSERT INTO "public"."cardcodes" VALUES (1178, '黑龙江省', '佳木斯市', '东风区', '230805'); +INSERT INTO "public"."cardcodes" VALUES (1179, '黑龙江省', '佳木斯市', '郊区', '230811'); +INSERT INTO "public"."cardcodes" VALUES (1180, '黑龙江省', '佳木斯市', '富锦县', '230821'); +INSERT INTO "public"."cardcodes" VALUES (1181, '黑龙江省', '佳木斯市', '桦南县', '230822'); +INSERT INTO "public"."cardcodes" VALUES (1182, '黑龙江省', '佳木斯市', '依兰县', '230823'); +INSERT INTO "public"."cardcodes" VALUES (1183, '黑龙江省', '佳木斯市', '集贤县', '230825'); +INSERT INTO "public"."cardcodes" VALUES (1184, '黑龙江省', '佳木斯市', '桦川县', '230826'); +INSERT INTO "public"."cardcodes" VALUES (1185, '黑龙江省', '佳木斯市', '宝清县', '230827'); +INSERT INTO "public"."cardcodes" VALUES (1186, '黑龙江省', '佳木斯市', '汤原县', '230828'); +INSERT INTO "public"."cardcodes" VALUES (1187, '黑龙江省', '佳木斯市', '绥滨县', '230829'); +INSERT INTO "public"."cardcodes" VALUES (1188, '黑龙江省', '佳木斯市', '萝北县', '230830'); +INSERT INTO "public"."cardcodes" VALUES (1189, '黑龙江省', '佳木斯市', '同江县', '230831'); +INSERT INTO "public"."cardcodes" VALUES (1190, '黑龙江省', '佳木斯市', '饶河县', '230832'); +INSERT INTO "public"."cardcodes" VALUES (1191, '黑龙江省', '佳木斯市', '抚远县', '230833'); +INSERT INTO "public"."cardcodes" VALUES (1192, '黑龙江省', '佳木斯市', '友谊县', '230834'); +INSERT INTO "public"."cardcodes" VALUES (1193, '黑龙江省', '佳木斯市', '同江市', '230881'); +INSERT INTO "public"."cardcodes" VALUES (1194, '黑龙江省', '佳木斯市', '富锦市', '230882'); +INSERT INTO "public"."cardcodes" VALUES (1195, '黑龙江省', '七台河市', '市辖区', '230901'); +INSERT INTO "public"."cardcodes" VALUES (1196, '黑龙江省', '七台河市', '新兴区', '230902'); +INSERT INTO "public"."cardcodes" VALUES (1197, '黑龙江省', '七台河市', '桃山区', '230903'); +INSERT INTO "public"."cardcodes" VALUES (1198, '黑龙江省', '七台河市', '茄子河区', '230904'); +INSERT INTO "public"."cardcodes" VALUES (1199, '黑龙江省', '七台河市', '勃利县', '230921'); +INSERT INTO "public"."cardcodes" VALUES (1200, '黑龙江省', '牡丹江市', '市辖区', '231001'); +INSERT INTO "public"."cardcodes" VALUES (1201, '黑龙江省', '牡丹江市', '东安区', '231002'); +INSERT INTO "public"."cardcodes" VALUES (1202, '黑龙江省', '牡丹江市', '阳明区', '231003'); +INSERT INTO "public"."cardcodes" VALUES (1203, '黑龙江省', '牡丹江市', '爱民区', '231004'); +INSERT INTO "public"."cardcodes" VALUES (1204, '黑龙江省', '牡丹江市', '西安区', '231005'); +INSERT INTO "public"."cardcodes" VALUES (1205, '黑龙江省', '牡丹江市', '郊区', '231011'); +INSERT INTO "public"."cardcodes" VALUES (1206, '黑龙江省', '牡丹江市', '绥芬河市', '231020'); +INSERT INTO "public"."cardcodes" VALUES (1207, '黑龙江省', '牡丹江市', '宁安县', '231021'); +INSERT INTO "public"."cardcodes" VALUES (1208, '黑龙江省', '牡丹江市', '海林县', '231022'); +INSERT INTO "public"."cardcodes" VALUES (1209, '黑龙江省', '牡丹江市', '穆棱县', '231023'); +INSERT INTO "public"."cardcodes" VALUES (1210, '黑龙江省', '牡丹江市', '东宁县', '231024'); +INSERT INTO "public"."cardcodes" VALUES (1211, '黑龙江省', '牡丹江市', '林口县', '231025'); +INSERT INTO "public"."cardcodes" VALUES (1212, '黑龙江省', '牡丹江市', '密山县', '231026'); +INSERT INTO "public"."cardcodes" VALUES (1213, '黑龙江省', '牡丹江市', '虎林县', '231027'); +INSERT INTO "public"."cardcodes" VALUES (1214, '黑龙江省', '牡丹江市', '绥芬河市', '231081'); +INSERT INTO "public"."cardcodes" VALUES (1215, '黑龙江省', '牡丹江市', '密山市', '231082'); +INSERT INTO "public"."cardcodes" VALUES (1216, '黑龙江省', '牡丹江市', '海林市', '231083'); +INSERT INTO "public"."cardcodes" VALUES (1217, '黑龙江省', '牡丹江市', '宁安市', '231084'); +INSERT INTO "public"."cardcodes" VALUES (1218, '黑龙江省', '牡丹江市', '穆棱市', '231085'); +INSERT INTO "public"."cardcodes" VALUES (1219, '黑龙江省', '黑河市', '市辖区', '231101'); +INSERT INTO "public"."cardcodes" VALUES (1220, '黑龙江省', '黑河市', '爱辉区', '231102'); +INSERT INTO "public"."cardcodes" VALUES (1221, '黑龙江省', '黑河市', '嫩江县', '231121'); +INSERT INTO "public"."cardcodes" VALUES (1222, '黑龙江省', '黑河市', '逊克县', '231123'); +INSERT INTO "public"."cardcodes" VALUES (1223, '黑龙江省', '黑河市', '孙吴县', '231124'); +INSERT INTO "public"."cardcodes" VALUES (1224, '黑龙江省', '黑河市', '北安市', '231181'); +INSERT INTO "public"."cardcodes" VALUES (1225, '黑龙江省', '黑河市', '五大连池市', '231182'); +INSERT INTO "public"."cardcodes" VALUES (1226, '黑龙江省', '绥化市', '市辖区', '231201'); +INSERT INTO "public"."cardcodes" VALUES (1227, '黑龙江省', '绥化市', '北林区', '231202'); +INSERT INTO "public"."cardcodes" VALUES (1228, '黑龙江省', '绥化市', '望奎县', '231221'); +INSERT INTO "public"."cardcodes" VALUES (1229, '黑龙江省', '绥化市', '兰西县', '231222'); +INSERT INTO "public"."cardcodes" VALUES (1230, '黑龙江省', '绥化市', '青冈县', '231223'); +INSERT INTO "public"."cardcodes" VALUES (1231, '黑龙江省', '绥化市', '庆安县', '231224'); +INSERT INTO "public"."cardcodes" VALUES (1232, '黑龙江省', '绥化市', '明水县', '231225'); +INSERT INTO "public"."cardcodes" VALUES (1233, '黑龙江省', '绥化市', '绥棱县', '231226'); +INSERT INTO "public"."cardcodes" VALUES (1234, '黑龙江省', '绥化市', '安达市', '231281'); +INSERT INTO "public"."cardcodes" VALUES (1235, '黑龙江省', '绥化市', '肇东市', '231282'); +INSERT INTO "public"."cardcodes" VALUES (1236, '黑龙江省', '绥化市', '海伦市', '231283'); +INSERT INTO "public"."cardcodes" VALUES (1237, '黑龙江省', '松花江地区', '双城市', '232101'); +INSERT INTO "public"."cardcodes" VALUES (1238, '黑龙江省', '松花江地区', '尚志市', '232102'); +INSERT INTO "public"."cardcodes" VALUES (1239, '黑龙江省', '松花江地区', '五常市', '232103'); +INSERT INTO "public"."cardcodes" VALUES (1240, '黑龙江省', '松花江地区', '阿城市', '232121'); +INSERT INTO "public"."cardcodes" VALUES (1241, '黑龙江省', '松花江地区', '宾县', '232122'); +INSERT INTO "public"."cardcodes" VALUES (1242, '黑龙江省', '松花江地区', '呼兰县', '232123'); +INSERT INTO "public"."cardcodes" VALUES (1243, '黑龙江省', '松花江地区', '双城市', '232124'); +INSERT INTO "public"."cardcodes" VALUES (1244, '黑龙江省', '松花江地区', '五常市', '232125'); +INSERT INTO "public"."cardcodes" VALUES (1245, '黑龙江省', '松花江地区', '巴彦县', '232126'); +INSERT INTO "public"."cardcodes" VALUES (1246, '黑龙江省', '松花江地区', '木兰县', '232127'); +INSERT INTO "public"."cardcodes" VALUES (1247, '黑龙江省', '松花江地区', '通河县', '232128'); +INSERT INTO "public"."cardcodes" VALUES (1248, '黑龙江省', '松花江地区', '尚志市', '232129'); +INSERT INTO "public"."cardcodes" VALUES (1249, '黑龙江省', '松花江地区', '方正县', '232130'); +INSERT INTO "public"."cardcodes" VALUES (1250, '黑龙江省', '松花江地区', '延寿县', '232131'); +INSERT INTO "public"."cardcodes" VALUES (1251, '黑龙江省', '绥化地区', '绥化市', '232301'); +INSERT INTO "public"."cardcodes" VALUES (1252, '黑龙江省', '绥化地区', '安达市', '232302'); +INSERT INTO "public"."cardcodes" VALUES (1253, '黑龙江省', '绥化地区', '肇东市', '232303'); +INSERT INTO "public"."cardcodes" VALUES (1254, '黑龙江省', '绥化地区', '海伦市', '232304'); +INSERT INTO "public"."cardcodes" VALUES (1255, '黑龙江省', '绥化地区', '海伦县', '232321'); +INSERT INTO "public"."cardcodes" VALUES (1256, '黑龙江省', '绥化地区', '肇东县', '232322'); +INSERT INTO "public"."cardcodes" VALUES (1257, '黑龙江省', '绥化地区', '绥化县', '232323'); +INSERT INTO "public"."cardcodes" VALUES (1258, '黑龙江省', '绥化地区', '望奎县', '232324'); +INSERT INTO "public"."cardcodes" VALUES (1259, '黑龙江省', '绥化地区', '兰西县', '232325'); +INSERT INTO "public"."cardcodes" VALUES (1260, '黑龙江省', '绥化地区', '青冈县', '232326'); +INSERT INTO "public"."cardcodes" VALUES (1261, '黑龙江省', '绥化地区', '安达县', '232327'); +INSERT INTO "public"."cardcodes" VALUES (1262, '黑龙江省', '绥化地区', '肇源县', '232328'); +INSERT INTO "public"."cardcodes" VALUES (1263, '黑龙江省', '绥化地区', '肇州县', '232329'); +INSERT INTO "public"."cardcodes" VALUES (1264, '黑龙江省', '绥化地区', '庆安县', '232330'); +INSERT INTO "public"."cardcodes" VALUES (1265, '黑龙江省', '绥化地区', '明水县', '232331'); +INSERT INTO "public"."cardcodes" VALUES (1266, '黑龙江省', '绥化地区', '绥棱县', '232332'); +INSERT INTO "public"."cardcodes" VALUES (1267, '黑龙江省', '佳木斯地区', '佳木斯市', '232401'); +INSERT INTO "public"."cardcodes" VALUES (1268, '黑龙江省', '佳木斯地区', '富锦县', '232421'); +INSERT INTO "public"."cardcodes" VALUES (1269, '黑龙江省', '佳木斯地区', '桦南县', '232422'); +INSERT INTO "public"."cardcodes" VALUES (1270, '黑龙江省', '佳木斯地区', '依兰县', '232423'); +INSERT INTO "public"."cardcodes" VALUES (1271, '黑龙江省', '佳木斯地区', '勃利县', '232424'); +INSERT INTO "public"."cardcodes" VALUES (1272, '黑龙江省', '佳木斯地区', '集贤县', '232425'); +INSERT INTO "public"."cardcodes" VALUES (1273, '黑龙江省', '佳木斯地区', '桦川县', '232426'); +INSERT INTO "public"."cardcodes" VALUES (1274, '黑龙江省', '佳木斯地区', '宝清县', '232427'); +INSERT INTO "public"."cardcodes" VALUES (1275, '黑龙江省', '佳木斯地区', '汤原县', '232428'); +INSERT INTO "public"."cardcodes" VALUES (1276, '黑龙江省', '佳木斯地区', '绥滨县', '232429'); +INSERT INTO "public"."cardcodes" VALUES (1277, '黑龙江省', '佳木斯地区', '萝北县', '232430'); +INSERT INTO "public"."cardcodes" VALUES (1278, '黑龙江省', '佳木斯地区', '同江县', '232431'); +INSERT INTO "public"."cardcodes" VALUES (1279, '黑龙江省', '佳木斯地区', '饶河县', '232432'); +INSERT INTO "public"."cardcodes" VALUES (1280, '黑龙江省', '佳木斯地区', '抚远县', '232433'); +INSERT INTO "public"."cardcodes" VALUES (1281, '黑龙江省', '牡丹江地区', '牡丹江市', '232501'); +INSERT INTO "public"."cardcodes" VALUES (1282, '黑龙江省', '牡丹江地区', '绥芬河市', '232502'); +INSERT INTO "public"."cardcodes" VALUES (1283, '黑龙江省', '牡丹江地区', '宁安县', '232521'); +INSERT INTO "public"."cardcodes" VALUES (1284, '黑龙江省', '牡丹江地区', '海林县', '232522'); +INSERT INTO "public"."cardcodes" VALUES (1285, '黑龙江省', '牡丹江地区', '穆棱县', '232523'); +INSERT INTO "public"."cardcodes" VALUES (1286, '黑龙江省', '牡丹江地区', '东宁县', '232524'); +INSERT INTO "public"."cardcodes" VALUES (1287, '黑龙江省', '牡丹江地区', '林口县', '232525'); +INSERT INTO "public"."cardcodes" VALUES (1288, '黑龙江省', '牡丹江地区', '鸡东县', '232526'); +INSERT INTO "public"."cardcodes" VALUES (1289, '黑龙江省', '牡丹江地区', '密山县', '232527'); +INSERT INTO "public"."cardcodes" VALUES (1290, '黑龙江省', '牡丹江地区', '虎林县', '232528'); +INSERT INTO "public"."cardcodes" VALUES (1291, '黑龙江省', '黑河地区', '黑河市', '232601'); +INSERT INTO "public"."cardcodes" VALUES (1292, '黑龙江省', '黑河地区', '北安市', '232602'); +INSERT INTO "public"."cardcodes" VALUES (1293, '黑龙江省', '黑河地区', '五大连池市', '232603'); +INSERT INTO "public"."cardcodes" VALUES (1294, '黑龙江省', '黑河地区', '北安县', '232621'); +INSERT INTO "public"."cardcodes" VALUES (1295, '黑龙江省', '黑河地区', '嫩江县', '232622'); +INSERT INTO "public"."cardcodes" VALUES (1296, '黑龙江省', '黑河地区', '德都县', '232623'); +INSERT INTO "public"."cardcodes" VALUES (1297, '黑龙江省', '黑河地区', '逊克县', '232625'); +INSERT INTO "public"."cardcodes" VALUES (1298, '黑龙江省', '黑河地区', '孙吴县', '232626'); +INSERT INTO "public"."cardcodes" VALUES (1299, '黑龙江省', '大兴安岭地区', '加格达奇区', '232701'); +INSERT INTO "public"."cardcodes" VALUES (1300, '黑龙江省', '大兴安岭地区', '呼玛县', '232721'); +INSERT INTO "public"."cardcodes" VALUES (1301, '黑龙江省', '大兴安岭地区', '塔河县', '232722'); +INSERT INTO "public"."cardcodes" VALUES (1302, '黑龙江省', '大兴安岭地区', '漠河县', '232723'); +INSERT INTO "public"."cardcodes" VALUES (1303, '黑龙江省', '大兴安岭地区', '漠河县', '232724'); +INSERT INTO "public"."cardcodes" VALUES (1304, '黑龙江省', NULL, '绥芬河市', '239001'); +INSERT INTO "public"."cardcodes" VALUES (1305, '黑龙江省', NULL, '阿城市', '239002'); +INSERT INTO "public"."cardcodes" VALUES (1306, '黑龙江省', NULL, '同江市', '239003'); +INSERT INTO "public"."cardcodes" VALUES (1307, '黑龙江省', NULL, '富锦市', '239004'); +INSERT INTO "public"."cardcodes" VALUES (1308, '黑龙江省', NULL, '铁力市', '239005'); +INSERT INTO "public"."cardcodes" VALUES (1309, '黑龙江省', NULL, '密山市', '239006'); +INSERT INTO "public"."cardcodes" VALUES (1310, '上海市', NULL, '黄浦区', '310101'); +INSERT INTO "public"."cardcodes" VALUES (1311, '上海市', NULL, '南市区', '310102'); +INSERT INTO "public"."cardcodes" VALUES (1312, '上海市', NULL, '卢湾区', '310103'); +INSERT INTO "public"."cardcodes" VALUES (1313, '上海市', NULL, '徐汇区', '310104'); +INSERT INTO "public"."cardcodes" VALUES (1314, '上海市', NULL, '长宁区', '310105'); +INSERT INTO "public"."cardcodes" VALUES (1315, '上海市', NULL, '静安区', '310106'); +INSERT INTO "public"."cardcodes" VALUES (1316, '上海市', NULL, '普陀区', '310107'); +INSERT INTO "public"."cardcodes" VALUES (1317, '上海市', NULL, '闸北区', '310108'); +INSERT INTO "public"."cardcodes" VALUES (1318, '上海市', NULL, '虹口区', '310109'); +INSERT INTO "public"."cardcodes" VALUES (1319, '上海市', NULL, '杨浦区', '310110'); +INSERT INTO "public"."cardcodes" VALUES (1320, '上海市', NULL, '吴凇区', '310111'); +INSERT INTO "public"."cardcodes" VALUES (1321, '上海市', NULL, '闵行区', '310112'); +INSERT INTO "public"."cardcodes" VALUES (1322, '上海市', NULL, '宝山区', '310113'); +INSERT INTO "public"."cardcodes" VALUES (1323, '上海市', NULL, '嘉定区', '310114'); +INSERT INTO "public"."cardcodes" VALUES (1324, '上海市', NULL, '浦东新区', '310115'); +INSERT INTO "public"."cardcodes" VALUES (1325, '上海市', NULL, '金山区', '310116'); +INSERT INTO "public"."cardcodes" VALUES (1326, '上海市', NULL, '松江区', '310117'); +INSERT INTO "public"."cardcodes" VALUES (1327, '上海市', NULL, '青浦区', '310118'); +INSERT INTO "public"."cardcodes" VALUES (1328, '上海市', NULL, '南汇区', '310119'); +INSERT INTO "public"."cardcodes" VALUES (1329, '上海市', NULL, '奉贤区', '310120'); +INSERT INTO "public"."cardcodes" VALUES (1330, '上海市', NULL, '上海县', '310221'); +INSERT INTO "public"."cardcodes" VALUES (1331, '上海市', NULL, '嘉定县', '310222'); +INSERT INTO "public"."cardcodes" VALUES (1335, '上海市', NULL, '奉贤县', '310226'); +INSERT INTO "public"."cardcodes" VALUES (1336, '上海市', NULL, '松江县', '310227'); +INSERT INTO "public"."cardcodes" VALUES (1337, '上海市', NULL, '金山县', '310228'); +INSERT INTO "public"."cardcodes" VALUES (1338, '上海市', NULL, '青浦县', '310229'); +INSERT INTO "public"."cardcodes" VALUES (1339, '上海市', NULL, '崇明县', '310230'); +INSERT INTO "public"."cardcodes" VALUES (1340, '江苏省', '南京市', '市辖区', '320101'); +INSERT INTO "public"."cardcodes" VALUES (1341, '江苏省', '南京市', '玄武区', '320102'); +INSERT INTO "public"."cardcodes" VALUES (1342, '江苏省', '南京市', '白下区', '320103'); +INSERT INTO "public"."cardcodes" VALUES (1343, '江苏省', '南京市', '秦淮区', '320104'); +INSERT INTO "public"."cardcodes" VALUES (1344, '江苏省', '南京市', '建邺区', '320105'); +INSERT INTO "public"."cardcodes" VALUES (1345, '江苏省', '南京市', '鼓楼区', '320106'); +INSERT INTO "public"."cardcodes" VALUES (1346, '江苏省', '南京市', '下关区', '320107'); +INSERT INTO "public"."cardcodes" VALUES (1347, '江苏省', '南京市', '浦口区', '320111'); +INSERT INTO "public"."cardcodes" VALUES (1348, '江苏省', '南京市', '大厂区', '320112'); +INSERT INTO "public"."cardcodes" VALUES (1349, '江苏省', '南京市', '栖霞区', '320113'); +INSERT INTO "public"."cardcodes" VALUES (1350, '江苏省', '南京市', '雨花台区', '320114'); +INSERT INTO "public"."cardcodes" VALUES (1351, '江苏省', '南京市', '江宁区', '320115'); +INSERT INTO "public"."cardcodes" VALUES (1352, '江苏省', '南京市', '六合区', '320116'); +INSERT INTO "public"."cardcodes" VALUES (1353, '江苏省', '南京市', '市区', '320120'); +INSERT INTO "public"."cardcodes" VALUES (1354, '江苏省', '南京市', '江宁县', '320121'); +INSERT INTO "public"."cardcodes" VALUES (1355, '江苏省', '南京市', '江浦县', '320122'); +INSERT INTO "public"."cardcodes" VALUES (1356, '江苏省', '南京市', '六合县', '320123'); +INSERT INTO "public"."cardcodes" VALUES (1357, '江苏省', '南京市', '溧水县', '320124'); +INSERT INTO "public"."cardcodes" VALUES (1358, '江苏省', '南京市', '高淳县', '320125'); +INSERT INTO "public"."cardcodes" VALUES (1359, '江苏省', '南京市', '江都县', '320126'); +INSERT INTO "public"."cardcodes" VALUES (1360, '江苏省', '无锡市', '市辖区', '320201'); +INSERT INTO "public"."cardcodes" VALUES (1361, '江苏省', '无锡市', '崇安区', '320202'); +INSERT INTO "public"."cardcodes" VALUES (1362, '江苏省', '无锡市', '南长区', '320203'); +INSERT INTO "public"."cardcodes" VALUES (1363, '江苏省', '无锡市', '北塘区', '320204'); +INSERT INTO "public"."cardcodes" VALUES (1364, '江苏省', '无锡市', '锡山区', '320205'); +INSERT INTO "public"."cardcodes" VALUES (1365, '江苏省', '无锡市', '惠山区', '320206'); +INSERT INTO "public"."cardcodes" VALUES (1366, '江苏省', '无锡市', '郊区', '320211'); +INSERT INTO "public"."cardcodes" VALUES (1367, '江苏省', '无锡市', '马山区', '320212'); +INSERT INTO "public"."cardcodes" VALUES (1368, '江苏省', '无锡市', '江阴县', '320219'); +INSERT INTO "public"."cardcodes" VALUES (1369, '江苏省', '无锡市', '江阴县', '320221'); +INSERT INTO "public"."cardcodes" VALUES (1370, '江苏省', '无锡市', '无锡县', '320222'); +INSERT INTO "public"."cardcodes" VALUES (1371, '江苏省', '无锡市', '宜兴县', '320223'); +INSERT INTO "public"."cardcodes" VALUES (1372, '江苏省', '无锡市', '江阴市', '320281'); +INSERT INTO "public"."cardcodes" VALUES (1373, '江苏省', '无锡市', '宜兴市', '320282'); +INSERT INTO "public"."cardcodes" VALUES (1374, '江苏省', '无锡市', '锡山市', '320283'); +INSERT INTO "public"."cardcodes" VALUES (1375, '江苏省', '徐州市', '市辖区', '320301'); +INSERT INTO "public"."cardcodes" VALUES (1376, '江苏省', '徐州市', '鼓楼区', '320302'); +INSERT INTO "public"."cardcodes" VALUES (1377, '江苏省', '徐州市', '云龙区', '320303'); +INSERT INTO "public"."cardcodes" VALUES (1378, '江苏省', '徐州市', '九里区', '320304'); +INSERT INTO "public"."cardcodes" VALUES (1379, '江苏省', '徐州市', '贾汪区', '320305'); +INSERT INTO "public"."cardcodes" VALUES (1380, '江苏省', '徐州市', '泉山区', '320311'); +INSERT INTO "public"."cardcodes" VALUES (1381, '江苏省', '徐州市', '丰县', '320321'); +INSERT INTO "public"."cardcodes" VALUES (1382, '江苏省', '徐州市', '沛县', '320322'); +INSERT INTO "public"."cardcodes" VALUES (1383, '江苏省', '徐州市', '铜山县', '320323'); +INSERT INTO "public"."cardcodes" VALUES (1384, '江苏省', '徐州市', '睢宁县', '320324'); +INSERT INTO "public"."cardcodes" VALUES (1385, '江苏省', '徐州市', '邳县', '320325'); +INSERT INTO "public"."cardcodes" VALUES (1386, '江苏省', '徐州市', '新沂县', '320326'); +INSERT INTO "public"."cardcodes" VALUES (1387, '江苏省', '徐州市', '新沂市', '320381'); +INSERT INTO "public"."cardcodes" VALUES (1388, '江苏省', '徐州市', '邳州市', '320382'); +INSERT INTO "public"."cardcodes" VALUES (1389, '江苏省', '常州市', '市辖区', '320401'); +INSERT INTO "public"."cardcodes" VALUES (1390, '江苏省', '常州市', '天宁区', '320402'); +INSERT INTO "public"."cardcodes" VALUES (1391, '江苏省', '常州市', '钟楼区', '320404'); +INSERT INTO "public"."cardcodes" VALUES (1392, '江苏省', '常州市', '戚墅堰区', '320405'); +INSERT INTO "public"."cardcodes" VALUES (1393, '江苏省', '常州市', '郊区', '320411'); +INSERT INTO "public"."cardcodes" VALUES (1394, '江苏省', '常州市', '武进区', '320412'); +INSERT INTO "public"."cardcodes" VALUES (1395, '江苏省', '常州市', '武进市', '320419'); +INSERT INTO "public"."cardcodes" VALUES (1396, '江苏省', '常州市', '武进县', '320421'); +INSERT INTO "public"."cardcodes" VALUES (1397, '江苏省', '常州市', '金坛县', '320422'); +INSERT INTO "public"."cardcodes" VALUES (1398, '江苏省', '常州市', '溧阳县', '320423'); +INSERT INTO "public"."cardcodes" VALUES (1399, '江苏省', '常州市', '溧阳市', '320481'); +INSERT INTO "public"."cardcodes" VALUES (1400, '江苏省', '常州市', '金坛市', '320482'); +INSERT INTO "public"."cardcodes" VALUES (1401, '江苏省', '常州市', '武进市', '320483'); +INSERT INTO "public"."cardcodes" VALUES (1402, '江苏省', '苏州市', '市辖区', '320501'); +INSERT INTO "public"."cardcodes" VALUES (1403, '江苏省', '苏州市', '沧浪区', '320502'); +INSERT INTO "public"."cardcodes" VALUES (1404, '江苏省', '苏州市', '平江区', '320503'); +INSERT INTO "public"."cardcodes" VALUES (1405, '江苏省', '苏州市', '金阊区', '320504'); +INSERT INTO "public"."cardcodes" VALUES (1406, '江苏省', '苏州市', '虎丘区', '320505'); +INSERT INTO "public"."cardcodes" VALUES (1407, '江苏省', '苏州市', '吴中区', '320506'); +INSERT INTO "public"."cardcodes" VALUES (1408, '江苏省', '苏州市', '相城区', '320507'); +INSERT INTO "public"."cardcodes" VALUES (1409, '江苏省', '苏州市', '郊区', '320511'); +INSERT INTO "public"."cardcodes" VALUES (1410, '江苏省', '苏州市', '常熟市', '320520'); +INSERT INTO "public"."cardcodes" VALUES (1411, '江苏省', '苏州市', '沙洲县', '320521'); +INSERT INTO "public"."cardcodes" VALUES (1412, '江苏省', '苏州市', '太仓县', '320522'); +INSERT INTO "public"."cardcodes" VALUES (1413, '江苏省', '苏州市', '昆山县', '320523'); +INSERT INTO "public"."cardcodes" VALUES (1414, '江苏省', '苏州市', '吴县', '320524'); +INSERT INTO "public"."cardcodes" VALUES (1415, '江苏省', '苏州市', '吴江县', '320525'); +INSERT INTO "public"."cardcodes" VALUES (1416, '江苏省', '苏州市', '常熟市', '320581'); +INSERT INTO "public"."cardcodes" VALUES (1417, '江苏省', '苏州市', '张家港市', '320582'); +INSERT INTO "public"."cardcodes" VALUES (1418, '江苏省', '苏州市', '昆山市', '320583'); +INSERT INTO "public"."cardcodes" VALUES (1419, '江苏省', '苏州市', '吴江市', '320584'); +INSERT INTO "public"."cardcodes" VALUES (1420, '江苏省', '苏州市', '太仓市', '320585'); +INSERT INTO "public"."cardcodes" VALUES (1421, '江苏省', '苏州市', '吴县市', '320586'); +INSERT INTO "public"."cardcodes" VALUES (1422, '江苏省', '南通市', '市辖区', '320601'); +INSERT INTO "public"."cardcodes" VALUES (1423, '江苏省', '南通市', '崇川区', '320602'); +INSERT INTO "public"."cardcodes" VALUES (1424, '江苏省', '南通市', '港闸区', '320611'); +INSERT INTO "public"."cardcodes" VALUES (1425, '江苏省', '南通市', '海安县', '320621'); +INSERT INTO "public"."cardcodes" VALUES (1426, '江苏省', '南通市', '如皋县', '320622'); +INSERT INTO "public"."cardcodes" VALUES (1427, '江苏省', '南通市', '如东县', '320623'); +INSERT INTO "public"."cardcodes" VALUES (1428, '江苏省', '南通市', '南通县', '320624'); +INSERT INTO "public"."cardcodes" VALUES (1429, '江苏省', '南通市', '海门县', '320625'); +INSERT INTO "public"."cardcodes" VALUES (1430, '江苏省', '南通市', '启东县', '320626'); +INSERT INTO "public"."cardcodes" VALUES (1431, '江苏省', '南通市', '启东市', '320681'); +INSERT INTO "public"."cardcodes" VALUES (1432, '江苏省', '南通市', '如皋市', '320682'); +INSERT INTO "public"."cardcodes" VALUES (1433, '江苏省', '南通市', '通州市', '320683'); +INSERT INTO "public"."cardcodes" VALUES (1434, '江苏省', '南通市', '海门市', '320684'); +INSERT INTO "public"."cardcodes" VALUES (1435, '江苏省', '连云港市', '市辖区', '320701'); +INSERT INTO "public"."cardcodes" VALUES (1436, '江苏省', '连云港市', '连云区', '320703'); +INSERT INTO "public"."cardcodes" VALUES (1437, '江苏省', '连云港市', '云台区', '320704'); +INSERT INTO "public"."cardcodes" VALUES (1438, '江苏省', '连云港市', '新浦区', '320705'); +INSERT INTO "public"."cardcodes" VALUES (1439, '江苏省', '连云港市', '海州区', '320706'); +INSERT INTO "public"."cardcodes" VALUES (1440, '江苏省', '连云港市', '赣榆县', '320721'); +INSERT INTO "public"."cardcodes" VALUES (1441, '江苏省', '连云港市', '东海县', '320722'); +INSERT INTO "public"."cardcodes" VALUES (1442, '江苏省', '连云港市', '灌云县', '320723'); +INSERT INTO "public"."cardcodes" VALUES (1443, '江苏省', '连云港市', '灌南县', '320724'); +INSERT INTO "public"."cardcodes" VALUES (1444, '江苏省', '淮安市', '市辖区', '320801'); +INSERT INTO "public"."cardcodes" VALUES (1445, '江苏省', '淮安市', '清河区', '320802'); +INSERT INTO "public"."cardcodes" VALUES (1446, '江苏省', '淮安市', '楚州区', '320803'); +INSERT INTO "public"."cardcodes" VALUES (1447, '江苏省', '淮安市', '淮阴区', '320804'); +INSERT INTO "public"."cardcodes" VALUES (1448, '江苏省', '淮安市', '清浦区', '320811'); +INSERT INTO "public"."cardcodes" VALUES (1449, '江苏省', '淮安市', '宿迁市', '320819'); +INSERT INTO "public"."cardcodes" VALUES (1450, '江苏省', '淮安市', '淮阴县', '320821'); +INSERT INTO "public"."cardcodes" VALUES (1451, '江苏省', '淮安市', '灌南县', '320822'); +INSERT INTO "public"."cardcodes" VALUES (1452, '江苏省', '淮安市', '沭阳县', '320823'); +INSERT INTO "public"."cardcodes" VALUES (1453, '江苏省', '淮安市', '宿迁县', '320824'); +INSERT INTO "public"."cardcodes" VALUES (1454, '江苏省', '淮安市', '泗阳县', '320825'); +INSERT INTO "public"."cardcodes" VALUES (1455, '江苏省', '淮安市', '涟水县', '320826'); +INSERT INTO "public"."cardcodes" VALUES (1456, '江苏省', '淮安市', '泗洪县', '320827'); +INSERT INTO "public"."cardcodes" VALUES (1457, '江苏省', '淮安市', '淮安县', '320828'); +INSERT INTO "public"."cardcodes" VALUES (1458, '江苏省', '淮安市', '洪泽县', '320829'); +INSERT INTO "public"."cardcodes" VALUES (1459, '江苏省', '淮安市', '盱眙县', '320830'); +INSERT INTO "public"."cardcodes" VALUES (1460, '江苏省', '淮安市', '金湖县', '320831'); +INSERT INTO "public"."cardcodes" VALUES (1461, '江苏省', '淮安市', '宿迁市', '320881'); +INSERT INTO "public"."cardcodes" VALUES (1462, '江苏省', '淮安市', '淮安市', '320882'); +INSERT INTO "public"."cardcodes" VALUES (1463, '江苏省', '盐城市', '市辖区', '320901'); +INSERT INTO "public"."cardcodes" VALUES (1464, '江苏省', '盐城市', '城区', '320902'); +INSERT INTO "public"."cardcodes" VALUES (1465, '江苏省', '盐城市', '盐都区', '320903'); +INSERT INTO "public"."cardcodes" VALUES (1466, '江苏省', '盐城市', '郊区', '320911'); +INSERT INTO "public"."cardcodes" VALUES (1467, '江苏省', '盐城市', '东台市', '320919'); +INSERT INTO "public"."cardcodes" VALUES (1468, '江苏省', '盐城市', '响水县', '320921'); +INSERT INTO "public"."cardcodes" VALUES (1469, '江苏省', '盐城市', '滨海县', '320922'); +INSERT INTO "public"."cardcodes" VALUES (1470, '江苏省', '盐城市', '阜宁县', '320923'); +INSERT INTO "public"."cardcodes" VALUES (1471, '江苏省', '盐城市', '射阳县', '320924'); +INSERT INTO "public"."cardcodes" VALUES (1472, '江苏省', '盐城市', '建湖县', '320925'); +INSERT INTO "public"."cardcodes" VALUES (1473, '江苏省', '盐城市', '大丰县', '320926'); +INSERT INTO "public"."cardcodes" VALUES (1474, '江苏省', '盐城市', '东台县', '320927'); +INSERT INTO "public"."cardcodes" VALUES (1475, '江苏省', '盐城市', '盐都县', '320928'); +INSERT INTO "public"."cardcodes" VALUES (1476, '江苏省', '盐城市', '东台市', '320981'); +INSERT INTO "public"."cardcodes" VALUES (1477, '江苏省', '盐城市', '大丰市', '320982'); +INSERT INTO "public"."cardcodes" VALUES (1478, '江苏省', '扬州市', '市辖区', '321001'); +INSERT INTO "public"."cardcodes" VALUES (1479, '江苏省', '扬州市', '广陵区', '321002'); +INSERT INTO "public"."cardcodes" VALUES (1480, '江苏省', '扬州市', '邗江区', '321003'); +INSERT INTO "public"."cardcodes" VALUES (1481, '江苏省', '扬州市', '郊区', '321011'); +INSERT INTO "public"."cardcodes" VALUES (1482, '江苏省', '扬州市', '仪征市', '321019'); +INSERT INTO "public"."cardcodes" VALUES (1483, '江苏省', '扬州市', '泰州市', '321020'); +INSERT INTO "public"."cardcodes" VALUES (1484, '江苏省', '扬州市', '兴化县', '321021'); +INSERT INTO "public"."cardcodes" VALUES (1485, '江苏省', '扬州市', '高邮县', '321022'); +INSERT INTO "public"."cardcodes" VALUES (1486, '江苏省', '扬州市', '宝应县', '321023'); +INSERT INTO "public"."cardcodes" VALUES (1487, '江苏省', '扬州市', '靖江县', '321024'); +INSERT INTO "public"."cardcodes" VALUES (1488, '江苏省', '扬州市', '泰兴县', '321025'); +INSERT INTO "public"."cardcodes" VALUES (1489, '江苏省', '扬州市', '江都县', '321026'); +INSERT INTO "public"."cardcodes" VALUES (1490, '江苏省', '扬州市', '邗江县', '321027'); +INSERT INTO "public"."cardcodes" VALUES (1491, '江苏省', '扬州市', '泰县', '321028'); +INSERT INTO "public"."cardcodes" VALUES (1492, '江苏省', '扬州市', '仪征县', '321029'); +INSERT INTO "public"."cardcodes" VALUES (1493, '江苏省', '扬州市', '仪征市', '321081'); +INSERT INTO "public"."cardcodes" VALUES (1494, '江苏省', '扬州市', '泰州市', '321082'); +INSERT INTO "public"."cardcodes" VALUES (1495, '江苏省', '扬州市', '兴化市', '321083'); +INSERT INTO "public"."cardcodes" VALUES (1496, '江苏省', '扬州市', '高邮市', '321084'); +INSERT INTO "public"."cardcodes" VALUES (1497, '江苏省', '扬州市', '泰兴市', '321085'); +INSERT INTO "public"."cardcodes" VALUES (1498, '江苏省', '扬州市', '靖江市', '321086'); +INSERT INTO "public"."cardcodes" VALUES (1499, '江苏省', '扬州市', '江都市', '321087'); +INSERT INTO "public"."cardcodes" VALUES (1500, '江苏省', '扬州市', '江都市', '321088'); +INSERT INTO "public"."cardcodes" VALUES (1501, '江苏省', '镇江市', '市辖区', '321101'); +INSERT INTO "public"."cardcodes" VALUES (1502, '江苏省', '镇江市', '京口区', '321102'); +INSERT INTO "public"."cardcodes" VALUES (1503, '江苏省', '镇江市', '润州区', '321111'); +INSERT INTO "public"."cardcodes" VALUES (1504, '江苏省', '镇江市', '丹徒区', '321112'); +INSERT INTO "public"."cardcodes" VALUES (1505, '江苏省', '镇江市', '丹阳市', '321119'); +INSERT INTO "public"."cardcodes" VALUES (1506, '江苏省', '镇江市', '丹徒县', '321121'); +INSERT INTO "public"."cardcodes" VALUES (1507, '江苏省', '镇江市', '丹阳县', '321122'); +INSERT INTO "public"."cardcodes" VALUES (1508, '江苏省', '镇江市', '句容县', '321123'); +INSERT INTO "public"."cardcodes" VALUES (1509, '江苏省', '镇江市', '扬中县', '321124'); +INSERT INTO "public"."cardcodes" VALUES (1510, '江苏省', '镇江市', '丹阳市', '321181'); +INSERT INTO "public"."cardcodes" VALUES (1511, '江苏省', '镇江市', '扬中市', '321182'); +INSERT INTO "public"."cardcodes" VALUES (1512, '江苏省', '镇江市', '句容市', '321183'); +INSERT INTO "public"."cardcodes" VALUES (1513, '江苏省', '泰州市', '市辖区', '321201'); +INSERT INTO "public"."cardcodes" VALUES (1514, '江苏省', '泰州市', '海陵区', '321202'); +INSERT INTO "public"."cardcodes" VALUES (1515, '江苏省', '泰州市', '高港区', '321203'); +INSERT INTO "public"."cardcodes" VALUES (1516, '江苏省', '泰州市', '兴化市', '321281'); +INSERT INTO "public"."cardcodes" VALUES (1517, '江苏省', '泰州市', '靖江市', '321282'); +INSERT INTO "public"."cardcodes" VALUES (1518, '江苏省', '泰州市', '泰兴市', '321283'); +INSERT INTO "public"."cardcodes" VALUES (1519, '江苏省', '泰州市', '姜堰市', '321284'); +INSERT INTO "public"."cardcodes" VALUES (1520, '江苏省', '宿迁市', '市辖区', '321301'); +INSERT INTO "public"."cardcodes" VALUES (1521, '江苏省', '宿迁市', '宿城区', '321302'); +INSERT INTO "public"."cardcodes" VALUES (1522, '江苏省', '宿迁市', '宿豫区', '321311'); +INSERT INTO "public"."cardcodes" VALUES (1523, '江苏省', '宿迁市', '宿豫县', '321321'); +INSERT INTO "public"."cardcodes" VALUES (1524, '江苏省', '宿迁市', '沭阳县', '321322'); +INSERT INTO "public"."cardcodes" VALUES (1525, '江苏省', '宿迁市', '泗阳县', '321323'); +INSERT INTO "public"."cardcodes" VALUES (1526, '江苏省', '宿迁市', '泗洪县', '321324'); +INSERT INTO "public"."cardcodes" VALUES (1527, '浙江省', '杭州市', '市辖区', '330101'); +INSERT INTO "public"."cardcodes" VALUES (1528, '浙江省', '杭州市', '上城区', '330102'); +INSERT INTO "public"."cardcodes" VALUES (1529, '浙江省', '杭州市', '下城区', '330103'); +INSERT INTO "public"."cardcodes" VALUES (1530, '浙江省', '杭州市', '江干区', '330104'); +INSERT INTO "public"."cardcodes" VALUES (1531, '浙江省', '杭州市', '拱墅区', '330105'); +INSERT INTO "public"."cardcodes" VALUES (1532, '浙江省', '杭州市', '西湖区', '330106'); +INSERT INTO "public"."cardcodes" VALUES (1533, '浙江省', '杭州市', '滨江区', '330107'); +INSERT INTO "public"."cardcodes" VALUES (1534, '浙江省', '杭州市', '滨江区', '330108'); +INSERT INTO "public"."cardcodes" VALUES (1535, '浙江省', '杭州市', '萧山区', '330109'); +INSERT INTO "public"."cardcodes" VALUES (1536, '浙江省', '杭州市', '余杭区', '330110'); +INSERT INTO "public"."cardcodes" VALUES (1537, '浙江省', '杭州市', '市区', '330120'); +INSERT INTO "public"."cardcodes" VALUES (1538, '浙江省', '杭州市', '萧山县', '330121'); +INSERT INTO "public"."cardcodes" VALUES (1539, '浙江省', '杭州市', '桐庐县', '330122'); +INSERT INTO "public"."cardcodes" VALUES (1540, '浙江省', '杭州市', '富阳县', '330123'); +INSERT INTO "public"."cardcodes" VALUES (1541, '浙江省', '杭州市', '临安县', '330124'); +INSERT INTO "public"."cardcodes" VALUES (1542, '浙江省', '杭州市', '余杭县', '330125'); +INSERT INTO "public"."cardcodes" VALUES (1543, '浙江省', '杭州市', '建德县', '330126'); +INSERT INTO "public"."cardcodes" VALUES (1544, '浙江省', '杭州市', '淳安县', '330127'); +INSERT INTO "public"."cardcodes" VALUES (1545, '浙江省', '杭州市', '萧山市', '330181'); +INSERT INTO "public"."cardcodes" VALUES (1546, '浙江省', '杭州市', '建德市', '330182'); +INSERT INTO "public"."cardcodes" VALUES (1547, '浙江省', '杭州市', '富阳市', '330183'); +INSERT INTO "public"."cardcodes" VALUES (1548, '浙江省', '杭州市', '余杭市', '330184'); +INSERT INTO "public"."cardcodes" VALUES (1549, '浙江省', '杭州市', '临安市', '330185'); +INSERT INTO "public"."cardcodes" VALUES (1550, '浙江省', '台州市', '椒江区', '331002'); +INSERT INTO "public"."cardcodes" VALUES (1551, '浙江省', '台州市', '黄岩区', '331003'); +INSERT INTO "public"."cardcodes" VALUES (1552, '浙江省', '台州市', '路桥区', '331004'); +INSERT INTO "public"."cardcodes" VALUES (1553, '浙江省', '台州市', '玉环县', '331021'); +INSERT INTO "public"."cardcodes" VALUES (1554, '浙江省', '台州市', '三门县', '331022'); +INSERT INTO "public"."cardcodes" VALUES (1555, '浙江省', '台州市', '天台县', '331023'); +INSERT INTO "public"."cardcodes" VALUES (1556, '浙江省', '台州市', '仙居县', '331024'); +INSERT INTO "public"."cardcodes" VALUES (1557, '浙江省', '台州市', '温岭市', '331081'); +INSERT INTO "public"."cardcodes" VALUES (1558, '浙江省', '台州市', '临海市', '331082'); +INSERT INTO "public"."cardcodes" VALUES (1559, '浙江省', '台州市', '市辖区', '331001'); +INSERT INTO "public"."cardcodes" VALUES (1560, '浙江省', '丽水市', '市辖区', '331101'); +INSERT INTO "public"."cardcodes" VALUES (1561, '浙江省', '丽水市', '莲都区', '331102'); +INSERT INTO "public"."cardcodes" VALUES (1562, '浙江省', '丽水市', '青田县', '331121'); +INSERT INTO "public"."cardcodes" VALUES (1563, '浙江省', '丽水市', '缙云县', '331122'); +INSERT INTO "public"."cardcodes" VALUES (1564, '浙江省', '丽水市', '遂昌县', '331123'); +INSERT INTO "public"."cardcodes" VALUES (1565, '浙江省', '丽水市', '松阳县', '331124'); +INSERT INTO "public"."cardcodes" VALUES (1566, '浙江省', '丽水市', '云和县', '331125'); +INSERT INTO "public"."cardcodes" VALUES (1567, '浙江省', '丽水市', '庆元县', '331126'); +INSERT INTO "public"."cardcodes" VALUES (1568, '浙江省', '丽水市', '景宁畲族自治县', '331127'); +INSERT INTO "public"."cardcodes" VALUES (1569, '浙江省', '丽水市', '龙泉市', '331181'); +INSERT INTO "public"."cardcodes" VALUES (1570, '浙江省', '丽水地区', '丽水市', '332501'); +INSERT INTO "public"."cardcodes" VALUES (1571, '浙江省', '丽水地区', '龙泉市', '332502'); +INSERT INTO "public"."cardcodes" VALUES (1572, '浙江省', '丽水地区', '丽水县', '332521'); +INSERT INTO "public"."cardcodes" VALUES (1573, '浙江省', '丽水地区', '青田县', '332522'); +INSERT INTO "public"."cardcodes" VALUES (1574, '浙江省', '丽水地区', '云和县', '332523'); +INSERT INTO "public"."cardcodes" VALUES (1575, '浙江省', '丽水地区', '龙泉县', '332524'); +INSERT INTO "public"."cardcodes" VALUES (1576, '浙江省', '丽水地区', '庆元县', '332525'); +INSERT INTO "public"."cardcodes" VALUES (1577, '浙江省', '丽水地区', '缙云县', '332526'); +INSERT INTO "public"."cardcodes" VALUES (1578, '浙江省', '丽水地区', '遂昌县', '332527'); +INSERT INTO "public"."cardcodes" VALUES (1579, '浙江省', '丽水地区', '松阳县', '332528'); +INSERT INTO "public"."cardcodes" VALUES (1580, '浙江省', '丽水地区', '景宁畲族自治县', '332529'); +INSERT INTO "public"."cardcodes" VALUES (1581, '浙江省', '台州地区', '椒江市', '332601'); +INSERT INTO "public"."cardcodes" VALUES (1582, '浙江省', '台州地区', '临海市', '332602'); +INSERT INTO "public"."cardcodes" VALUES (1583, '浙江省', '台州地区', '黄岩市', '332603'); +INSERT INTO "public"."cardcodes" VALUES (1584, '浙江省', '台州地区', '临海县', '332621'); +INSERT INTO "public"."cardcodes" VALUES (1585, '浙江省', '台州地区', '黄岩县', '332622'); +INSERT INTO "public"."cardcodes" VALUES (1586, '浙江省', '台州地区', '温岭县', '332623'); +INSERT INTO "public"."cardcodes" VALUES (1587, '浙江省', '台州地区', '仙居县', '332624'); +INSERT INTO "public"."cardcodes" VALUES (1588, '浙江省', '台州地区', '天台县', '332625'); +INSERT INTO "public"."cardcodes" VALUES (1589, '浙江省', '台州地区', '三门县', '332626'); +INSERT INTO "public"."cardcodes" VALUES (1590, '浙江省', '台州地区', '玉环县', '332627'); +INSERT INTO "public"."cardcodes" VALUES (1591, '浙江省', '舟山地区', '定海县', '332721'); +INSERT INTO "public"."cardcodes" VALUES (1592, '浙江省', '舟山地区', '普陀县', '332722'); +INSERT INTO "public"."cardcodes" VALUES (1593, '浙江省', '舟山地区', '岱山县', '332723'); +INSERT INTO "public"."cardcodes" VALUES (1594, '浙江省', '舟山地区', '嵊泗县', '332724'); +INSERT INTO "public"."cardcodes" VALUES (1595, '浙江省', '宁波市', '市辖区', '330201'); +INSERT INTO "public"."cardcodes" VALUES (1596, '浙江省', '宁波市', '镇明区', '330202'); +INSERT INTO "public"."cardcodes" VALUES (1597, '浙江省', '宁波市', '海曙区', '330203'); +INSERT INTO "public"."cardcodes" VALUES (1598, '浙江省', '宁波市', '江东区', '330204'); +INSERT INTO "public"."cardcodes" VALUES (1599, '浙江省', '宁波市', '江北区', '330205'); +INSERT INTO "public"."cardcodes" VALUES (1600, '浙江省', '宁波市', '北仑区', '330206'); +INSERT INTO "public"."cardcodes" VALUES (1601, '浙江省', '宁波市', '鄞州区', '330207'); +INSERT INTO "public"."cardcodes" VALUES (1602, '浙江省', '宁波市', '镇海区', '330211'); +INSERT INTO "public"."cardcodes" VALUES (1603, '浙江省', '宁波市', '鄞州区', '330212'); +INSERT INTO "public"."cardcodes" VALUES (1604, '浙江省', '宁波市', '余姚市', '330219'); +INSERT INTO "public"."cardcodes" VALUES (1605, '浙江省', '宁波市', '镇海县', '330221'); +INSERT INTO "public"."cardcodes" VALUES (1606, '浙江省', '宁波市', '慈溪县', '330222'); +INSERT INTO "public"."cardcodes" VALUES (1607, '浙江省', '宁波市', '余姚县', '330223'); +INSERT INTO "public"."cardcodes" VALUES (1608, '浙江省', '宁波市', '奉化县', '330224'); +INSERT INTO "public"."cardcodes" VALUES (1609, '浙江省', '宁波市', '象山县', '330225'); +INSERT INTO "public"."cardcodes" VALUES (1610, '浙江省', '宁波市', '宁海县', '330226'); +INSERT INTO "public"."cardcodes" VALUES (1611, '浙江省', '宁波市', '鄞县', '330227'); +INSERT INTO "public"."cardcodes" VALUES (1612, '浙江省', '宁波市', '余姚市', '330281'); +INSERT INTO "public"."cardcodes" VALUES (1613, '浙江省', '宁波市', '慈溪市', '330282'); +INSERT INTO "public"."cardcodes" VALUES (1614, '浙江省', '宁波市', '奉化市', '330283'); +INSERT INTO "public"."cardcodes" VALUES (1615, '浙江省', '温州市', '市辖区', '330301'); +INSERT INTO "public"."cardcodes" VALUES (1616, '浙江省', '温州市', '鹿城区', '330302'); +INSERT INTO "public"."cardcodes" VALUES (1617, '浙江省', '温州市', '龙湾区', '330303'); +INSERT INTO "public"."cardcodes" VALUES (1618, '浙江省', '温州市', '瓯海区', '330304'); +INSERT INTO "public"."cardcodes" VALUES (1619, '浙江省', '温州市', '瓯海县', '330321'); +INSERT INTO "public"."cardcodes" VALUES (1620, '浙江省', '温州市', '洞头县', '330322'); +INSERT INTO "public"."cardcodes" VALUES (1621, '浙江省', '温州市', '乐清县', '330323'); +INSERT INTO "public"."cardcodes" VALUES (1622, '浙江省', '温州市', '永嘉县', '330324'); +INSERT INTO "public"."cardcodes" VALUES (1623, '浙江省', '温州市', '瑞安县', '330325'); +INSERT INTO "public"."cardcodes" VALUES (1624, '浙江省', '温州市', '平阳县', '330326'); +INSERT INTO "public"."cardcodes" VALUES (1625, '浙江省', '温州市', '苍南县', '330327'); +INSERT INTO "public"."cardcodes" VALUES (1626, '浙江省', '温州市', '文成县', '330328'); +INSERT INTO "public"."cardcodes" VALUES (1627, '浙江省', '温州市', '泰顺县', '330329'); +INSERT INTO "public"."cardcodes" VALUES (1628, '浙江省', '温州市', '瑞安市', '330381'); +INSERT INTO "public"."cardcodes" VALUES (1629, '浙江省', '温州市', '乐清市', '330382'); +INSERT INTO "public"."cardcodes" VALUES (1630, '浙江省', '嘉兴市', '市辖区', '330401'); +INSERT INTO "public"."cardcodes" VALUES (1631, '浙江省', '嘉兴市', '秀城区', '330402'); +INSERT INTO "public"."cardcodes" VALUES (1632, '浙江省', '嘉兴市', '郊区', '330411'); +INSERT INTO "public"."cardcodes" VALUES (1633, '浙江省', '嘉兴市', '海宁市', '330419'); +INSERT INTO "public"."cardcodes" VALUES (1634, '浙江省', '嘉兴市', '嘉善县', '330421'); +INSERT INTO "public"."cardcodes" VALUES (1635, '浙江省', '嘉兴市', '平湖县', '330422'); +INSERT INTO "public"."cardcodes" VALUES (1636, '浙江省', '嘉兴市', '海宁县', '330423'); +INSERT INTO "public"."cardcodes" VALUES (1637, '浙江省', '嘉兴市', '海盐县', '330424'); +INSERT INTO "public"."cardcodes" VALUES (1638, '浙江省', '嘉兴市', '桐乡县', '330425'); +INSERT INTO "public"."cardcodes" VALUES (1639, '浙江省', '嘉兴市', '海宁市', '330481'); +INSERT INTO "public"."cardcodes" VALUES (1640, '浙江省', '嘉兴市', '平湖市', '330482'); +INSERT INTO "public"."cardcodes" VALUES (1641, '浙江省', '嘉兴市', '桐乡市', '330483'); +INSERT INTO "public"."cardcodes" VALUES (1642, '浙江省', '湖州市', '市辖区', '330501'); +INSERT INTO "public"."cardcodes" VALUES (1643, '浙江省', '湖州市', '吴兴区', '330502'); +INSERT INTO "public"."cardcodes" VALUES (1644, '浙江省', '湖州市', '南浔区', '330503'); +INSERT INTO "public"."cardcodes" VALUES (1645, '浙江省', '湖州市', '郊区', '330511'); +INSERT INTO "public"."cardcodes" VALUES (1646, '浙江省', '湖州市', '德清县', '330521'); +INSERT INTO "public"."cardcodes" VALUES (1647, '浙江省', '湖州市', '长兴县', '330522'); +INSERT INTO "public"."cardcodes" VALUES (1648, '浙江省', '湖州市', '安吉县', '330523'); +INSERT INTO "public"."cardcodes" VALUES (1649, '浙江省', '绍兴市', '市辖区', '330601'); +INSERT INTO "public"."cardcodes" VALUES (1650, '浙江省', '绍兴市', '越城区', '330602'); +INSERT INTO "public"."cardcodes" VALUES (1651, '浙江省', '绍兴市', '绍兴县', '330621'); +INSERT INTO "public"."cardcodes" VALUES (1652, '浙江省', '绍兴市', '上虞县', '330622'); +INSERT INTO "public"."cardcodes" VALUES (1653, '浙江省', '绍兴市', '嵊县', '330623'); +INSERT INTO "public"."cardcodes" VALUES (1654, '浙江省', '绍兴市', '新昌县', '330624'); +INSERT INTO "public"."cardcodes" VALUES (1655, '浙江省', '绍兴市', '诸暨县', '330625'); +INSERT INTO "public"."cardcodes" VALUES (1656, '浙江省', '绍兴市', '诸暨市', '330681'); +INSERT INTO "public"."cardcodes" VALUES (1657, '浙江省', '绍兴市', '上虞市', '330682'); +INSERT INTO "public"."cardcodes" VALUES (1658, '浙江省', '绍兴市', '嵊州市', '330683'); +INSERT INTO "public"."cardcodes" VALUES (1659, '浙江省', '金华市', '市辖区', '330701'); +INSERT INTO "public"."cardcodes" VALUES (1660, '浙江省', '金华市', '婺城区', '330702'); +INSERT INTO "public"."cardcodes" VALUES (1661, '浙江省', '金华市', '金东区', '330703'); +INSERT INTO "public"."cardcodes" VALUES (1662, '浙江省', '金华市', '兰溪市', '330719'); +INSERT INTO "public"."cardcodes" VALUES (1663, '浙江省', '金华市', '金华县', '330721'); +INSERT INTO "public"."cardcodes" VALUES (1664, '浙江省', '金华市', '永康县', '330722'); +INSERT INTO "public"."cardcodes" VALUES (1665, '浙江省', '金华市', '武义县', '330723'); +INSERT INTO "public"."cardcodes" VALUES (1666, '浙江省', '金华市', '东阳县', '330724'); +INSERT INTO "public"."cardcodes" VALUES (1667, '浙江省', '金华市', '义乌县', '330725'); +INSERT INTO "public"."cardcodes" VALUES (1668, '浙江省', '金华市', '浦江县', '330726'); +INSERT INTO "public"."cardcodes" VALUES (1669, '浙江省', '金华市', '磐安县', '330727'); +INSERT INTO "public"."cardcodes" VALUES (1670, '浙江省', '金华市', '兰溪市', '330781'); +INSERT INTO "public"."cardcodes" VALUES (1671, '浙江省', '金华市', '义乌市', '330782'); +INSERT INTO "public"."cardcodes" VALUES (1672, '浙江省', '金华市', '东阳市', '330783'); +INSERT INTO "public"."cardcodes" VALUES (1673, '浙江省', '金华市', '永康市', '330784'); +INSERT INTO "public"."cardcodes" VALUES (1674, '浙江省', '衢州市', '市辖区', '330801'); +INSERT INTO "public"."cardcodes" VALUES (1675, '浙江省', '衢州市', '柯城区', '330802'); +INSERT INTO "public"."cardcodes" VALUES (1676, '浙江省', '衢州市', '衢江区', '330803'); +INSERT INTO "public"."cardcodes" VALUES (1677, '浙江省', '衢州市', '衢县', '330821'); +INSERT INTO "public"."cardcodes" VALUES (1678, '浙江省', '衢州市', '常山县', '330822'); +INSERT INTO "public"."cardcodes" VALUES (1679, '浙江省', '衢州市', '江山县', '330823'); +INSERT INTO "public"."cardcodes" VALUES (1680, '浙江省', '衢州市', '开化县', '330824'); +INSERT INTO "public"."cardcodes" VALUES (1681, '浙江省', '衢州市', '龙游县', '330825'); +INSERT INTO "public"."cardcodes" VALUES (1682, '浙江省', '衢州市', '江山市', '330881'); +INSERT INTO "public"."cardcodes" VALUES (1683, '浙江省', '舟山市', '市辖区', '330901'); +INSERT INTO "public"."cardcodes" VALUES (1684, '浙江省', '舟山市', '定海区', '330902'); +INSERT INTO "public"."cardcodes" VALUES (1685, '浙江省', '舟山市', '普陀区', '330903'); +INSERT INTO "public"."cardcodes" VALUES (1686, '浙江省', '舟山市', '岱山县', '330921'); +INSERT INTO "public"."cardcodes" VALUES (1687, '浙江省', '舟山市', '嵊泗县', '330922'); +INSERT INTO "public"."cardcodes" VALUES (1688, '浙江省', NULL, '余姚市', '339001'); +INSERT INTO "public"."cardcodes" VALUES (1689, '浙江省', NULL, '海宁市', '339002'); +INSERT INTO "public"."cardcodes" VALUES (1690, '浙江省', NULL, '兰溪市', '339003'); +INSERT INTO "public"."cardcodes" VALUES (1691, '浙江省', NULL, '瑞安市', '339004'); +INSERT INTO "public"."cardcodes" VALUES (1692, '浙江省', NULL, '萧山市', '339005'); +INSERT INTO "public"."cardcodes" VALUES (1693, '浙江省', NULL, '江山市', '339006'); +INSERT INTO "public"."cardcodes" VALUES (1694, '浙江省', NULL, '义乌市', '339007'); +INSERT INTO "public"."cardcodes" VALUES (1695, '浙江省', NULL, '东阳市', '339008'); +INSERT INTO "public"."cardcodes" VALUES (1696, '浙江省', NULL, '慈溪市', '339009'); +INSERT INTO "public"."cardcodes" VALUES (1697, '浙江省', NULL, '奉化市', '339010'); +INSERT INTO "public"."cardcodes" VALUES (1698, '浙江省', NULL, '诸暨市', '339011'); +INSERT INTO "public"."cardcodes" VALUES (1699, '安徽省', '阜阳市', '临泉县', '341221'); +INSERT INTO "public"."cardcodes" VALUES (1700, '安徽省', '阜阳市', '太和县', '341222'); +INSERT INTO "public"."cardcodes" VALUES (1701, '安徽省', '阜阳市', '涡阳县', '341223'); +INSERT INTO "public"."cardcodes" VALUES (1702, '安徽省', '阜阳市', '蒙城县', '341224'); +INSERT INTO "public"."cardcodes" VALUES (1703, '安徽省', '阜阳市', '阜南县', '341225'); +INSERT INTO "public"."cardcodes" VALUES (1704, '安徽省', '阜阳市', '颍上县', '341226'); +INSERT INTO "public"."cardcodes" VALUES (1705, '安徽省', '阜阳市', '利辛县', '341227'); +INSERT INTO "public"."cardcodes" VALUES (1706, '安徽省', '阜阳市', '亳州市', '341281'); +INSERT INTO "public"."cardcodes" VALUES (1707, '安徽省', '阜阳市', '界首市', '341282'); +INSERT INTO "public"."cardcodes" VALUES (1708, '安徽省', '阜阳市', '市辖区', '341201'); +INSERT INTO "public"."cardcodes" VALUES (1709, '安徽省', '阜阳市', '颍州区', '341202'); +INSERT INTO "public"."cardcodes" VALUES (1710, '安徽省', '阜阳市', '颍东区', '341203'); +INSERT INTO "public"."cardcodes" VALUES (1711, '安徽省', '阜阳市', '颍泉区', '341204'); +INSERT INTO "public"."cardcodes" VALUES (1712, '安徽省', '宿州市', '市辖区', '341301'); +INSERT INTO "public"."cardcodes" VALUES (1713, '安徽省', '宿州市', '墉桥区', '341302'); +INSERT INTO "public"."cardcodes" VALUES (1714, '安徽省', '宿州市', '砀山县', '341321'); +INSERT INTO "public"."cardcodes" VALUES (1715, '安徽省', '宿州市', '萧县', '341322'); +INSERT INTO "public"."cardcodes" VALUES (1716, '安徽省', '宿州市', '灵璧县', '341323'); +INSERT INTO "public"."cardcodes" VALUES (1717, '安徽省', '宿州市', '泗县', '341324'); +INSERT INTO "public"."cardcodes" VALUES (1718, '安徽省', '巢湖市', '市辖区', '341401'); +INSERT INTO "public"."cardcodes" VALUES (1719, '安徽省', '巢湖市', '居巢区', '341402'); +INSERT INTO "public"."cardcodes" VALUES (1720, '安徽省', '巢湖市', '庐江县', '341421'); +INSERT INTO "public"."cardcodes" VALUES (1721, '安徽省', '巢湖市', '无为县', '341422'); +INSERT INTO "public"."cardcodes" VALUES (1722, '安徽省', '巢湖市', '含山县', '341423'); +INSERT INTO "public"."cardcodes" VALUES (1723, '安徽省', '巢湖市', '和县', '341424'); +INSERT INTO "public"."cardcodes" VALUES (1724, '安徽省', '六安市', '市辖区', '341501'); +INSERT INTO "public"."cardcodes" VALUES (1725, '安徽省', '六安市', '金安区', '341502'); +INSERT INTO "public"."cardcodes" VALUES (1726, '安徽省', '六安市', '裕安区', '341503'); +INSERT INTO "public"."cardcodes" VALUES (1727, '安徽省', '六安市', '寿县', '341521'); +INSERT INTO "public"."cardcodes" VALUES (1728, '安徽省', '六安市', '霍邱县', '341522'); +INSERT INTO "public"."cardcodes" VALUES (1729, '安徽省', '六安市', '舒城县', '341523'); +INSERT INTO "public"."cardcodes" VALUES (1730, '安徽省', '六安市', '金寨县', '341524'); +INSERT INTO "public"."cardcodes" VALUES (1731, '安徽省', '六安市', '霍山县', '341525'); +INSERT INTO "public"."cardcodes" VALUES (1732, '安徽省', '亳州市', '市辖区', '341601'); +INSERT INTO "public"."cardcodes" VALUES (1733, '安徽省', '亳州市', '谯城区', '341602'); +INSERT INTO "public"."cardcodes" VALUES (1734, '安徽省', '亳州市', '涡阳县', '341621'); +INSERT INTO "public"."cardcodes" VALUES (1735, '安徽省', '亳州市', '蒙城县', '341622'); +INSERT INTO "public"."cardcodes" VALUES (1736, '安徽省', '亳州市', '利辛县', '341623'); +INSERT INTO "public"."cardcodes" VALUES (1737, '安徽省', '池州市', '市辖区', '341701'); +INSERT INTO "public"."cardcodes" VALUES (1738, '安徽省', '池州市', '贵池区', '341702'); +INSERT INTO "public"."cardcodes" VALUES (1739, '安徽省', '池州市', '东至县', '341721'); +INSERT INTO "public"."cardcodes" VALUES (1740, '安徽省', '池州市', '石台县', '341722'); +INSERT INTO "public"."cardcodes" VALUES (1741, '安徽省', '池州市', '青阳县', '341723'); +INSERT INTO "public"."cardcodes" VALUES (1742, '安徽省', '宣城市', '市辖区', '341801'); +INSERT INTO "public"."cardcodes" VALUES (1743, '安徽省', '宣城市', '宣州区', '341802'); +INSERT INTO "public"."cardcodes" VALUES (1744, '安徽省', '宣城市', '郎溪县', '341821'); +INSERT INTO "public"."cardcodes" VALUES (1745, '安徽省', '宣城市', '广德县', '341822'); +INSERT INTO "public"."cardcodes" VALUES (1746, '安徽省', '宣城市', '泾县', '341823'); +INSERT INTO "public"."cardcodes" VALUES (1747, '安徽省', '宣城市', '绩溪县', '341824'); +INSERT INTO "public"."cardcodes" VALUES (1748, '安徽省', '宣城市', '旌德县', '341825'); +INSERT INTO "public"."cardcodes" VALUES (1749, '安徽省', '宣城市', '宁国市', '341881'); +INSERT INTO "public"."cardcodes" VALUES (1750, '安徽省', '阜阳地区', '阜阳市', '342101'); +INSERT INTO "public"."cardcodes" VALUES (1751, '安徽省', '阜阳地区', '阜阳县', '342121'); +INSERT INTO "public"."cardcodes" VALUES (1752, '安徽省', '阜阳地区', '临泉县', '342122'); +INSERT INTO "public"."cardcodes" VALUES (1753, '安徽省', '阜阳地区', '太和县', '342123'); +INSERT INTO "public"."cardcodes" VALUES (1754, '安徽省', '阜阳地区', '涡阳县', '342124'); +INSERT INTO "public"."cardcodes" VALUES (1755, '安徽省', '阜阳地区', '蒙城县', '342125'); +INSERT INTO "public"."cardcodes" VALUES (1756, '安徽省', '阜阳地区', '亳县', '342126'); +INSERT INTO "public"."cardcodes" VALUES (1757, '安徽省', '阜阳地区', '阜南县', '342127'); +INSERT INTO "public"."cardcodes" VALUES (1758, '安徽省', '阜阳地区', '颍上县', '342128'); +INSERT INTO "public"."cardcodes" VALUES (1759, '安徽省', '阜阳地区', '界首县', '342129'); +INSERT INTO "public"."cardcodes" VALUES (1760, '安徽省', '阜阳地区', '利辛县', '342130'); +INSERT INTO "public"."cardcodes" VALUES (1761, '安徽省', '宿县地区', '宿州市', '342201'); +INSERT INTO "public"."cardcodes" VALUES (1762, '安徽省', '宿县地区', '砀山县', '342221'); +INSERT INTO "public"."cardcodes" VALUES (1763, '安徽省', '宿县地区', '萧县', '342222'); +INSERT INTO "public"."cardcodes" VALUES (1764, '安徽省', '宿县地区', '宿县', '342223'); +INSERT INTO "public"."cardcodes" VALUES (1765, '安徽省', '宿县地区', '灵璧县', '342224'); +INSERT INTO "public"."cardcodes" VALUES (1766, '安徽省', '宿县地区', '泗县', '342225'); +INSERT INTO "public"."cardcodes" VALUES (1767, '安徽省', '宿县地区', '怀远县', '342226'); +INSERT INTO "public"."cardcodes" VALUES (1768, '安徽省', '宿县地区', '五河县', '342227'); +INSERT INTO "public"."cardcodes" VALUES (1769, '安徽省', '宿县地区', '固镇县', '342228'); +INSERT INTO "public"."cardcodes" VALUES (1770, '安徽省', '滁县地区', '滁州市', '342301'); +INSERT INTO "public"."cardcodes" VALUES (1771, '安徽省', '滁县地区', '天长县', '342321'); +INSERT INTO "public"."cardcodes" VALUES (1772, '安徽省', '滁县地区', '来安县', '342322'); +INSERT INTO "public"."cardcodes" VALUES (1773, '安徽省', '滁县地区', '滁县', '342323'); +INSERT INTO "public"."cardcodes" VALUES (1774, '安徽省', '滁县地区', '全椒县', '342324'); +INSERT INTO "public"."cardcodes" VALUES (1775, '安徽省', '滁县地区', '定远县', '342325'); +INSERT INTO "public"."cardcodes" VALUES (1776, '安徽省', '滁县地区', '凤阳县', '342326'); +INSERT INTO "public"."cardcodes" VALUES (1777, '安徽省', '滁县地区', '嘉山县', '342327'); +INSERT INTO "public"."cardcodes" VALUES (1778, '安徽省', '六安地区', '六安市', '342401'); +INSERT INTO "public"."cardcodes" VALUES (1779, '安徽省', '六安地区', '六安县', '342421'); +INSERT INTO "public"."cardcodes" VALUES (1780, '安徽省', '六安地区', '寿县', '342422'); +INSERT INTO "public"."cardcodes" VALUES (1781, '安徽省', '六安地区', '霍邱县', '342423'); +INSERT INTO "public"."cardcodes" VALUES (1782, '安徽省', '六安地区', '肥西县', '342424'); +INSERT INTO "public"."cardcodes" VALUES (1783, '安徽省', '六安地区', '舒城县', '342425'); +INSERT INTO "public"."cardcodes" VALUES (1784, '安徽省', '六安地区', '金寨县', '342426'); +INSERT INTO "public"."cardcodes" VALUES (1785, '安徽省', '六安地区', '霍山县', '342427'); +INSERT INTO "public"."cardcodes" VALUES (1786, '安徽省', '宣城地区', '宣州市', '342501'); +INSERT INTO "public"."cardcodes" VALUES (1787, '安徽省', '宣城地区', '宁国市', '342502'); +INSERT INTO "public"."cardcodes" VALUES (1788, '安徽省', '宣城地区', '宣州县', '342521'); +INSERT INTO "public"."cardcodes" VALUES (1789, '安徽省', '宣城地区', '郎溪县', '342522'); +INSERT INTO "public"."cardcodes" VALUES (1790, '安徽省', '宣城地区', '广德县', '342523'); +INSERT INTO "public"."cardcodes" VALUES (1791, '安徽省', '宣城地区', '宁国县', '342524'); +INSERT INTO "public"."cardcodes" VALUES (1792, '安徽省', '宣城地区', '当涂县', '342525'); +INSERT INTO "public"."cardcodes" VALUES (1793, '安徽省', '宣城地区', '繁昌县', '342526'); +INSERT INTO "public"."cardcodes" VALUES (1794, '安徽省', '宣城地区', '南陵县', '342527'); +INSERT INTO "public"."cardcodes" VALUES (1795, '安徽省', '宣城地区', '青阳县', '342528'); +INSERT INTO "public"."cardcodes" VALUES (1796, '安徽省', '宣城地区', '泾县', '342529'); +INSERT INTO "public"."cardcodes" VALUES (1797, '安徽省', '宣城地区', '旌德县', '342530'); +INSERT INTO "public"."cardcodes" VALUES (1798, '安徽省', '宣城地区', '绩溪县', '342531'); +INSERT INTO "public"."cardcodes" VALUES (1799, '安徽省', '巢湖地区', '巢湖市', '342601'); +INSERT INTO "public"."cardcodes" VALUES (1800, '安徽省', '巢湖地区', '肥东县', '342621'); +INSERT INTO "public"."cardcodes" VALUES (1801, '安徽省', '巢湖地区', '庐江县', '342622'); +INSERT INTO "public"."cardcodes" VALUES (1802, '安徽省', '巢湖地区', '无为县', '342623'); +INSERT INTO "public"."cardcodes" VALUES (1803, '安徽省', '巢湖地区', '巢县', '342624'); +INSERT INTO "public"."cardcodes" VALUES (1804, '安徽省', '巢湖地区', '含山县', '342625'); +INSERT INTO "public"."cardcodes" VALUES (1805, '安徽省', '巢湖地区', '和县', '342626'); +INSERT INTO "public"."cardcodes" VALUES (1806, '安徽省', '徽州地区', '屯溪市', '342701'); +INSERT INTO "public"."cardcodes" VALUES (1807, '安徽省', '徽州地区', '绩溪县', '342721'); +INSERT INTO "public"."cardcodes" VALUES (1808, '安徽省', '徽州地区', '旌德县', '342722'); +INSERT INTO "public"."cardcodes" VALUES (1809, '安徽省', '徽州地区', '歙县', '342723'); +INSERT INTO "public"."cardcodes" VALUES (1810, '安徽省', '徽州地区', '休宁县', '342724'); +INSERT INTO "public"."cardcodes" VALUES (1811, '安徽省', '徽州地区', '黟县', '342725'); +INSERT INTO "public"."cardcodes" VALUES (1812, '安徽省', '徽州地区', '祁门县', '342726'); +INSERT INTO "public"."cardcodes" VALUES (1813, '安徽省', '徽州地区', '太平县', '342727'); +INSERT INTO "public"."cardcodes" VALUES (1814, '安徽省', '徽州地区', '石台县', '342728'); +INSERT INTO "public"."cardcodes" VALUES (1815, '安徽省', '安庆地区', '怀宁县', '342821'); +INSERT INTO "public"."cardcodes" VALUES (1816, '安徽省', '安庆地区', '桐城县', '342822'); +INSERT INTO "public"."cardcodes" VALUES (1817, '安徽省', '安庆地区', '枞阳县', '342823'); +INSERT INTO "public"."cardcodes" VALUES (1818, '安徽省', '安庆地区', '潜山县', '342824'); +INSERT INTO "public"."cardcodes" VALUES (1819, '安徽省', '安庆地区', '太湖县', '342825'); +INSERT INTO "public"."cardcodes" VALUES (1820, '安徽省', '安庆地区', '宿松县', '342826'); +INSERT INTO "public"."cardcodes" VALUES (1821, '安徽省', '安庆地区', '望江县', '342827'); +INSERT INTO "public"."cardcodes" VALUES (1822, '安徽省', '安庆地区', '岳西县', '342828'); +INSERT INTO "public"."cardcodes" VALUES (1823, '安徽省', '安庆地区', '东至县', '342829'); +INSERT INTO "public"."cardcodes" VALUES (1824, '安徽省', '安庆地区', '贵池县', '342830'); +INSERT INTO "public"."cardcodes" VALUES (1825, '安徽省', '池州地区', '贵池市', '342901'); +INSERT INTO "public"."cardcodes" VALUES (1826, '安徽省', '池州地区', '东至县', '342921'); +INSERT INTO "public"."cardcodes" VALUES (1827, '安徽省', '池州地区', '石台县', '342922'); +INSERT INTO "public"."cardcodes" VALUES (1828, '安徽省', '池州地区', '青阳县', '342923'); +INSERT INTO "public"."cardcodes" VALUES (1829, '安徽省', '合肥市', '市辖区', '340101'); +INSERT INTO "public"."cardcodes" VALUES (1830, '安徽省', '合肥市', '瑶海区', '340102'); +INSERT INTO "public"."cardcodes" VALUES (1831, '安徽省', '合肥市', '庐阳区', '340103'); +INSERT INTO "public"."cardcodes" VALUES (1832, '安徽省', '合肥市', '蜀山区', '340104'); +INSERT INTO "public"."cardcodes" VALUES (1833, '安徽省', '合肥市', '包河区', '340111'); +INSERT INTO "public"."cardcodes" VALUES (1834, '安徽省', '合肥市', '长丰县', '340121'); +INSERT INTO "public"."cardcodes" VALUES (1835, '安徽省', '合肥市', '肥西县', '340122'); +INSERT INTO "public"."cardcodes" VALUES (1836, '安徽省', '合肥市', '肥东县', '340123'); +INSERT INTO "public"."cardcodes" VALUES (1837, '安徽省', '芜湖市', '市辖区', '340201'); +INSERT INTO "public"."cardcodes" VALUES (1838, '安徽省', '芜湖市', '镜湖区', '340202'); +INSERT INTO "public"."cardcodes" VALUES (1839, '安徽省', '芜湖市', '弋江区', '340203'); +INSERT INTO "public"."cardcodes" VALUES (1840, '安徽省', '芜湖市', '新芜区', '340204'); +INSERT INTO "public"."cardcodes" VALUES (1841, '安徽省', '芜湖市', '裕溪口区', '340205'); +INSERT INTO "public"."cardcodes" VALUES (1842, '安徽省', '芜湖市', '四褐山区', '340206'); +INSERT INTO "public"."cardcodes" VALUES (1843, '安徽省', '芜湖市', '鸠江区', '340207'); +INSERT INTO "public"."cardcodes" VALUES (1844, '安徽省', '芜湖市', '三山区', '340208'); +INSERT INTO "public"."cardcodes" VALUES (1845, '安徽省', '芜湖市', '郊区', '340211'); +INSERT INTO "public"."cardcodes" VALUES (1846, '安徽省', '芜湖市', '市区', '340220'); +INSERT INTO "public"."cardcodes" VALUES (1847, '安徽省', '芜湖市', '芜湖县', '340221'); +INSERT INTO "public"."cardcodes" VALUES (1848, '安徽省', '芜湖市', '繁昌县', '340222'); +INSERT INTO "public"."cardcodes" VALUES (1849, '安徽省', '芜湖市', '南陵县', '340223'); +INSERT INTO "public"."cardcodes" VALUES (1850, '安徽省', '芜湖市', '青阳县', '340224'); +INSERT INTO "public"."cardcodes" VALUES (1851, '安徽省', '蚌埠市', '市辖区', '340301'); +INSERT INTO "public"."cardcodes" VALUES (1852, '安徽省', '蚌埠市', '龙子湖区', '340302'); +INSERT INTO "public"."cardcodes" VALUES (1853, '安徽省', '蚌埠市', '蚌山区', '340303'); +INSERT INTO "public"."cardcodes" VALUES (1854, '安徽省', '蚌埠市', '禹会区', '340304'); +INSERT INTO "public"."cardcodes" VALUES (1855, '安徽省', '蚌埠市', '淮上区', '340311'); +INSERT INTO "public"."cardcodes" VALUES (1856, '安徽省', '蚌埠市', '怀远县', '340321'); +INSERT INTO "public"."cardcodes" VALUES (1857, '安徽省', '蚌埠市', '五河县', '340322'); +INSERT INTO "public"."cardcodes" VALUES (1858, '安徽省', '蚌埠市', '固镇县', '340323'); +INSERT INTO "public"."cardcodes" VALUES (1859, '安徽省', '淮南市', '市辖区', '340401'); +INSERT INTO "public"."cardcodes" VALUES (1860, '安徽省', '淮南市', '大通区', '340402'); +INSERT INTO "public"."cardcodes" VALUES (1861, '安徽省', '淮南市', '田家庵区', '340403'); +INSERT INTO "public"."cardcodes" VALUES (1862, '安徽省', '淮南市', '谢家集区', '340404'); +INSERT INTO "public"."cardcodes" VALUES (1863, '安徽省', '淮南市', '八公山区', '340405'); +INSERT INTO "public"."cardcodes" VALUES (1864, '安徽省', '淮南市', '潘集区', '340406'); +INSERT INTO "public"."cardcodes" VALUES (1865, '安徽省', '淮南市', '凤台县', '340421'); +INSERT INTO "public"."cardcodes" VALUES (1866, '安徽省', '马鞍山市', '市辖区', '340501'); +INSERT INTO "public"."cardcodes" VALUES (1867, '安徽省', '马鞍山市', '金家庄区', '340502'); +INSERT INTO "public"."cardcodes" VALUES (1868, '安徽省', '马鞍山市', '花山区', '340503'); +INSERT INTO "public"."cardcodes" VALUES (1869, '安徽省', '马鞍山市', '雨山区', '340504'); +INSERT INTO "public"."cardcodes" VALUES (1870, '安徽省', '马鞍山市', '向山区', '340505'); +INSERT INTO "public"."cardcodes" VALUES (1871, '安徽省', '马鞍山市', '当涂县', '340521'); +INSERT INTO "public"."cardcodes" VALUES (1872, '安徽省', '淮北市', '市辖区', '340601'); +INSERT INTO "public"."cardcodes" VALUES (1873, '安徽省', '淮北市', '杜集区', '340602'); +INSERT INTO "public"."cardcodes" VALUES (1874, '安徽省', '淮北市', '相山区', '340603'); +INSERT INTO "public"."cardcodes" VALUES (1875, '安徽省', '淮北市', '烈山区', '340604'); +INSERT INTO "public"."cardcodes" VALUES (1876, '安徽省', '淮北市', '濉溪县', '340621'); +INSERT INTO "public"."cardcodes" VALUES (1877, '安徽省', '铜陵市', '市辖区', '340701'); +INSERT INTO "public"."cardcodes" VALUES (1878, '安徽省', '铜陵市', '铜官山区', '340702'); +INSERT INTO "public"."cardcodes" VALUES (1879, '安徽省', '铜陵市', '狮子山区', '340703'); +INSERT INTO "public"."cardcodes" VALUES (1880, '安徽省', '铜陵市', '郊区', '340711'); +INSERT INTO "public"."cardcodes" VALUES (1881, '安徽省', '铜陵市', '铜陵县', '340721'); +INSERT INTO "public"."cardcodes" VALUES (1882, '安徽省', '安庆市', '市辖区', '340801'); +INSERT INTO "public"."cardcodes" VALUES (1883, '安徽省', '安庆市', '迎江区', '340802'); +INSERT INTO "public"."cardcodes" VALUES (1884, '安徽省', '安庆市', '大观区', '340803'); +INSERT INTO "public"."cardcodes" VALUES (1885, '安徽省', '安庆市', '郊区', '340811'); +INSERT INTO "public"."cardcodes" VALUES (1886, '安徽省', '安庆市', '桐城县', '340821'); +INSERT INTO "public"."cardcodes" VALUES (1887, '安徽省', '安庆市', '怀宁县', '340822'); +INSERT INTO "public"."cardcodes" VALUES (1888, '安徽省', '安庆市', '枞阳县', '340823'); +INSERT INTO "public"."cardcodes" VALUES (1889, '安徽省', '安庆市', '潜山县', '340824'); +INSERT INTO "public"."cardcodes" VALUES (1890, '安徽省', '安庆市', '太湖县', '340825'); +INSERT INTO "public"."cardcodes" VALUES (1891, '安徽省', '安庆市', '宿松县', '340826'); +INSERT INTO "public"."cardcodes" VALUES (1892, '安徽省', '安庆市', '望江县', '340827'); +INSERT INTO "public"."cardcodes" VALUES (1893, '安徽省', '安庆市', '岳西县', '340828'); +INSERT INTO "public"."cardcodes" VALUES (1894, '安徽省', '安庆市', '桐城市', '340881'); +INSERT INTO "public"."cardcodes" VALUES (1895, '安徽省', '黄山市', '市辖区', '341001'); +INSERT INTO "public"."cardcodes" VALUES (1896, '安徽省', '黄山市', '屯溪区', '341002'); +INSERT INTO "public"."cardcodes" VALUES (1897, '安徽省', '黄山市', '黄山区', '341003'); +INSERT INTO "public"."cardcodes" VALUES (1898, '安徽省', '黄山市', '徽州区', '341004'); +INSERT INTO "public"."cardcodes" VALUES (1899, '安徽省', '黄山市', '歙县', '341021'); +INSERT INTO "public"."cardcodes" VALUES (1900, '安徽省', '黄山市', '休宁县', '341022'); +INSERT INTO "public"."cardcodes" VALUES (1901, '安徽省', '黄山市', '黟县', '341023'); +INSERT INTO "public"."cardcodes" VALUES (1902, '安徽省', '黄山市', '祁门县', '341024'); +INSERT INTO "public"."cardcodes" VALUES (1903, '安徽省', '滁州市', '市辖区', '341101'); +INSERT INTO "public"."cardcodes" VALUES (1904, '安徽省', '滁州市', '琅琊区', '341102'); +INSERT INTO "public"."cardcodes" VALUES (1905, '安徽省', '滁州市', '南谯区', '341103'); +INSERT INTO "public"."cardcodes" VALUES (1906, '安徽省', '滁州市', '天长县', '341121'); +INSERT INTO "public"."cardcodes" VALUES (1907, '安徽省', '滁州市', '来安县', '341122'); +INSERT INTO "public"."cardcodes" VALUES (1908, '安徽省', '滁州市', '全椒县', '341124'); +INSERT INTO "public"."cardcodes" VALUES (1909, '安徽省', '滁州市', '定远县', '341125'); +INSERT INTO "public"."cardcodes" VALUES (1910, '安徽省', '滁州市', '凤阳县', '341126'); +INSERT INTO "public"."cardcodes" VALUES (1911, '安徽省', '滁州市', '嘉山县', '341127'); +INSERT INTO "public"."cardcodes" VALUES (1912, '安徽省', '滁州市', '天长市', '341181'); +INSERT INTO "public"."cardcodes" VALUES (1913, '安徽省', '滁州市', '明光市', '341182'); +INSERT INTO "public"."cardcodes" VALUES (1914, '福建省', '宁德市', '市辖区', '350901'); +INSERT INTO "public"."cardcodes" VALUES (1915, '福建省', '宁德市', '蕉城区', '350902'); +INSERT INTO "public"."cardcodes" VALUES (1916, '福建省', '宁德市', '霞浦县', '350921'); +INSERT INTO "public"."cardcodes" VALUES (1917, '福建省', '宁德市', '古田县', '350922'); +INSERT INTO "public"."cardcodes" VALUES (1918, '福建省', '宁德市', '屏南县', '350923'); +INSERT INTO "public"."cardcodes" VALUES (1919, '福建省', '宁德市', '寿宁县', '350924'); +INSERT INTO "public"."cardcodes" VALUES (1920, '福建省', '宁德市', '周宁县', '350925'); +INSERT INTO "public"."cardcodes" VALUES (1921, '福建省', '宁德市', '柘荣县', '350926'); +INSERT INTO "public"."cardcodes" VALUES (1922, '福建省', '宁德市', '福安市', '350981'); +INSERT INTO "public"."cardcodes" VALUES (1923, '福建省', '宁德市', '福鼎市', '350982'); +INSERT INTO "public"."cardcodes" VALUES (1924, '福建省', '南平地区', '南平市', '352101'); +INSERT INTO "public"."cardcodes" VALUES (1925, '福建省', '南平地区', '邵武市', '352102'); +INSERT INTO "public"."cardcodes" VALUES (1926, '福建省', '南平地区', '武夷山市', '352103'); +INSERT INTO "public"."cardcodes" VALUES (1927, '福建省', '南平地区', '建瓯市', '352104'); +INSERT INTO "public"."cardcodes" VALUES (1928, '福建省', '南平地区', '顺昌县', '352121'); +INSERT INTO "public"."cardcodes" VALUES (1929, '福建省', '南平地区', '建阳县', '352122'); +INSERT INTO "public"."cardcodes" VALUES (1930, '福建省', '南平地区', '建瓯县', '352123'); +INSERT INTO "public"."cardcodes" VALUES (1931, '福建省', '南平地区', '浦城县', '352124'); +INSERT INTO "public"."cardcodes" VALUES (1932, '福建省', '南平地区', '邵武县', '352125'); +INSERT INTO "public"."cardcodes" VALUES (1933, '福建省', '南平地区', '崇安县', '352126'); +INSERT INTO "public"."cardcodes" VALUES (1934, '福建省', '南平地区', '光泽县', '352127'); +INSERT INTO "public"."cardcodes" VALUES (1935, '福建省', '南平地区', '松溪县', '352128'); +INSERT INTO "public"."cardcodes" VALUES (1936, '福建省', '南平地区', '政和县', '352129'); +INSERT INTO "public"."cardcodes" VALUES (1937, '福建省', '宁德地区', '宁德市', '352201'); +INSERT INTO "public"."cardcodes" VALUES (1938, '福建省', '宁德地区', '福安市', '352202'); +INSERT INTO "public"."cardcodes" VALUES (1939, '福建省', '宁德地区', '福鼎市', '352203'); +INSERT INTO "public"."cardcodes" VALUES (1940, '福建省', '宁德地区', '宁德县', '352221'); +INSERT INTO "public"."cardcodes" VALUES (1941, '福建省', '宁德地区', '连江县', '352222'); +INSERT INTO "public"."cardcodes" VALUES (1942, '福建省', '宁德地区', '罗源县', '352223'); +INSERT INTO "public"."cardcodes" VALUES (1943, '福建省', '宁德地区', '福鼎县', '352224'); +INSERT INTO "public"."cardcodes" VALUES (1944, '福建省', '宁德地区', '霞浦县', '352225'); +INSERT INTO "public"."cardcodes" VALUES (1945, '福建省', '宁德地区', '福安县', '352226'); +INSERT INTO "public"."cardcodes" VALUES (1946, '福建省', '宁德地区', '古田县', '352227'); +INSERT INTO "public"."cardcodes" VALUES (1947, '福建省', '宁德地区', '屏南县', '352228'); +INSERT INTO "public"."cardcodes" VALUES (1948, '福建省', '宁德地区', '寿宁县', '352229'); +INSERT INTO "public"."cardcodes" VALUES (1949, '福建省', '宁德地区', '周宁县', '352230'); +INSERT INTO "public"."cardcodes" VALUES (1950, '福建省', '宁德地区', '柘荣县', '352231'); +INSERT INTO "public"."cardcodes" VALUES (1951, '福建省', '龙岩地区', '龙岩市', '352601'); +INSERT INTO "public"."cardcodes" VALUES (1952, '福建省', '龙岩地区', '漳平市', '352602'); +INSERT INTO "public"."cardcodes" VALUES (1953, '福建省', '龙岩地区', '长汀县', '352622'); +INSERT INTO "public"."cardcodes" VALUES (1954, '福建省', '龙岩地区', '永定县', '352623'); +INSERT INTO "public"."cardcodes" VALUES (1955, '福建省', '龙岩地区', '上杭县', '352624'); +INSERT INTO "public"."cardcodes" VALUES (1956, '福建省', '龙岩地区', '武平县', '352625'); +INSERT INTO "public"."cardcodes" VALUES (1957, '福建省', '龙岩地区', '漳平县', '352626'); +INSERT INTO "public"."cardcodes" VALUES (1958, '福建省', '龙岩地区', '连城县', '352627'); +INSERT INTO "public"."cardcodes" VALUES (1959, '福建省', '三明市', '三明市', '352701'); +INSERT INTO "public"."cardcodes" VALUES (1960, '福建省', '三明市', '明溪县', '352721'); +INSERT INTO "public"."cardcodes" VALUES (1961, '福建省', '三明市', '永安县', '352722'); +INSERT INTO "public"."cardcodes" VALUES (1962, '福建省', '三明市', '清流县', '352723'); +INSERT INTO "public"."cardcodes" VALUES (1963, '福建省', '三明市', '宁化县', '352724'); +INSERT INTO "public"."cardcodes" VALUES (1964, '福建省', '三明市', '大田县', '352725'); +INSERT INTO "public"."cardcodes" VALUES (1965, '福建省', '三明市', '尤溪县', '352726'); +INSERT INTO "public"."cardcodes" VALUES (1966, '福建省', '三明市', '沙县', '352727'); +INSERT INTO "public"."cardcodes" VALUES (1967, '福建省', '三明市', '将乐县', '352728'); +INSERT INTO "public"."cardcodes" VALUES (1968, '福建省', '三明市', '泰宁县', '352729'); +INSERT INTO "public"."cardcodes" VALUES (1969, '福建省', '三明市', '建宁县', '352730'); +INSERT INTO "public"."cardcodes" VALUES (1970, '福建省', '福州市', '市辖区', '350101'); +INSERT INTO "public"."cardcodes" VALUES (1971, '福建省', '福州市', '鼓楼区', '350102'); +INSERT INTO "public"."cardcodes" VALUES (1972, '福建省', '福州市', '台江区', '350103'); +INSERT INTO "public"."cardcodes" VALUES (1973, '福建省', '福州市', '仓山区', '350104'); +INSERT INTO "public"."cardcodes" VALUES (1974, '福建省', '福州市', '马尾区', '350105'); +INSERT INTO "public"."cardcodes" VALUES (1975, '福建省', '福州市', '晋安区', '350111'); +INSERT INTO "public"."cardcodes" VALUES (1976, '福建省', '福州市', '市区', '350120'); +INSERT INTO "public"."cardcodes" VALUES (1977, '福建省', '福州市', '闽侯县', '350121'); +INSERT INTO "public"."cardcodes" VALUES (1978, '福建省', '福州市', '连江县', '350122'); +INSERT INTO "public"."cardcodes" VALUES (1979, '福建省', '福州市', '罗源县', '350123'); +INSERT INTO "public"."cardcodes" VALUES (1980, '福建省', '福州市', '闽清县', '350124'); +INSERT INTO "public"."cardcodes" VALUES (1981, '福建省', '福州市', '永泰县', '350125'); +INSERT INTO "public"."cardcodes" VALUES (1982, '福建省', '福州市', '长乐县', '350126'); +INSERT INTO "public"."cardcodes" VALUES (1983, '福建省', '福州市', '福清县', '350127'); +INSERT INTO "public"."cardcodes" VALUES (1984, '福建省', '福州市', '平潭县', '350128'); +INSERT INTO "public"."cardcodes" VALUES (1985, '福建省', '福州市', '福清市', '350181'); +INSERT INTO "public"."cardcodes" VALUES (1986, '福建省', '福州市', '长乐市', '350182'); +INSERT INTO "public"."cardcodes" VALUES (1987, '福建省', '厦门市', '市辖区', '350201'); +INSERT INTO "public"."cardcodes" VALUES (1988, '福建省', '厦门市', '鼓浪屿区', '350202'); +INSERT INTO "public"."cardcodes" VALUES (1989, '福建省', '厦门市', '思明区', '350203'); +INSERT INTO "public"."cardcodes" VALUES (1990, '福建省', '厦门市', '开元区', '350204'); +INSERT INTO "public"."cardcodes" VALUES (1991, '福建省', '厦门市', '海沧区', '350205'); +INSERT INTO "public"."cardcodes" VALUES (1992, '福建省', '厦门市', '湖里区', '350206'); +INSERT INTO "public"."cardcodes" VALUES (1993, '福建省', '厦门市', '集美区', '350211'); +INSERT INTO "public"."cardcodes" VALUES (1994, '福建省', '厦门市', '同安区', '350212'); +INSERT INTO "public"."cardcodes" VALUES (1995, '福建省', '厦门市', '翔安区', '350213'); +INSERT INTO "public"."cardcodes" VALUES (1996, '福建省', '莆田市', '市辖区', '350301'); +INSERT INTO "public"."cardcodes" VALUES (1997, '福建省', '莆田市', '城厢区', '350302'); +INSERT INTO "public"."cardcodes" VALUES (1998, '福建省', '莆田市', '涵江区', '350303'); +INSERT INTO "public"."cardcodes" VALUES (1999, '福建省', '莆田市', '荔城区', '350304'); +INSERT INTO "public"."cardcodes" VALUES (2000, '福建省', '莆田市', '秀屿区', '350305'); +INSERT INTO "public"."cardcodes" VALUES (2001, '福建省', '莆田市', '莆田县', '350321'); +INSERT INTO "public"."cardcodes" VALUES (2002, '福建省', '莆田市', '仙游县', '350322'); +INSERT INTO "public"."cardcodes" VALUES (2003, '福建省', '三明市', '市辖区', '350401'); +INSERT INTO "public"."cardcodes" VALUES (2004, '福建省', '三明市', '梅列区', '350402'); +INSERT INTO "public"."cardcodes" VALUES (2005, '福建省', '三明市', '三元区', '350403'); +INSERT INTO "public"."cardcodes" VALUES (2006, '福建省', '三明市', '永安市', '350404'); +INSERT INTO "public"."cardcodes" VALUES (2007, '福建省', '三明市', '永安市', '350420'); +INSERT INTO "public"."cardcodes" VALUES (2008, '福建省', '三明市', '明溪县', '350421'); +INSERT INTO "public"."cardcodes" VALUES (2009, '福建省', '三明市', '永安县', '350422'); +INSERT INTO "public"."cardcodes" VALUES (2010, '福建省', '三明市', '清流县', '350423'); +INSERT INTO "public"."cardcodes" VALUES (2011, '福建省', '三明市', '宁化县', '350424'); +INSERT INTO "public"."cardcodes" VALUES (2012, '福建省', '三明市', '大田县', '350425'); +INSERT INTO "public"."cardcodes" VALUES (2013, '福建省', '三明市', '尤溪县', '350426'); +INSERT INTO "public"."cardcodes" VALUES (2014, '福建省', '三明市', '沙县', '350427'); +INSERT INTO "public"."cardcodes" VALUES (2015, '福建省', '三明市', '将乐县', '350428'); +INSERT INTO "public"."cardcodes" VALUES (2016, '福建省', '三明市', '泰宁县', '350429'); +INSERT INTO "public"."cardcodes" VALUES (2017, '福建省', '三明市', '建宁县', '350430'); +INSERT INTO "public"."cardcodes" VALUES (2018, '福建省', '三明市', '永安市', '350481'); +INSERT INTO "public"."cardcodes" VALUES (2019, '福建省', '泉州市', '市辖区', '350501'); +INSERT INTO "public"."cardcodes" VALUES (2020, '福建省', '泉州市', '鲤城区', '350502'); +INSERT INTO "public"."cardcodes" VALUES (2021, '福建省', '泉州市', '丰泽区', '350503'); +INSERT INTO "public"."cardcodes" VALUES (2022, '福建省', '泉州市', '洛江区', '350504'); +INSERT INTO "public"."cardcodes" VALUES (2023, '福建省', '泉州市', '泉港区', '350505'); +INSERT INTO "public"."cardcodes" VALUES (2024, '福建省', '泉州市', '惠安县', '350521'); +INSERT INTO "public"."cardcodes" VALUES (2025, '福建省', '泉州市', '晋江县', '350522'); +INSERT INTO "public"."cardcodes" VALUES (2026, '福建省', '泉州市', '南安县', '350523'); +INSERT INTO "public"."cardcodes" VALUES (2027, '福建省', '泉州市', '安溪县', '350524'); +INSERT INTO "public"."cardcodes" VALUES (2028, '福建省', '泉州市', '永春县', '350525'); +INSERT INTO "public"."cardcodes" VALUES (2029, '福建省', '泉州市', '德化县', '350526'); +INSERT INTO "public"."cardcodes" VALUES (2030, '福建省', '泉州市', '金门县', '350527'); +INSERT INTO "public"."cardcodes" VALUES (2031, '福建省', '泉州市', '石狮市', '350581'); +INSERT INTO "public"."cardcodes" VALUES (2032, '福建省', '泉州市', '晋江市', '350582'); +INSERT INTO "public"."cardcodes" VALUES (2033, '福建省', '泉州市', '南安市', '350583'); +INSERT INTO "public"."cardcodes" VALUES (2034, '福建省', '漳州市', '市辖区', '350601'); +INSERT INTO "public"."cardcodes" VALUES (2035, '福建省', '漳州市', '芗城区', '350602'); +INSERT INTO "public"."cardcodes" VALUES (2036, '福建省', '漳州市', '龙文区', '350603'); +INSERT INTO "public"."cardcodes" VALUES (2037, '福建省', '漳州市', '龙海县', '350621'); +INSERT INTO "public"."cardcodes" VALUES (2038, '福建省', '漳州市', '云霄县', '350622'); +INSERT INTO "public"."cardcodes" VALUES (2039, '福建省', '漳州市', '漳浦县', '350623'); +INSERT INTO "public"."cardcodes" VALUES (2040, '福建省', '漳州市', '诏安县', '350624'); +INSERT INTO "public"."cardcodes" VALUES (2041, '福建省', '漳州市', '长泰县', '350625'); +INSERT INTO "public"."cardcodes" VALUES (2042, '福建省', '漳州市', '东山县', '350626'); +INSERT INTO "public"."cardcodes" VALUES (2043, '福建省', '漳州市', '南靖县', '350627'); +INSERT INTO "public"."cardcodes" VALUES (2044, '福建省', '漳州市', '平和县', '350628'); +INSERT INTO "public"."cardcodes" VALUES (2045, '福建省', '漳州市', '华安县', '350629'); +INSERT INTO "public"."cardcodes" VALUES (2046, '福建省', '漳州市', '龙海市', '350681'); +INSERT INTO "public"."cardcodes" VALUES (2047, '福建省', '南平市', '市辖区', '350701'); +INSERT INTO "public"."cardcodes" VALUES (2048, '福建省', '南平市', '延平区', '350702'); +INSERT INTO "public"."cardcodes" VALUES (2049, '福建省', '南平市', '顺昌县', '350721'); +INSERT INTO "public"."cardcodes" VALUES (2050, '福建省', '南平市', '浦城县', '350722'); +INSERT INTO "public"."cardcodes" VALUES (2051, '福建省', '南平市', '光泽县', '350723'); +INSERT INTO "public"."cardcodes" VALUES (2052, '福建省', '南平市', '松溪县', '350724'); +INSERT INTO "public"."cardcodes" VALUES (2053, '福建省', '南平市', '政和县', '350725'); +INSERT INTO "public"."cardcodes" VALUES (2054, '福建省', '南平市', '邵武市', '350781'); +INSERT INTO "public"."cardcodes" VALUES (2055, '福建省', '南平市', '武夷山市', '350782'); +INSERT INTO "public"."cardcodes" VALUES (2056, '福建省', '南平市', '建瓯市', '350783'); +INSERT INTO "public"."cardcodes" VALUES (2057, '福建省', '南平市', '建阳市', '350784'); +INSERT INTO "public"."cardcodes" VALUES (2058, '福建省', '龙岩市', '市辖区', '350801'); +INSERT INTO "public"."cardcodes" VALUES (2059, '福建省', '龙岩市', '新罗区', '350802'); +INSERT INTO "public"."cardcodes" VALUES (2060, '福建省', '龙岩市', '长汀县', '350821'); +INSERT INTO "public"."cardcodes" VALUES (2061, '福建省', '龙岩市', '永定县', '350822'); +INSERT INTO "public"."cardcodes" VALUES (2062, '福建省', '龙岩市', '上杭县', '350823'); +INSERT INTO "public"."cardcodes" VALUES (2063, '福建省', '龙岩市', '武平县', '350824'); +INSERT INTO "public"."cardcodes" VALUES (2064, '福建省', '龙岩市', '连城县', '350825'); +INSERT INTO "public"."cardcodes" VALUES (2065, '福建省', '龙岩市', '漳平市', '350881'); +INSERT INTO "public"."cardcodes" VALUES (2066, '福建省', NULL, '永安市', '359001'); +INSERT INTO "public"."cardcodes" VALUES (2067, '福建省', NULL, '石狮市', '359002'); +INSERT INTO "public"."cardcodes" VALUES (2068, '江西省', '南昌市', '市辖区', '360101'); +INSERT INTO "public"."cardcodes" VALUES (2069, '江西省', '南昌市', '东湖区', '360102'); +INSERT INTO "public"."cardcodes" VALUES (2070, '江西省', '南昌市', '西湖区', '360103'); +INSERT INTO "public"."cardcodes" VALUES (2071, '江西省', '南昌市', '青云谱区', '360104'); +INSERT INTO "public"."cardcodes" VALUES (2072, '江西省', '南昌市', '湾里区', '360105'); +INSERT INTO "public"."cardcodes" VALUES (2073, '江西省', '南昌市', '郊区', '360111'); +INSERT INTO "public"."cardcodes" VALUES (2074, '江西省', '南昌市', '南昌县', '360121'); +INSERT INTO "public"."cardcodes" VALUES (2075, '江西省', '南昌市', '新建县', '360122'); +INSERT INTO "public"."cardcodes" VALUES (2076, '江西省', '南昌市', '安义县', '360123'); +INSERT INTO "public"."cardcodes" VALUES (2077, '江西省', '南昌市', '进贤县', '360124'); +INSERT INTO "public"."cardcodes" VALUES (2078, '江西省', '景德镇市', '市辖区', '360201'); +INSERT INTO "public"."cardcodes" VALUES (2079, '江西省', '景德镇市', '昌江区', '360202'); +INSERT INTO "public"."cardcodes" VALUES (2080, '江西省', '景德镇市', '珠山区', '360203'); +INSERT INTO "public"."cardcodes" VALUES (2081, '江西省', '景德镇市', '鹅湖区', '360211'); +INSERT INTO "public"."cardcodes" VALUES (2082, '江西省', '景德镇市', '蛟潭区', '360212'); +INSERT INTO "public"."cardcodes" VALUES (2083, '江西省', '景德镇市', '乐平县', '360221'); +INSERT INTO "public"."cardcodes" VALUES (2084, '江西省', '景德镇市', '浮梁县', '360222'); +INSERT INTO "public"."cardcodes" VALUES (2085, '江西省', '景德镇市', '乐平市', '360281'); +INSERT INTO "public"."cardcodes" VALUES (2086, '江西省', '上饶市', '鄱阳县', '361128'); +INSERT INTO "public"."cardcodes" VALUES (2087, '江西省', '上饶市', '万年县', '361129'); +INSERT INTO "public"."cardcodes" VALUES (2088, '江西省', '上饶市', '婺源县', '361130'); +INSERT INTO "public"."cardcodes" VALUES (2089, '江西省', '上饶市', '德兴市', '361181'); +INSERT INTO "public"."cardcodes" VALUES (2090, '江西省', '上饶市', '市辖区', '361101'); +INSERT INTO "public"."cardcodes" VALUES (2091, '江西省', '上饶市', '信州区', '361102'); +INSERT INTO "public"."cardcodes" VALUES (2092, '江西省', '上饶市', '上饶县', '361121'); +INSERT INTO "public"."cardcodes" VALUES (2093, '江西省', '上饶市', '广丰县', '361122'); +INSERT INTO "public"."cardcodes" VALUES (2094, '江西省', '上饶市', '玉山县', '361123'); +INSERT INTO "public"."cardcodes" VALUES (2095, '江西省', '上饶市', '铅山县', '361124'); +INSERT INTO "public"."cardcodes" VALUES (2096, '江西省', '上饶市', '横峰县', '361125'); +INSERT INTO "public"."cardcodes" VALUES (2097, '江西省', '上饶市', '弋阳县', '361126'); +INSERT INTO "public"."cardcodes" VALUES (2098, '江西省', '上饶市', '余干县', '361127'); +INSERT INTO "public"."cardcodes" VALUES (2099, '江西省', '赣州地区', '赣州市', '362101'); +INSERT INTO "public"."cardcodes" VALUES (2100, '江西省', '赣州地区', '瑞金市', '362102'); +INSERT INTO "public"."cardcodes" VALUES (2101, '江西省', '赣州地区', '南康市', '362103'); +INSERT INTO "public"."cardcodes" VALUES (2102, '江西省', '赣州地区', '赣县', '362121'); +INSERT INTO "public"."cardcodes" VALUES (2103, '江西省', '赣州地区', '南康市', '362122'); +INSERT INTO "public"."cardcodes" VALUES (2104, '江西省', '赣州地区', '信丰县', '362123'); +INSERT INTO "public"."cardcodes" VALUES (2105, '江西省', '赣州地区', '大余县', '362124'); +INSERT INTO "public"."cardcodes" VALUES (2106, '江西省', '赣州地区', '上犹县', '362125'); +INSERT INTO "public"."cardcodes" VALUES (2107, '江西省', '赣州地区', '崇义县', '362126'); +INSERT INTO "public"."cardcodes" VALUES (2108, '江西省', '赣州地区', '安远县', '362127'); +INSERT INTO "public"."cardcodes" VALUES (2109, '江西省', '赣州地区', '龙南县', '362128'); +INSERT INTO "public"."cardcodes" VALUES (2110, '江西省', '赣州地区', '定南县', '362129'); +INSERT INTO "public"."cardcodes" VALUES (2111, '江西省', '赣州地区', '全南县', '362130'); +INSERT INTO "public"."cardcodes" VALUES (2112, '江西省', '赣州地区', '宁都县', '362131'); +INSERT INTO "public"."cardcodes" VALUES (2113, '江西省', '赣州地区', '于都县', '362132'); +INSERT INTO "public"."cardcodes" VALUES (2114, '江西省', '赣州地区', '兴国县', '362133'); +INSERT INTO "public"."cardcodes" VALUES (2115, '江西省', '赣州地区', '瑞金市', '362134'); +INSERT INTO "public"."cardcodes" VALUES (2116, '江西省', '赣州地区', '会昌县', '362135'); +INSERT INTO "public"."cardcodes" VALUES (2117, '江西省', '赣州地区', '寻乌县', '362136'); +INSERT INTO "public"."cardcodes" VALUES (2118, '江西省', '赣州地区', '石城县', '362137'); +INSERT INTO "public"."cardcodes" VALUES (2119, '江西省', '赣州地区', '广昌县', '362138'); +INSERT INTO "public"."cardcodes" VALUES (2120, '江西省', '宜春地区', '宜春市', '362201'); +INSERT INTO "public"."cardcodes" VALUES (2121, '江西省', '宜春地区', '丰城市', '362202'); +INSERT INTO "public"."cardcodes" VALUES (2122, '江西省', '宜春地区', '樟树市', '362203'); +INSERT INTO "public"."cardcodes" VALUES (2123, '江西省', '宜春地区', '高安市', '362204'); +INSERT INTO "public"."cardcodes" VALUES (2124, '江西省', '宜春地区', '丰城县', '362221'); +INSERT INTO "public"."cardcodes" VALUES (2125, '江西省', '宜春地区', '高安县', '362222'); +INSERT INTO "public"."cardcodes" VALUES (2126, '江西省', '宜春地区', '清江县', '362223'); +INSERT INTO "public"."cardcodes" VALUES (2127, '江西省', '宜春地区', '新余县', '362224'); +INSERT INTO "public"."cardcodes" VALUES (2128, '江西省', '宜春地区', '宜春县', '362225'); +INSERT INTO "public"."cardcodes" VALUES (2129, '江西省', '宜春地区', '奉新县', '362226'); +INSERT INTO "public"."cardcodes" VALUES (2130, '江西省', '宜春地区', '万载县', '362227'); +INSERT INTO "public"."cardcodes" VALUES (2131, '江西省', '宜春地区', '上高县', '362228'); +INSERT INTO "public"."cardcodes" VALUES (2132, '江西省', '宜春地区', '宜丰县', '362229'); +INSERT INTO "public"."cardcodes" VALUES (2133, '江西省', '宜春地区', '分宜县', '362230'); +INSERT INTO "public"."cardcodes" VALUES (2134, '江西省', '宜春地区', '安义县', '362231'); +INSERT INTO "public"."cardcodes" VALUES (2135, '江西省', '宜春地区', '靖安县', '362232'); +INSERT INTO "public"."cardcodes" VALUES (2136, '江西省', '宜春地区', '铜鼓县', '362233'); +INSERT INTO "public"."cardcodes" VALUES (2137, '江西省', '上饶地区', '上饶市', '362301'); +INSERT INTO "public"."cardcodes" VALUES (2138, '江西省', '上饶地区', '德兴市', '362302'); +INSERT INTO "public"."cardcodes" VALUES (2139, '江西省', '上饶地区', '上饶县', '362321'); +INSERT INTO "public"."cardcodes" VALUES (2140, '江西省', '上饶地区', '广丰县', '362322'); +INSERT INTO "public"."cardcodes" VALUES (2141, '江西省', '上饶地区', '玉山县', '362323'); +INSERT INTO "public"."cardcodes" VALUES (2142, '江西省', '上饶地区', '铅山县', '362324'); +INSERT INTO "public"."cardcodes" VALUES (2143, '江西省', '上饶地区', '横峰县', '362325'); +INSERT INTO "public"."cardcodes" VALUES (2144, '江西省', '上饶地区', '弋阳县', '362326'); +INSERT INTO "public"."cardcodes" VALUES (2145, '江西省', '上饶地区', '贵溪县', '362327'); +INSERT INTO "public"."cardcodes" VALUES (2146, '江西省', '上饶地区', '余江县', '362328'); +INSERT INTO "public"."cardcodes" VALUES (2147, '江西省', '上饶地区', '余干县', '362329'); +INSERT INTO "public"."cardcodes" VALUES (2148, '江西省', '上饶地区', '波阳县', '362330'); +INSERT INTO "public"."cardcodes" VALUES (2149, '江西省', '上饶地区', '万年县', '362331'); +INSERT INTO "public"."cardcodes" VALUES (2150, '江西省', '上饶地区', '乐平县', '362332'); +INSERT INTO "public"."cardcodes" VALUES (2151, '江西省', '上饶地区', '德兴县', '362333'); +INSERT INTO "public"."cardcodes" VALUES (2152, '江西省', '上饶地区', '婺源县', '362334'); +INSERT INTO "public"."cardcodes" VALUES (2153, '江西省', '萍乡市', '市辖区', '360301'); +INSERT INTO "public"."cardcodes" VALUES (2154, '江西省', '萍乡市', '安源区', '360302'); +INSERT INTO "public"."cardcodes" VALUES (2155, '江西省', '萍乡市', '上栗区', '360311'); +INSERT INTO "public"."cardcodes" VALUES (2156, '江西省', '萍乡市', '芦溪区', '360312'); +INSERT INTO "public"."cardcodes" VALUES (2157, '江西省', '萍乡市', '湘东区', '360313'); +INSERT INTO "public"."cardcodes" VALUES (2158, '江西省', '萍乡市', '莲花县', '360321'); +INSERT INTO "public"."cardcodes" VALUES (2159, '江西省', '萍乡市', '上栗县', '360322'); +INSERT INTO "public"."cardcodes" VALUES (2160, '江西省', '萍乡市', '芦溪县', '360323'); +INSERT INTO "public"."cardcodes" VALUES (2161, '江西省', '九江市', '市辖区', '360401'); +INSERT INTO "public"."cardcodes" VALUES (2162, '江西省', '九江市', '庐山区', '360402'); +INSERT INTO "public"."cardcodes" VALUES (2163, '江西省', '九江市', '浔阳区', '360403'); +INSERT INTO "public"."cardcodes" VALUES (2164, '江西省', '九江市', '九江县', '360421'); +INSERT INTO "public"."cardcodes" VALUES (2165, '江西省', '九江市', '瑞昌县', '360422'); +INSERT INTO "public"."cardcodes" VALUES (2166, '江西省', '九江市', '武宁县', '360423'); +INSERT INTO "public"."cardcodes" VALUES (2167, '江西省', '九江市', '修水县', '360424'); +INSERT INTO "public"."cardcodes" VALUES (2168, '江西省', '九江市', '永修县', '360425'); +INSERT INTO "public"."cardcodes" VALUES (2169, '江西省', '九江市', '德安县', '360426'); +INSERT INTO "public"."cardcodes" VALUES (2170, '江西省', '九江市', '星子县', '360427'); +INSERT INTO "public"."cardcodes" VALUES (2171, '江西省', '九江市', '都昌县', '360428'); +INSERT INTO "public"."cardcodes" VALUES (2172, '江西省', '九江市', '湖口县', '360429'); +INSERT INTO "public"."cardcodes" VALUES (2173, '江西省', '九江市', '彭泽县', '360430'); +INSERT INTO "public"."cardcodes" VALUES (2174, '江西省', '九江市', '瑞昌市', '360481'); +INSERT INTO "public"."cardcodes" VALUES (2175, '江西省', '新余市', '市辖区', '360501'); +INSERT INTO "public"."cardcodes" VALUES (2176, '江西省', '新余市', '渝水区', '360502'); +INSERT INTO "public"."cardcodes" VALUES (2177, '江西省', '新余市', '分宜县', '360521'); +INSERT INTO "public"."cardcodes" VALUES (2178, '江西省', '鹰潭市', '市辖区', '360601'); +INSERT INTO "public"."cardcodes" VALUES (2179, '江西省', '鹰潭市', '月湖区', '360602'); +INSERT INTO "public"."cardcodes" VALUES (2180, '江西省', '鹰潭市', '贵溪县', '360621'); +INSERT INTO "public"."cardcodes" VALUES (2181, '江西省', '鹰潭市', '余江县', '360622'); +INSERT INTO "public"."cardcodes" VALUES (2182, '江西省', '鹰潭市', '贵溪市', '360681'); +INSERT INTO "public"."cardcodes" VALUES (2183, '江西省', '赣州市', '市辖区', '360701'); +INSERT INTO "public"."cardcodes" VALUES (2184, '江西省', '赣州市', '章贡区', '360702'); +INSERT INTO "public"."cardcodes" VALUES (2185, '江西省', '赣州市', '赣县', '360721'); +INSERT INTO "public"."cardcodes" VALUES (2186, '江西省', '赣州市', '信丰县', '360722'); +INSERT INTO "public"."cardcodes" VALUES (2187, '江西省', '赣州市', '大余县', '360723'); +INSERT INTO "public"."cardcodes" VALUES (2188, '江西省', '赣州市', '上犹县', '360724'); +INSERT INTO "public"."cardcodes" VALUES (2189, '江西省', '赣州市', '崇义县', '360725'); +INSERT INTO "public"."cardcodes" VALUES (2190, '江西省', '赣州市', '安远县', '360726'); +INSERT INTO "public"."cardcodes" VALUES (2191, '江西省', '赣州市', '龙南县', '360727'); +INSERT INTO "public"."cardcodes" VALUES (2192, '江西省', '赣州市', '定南县', '360728'); +INSERT INTO "public"."cardcodes" VALUES (2193, '江西省', '赣州市', '全南县', '360729'); +INSERT INTO "public"."cardcodes" VALUES (2194, '江西省', '赣州市', '宁都县', '360730'); +INSERT INTO "public"."cardcodes" VALUES (2195, '江西省', '赣州市', '于都县', '360731'); +INSERT INTO "public"."cardcodes" VALUES (2196, '江西省', '赣州市', '兴国县', '360732'); +INSERT INTO "public"."cardcodes" VALUES (2197, '江西省', '赣州市', '会昌县', '360733'); +INSERT INTO "public"."cardcodes" VALUES (2198, '江西省', '赣州市', '寻乌县', '360734'); +INSERT INTO "public"."cardcodes" VALUES (2199, '江西省', '赣州市', '石城县', '360735'); +INSERT INTO "public"."cardcodes" VALUES (2200, '江西省', '赣州市', '瑞金市', '360781'); +INSERT INTO "public"."cardcodes" VALUES (2201, '江西省', '赣州市', '南康市', '360782'); +INSERT INTO "public"."cardcodes" VALUES (2202, '江西省', '吉安市', '市辖区', '360801'); +INSERT INTO "public"."cardcodes" VALUES (2203, '江西省', '吉安市', '吉州区', '360802'); +INSERT INTO "public"."cardcodes" VALUES (2204, '江西省', '吉安市', '青原区', '360803'); +INSERT INTO "public"."cardcodes" VALUES (2205, '江西省', '吉安市', '吉安县', '360821'); +INSERT INTO "public"."cardcodes" VALUES (2206, '江西省', '吉安市', '吉水县', '360822'); +INSERT INTO "public"."cardcodes" VALUES (2207, '江西省', '吉安市', '峡江县', '360823'); +INSERT INTO "public"."cardcodes" VALUES (2208, '江西省', '吉安市', '新干县', '360824'); +INSERT INTO "public"."cardcodes" VALUES (2209, '江西省', '吉安市', '永丰县', '360825'); +INSERT INTO "public"."cardcodes" VALUES (2210, '江西省', '吉安市', '泰和县', '360826'); +INSERT INTO "public"."cardcodes" VALUES (2211, '江西省', '吉安市', '遂川县', '360827'); +INSERT INTO "public"."cardcodes" VALUES (2212, '江西省', '吉安市', '万安县', '360828'); +INSERT INTO "public"."cardcodes" VALUES (2213, '江西省', '吉安市', '安福县', '360829'); +INSERT INTO "public"."cardcodes" VALUES (2214, '江西省', '吉安市', '永新县', '360830'); +INSERT INTO "public"."cardcodes" VALUES (2215, '江西省', '吉安市', '井冈山市', '360881'); +INSERT INTO "public"."cardcodes" VALUES (2216, '江西省', '宜春市', '市辖区', '360901'); +INSERT INTO "public"."cardcodes" VALUES (2217, '江西省', '宜春市', '袁州区', '360902'); +INSERT INTO "public"."cardcodes" VALUES (2218, '江西省', '宜春市', '奉新县', '360921'); +INSERT INTO "public"."cardcodes" VALUES (2219, '江西省', '宜春市', '万载县', '360922'); +INSERT INTO "public"."cardcodes" VALUES (2220, '江西省', '宜春市', '上高县', '360923'); +INSERT INTO "public"."cardcodes" VALUES (2221, '江西省', '宜春市', '宜丰县', '360924'); +INSERT INTO "public"."cardcodes" VALUES (2222, '江西省', '宜春市', '靖安县', '360925'); +INSERT INTO "public"."cardcodes" VALUES (2223, '江西省', '宜春市', '铜鼓县', '360926'); +INSERT INTO "public"."cardcodes" VALUES (2224, '江西省', '宜春市', '丰城市', '360981'); +INSERT INTO "public"."cardcodes" VALUES (2225, '江西省', '宜春市', '樟树市', '360982'); +INSERT INTO "public"."cardcodes" VALUES (2226, '江西省', '宜春市', '高安市', '360983'); +INSERT INTO "public"."cardcodes" VALUES (2227, '江西省', '抚州市', '市辖区', '361001'); +INSERT INTO "public"."cardcodes" VALUES (2228, '江西省', '抚州市', '临川区', '361002'); +INSERT INTO "public"."cardcodes" VALUES (2229, '江西省', '抚州市', '南城县', '361021'); +INSERT INTO "public"."cardcodes" VALUES (2230, '江西省', '抚州市', '黎川县', '361022'); +INSERT INTO "public"."cardcodes" VALUES (2231, '江西省', '抚州市', '南丰县', '361023'); +INSERT INTO "public"."cardcodes" VALUES (2232, '江西省', '抚州市', '崇仁县', '361024'); +INSERT INTO "public"."cardcodes" VALUES (2233, '江西省', '抚州市', '乐安县', '361025'); +INSERT INTO "public"."cardcodes" VALUES (2234, '江西省', '抚州市', '宜黄县', '361026'); +INSERT INTO "public"."cardcodes" VALUES (2235, '江西省', '抚州市', '金溪县', '361027'); +INSERT INTO "public"."cardcodes" VALUES (2236, '江西省', '抚州市', '资溪县', '361028'); +INSERT INTO "public"."cardcodes" VALUES (2237, '江西省', '抚州市', '东乡县', '361029'); +INSERT INTO "public"."cardcodes" VALUES (2238, '江西省', '抚州市', '广昌县', '361030'); +INSERT INTO "public"."cardcodes" VALUES (2239, '江西省', '吉安地区', '吉安市', '362401'); +INSERT INTO "public"."cardcodes" VALUES (2240, '江西省', '吉安地区', '井冈山市', '362402'); +INSERT INTO "public"."cardcodes" VALUES (2241, '江西省', '吉安地区', '吉安县', '362421'); +INSERT INTO "public"."cardcodes" VALUES (2242, '江西省', '吉安地区', '吉水县', '362422'); +INSERT INTO "public"."cardcodes" VALUES (2243, '江西省', '吉安地区', '峡江县', '362423'); +INSERT INTO "public"."cardcodes" VALUES (2244, '江西省', '吉安地区', '新干县', '362424'); +INSERT INTO "public"."cardcodes" VALUES (2245, '江西省', '吉安地区', '永丰县', '362425'); +INSERT INTO "public"."cardcodes" VALUES (2246, '江西省', '吉安地区', '泰和县', '362426'); +INSERT INTO "public"."cardcodes" VALUES (2247, '江西省', '吉安地区', '遂川县', '362427'); +INSERT INTO "public"."cardcodes" VALUES (2248, '江西省', '吉安地区', '万安县', '362428'); +INSERT INTO "public"."cardcodes" VALUES (2249, '江西省', '吉安地区', '安福县', '362429'); +INSERT INTO "public"."cardcodes" VALUES (2250, '江西省', '吉安地区', '永新县', '362430'); +INSERT INTO "public"."cardcodes" VALUES (2251, '江西省', '吉安地区', '莲花县', '362431'); +INSERT INTO "public"."cardcodes" VALUES (2252, '江西省', '吉安地区', '宁冈县', '362432'); +INSERT INTO "public"."cardcodes" VALUES (2253, '江西省', '吉安地区', '井岗山县', '362433'); +INSERT INTO "public"."cardcodes" VALUES (2254, '江西省', '抚州地区', '临川市', '362501'); +INSERT INTO "public"."cardcodes" VALUES (2255, '江西省', '抚州地区', '临川市', '362502'); +INSERT INTO "public"."cardcodes" VALUES (2256, '江西省', '抚州地区', '临川县', '362521'); +INSERT INTO "public"."cardcodes" VALUES (2257, '江西省', '抚州地区', '南城县', '362522'); +INSERT INTO "public"."cardcodes" VALUES (2258, '江西省', '抚州地区', '黎川县', '362523'); +INSERT INTO "public"."cardcodes" VALUES (2259, '江西省', '抚州地区', '南丰县', '362524'); +INSERT INTO "public"."cardcodes" VALUES (2260, '江西省', '抚州地区', '崇仁县', '362525'); +INSERT INTO "public"."cardcodes" VALUES (2261, '江西省', '抚州地区', '乐安县', '362526'); +INSERT INTO "public"."cardcodes" VALUES (2262, '江西省', '抚州地区', '宜黄县', '362527'); +INSERT INTO "public"."cardcodes" VALUES (2263, '江西省', '抚州地区', '金溪县', '362528'); +INSERT INTO "public"."cardcodes" VALUES (2264, '江西省', '抚州地区', '资溪县', '362529'); +INSERT INTO "public"."cardcodes" VALUES (2265, '江西省', '抚州地区', '进贤县', '362530'); +INSERT INTO "public"."cardcodes" VALUES (2266, '江西省', '抚州地区', '东乡县', '362531'); +INSERT INTO "public"."cardcodes" VALUES (2267, '江西省', '抚州地区', '广昌县', '362532'); +INSERT INTO "public"."cardcodes" VALUES (2268, '江西省', '九江地区', '九江县', '362621'); +INSERT INTO "public"."cardcodes" VALUES (2269, '江西省', '九江地区', '瑞昌县', '362622'); +INSERT INTO "public"."cardcodes" VALUES (2270, '江西省', '九江地区', '武宁县', '362623'); +INSERT INTO "public"."cardcodes" VALUES (2271, '江西省', '九江地区', '修水县', '362624'); +INSERT INTO "public"."cardcodes" VALUES (2272, '江西省', '九江地区', '永修县', '362625'); +INSERT INTO "public"."cardcodes" VALUES (2273, '江西省', '九江地区', '德安县', '362626'); +INSERT INTO "public"."cardcodes" VALUES (2274, '江西省', '九江地区', '星子县', '362627'); +INSERT INTO "public"."cardcodes" VALUES (2275, '江西省', '九江地区', '都昌县', '362628'); +INSERT INTO "public"."cardcodes" VALUES (2276, '江西省', '九江地区', '湖口县', '362629'); +INSERT INTO "public"."cardcodes" VALUES (2277, '江西省', '九江地区', '彭泽县', '362630'); +INSERT INTO "public"."cardcodes" VALUES (2278, '山东省', '青岛市', '崂山区', '370212'); +INSERT INTO "public"."cardcodes" VALUES (2279, '山东省', '青岛市', '李沧区', '370213'); +INSERT INTO "public"."cardcodes" VALUES (2280, '山东省', '青岛市', '城阳区', '370214'); +INSERT INTO "public"."cardcodes" VALUES (2281, '山东省', '青岛市', '市区', '370220'); +INSERT INTO "public"."cardcodes" VALUES (2282, '山东省', '青岛市', '崂山县', '370221'); +INSERT INTO "public"."cardcodes" VALUES (2283, '山东省', '青岛市', '即墨县', '370222'); +INSERT INTO "public"."cardcodes" VALUES (2284, '山东省', '青岛市', '胶南县', '370223'); +INSERT INTO "public"."cardcodes" VALUES (2285, '山东省', '青岛市', '胶县', '370224'); +INSERT INTO "public"."cardcodes" VALUES (2286, '山东省', '青岛市', '莱西县', '370225'); +INSERT INTO "public"."cardcodes" VALUES (2287, '山东省', '青岛市', '平度县', '370226'); +INSERT INTO "public"."cardcodes" VALUES (2288, '山东省', '青岛市', '胶州市', '370281'); +INSERT INTO "public"."cardcodes" VALUES (2289, '山东省', '青岛市', '即墨市', '370282'); +INSERT INTO "public"."cardcodes" VALUES (2290, '山东省', '青岛市', '平度市', '370283'); +INSERT INTO "public"."cardcodes" VALUES (2291, '山东省', '青岛市', '胶南市', '370284'); +INSERT INTO "public"."cardcodes" VALUES (2292, '山东省', '青岛市', '莱西市', '370285'); +INSERT INTO "public"."cardcodes" VALUES (2293, '山东省', '青岛市', '市辖区', '370201'); +INSERT INTO "public"."cardcodes" VALUES (2294, '山东省', '青岛市', '市南区', '370202'); +INSERT INTO "public"."cardcodes" VALUES (2295, '山东省', '青岛市', '市北区', '370203'); +INSERT INTO "public"."cardcodes" VALUES (2296, '山东省', '青岛市', '台东区', '370204'); +INSERT INTO "public"."cardcodes" VALUES (2297, '山东省', '青岛市', '四方区', '370205'); +INSERT INTO "public"."cardcodes" VALUES (2298, '山东省', '青岛市', '沧口区', '370206'); +INSERT INTO "public"."cardcodes" VALUES (2299, '山东省', '青岛市', '黄岛区', '370211'); +INSERT INTO "public"."cardcodes" VALUES (2300, '山东省', '淄博市', '市辖区', '370301'); +INSERT INTO "public"."cardcodes" VALUES (2301, '山东省', '淄博市', '淄川区', '370302'); +INSERT INTO "public"."cardcodes" VALUES (2302, '山东省', '淄博市', '张店区', '370303'); +INSERT INTO "public"."cardcodes" VALUES (2303, '山东省', '淄博市', '博山区', '370304'); +INSERT INTO "public"."cardcodes" VALUES (2304, '山东省', '淄博市', '临淄区', '370305'); +INSERT INTO "public"."cardcodes" VALUES (2305, '山东省', '淄博市', '周村区', '370306'); +INSERT INTO "public"."cardcodes" VALUES (2306, '山东省', '淄博市', '桓台县', '370321'); +INSERT INTO "public"."cardcodes" VALUES (2307, '山东省', '淄博市', '高青县', '370322'); +INSERT INTO "public"."cardcodes" VALUES (2308, '山东省', '淄博市', '沂源县', '370323'); +INSERT INTO "public"."cardcodes" VALUES (2309, '山东省', '枣庄市', '市辖区', '370401'); +INSERT INTO "public"."cardcodes" VALUES (2310, '山东省', '枣庄市', '市中区', '370402'); +INSERT INTO "public"."cardcodes" VALUES (2311, '山东省', '枣庄市', '薛城区', '370403'); +INSERT INTO "public"."cardcodes" VALUES (2312, '山东省', '枣庄市', '峄城区', '370404'); +INSERT INTO "public"."cardcodes" VALUES (2313, '山东省', '枣庄市', '台儿庄区', '370405'); +INSERT INTO "public"."cardcodes" VALUES (2314, '山东省', '枣庄市', '山亭区', '370406'); +INSERT INTO "public"."cardcodes" VALUES (2315, '山东省', '枣庄市', '市区', '370420'); +INSERT INTO "public"."cardcodes" VALUES (2316, '山东省', '枣庄市', '滕县', '370421'); +INSERT INTO "public"."cardcodes" VALUES (2317, '山东省', '枣庄市', '滕州市', '370481'); +INSERT INTO "public"."cardcodes" VALUES (2318, '山东省', '东营市', '市辖区', '370501'); +INSERT INTO "public"."cardcodes" VALUES (2319, '山东省', '东营市', '东营区', '370502'); +INSERT INTO "public"."cardcodes" VALUES (2320, '山东省', '东营市', '河口区', '370503'); +INSERT INTO "public"."cardcodes" VALUES (2321, '山东省', '东营市', '垦利县', '370521'); +INSERT INTO "public"."cardcodes" VALUES (2322, '山东省', '东营市', '利津县', '370522'); +INSERT INTO "public"."cardcodes" VALUES (2323, '山东省', '东营市', '广饶县', '370523'); +INSERT INTO "public"."cardcodes" VALUES (2324, '山东省', '烟台市', '市辖区', '370601'); +INSERT INTO "public"."cardcodes" VALUES (2325, '山东省', '烟台市', '芝罘区', '370602'); +INSERT INTO "public"."cardcodes" VALUES (2326, '山东省', '烟台市', '福山区', '370611'); +INSERT INTO "public"."cardcodes" VALUES (2327, '山东省', '烟台市', '牟平区', '370612'); +INSERT INTO "public"."cardcodes" VALUES (2328, '山东省', '烟台市', '莱山区', '370613'); +INSERT INTO "public"."cardcodes" VALUES (2329, '山东省', '烟台市', '龙口市', '370619'); +INSERT INTO "public"."cardcodes" VALUES (2330, '山东省', '烟台市', '威海市', '370620'); +INSERT INTO "public"."cardcodes" VALUES (2331, '山东省', '烟台市', '蓬莱县', '370622'); +INSERT INTO "public"."cardcodes" VALUES (2332, '山东省', '烟台市', '黄县', '370623'); +INSERT INTO "public"."cardcodes" VALUES (2333, '山东省', '烟台市', '招远县', '370624'); +INSERT INTO "public"."cardcodes" VALUES (2334, '山东省', '烟台市', '掖县', '370625'); +INSERT INTO "public"."cardcodes" VALUES (2335, '山东省', '烟台市', '莱阳县', '370627'); +INSERT INTO "public"."cardcodes" VALUES (2336, '山东省', '烟台市', '栖霞县', '370628'); +INSERT INTO "public"."cardcodes" VALUES (2337, '山东省', '烟台市', '海阳县', '370629'); +INSERT INTO "public"."cardcodes" VALUES (2338, '山东省', '烟台市', '牟平县', '370631'); +INSERT INTO "public"."cardcodes" VALUES (2339, '山东省', '烟台市', '文登县', '370632'); +INSERT INTO "public"."cardcodes" VALUES (2340, '山东省', '烟台市', '荣城县', '370633'); +INSERT INTO "public"."cardcodes" VALUES (2341, '山东省', '烟台市', '长岛县', '370634'); +INSERT INTO "public"."cardcodes" VALUES (2342, '山东省', '烟台市', '龙口市', '370681'); +INSERT INTO "public"."cardcodes" VALUES (2343, '山东省', '烟台市', '莱阳市', '370682'); +INSERT INTO "public"."cardcodes" VALUES (2344, '山东省', '烟台市', '莱州市', '370683'); +INSERT INTO "public"."cardcodes" VALUES (2345, '山东省', '烟台市', '蓬莱市', '370684'); +INSERT INTO "public"."cardcodes" VALUES (2346, '山东省', '烟台市', '招远市', '370685'); +INSERT INTO "public"."cardcodes" VALUES (2347, '山东省', '烟台市', '栖霞市', '370686'); +INSERT INTO "public"."cardcodes" VALUES (2348, '山东省', '烟台市', '海阳市', '370687'); +INSERT INTO "public"."cardcodes" VALUES (2349, '山东省', '潍坊市', '市辖区', '370701'); +INSERT INTO "public"."cardcodes" VALUES (2350, '山东省', '潍坊市', '潍城区', '370702'); +INSERT INTO "public"."cardcodes" VALUES (2351, '山东省', '潍坊市', '寒亭区', '370703'); +INSERT INTO "public"."cardcodes" VALUES (2352, '山东省', '潍坊市', '坊子区', '370704'); +INSERT INTO "public"."cardcodes" VALUES (2353, '山东省', '潍坊市', '奎文区', '370705'); +INSERT INTO "public"."cardcodes" VALUES (2354, '山东省', '潍坊市', '青州市', '370719'); +INSERT INTO "public"."cardcodes" VALUES (2355, '山东省', '潍坊市', '益都县', '370721'); +INSERT INTO "public"."cardcodes" VALUES (2356, '山东省', '潍坊市', '安丘县', '370722'); +INSERT INTO "public"."cardcodes" VALUES (2357, '山东省', '潍坊市', '寿光县', '370723'); +INSERT INTO "public"."cardcodes" VALUES (2358, '山东省', '潍坊市', '临朐县', '370724'); +INSERT INTO "public"."cardcodes" VALUES (2359, '山东省', '潍坊市', '昌乐县', '370725'); +INSERT INTO "public"."cardcodes" VALUES (2360, '山东省', '潍坊市', '昌邑县', '370726'); +INSERT INTO "public"."cardcodes" VALUES (2361, '山东省', '潍坊市', '高密县', '370727'); +INSERT INTO "public"."cardcodes" VALUES (2362, '山东省', '潍坊市', '诸城县', '370728'); +INSERT INTO "public"."cardcodes" VALUES (2363, '山东省', '潍坊市', '五莲县', '370729'); +INSERT INTO "public"."cardcodes" VALUES (2364, '山东省', '潍坊市', '青州市', '370781'); +INSERT INTO "public"."cardcodes" VALUES (2365, '山东省', '潍坊市', '诸城市', '370782'); +INSERT INTO "public"."cardcodes" VALUES (2366, '山东省', '潍坊市', '寿光市', '370783'); +INSERT INTO "public"."cardcodes" VALUES (2367, '山东省', '潍坊市', '安丘市', '370784'); +INSERT INTO "public"."cardcodes" VALUES (2368, '山东省', '潍坊市', '高密市', '370785'); +INSERT INTO "public"."cardcodes" VALUES (2369, '山东省', '潍坊市', '昌邑市', '370786'); +INSERT INTO "public"."cardcodes" VALUES (2370, '山东省', '济宁市', '市辖区', '370801'); +INSERT INTO "public"."cardcodes" VALUES (2371, '山东省', '济宁市', '市中区', '370802'); +INSERT INTO "public"."cardcodes" VALUES (2372, '山东省', '济宁市', '任城区', '370811'); +INSERT INTO "public"."cardcodes" VALUES (2373, '山东省', '济宁市', '曲阜市', '370819'); +INSERT INTO "public"."cardcodes" VALUES (2374, '山东省', '济宁市', '兖州县', '370822'); +INSERT INTO "public"."cardcodes" VALUES (2375, '山东省', '济宁市', '曲阜县', '370823'); +INSERT INTO "public"."cardcodes" VALUES (2376, '山东省', '济宁市', '邹县', '370825'); +INSERT INTO "public"."cardcodes" VALUES (2377, '山东省', '济宁市', '微山县', '370826'); +INSERT INTO "public"."cardcodes" VALUES (2378, '山东省', '济宁市', '鱼台县', '370827'); +INSERT INTO "public"."cardcodes" VALUES (2379, '山东省', '济宁市', '金乡县', '370828'); +INSERT INTO "public"."cardcodes" VALUES (2380, '山东省', '济宁市', '嘉祥县', '370829'); +INSERT INTO "public"."cardcodes" VALUES (2381, '山东省', '济宁市', '汶上县', '370830'); +INSERT INTO "public"."cardcodes" VALUES (2382, '山东省', '济宁市', '泗水县', '370831'); +INSERT INTO "public"."cardcodes" VALUES (2383, '山东省', '济宁市', '梁山县', '370832'); +INSERT INTO "public"."cardcodes" VALUES (2384, '山东省', '济宁市', '曲阜市', '370881'); +INSERT INTO "public"."cardcodes" VALUES (2385, '山东省', '济宁市', '兖州市', '370882'); +INSERT INTO "public"."cardcodes" VALUES (2386, '山东省', '济宁市', '邹城市', '370883'); +INSERT INTO "public"."cardcodes" VALUES (2387, '山东省', '泰安市', '市辖区', '370901'); +INSERT INTO "public"."cardcodes" VALUES (2388, '山东省', '泰安市', '泰山区', '370902'); +INSERT INTO "public"."cardcodes" VALUES (2389, '山东省', '泰安市', '岱岳区', '370903'); +INSERT INTO "public"."cardcodes" VALUES (2390, '山东省', '泰安市', '郊区', '370911'); +INSERT INTO "public"."cardcodes" VALUES (2391, '山东省', '泰安市', '莱芜市', '370919'); +INSERT INTO "public"."cardcodes" VALUES (2392, '山东省', '泰安市', '新泰市', '370920'); +INSERT INTO "public"."cardcodes" VALUES (2393, '山东省', '泰安市', '宁阳县', '370921'); +INSERT INTO "public"."cardcodes" VALUES (2394, '山东省', '泰安市', '肥城县', '370922'); +INSERT INTO "public"."cardcodes" VALUES (2395, '山东省', '泰安市', '东平县', '370923'); +INSERT INTO "public"."cardcodes" VALUES (2396, '山东省', '泰安市', '莱芜市', '370981'); +INSERT INTO "public"."cardcodes" VALUES (2397, '山东省', '泰安市', '新泰市', '370982'); +INSERT INTO "public"."cardcodes" VALUES (2398, '山东省', '泰安市', '肥城市', '370983'); +INSERT INTO "public"."cardcodes" VALUES (2399, '山东省', '威海市', '市辖区', '371001'); +INSERT INTO "public"."cardcodes" VALUES (2400, '山东省', '威海市', '环翠区', '371002'); +INSERT INTO "public"."cardcodes" VALUES (2401, '山东省', '威海市', '乳山县', '371021'); +INSERT INTO "public"."cardcodes" VALUES (2402, '山东省', '威海市', '文登市', '371081'); +INSERT INTO "public"."cardcodes" VALUES (2403, '山东省', '威海市', '荣成市', '371082'); +INSERT INTO "public"."cardcodes" VALUES (2404, '山东省', '威海市', '乳山市', '371083'); +INSERT INTO "public"."cardcodes" VALUES (2405, '山东省', '日照市', '市辖区', '371101'); +INSERT INTO "public"."cardcodes" VALUES (2406, '山东省', '日照市', '东港区', '371102'); +INSERT INTO "public"."cardcodes" VALUES (2407, '山东省', '日照市', '岚山区', '371103'); +INSERT INTO "public"."cardcodes" VALUES (2408, '山东省', '日照市', '五莲县', '371121'); +INSERT INTO "public"."cardcodes" VALUES (2409, '山东省', '日照市', '莒县', '371122'); +INSERT INTO "public"."cardcodes" VALUES (2410, '山东省', '莱芜市', '市辖区', '371201'); +INSERT INTO "public"."cardcodes" VALUES (2411, '山东省', '莱芜市', '莱城区', '371202'); +INSERT INTO "public"."cardcodes" VALUES (2412, '山东省', '莱芜市', '钢城区', '371203'); +INSERT INTO "public"."cardcodes" VALUES (2413, '山东省', '临沂市', '市辖区', '371301'); +INSERT INTO "public"."cardcodes" VALUES (2414, '山东省', '临沂市', '兰山区', '371302'); +INSERT INTO "public"."cardcodes" VALUES (2415, '山东省', '临沂市', '罗庄区', '371311'); +INSERT INTO "public"."cardcodes" VALUES (2416, '山东省', '临沂市', '河东区', '371312'); +INSERT INTO "public"."cardcodes" VALUES (2417, '山东省', '临沂市', '沂南县', '371321'); +INSERT INTO "public"."cardcodes" VALUES (2418, '山东省', '临沂市', '郯城县', '371322'); +INSERT INTO "public"."cardcodes" VALUES (2419, '山东省', '临沂市', '沂水县', '371323'); +INSERT INTO "public"."cardcodes" VALUES (2420, '山东省', '临沂市', '苍山县', '371324'); +INSERT INTO "public"."cardcodes" VALUES (2421, '山东省', '临沂市', '费县', '371325'); +INSERT INTO "public"."cardcodes" VALUES (2422, '山东省', '临沂市', '平邑县', '371326'); +INSERT INTO "public"."cardcodes" VALUES (2423, '山东省', '临沂市', '莒南县', '371327'); +INSERT INTO "public"."cardcodes" VALUES (2424, '山东省', '临沂市', '蒙阴县', '371328'); +INSERT INTO "public"."cardcodes" VALUES (2425, '山东省', '临沂市', '临沭县', '371329'); +INSERT INTO "public"."cardcodes" VALUES (2426, '山东省', '德州市', '市辖区', '371401'); +INSERT INTO "public"."cardcodes" VALUES (2427, '山东省', '德州市', '德城区', '371402'); +INSERT INTO "public"."cardcodes" VALUES (2428, '山东省', '德州市', '陵县', '371421'); +INSERT INTO "public"."cardcodes" VALUES (2429, '山东省', '德州市', '宁津县', '371422'); +INSERT INTO "public"."cardcodes" VALUES (2430, '山东省', '德州市', '庆云县', '371423'); +INSERT INTO "public"."cardcodes" VALUES (2431, '山东省', '德州市', '临邑县', '371424'); +INSERT INTO "public"."cardcodes" VALUES (2432, '山东省', '德州市', '齐河县', '371425'); +INSERT INTO "public"."cardcodes" VALUES (2433, '山东省', '德州市', '平原县', '371426'); +INSERT INTO "public"."cardcodes" VALUES (2434, '山东省', '德州市', '夏津县', '371427'); +INSERT INTO "public"."cardcodes" VALUES (2435, '山东省', '德州市', '武城县', '371428'); +INSERT INTO "public"."cardcodes" VALUES (2436, '山东省', '德州市', '乐陵市', '371481'); +INSERT INTO "public"."cardcodes" VALUES (2437, '山东省', '德州市', '禹城市', '371482'); +INSERT INTO "public"."cardcodes" VALUES (2438, '山东省', '聊城市', '市辖区', '371501'); +INSERT INTO "public"."cardcodes" VALUES (2439, '山东省', '聊城市', '东昌府区', '371502'); +INSERT INTO "public"."cardcodes" VALUES (2440, '山东省', '聊城市', '阳谷县', '371521'); +INSERT INTO "public"."cardcodes" VALUES (2441, '山东省', '聊城市', '莘县', '371522'); +INSERT INTO "public"."cardcodes" VALUES (2442, '山东省', '聊城市', '茌平县', '371523'); +INSERT INTO "public"."cardcodes" VALUES (2443, '山东省', '聊城市', '东阿县', '371524'); +INSERT INTO "public"."cardcodes" VALUES (2444, '山东省', '聊城市', '冠县', '371525'); +INSERT INTO "public"."cardcodes" VALUES (2445, '山东省', '聊城市', '高唐县', '371526'); +INSERT INTO "public"."cardcodes" VALUES (2446, '山东省', '聊城市', '临清市', '371581'); +INSERT INTO "public"."cardcodes" VALUES (2447, '山东省', '滨州市', '市辖区', '371601'); +INSERT INTO "public"."cardcodes" VALUES (2448, '山东省', '滨州市', '滨城区', '371602'); +INSERT INTO "public"."cardcodes" VALUES (2449, '山东省', '滨州市', '惠民县', '371621'); +INSERT INTO "public"."cardcodes" VALUES (2450, '山东省', '滨州市', '阳信县', '371622'); +INSERT INTO "public"."cardcodes" VALUES (2451, '山东省', '滨州市', '无棣县', '371623'); +INSERT INTO "public"."cardcodes" VALUES (2452, '山东省', '滨州市', '沾化县', '371624'); +INSERT INTO "public"."cardcodes" VALUES (2453, '山东省', '滨州市', '博兴县', '371625'); +INSERT INTO "public"."cardcodes" VALUES (2454, '山东省', '滨州市', '邹平县', '371626'); +INSERT INTO "public"."cardcodes" VALUES (2455, '山东省', '济南市', '市辖区', '370101'); +INSERT INTO "public"."cardcodes" VALUES (2456, '山东省', '济南市', '历下区', '370102'); +INSERT INTO "public"."cardcodes" VALUES (2457, '山东省', '济南市', '市中区', '370103'); +INSERT INTO "public"."cardcodes" VALUES (2458, '山东省', '济南市', '槐荫区', '370104'); +INSERT INTO "public"."cardcodes" VALUES (2459, '山东省', '济南市', '天桥区', '370105'); +INSERT INTO "public"."cardcodes" VALUES (2460, '山东省', '济南市', '郊区', '370111'); +INSERT INTO "public"."cardcodes" VALUES (2461, '山东省', '济南市', '历城区', '370112'); +INSERT INTO "public"."cardcodes" VALUES (2462, '山东省', '济南市', '长清区', '370113'); +INSERT INTO "public"."cardcodes" VALUES (2463, '山东省', '济南市', '市区', '370120'); +INSERT INTO "public"."cardcodes" VALUES (2464, '山东省', '济南市', '历城县', '370121'); +INSERT INTO "public"."cardcodes" VALUES (2465, '山东省', '济南市', '章丘县', '370122'); +INSERT INTO "public"."cardcodes" VALUES (2466, '山东省', '济南市', '长清县', '370123'); +INSERT INTO "public"."cardcodes" VALUES (2467, '山东省', '济南市', '平阴县', '370124'); +INSERT INTO "public"."cardcodes" VALUES (2468, '山东省', '济南市', '济阳县', '370125'); +INSERT INTO "public"."cardcodes" VALUES (2469, '山东省', '济南市', '商河县', '370126'); +INSERT INTO "public"."cardcodes" VALUES (2470, '山东省', '济南市', '章丘市', '370181'); +INSERT INTO "public"."cardcodes" VALUES (2471, '山东省', '菏泽市', '市辖区', '371701'); +INSERT INTO "public"."cardcodes" VALUES (2472, '山东省', '菏泽市', '牡丹区', '371702'); +INSERT INTO "public"."cardcodes" VALUES (2473, '山东省', '菏泽市', '曹县', '371721'); +INSERT INTO "public"."cardcodes" VALUES (2474, '山东省', '菏泽市', '单县', '371722'); +INSERT INTO "public"."cardcodes" VALUES (2475, '山东省', '菏泽市', '成武县', '371723'); +INSERT INTO "public"."cardcodes" VALUES (2476, '山东省', '菏泽市', '巨野县', '371724'); +INSERT INTO "public"."cardcodes" VALUES (2477, '山东省', '菏泽市', '郓城县', '371725'); +INSERT INTO "public"."cardcodes" VALUES (2478, '山东省', '菏泽市', '鄄城县', '371726'); +INSERT INTO "public"."cardcodes" VALUES (2479, '山东省', '菏泽市', '定陶县', '371727'); +INSERT INTO "public"."cardcodes" VALUES (2480, '山东省', '菏泽市', '东明县', '371728'); +INSERT INTO "public"."cardcodes" VALUES (2481, '山东省', '烟台地区', '烟台市', '372101'); +INSERT INTO "public"."cardcodes" VALUES (2482, '山东省', '烟台地区', '威海市', '372102'); +INSERT INTO "public"."cardcodes" VALUES (2483, '山东省', '烟台地区', '福山县', '372121'); +INSERT INTO "public"."cardcodes" VALUES (2484, '山东省', '烟台地区', '蓬莱县', '372122'); +INSERT INTO "public"."cardcodes" VALUES (2485, '山东省', '烟台地区', '招远县', '372124'); +INSERT INTO "public"."cardcodes" VALUES (2486, '山东省', '烟台地区', '掖县', '372125'); +INSERT INTO "public"."cardcodes" VALUES (2487, '山东省', '烟台地区', '莱西县', '372126'); +INSERT INTO "public"."cardcodes" VALUES (2488, '山东省', '烟台地区', '莱阳县', '372127'); +INSERT INTO "public"."cardcodes" VALUES (2489, '山东省', '烟台地区', '栖霞县', '372128'); +INSERT INTO "public"."cardcodes" VALUES (2490, '山东省', '烟台地区', '海阳县', '372129'); +INSERT INTO "public"."cardcodes" VALUES (2491, '山东省', '烟台地区', '乳山县', '372130'); +INSERT INTO "public"."cardcodes" VALUES (2492, '山东省', '烟台地区', '牟平县', '372131'); +INSERT INTO "public"."cardcodes" VALUES (2493, '山东省', '烟台地区', '文登县', '372132'); +INSERT INTO "public"."cardcodes" VALUES (2494, '山东省', '烟台地区', '荣城县', '372133'); +INSERT INTO "public"."cardcodes" VALUES (2495, '山东省', '烟台地区', '长岛县', '372134'); +INSERT INTO "public"."cardcodes" VALUES (2496, '山东省', '潍坊地区', '潍坊市', '372201'); +INSERT INTO "public"."cardcodes" VALUES (2497, '山东省', '潍坊地区', '益都县', '372221'); +INSERT INTO "public"."cardcodes" VALUES (2498, '山东省', '潍坊地区', '安丘县', '372222'); +INSERT INTO "public"."cardcodes" VALUES (2499, '山东省', '潍坊地区', '寿光县', '372223'); +INSERT INTO "public"."cardcodes" VALUES (2500, '山东省', '潍坊地区', '临朐县', '372224'); +INSERT INTO "public"."cardcodes" VALUES (2501, '山东省', '潍坊地区', '昌乐县', '372225'); +INSERT INTO "public"."cardcodes" VALUES (2502, '山东省', '潍坊地区', '昌邑县', '372226'); +INSERT INTO "public"."cardcodes" VALUES (2503, '山东省', '潍坊地区', '高密县', '372227'); +INSERT INTO "public"."cardcodes" VALUES (2504, '山东省', '潍坊地区', '诸城县', '372228'); +INSERT INTO "public"."cardcodes" VALUES (2505, '山东省', '潍坊地区', '平度县', '372230'); +INSERT INTO "public"."cardcodes" VALUES (2506, '山东省', '潍坊地区', '潍县', '372231'); +INSERT INTO "public"."cardcodes" VALUES (2507, '山东省', '滨州地区', '滨州市', '372301'); +INSERT INTO "public"."cardcodes" VALUES (2508, '山东省', '滨州地区', '惠民县', '372321'); +INSERT INTO "public"."cardcodes" VALUES (2509, '山东省', '滨州地区', '滨县', '372322'); +INSERT INTO "public"."cardcodes" VALUES (2510, '山东省', '滨州地区', '阳信县', '372323'); +INSERT INTO "public"."cardcodes" VALUES (2511, '山东省', '滨州地区', '无棣县', '372324'); +INSERT INTO "public"."cardcodes" VALUES (2512, '山东省', '滨州地区', '沾化县', '372325'); +INSERT INTO "public"."cardcodes" VALUES (2513, '山东省', '滨州地区', '利津县', '372326'); +INSERT INTO "public"."cardcodes" VALUES (2514, '山东省', '滨州地区', '广饶县', '372327'); +INSERT INTO "public"."cardcodes" VALUES (2515, '山东省', '滨州地区', '博兴县', '372328'); +INSERT INTO "public"."cardcodes" VALUES (2516, '山东省', '滨州地区', '桓台县', '372329'); +INSERT INTO "public"."cardcodes" VALUES (2517, '山东省', '滨州地区', '邹平县', '372330'); +INSERT INTO "public"."cardcodes" VALUES (2518, '山东省', '滨州地区', '高青县', '372331'); +INSERT INTO "public"."cardcodes" VALUES (2519, '山东省', '滨州地区', '垦利县', '372332'); +INSERT INTO "public"."cardcodes" VALUES (2520, '山东省', '德州地区', '德州市', '372401'); +INSERT INTO "public"."cardcodes" VALUES (2521, '山东省', '德州地区', '乐陵市', '372402'); +INSERT INTO "public"."cardcodes" VALUES (2522, '山东省', '德州地区', '禹城市', '372403'); +INSERT INTO "public"."cardcodes" VALUES (2523, '山东省', '德州地区', '陵县', '372421'); +INSERT INTO "public"."cardcodes" VALUES (2524, '山东省', '德州地区', '平原县', '372422'); +INSERT INTO "public"."cardcodes" VALUES (2525, '山东省', '德州地区', '夏津县', '372423'); +INSERT INTO "public"."cardcodes" VALUES (2526, '山东省', '德州地区', '武城县', '372424'); +INSERT INTO "public"."cardcodes" VALUES (2527, '山东省', '德州地区', '齐河县', '372425'); +INSERT INTO "public"."cardcodes" VALUES (2528, '山东省', '德州地区', '禹城县', '372426'); +INSERT INTO "public"."cardcodes" VALUES (2529, '山东省', '德州地区', '乐陵县', '372427'); +INSERT INTO "public"."cardcodes" VALUES (2530, '山东省', '德州地区', '临邑县', '372428'); +INSERT INTO "public"."cardcodes" VALUES (2531, '山东省', '德州地区', '商河县', '372429'); +INSERT INTO "public"."cardcodes" VALUES (2532, '山东省', '德州地区', '济阳县', '372430'); +INSERT INTO "public"."cardcodes" VALUES (2533, '山东省', '德州地区', '宁津县', '372431'); +INSERT INTO "public"."cardcodes" VALUES (2534, '山东省', '德州地区', '庆云县', '372432'); +INSERT INTO "public"."cardcodes" VALUES (2535, '山东省', '聊城市', '聊城市', '372501'); +INSERT INTO "public"."cardcodes" VALUES (2536, '山东省', '聊城市', '东昌府区', '372502'); +INSERT INTO "public"."cardcodes" VALUES (2537, '山东省', '聊城市', '阳谷县', '372521'); +INSERT INTO "public"."cardcodes" VALUES (2538, '山东省', '聊城市', '莘县', '372522'); +INSERT INTO "public"."cardcodes" VALUES (2539, '山东省', '聊城市', '茌平县', '372523'); +INSERT INTO "public"."cardcodes" VALUES (2540, '山东省', '聊城市', '东阿县', '372524'); +INSERT INTO "public"."cardcodes" VALUES (2541, '山东省', '聊城市', '冠县', '372525'); +INSERT INTO "public"."cardcodes" VALUES (2542, '山东省', '聊城市', '高唐县', '372526'); +INSERT INTO "public"."cardcodes" VALUES (2543, '山东省', '聊城市', '高唐县', '372527'); +INSERT INTO "public"."cardcodes" VALUES (2544, '山东省', '聊城市', '临清县', '372528'); +INSERT INTO "public"."cardcodes" VALUES (2545, '山东省', '聊城市', '临清市', '372581'); +INSERT INTO "public"."cardcodes" VALUES (2546, '山东省', '泰安地区', '泰安市', '372601'); +INSERT INTO "public"."cardcodes" VALUES (2547, '山东省', '泰安地区', '莱芜市', '372602'); +INSERT INTO "public"."cardcodes" VALUES (2548, '山东省', '泰安地区', '新泰市', '372603'); +INSERT INTO "public"."cardcodes" VALUES (2549, '山东省', '泰安地区', '莱芜县', '372622'); +INSERT INTO "public"."cardcodes" VALUES (2550, '山东省', '泰安地区', '新泰县', '372623'); +INSERT INTO "public"."cardcodes" VALUES (2551, '山东省', '泰安地区', '宁阳县', '372624'); +INSERT INTO "public"."cardcodes" VALUES (2552, '山东省', '泰安地区', '肥城县', '372625'); +INSERT INTO "public"."cardcodes" VALUES (2553, '山东省', '泰安地区', '东平县', '372626'); +INSERT INTO "public"."cardcodes" VALUES (2554, '山东省', '泰安地区', '平阴县', '372627'); +INSERT INTO "public"."cardcodes" VALUES (2555, '山东省', '泰安地区', '新汶县', '372628'); +INSERT INTO "public"."cardcodes" VALUES (2556, '山东省', '泰安地区', '泗水县', '372630'); +INSERT INTO "public"."cardcodes" VALUES (2557, '山东省', '济宁地区', '济宁市', '372701'); +INSERT INTO "public"."cardcodes" VALUES (2558, '山东省', '济宁地区', '兖州县', '372722'); +INSERT INTO "public"."cardcodes" VALUES (2559, '山东省', '济宁地区', '曲阜县', '372723'); +INSERT INTO "public"."cardcodes" VALUES (2560, '山东省', '济宁地区', '泗水县', '372724'); +INSERT INTO "public"."cardcodes" VALUES (2561, '山东省', '济宁地区', '邹县', '372725'); +INSERT INTO "public"."cardcodes" VALUES (2562, '山东省', '济宁地区', '微山县', '372726'); +INSERT INTO "public"."cardcodes" VALUES (2563, '山东省', '济宁地区', '鱼台县', '372727'); +INSERT INTO "public"."cardcodes" VALUES (2564, '山东省', '济宁地区', '金乡县', '372728'); +INSERT INTO "public"."cardcodes" VALUES (2565, '山东省', '济宁地区', '嘉祥县', '372729'); +INSERT INTO "public"."cardcodes" VALUES (2566, '山东省', '临沂地区', '临沂市', '372801'); +INSERT INTO "public"."cardcodes" VALUES (2567, '山东省', '临沂地区', '日照市', '372802'); +INSERT INTO "public"."cardcodes" VALUES (2568, '山东省', '临沂地区', '临沂县', '372821'); +INSERT INTO "public"."cardcodes" VALUES (2569, '山东省', '临沂地区', '郯城县', '372822'); +INSERT INTO "public"."cardcodes" VALUES (2570, '山东省', '临沂地区', '苍山县', '372823'); +INSERT INTO "public"."cardcodes" VALUES (2571, '山东省', '临沂地区', '莒南县', '372824'); +INSERT INTO "public"."cardcodes" VALUES (2572, '山东省', '临沂地区', '日照县', '372825'); +INSERT INTO "public"."cardcodes" VALUES (2573, '山东省', '临沂地区', '莒县', '372826'); +INSERT INTO "public"."cardcodes" VALUES (2574, '山东省', '临沂地区', '沂水县', '372827'); +INSERT INTO "public"."cardcodes" VALUES (2575, '山东省', '临沂地区', '沂源县', '372828'); +INSERT INTO "public"."cardcodes" VALUES (2576, '山东省', '临沂地区', '蒙阴县', '372829'); +INSERT INTO "public"."cardcodes" VALUES (2577, '山东省', '临沂地区', '平邑县', '372830'); +INSERT INTO "public"."cardcodes" VALUES (2578, '山东省', '临沂地区', '费县', '372831'); +INSERT INTO "public"."cardcodes" VALUES (2579, '山东省', '临沂地区', '沂南县', '372832'); +INSERT INTO "public"."cardcodes" VALUES (2580, '山东省', '临沂地区', '临沭县', '372833'); +INSERT INTO "public"."cardcodes" VALUES (2581, '山东省', '菏泽地区', '菏泽市', '372901'); +INSERT INTO "public"."cardcodes" VALUES (2582, '山东省', '菏泽地区', '菏泽县', '372921'); +INSERT INTO "public"."cardcodes" VALUES (2583, '山东省', '菏泽地区', '曹县', '372922'); +INSERT INTO "public"."cardcodes" VALUES (2584, '山东省', '菏泽地区', '定陶县', '372923'); +INSERT INTO "public"."cardcodes" VALUES (2585, '山东省', '菏泽地区', '成武县', '372924'); +INSERT INTO "public"."cardcodes" VALUES (2586, '山东省', '菏泽地区', '单县', '372925'); +INSERT INTO "public"."cardcodes" VALUES (2587, '山东省', '菏泽地区', '巨野县', '372926'); +INSERT INTO "public"."cardcodes" VALUES (2588, '山东省', '菏泽地区', '粱山县', '372927'); +INSERT INTO "public"."cardcodes" VALUES (2589, '山东省', '菏泽地区', '郓城县', '372928'); +INSERT INTO "public"."cardcodes" VALUES (2590, '山东省', '菏泽地区', '鄄城县', '372929'); +INSERT INTO "public"."cardcodes" VALUES (2591, '山东省', '菏泽地区', '东明县', '372930'); +INSERT INTO "public"."cardcodes" VALUES (2592, '山东省', NULL, '青州市', '379001'); +INSERT INTO "public"."cardcodes" VALUES (2593, '山东省', NULL, '龙口市', '379002'); +INSERT INTO "public"."cardcodes" VALUES (2594, '山东省', NULL, '曲阜市', '379003'); +INSERT INTO "public"."cardcodes" VALUES (2595, '山东省', NULL, '莱芜市', '379004'); +INSERT INTO "public"."cardcodes" VALUES (2596, '山东省', NULL, '新泰市', '379005'); +INSERT INTO "public"."cardcodes" VALUES (2597, '山东省', NULL, '胶州市', '379006'); +INSERT INTO "public"."cardcodes" VALUES (2598, '山东省', NULL, '诸城市', '379007'); +INSERT INTO "public"."cardcodes" VALUES (2599, '山东省', NULL, '莱阳市', '379008'); +INSERT INTO "public"."cardcodes" VALUES (2600, '山东省', NULL, '莱州市', '379009'); +INSERT INTO "public"."cardcodes" VALUES (2601, '山东省', NULL, '滕州市', '379010'); +INSERT INTO "public"."cardcodes" VALUES (2602, '山东省', NULL, '文登市', '379011'); +INSERT INTO "public"."cardcodes" VALUES (2603, '山东省', NULL, '荣城市', '379012'); +INSERT INTO "public"."cardcodes" VALUES (2604, '河南省', '鹤壁市', '鹤山区', '410602'); +INSERT INTO "public"."cardcodes" VALUES (2605, '河南省', '鹤壁市', '山城区', '410603'); +INSERT INTO "public"."cardcodes" VALUES (2606, '河南省', '鹤壁市', '淇滨区', '410611'); +INSERT INTO "public"."cardcodes" VALUES (2607, '河南省', '鹤壁市', '浚县', '410621'); +INSERT INTO "public"."cardcodes" VALUES (2608, '河南省', '鹤壁市', '淇县', '410622'); +INSERT INTO "public"."cardcodes" VALUES (2609, '河南省', '鹤壁市', '市辖区', '410601'); +INSERT INTO "public"."cardcodes" VALUES (2610, '河南省', '新乡市', '市辖区', '410701'); +INSERT INTO "public"."cardcodes" VALUES (2611, '河南省', '新乡市', '红旗区', '410702'); +INSERT INTO "public"."cardcodes" VALUES (2612, '河南省', '新乡市', '新华区', '410703'); +INSERT INTO "public"."cardcodes" VALUES (2613, '河南省', '新乡市', '北站区', '410704'); +INSERT INTO "public"."cardcodes" VALUES (2614, '河南省', '新乡市', '郊区', '410711'); +INSERT INTO "public"."cardcodes" VALUES (2615, '河南省', '新乡市', '新乡县', '410721'); +INSERT INTO "public"."cardcodes" VALUES (2616, '河南省', '新乡市', '汲县', '410722'); +INSERT INTO "public"."cardcodes" VALUES (2617, '河南省', '新乡市', '辉县', '410723'); +INSERT INTO "public"."cardcodes" VALUES (2618, '河南省', '新乡市', '获嘉县', '410724'); +INSERT INTO "public"."cardcodes" VALUES (2619, '河南省', '新乡市', '原阳县', '410725'); +INSERT INTO "public"."cardcodes" VALUES (2620, '河南省', '新乡市', '延津县', '410726'); +INSERT INTO "public"."cardcodes" VALUES (2621, '河南省', '新乡市', '封丘县', '410727'); +INSERT INTO "public"."cardcodes" VALUES (2622, '河南省', '新乡市', '长垣县', '410728'); +INSERT INTO "public"."cardcodes" VALUES (2623, '河南省', '新乡市', '卫辉市', '410781'); +INSERT INTO "public"."cardcodes" VALUES (2624, '河南省', '新乡市', '辉县市', '410782'); +INSERT INTO "public"."cardcodes" VALUES (2625, '河南省', '焦作市', '市辖区', '410801'); +INSERT INTO "public"."cardcodes" VALUES (2626, '河南省', '焦作市', '解放区', '410802'); +INSERT INTO "public"."cardcodes" VALUES (2627, '河南省', '焦作市', '中站区', '410803'); +INSERT INTO "public"."cardcodes" VALUES (2628, '河南省', '焦作市', '马村区', '410804'); +INSERT INTO "public"."cardcodes" VALUES (2629, '河南省', '焦作市', '山阳区', '410811'); +INSERT INTO "public"."cardcodes" VALUES (2630, '河南省', '焦作市', '修武县', '410821'); +INSERT INTO "public"."cardcodes" VALUES (2631, '河南省', '焦作市', '博爱县', '410822'); +INSERT INTO "public"."cardcodes" VALUES (2632, '河南省', '焦作市', '武陟县', '410823'); +INSERT INTO "public"."cardcodes" VALUES (2633, '河南省', '焦作市', '沁阳县', '410824'); +INSERT INTO "public"."cardcodes" VALUES (2634, '河南省', '焦作市', '温县', '410825'); +INSERT INTO "public"."cardcodes" VALUES (2635, '河南省', '焦作市', '孟县', '410826'); +INSERT INTO "public"."cardcodes" VALUES (2636, '河南省', '焦作市', '济源县', '410827'); +INSERT INTO "public"."cardcodes" VALUES (2637, '河南省', '焦作市', '济源市', '410881'); +INSERT INTO "public"."cardcodes" VALUES (2638, '河南省', '焦作市', '沁阳市', '410882'); +INSERT INTO "public"."cardcodes" VALUES (2639, '河南省', '焦作市', '孟州市', '410883'); +INSERT INTO "public"."cardcodes" VALUES (2640, '河南省', '濮阳市', '市辖区', '410901'); +INSERT INTO "public"."cardcodes" VALUES (2641, '河南省', '濮阳市', '市区', '410902'); +INSERT INTO "public"."cardcodes" VALUES (2642, '河南省', '濮阳市', '滑县', '410921'); +INSERT INTO "public"."cardcodes" VALUES (2643, '河南省', '濮阳市', '清丰县', '410922'); +INSERT INTO "public"."cardcodes" VALUES (2644, '河南省', '濮阳市', '南乐县', '410923'); +INSERT INTO "public"."cardcodes" VALUES (2645, '河南省', '濮阳市', '内黄县', '410924'); +INSERT INTO "public"."cardcodes" VALUES (2646, '河南省', '濮阳市', '长垣县', '410925'); +INSERT INTO "public"."cardcodes" VALUES (2647, '河南省', '濮阳市', '范县', '410926'); +INSERT INTO "public"."cardcodes" VALUES (2648, '河南省', '濮阳市', '台前县', '410927'); +INSERT INTO "public"."cardcodes" VALUES (2649, '河南省', '濮阳市', '濮阳县', '410928'); +INSERT INTO "public"."cardcodes" VALUES (2650, '河南省', '许昌市', '市辖区', '411001'); +INSERT INTO "public"."cardcodes" VALUES (2651, '河南省', '许昌市', '魏都区', '411002'); +INSERT INTO "public"."cardcodes" VALUES (2652, '河南省', '许昌市', '禹县', '411021'); +INSERT INTO "public"."cardcodes" VALUES (2653, '河南省', '许昌市', '长葛县', '411022'); +INSERT INTO "public"."cardcodes" VALUES (2654, '河南省', '许昌市', '许昌县', '411023'); +INSERT INTO "public"."cardcodes" VALUES (2655, '河南省', '许昌市', '鄢陵县', '411024'); +INSERT INTO "public"."cardcodes" VALUES (2656, '河南省', '许昌市', '襄城县', '411025'); +INSERT INTO "public"."cardcodes" VALUES (2657, '河南省', '许昌市', '禹州市', '411081'); +INSERT INTO "public"."cardcodes" VALUES (2658, '河南省', '许昌市', '长葛市', '411082'); +INSERT INTO "public"."cardcodes" VALUES (2659, '河南省', '漯河市', '市辖区', '411101'); +INSERT INTO "public"."cardcodes" VALUES (2660, '河南省', '漯河市', '源汇区', '411102'); +INSERT INTO "public"."cardcodes" VALUES (2661, '河南省', '漯河市', '郾城区', '411103'); +INSERT INTO "public"."cardcodes" VALUES (2662, '河南省', '漯河市', '召陵区', '411104'); +INSERT INTO "public"."cardcodes" VALUES (2663, '河南省', '漯河市', '舞阳县', '411121'); +INSERT INTO "public"."cardcodes" VALUES (2664, '河南省', '漯河市', '临颍县', '411122'); +INSERT INTO "public"."cardcodes" VALUES (2665, '河南省', '漯河市', '郾城县', '411123'); +INSERT INTO "public"."cardcodes" VALUES (2666, '河南省', '三门峡市', '市辖区', '411201'); +INSERT INTO "public"."cardcodes" VALUES (2667, '河南省', '三门峡市', '湖滨区', '411202'); +INSERT INTO "public"."cardcodes" VALUES (2668, '河南省', '三门峡市', '渑池县', '411221'); +INSERT INTO "public"."cardcodes" VALUES (2669, '河南省', '三门峡市', '陕县', '411222'); +INSERT INTO "public"."cardcodes" VALUES (2670, '河南省', '三门峡市', '灵宝县', '411223'); +INSERT INTO "public"."cardcodes" VALUES (2671, '河南省', '三门峡市', '卢氏县', '411224'); +INSERT INTO "public"."cardcodes" VALUES (2672, '河南省', '三门峡市', '义马市', '411281'); +INSERT INTO "public"."cardcodes" VALUES (2673, '河南省', '三门峡市', '灵宝市', '411282'); +INSERT INTO "public"."cardcodes" VALUES (2674, '河南省', '南阳市', '市辖区', '411301'); +INSERT INTO "public"."cardcodes" VALUES (2675, '河南省', '南阳市', '宛城区', '411302'); +INSERT INTO "public"."cardcodes" VALUES (2676, '河南省', '南阳市', '卧龙区', '411303'); +INSERT INTO "public"."cardcodes" VALUES (2677, '河南省', '南阳市', '南召县', '411321'); +INSERT INTO "public"."cardcodes" VALUES (2678, '河南省', '南阳市', '方城县', '411322'); +INSERT INTO "public"."cardcodes" VALUES (2679, '河南省', '南阳市', '西峡县', '411323'); +INSERT INTO "public"."cardcodes" VALUES (2680, '河南省', '南阳市', '镇平县', '411324'); +INSERT INTO "public"."cardcodes" VALUES (2681, '河南省', '南阳市', '内乡县', '411325'); +INSERT INTO "public"."cardcodes" VALUES (2682, '河南省', '南阳市', '淅川县', '411326'); +INSERT INTO "public"."cardcodes" VALUES (2683, '河南省', '南阳市', '社旗县', '411327'); +INSERT INTO "public"."cardcodes" VALUES (2684, '河南省', '南阳市', '唐河县', '411328'); +INSERT INTO "public"."cardcodes" VALUES (2685, '河南省', '南阳市', '新野县', '411329'); +INSERT INTO "public"."cardcodes" VALUES (2686, '河南省', '南阳市', '桐柏县', '411330'); +INSERT INTO "public"."cardcodes" VALUES (2687, '河南省', '南阳市', '邓州市', '411381'); +INSERT INTO "public"."cardcodes" VALUES (2688, '河南省', '郑州市', '市辖区', '410101'); +INSERT INTO "public"."cardcodes" VALUES (2689, '河南省', '郑州市', '中原区', '410102'); +INSERT INTO "public"."cardcodes" VALUES (2690, '河南省', '郑州市', '二七区', '410103'); +INSERT INTO "public"."cardcodes" VALUES (2691, '河南省', '郑州市', '管城回族区', '410104'); +INSERT INTO "public"."cardcodes" VALUES (2692, '河南省', '郑州市', '金水区', '410105'); +INSERT INTO "public"."cardcodes" VALUES (2693, '河南省', '郑州市', '上街区', '410106'); +INSERT INTO "public"."cardcodes" VALUES (2694, '河南省', '郑州市', '新密区', '410107'); +INSERT INTO "public"."cardcodes" VALUES (2695, '河南省', '郑州市', '邙山区', '410108'); +INSERT INTO "public"."cardcodes" VALUES (2696, '河南省', '郑州市', '金海区', '410111'); +INSERT INTO "public"."cardcodes" VALUES (2697, '河南省', '郑州市', '郊区', '410112'); +INSERT INTO "public"."cardcodes" VALUES (2698, '河南省', '郑州市', '市区', '410120'); +INSERT INTO "public"."cardcodes" VALUES (2699, '河南省', '郑州市', '荥阳县', '410121'); +INSERT INTO "public"."cardcodes" VALUES (2700, '河南省', '郑州市', '中牟县', '410122'); +INSERT INTO "public"."cardcodes" VALUES (2701, '河南省', '郑州市', '新郑县', '410123'); +INSERT INTO "public"."cardcodes" VALUES (2702, '河南省', '郑州市', '巩县', '410124'); +INSERT INTO "public"."cardcodes" VALUES (2703, '河南省', '郑州市', '登封县', '410125'); +INSERT INTO "public"."cardcodes" VALUES (2704, '河南省', '郑州市', '密县', '410126'); +INSERT INTO "public"."cardcodes" VALUES (2705, '河南省', '郑州市', '巩义市', '410181'); +INSERT INTO "public"."cardcodes" VALUES (2706, '河南省', '郑州市', '荥阳市', '410182'); +INSERT INTO "public"."cardcodes" VALUES (2707, '河南省', '郑州市', '新密市', '410183'); +INSERT INTO "public"."cardcodes" VALUES (2708, '河南省', '郑州市', '新郑市', '410184'); +INSERT INTO "public"."cardcodes" VALUES (2709, '河南省', '郑州市', '登封市', '410185'); +INSERT INTO "public"."cardcodes" VALUES (2710, '河南省', '开封市', '市辖区', '410201'); +INSERT INTO "public"."cardcodes" VALUES (2711, '河南省', '开封市', '龙亭区', '410202'); +INSERT INTO "public"."cardcodes" VALUES (2712, '河南省', '开封市', '顺河回族区', '410203'); +INSERT INTO "public"."cardcodes" VALUES (2713, '河南省', '开封市', '鼓楼区', '410204'); +INSERT INTO "public"."cardcodes" VALUES (2714, '河南省', '开封市', '禹王台区', '410205'); +INSERT INTO "public"."cardcodes" VALUES (2715, '河南省', '开封市', '金明区', '410211'); +INSERT INTO "public"."cardcodes" VALUES (2716, '河南省', '开封市', '杞县', '410221'); +INSERT INTO "public"."cardcodes" VALUES (2717, '河南省', '开封市', '通许县', '410222'); +INSERT INTO "public"."cardcodes" VALUES (2718, '河南省', '开封市', '尉氏县', '410223'); +INSERT INTO "public"."cardcodes" VALUES (2719, '河南省', '开封市', '开封县', '410224'); +INSERT INTO "public"."cardcodes" VALUES (2720, '河南省', '开封市', '兰考县', '410225'); +INSERT INTO "public"."cardcodes" VALUES (2721, '河南省', '洛阳市', '市辖区', '410301'); +INSERT INTO "public"."cardcodes" VALUES (2722, '河南省', '洛阳市', '老城区', '410302'); +INSERT INTO "public"."cardcodes" VALUES (2723, '河南省', '洛阳市', '西工区', '410303'); +INSERT INTO "public"."cardcodes" VALUES (2724, '河南省', '洛阳市', '廛河回族区', '410304'); +INSERT INTO "public"."cardcodes" VALUES (2725, '河南省', '洛阳市', '涧西区', '410305'); +INSERT INTO "public"."cardcodes" VALUES (2726, '河南省', '洛阳市', '吉利区', '410306'); +INSERT INTO "public"."cardcodes" VALUES (2727, '河南省', '洛阳市', '洛龙区', '410307'); +INSERT INTO "public"."cardcodes" VALUES (2728, '河南省', '洛阳市', '郊区', '410311'); +INSERT INTO "public"."cardcodes" VALUES (2729, '河南省', '洛阳市', '偃师县', '410321'); +INSERT INTO "public"."cardcodes" VALUES (2730, '河南省', '洛阳市', '孟津县', '410322'); +INSERT INTO "public"."cardcodes" VALUES (2731, '河南省', '洛阳市', '新安县', '410323'); +INSERT INTO "public"."cardcodes" VALUES (2732, '河南省', '洛阳市', '栾川县', '410324'); +INSERT INTO "public"."cardcodes" VALUES (2733, '河南省', '洛阳市', '嵩县', '410325'); +INSERT INTO "public"."cardcodes" VALUES (2734, '河南省', '洛阳市', '汝阳县', '410326'); +INSERT INTO "public"."cardcodes" VALUES (2735, '河南省', '洛阳市', '宜阳县', '410327'); +INSERT INTO "public"."cardcodes" VALUES (2736, '河南省', '洛阳市', '洛宁县', '410328'); +INSERT INTO "public"."cardcodes" VALUES (2737, '河南省', '洛阳市', '伊川县', '410329'); +INSERT INTO "public"."cardcodes" VALUES (2738, '河南省', '洛阳市', '偃师市', '410381'); +INSERT INTO "public"."cardcodes" VALUES (2739, '河南省', '平顶山市', '市辖区', '410401'); +INSERT INTO "public"."cardcodes" VALUES (2740, '河南省', '平顶山市', '新华区', '410402'); +INSERT INTO "public"."cardcodes" VALUES (2741, '河南省', '平顶山市', '卫东区', '410403'); +INSERT INTO "public"."cardcodes" VALUES (2742, '河南省', '平顶山市', '石龙区', '410404'); +INSERT INTO "public"."cardcodes" VALUES (2743, '河南省', '平顶山市', '湛河区', '410411'); +INSERT INTO "public"."cardcodes" VALUES (2744, '河南省', '平顶山市', '舞钢区', '410412'); +INSERT INTO "public"."cardcodes" VALUES (2745, '河南省', '平顶山市', '宝丰县', '410421'); +INSERT INTO "public"."cardcodes" VALUES (2746, '河南省', '平顶山市', '叶县', '410422'); +INSERT INTO "public"."cardcodes" VALUES (2747, '河南省', '平顶山市', '鲁山县', '410423'); +INSERT INTO "public"."cardcodes" VALUES (2748, '河南省', '平顶山市', '临汝县', '410424'); +INSERT INTO "public"."cardcodes" VALUES (2749, '河南省', '平顶山市', '郏县', '410425'); +INSERT INTO "public"."cardcodes" VALUES (2750, '河南省', '平顶山市', '襄城县', '410426'); +INSERT INTO "public"."cardcodes" VALUES (2751, '河南省', '平顶山市', '舞钢市', '410481'); +INSERT INTO "public"."cardcodes" VALUES (2752, '河南省', '平顶山市', '汝州市', '410482'); +INSERT INTO "public"."cardcodes" VALUES (2753, '河南省', '安阳市', '市辖区', '410501'); +INSERT INTO "public"."cardcodes" VALUES (2754, '河南省', '安阳市', '文峰区', '410502'); +INSERT INTO "public"."cardcodes" VALUES (2755, '河南省', '安阳市', '北关区', '410503'); +INSERT INTO "public"."cardcodes" VALUES (2756, '河南省', '安阳市', '铁西区', '410504'); +INSERT INTO "public"."cardcodes" VALUES (2757, '河南省', '安阳市', '殷都区', '410505'); +INSERT INTO "public"."cardcodes" VALUES (2758, '河南省', '安阳市', '龙安区', '410506'); +INSERT INTO "public"."cardcodes" VALUES (2759, '河南省', '安阳市', '郊区', '410511'); +INSERT INTO "public"."cardcodes" VALUES (2760, '河南省', '安阳市', '林县', '410521'); +INSERT INTO "public"."cardcodes" VALUES (2761, '河南省', '安阳市', '安阳县', '410522'); +INSERT INTO "public"."cardcodes" VALUES (2762, '河南省', '安阳市', '汤阴县', '410523'); +INSERT INTO "public"."cardcodes" VALUES (2763, '河南省', '安阳市', '淇县', '410524'); +INSERT INTO "public"."cardcodes" VALUES (2764, '河南省', '安阳市', '浚县', '410525'); +INSERT INTO "public"."cardcodes" VALUES (2765, '河南省', '安阳市', '滑县', '410526'); +INSERT INTO "public"."cardcodes" VALUES (2766, '河南省', '安阳市', '内黄县', '410527'); +INSERT INTO "public"."cardcodes" VALUES (2767, '河南省', '安阳市', '林州市', '410581'); +INSERT INTO "public"."cardcodes" VALUES (2768, '河南省', '商丘市', '市辖区', '411401'); +INSERT INTO "public"."cardcodes" VALUES (2769, '河南省', '商丘市', '梁园区', '411402'); +INSERT INTO "public"."cardcodes" VALUES (2770, '河南省', '商丘市', '睢阳区', '411403'); +INSERT INTO "public"."cardcodes" VALUES (2771, '河南省', '商丘市', '民权县', '411421'); +INSERT INTO "public"."cardcodes" VALUES (2772, '河南省', '商丘市', '睢县', '411422'); +INSERT INTO "public"."cardcodes" VALUES (2773, '河南省', '商丘市', '宁陵县', '411423'); +INSERT INTO "public"."cardcodes" VALUES (2774, '河南省', '商丘市', '柘城县', '411424'); +INSERT INTO "public"."cardcodes" VALUES (2775, '河南省', '商丘市', '虞城县', '411425'); +INSERT INTO "public"."cardcodes" VALUES (2776, '河南省', '商丘市', '夏邑县', '411426'); +INSERT INTO "public"."cardcodes" VALUES (2777, '河南省', '商丘市', '永城市', '411481'); +INSERT INTO "public"."cardcodes" VALUES (2778, '河南省', '信阳市', '市辖区', '411501'); +INSERT INTO "public"."cardcodes" VALUES (2779, '河南省', '信阳市', '师河区', '411502'); +INSERT INTO "public"."cardcodes" VALUES (2780, '河南省', '信阳市', '平桥区', '411503'); +INSERT INTO "public"."cardcodes" VALUES (2781, '河南省', '信阳市', '罗山县', '411521'); +INSERT INTO "public"."cardcodes" VALUES (2782, '河南省', '信阳市', '光山县', '411522'); +INSERT INTO "public"."cardcodes" VALUES (2783, '河南省', '信阳市', '新县', '411523'); +INSERT INTO "public"."cardcodes" VALUES (2784, '河南省', '信阳市', '商城县', '411524'); +INSERT INTO "public"."cardcodes" VALUES (2785, '河南省', '信阳市', '固始县', '411525'); +INSERT INTO "public"."cardcodes" VALUES (2786, '河南省', '信阳市', '潢川县', '411526'); +INSERT INTO "public"."cardcodes" VALUES (2787, '河南省', '信阳市', '淮滨县', '411527'); +INSERT INTO "public"."cardcodes" VALUES (2788, '河南省', '信阳市', '息县', '411528'); +INSERT INTO "public"."cardcodes" VALUES (2789, '河南省', '周口市', '市辖区', '411601'); +INSERT INTO "public"."cardcodes" VALUES (2790, '河南省', '周口市', '川汇区', '411602'); +INSERT INTO "public"."cardcodes" VALUES (2791, '河南省', '周口市', '扶沟县', '411621'); +INSERT INTO "public"."cardcodes" VALUES (2792, '河南省', '周口市', '西华县', '411622'); +INSERT INTO "public"."cardcodes" VALUES (2793, '河南省', '周口市', '商水县', '411623'); +INSERT INTO "public"."cardcodes" VALUES (2794, '河南省', '周口市', '沈丘县', '411624'); +INSERT INTO "public"."cardcodes" VALUES (2795, '河南省', '周口市', '郸城县', '411625'); +INSERT INTO "public"."cardcodes" VALUES (2796, '河南省', '周口市', '淮阳县', '411626'); +INSERT INTO "public"."cardcodes" VALUES (2797, '河南省', '周口市', '太康县', '411627'); +INSERT INTO "public"."cardcodes" VALUES (2798, '河南省', '周口市', '鹿邑县', '411628'); +INSERT INTO "public"."cardcodes" VALUES (2799, '河南省', '周口市', '项城市', '411681'); +INSERT INTO "public"."cardcodes" VALUES (2800, '河南省', '驻马店市', '市辖区', '411701'); +INSERT INTO "public"."cardcodes" VALUES (2801, '河南省', '驻马店市', '驿城区', '411702'); +INSERT INTO "public"."cardcodes" VALUES (2802, '河南省', '驻马店市', '西平县', '411721'); +INSERT INTO "public"."cardcodes" VALUES (2803, '河南省', '驻马店市', '上蔡县', '411722'); +INSERT INTO "public"."cardcodes" VALUES (2804, '河南省', '驻马店市', '平舆县', '411723'); +INSERT INTO "public"."cardcodes" VALUES (2805, '河南省', '驻马店市', '正阳县', '411724'); +INSERT INTO "public"."cardcodes" VALUES (2806, '河南省', '驻马店市', '确山县', '411725'); +INSERT INTO "public"."cardcodes" VALUES (2807, '河南省', '驻马店市', '泌阳县', '411726'); +INSERT INTO "public"."cardcodes" VALUES (2808, '河南省', '驻马店市', '汝南县', '411727'); +INSERT INTO "public"."cardcodes" VALUES (2809, '河南省', '驻马店市', '遂平县', '411728'); +INSERT INTO "public"."cardcodes" VALUES (2810, '河南省', '驻马店市', '新蔡县', '411729'); +INSERT INTO "public"."cardcodes" VALUES (2811, '河南省', '商丘地区', '商丘市', '412301'); +INSERT INTO "public"."cardcodes" VALUES (2812, '河南省', '商丘地区', '永城市', '412302'); +INSERT INTO "public"."cardcodes" VALUES (2813, '河南省', '商丘地区', '虞城县', '412321'); +INSERT INTO "public"."cardcodes" VALUES (2814, '河南省', '商丘地区', '商丘县', '412322'); +INSERT INTO "public"."cardcodes" VALUES (2815, '河南省', '商丘地区', '民权县', '412323'); +INSERT INTO "public"."cardcodes" VALUES (2816, '河南省', '商丘地区', '宁陵县', '412324'); +INSERT INTO "public"."cardcodes" VALUES (2817, '河南省', '商丘地区', '睢县', '412325'); +INSERT INTO "public"."cardcodes" VALUES (2818, '河南省', '商丘地区', '夏邑县', '412326'); +INSERT INTO "public"."cardcodes" VALUES (2819, '河南省', '商丘地区', '柘城县', '412327'); +INSERT INTO "public"."cardcodes" VALUES (2820, '河南省', '商丘地区', '永城县', '412328'); +INSERT INTO "public"."cardcodes" VALUES (2821, '河南省', '开封地区', '杞县', '412421'); +INSERT INTO "public"."cardcodes" VALUES (2822, '河南省', '开封地区', '通许县', '412422'); +INSERT INTO "public"."cardcodes" VALUES (2823, '河南省', '开封地区', '尉氏县', '412423'); +INSERT INTO "public"."cardcodes" VALUES (2824, '河南省', '开封地区', '开封县', '412424'); +INSERT INTO "public"."cardcodes" VALUES (2825, '河南省', '开封地区', '中牟县', '412425'); +INSERT INTO "public"."cardcodes" VALUES (2826, '河南省', '开封地区', '新郑县', '412426'); +INSERT INTO "public"."cardcodes" VALUES (2827, '河南省', '开封地区', '巩县', '412427'); +INSERT INTO "public"."cardcodes" VALUES (2828, '河南省', '开封地区', '登封县', '412428'); +INSERT INTO "public"."cardcodes" VALUES (2829, '河南省', '开封地区', '密县', '412429'); +INSERT INTO "public"."cardcodes" VALUES (2830, '河南省', '开封地区', '兰考县', '412430'); +INSERT INTO "public"."cardcodes" VALUES (2831, '河南省', '三门峡市', '三门峡市', '412501'); +INSERT INTO "public"."cardcodes" VALUES (2832, '河南省', '三门峡市', '义马市', '412502'); +INSERT INTO "public"."cardcodes" VALUES (2833, '河南省', '三门峡市', '偃师县', '412521'); +INSERT INTO "public"."cardcodes" VALUES (2834, '河南省', '三门峡市', '孟津县', '412522'); +INSERT INTO "public"."cardcodes" VALUES (2835, '河南省', '三门峡市', '新安县', '412523'); +INSERT INTO "public"."cardcodes" VALUES (2836, '河南省', '三门峡市', '渑池县', '412524'); +INSERT INTO "public"."cardcodes" VALUES (2837, '河南省', '三门峡市', '陕县', '412525'); +INSERT INTO "public"."cardcodes" VALUES (2838, '河南省', '三门峡市', '灵宝县', '412526'); +INSERT INTO "public"."cardcodes" VALUES (2839, '河南省', '三门峡市', '伊川县', '412527'); +INSERT INTO "public"."cardcodes" VALUES (2840, '河南省', '三门峡市', '汝阳县', '412528'); +INSERT INTO "public"."cardcodes" VALUES (2841, '河南省', '三门峡市', '嵩县', '412529'); +INSERT INTO "public"."cardcodes" VALUES (2842, '河南省', '三门峡市', '洛宁县', '412530'); +INSERT INTO "public"."cardcodes" VALUES (2843, '河南省', '三门峡市', '卢氏县', '412531'); +INSERT INTO "public"."cardcodes" VALUES (2844, '河南省', '三门峡市', '栾川县', '412532'); +INSERT INTO "public"."cardcodes" VALUES (2845, '河南省', '三门峡市', '临汝县', '412533'); +INSERT INTO "public"."cardcodes" VALUES (2846, '河南省', '三门峡市', '宜阳县', '412534'); +INSERT INTO "public"."cardcodes" VALUES (2847, '河南省', '周口地区', '周口市', '412701'); +INSERT INTO "public"."cardcodes" VALUES (2848, '河南省', '周口地区', '项城市', '412702'); +INSERT INTO "public"."cardcodes" VALUES (2849, '河南省', '周口地区', '扶沟县', '412721'); +INSERT INTO "public"."cardcodes" VALUES (2850, '河南省', '周口地区', '西华县', '412722'); +INSERT INTO "public"."cardcodes" VALUES (2851, '河南省', '周口地区', '商水县', '412723'); +INSERT INTO "public"."cardcodes" VALUES (2852, '河南省', '周口地区', '太康县', '412724'); +INSERT INTO "public"."cardcodes" VALUES (2853, '河南省', '周口地区', '鹿邑县', '412725'); +INSERT INTO "public"."cardcodes" VALUES (2854, '河南省', '周口地区', '郸城县', '412726'); +INSERT INTO "public"."cardcodes" VALUES (2855, '河南省', '周口地区', '淮阳县', '412727'); +INSERT INTO "public"."cardcodes" VALUES (2856, '河南省', '周口地区', '沈丘县', '412728'); +INSERT INTO "public"."cardcodes" VALUES (2857, '河南省', '驻马店地区', '驻马店市', '412801'); +INSERT INTO "public"."cardcodes" VALUES (2858, '河南省', '驻马店地区', '确山县', '412821'); +INSERT INTO "public"."cardcodes" VALUES (2859, '河南省', '驻马店地区', '泌阳县', '412822'); +INSERT INTO "public"."cardcodes" VALUES (2860, '河南省', '驻马店地区', '遂平县', '412823'); +INSERT INTO "public"."cardcodes" VALUES (2861, '河南省', '驻马店地区', '西平县', '412824'); +INSERT INTO "public"."cardcodes" VALUES (2862, '河南省', '驻马店地区', '上蔡县', '412825'); +INSERT INTO "public"."cardcodes" VALUES (2863, '河南省', '驻马店地区', '汝南县', '412826'); +INSERT INTO "public"."cardcodes" VALUES (2864, '河南省', '驻马店地区', '平舆县', '412827'); +INSERT INTO "public"."cardcodes" VALUES (2865, '河南省', '驻马店地区', '新蔡县', '412828'); +INSERT INTO "public"."cardcodes" VALUES (2866, '河南省', '驻马店地区', '正阳县', '412829'); +INSERT INTO "public"."cardcodes" VALUES (2867, '河南省', '南阳市', '卧龙区', '412901'); +INSERT INTO "public"."cardcodes" VALUES (2868, '河南省', '南阳市', '邓州市', '412902'); +INSERT INTO "public"."cardcodes" VALUES (2869, '河南省', '南阳市', '宛城区', '412903'); +INSERT INTO "public"."cardcodes" VALUES (2870, '河南省', '南阳市', '南召县', '412921'); +INSERT INTO "public"."cardcodes" VALUES (2871, '河南省', '南阳市', '方城县', '412922'); +INSERT INTO "public"."cardcodes" VALUES (2872, '河南省', '南阳市', '西峡县', '412923'); +INSERT INTO "public"."cardcodes" VALUES (2873, '河南省', '南阳市', '南阳县', '412924'); +INSERT INTO "public"."cardcodes" VALUES (2874, '河南省', '南阳市', '镇平县', '412925'); +INSERT INTO "public"."cardcodes" VALUES (2875, '河南省', '南阳市', '内乡县', '412926'); +INSERT INTO "public"."cardcodes" VALUES (2876, '河南省', '南阳市', '淅川县', '412927'); +INSERT INTO "public"."cardcodes" VALUES (2877, '河南省', '南阳市', '社旗县', '412928'); +INSERT INTO "public"."cardcodes" VALUES (2878, '河南省', '南阳市', '唐河县', '412929'); +INSERT INTO "public"."cardcodes" VALUES (2879, '河南省', '南阳市', '邓县', '412930'); +INSERT INTO "public"."cardcodes" VALUES (2880, '河南省', '南阳市', '新野县', '412931'); +INSERT INTO "public"."cardcodes" VALUES (2881, '河南省', '南阳市', '桐柏县', '412932'); +INSERT INTO "public"."cardcodes" VALUES (2882, '河南省', '南阳市', '规划控制区', '412933'); +INSERT INTO "public"."cardcodes" VALUES (2883, '河南省', '信阳地区', '信阳市', '413001'); +INSERT INTO "public"."cardcodes" VALUES (2884, '河南省', '信阳地区', '息县', '413021'); +INSERT INTO "public"."cardcodes" VALUES (2885, '河南省', '信阳地区', '淮滨县', '413022'); +INSERT INTO "public"."cardcodes" VALUES (2886, '河南省', '信阳地区', '平桥区', '413023'); +INSERT INTO "public"."cardcodes" VALUES (2887, '河南省', '信阳地区', '潢川县', '413024'); +INSERT INTO "public"."cardcodes" VALUES (2888, '河南省', '信阳地区', '光山县', '413025'); +INSERT INTO "public"."cardcodes" VALUES (2889, '河南省', '信阳地区', '固始县', '413026'); +INSERT INTO "public"."cardcodes" VALUES (2890, '河南省', '信阳地区', '商城县', '413027'); +INSERT INTO "public"."cardcodes" VALUES (2891, '河南省', '信阳地区', '罗山县', '413028'); +INSERT INTO "public"."cardcodes" VALUES (2892, '河南省', '信阳地区', '新县', '413029'); +INSERT INTO "public"."cardcodes" VALUES (2893, '河南省', NULL, '许昌市', '412601'); +INSERT INTO "public"."cardcodes" VALUES (2894, '河南省', NULL, '漯河市', '412602'); +INSERT INTO "public"."cardcodes" VALUES (2895, '河南省', NULL, '长葛县', '412621'); +INSERT INTO "public"."cardcodes" VALUES (2896, '河南省', NULL, '禹县', '412622'); +INSERT INTO "public"."cardcodes" VALUES (2897, '河南省', NULL, '鄢陵县', '412623'); +INSERT INTO "public"."cardcodes" VALUES (2898, '河南省', NULL, '许昌县', '412624'); +INSERT INTO "public"."cardcodes" VALUES (2899, '河南省', NULL, '郏县', '412625'); +INSERT INTO "public"."cardcodes" VALUES (2900, '河南省', NULL, '临颍县', '412626'); +INSERT INTO "public"."cardcodes" VALUES (2901, '河南省', NULL, '襄城县', '412627'); +INSERT INTO "public"."cardcodes" VALUES (2902, '河南省', NULL, '宝丰县', '412628'); +INSERT INTO "public"."cardcodes" VALUES (2903, '河南省', NULL, '郾城县', '412629'); +INSERT INTO "public"."cardcodes" VALUES (2904, '河南省', NULL, '叶县', '412630'); +INSERT INTO "public"."cardcodes" VALUES (2905, '河南省', NULL, '鲁山县', '412631'); +INSERT INTO "public"."cardcodes" VALUES (2906, '河南省', NULL, '舞阳县', '412632'); +INSERT INTO "public"."cardcodes" VALUES (2907, '河南省', NULL, '义马市', '419001'); +INSERT INTO "public"."cardcodes" VALUES (2908, '河南省', NULL, '汝州市', '419002'); +INSERT INTO "public"."cardcodes" VALUES (2909, '河南省', NULL, '济源市', '419003'); +INSERT INTO "public"."cardcodes" VALUES (2910, '河南省', NULL, '禹州市', '419004'); +INSERT INTO "public"."cardcodes" VALUES (2911, '河南省', NULL, '卫辉市', '419005'); +INSERT INTO "public"."cardcodes" VALUES (2912, '河南省', NULL, '辉县市', '419006'); +INSERT INTO "public"."cardcodes" VALUES (2913, '湖北省', '宜昌市', '市辖区', '420501'); +INSERT INTO "public"."cardcodes" VALUES (2914, '湖北省', '宜昌市', '西陵区', '420502'); +INSERT INTO "public"."cardcodes" VALUES (2915, '湖北省', '宜昌市', '伍家岗区', '420503'); +INSERT INTO "public"."cardcodes" VALUES (2916, '湖北省', '宜昌市', '点军区', '420504'); +INSERT INTO "public"."cardcodes" VALUES (2917, '湖北省', '宜昌市', '猇亭区', '420505'); +INSERT INTO "public"."cardcodes" VALUES (2918, '湖北省', '宜昌市', '夷陵区', '420506'); +INSERT INTO "public"."cardcodes" VALUES (2919, '湖北省', '宜昌市', '宜昌县', '420521'); +INSERT INTO "public"."cardcodes" VALUES (2920, '湖北省', '宜昌市', '枝江县', '420523'); +INSERT INTO "public"."cardcodes" VALUES (2921, '湖北省', '宜昌市', '远安县', '420525'); +INSERT INTO "public"."cardcodes" VALUES (2922, '湖北省', '宜昌市', '兴山县', '420526'); +INSERT INTO "public"."cardcodes" VALUES (2923, '湖北省', '宜昌市', '秭归县', '420527'); +INSERT INTO "public"."cardcodes" VALUES (2924, '湖北省', '宜昌市', '长阳土家族自治县', '420528'); +INSERT INTO "public"."cardcodes" VALUES (2925, '湖北省', '宜昌市', '五峰土家族自治县', '420529'); +INSERT INTO "public"."cardcodes" VALUES (2926, '湖北省', '宜昌市', '宜都市', '420581'); +INSERT INTO "public"."cardcodes" VALUES (2927, '湖北省', '宜昌市', '当阳市', '420582'); +INSERT INTO "public"."cardcodes" VALUES (2928, '湖北省', '宜昌市', '枝江市', '420583'); +INSERT INTO "public"."cardcodes" VALUES (2929, '湖北省', '襄樊市', '市辖区', '420601'); +INSERT INTO "public"."cardcodes" VALUES (2930, '湖北省', '襄樊市', '襄城区', '420602'); +INSERT INTO "public"."cardcodes" VALUES (2931, '湖北省', '襄樊市', '樊东区', '420603'); +INSERT INTO "public"."cardcodes" VALUES (2932, '湖北省', '襄樊市', '樊西区', '420604'); +INSERT INTO "public"."cardcodes" VALUES (2933, '湖北省', '襄樊市', '郊区', '420605'); +INSERT INTO "public"."cardcodes" VALUES (2934, '湖北省', '襄樊市', '樊城区', '420606'); +INSERT INTO "public"."cardcodes" VALUES (2935, '湖北省', '襄樊市', '襄阳区', '420607'); +INSERT INTO "public"."cardcodes" VALUES (2936, '湖北省', '襄樊市', '随州市', '420619'); +INSERT INTO "public"."cardcodes" VALUES (2937, '湖北省', '襄樊市', '老河口市', '420620'); +INSERT INTO "public"."cardcodes" VALUES (2938, '湖北省', '襄樊市', '襄阳县', '420621'); +INSERT INTO "public"."cardcodes" VALUES (2939, '湖北省', '襄樊市', '枣阳县', '420622'); +INSERT INTO "public"."cardcodes" VALUES (2940, '湖北省', '襄樊市', '宜城县', '420623'); +INSERT INTO "public"."cardcodes" VALUES (2941, '湖北省', '襄樊市', '南漳县', '420624'); +INSERT INTO "public"."cardcodes" VALUES (2942, '湖北省', '襄樊市', '谷城县', '420625'); +INSERT INTO "public"."cardcodes" VALUES (2943, '湖北省', '襄樊市', '保康县', '420626'); +INSERT INTO "public"."cardcodes" VALUES (2944, '湖北省', '襄樊市', '随州市', '420681'); +INSERT INTO "public"."cardcodes" VALUES (2945, '湖北省', '襄樊市', '老河口市', '420682'); +INSERT INTO "public"."cardcodes" VALUES (2946, '湖北省', '襄樊市', '枣阳市', '420683'); +INSERT INTO "public"."cardcodes" VALUES (2947, '湖北省', '襄樊市', '宜城市', '420684'); +INSERT INTO "public"."cardcodes" VALUES (2948, '湖北省', '鄂州市', '市辖区', '420701'); +INSERT INTO "public"."cardcodes" VALUES (2949, '湖北省', '鄂州市', '梁子湖区', '420702'); +INSERT INTO "public"."cardcodes" VALUES (2950, '湖北省', '鄂州市', '华容区', '420703'); +INSERT INTO "public"."cardcodes" VALUES (2951, '湖北省', '鄂州市', '鄂城区', '420704'); +INSERT INTO "public"."cardcodes" VALUES (2952, '湖北省', '荆门市', '市辖区', '420801'); +INSERT INTO "public"."cardcodes" VALUES (2953, '湖北省', '荆门市', '东宝区', '420802'); +INSERT INTO "public"."cardcodes" VALUES (2954, '湖北省', '荆门市', '沙洋区', '420803'); +INSERT INTO "public"."cardcodes" VALUES (2955, '湖北省', '荆门市', '掇刀区', '420804'); +INSERT INTO "public"."cardcodes" VALUES (2956, '湖北省', '荆门市', '京山县', '420821'); +INSERT INTO "public"."cardcodes" VALUES (2957, '湖北省', '荆门市', '沙洋县', '420822'); +INSERT INTO "public"."cardcodes" VALUES (2958, '湖北省', '荆门市', '钟祥市', '420881'); +INSERT INTO "public"."cardcodes" VALUES (2959, '湖北省', '孝感市', '市辖区', '420901'); +INSERT INTO "public"."cardcodes" VALUES (2960, '湖北省', '孝感市', '孝南区', '420902'); +INSERT INTO "public"."cardcodes" VALUES (2961, '湖北省', '孝感市', '孝昌县', '420921'); +INSERT INTO "public"."cardcodes" VALUES (2962, '湖北省', '孝感市', '大悟县', '420922'); +INSERT INTO "public"."cardcodes" VALUES (2963, '湖北省', '孝感市', '云梦县', '420923'); +INSERT INTO "public"."cardcodes" VALUES (2964, '湖北省', '孝感市', '应城市', '420981'); +INSERT INTO "public"."cardcodes" VALUES (2965, '湖北省', '孝感市', '安陆市', '420982'); +INSERT INTO "public"."cardcodes" VALUES (2966, '湖北省', '孝感市', '广水市', '420983'); +INSERT INTO "public"."cardcodes" VALUES (2967, '湖北省', '孝感市', '汉川市', '420984'); +INSERT INTO "public"."cardcodes" VALUES (2968, '湖北省', '荆州市', '市辖区', '421001'); +INSERT INTO "public"."cardcodes" VALUES (2969, '湖北省', '荆州市', '沙市区', '421002'); +INSERT INTO "public"."cardcodes" VALUES (2970, '湖北省', '荆州市', '荆州区', '421003'); +INSERT INTO "public"."cardcodes" VALUES (2971, '湖北省', '荆州市', '江陵区', '421004'); +INSERT INTO "public"."cardcodes" VALUES (2972, '湖北省', '荆州市', '松滋县', '421021'); +INSERT INTO "public"."cardcodes" VALUES (2973, '湖北省', '荆州市', '公安县', '421022'); +INSERT INTO "public"."cardcodes" VALUES (2974, '湖北省', '荆州市', '监利县', '421023'); +INSERT INTO "public"."cardcodes" VALUES (2975, '湖北省', '荆州市', '江陵县', '421024'); +INSERT INTO "public"."cardcodes" VALUES (2976, '湖北省', '荆州市', '石首市', '421081'); +INSERT INTO "public"."cardcodes" VALUES (2977, '湖北省', '荆州市', '洪湖市', '421083'); +INSERT INTO "public"."cardcodes" VALUES (2978, '湖北省', '荆州市', '松滋市', '421087'); +INSERT INTO "public"."cardcodes" VALUES (2979, '湖北省', '黄冈市', '市辖区', '421101'); +INSERT INTO "public"."cardcodes" VALUES (2980, '湖北省', '黄冈市', '黄州区', '421102'); +INSERT INTO "public"."cardcodes" VALUES (2981, '湖北省', '黄冈市', '龙感湖管理区', '421103'); +INSERT INTO "public"."cardcodes" VALUES (2982, '湖北省', '黄冈市', '团风县', '421121'); +INSERT INTO "public"."cardcodes" VALUES (2983, '湖北省', '黄冈市', '红安县', '421122'); +INSERT INTO "public"."cardcodes" VALUES (2984, '湖北省', '黄冈市', '罗田县', '421123'); +INSERT INTO "public"."cardcodes" VALUES (2985, '湖北省', '黄冈市', '英山县', '421124'); +INSERT INTO "public"."cardcodes" VALUES (2986, '湖北省', '黄冈市', '浠水县', '421125'); +INSERT INTO "public"."cardcodes" VALUES (2987, '湖北省', '黄冈市', '蕲春县', '421126'); +INSERT INTO "public"."cardcodes" VALUES (2988, '湖北省', '黄冈市', '黄梅县', '421127'); +INSERT INTO "public"."cardcodes" VALUES (2989, '湖北省', '黄冈市', '麻城市', '421181'); +INSERT INTO "public"."cardcodes" VALUES (2990, '湖北省', '黄冈市', '武穴市', '421182'); +INSERT INTO "public"."cardcodes" VALUES (2991, '湖北省', '咸宁市', '市辖区', '421201'); +INSERT INTO "public"."cardcodes" VALUES (2992, '湖北省', '咸宁市', '咸安区', '421202'); +INSERT INTO "public"."cardcodes" VALUES (2993, '湖北省', '咸宁市', '嘉鱼县', '421221'); +INSERT INTO "public"."cardcodes" VALUES (2994, '湖北省', '咸宁市', '通城县', '421222'); +INSERT INTO "public"."cardcodes" VALUES (2995, '湖北省', '咸宁市', '崇阳县', '421223'); +INSERT INTO "public"."cardcodes" VALUES (2996, '湖北省', '咸宁市', '通山县', '421224'); +INSERT INTO "public"."cardcodes" VALUES (2997, '湖北省', '咸宁市', '赤壁市', '421281'); +INSERT INTO "public"."cardcodes" VALUES (2998, '湖北省', '随州市', '市辖区', '421301'); +INSERT INTO "public"."cardcodes" VALUES (2999, '湖北省', '随州市', '曾都区', '421302'); +INSERT INTO "public"."cardcodes" VALUES (3000, '湖北省', '随州市', '广水市', '421381'); +INSERT INTO "public"."cardcodes" VALUES (3001, '湖北省', '黄冈地区', '鄂州市', '422101'); +INSERT INTO "public"."cardcodes" VALUES (3002, '湖北省', '黄冈地区', '武穴市', '422102'); +INSERT INTO "public"."cardcodes" VALUES (3003, '湖北省', '黄冈地区', '黄州市', '422103'); +INSERT INTO "public"."cardcodes" VALUES (3004, '湖北省', '黄冈地区', '黄冈县', '422121'); +INSERT INTO "public"."cardcodes" VALUES (3005, '湖北省', '黄冈地区', '新洲县', '422122'); +INSERT INTO "public"."cardcodes" VALUES (3006, '湖北省', '黄冈地区', '红安县', '422123'); +INSERT INTO "public"."cardcodes" VALUES (3007, '湖北省', '黄冈地区', '麻城县', '422124'); +INSERT INTO "public"."cardcodes" VALUES (3008, '湖北省', '黄冈地区', '罗田县', '422125'); +INSERT INTO "public"."cardcodes" VALUES (3009, '湖北省', '黄冈地区', '英山县', '422126'); +INSERT INTO "public"."cardcodes" VALUES (3010, '湖北省', '黄冈地区', '浠水县', '422127'); +INSERT INTO "public"."cardcodes" VALUES (3011, '湖北省', '黄冈地区', '蕲春县', '422128'); +INSERT INTO "public"."cardcodes" VALUES (3012, '湖北省', '黄冈地区', '广济县', '422129'); +INSERT INTO "public"."cardcodes" VALUES (3013, '湖北省', '黄冈地区', '黄梅县', '422130'); +INSERT INTO "public"."cardcodes" VALUES (3014, '湖北省', '黄冈地区', '鄂城县', '422131'); +INSERT INTO "public"."cardcodes" VALUES (3015, '湖北省', '孝感地区', '孝感市', '422201'); +INSERT INTO "public"."cardcodes" VALUES (3016, '湖北省', '孝感地区', '应城市', '422202'); +INSERT INTO "public"."cardcodes" VALUES (3017, '湖北省', '孝感地区', '安陆市', '422203'); +INSERT INTO "public"."cardcodes" VALUES (3018, '湖北省', '孝感地区', '广水市', '422204'); +INSERT INTO "public"."cardcodes" VALUES (3019, '湖北省', '孝感地区', '孝感县', '422221'); +INSERT INTO "public"."cardcodes" VALUES (3020, '湖北省', '孝感地区', '黄陂县', '422222'); +INSERT INTO "public"."cardcodes" VALUES (3021, '湖北省', '孝感地区', '大悟县', '422223'); +INSERT INTO "public"."cardcodes" VALUES (3022, '湖北省', '孝感地区', '应山县', '422224'); +INSERT INTO "public"."cardcodes" VALUES (3023, '湖北省', '孝感地区', '安陆县', '422225'); +INSERT INTO "public"."cardcodes" VALUES (3024, '湖北省', '孝感地区', '云梦县', '422226'); +INSERT INTO "public"."cardcodes" VALUES (3025, '湖北省', '孝感地区', '应城县', '422227'); +INSERT INTO "public"."cardcodes" VALUES (3026, '湖北省', '孝感地区', '汉川县', '422228'); +INSERT INTO "public"."cardcodes" VALUES (3027, '湖北省', '省直辖行政单位', '神农架林区', '422921'); +INSERT INTO "public"."cardcodes" VALUES (3028, '湖北省', '省直辖行政单位', '随州市', '429001'); +INSERT INTO "public"."cardcodes" VALUES (3029, '湖北省', '省直辖行政单位', '枣阳市', '429003'); +INSERT INTO "public"."cardcodes" VALUES (3030, '湖北省', '省直辖行政单位', '仙桃市', '429004'); +INSERT INTO "public"."cardcodes" VALUES (3031, '湖北省', '省直辖行政单位', '潜江市', '429005'); +INSERT INTO "public"."cardcodes" VALUES (3032, '湖北省', '省直辖行政单位', '天门市', '429006'); +INSERT INTO "public"."cardcodes" VALUES (3033, '湖北省', '省直辖行政单位', '神农架林区', '429021'); +INSERT INTO "public"."cardcodes" VALUES (3034, '湖北省', '武汉市', '市辖区', '420101'); +INSERT INTO "public"."cardcodes" VALUES (3035, '湖北省', '武汉市', '江岸区', '420102'); +INSERT INTO "public"."cardcodes" VALUES (3036, '湖北省', '武汉市', '江汉区', '420103'); +INSERT INTO "public"."cardcodes" VALUES (3037, '湖北省', '武汉市', '乔口区', '420104'); +INSERT INTO "public"."cardcodes" VALUES (3038, '湖北省', '武汉市', '汉阳区', '420105'); +INSERT INTO "public"."cardcodes" VALUES (3039, '湖北省', '武汉市', '武昌区', '420106'); +INSERT INTO "public"."cardcodes" VALUES (3040, '湖北省', '武汉市', '青山区', '420107'); +INSERT INTO "public"."cardcodes" VALUES (3041, '湖北省', '武汉市', '东湖管理分局', '420109'); +INSERT INTO "public"."cardcodes" VALUES (3042, '湖北省', '武汉市', '洪山区', '420111'); +INSERT INTO "public"."cardcodes" VALUES (3043, '湖北省', '武汉市', '东西湖区', '420112'); +INSERT INTO "public"."cardcodes" VALUES (3044, '湖北省', '武汉市', '汉南区', '420113'); +INSERT INTO "public"."cardcodes" VALUES (3045, '湖北省', '武汉市', '蔡甸区', '420114'); +INSERT INTO "public"."cardcodes" VALUES (3046, '湖北省', '武汉市', '江夏区', '420115'); +INSERT INTO "public"."cardcodes" VALUES (3047, '湖北省', '武汉市', '黄陂区', '420116'); +INSERT INTO "public"."cardcodes" VALUES (3048, '湖北省', '武汉市', '新洲区', '420117'); +INSERT INTO "public"."cardcodes" VALUES (3049, '湖北省', '武汉市', '蔡甸区', '420121'); +INSERT INTO "public"."cardcodes" VALUES (3050, '湖北省', '武汉市', '江夏区', '420122'); +INSERT INTO "public"."cardcodes" VALUES (3051, '湖北省', '武汉市', '黄陂区', '420123'); +INSERT INTO "public"."cardcodes" VALUES (3052, '湖北省', '武汉市', '新洲县', '420124'); +INSERT INTO "public"."cardcodes" VALUES (3053, '湖北省', '黄石市', '市辖区', '420201'); +INSERT INTO "public"."cardcodes" VALUES (3054, '湖北省', '黄石市', '黄石港区', '420202'); +INSERT INTO "public"."cardcodes" VALUES (3055, '湖北省', '黄石市', '石灰窑区', '420203'); +INSERT INTO "public"."cardcodes" VALUES (3056, '湖北省', '黄石市', '下陆区', '420204'); +INSERT INTO "public"."cardcodes" VALUES (3057, '湖北省', '黄石市', '铁山区', '420205'); +INSERT INTO "public"."cardcodes" VALUES (3058, '湖北省', '黄石市', '市区', '420220'); +INSERT INTO "public"."cardcodes" VALUES (3059, '湖北省', '黄石市', '大冶县', '420221'); +INSERT INTO "public"."cardcodes" VALUES (3060, '湖北省', '黄石市', '阳新县', '420222'); +INSERT INTO "public"."cardcodes" VALUES (3061, '湖北省', '黄石市', '大冶市', '420281'); +INSERT INTO "public"."cardcodes" VALUES (3062, '湖北省', '十堰市', '市辖区', '420301'); +INSERT INTO "public"."cardcodes" VALUES (3063, '湖北省', '十堰市', '茅箭区', '420302'); +INSERT INTO "public"."cardcodes" VALUES (3064, '湖北省', '十堰市', '张湾区', '420303'); +INSERT INTO "public"."cardcodes" VALUES (3065, '湖北省', '十堰市', '郧县', '420321'); +INSERT INTO "public"."cardcodes" VALUES (3066, '湖北省', '十堰市', '郧西县', '420322'); +INSERT INTO "public"."cardcodes" VALUES (3067, '湖北省', '十堰市', '竹山县', '420323'); +INSERT INTO "public"."cardcodes" VALUES (3068, '湖北省', '十堰市', '竹溪县', '420324'); +INSERT INTO "public"."cardcodes" VALUES (3069, '湖北省', '十堰市', '房县', '420325'); +INSERT INTO "public"."cardcodes" VALUES (3070, '湖北省', '十堰市', '丹江口市', '420381'); +INSERT INTO "public"."cardcodes" VALUES (3071, '湖北省', '咸宁地区', '咸宁市', '422301'); +INSERT INTO "public"."cardcodes" VALUES (3072, '湖北省', '咸宁地区', '赤壁市', '422302'); +INSERT INTO "public"."cardcodes" VALUES (3073, '湖北省', '咸宁地区', '咸宁县', '422321'); +INSERT INTO "public"."cardcodes" VALUES (3074, '湖北省', '咸宁地区', '嘉鱼县', '422322'); +INSERT INTO "public"."cardcodes" VALUES (3075, '湖北省', '咸宁地区', '蒲圻县', '422323'); +INSERT INTO "public"."cardcodes" VALUES (3076, '湖北省', '咸宁地区', '通城县', '422324'); +INSERT INTO "public"."cardcodes" VALUES (3077, '湖北省', '咸宁地区', '崇阳县', '422325'); +INSERT INTO "public"."cardcodes" VALUES (3078, '湖北省', '咸宁地区', '通山县', '422326'); +INSERT INTO "public"."cardcodes" VALUES (3079, '湖北省', '咸宁地区', '阳新县', '422327'); +INSERT INTO "public"."cardcodes" VALUES (3080, '湖北省', '荆州地区', '仙桃市', '422401'); +INSERT INTO "public"."cardcodes" VALUES (3081, '湖北省', '荆州地区', '石首市', '422402'); +INSERT INTO "public"."cardcodes" VALUES (3082, '湖北省', '荆州地区', '洪湖市', '422403'); +INSERT INTO "public"."cardcodes" VALUES (3083, '湖北省', '荆州地区', '天门市', '422404'); +INSERT INTO "public"."cardcodes" VALUES (3084, '湖北省', '荆州地区', '潜江市', '422405'); +INSERT INTO "public"."cardcodes" VALUES (3085, '湖北省', '荆州地区', '钟祥市', '422406'); +INSERT INTO "public"."cardcodes" VALUES (3086, '湖北省', '荆州地区', '江陵县', '422421'); +INSERT INTO "public"."cardcodes" VALUES (3087, '湖北省', '荆州地区', '松滋县', '422422'); +INSERT INTO "public"."cardcodes" VALUES (3088, '湖北省', '荆州地区', '公安县', '422423'); +INSERT INTO "public"."cardcodes" VALUES (3089, '湖北省', '荆州地区', '石首县', '422424'); +INSERT INTO "public"."cardcodes" VALUES (3090, '湖北省', '荆州地区', '监利县', '422425'); +INSERT INTO "public"."cardcodes" VALUES (3091, '湖北省', '荆州地区', '洪湖县', '422426'); +INSERT INTO "public"."cardcodes" VALUES (3092, '湖北省', '荆州地区', '沔阳县', '422427'); +INSERT INTO "public"."cardcodes" VALUES (3093, '湖北省', '荆州地区', '天门县', '422428'); +INSERT INTO "public"."cardcodes" VALUES (3094, '湖北省', '荆州地区', '潜江县', '422429'); +INSERT INTO "public"."cardcodes" VALUES (3095, '湖北省', '荆州地区', '荆门县', '422430'); +INSERT INTO "public"."cardcodes" VALUES (3096, '湖北省', '荆州地区', '钟祥县', '422431'); +INSERT INTO "public"."cardcodes" VALUES (3097, '湖北省', '荆州地区', '京山县', '422432'); +INSERT INTO "public"."cardcodes" VALUES (3098, '湖北省', '随州地区', '随州市', '422501'); +INSERT INTO "public"."cardcodes" VALUES (3099, '湖北省', '随州地区', '老河口市', '422502'); +INSERT INTO "public"."cardcodes" VALUES (3100, '湖北省', '随州地区', '襄阳县', '422521'); +INSERT INTO "public"."cardcodes" VALUES (3101, '湖北省', '随州地区', '枣阳县', '422522'); +INSERT INTO "public"."cardcodes" VALUES (3102, '湖北省', '随州地区', '宜城县', '422524'); +INSERT INTO "public"."cardcodes" VALUES (3103, '湖北省', '随州地区', '南漳县', '422525'); +INSERT INTO "public"."cardcodes" VALUES (3104, '湖北省', '随州地区', '谷城县', '422527'); +INSERT INTO "public"."cardcodes" VALUES (3105, '湖北省', '随州地区', '保康县', '422528'); +INSERT INTO "public"."cardcodes" VALUES (3106, '湖北省', '郧阳地区', '丹江口市', '422601'); +INSERT INTO "public"."cardcodes" VALUES (3107, '湖北省', '郧阳地区', '郧县', '422622'); +INSERT INTO "public"."cardcodes" VALUES (3108, '湖北省', '郧阳地区', '郧西县', '422623'); +INSERT INTO "public"."cardcodes" VALUES (3109, '湖北省', '郧阳地区', '竹山县', '422624'); +INSERT INTO "public"."cardcodes" VALUES (3110, '湖北省', '郧阳地区', '竹溪县', '422625'); +INSERT INTO "public"."cardcodes" VALUES (3111, '湖北省', '郧阳地区', '房县', '422626'); +INSERT INTO "public"."cardcodes" VALUES (3112, '湖北省', '郧阳地区', '神农架林区', '422627'); +INSERT INTO "public"."cardcodes" VALUES (3113, '湖北省', '宜昌地区', '枝城市', '422701'); +INSERT INTO "public"."cardcodes" VALUES (3114, '湖北省', '宜昌地区', '当阳市', '422702'); +INSERT INTO "public"."cardcodes" VALUES (3115, '湖北省', '宜昌地区', '宜昌县', '422721'); +INSERT INTO "public"."cardcodes" VALUES (3116, '湖北省', '宜昌地区', '宜都县', '422722'); +INSERT INTO "public"."cardcodes" VALUES (3117, '湖北省', '宜昌地区', '枝江县', '422723'); +INSERT INTO "public"."cardcodes" VALUES (3118, '湖北省', '宜昌地区', '当阳县', '422724'); +INSERT INTO "public"."cardcodes" VALUES (3119, '湖北省', '宜昌地区', '远安县', '422725'); +INSERT INTO "public"."cardcodes" VALUES (3120, '湖北省', '宜昌地区', '兴山县', '422726'); +INSERT INTO "public"."cardcodes" VALUES (3121, '湖北省', '宜昌地区', '秭归县', '422727'); +INSERT INTO "public"."cardcodes" VALUES (3122, '湖北省', '宜昌地区', '长阳土家族自治县', '422728'); +INSERT INTO "public"."cardcodes" VALUES (3123, '湖北省', '宜昌地区', '五峰土家族自治县', '422729'); +INSERT INTO "public"."cardcodes" VALUES (3124, '湖北省', '恩施土家族苗族自治州', '恩施市', '422801'); +INSERT INTO "public"."cardcodes" VALUES (3125, '湖北省', '恩施土家族苗族自治州', '利川市', '422802'); +INSERT INTO "public"."cardcodes" VALUES (3126, '湖北省', '恩施土家族苗族自治州', '建始县', '422822'); +INSERT INTO "public"."cardcodes" VALUES (3127, '湖北省', '恩施土家族苗族自治州', '巴东县', '422823'); +INSERT INTO "public"."cardcodes" VALUES (3128, '湖北省', '恩施土家族苗族自治州', '宣恩县', '422825'); +INSERT INTO "public"."cardcodes" VALUES (3129, '湖北省', '恩施土家族苗族自治州', '咸丰县', '422826'); +INSERT INTO "public"."cardcodes" VALUES (3130, '湖北省', '恩施土家族苗族自治州', '来凤县', '422827'); +INSERT INTO "public"."cardcodes" VALUES (3131, '湖北省', '恩施土家族苗族自治州', '鹤峰县', '422828'); +INSERT INTO "public"."cardcodes" VALUES (3132, '湖北省', NULL, '沙市', '420400'); +INSERT INTO "public"."cardcodes" VALUES (3133, '湖北省', NULL, '沙洋监狱管理局', '423022'); +INSERT INTO "public"."cardcodes" VALUES (3134, '湖南省', '长沙市', '市辖区', '430101'); +INSERT INTO "public"."cardcodes" VALUES (3135, '湖南省', '长沙市', '芙蓉区', '430102'); +INSERT INTO "public"."cardcodes" VALUES (3136, '湖南省', '长沙市', '天心区', '430103'); +INSERT INTO "public"."cardcodes" VALUES (3137, '湖南省', '长沙市', '岳麓区', '430104'); +INSERT INTO "public"."cardcodes" VALUES (3138, '湖南省', '长沙市', '开福区', '430105'); +INSERT INTO "public"."cardcodes" VALUES (3139, '湖南省', '长沙市', '雨花区', '430111'); +INSERT INTO "public"."cardcodes" VALUES (3140, '湖南省', '长沙市', '市区', '430120'); +INSERT INTO "public"."cardcodes" VALUES (3141, '湖南省', '长沙市', '长沙县', '430121'); +INSERT INTO "public"."cardcodes" VALUES (3142, '湖南省', '长沙市', '望城县', '430122'); +INSERT INTO "public"."cardcodes" VALUES (3143, '湖南省', '长沙市', '浏阳县', '430123'); +INSERT INTO "public"."cardcodes" VALUES (3144, '湖南省', '长沙市', '宁乡县', '430124'); +INSERT INTO "public"."cardcodes" VALUES (3145, '湖南省', '长沙市', '浏阳市', '430181'); +INSERT INTO "public"."cardcodes" VALUES (3146, '湖南省', '株洲市', '市辖区', '430201'); +INSERT INTO "public"."cardcodes" VALUES (3147, '湖南省', '株洲市', '荷塘区', '430202'); +INSERT INTO "public"."cardcodes" VALUES (3148, '湖南省', '株洲市', '芦淞区', '430203'); +INSERT INTO "public"."cardcodes" VALUES (3149, '湖南省', '株洲市', '石峰区', '430204'); +INSERT INTO "public"."cardcodes" VALUES (3150, '湖南省', '株洲市', '天元区', '430211'); +INSERT INTO "public"."cardcodes" VALUES (3151, '湖南省', '株洲市', '醴陵市', '430219'); +INSERT INTO "public"."cardcodes" VALUES (3152, '湖南省', '株洲市', '市区', '430220'); +INSERT INTO "public"."cardcodes" VALUES (3153, '湖南省', '株洲市', '株洲县', '430221'); +INSERT INTO "public"."cardcodes" VALUES (3154, '湖南省', '株洲市', '醴陵县', '430222'); +INSERT INTO "public"."cardcodes" VALUES (3155, '湖南省', '株洲市', '攸县', '430223'); +INSERT INTO "public"."cardcodes" VALUES (3156, '湖南省', '株洲市', '茶陵县', '430224'); +INSERT INTO "public"."cardcodes" VALUES (3157, '湖南省', '株洲市', '炎陵县', '430225'); +INSERT INTO "public"."cardcodes" VALUES (3158, '湖南省', '株洲市', '醴陵市', '430281'); +INSERT INTO "public"."cardcodes" VALUES (3159, '湖南省', '湘潭市', '市辖区', '430301'); +INSERT INTO "public"."cardcodes" VALUES (3160, '湖南省', '湘潭市', '雨湖区', '430302'); +INSERT INTO "public"."cardcodes" VALUES (3161, '湖南省', '湘潭市', '湘江区', '430303'); +INSERT INTO "public"."cardcodes" VALUES (3162, '湖南省', '湘潭市', '岳塘区', '430304'); +INSERT INTO "public"."cardcodes" VALUES (3163, '湖南省', '湘潭市', '板塘区', '430305'); +INSERT INTO "public"."cardcodes" VALUES (3164, '湖南省', '湘潭市', '韶山区', '430306'); +INSERT INTO "public"."cardcodes" VALUES (3165, '湖南省', '湘潭市', '郊区', '430311'); +INSERT INTO "public"."cardcodes" VALUES (3166, '湖南省', '湘潭市', '韶山区', '430312'); +INSERT INTO "public"."cardcodes" VALUES (3167, '湖南省', '湘潭市', '湘潭县', '430321'); +INSERT INTO "public"."cardcodes" VALUES (3168, '湖南省', '湘潭市', '湘乡县', '430322'); +INSERT INTO "public"."cardcodes" VALUES (3169, '湖南省', '湘潭市', '湘乡市', '430381'); +INSERT INTO "public"."cardcodes" VALUES (3170, '湖南省', '湘潭市', '韶山市', '430382'); +INSERT INTO "public"."cardcodes" VALUES (3171, '湖南省', '衡阳市', '市辖区', '430401'); +INSERT INTO "public"."cardcodes" VALUES (3172, '湖南省', '衡阳市', '江东区', '430402'); +INSERT INTO "public"."cardcodes" VALUES (3173, '湖南省', '衡阳市', '城南区', '430403'); +INSERT INTO "public"."cardcodes" VALUES (3174, '湖南省', '衡阳市', '城北区', '430404'); +INSERT INTO "public"."cardcodes" VALUES (3175, '湖南省', '衡阳市', '珠晖区', '430405'); +INSERT INTO "public"."cardcodes" VALUES (3176, '湖南省', '衡阳市', '雁峰区', '430406'); +INSERT INTO "public"."cardcodes" VALUES (3177, '湖南省', '衡阳市', '石鼓区', '430407'); +INSERT INTO "public"."cardcodes" VALUES (3178, '湖南省', '衡阳市', '蒸湘区', '430408'); +INSERT INTO "public"."cardcodes" VALUES (3179, '湖南省', '衡阳市', '郊区', '430411'); +INSERT INTO "public"."cardcodes" VALUES (3180, '湖南省', '衡阳市', '南岳区', '430412'); +INSERT INTO "public"."cardcodes" VALUES (3181, '湖南省', '衡阳市', '耒阳市', '430419'); +INSERT INTO "public"."cardcodes" VALUES (3182, '湖南省', '衡阳市', '衡阳县', '430421'); +INSERT INTO "public"."cardcodes" VALUES (3183, '湖南省', '衡阳市', '衡南县', '430422'); +INSERT INTO "public"."cardcodes" VALUES (3184, '湖南省', '衡阳市', '衡山县', '430423'); +INSERT INTO "public"."cardcodes" VALUES (3185, '湖南省', '衡阳市', '衡东县', '430424'); +INSERT INTO "public"."cardcodes" VALUES (3186, '湖南省', '衡阳市', '常宁县', '430425'); +INSERT INTO "public"."cardcodes" VALUES (3187, '湖南省', '衡阳市', '祁东县', '430426'); +INSERT INTO "public"."cardcodes" VALUES (3188, '湖南省', '衡阳市', '耒阳县', '430427'); +INSERT INTO "public"."cardcodes" VALUES (3189, '湖南省', '衡阳市', '耒阳市', '430481'); +INSERT INTO "public"."cardcodes" VALUES (3190, '湖南省', '衡阳市', '常宁市', '430482'); +INSERT INTO "public"."cardcodes" VALUES (3191, '湖南省', '湘潭地区', '湘潭县', '432121'); +INSERT INTO "public"."cardcodes" VALUES (3192, '湖南省', '湘潭地区', '湘乡县', '432122'); +INSERT INTO "public"."cardcodes" VALUES (3193, '湖南省', '湘潭地区', '醴陵县', '432123'); +INSERT INTO "public"."cardcodes" VALUES (3194, '湖南省', '湘潭地区', '浏阳县', '432124'); +INSERT INTO "public"."cardcodes" VALUES (3195, '湖南省', '湘潭地区', '攸县', '432125'); +INSERT INTO "public"."cardcodes" VALUES (3196, '湖南省', '湘潭地区', '茶陵县', '432126'); +INSERT INTO "public"."cardcodes" VALUES (3197, '湖南省', '湘潭地区', '酃县', '432127'); +INSERT INTO "public"."cardcodes" VALUES (3198, '湖南省', '岳阳地区', '岳阳市', '432201'); +INSERT INTO "public"."cardcodes" VALUES (3199, '湖南省', '岳阳地区', '平江县', '432222'); +INSERT INTO "public"."cardcodes" VALUES (3200, '湖南省', '岳阳地区', '湘阴县', '432223'); +INSERT INTO "public"."cardcodes" VALUES (3201, '湖南省', '岳阳地区', '汨罗县', '432224'); +INSERT INTO "public"."cardcodes" VALUES (3202, '湖南省', '岳阳地区', '临湘市', '432225'); +INSERT INTO "public"."cardcodes" VALUES (3203, '湖南省', '岳阳地区', '华容县', '432226'); +INSERT INTO "public"."cardcodes" VALUES (3204, '湖南省', '益阳地区', '益阳市', '432301'); +INSERT INTO "public"."cardcodes" VALUES (3205, '湖南省', '益阳地区', '沅江市', '432302'); +INSERT INTO "public"."cardcodes" VALUES (3206, '湖南省', '益阳地区', '益阳县', '432321'); +INSERT INTO "public"."cardcodes" VALUES (3207, '湖南省', '益阳地区', '南县', '432322'); +INSERT INTO "public"."cardcodes" VALUES (3208, '湖南省', '益阳地区', '沅江县', '432323'); +INSERT INTO "public"."cardcodes" VALUES (3209, '湖南省', '益阳地区', '宁乡县', '432324'); +INSERT INTO "public"."cardcodes" VALUES (3210, '湖南省', '益阳地区', '桃江县', '432325'); +INSERT INTO "public"."cardcodes" VALUES (3211, '湖南省', '益阳地区', '安化县', '432326'); +INSERT INTO "public"."cardcodes" VALUES (3212, '湖南省', '常德地区', '常德市', '432401'); +INSERT INTO "public"."cardcodes" VALUES (3213, '湖南省', '常德地区', '津市市', '432402'); +INSERT INTO "public"."cardcodes" VALUES (3214, '湖南省', '常德地区', '常德县', '432421'); +INSERT INTO "public"."cardcodes" VALUES (3215, '湖南省', '常德地区', '安乡县', '432422'); +INSERT INTO "public"."cardcodes" VALUES (3216, '湖南省', '常德地区', '汉寿县', '432423'); +INSERT INTO "public"."cardcodes" VALUES (3217, '湖南省', '常德地区', '澧县', '432424'); +INSERT INTO "public"."cardcodes" VALUES (3218, '湖南省', '常德地区', '临澧县', '432425'); +INSERT INTO "public"."cardcodes" VALUES (3219, '湖南省', '常德地区', '桃源县', '432426'); +INSERT INTO "public"."cardcodes" VALUES (3220, '湖南省', '常德地区', '石门县', '432427'); +INSERT INTO "public"."cardcodes" VALUES (3221, '湖南省', '常德地区', '慈利县', '432428'); +INSERT INTO "public"."cardcodes" VALUES (3222, '湖南省', '娄底地区', '娄底市', '432501'); +INSERT INTO "public"."cardcodes" VALUES (3223, '湖南省', '娄底地区', '冷水江市', '432502'); +INSERT INTO "public"."cardcodes" VALUES (3224, '湖南省', '娄底地区', '涟源市', '432503'); +INSERT INTO "public"."cardcodes" VALUES (3225, '湖南省', '娄底地区', '涟源县', '432521'); +INSERT INTO "public"."cardcodes" VALUES (3226, '湖南省', '娄底地区', '双峰县', '432522'); +INSERT INTO "public"."cardcodes" VALUES (3227, '湖南省', '娄底地区', '邵东县', '432523'); +INSERT INTO "public"."cardcodes" VALUES (3228, '湖南省', '娄底地区', '新化县', '432524'); +INSERT INTO "public"."cardcodes" VALUES (3229, '湖南省', '娄底地区', '新邵县', '432525'); +INSERT INTO "public"."cardcodes" VALUES (3230, '湖南省', '邵阳地区', '邵阳县', '432621'); +INSERT INTO "public"."cardcodes" VALUES (3231, '湖南省', '邵阳地区', '隆回县', '432622'); +INSERT INTO "public"."cardcodes" VALUES (3232, '湖南省', '邵阳地区', '武冈县', '432623'); +INSERT INTO "public"."cardcodes" VALUES (3233, '湖南省', '邵阳地区', '洞口县', '432624'); +INSERT INTO "public"."cardcodes" VALUES (3234, '湖南省', '邵阳地区', '新宁县', '432625'); +INSERT INTO "public"."cardcodes" VALUES (3235, '湖南省', '邵阳地区', '绥宁县', '432626'); +INSERT INTO "public"."cardcodes" VALUES (3236, '湖南省', '邵阳地区', '城步苗族自治县', '432627'); +INSERT INTO "public"."cardcodes" VALUES (3237, '湖南省', '衡阳地区', '衡阳县', '432721'); +INSERT INTO "public"."cardcodes" VALUES (3238, '湖南省', '衡阳地区', '衡南县', '432722'); +INSERT INTO "public"."cardcodes" VALUES (3239, '湖南省', '衡阳地区', '衡山县', '432723'); +INSERT INTO "public"."cardcodes" VALUES (3240, '湖南省', '衡阳地区', '衡东县', '432724'); +INSERT INTO "public"."cardcodes" VALUES (3241, '湖南省', '衡阳地区', '常宁县', '432725'); +INSERT INTO "public"."cardcodes" VALUES (3242, '湖南省', '衡阳地区', '祁东县', '432726'); +INSERT INTO "public"."cardcodes" VALUES (3243, '湖南省', '衡阳地区', '祁阳县', '432727'); +INSERT INTO "public"."cardcodes" VALUES (3244, '湖南省', '郴州地区', '郴州市', '432801'); +INSERT INTO "public"."cardcodes" VALUES (3245, '湖南省', '郴州地区', '资兴市', '432802'); +INSERT INTO "public"."cardcodes" VALUES (3246, '湖南省', '郴州地区', '郴县', '432821'); +INSERT INTO "public"."cardcodes" VALUES (3247, '湖南省', '郴州地区', '桂阳县', '432822'); +INSERT INTO "public"."cardcodes" VALUES (3248, '湖南省', '郴州地区', '永兴县', '432823'); +INSERT INTO "public"."cardcodes" VALUES (3249, '湖南省', '郴州地区', '宜章县', '432824'); +INSERT INTO "public"."cardcodes" VALUES (3250, '湖南省', '郴州地区', '资兴县', '432825'); +INSERT INTO "public"."cardcodes" VALUES (3251, '湖南省', '郴州地区', '嘉禾县', '432826'); +INSERT INTO "public"."cardcodes" VALUES (3252, '湖南省', '郴州地区', '临武县', '432827'); +INSERT INTO "public"."cardcodes" VALUES (3253, '湖南省', '郴州地区', '汝城县', '432828'); +INSERT INTO "public"."cardcodes" VALUES (3254, '湖南省', '郴州地区', '桂东县', '432829'); +INSERT INTO "public"."cardcodes" VALUES (3255, '湖南省', '郴州地区', '耒阳县', '432830'); +INSERT INTO "public"."cardcodes" VALUES (3256, '湖南省', '郴州地区', '安仁县', '432831'); +INSERT INTO "public"."cardcodes" VALUES (3257, '湖南省', '零陵地区', '永州市', '432901'); +INSERT INTO "public"."cardcodes" VALUES (3258, '湖南省', '零陵地区', '冷水滩市', '432902'); +INSERT INTO "public"."cardcodes" VALUES (3259, '湖南省', '零陵地区', '零陵县', '432921'); +INSERT INTO "public"."cardcodes" VALUES (3260, '湖南省', '零陵地区', '东安县', '432922'); +INSERT INTO "public"."cardcodes" VALUES (3261, '湖南省', '零陵地区', '道县', '432923'); +INSERT INTO "public"."cardcodes" VALUES (3262, '湖南省', '零陵地区', '宁远县', '432924'); +INSERT INTO "public"."cardcodes" VALUES (3263, '湖南省', '零陵地区', '江永县', '432925'); +INSERT INTO "public"."cardcodes" VALUES (3264, '湖南省', '零陵地区', '江华瑶族自治县', '432926'); +INSERT INTO "public"."cardcodes" VALUES (3265, '湖南省', '零陵地区', '蓝山县', '432927'); +INSERT INTO "public"."cardcodes" VALUES (3266, '湖南省', '零陵地区', '新田县', '432928'); +INSERT INTO "public"."cardcodes" VALUES (3267, '湖南省', '零陵地区', '双牌县', '432929'); +INSERT INTO "public"."cardcodes" VALUES (3268, '湖南省', '零陵地区', '双牌县', '432930'); +INSERT INTO "public"."cardcodes" VALUES (3269, '湖南省', '邵阳市', '市辖区', '430501'); +INSERT INTO "public"."cardcodes" VALUES (3270, '湖南省', '邵阳市', '双清区', '430502'); +INSERT INTO "public"."cardcodes" VALUES (3271, '湖南省', '邵阳市', '大祥区', '430503'); +INSERT INTO "public"."cardcodes" VALUES (3272, '湖南省', '邵阳市', '北塔区', '430511'); +INSERT INTO "public"."cardcodes" VALUES (3273, '湖南省', '邵阳市', '邵东县', '430521'); +INSERT INTO "public"."cardcodes" VALUES (3274, '湖南省', '邵阳市', '新邵县', '430522'); +INSERT INTO "public"."cardcodes" VALUES (3275, '湖南省', '邵阳市', '邵阳县', '430523'); +INSERT INTO "public"."cardcodes" VALUES (3276, '湖南省', '邵阳市', '隆回县', '430524'); +INSERT INTO "public"."cardcodes" VALUES (3277, '湖南省', '邵阳市', '洞口县', '430525'); +INSERT INTO "public"."cardcodes" VALUES (3278, '湖南省', '邵阳市', '武冈县', '430526'); +INSERT INTO "public"."cardcodes" VALUES (3279, '湖南省', '邵阳市', '绥宁县', '430527'); +INSERT INTO "public"."cardcodes" VALUES (3280, '湖南省', '邵阳市', '新宁县', '430528'); +INSERT INTO "public"."cardcodes" VALUES (3281, '湖南省', '邵阳市', '城步苗族自治县', '430529'); +INSERT INTO "public"."cardcodes" VALUES (3282, '湖南省', '邵阳市', '武冈市', '430581'); +INSERT INTO "public"."cardcodes" VALUES (3283, '湖南省', '岳阳市', '市辖区', '430601'); +INSERT INTO "public"."cardcodes" VALUES (3284, '湖南省', '岳阳市', '岳阳楼区', '430602'); +INSERT INTO "public"."cardcodes" VALUES (3285, '湖南省', '岳阳市', '云溪区', '430603'); +INSERT INTO "public"."cardcodes" VALUES (3286, '湖南省', '岳阳市', '君山区', '430611'); +INSERT INTO "public"."cardcodes" VALUES (3287, '湖南省', '岳阳市', '岳阳县', '430621'); +INSERT INTO "public"."cardcodes" VALUES (3288, '湖南省', '岳阳市', '临湘县', '430622'); +INSERT INTO "public"."cardcodes" VALUES (3289, '湖南省', '岳阳市', '华容县', '430623'); +INSERT INTO "public"."cardcodes" VALUES (3290, '湖南省', '岳阳市', '湘阴县', '430624'); +INSERT INTO "public"."cardcodes" VALUES (3291, '湖南省', '岳阳市', '汨罗县', '430625'); +INSERT INTO "public"."cardcodes" VALUES (3292, '湖南省', '岳阳市', '平江县', '430626'); +INSERT INTO "public"."cardcodes" VALUES (3293, '湖南省', '岳阳市', '汨罗市', '430681'); +INSERT INTO "public"."cardcodes" VALUES (3294, '湖南省', '岳阳市', '临湘市', '430682'); +INSERT INTO "public"."cardcodes" VALUES (3295, '湖南省', '常德市', '市辖区', '430701'); +INSERT INTO "public"."cardcodes" VALUES (3296, '湖南省', '常德市', '武陵区', '430702'); +INSERT INTO "public"."cardcodes" VALUES (3297, '湖南省', '常德市', '鼎城区', '430703'); +INSERT INTO "public"."cardcodes" VALUES (3298, '湖南省', '常德市', '安乡县', '430721'); +INSERT INTO "public"."cardcodes" VALUES (3299, '湖南省', '常德市', '汉寿县', '430722'); +INSERT INTO "public"."cardcodes" VALUES (3300, '湖南省', '常德市', '澧县', '430723'); +INSERT INTO "public"."cardcodes" VALUES (3301, '湖南省', '常德市', '临澧县', '430724'); +INSERT INTO "public"."cardcodes" VALUES (3302, '湖南省', '常德市', '桃源县', '430725'); +INSERT INTO "public"."cardcodes" VALUES (3303, '湖南省', '常德市', '石门县', '430726'); +INSERT INTO "public"."cardcodes" VALUES (3304, '湖南省', '常德市', '津市市', '430781'); +INSERT INTO "public"."cardcodes" VALUES (3305, '湖南省', '张家界市', '市辖区', '430801'); +INSERT INTO "public"."cardcodes" VALUES (3306, '湖南省', '张家界市', '永定区', '430802'); +INSERT INTO "public"."cardcodes" VALUES (3307, '湖南省', '张家界市', '武陵源区', '430811'); +INSERT INTO "public"."cardcodes" VALUES (3308, '湖南省', '张家界市', '慈利县', '430821'); +INSERT INTO "public"."cardcodes" VALUES (3309, '湖南省', '张家界市', '桑植县', '430822'); +INSERT INTO "public"."cardcodes" VALUES (3310, '湖南省', '益阳市', '市辖区', '430901'); +INSERT INTO "public"."cardcodes" VALUES (3311, '湖南省', '益阳市', '资阳区', '430902'); +INSERT INTO "public"."cardcodes" VALUES (3312, '湖南省', '益阳市', '赫山区', '430903'); +INSERT INTO "public"."cardcodes" VALUES (3313, '湖南省', '益阳市', '市区', '430911'); +INSERT INTO "public"."cardcodes" VALUES (3314, '湖南省', '益阳市', '南县', '430921'); +INSERT INTO "public"."cardcodes" VALUES (3315, '湖南省', '益阳市', '桃江县', '430922'); +INSERT INTO "public"."cardcodes" VALUES (3316, '湖南省', '益阳市', '安化县', '430923'); +INSERT INTO "public"."cardcodes" VALUES (3317, '湖南省', '益阳市', '沅江市', '430981'); +INSERT INTO "public"."cardcodes" VALUES (3318, '湖南省', '郴州市', '市辖区', '431001'); +INSERT INTO "public"."cardcodes" VALUES (3319, '湖南省', '郴州市', '北湖区', '431002'); +INSERT INTO "public"."cardcodes" VALUES (3320, '湖南省', '郴州市', '苏仙区', '431003'); +INSERT INTO "public"."cardcodes" VALUES (3321, '湖南省', '郴州市', '桂阳县', '431021'); +INSERT INTO "public"."cardcodes" VALUES (3322, '湖南省', '郴州市', '宜章县', '431022'); +INSERT INTO "public"."cardcodes" VALUES (3323, '湖南省', '郴州市', '永兴县', '431023'); +INSERT INTO "public"."cardcodes" VALUES (3324, '湖南省', '郴州市', '嘉禾县', '431024'); +INSERT INTO "public"."cardcodes" VALUES (3325, '湖南省', '郴州市', '临武县', '431025'); +INSERT INTO "public"."cardcodes" VALUES (3326, '湖南省', '郴州市', '汝城县', '431026'); +INSERT INTO "public"."cardcodes" VALUES (3327, '湖南省', '郴州市', '桂东县', '431027'); +INSERT INTO "public"."cardcodes" VALUES (3328, '湖南省', '郴州市', '安仁县', '431028'); +INSERT INTO "public"."cardcodes" VALUES (3329, '湖南省', '郴州市', '资兴市', '431081'); +INSERT INTO "public"."cardcodes" VALUES (3330, '湖南省', '永州市', '市辖区', '431101'); +INSERT INTO "public"."cardcodes" VALUES (3331, '湖南省', '永州市', '零陵区', '431102'); +INSERT INTO "public"."cardcodes" VALUES (3332, '湖南省', '永州市', '冷水滩区', '431103'); +INSERT INTO "public"."cardcodes" VALUES (3333, '湖南省', '永州市', '祁阳县', '431121'); +INSERT INTO "public"."cardcodes" VALUES (3334, '湖南省', '永州市', '东安县', '431122'); +INSERT INTO "public"."cardcodes" VALUES (3335, '湖南省', '永州市', '双牌县', '431123'); +INSERT INTO "public"."cardcodes" VALUES (3336, '湖南省', '永州市', '道县', '431124'); +INSERT INTO "public"."cardcodes" VALUES (3337, '湖南省', '永州市', '江永县', '431125'); +INSERT INTO "public"."cardcodes" VALUES (3338, '湖南省', '永州市', '宁远县', '431126'); +INSERT INTO "public"."cardcodes" VALUES (3339, '湖南省', '永州市', '蓝山县', '431127'); +INSERT INTO "public"."cardcodes" VALUES (3340, '湖南省', '永州市', '新田县', '431128'); +INSERT INTO "public"."cardcodes" VALUES (3341, '湖南省', '永州市', '江华瑶族自治县', '431129'); +INSERT INTO "public"."cardcodes" VALUES (3342, '湖南省', '怀化市', '市辖区', '431201'); +INSERT INTO "public"."cardcodes" VALUES (3343, '湖南省', '怀化市', '鹤城区', '431202'); +INSERT INTO "public"."cardcodes" VALUES (3344, '湖南省', '怀化市', '中方县', '431221'); +INSERT INTO "public"."cardcodes" VALUES (3345, '湖南省', '怀化市', '沅陵县', '431222'); +INSERT INTO "public"."cardcodes" VALUES (3346, '湖南省', '怀化市', '辰溪县', '431223'); +INSERT INTO "public"."cardcodes" VALUES (3347, '湖南省', '怀化市', '溆浦县', '431224'); +INSERT INTO "public"."cardcodes" VALUES (3348, '湖南省', '怀化市', '会同县', '431225'); +INSERT INTO "public"."cardcodes" VALUES (3349, '湖南省', '怀化市', '麻阳苗族自治县', '431226'); +INSERT INTO "public"."cardcodes" VALUES (3350, '湖南省', '怀化市', '新晃侗族自治县', '431227'); +INSERT INTO "public"."cardcodes" VALUES (3351, '湖南省', '怀化市', '芷江侗族自治县', '431228'); +INSERT INTO "public"."cardcodes" VALUES (3352, '湖南省', '怀化市', '靖州苗族侗族自治县', '431229'); +INSERT INTO "public"."cardcodes" VALUES (3353, '湖南省', '怀化市', '通道侗族自治县', '431230'); +INSERT INTO "public"."cardcodes" VALUES (3354, '湖南省', '怀化市', '洪江市', '431281'); +INSERT INTO "public"."cardcodes" VALUES (3355, '湖南省', '娄底市', '市辖区', '431301'); +INSERT INTO "public"."cardcodes" VALUES (3356, '湖南省', '娄底市', '娄星区', '431302'); +INSERT INTO "public"."cardcodes" VALUES (3357, '湖南省', '娄底市', '双峰县', '431321'); +INSERT INTO "public"."cardcodes" VALUES (3358, '湖南省', '娄底市', '新化县', '431322'); +INSERT INTO "public"."cardcodes" VALUES (3359, '湖南省', '娄底市', '冷水江市', '431381'); +INSERT INTO "public"."cardcodes" VALUES (3360, '湖南省', '娄底市', '涟源市', '431382'); +INSERT INTO "public"."cardcodes" VALUES (3361, '湖南省', '怀化地区', '怀化市', '433001'); +INSERT INTO "public"."cardcodes" VALUES (3362, '湖南省', '怀化地区', '洪江市', '433002'); +INSERT INTO "public"."cardcodes" VALUES (3363, '湖南省', '怀化地区', '黔阳县', '433021'); +INSERT INTO "public"."cardcodes" VALUES (3364, '湖南省', '怀化地区', '沅陵县', '433022'); +INSERT INTO "public"."cardcodes" VALUES (3365, '湖南省', '怀化地区', '辰溪县', '433023'); +INSERT INTO "public"."cardcodes" VALUES (3366, '湖南省', '怀化地区', '溆浦县', '433024'); +INSERT INTO "public"."cardcodes" VALUES (3367, '湖南省', '怀化地区', '麻阳县', '433025'); +INSERT INTO "public"."cardcodes" VALUES (3368, '湖南省', '怀化地区', '新晃侗族自治县', '433026'); +INSERT INTO "public"."cardcodes" VALUES (3369, '湖南省', '怀化地区', '芷江县', '433027'); +INSERT INTO "public"."cardcodes" VALUES (3370, '湖南省', '怀化地区', '怀化县', '433028'); +INSERT INTO "public"."cardcodes" VALUES (3371, '湖南省', '怀化地区', '会同县', '433029'); +INSERT INTO "public"."cardcodes" VALUES (3372, '湖南省', '怀化地区', '靖县', '433030'); +INSERT INTO "public"."cardcodes" VALUES (3373, '湖南省', '怀化地区', '通道侗族自治县', '433031'); +INSERT INTO "public"."cardcodes" VALUES (3374, '湖南省', '湘西土家族苗族自治州', '吉首市', '433101'); +INSERT INTO "public"."cardcodes" VALUES (3375, '湖南省', '湘西土家族苗族自治州', '吉首县', '433121'); +INSERT INTO "public"."cardcodes" VALUES (3376, '湖南省', '湘西土家族苗族自治州', '泸溪县', '433122'); +INSERT INTO "public"."cardcodes" VALUES (3377, '湖南省', '湘西土家族苗族自治州', '凤凰县', '433123'); +INSERT INTO "public"."cardcodes" VALUES (3378, '湖南省', '湘西土家族苗族自治州', '花垣县', '433124'); +INSERT INTO "public"."cardcodes" VALUES (3379, '湖南省', '湘西土家族苗族自治州', '保靖县', '433125'); +INSERT INTO "public"."cardcodes" VALUES (3380, '湖南省', '湘西土家族苗族自治州', '古丈县', '433126'); +INSERT INTO "public"."cardcodes" VALUES (3381, '湖南省', '湘西土家族苗族自治州', '永顺县', '433127'); +INSERT INTO "public"."cardcodes" VALUES (3382, '湖南省', '湘西土家族苗族自治州', '大庸县', '433128'); +INSERT INTO "public"."cardcodes" VALUES (3383, '湖南省', '湘西土家族苗族自治州', '桑植县', '433129'); +INSERT INTO "public"."cardcodes" VALUES (3384, '湖南省', '湘西土家族苗族自治州', '龙山县', '433130'); +INSERT INTO "public"."cardcodes" VALUES (3385, '湖南省', NULL, '醴陵市', '439001'); +INSERT INTO "public"."cardcodes" VALUES (3386, '湖南省', NULL, '湘乡市', '439002'); +INSERT INTO "public"."cardcodes" VALUES (3387, '湖南省', NULL, '耒阳市', '439003'); +INSERT INTO "public"."cardcodes" VALUES (3388, '湖南省', NULL, '汨罗市', '439004'); +INSERT INTO "public"."cardcodes" VALUES (3389, '湖南省', NULL, '津市市', '439005'); +INSERT INTO "public"."cardcodes" VALUES (3390, '广东省', '广州市', '市辖区', '440101'); +INSERT INTO "public"."cardcodes" VALUES (3391, '广东省', '广州市', '东山区', '440102'); +INSERT INTO "public"."cardcodes" VALUES (3392, '广东省', '广州市', '荔湾区', '440103'); +INSERT INTO "public"."cardcodes" VALUES (3393, '广东省', '广州市', '越秀区', '440104'); +INSERT INTO "public"."cardcodes" VALUES (3394, '广东省', '广州市', '海珠区', '440105'); +INSERT INTO "public"."cardcodes" VALUES (3395, '广东省', '广州市', '天河区', '440106'); +INSERT INTO "public"."cardcodes" VALUES (3396, '广东省', '广州市', '芳村区', '440107'); +INSERT INTO "public"."cardcodes" VALUES (3397, '广东省', '广州市', '白云区', '440111'); +INSERT INTO "public"."cardcodes" VALUES (3398, '广东省', '广州市', '黄埔区', '440112'); +INSERT INTO "public"."cardcodes" VALUES (3399, '广东省', '广州市', '番禺区', '440113'); +INSERT INTO "public"."cardcodes" VALUES (3400, '广东省', '广州市', '花都区', '440114'); +INSERT INTO "public"."cardcodes" VALUES (3401, '广东省', '广州市', '南沙区', '440115'); +INSERT INTO "public"."cardcodes" VALUES (3402, '广东省', '广州市', '萝岗区', '440116'); +INSERT INTO "public"."cardcodes" VALUES (3403, '广东省', '广州市', '市区', '440120'); +INSERT INTO "public"."cardcodes" VALUES (3404, '广东省', '广州市', '花县', '440121'); +INSERT INTO "public"."cardcodes" VALUES (3405, '广东省', '广州市', '从化县', '440122'); +INSERT INTO "public"."cardcodes" VALUES (3406, '广东省', '广州市', '新丰县', '440123'); +INSERT INTO "public"."cardcodes" VALUES (3407, '广东省', '广州市', '龙门县', '440124'); +INSERT INTO "public"."cardcodes" VALUES (3408, '广东省', '广州市', '增城县', '440125'); +INSERT INTO "public"."cardcodes" VALUES (3409, '广东省', '广州市', '番禺县', '440126'); +INSERT INTO "public"."cardcodes" VALUES (3410, '广东省', '广州市', '清远县', '440127'); +INSERT INTO "public"."cardcodes" VALUES (3411, '广东省', '广州市', '佛冈县', '440128'); +INSERT INTO "public"."cardcodes" VALUES (3412, '广东省', '广州市', '番禺市', '440181'); +INSERT INTO "public"."cardcodes" VALUES (3413, '广东省', '广州市', '花都市', '440182'); +INSERT INTO "public"."cardcodes" VALUES (3414, '广东省', '广州市', '增城市', '440183'); +INSERT INTO "public"."cardcodes" VALUES (3415, '广东省', '广州市', '从化市', '440184'); +INSERT INTO "public"."cardcodes" VALUES (3416, '广东省', '韶关市', '市辖区', '440201'); +INSERT INTO "public"."cardcodes" VALUES (3417, '广东省', '韶关市', '北江区', '440202'); +INSERT INTO "public"."cardcodes" VALUES (3418, '广东省', '韶关市', '武江区', '440203'); +INSERT INTO "public"."cardcodes" VALUES (3419, '广东省', '韶关市', '浈江区', '440204'); +INSERT INTO "public"."cardcodes" VALUES (3420, '广东省', '韶关市', '曲江区', '440205'); +INSERT INTO "public"."cardcodes" VALUES (3421, '广东省', '韶关市', '曲江县', '440221'); +INSERT INTO "public"."cardcodes" VALUES (3422, '广东省', '韶关市', '始兴县', '440222'); +INSERT INTO "public"."cardcodes" VALUES (3423, '广东省', '韶关市', '南雄县', '440223'); +INSERT INTO "public"."cardcodes" VALUES (3424, '广东省', '韶关市', '仁化县', '440224'); +INSERT INTO "public"."cardcodes" VALUES (3425, '广东省', '韶关市', '乐昌县', '440225'); +INSERT INTO "public"."cardcodes" VALUES (3426, '广东省', '韶关市', '连县', '440226'); +INSERT INTO "public"."cardcodes" VALUES (3427, '广东省', '韶关市', '阳山县', '440227'); +INSERT INTO "public"."cardcodes" VALUES (3428, '广东省', '韶关市', '英德县', '440228'); +INSERT INTO "public"."cardcodes" VALUES (3429, '广东省', '韶关市', '翁源县', '440229'); +INSERT INTO "public"."cardcodes" VALUES (3430, '广东省', '韶关市', '连山壮族瑶族自治县', '440230'); +INSERT INTO "public"."cardcodes" VALUES (3431, '广东省', '韶关市', '连南瑶族自治县', '440231'); +INSERT INTO "public"."cardcodes" VALUES (3432, '广东省', '韶关市', '乳源瑶族自治县', '440232'); +INSERT INTO "public"."cardcodes" VALUES (3433, '广东省', '韶关市', '新丰县', '440233'); +INSERT INTO "public"."cardcodes" VALUES (3434, '广东省', '韶关市', '乐昌市', '440281'); +INSERT INTO "public"."cardcodes" VALUES (3435, '广东省', '韶关市', '南雄市', '440282'); +INSERT INTO "public"."cardcodes" VALUES (3436, '广东省', '深圳市', '市辖区', '440301'); +INSERT INTO "public"."cardcodes" VALUES (3437, '广东省', '深圳市', '盐田区', '440302'); +INSERT INTO "public"."cardcodes" VALUES (3438, '广东省', '深圳市', '罗湖区', '440303'); +INSERT INTO "public"."cardcodes" VALUES (3439, '广东省', '深圳市', '福田区', '440304'); +INSERT INTO "public"."cardcodes" VALUES (3440, '广东省', '深圳市', '南山区', '440305'); +INSERT INTO "public"."cardcodes" VALUES (3441, '广东省', '深圳市', '宝安区', '440306'); +INSERT INTO "public"."cardcodes" VALUES (3442, '广东省', '深圳市', '龙岗区', '440307'); +INSERT INTO "public"."cardcodes" VALUES (3443, '广东省', '深圳市', '盐田区', '440308'); +INSERT INTO "public"."cardcodes" VALUES (3444, '广东省', '深圳市', '市区', '440320'); +INSERT INTO "public"."cardcodes" VALUES (3445, '广东省', '深圳市', '宝安县', '440321'); +INSERT INTO "public"."cardcodes" VALUES (3446, '广东省', '珠海市', '市辖区', '440401'); +INSERT INTO "public"."cardcodes" VALUES (3447, '广东省', '珠海市', '香洲区', '440402'); +INSERT INTO "public"."cardcodes" VALUES (3448, '广东省', '珠海市', '斗门区', '440403'); +INSERT INTO "public"."cardcodes" VALUES (3449, '广东省', '珠海市', '金湾区', '440404'); +INSERT INTO "public"."cardcodes" VALUES (3450, '广东省', '珠海市', '斗门县', '440421'); +INSERT INTO "public"."cardcodes" VALUES (3451, '广东省', '汕头市', '市辖区', '440501'); +INSERT INTO "public"."cardcodes" VALUES (3452, '广东省', '汕头市', '同平区', '440502'); +INSERT INTO "public"."cardcodes" VALUES (3453, '广东省', '汕头市', '安平区', '440503'); +INSERT INTO "public"."cardcodes" VALUES (3454, '广东省', '汕头市', '公园区', '440504'); +INSERT INTO "public"."cardcodes" VALUES (3455, '广东省', '汕头市', '金砂区', '440505'); +INSERT INTO "public"."cardcodes" VALUES (3456, '广东省', '汕头市', '达濠区', '440506'); +INSERT INTO "public"."cardcodes" VALUES (3457, '广东省', '汕头市', '龙湖区', '440507'); +INSERT INTO "public"."cardcodes" VALUES (3458, '广东省', '汕头市', '金园区', '440508'); +INSERT INTO "public"."cardcodes" VALUES (3459, '广东省', '汕头市', '升平区', '440509'); +INSERT INTO "public"."cardcodes" VALUES (3460, '广东省', '汕头市', '河浦区', '440510'); +INSERT INTO "public"."cardcodes" VALUES (3461, '广东省', '汕头市', '金平区', '440511'); +INSERT INTO "public"."cardcodes" VALUES (3462, '广东省', '汕头市', '濠江区', '440512'); +INSERT INTO "public"."cardcodes" VALUES (3463, '广东省', '汕头市', '潮阳区', '440513'); +INSERT INTO "public"."cardcodes" VALUES (3464, '广东省', '汕头市', '潮南区', '440514'); +INSERT INTO "public"."cardcodes" VALUES (3465, '广东省', '汕头市', '澄海区', '440515'); +INSERT INTO "public"."cardcodes" VALUES (3466, '广东省', '汕头市', '潮州市', '440520'); +INSERT INTO "public"."cardcodes" VALUES (3467, '广东省', '汕头市', '澄海县', '440521'); +INSERT INTO "public"."cardcodes" VALUES (3468, '广东省', '汕头市', '饶平县', '440522'); +INSERT INTO "public"."cardcodes" VALUES (3469, '广东省', '汕头市', '南澳县', '440523'); +INSERT INTO "public"."cardcodes" VALUES (3470, '广东省', '汕头市', '潮阳县', '440524'); +INSERT INTO "public"."cardcodes" VALUES (3471, '广东省', '汕头市', '揭阳县', '440525'); +INSERT INTO "public"."cardcodes" VALUES (3472, '广东省', '汕头市', '揭西县', '440526'); +INSERT INTO "public"."cardcodes" VALUES (3473, '广东省', '汕头市', '普宁县', '440527'); +INSERT INTO "public"."cardcodes" VALUES (3474, '广东省', '汕头市', '惠来县', '440528'); +INSERT INTO "public"."cardcodes" VALUES (3475, '广东省', '汕头市', '潮州市', '440581'); +INSERT INTO "public"."cardcodes" VALUES (3476, '广东省', '汕头市', '潮阳市', '440582'); +INSERT INTO "public"."cardcodes" VALUES (3477, '广东省', '汕头市', '澄海市', '440583'); +INSERT INTO "public"."cardcodes" VALUES (3478, '广东省', '佛山市', '市辖区', '440601'); +INSERT INTO "public"."cardcodes" VALUES (3479, '广东省', '佛山市', '城区', '440602'); +INSERT INTO "public"."cardcodes" VALUES (3480, '广东省', '佛山市', '石湾区', '440603'); +INSERT INTO "public"."cardcodes" VALUES (3481, '广东省', '佛山市', '禅城区', '440604'); +INSERT INTO "public"."cardcodes" VALUES (3482, '广东省', '佛山市', '南海区', '440605'); +INSERT INTO "public"."cardcodes" VALUES (3483, '广东省', '佛山市', '顺德区', '440606'); +INSERT INTO "public"."cardcodes" VALUES (3484, '广东省', '佛山市', '三水区', '440607'); +INSERT INTO "public"."cardcodes" VALUES (3485, '广东省', '佛山市', '高明区', '440608'); +INSERT INTO "public"."cardcodes" VALUES (3486, '广东省', '佛山市', '中山市', '440620'); +INSERT INTO "public"."cardcodes" VALUES (3487, '广东省', '佛山市', '三水县', '440621'); +INSERT INTO "public"."cardcodes" VALUES (3488, '广东省', '佛山市', '南海县', '440622'); +INSERT INTO "public"."cardcodes" VALUES (3489, '广东省', '佛山市', '顺德县', '440623'); +INSERT INTO "public"."cardcodes" VALUES (3490, '广东省', '佛山市', '高明县', '440624'); +INSERT INTO "public"."cardcodes" VALUES (3491, '广东省', '佛山市', '顺德市', '440681'); +INSERT INTO "public"."cardcodes" VALUES (3492, '广东省', '佛山市', '南海市', '440682'); +INSERT INTO "public"."cardcodes" VALUES (3493, '广东省', '佛山市', '三水市', '440683'); +INSERT INTO "public"."cardcodes" VALUES (3494, '广东省', '佛山市', '高明市', '440684'); +INSERT INTO "public"."cardcodes" VALUES (3495, '广东省', '江门市', '市辖区', '440701'); +INSERT INTO "public"."cardcodes" VALUES (3496, '广东省', '江门市', '城区', '440702'); +INSERT INTO "public"."cardcodes" VALUES (3497, '广东省', '江门市', '蓬江区', '440703'); +INSERT INTO "public"."cardcodes" VALUES (3498, '广东省', '江门市', '江海区', '440704'); +INSERT INTO "public"."cardcodes" VALUES (3499, '广东省', '江门市', '新会区', '440705'); +INSERT INTO "public"."cardcodes" VALUES (3500, '广东省', '江门市', '郊区', '440711'); +INSERT INTO "public"."cardcodes" VALUES (3501, '广东省', '江门市', '新会县', '440721'); +INSERT INTO "public"."cardcodes" VALUES (3502, '广东省', '江门市', '台山县', '440722'); +INSERT INTO "public"."cardcodes" VALUES (3503, '广东省', '江门市', '恩平县', '440723'); +INSERT INTO "public"."cardcodes" VALUES (3504, '广东省', '江门市', '开平县', '440724'); +INSERT INTO "public"."cardcodes" VALUES (3505, '广东省', '江门市', '鹤山县', '440725'); +INSERT INTO "public"."cardcodes" VALUES (3506, '广东省', '江门市', '阳江县', '440726'); +INSERT INTO "public"."cardcodes" VALUES (3507, '广东省', '江门市', '阳春县', '440727'); +INSERT INTO "public"."cardcodes" VALUES (3508, '广东省', '江门市', '台山市', '440781'); +INSERT INTO "public"."cardcodes" VALUES (3509, '广东省', '江门市', '新会市', '440782'); +INSERT INTO "public"."cardcodes" VALUES (3510, '广东省', '江门市', '开平市', '440783'); +INSERT INTO "public"."cardcodes" VALUES (3511, '广东省', '江门市', '鹤山市', '440784'); +INSERT INTO "public"."cardcodes" VALUES (3512, '广东省', '江门市', '恩平市', '440785'); +INSERT INTO "public"."cardcodes" VALUES (3513, '广东省', '清远市', '连州市', '441882'); +INSERT INTO "public"."cardcodes" VALUES (3514, '广东省', '清远市', '市辖区', '441801'); +INSERT INTO "public"."cardcodes" VALUES (3515, '广东省', '清远市', '清城区', '441802'); +INSERT INTO "public"."cardcodes" VALUES (3516, '广东省', '清远市', '清郊区', '441811'); +INSERT INTO "public"."cardcodes" VALUES (3517, '广东省', '清远市', '佛冈县', '441821'); +INSERT INTO "public"."cardcodes" VALUES (3518, '广东省', '清远市', '英德县', '441822'); +INSERT INTO "public"."cardcodes" VALUES (3519, '广东省', '清远市', '阳山县', '441823'); +INSERT INTO "public"."cardcodes" VALUES (3520, '广东省', '清远市', '连县', '441824'); +INSERT INTO "public"."cardcodes" VALUES (3521, '广东省', '清远市', '连山壮族瑶族自治县', '441825'); +INSERT INTO "public"."cardcodes" VALUES (3522, '广东省', '清远市', '连南瑶族自治县', '441826'); +INSERT INTO "public"."cardcodes" VALUES (3523, '广东省', '清远市', '清新县', '441827'); +INSERT INTO "public"."cardcodes" VALUES (3524, '广东省', '清远市', '英德市', '441881'); +INSERT INTO "public"."cardcodes" VALUES (3525, '广东省', '佛山市', '佛山市', '442701'); +INSERT INTO "public"."cardcodes" VALUES (3526, '广东省', '佛山市', '江门市', '442702'); +INSERT INTO "public"."cardcodes" VALUES (3527, '广东省', '佛山市', '三水县', '442721'); +INSERT INTO "public"."cardcodes" VALUES (3528, '广东省', '佛山市', '南海县', '442722'); +INSERT INTO "public"."cardcodes" VALUES (3529, '广东省', '佛山市', '顺德县', '442723'); +INSERT INTO "public"."cardcodes" VALUES (3530, '广东省', '佛山市', '中山县', '442724'); +INSERT INTO "public"."cardcodes" VALUES (3531, '广东省', '佛山市', '斗门县', '442725'); +INSERT INTO "public"."cardcodes" VALUES (3532, '广东省', '佛山市', '新会县', '442726'); +INSERT INTO "public"."cardcodes" VALUES (3533, '广东省', '佛山市', '台山县', '442727'); +INSERT INTO "public"."cardcodes" VALUES (3534, '广东省', '佛山市', '恩平县', '442728'); +INSERT INTO "public"."cardcodes" VALUES (3535, '广东省', '佛山市', '开平县', '442729'); +INSERT INTO "public"."cardcodes" VALUES (3536, '广东省', '佛山市', '鹤山县', '442731'); +INSERT INTO "public"."cardcodes" VALUES (3537, '广东省', '佛山市', '高明县', '442732'); +INSERT INTO "public"."cardcodes" VALUES (3538, '广东省', '湛江市', '湛江市', '442901'); +INSERT INTO "public"."cardcodes" VALUES (3539, '广东省', '湛江市', '茂名市', '442902'); +INSERT INTO "public"."cardcodes" VALUES (3540, '广东省', '湛江市', '阳江县', '442921'); +INSERT INTO "public"."cardcodes" VALUES (3541, '广东省', '湛江市', '阳春县', '442922'); +INSERT INTO "public"."cardcodes" VALUES (3542, '广东省', '湛江市', '信宜县', '442923'); +INSERT INTO "public"."cardcodes" VALUES (3543, '广东省', '湛江市', '高州县', '442924'); +INSERT INTO "public"."cardcodes" VALUES (3544, '广东省', '湛江市', '电白县', '442925'); +INSERT INTO "public"."cardcodes" VALUES (3545, '广东省', '湛江市', '吴川县', '442926'); +INSERT INTO "public"."cardcodes" VALUES (3546, '广东省', '湛江市', '化州县', '442927'); +INSERT INTO "public"."cardcodes" VALUES (3547, '广东省', '湛江市', '廉江县', '442928'); +INSERT INTO "public"."cardcodes" VALUES (3548, '广东省', '湛江市', '遂溪县', '442929'); +INSERT INTO "public"."cardcodes" VALUES (3549, '广东省', '湛江市', '海康县', '442930'); +INSERT INTO "public"."cardcodes" VALUES (3550, '广东省', '湛江市', '徐闻县', '442931'); +INSERT INTO "public"."cardcodes" VALUES (3551, '广东省', '潮州市', '市辖区', '445101'); +INSERT INTO "public"."cardcodes" VALUES (3552, '广东省', '潮州市', '湘桥区', '445102'); +INSERT INTO "public"."cardcodes" VALUES (3553, '广东省', '潮州市', '潮安县', '445121'); +INSERT INTO "public"."cardcodes" VALUES (3554, '广东省', '潮州市', '饶平县', '445122'); +INSERT INTO "public"."cardcodes" VALUES (3555, '广东省', '揭阳市', '市辖区', '445201'); +INSERT INTO "public"."cardcodes" VALUES (3556, '广东省', '揭阳市', '榕城区', '445202'); +INSERT INTO "public"."cardcodes" VALUES (3557, '广东省', '揭阳市', '揭东县', '445221'); +INSERT INTO "public"."cardcodes" VALUES (3558, '广东省', '揭阳市', '揭西县', '445222'); +INSERT INTO "public"."cardcodes" VALUES (3559, '广东省', '揭阳市', '惠来县', '445224'); +INSERT INTO "public"."cardcodes" VALUES (3560, '广东省', '揭阳市', '普宁市', '445281'); +INSERT INTO "public"."cardcodes" VALUES (3561, '广东省', '湛江市', '市辖区', '440801'); +INSERT INTO "public"."cardcodes" VALUES (3562, '广东省', '湛江市', '赤坎区', '440802'); +INSERT INTO "public"."cardcodes" VALUES (3563, '广东省', '湛江市', '霞山区', '440803'); +INSERT INTO "public"."cardcodes" VALUES (3564, '广东省', '湛江市', '坡头区', '440804'); +INSERT INTO "public"."cardcodes" VALUES (3565, '广东省', '湛江市', '麻章区', '440811'); +INSERT INTO "public"."cardcodes" VALUES (3566, '广东省', '湛江市', '吴川县', '440821'); +INSERT INTO "public"."cardcodes" VALUES (3567, '广东省', '湛江市', '廉江县', '440822'); +INSERT INTO "public"."cardcodes" VALUES (3568, '广东省', '湛江市', '遂溪县', '440823'); +INSERT INTO "public"."cardcodes" VALUES (3569, '广东省', '湛江市', '海康县', '440824'); +INSERT INTO "public"."cardcodes" VALUES (3570, '广东省', '湛江市', '徐闻县', '440825'); +INSERT INTO "public"."cardcodes" VALUES (3571, '广东省', '湛江市', '廉江市', '440881'); +INSERT INTO "public"."cardcodes" VALUES (3572, '广东省', '湛江市', '雷州市', '440882'); +INSERT INTO "public"."cardcodes" VALUES (3573, '广东省', '湛江市', '吴川市', '440883'); +INSERT INTO "public"."cardcodes" VALUES (3574, '广东省', '茂名市', '市辖区', '440901'); +INSERT INTO "public"."cardcodes" VALUES (3575, '广东省', '茂名市', '茂南区', '440902'); +INSERT INTO "public"."cardcodes" VALUES (3576, '广东省', '茂名市', '茂港区', '440903'); +INSERT INTO "public"."cardcodes" VALUES (3577, '广东省', '茂名市', '信宜县', '440921'); +INSERT INTO "public"."cardcodes" VALUES (3578, '广东省', '茂名市', '高州县', '440922'); +INSERT INTO "public"."cardcodes" VALUES (3579, '广东省', '茂名市', '电白县', '440923'); +INSERT INTO "public"."cardcodes" VALUES (3580, '广东省', '茂名市', '化州县', '440924'); +INSERT INTO "public"."cardcodes" VALUES (3581, '广东省', '茂名市', '高州市', '440981'); +INSERT INTO "public"."cardcodes" VALUES (3582, '广东省', '茂名市', '化州市', '440982'); +INSERT INTO "public"."cardcodes" VALUES (3583, '广东省', '茂名市', '信宜市', '440983'); +INSERT INTO "public"."cardcodes" VALUES (3584, '广东省', '肇庆市', '市辖区', '441201'); +INSERT INTO "public"."cardcodes" VALUES (3585, '广东省', '肇庆市', '端州区', '441202'); +INSERT INTO "public"."cardcodes" VALUES (3586, '广东省', '肇庆市', '鼎湖区', '441203'); +INSERT INTO "public"."cardcodes" VALUES (3587, '广东省', '肇庆市', '高要县', '441221'); +INSERT INTO "public"."cardcodes" VALUES (3588, '广东省', '肇庆市', '四会县', '441222'); +INSERT INTO "public"."cardcodes" VALUES (3589, '广东省', '肇庆市', '广宁县', '441223'); +INSERT INTO "public"."cardcodes" VALUES (3590, '广东省', '肇庆市', '怀集县', '441224'); +INSERT INTO "public"."cardcodes" VALUES (3591, '广东省', '肇庆市', '封开县', '441225'); +INSERT INTO "public"."cardcodes" VALUES (3592, '广东省', '肇庆市', '德庆县', '441226'); +INSERT INTO "public"."cardcodes" VALUES (3593, '广东省', '肇庆市', '云浮县', '441227'); +INSERT INTO "public"."cardcodes" VALUES (3594, '广东省', '肇庆市', '新兴县', '441228'); +INSERT INTO "public"."cardcodes" VALUES (3595, '广东省', '肇庆市', '郁南县', '441229'); +INSERT INTO "public"."cardcodes" VALUES (3596, '广东省', '肇庆市', '罗定县', '441230'); +INSERT INTO "public"."cardcodes" VALUES (3597, '广东省', '肇庆市', '云浮市', '441281'); +INSERT INTO "public"."cardcodes" VALUES (3598, '广东省', '肇庆市', '罗定市', '441282'); +INSERT INTO "public"."cardcodes" VALUES (3599, '广东省', '肇庆市', '高要市', '441283'); +INSERT INTO "public"."cardcodes" VALUES (3600, '广东省', '肇庆市', '四会市', '441284'); +INSERT INTO "public"."cardcodes" VALUES (3601, '广东省', '惠州市', '市辖区', '441301'); +INSERT INTO "public"."cardcodes" VALUES (3602, '广东省', '惠州市', '惠城区', '441302'); +INSERT INTO "public"."cardcodes" VALUES (3603, '广东省', '惠州市', '惠阳区', '441303'); +INSERT INTO "public"."cardcodes" VALUES (3604, '广东省', '惠州市', '惠阳县', '441321'); +INSERT INTO "public"."cardcodes" VALUES (3605, '广东省', '惠州市', '博罗县', '441322'); +INSERT INTO "public"."cardcodes" VALUES (3606, '广东省', '惠州市', '惠东县', '441323'); +INSERT INTO "public"."cardcodes" VALUES (3607, '广东省', '惠州市', '龙门县', '441324'); +INSERT INTO "public"."cardcodes" VALUES (3608, '广东省', '惠州市', '惠阳市', '441381'); +INSERT INTO "public"."cardcodes" VALUES (3609, '广东省', '梅州市', '市辖区', '441401'); +INSERT INTO "public"."cardcodes" VALUES (3610, '广东省', '梅州市', '梅江区', '441402'); +INSERT INTO "public"."cardcodes" VALUES (3611, '广东省', '梅州市', '梅县', '441421'); +INSERT INTO "public"."cardcodes" VALUES (3612, '广东省', '梅州市', '大埔县', '441422'); +INSERT INTO "public"."cardcodes" VALUES (3613, '广东省', '梅州市', '丰顺县', '441423'); +INSERT INTO "public"."cardcodes" VALUES (3614, '广东省', '梅州市', '五华县', '441424'); +INSERT INTO "public"."cardcodes" VALUES (3615, '广东省', '梅州市', '兴宁县', '441425'); +INSERT INTO "public"."cardcodes" VALUES (3616, '广东省', '梅州市', '平远县', '441426'); +INSERT INTO "public"."cardcodes" VALUES (3617, '广东省', '梅州市', '蕉岭县', '441427'); +INSERT INTO "public"."cardcodes" VALUES (3618, '广东省', '梅州市', '兴宁市', '441481'); +INSERT INTO "public"."cardcodes" VALUES (3619, '广东省', '汕尾市', '市辖区', '441501'); +INSERT INTO "public"."cardcodes" VALUES (3620, '广东省', '汕尾市', '城区', '441502'); +INSERT INTO "public"."cardcodes" VALUES (3621, '广东省', '汕尾市', '海丰县', '441521'); +INSERT INTO "public"."cardcodes" VALUES (3622, '广东省', '汕尾市', '陆丰县', '441522'); +INSERT INTO "public"."cardcodes" VALUES (3623, '广东省', '汕尾市', '陆河县', '441523'); +INSERT INTO "public"."cardcodes" VALUES (3624, '广东省', '汕尾市', '陆丰市', '441581'); +INSERT INTO "public"."cardcodes" VALUES (3625, '广东省', '河源市', '市辖区', '441601'); +INSERT INTO "public"."cardcodes" VALUES (3626, '广东省', '河源市', '源城区', '441602'); +INSERT INTO "public"."cardcodes" VALUES (3627, '广东省', '河源市', '郊区', '441611'); +INSERT INTO "public"."cardcodes" VALUES (3628, '广东省', '河源市', '紫金县', '441621'); +INSERT INTO "public"."cardcodes" VALUES (3629, '广东省', '河源市', '龙川县', '441622'); +INSERT INTO "public"."cardcodes" VALUES (3630, '广东省', '河源市', '连平县', '441623'); +INSERT INTO "public"."cardcodes" VALUES (3631, '广东省', '河源市', '和平县', '441624'); +INSERT INTO "public"."cardcodes" VALUES (3632, '广东省', '河源市', '东源县', '441625'); +INSERT INTO "public"."cardcodes" VALUES (3633, '广东省', '阳江市', '市辖区', '441701'); +INSERT INTO "public"."cardcodes" VALUES (3634, '广东省', '阳江市', '江城区', '441702'); +INSERT INTO "public"."cardcodes" VALUES (3635, '广东省', '阳江市', '阳东区', '441703'); +INSERT INTO "public"."cardcodes" VALUES (3636, '广东省', '阳江市', '阳西县', '441721'); +INSERT INTO "public"."cardcodes" VALUES (3637, '广东省', '阳江市', '阳春县', '441722'); +INSERT INTO "public"."cardcodes" VALUES (3638, '广东省', '阳江市', '阳东县', '441723'); +INSERT INTO "public"."cardcodes" VALUES (3639, '广东省', '阳江市', '阳春市', '441781'); +INSERT INTO "public"."cardcodes" VALUES (3640, '广东省', '云浮市', '市辖区', '445301'); +INSERT INTO "public"."cardcodes" VALUES (3641, '广东省', '云浮市', '云城区', '445302'); +INSERT INTO "public"."cardcodes" VALUES (3642, '广东省', '云浮市', '新兴县', '445321'); +INSERT INTO "public"."cardcodes" VALUES (3643, '广东省', '云浮市', '郁南县', '445322'); +INSERT INTO "public"."cardcodes" VALUES (3644, '广东省', '云浮市', '云安县', '445323'); +INSERT INTO "public"."cardcodes" VALUES (3645, '广东省', '云浮市', '罗定市', '445381'); +INSERT INTO "public"."cardcodes" VALUES (3646, '广东省', NULL, '东莞市', '441900'); +INSERT INTO "public"."cardcodes" VALUES (3647, '广东省', NULL, '中山市', '442000'); +INSERT INTO "public"."cardcodes" VALUES (3648, '广东省', NULL, '连平县', '442524'); +INSERT INTO "public"."cardcodes" VALUES (3649, '广东省', NULL, '河源县', '442525'); +INSERT INTO "public"."cardcodes" VALUES (3650, '广东省', NULL, '博罗县', '442526'); +INSERT INTO "public"."cardcodes" VALUES (3651, '广东省', NULL, '东莞县', '442527'); +INSERT INTO "public"."cardcodes" VALUES (3652, '广东省', NULL, '惠东县', '442528'); +INSERT INTO "public"."cardcodes" VALUES (3653, '广东省', NULL, '龙川县', '442529'); +INSERT INTO "public"."cardcodes" VALUES (3654, '广东省', NULL, '陆丰县', '442530'); +INSERT INTO "public"."cardcodes" VALUES (3655, '广东省', NULL, '海丰县', '442531'); +INSERT INTO "public"."cardcodes" VALUES (3656, '广东省', NULL, '始兴县', '442621'); +INSERT INTO "public"."cardcodes" VALUES (3657, '广东省', NULL, '南雄县', '442622'); +INSERT INTO "public"."cardcodes" VALUES (3658, '广东省', NULL, '仁化县', '442623'); +INSERT INTO "public"."cardcodes" VALUES (3659, '广东省', NULL, '乐昌县', '442624'); +INSERT INTO "public"."cardcodes" VALUES (3660, '广东省', NULL, '清远县', '442628'); +INSERT INTO "public"."cardcodes" VALUES (3661, '广东省', NULL, '翁源县', '442630'); +INSERT INTO "public"."cardcodes" VALUES (3662, '广东省', NULL, '连山壮族瑶族自治县', '442631'); +INSERT INTO "public"."cardcodes" VALUES (3663, '广东省', NULL, '连南瑶族自治县', '442632'); +INSERT INTO "public"."cardcodes" VALUES (3664, '广东省', NULL, '乳源瑶族自治县', '442633'); +INSERT INTO "public"."cardcodes" VALUES (3665, '广东省', NULL, '高要县', '442821'); +INSERT INTO "public"."cardcodes" VALUES (3666, '广东省', NULL, '四会县', '442822'); +INSERT INTO "public"."cardcodes" VALUES (3667, '广东省', NULL, '广宁县', '442823'); +INSERT INTO "public"."cardcodes" VALUES (3668, '广东省', NULL, '怀集县', '442824'); +INSERT INTO "public"."cardcodes" VALUES (3669, '广东省', NULL, '封开县', '442825'); +INSERT INTO "public"."cardcodes" VALUES (3670, '广东省', NULL, '德庆县', '442826'); +INSERT INTO "public"."cardcodes" VALUES (3671, '广东省', NULL, '云浮县', '442827'); +INSERT INTO "public"."cardcodes" VALUES (3672, '广东省', NULL, '新兴县', '442828'); +INSERT INTO "public"."cardcodes" VALUES (3673, '广东省', NULL, '郁南县', '442829'); +INSERT INTO "public"."cardcodes" VALUES (3674, '广东省', NULL, '罗定县', '442830'); +INSERT INTO "public"."cardcodes" VALUES (3675, '广东省', NULL, '惠州市', '442501'); +INSERT INTO "public"."cardcodes" VALUES (3676, '广东省', NULL, '东莞市', '442502'); +INSERT INTO "public"."cardcodes" VALUES (3677, '广东省', NULL, '惠阳县', '442521'); +INSERT INTO "public"."cardcodes" VALUES (3678, '广东省', NULL, '紫金县', '442522'); +INSERT INTO "public"."cardcodes" VALUES (3679, '广东省', NULL, '和平县', '442523'); +INSERT INTO "public"."cardcodes" VALUES (3680, '广西壮族自治区', '百色市', '市辖区', '451001'); +INSERT INTO "public"."cardcodes" VALUES (3681, '广西壮族自治区', '百色市', '右江区', '451002'); +INSERT INTO "public"."cardcodes" VALUES (3682, '广西壮族自治区', '百色市', '田阳县', '451021'); +INSERT INTO "public"."cardcodes" VALUES (3683, '广西壮族自治区', '百色市', '田东县', '451022'); +INSERT INTO "public"."cardcodes" VALUES (3684, '广西壮族自治区', '百色市', '平果县', '451023'); +INSERT INTO "public"."cardcodes" VALUES (3685, '广西壮族自治区', '百色市', '德保县', '451024'); +INSERT INTO "public"."cardcodes" VALUES (3686, '广西壮族自治区', '百色市', '靖西县', '451025'); +INSERT INTO "public"."cardcodes" VALUES (3687, '广西壮族自治区', '百色市', '那坡县', '451026'); +INSERT INTO "public"."cardcodes" VALUES (3688, '广西壮族自治区', '百色市', '凌云县', '451027'); +INSERT INTO "public"."cardcodes" VALUES (3689, '广西壮族自治区', '百色市', '乐业县', '451028'); +INSERT INTO "public"."cardcodes" VALUES (3690, '广西壮族自治区', '百色市', '田林县', '451029'); +INSERT INTO "public"."cardcodes" VALUES (3691, '广西壮族自治区', '百色市', '西林县', '451030'); +INSERT INTO "public"."cardcodes" VALUES (3692, '广西壮族自治区', '百色市', '隆林各族自治县', '451031'); +INSERT INTO "public"."cardcodes" VALUES (3693, '广西壮族自治区', '贺州市', '市辖区', '451101'); +INSERT INTO "public"."cardcodes" VALUES (3694, '广西壮族自治区', '贺州市', '八步区', '451102'); +INSERT INTO "public"."cardcodes" VALUES (3695, '广西壮族自治区', '贺州市', '昭平县', '451121'); +INSERT INTO "public"."cardcodes" VALUES (3696, '广西壮族自治区', '贺州市', '钟山县', '451122'); +INSERT INTO "public"."cardcodes" VALUES (3697, '广西壮族自治区', '贺州市', '富川瑶族自治县', '451123'); +INSERT INTO "public"."cardcodes" VALUES (3698, '广西壮族自治区', '河池市', '市辖区', '451201'); +INSERT INTO "public"."cardcodes" VALUES (3699, '广西壮族自治区', '河池市', '金城江区', '451202'); +INSERT INTO "public"."cardcodes" VALUES (3700, '广西壮族自治区', '河池市', '南丹县', '451221'); +INSERT INTO "public"."cardcodes" VALUES (3701, '广西壮族自治区', '河池市', '天峨县', '451222'); +INSERT INTO "public"."cardcodes" VALUES (3702, '广西壮族自治区', '河池市', '凤山县', '451223'); +INSERT INTO "public"."cardcodes" VALUES (3703, '广西壮族自治区', '河池市', '东兰县', '451224'); +INSERT INTO "public"."cardcodes" VALUES (3704, '广西壮族自治区', '河池市', '罗城仫佬族自治县', '451225'); +INSERT INTO "public"."cardcodes" VALUES (3705, '广西壮族自治区', '河池市', '环江毛南族自治县', '451226'); +INSERT INTO "public"."cardcodes" VALUES (3706, '广西壮族自治区', '河池市', '巴马瑶族自治县', '451227'); +INSERT INTO "public"."cardcodes" VALUES (3707, '广西壮族自治区', '河池市', '都安瑶族自治县', '451228'); +INSERT INTO "public"."cardcodes" VALUES (3708, '广西壮族自治区', '河池市', '大化瑶族自治县', '451229'); +INSERT INTO "public"."cardcodes" VALUES (3709, '广西壮族自治区', '河池市', '宜州市', '451281'); +INSERT INTO "public"."cardcodes" VALUES (3710, '广西壮族自治区', '来宾市', '市辖区', '451301'); +INSERT INTO "public"."cardcodes" VALUES (3711, '广西壮族自治区', '来宾市', '兴宾区', '451302'); +INSERT INTO "public"."cardcodes" VALUES (3712, '广西壮族自治区', '来宾市', '忻城县', '451321'); +INSERT INTO "public"."cardcodes" VALUES (3713, '广西壮族自治区', '来宾市', '象州县', '451322'); +INSERT INTO "public"."cardcodes" VALUES (3714, '广西壮族自治区', '来宾市', '武宣县', '451323'); +INSERT INTO "public"."cardcodes" VALUES (3715, '广西壮族自治区', '来宾市', '金秀瑶族自治县', '451324'); +INSERT INTO "public"."cardcodes" VALUES (3716, '广西壮族自治区', '来宾市', '合山市', '451381'); +INSERT INTO "public"."cardcodes" VALUES (3717, '广西壮族自治区', '崇左市', '市辖区', '451401'); +INSERT INTO "public"."cardcodes" VALUES (3718, '广西壮族自治区', '崇左市', '江洲区', '451402'); +INSERT INTO "public"."cardcodes" VALUES (3719, '广西壮族自治区', '崇左市', '扶绥县', '451421'); +INSERT INTO "public"."cardcodes" VALUES (3720, '广西壮族自治区', '崇左市', '宁明县', '451422'); +INSERT INTO "public"."cardcodes" VALUES (3721, '广西壮族自治区', '崇左市', '龙州县', '451423'); +INSERT INTO "public"."cardcodes" VALUES (3722, '广西壮族自治区', '崇左市', '大新县', '451424'); +INSERT INTO "public"."cardcodes" VALUES (3723, '广西壮族自治区', '崇左市', '天等县', '451425'); +INSERT INTO "public"."cardcodes" VALUES (3724, '广西壮族自治区', '崇左市', '凭祥市', '451481'); +INSERT INTO "public"."cardcodes" VALUES (3725, '广西壮族自治区', '南宁地区', '凭祥市', '452101'); +INSERT INTO "public"."cardcodes" VALUES (3726, '广西壮族自治区', '南宁地区', '横县', '452122'); +INSERT INTO "public"."cardcodes" VALUES (3727, '广西壮族自治区', '南宁地区', '宾阳县', '452123'); +INSERT INTO "public"."cardcodes" VALUES (3728, '广西壮族自治区', '南宁地区', '上林县', '452124'); +INSERT INTO "public"."cardcodes" VALUES (3729, '广西壮族自治区', '南宁地区', '隆安县', '452126'); +INSERT INTO "public"."cardcodes" VALUES (3730, '广西壮族自治区', '南宁地区', '马山县', '452127'); +INSERT INTO "public"."cardcodes" VALUES (3731, '广西壮族自治区', '南宁地区', '扶绥县', '452128'); +INSERT INTO "public"."cardcodes" VALUES (3732, '广西壮族自治区', '南宁地区', '崇左县', '452129'); +INSERT INTO "public"."cardcodes" VALUES (3733, '广西壮族自治区', '南宁地区', '大新县', '452130'); +INSERT INTO "public"."cardcodes" VALUES (3734, '广西壮族自治区', '南宁地区', '天等县', '452131'); +INSERT INTO "public"."cardcodes" VALUES (3735, '广西壮族自治区', '南宁地区', '宁明县', '452132'); +INSERT INTO "public"."cardcodes" VALUES (3736, '广西壮族自治区', '南宁地区', '龙州县', '452133'); +INSERT INTO "public"."cardcodes" VALUES (3737, '广西壮族自治区', '柳州地区', '合山市', '452201'); +INSERT INTO "public"."cardcodes" VALUES (3738, '广西壮族自治区', '柳州地区', '鹿寨县', '452223'); +INSERT INTO "public"."cardcodes" VALUES (3739, '广西壮族自治区', '柳州地区', '象州县', '452224'); +INSERT INTO "public"."cardcodes" VALUES (3740, '广西壮族自治区', '柳州地区', '武宣县', '452225'); +INSERT INTO "public"."cardcodes" VALUES (3741, '广西壮族自治区', '柳州地区', '来宾县', '452226'); +INSERT INTO "public"."cardcodes" VALUES (3742, '广西壮族自治区', '柳州地区', '融安县', '452227'); +INSERT INTO "public"."cardcodes" VALUES (3743, '广西壮族自治区', '柳州地区', '三江侗族自治县', '452228'); +INSERT INTO "public"."cardcodes" VALUES (3744, '广西壮族自治区', '柳州地区', '融水苗族自治县', '452229'); +INSERT INTO "public"."cardcodes" VALUES (3745, '广西壮族自治区', '柳州地区', '金秀瑶族自治县', '452230'); +INSERT INTO "public"."cardcodes" VALUES (3746, '广西壮族自治区', '柳州地区', '忻城县', '452231'); +INSERT INTO "public"."cardcodes" VALUES (3747, '广西壮族自治区', '南宁市', '市辖区', '450101'); +INSERT INTO "public"."cardcodes" VALUES (3748, '广西壮族自治区', '南宁市', '兴宁区', '450102'); +INSERT INTO "public"."cardcodes" VALUES (3749, '广西壮族自治区', '南宁市', '青秀区', '450103'); +INSERT INTO "public"."cardcodes" VALUES (3750, '广西壮族自治区', '南宁市', '城北区', '450104'); +INSERT INTO "public"."cardcodes" VALUES (3751, '广西壮族自治区', '南宁市', '江南区', '450105'); +INSERT INTO "public"."cardcodes" VALUES (3752, '广西壮族自治区', '南宁市', '永新区', '450106'); +INSERT INTO "public"."cardcodes" VALUES (3753, '广西壮族自治区', '南宁市', '西乡塘区', '450107'); +INSERT INTO "public"."cardcodes" VALUES (3754, '广西壮族自治区', '南宁市', '良庆区', '450108'); +INSERT INTO "public"."cardcodes" VALUES (3755, '广西壮族自治区', '南宁市', '邕宁区', '450109'); +INSERT INTO "public"."cardcodes" VALUES (3756, '广西壮族自治区', '南宁市', '郊区', '450111'); +INSERT INTO "public"."cardcodes" VALUES (3757, '广西壮族自治区', '南宁市', '邕宁县', '450121'); +INSERT INTO "public"."cardcodes" VALUES (3758, '广西壮族自治区', '南宁市', '武鸣县', '450122'); +INSERT INTO "public"."cardcodes" VALUES (3759, '广西壮族自治区', '南宁市', '隆安县', '450123'); +INSERT INTO "public"."cardcodes" VALUES (3760, '广西壮族自治区', '南宁市', '马山县', '450124'); +INSERT INTO "public"."cardcodes" VALUES (3761, '广西壮族自治区', '南宁市', '上林县', '450125'); +INSERT INTO "public"."cardcodes" VALUES (3762, '广西壮族自治区', '南宁市', '宾阳县', '450126'); +INSERT INTO "public"."cardcodes" VALUES (3763, '广西壮族自治区', '南宁市', '横县', '450127'); +INSERT INTO "public"."cardcodes" VALUES (3764, '广西壮族自治区', '柳州市', '市辖区', '450201'); +INSERT INTO "public"."cardcodes" VALUES (3765, '广西壮族自治区', '柳州市', '城中区', '450202'); +INSERT INTO "public"."cardcodes" VALUES (3766, '广西壮族自治区', '柳州市', '鱼峰区', '450203'); +INSERT INTO "public"."cardcodes" VALUES (3767, '广西壮族自治区', '柳州市', '柳南区', '450204'); +INSERT INTO "public"."cardcodes" VALUES (3768, '广西壮族自治区', '柳州市', '柳北区', '450205'); +INSERT INTO "public"."cardcodes" VALUES (3769, '广西壮族自治区', '柳州市', '市郊区', '450211'); +INSERT INTO "public"."cardcodes" VALUES (3770, '广西壮族自治区', '柳州市', '柳江县', '450221'); +INSERT INTO "public"."cardcodes" VALUES (3771, '广西壮族自治区', '柳州市', '柳城县', '450222'); +INSERT INTO "public"."cardcodes" VALUES (3772, '广西壮族自治区', '柳州市', '鹿寨县', '450223'); +INSERT INTO "public"."cardcodes" VALUES (3773, '广西壮族自治区', '柳州市', '融安县', '450224'); +INSERT INTO "public"."cardcodes" VALUES (3774, '广西壮族自治区', '柳州市', '融水苗族自治县', '450225'); +INSERT INTO "public"."cardcodes" VALUES (3775, '广西壮族自治区', '柳州市', '三江侗族自治县', '450226'); +INSERT INTO "public"."cardcodes" VALUES (3776, '广西壮族自治区', '桂林市', '市辖区', '450301'); +INSERT INTO "public"."cardcodes" VALUES (3777, '广西壮族自治区', '桂林市', '秀峰区', '450302'); +INSERT INTO "public"."cardcodes" VALUES (3778, '广西壮族自治区', '桂林市', '叠彩区', '450303'); +INSERT INTO "public"."cardcodes" VALUES (3779, '广西壮族自治区', '桂林市', '象山区', '450304'); +INSERT INTO "public"."cardcodes" VALUES (3780, '广西壮族自治区', '桂林市', '七星区', '450305'); +INSERT INTO "public"."cardcodes" VALUES (3781, '广西壮族自治区', '桂林市', '雁山区', '450311'); +INSERT INTO "public"."cardcodes" VALUES (3782, '广西壮族自治区', '桂林市', '阳朔县', '450321'); +INSERT INTO "public"."cardcodes" VALUES (3783, '广西壮族自治区', '桂林市', '临桂县', '450322'); +INSERT INTO "public"."cardcodes" VALUES (3784, '广西壮族自治区', '桂林市', '灵川县', '450323'); +INSERT INTO "public"."cardcodes" VALUES (3785, '广西壮族自治区', '桂林市', '全州县', '450324'); +INSERT INTO "public"."cardcodes" VALUES (3786, '广西壮族自治区', '桂林市', '兴安县', '450325'); +INSERT INTO "public"."cardcodes" VALUES (3787, '广西壮族自治区', '桂林市', '永福县', '450326'); +INSERT INTO "public"."cardcodes" VALUES (3788, '广西壮族自治区', '桂林市', '灌阳县', '450327'); +INSERT INTO "public"."cardcodes" VALUES (3789, '广西壮族自治区', '桂林市', '龙胜各族自治县', '450328'); +INSERT INTO "public"."cardcodes" VALUES (3790, '广西壮族自治区', '桂林市', '资源县', '450329'); +INSERT INTO "public"."cardcodes" VALUES (3791, '广西壮族自治区', '桂林市', '平乐县', '450330'); +INSERT INTO "public"."cardcodes" VALUES (3792, '广西壮族自治区', '桂林市', '荔蒲县', '450331'); +INSERT INTO "public"."cardcodes" VALUES (3793, '广西壮族自治区', '桂林市', '恭城瑶族自治县', '450332'); +INSERT INTO "public"."cardcodes" VALUES (3794, '广西壮族自治区', '梧州市', '市辖区', '450401'); +INSERT INTO "public"."cardcodes" VALUES (3795, '广西壮族自治区', '梧州市', '白云区', '450402'); +INSERT INTO "public"."cardcodes" VALUES (3796, '广西壮族自治区', '梧州市', '万秀区', '450403'); +INSERT INTO "public"."cardcodes" VALUES (3797, '广西壮族自治区', '梧州市', '蝶山区', '450404'); +INSERT INTO "public"."cardcodes" VALUES (3798, '广西壮族自治区', '梧州市', '长洲区', '450405'); +INSERT INTO "public"."cardcodes" VALUES (3799, '广西壮族自治区', '梧州市', '市郊区', '450411'); +INSERT INTO "public"."cardcodes" VALUES (3800, '广西壮族自治区', '梧州市', '苍梧县', '450421'); +INSERT INTO "public"."cardcodes" VALUES (3801, '广西壮族自治区', '梧州市', '藤县', '450422'); +INSERT INTO "public"."cardcodes" VALUES (3802, '广西壮族自治区', '梧州市', '蒙山县', '450423'); +INSERT INTO "public"."cardcodes" VALUES (3803, '广西壮族自治区', '梧州市', '岑溪市', '450481'); +INSERT INTO "public"."cardcodes" VALUES (3804, '广西壮族自治区', '北海市', '市辖区', '450501'); +INSERT INTO "public"."cardcodes" VALUES (3805, '广西壮族自治区', '北海市', '海城区', '450502'); +INSERT INTO "public"."cardcodes" VALUES (3806, '广西壮族自治区', '北海市', '银海区', '450503'); +INSERT INTO "public"."cardcodes" VALUES (3807, '广西壮族自治区', '北海市', '铁山港区', '450512'); +INSERT INTO "public"."cardcodes" VALUES (3808, '广西壮族自治区', '北海市', '合浦县', '450521'); +INSERT INTO "public"."cardcodes" VALUES (3809, '广西壮族自治区', '防城港市', '市辖区', '450601'); +INSERT INTO "public"."cardcodes" VALUES (3810, '广西壮族自治区', '防城港市', '港口区', '450602'); +INSERT INTO "public"."cardcodes" VALUES (3811, '广西壮族自治区', '防城港市', '防城区', '450603'); +INSERT INTO "public"."cardcodes" VALUES (3812, '广西壮族自治区', '防城港市', '上思县', '450621'); +INSERT INTO "public"."cardcodes" VALUES (3813, '广西壮族自治区', '防城港市', '东兴市', '450681'); +INSERT INTO "public"."cardcodes" VALUES (3814, '广西壮族自治区', '钦州市', '市辖区', '450701'); +INSERT INTO "public"."cardcodes" VALUES (3815, '广西壮族自治区', '钦州市', '钦南区', '450702'); +INSERT INTO "public"."cardcodes" VALUES (3816, '广西壮族自治区', '钦州市', '钦北区', '450703'); +INSERT INTO "public"."cardcodes" VALUES (3817, '广西壮族自治区', '钦州市', '灵山县', '450721'); +INSERT INTO "public"."cardcodes" VALUES (3818, '广西壮族自治区', '钦州市', '浦北县', '450722'); +INSERT INTO "public"."cardcodes" VALUES (3819, '广西壮族自治区', '贵港市', '市辖区', '450801'); +INSERT INTO "public"."cardcodes" VALUES (3820, '广西壮族自治区', '贵港市', '港北区', '450802'); +INSERT INTO "public"."cardcodes" VALUES (3821, '广西壮族自治区', '贵港市', '港南区', '450803'); +INSERT INTO "public"."cardcodes" VALUES (3822, '广西壮族自治区', '贵港市', '覃塘区', '450804'); +INSERT INTO "public"."cardcodes" VALUES (3823, '广西壮族自治区', '贵港市', '平南县', '450821'); +INSERT INTO "public"."cardcodes" VALUES (3824, '广西壮族自治区', '贵港市', '桂平市', '450881'); +INSERT INTO "public"."cardcodes" VALUES (3825, '广西壮族自治区', '玉林市', '市辖区', '450901'); +INSERT INTO "public"."cardcodes" VALUES (3826, '广西壮族自治区', '玉林市', '玉州区', '450902'); +INSERT INTO "public"."cardcodes" VALUES (3827, '广西壮族自治区', '玉林市', '容县', '450921'); +INSERT INTO "public"."cardcodes" VALUES (3828, '广西壮族自治区', '玉林市', '陆川县', '450922'); +INSERT INTO "public"."cardcodes" VALUES (3829, '广西壮族自治区', '玉林市', '博白县', '450923'); +INSERT INTO "public"."cardcodes" VALUES (3830, '广西壮族自治区', '玉林市', '兴业县', '450924'); +INSERT INTO "public"."cardcodes" VALUES (3831, '广西壮族自治区', '玉林市', '北流市', '450981'); +INSERT INTO "public"."cardcodes" VALUES (3832, '广西壮族自治区', '桂林地区', '临桂县', '452321'); +INSERT INTO "public"."cardcodes" VALUES (3833, '广西壮族自治区', '桂林地区', '灵川县', '452322'); +INSERT INTO "public"."cardcodes" VALUES (3834, '广西壮族自治区', '桂林地区', '全州县', '452323'); +INSERT INTO "public"."cardcodes" VALUES (3835, '广西壮族自治区', '桂林地区', '兴安县', '452324'); +INSERT INTO "public"."cardcodes" VALUES (3836, '广西壮族自治区', '桂林地区', '永福县', '452325'); +INSERT INTO "public"."cardcodes" VALUES (3837, '广西壮族自治区', '桂林地区', '灌阳县', '452327'); +INSERT INTO "public"."cardcodes" VALUES (3838, '广西壮族自治区', '桂林地区', '龙胜各族自治县', '452328'); +INSERT INTO "public"."cardcodes" VALUES (3839, '广西壮族自治区', '桂林地区', '资源县', '452329'); +INSERT INTO "public"."cardcodes" VALUES (3840, '广西壮族自治区', '桂林地区', '平乐县', '452330'); +INSERT INTO "public"."cardcodes" VALUES (3841, '广西壮族自治区', '桂林地区', '荔蒲县', '452331'); +INSERT INTO "public"."cardcodes" VALUES (3842, '广西壮族自治区', '桂林地区', '恭城瑶族自治县', '452332'); +INSERT INTO "public"."cardcodes" VALUES (3843, '广西壮族自治区', '贺州地区', '岑溪市', '452401'); +INSERT INTO "public"."cardcodes" VALUES (3844, '广西壮族自治区', '贺州地区', '贺州市', '452402'); +INSERT INTO "public"."cardcodes" VALUES (3845, '广西壮族自治区', '贺州地区', '岑溪县', '452421'); +INSERT INTO "public"."cardcodes" VALUES (3846, '广西壮族自治区', '贺州地区', '苍梧县', '452422'); +INSERT INTO "public"."cardcodes" VALUES (3847, '广西壮族自治区', '贺州地区', '藤县', '452423'); +INSERT INTO "public"."cardcodes" VALUES (3848, '广西壮族自治区', '贺州地区', '昭平县', '452424'); +INSERT INTO "public"."cardcodes" VALUES (3849, '广西壮族自治区', '贺州地区', '蒙山县', '452425'); +INSERT INTO "public"."cardcodes" VALUES (3850, '广西壮族自治区', '贺州地区', '贺县', '452426'); +INSERT INTO "public"."cardcodes" VALUES (3851, '广西壮族自治区', '贺州地区', '钟山县', '452427'); +INSERT INTO "public"."cardcodes" VALUES (3852, '广西壮族自治区', '贺州地区', '富川瑶族自治县', '452428'); +INSERT INTO "public"."cardcodes" VALUES (3853, '广西壮族自治区', '玉林地区', '玉林市', '452501'); +INSERT INTO "public"."cardcodes" VALUES (3854, '广西壮族自治区', '玉林地区', '贵港市', '452502'); +INSERT INTO "public"."cardcodes" VALUES (3855, '广西壮族自治区', '玉林地区', '北流市', '452503'); +INSERT INTO "public"."cardcodes" VALUES (3856, '广西壮族自治区', '玉林地区', '桂平市', '452504'); +INSERT INTO "public"."cardcodes" VALUES (3857, '广西壮族自治区', '玉林地区', '玉林县', '452521'); +INSERT INTO "public"."cardcodes" VALUES (3858, '广西壮族自治区', '玉林地区', '贵县', '452522'); +INSERT INTO "public"."cardcodes" VALUES (3859, '广西壮族自治区', '玉林地区', '桂平县', '452523'); +INSERT INTO "public"."cardcodes" VALUES (3860, '广西壮族自治区', '玉林地区', '平南县', '452524'); +INSERT INTO "public"."cardcodes" VALUES (3861, '广西壮族自治区', '玉林地区', '容县', '452525'); +INSERT INTO "public"."cardcodes" VALUES (3862, '广西壮族自治区', '玉林地区', '北流县', '452526'); +INSERT INTO "public"."cardcodes" VALUES (3863, '广西壮族自治区', '玉林地区', '陆川县', '452527'); +INSERT INTO "public"."cardcodes" VALUES (3864, '广西壮族自治区', '玉林地区', '博白县', '452528'); +INSERT INTO "public"."cardcodes" VALUES (3865, '广西壮族自治区', '百色地区', '百色市', '452601'); +INSERT INTO "public"."cardcodes" VALUES (3866, '广西壮族自治区', '百色地区', '百色县', '452621'); +INSERT INTO "public"."cardcodes" VALUES (3867, '广西壮族自治区', '百色地区', '田阳县', '452622'); +INSERT INTO "public"."cardcodes" VALUES (3868, '广西壮族自治区', '百色地区', '田东县', '452623'); +INSERT INTO "public"."cardcodes" VALUES (3869, '广西壮族自治区', '百色地区', '平果县', '452624'); +INSERT INTO "public"."cardcodes" VALUES (3870, '广西壮族自治区', '百色地区', '德保县', '452625'); +INSERT INTO "public"."cardcodes" VALUES (3871, '广西壮族自治区', '百色地区', '靖西县', '452626'); +INSERT INTO "public"."cardcodes" VALUES (3872, '广西壮族自治区', '百色地区', '那坡县', '452627'); +INSERT INTO "public"."cardcodes" VALUES (3873, '广西壮族自治区', '百色地区', '凌云县', '452628'); +INSERT INTO "public"."cardcodes" VALUES (3874, '广西壮族自治区', '百色地区', '乐业县', '452629'); +INSERT INTO "public"."cardcodes" VALUES (3875, '广西壮族自治区', '百色地区', '田林县', '452630'); +INSERT INTO "public"."cardcodes" VALUES (3876, '广西壮族自治区', '百色地区', '隆林各族自治县', '452631'); +INSERT INTO "public"."cardcodes" VALUES (3877, '广西壮族自治区', '百色地区', '西林县', '452632'); +INSERT INTO "public"."cardcodes" VALUES (3878, '广西壮族自治区', '河池地区', '河池市', '452701'); +INSERT INTO "public"."cardcodes" VALUES (3879, '广西壮族自治区', '河池地区', '宜州市', '452702'); +INSERT INTO "public"."cardcodes" VALUES (3880, '广西壮族自治区', '河池地区', '河池县', '452721'); +INSERT INTO "public"."cardcodes" VALUES (3881, '广西壮族自治区', '河池地区', '宜山县', '452722'); +INSERT INTO "public"."cardcodes" VALUES (3882, '广西壮族自治区', '河池地区', '罗城仫佬族自治县', '452723'); +INSERT INTO "public"."cardcodes" VALUES (3883, '广西壮族自治区', '河池地区', '环江毛南族自治县', '452724'); +INSERT INTO "public"."cardcodes" VALUES (3884, '广西壮族自治区', '河池地区', '南丹县', '452725'); +INSERT INTO "public"."cardcodes" VALUES (3885, '广西壮族自治区', '河池地区', '天峨县', '452726'); +INSERT INTO "public"."cardcodes" VALUES (3886, '广西壮族自治区', '河池地区', '凤山县', '452727'); +INSERT INTO "public"."cardcodes" VALUES (3887, '广西壮族自治区', '河池地区', '东兰县', '452728'); +INSERT INTO "public"."cardcodes" VALUES (3888, '广西壮族自治区', '河池地区', '巴马瑶族自治县', '452729'); +INSERT INTO "public"."cardcodes" VALUES (3889, '广西壮族自治区', '河池地区', '都安瑶族自治县', '452730'); +INSERT INTO "public"."cardcodes" VALUES (3890, '广西壮族自治区', '河池地区', '大化瑶族自治县', '452731'); +INSERT INTO "public"."cardcodes" VALUES (3891, '广西壮族自治区', '钦州地区', '北海市', '452801'); +INSERT INTO "public"."cardcodes" VALUES (3892, '广西壮族自治区', '钦州地区', '钦州市', '452802'); +INSERT INTO "public"."cardcodes" VALUES (3893, '广西壮族自治区', '钦州地区', '上思县', '452821'); +INSERT INTO "public"."cardcodes" VALUES (3894, '广西壮族自治区', '钦州地区', '防城各族自治县', '452822'); +INSERT INTO "public"."cardcodes" VALUES (3895, '广西壮族自治区', '钦州地区', '钦州县', '452823'); +INSERT INTO "public"."cardcodes" VALUES (3896, '广西壮族自治区', '钦州地区', '灵山县', '452824'); +INSERT INTO "public"."cardcodes" VALUES (3897, '广西壮族自治区', '钦州地区', '合浦县', '452825'); +INSERT INTO "public"."cardcodes" VALUES (3898, '广西壮族自治区', '钦州地区', '浦北县', '452826'); +INSERT INTO "public"."cardcodes" VALUES (3899, '海南省', '海口市', '市辖区', '460101'); +INSERT INTO "public"."cardcodes" VALUES (3900, '海南省', '海口市', '振东区', '460102'); +INSERT INTO "public"."cardcodes" VALUES (3901, '海南省', '海口市', '新华区', '460103'); +INSERT INTO "public"."cardcodes" VALUES (3902, '海南省', '海口市', '秀英区', '460104'); +INSERT INTO "public"."cardcodes" VALUES (3903, '海南省', '海口市', '秀英区', '460105'); +INSERT INTO "public"."cardcodes" VALUES (3904, '海南省', '海口市', '龙华区', '460106'); +INSERT INTO "public"."cardcodes" VALUES (3905, '海南省', '海口市', '琼山区', '460107'); +INSERT INTO "public"."cardcodes" VALUES (3906, '海南省', '海口市', '美兰区', '460108'); +INSERT INTO "public"."cardcodes" VALUES (3907, '海南省', '三亚市', '市辖区', '460201'); +INSERT INTO "public"."cardcodes" VALUES (3908, '海南省', NULL, '陵水黎族自治县', '469034'); +INSERT INTO "public"."cardcodes" VALUES (3909, '海南省', NULL, '保亭黎族苗族自治县', '469035'); +INSERT INTO "public"."cardcodes" VALUES (3910, '海南省', NULL, '琼中黎族苗族自治县', '469036'); +INSERT INTO "public"."cardcodes" VALUES (3911, '海南省', NULL, '西沙群岛', '469037'); +INSERT INTO "public"."cardcodes" VALUES (3912, '海南省', NULL, '南沙群岛', '469038'); +INSERT INTO "public"."cardcodes" VALUES (3913, '海南省', NULL, '中沙群岛的岛礁及其海域', '469039'); +INSERT INTO "public"."cardcodes" VALUES (3914, '海南省', NULL, '通什市', '460001'); +INSERT INTO "public"."cardcodes" VALUES (3915, '海南省', NULL, '琼海市', '460002'); +INSERT INTO "public"."cardcodes" VALUES (3916, '海南省', NULL, '儋州市', '460003'); +INSERT INTO "public"."cardcodes" VALUES (3917, '海南省', NULL, '琼山市', '460004'); +INSERT INTO "public"."cardcodes" VALUES (3918, '海南省', NULL, '文昌市', '460005'); +INSERT INTO "public"."cardcodes" VALUES (3919, '海南省', NULL, '万宁市', '460006'); +INSERT INTO "public"."cardcodes" VALUES (3920, '海南省', NULL, '东方市', '460007'); +INSERT INTO "public"."cardcodes" VALUES (3921, '海南省', NULL, '琼山县', '460021'); +INSERT INTO "public"."cardcodes" VALUES (3922, '海南省', NULL, '文昌县', '460022'); +INSERT INTO "public"."cardcodes" VALUES (3923, '海南省', NULL, '琼海县', '460023'); +INSERT INTO "public"."cardcodes" VALUES (3924, '海南省', NULL, '万宁县', '460024'); +INSERT INTO "public"."cardcodes" VALUES (3925, '海南省', NULL, '定安县', '460025'); +INSERT INTO "public"."cardcodes" VALUES (3926, '海南省', NULL, '屯昌县', '460026'); +INSERT INTO "public"."cardcodes" VALUES (3927, '海南省', NULL, '澄迈县', '460027'); +INSERT INTO "public"."cardcodes" VALUES (3928, '海南省', NULL, '临高县', '460028'); +INSERT INTO "public"."cardcodes" VALUES (3929, '海南省', NULL, '儋县', '460029'); +INSERT INTO "public"."cardcodes" VALUES (3930, '海南省', NULL, '白沙黎族自治县', '460030'); +INSERT INTO "public"."cardcodes" VALUES (3931, '海南省', NULL, '昌江黎族自治县', '460031'); +INSERT INTO "public"."cardcodes" VALUES (3932, '海南省', NULL, '东方黎族自治县', '460032'); +INSERT INTO "public"."cardcodes" VALUES (3933, '海南省', NULL, '乐东黎族自治县', '460033'); +INSERT INTO "public"."cardcodes" VALUES (3934, '海南省', NULL, '陵水黎族自治县', '460034'); +INSERT INTO "public"."cardcodes" VALUES (3935, '海南省', NULL, '保亭黎族苗族自治县', '460035'); +INSERT INTO "public"."cardcodes" VALUES (3936, '海南省', NULL, '琼中黎族苗族自治县', '460036'); +INSERT INTO "public"."cardcodes" VALUES (3937, '海南省', NULL, '西沙群岛', '460037'); +INSERT INTO "public"."cardcodes" VALUES (3938, '海南省', NULL, '南沙群岛', '460038'); +INSERT INTO "public"."cardcodes" VALUES (3939, '海南省', NULL, '中沙群岛的岛礁及其海域', '460039'); +INSERT INTO "public"."cardcodes" VALUES (3940, '海南省', NULL, '五指山市', '469001'); +INSERT INTO "public"."cardcodes" VALUES (3941, '海南省', NULL, '琼海市', '469002'); +INSERT INTO "public"."cardcodes" VALUES (3942, '海南省', NULL, '儋州市', '469003'); +INSERT INTO "public"."cardcodes" VALUES (3943, '海南省', NULL, '文昌市', '469005'); +INSERT INTO "public"."cardcodes" VALUES (3944, '海南省', NULL, '万宁市', '469006'); +INSERT INTO "public"."cardcodes" VALUES (3945, '海南省', NULL, '东方市', '469007'); +INSERT INTO "public"."cardcodes" VALUES (3946, '海南省', NULL, '定安县', '469025'); +INSERT INTO "public"."cardcodes" VALUES (3947, '海南省', NULL, '屯昌县', '469026'); +INSERT INTO "public"."cardcodes" VALUES (3948, '海南省', NULL, '澄迈县', '469027'); +INSERT INTO "public"."cardcodes" VALUES (3949, '海南省', NULL, '临高县', '469028'); +INSERT INTO "public"."cardcodes" VALUES (3950, '海南省', NULL, '白沙黎族自治县', '469030'); +INSERT INTO "public"."cardcodes" VALUES (3951, '海南省', NULL, '昌江黎族自治县', '469031'); +INSERT INTO "public"."cardcodes" VALUES (3952, '海南省', NULL, '乐东黎族自治县', '469033'); +INSERT INTO "public"."cardcodes" VALUES (3953, '重庆市', '市', '江津市', '500381'); +INSERT INTO "public"."cardcodes" VALUES (3954, '重庆市', '市', '合川市', '500382'); +INSERT INTO "public"."cardcodes" VALUES (3955, '重庆市', '市', '永川市', '500383'); +INSERT INTO "public"."cardcodes" VALUES (3956, '重庆市', '市', '南川市', '500384'); +INSERT INTO "public"."cardcodes" VALUES (3957, '重庆市', NULL, '万州区', '500101'); +INSERT INTO "public"."cardcodes" VALUES (3958, '重庆市', NULL, '涪陵区', '500102'); +INSERT INTO "public"."cardcodes" VALUES (3959, '重庆市', NULL, '渝中区', '500103'); +INSERT INTO "public"."cardcodes" VALUES (3960, '重庆市', NULL, '大渡口区', '500104'); +INSERT INTO "public"."cardcodes" VALUES (3961, '重庆市', NULL, '江北区', '500105'); +INSERT INTO "public"."cardcodes" VALUES (3962, '重庆市', NULL, '沙坪坝区', '500106'); +INSERT INTO "public"."cardcodes" VALUES (3963, '重庆市', NULL, '九龙坡区', '500107'); +INSERT INTO "public"."cardcodes" VALUES (3964, '重庆市', NULL, '南岸区', '500108'); +INSERT INTO "public"."cardcodes" VALUES (3965, '重庆市', NULL, '北碚区', '500109'); +INSERT INTO "public"."cardcodes" VALUES (3966, '重庆市', NULL, '万盛区', '500110'); +INSERT INTO "public"."cardcodes" VALUES (3967, '重庆市', NULL, '双桥区', '500111'); +INSERT INTO "public"."cardcodes" VALUES (3968, '重庆市', NULL, '渝北区', '500112'); +INSERT INTO "public"."cardcodes" VALUES (3969, '重庆市', NULL, '巴南区', '500113'); +INSERT INTO "public"."cardcodes" VALUES (3970, '重庆市', NULL, '黔江区', '500114'); +INSERT INTO "public"."cardcodes" VALUES (3971, '重庆市', NULL, '长寿区', '500115'); +INSERT INTO "public"."cardcodes" VALUES (3972, '重庆市', NULL, '渝中区', '500201'); +INSERT INTO "public"."cardcodes" VALUES (3973, '重庆市', NULL, '江北区', '500211'); +INSERT INTO "public"."cardcodes" VALUES (3974, '重庆市', NULL, '沙坪坝区', '500212'); +INSERT INTO "public"."cardcodes" VALUES (3975, '重庆市', NULL, '九龙坡区', '500213'); +INSERT INTO "public"."cardcodes" VALUES (3976, '重庆市', NULL, '南岸区', '500214'); +INSERT INTO "public"."cardcodes" VALUES (3977, '重庆市', NULL, '北碚区', '500215'); +INSERT INTO "public"."cardcodes" VALUES (3978, '重庆市', NULL, '万盛区', '500216'); +INSERT INTO "public"."cardcodes" VALUES (3979, '重庆市', NULL, '双桥区', '500217'); +INSERT INTO "public"."cardcodes" VALUES (3980, '重庆市', NULL, '长寿县', '500221'); +INSERT INTO "public"."cardcodes" VALUES (3981, '重庆市', NULL, '綦江县', '500222'); +INSERT INTO "public"."cardcodes" VALUES (3982, '重庆市', NULL, '潼南县', '500223'); +INSERT INTO "public"."cardcodes" VALUES (3983, '重庆市', NULL, '铜梁县', '500224'); +INSERT INTO "public"."cardcodes" VALUES (3984, '重庆市', NULL, '大足县', '500225'); +INSERT INTO "public"."cardcodes" VALUES (3985, '重庆市', NULL, '荣昌县', '500226'); +INSERT INTO "public"."cardcodes" VALUES (3986, '重庆市', NULL, '璧山县', '500227'); +INSERT INTO "public"."cardcodes" VALUES (3987, '重庆市', NULL, '梁平县', '500228'); +INSERT INTO "public"."cardcodes" VALUES (3988, '重庆市', NULL, '城口县', '500229'); +INSERT INTO "public"."cardcodes" VALUES (3989, '重庆市', NULL, '丰都县', '500230'); +INSERT INTO "public"."cardcodes" VALUES (3990, '重庆市', NULL, '垫江县', '500231'); +INSERT INTO "public"."cardcodes" VALUES (3991, '重庆市', NULL, '武隆县', '500232'); +INSERT INTO "public"."cardcodes" VALUES (3992, '重庆市', NULL, '忠县', '500233'); +INSERT INTO "public"."cardcodes" VALUES (3993, '重庆市', NULL, '开县', '500234'); +INSERT INTO "public"."cardcodes" VALUES (3994, '重庆市', NULL, '云阳县', '500235'); +INSERT INTO "public"."cardcodes" VALUES (3995, '重庆市', NULL, '奉节县', '500236'); +INSERT INTO "public"."cardcodes" VALUES (3996, '重庆市', NULL, '巫山县', '500237'); +INSERT INTO "public"."cardcodes" VALUES (3997, '重庆市', NULL, '巫溪县', '500238'); +INSERT INTO "public"."cardcodes" VALUES (3998, '重庆市', NULL, '黔江土家族苗族自治县', '500239'); +INSERT INTO "public"."cardcodes" VALUES (3999, '重庆市', NULL, '石柱土家族自治县', '500240'); +INSERT INTO "public"."cardcodes" VALUES (4000, '重庆市', NULL, '秀山土家族苗族自治县', '500241'); +INSERT INTO "public"."cardcodes" VALUES (4001, '重庆市', NULL, '酉阳土家族苗族自治县', '500242'); +INSERT INTO "public"."cardcodes" VALUES (4002, '重庆市', NULL, '彭水苗族土家族自治县', '500243'); +INSERT INTO "public"."cardcodes" VALUES (4003, '四川省', '自贡市', '市辖区', '510301'); +INSERT INTO "public"."cardcodes" VALUES (4004, '四川省', '自贡市', '自流井区', '510302'); +INSERT INTO "public"."cardcodes" VALUES (4005, '四川省', '自贡市', '贡井区', '510303'); +INSERT INTO "public"."cardcodes" VALUES (4006, '四川省', '自贡市', '大安区', '510304'); +INSERT INTO "public"."cardcodes" VALUES (4007, '四川省', '自贡市', '沿滩区', '510311'); +INSERT INTO "public"."cardcodes" VALUES (4008, '四川省', '自贡市', '荣县', '510321'); +INSERT INTO "public"."cardcodes" VALUES (4009, '四川省', '自贡市', '富顺县', '510322'); +INSERT INTO "public"."cardcodes" VALUES (4010, '四川省', '攀枝花市', '市辖区', '510401'); +INSERT INTO "public"."cardcodes" VALUES (4011, '四川省', '攀枝花市', '东区', '510402'); +INSERT INTO "public"."cardcodes" VALUES (4012, '四川省', '攀枝花市', '西区', '510403'); +INSERT INTO "public"."cardcodes" VALUES (4013, '四川省', '攀枝花市', '仁和区', '510411'); +INSERT INTO "public"."cardcodes" VALUES (4014, '四川省', '攀枝花市', '米易县', '510421'); +INSERT INTO "public"."cardcodes" VALUES (4015, '四川省', '攀枝花市', '盐边县', '510422'); +INSERT INTO "public"."cardcodes" VALUES (4016, '四川省', '泸州市', '市辖区', '510501'); +INSERT INTO "public"."cardcodes" VALUES (4017, '四川省', '泸州市', '江阳区', '510502'); +INSERT INTO "public"."cardcodes" VALUES (4018, '四川省', '泸州市', '纳溪区', '510503'); +INSERT INTO "public"."cardcodes" VALUES (4019, '四川省', '泸州市', '龙马潭区', '510504'); +INSERT INTO "public"."cardcodes" VALUES (4020, '四川省', '泸州市', '泸县', '510521'); +INSERT INTO "public"."cardcodes" VALUES (4021, '四川省', '泸州市', '合江县', '510522'); +INSERT INTO "public"."cardcodes" VALUES (4022, '四川省', '泸州市', '纳溪县', '510523'); +INSERT INTO "public"."cardcodes" VALUES (4023, '四川省', '泸州市', '叙永县', '510524'); +INSERT INTO "public"."cardcodes" VALUES (4024, '四川省', '泸州市', '古蔺县', '510525'); +INSERT INTO "public"."cardcodes" VALUES (4025, '四川省', '德阳市', '市辖区', '510601'); +INSERT INTO "public"."cardcodes" VALUES (4026, '四川省', '德阳市', '市中区', '510602'); +INSERT INTO "public"."cardcodes" VALUES (4027, '四川省', '德阳市', '旌阳区', '510603'); +INSERT INTO "public"."cardcodes" VALUES (4028, '四川省', '德阳市', '绵竹县', '510622'); +INSERT INTO "public"."cardcodes" VALUES (4029, '四川省', '德阳市', '中江县', '510623'); +INSERT INTO "public"."cardcodes" VALUES (4030, '四川省', '德阳市', '广汉县', '510624'); +INSERT INTO "public"."cardcodes" VALUES (4031, '四川省', '德阳市', '什邡县', '510625'); +INSERT INTO "public"."cardcodes" VALUES (4032, '四川省', '德阳市', '罗江县', '510626'); +INSERT INTO "public"."cardcodes" VALUES (4033, '四川省', '德阳市', '广汉市', '510681'); +INSERT INTO "public"."cardcodes" VALUES (4034, '四川省', '德阳市', '什邡市', '510682'); +INSERT INTO "public"."cardcodes" VALUES (4035, '四川省', '德阳市', '绵竹市', '510683'); +INSERT INTO "public"."cardcodes" VALUES (4036, '四川省', '绵阳市', '市辖区', '510701'); +INSERT INTO "public"."cardcodes" VALUES (4037, '四川省', '绵阳市', '市中区', '510702'); +INSERT INTO "public"."cardcodes" VALUES (4038, '四川省', '绵阳市', '涪城区', '510703'); +INSERT INTO "public"."cardcodes" VALUES (4039, '四川省', '绵阳市', '游仙区', '510704'); +INSERT INTO "public"."cardcodes" VALUES (4040, '四川省', '绵阳市', '江油县', '510721'); +INSERT INTO "public"."cardcodes" VALUES (4041, '四川省', '绵阳市', '三台县', '510722'); +INSERT INTO "public"."cardcodes" VALUES (4042, '四川省', '绵阳市', '盐亭县', '510723'); +INSERT INTO "public"."cardcodes" VALUES (4043, '四川省', '绵阳市', '安县', '510724'); +INSERT INTO "public"."cardcodes" VALUES (4044, '四川省', '绵阳市', '梓潼县', '510725'); +INSERT INTO "public"."cardcodes" VALUES (4045, '四川省', '绵阳市', '北川县', '510726'); +INSERT INTO "public"."cardcodes" VALUES (4046, '四川省', '绵阳市', '平武县', '510727'); +INSERT INTO "public"."cardcodes" VALUES (4047, '四川省', '绵阳市', '江油市', '510781'); +INSERT INTO "public"."cardcodes" VALUES (4048, '四川省', '广元市', '市辖区', '510801'); +INSERT INTO "public"."cardcodes" VALUES (4049, '四川省', '广元市', '市中区', '510802'); +INSERT INTO "public"."cardcodes" VALUES (4050, '四川省', '广元市', '元坝区', '510811'); +INSERT INTO "public"."cardcodes" VALUES (4051, '四川省', '广元市', '朝天区', '510812'); +INSERT INTO "public"."cardcodes" VALUES (4052, '四川省', '广元市', '旺苍县', '510821'); +INSERT INTO "public"."cardcodes" VALUES (4053, '四川省', '广元市', '青川县', '510822'); +INSERT INTO "public"."cardcodes" VALUES (4054, '四川省', '广元市', '剑阁县', '510823'); +INSERT INTO "public"."cardcodes" VALUES (4055, '四川省', '广元市', '苍溪县', '510824'); +INSERT INTO "public"."cardcodes" VALUES (4056, '四川省', '遂宁市', '市辖区', '510901'); +INSERT INTO "public"."cardcodes" VALUES (4057, '四川省', '遂宁市', '市中区', '510902'); +INSERT INTO "public"."cardcodes" VALUES (4058, '四川省', '遂宁市', '船山区', '510903'); +INSERT INTO "public"."cardcodes" VALUES (4059, '四川省', '遂宁市', '安居区', '510904'); +INSERT INTO "public"."cardcodes" VALUES (4060, '四川省', '遂宁市', '蓬溪县', '510921'); +INSERT INTO "public"."cardcodes" VALUES (4061, '四川省', '遂宁市', '射洪县', '510922'); +INSERT INTO "public"."cardcodes" VALUES (4062, '四川省', '遂宁市', '大英县', '510923'); +INSERT INTO "public"."cardcodes" VALUES (4063, '四川省', '内江市', '市辖区', '511001'); +INSERT INTO "public"."cardcodes" VALUES (4064, '四川省', '内江市', '市中区', '511002'); +INSERT INTO "public"."cardcodes" VALUES (4065, '四川省', '内江市', '东兴区', '511011'); +INSERT INTO "public"."cardcodes" VALUES (4066, '四川省', '内江市', '内江县', '511021'); +INSERT INTO "public"."cardcodes" VALUES (4067, '四川省', '内江市', '乐至县', '511022'); +INSERT INTO "public"."cardcodes" VALUES (4068, '四川省', '内江市', '安岳县', '511023'); +INSERT INTO "public"."cardcodes" VALUES (4069, '四川省', '内江市', '威远县', '511024'); +INSERT INTO "public"."cardcodes" VALUES (4070, '四川省', '内江市', '资中县', '511025'); +INSERT INTO "public"."cardcodes" VALUES (4071, '四川省', '内江市', '资阳市', '511026'); +INSERT INTO "public"."cardcodes" VALUES (4072, '四川省', '内江市', '简阳县', '511027'); +INSERT INTO "public"."cardcodes" VALUES (4073, '四川省', '内江市', '隆昌县', '511028'); +INSERT INTO "public"."cardcodes" VALUES (4074, '四川省', '内江市', '资阳市', '511081'); +INSERT INTO "public"."cardcodes" VALUES (4075, '四川省', '万县地区', '奉节县', '512226'); +INSERT INTO "public"."cardcodes" VALUES (4076, '四川省', '万县地区', '巫山县', '512227'); +INSERT INTO "public"."cardcodes" VALUES (4077, '四川省', '万县地区', '巫溪县', '512228'); +INSERT INTO "public"."cardcodes" VALUES (4078, '四川省', '万县地区', '城口县', '512229'); +INSERT INTO "public"."cardcodes" VALUES (4079, '四川省', '万县地区', '万县市', '512201'); +INSERT INTO "public"."cardcodes" VALUES (4080, '四川省', '万县地区', '万县', '512221'); +INSERT INTO "public"."cardcodes" VALUES (4081, '四川省', '万县地区', '开县', '512222'); +INSERT INTO "public"."cardcodes" VALUES (4082, '四川省', '万县地区', '忠县', '512223'); +INSERT INTO "public"."cardcodes" VALUES (4083, '四川省', '万县地区', '梁平县', '512224'); +INSERT INTO "public"."cardcodes" VALUES (4084, '四川省', '万县地区', '云阳县', '512225'); +INSERT INTO "public"."cardcodes" VALUES (4085, '四川省', '涪陵地区', '涪陵市', '512301'); +INSERT INTO "public"."cardcodes" VALUES (4086, '四川省', '涪陵地区', '南川市', '512302'); +INSERT INTO "public"."cardcodes" VALUES (4087, '四川省', '涪陵地区', '涪陵县', '512321'); +INSERT INTO "public"."cardcodes" VALUES (4088, '四川省', '涪陵地区', '垫江县', '512322'); +INSERT INTO "public"."cardcodes" VALUES (4089, '四川省', '涪陵地区', '南川县', '512323'); +INSERT INTO "public"."cardcodes" VALUES (4090, '四川省', '涪陵地区', '丰都县', '512324'); +INSERT INTO "public"."cardcodes" VALUES (4091, '四川省', '涪陵地区', '石柱县', '512325'); +INSERT INTO "public"."cardcodes" VALUES (4092, '四川省', '涪陵地区', '武隆县', '512326'); +INSERT INTO "public"."cardcodes" VALUES (4093, '四川省', '涪陵地区', '彭水县', '512327'); +INSERT INTO "public"."cardcodes" VALUES (4094, '四川省', '涪陵地区', '黔江县', '512328'); +INSERT INTO "public"."cardcodes" VALUES (4095, '四川省', '涪陵地区', '酉阳县', '512329'); +INSERT INTO "public"."cardcodes" VALUES (4096, '四川省', '涪陵地区', '秀山县', '512330'); +INSERT INTO "public"."cardcodes" VALUES (4097, '四川省', '宜宾地区', '宜宾市', '512501'); +INSERT INTO "public"."cardcodes" VALUES (4098, '四川省', '宜宾地区', '宜宾县', '512527'); +INSERT INTO "public"."cardcodes" VALUES (4099, '四川省', '宜宾地区', '南溪县', '512528'); +INSERT INTO "public"."cardcodes" VALUES (4100, '四川省', '宜宾地区', '江安县', '512529'); +INSERT INTO "public"."cardcodes" VALUES (4101, '四川省', '宜宾地区', '长宁县', '512530'); +INSERT INTO "public"."cardcodes" VALUES (4102, '四川省', '宜宾地区', '高县', '512531'); +INSERT INTO "public"."cardcodes" VALUES (4103, '四川省', '宜宾地区', '筠连县', '512532'); +INSERT INTO "public"."cardcodes" VALUES (4104, '四川省', '宜宾地区', '珙县', '512533'); +INSERT INTO "public"."cardcodes" VALUES (4105, '四川省', '宜宾地区', '兴文县', '512534'); +INSERT INTO "public"."cardcodes" VALUES (4106, '四川省', '宜宾地区', '屏山县', '512535'); +INSERT INTO "public"."cardcodes" VALUES (4107, '四川省', '南充地区', '南充市', '512901'); +INSERT INTO "public"."cardcodes" VALUES (4108, '四川省', '南充地区', '华蓥市', '512902'); +INSERT INTO "public"."cardcodes" VALUES (4109, '四川省', '南充地区', '阆中市', '512903'); +INSERT INTO "public"."cardcodes" VALUES (4110, '四川省', '南充地区', '南充县', '512921'); +INSERT INTO "public"."cardcodes" VALUES (4111, '四川省', '南充地区', '南部县', '512922'); +INSERT INTO "public"."cardcodes" VALUES (4112, '四川省', '南充地区', '岳池县', '512923'); +INSERT INTO "public"."cardcodes" VALUES (4113, '四川省', '南充地区', '营山县', '512924'); +INSERT INTO "public"."cardcodes" VALUES (4114, '四川省', '南充地区', '广安县', '512925'); +INSERT INTO "public"."cardcodes" VALUES (4115, '四川省', '南充地区', '蓬安县', '512926'); +INSERT INTO "public"."cardcodes" VALUES (4116, '四川省', '南充地区', '仪陇县', '512927'); +INSERT INTO "public"."cardcodes" VALUES (4117, '四川省', '南充地区', '武胜县', '512928'); +INSERT INTO "public"."cardcodes" VALUES (4118, '四川省', '南充地区', '西充县', '512929'); +INSERT INTO "public"."cardcodes" VALUES (4119, '四川省', '南充地区', '阆中县', '512930'); +INSERT INTO "public"."cardcodes" VALUES (4120, '四川省', '南充地区', '苍溪县', '512931'); +INSERT INTO "public"."cardcodes" VALUES (4121, '四川省', '南充地区', '华云工农区', '512932'); +INSERT INTO "public"."cardcodes" VALUES (4122, '四川省', '达川地区', '达川市', '513001'); +INSERT INTO "public"."cardcodes" VALUES (4123, '四川省', '达川地区', '万源市', '513002'); +INSERT INTO "public"."cardcodes" VALUES (4124, '四川省', '达川地区', '达县', '513021'); +INSERT INTO "public"."cardcodes" VALUES (4125, '四川省', '达川地区', '宣汉县', '513022'); +INSERT INTO "public"."cardcodes" VALUES (4126, '四川省', '达川地区', '开江县', '513023'); +INSERT INTO "public"."cardcodes" VALUES (4127, '四川省', '达川地区', '万源县', '513024'); +INSERT INTO "public"."cardcodes" VALUES (4128, '四川省', '达川地区', '通江县', '513025'); +INSERT INTO "public"."cardcodes" VALUES (4129, '四川省', '达川地区', '南江县', '513026'); +INSERT INTO "public"."cardcodes" VALUES (4130, '四川省', '达川地区', '巴中县', '513027'); +INSERT INTO "public"."cardcodes" VALUES (4131, '四川省', '达川地区', '平昌县', '513028'); +INSERT INTO "public"."cardcodes" VALUES (4132, '四川省', '达川地区', '大竹县', '513029'); +INSERT INTO "public"."cardcodes" VALUES (4133, '四川省', '达川地区', '渠县', '513030'); +INSERT INTO "public"."cardcodes" VALUES (4134, '四川省', '达川地区', '邻水县', '513031'); +INSERT INTO "public"."cardcodes" VALUES (4135, '四川省', '达川地区', '白沙工农区', '513032'); +INSERT INTO "public"."cardcodes" VALUES (4136, '四川省', '雅安地区', '雅安市', '513101'); +INSERT INTO "public"."cardcodes" VALUES (4137, '四川省', '雅安地区', '名山县', '513122'); +INSERT INTO "public"."cardcodes" VALUES (4138, '四川省', '雅安地区', '荥经县', '513123'); +INSERT INTO "public"."cardcodes" VALUES (4139, '四川省', '雅安地区', '汉源县', '513124'); +INSERT INTO "public"."cardcodes" VALUES (4140, '四川省', '雅安地区', '石棉县', '513125'); +INSERT INTO "public"."cardcodes" VALUES (4141, '四川省', '雅安地区', '天全县', '513126'); +INSERT INTO "public"."cardcodes" VALUES (4142, '四川省', '雅安地区', '芦山县', '513127'); +INSERT INTO "public"."cardcodes" VALUES (4143, '四川省', '雅安地区', '宝兴县', '513128'); +INSERT INTO "public"."cardcodes" VALUES (4144, '四川省', '阿坝藏族羌族自治州', '汶川县', '513221'); +INSERT INTO "public"."cardcodes" VALUES (4145, '四川省', '阿坝藏族羌族自治州', '理县', '513222'); +INSERT INTO "public"."cardcodes" VALUES (4146, '四川省', '阿坝藏族羌族自治州', '茂县', '513223'); +INSERT INTO "public"."cardcodes" VALUES (4147, '四川省', '阿坝藏族羌族自治州', '松潘县', '513224'); +INSERT INTO "public"."cardcodes" VALUES (4148, '四川省', '阿坝藏族羌族自治州', '九寨沟县', '513225'); +INSERT INTO "public"."cardcodes" VALUES (4149, '四川省', '阿坝藏族羌族自治州', '金川县', '513226'); +INSERT INTO "public"."cardcodes" VALUES (4150, '四川省', '阿坝藏族羌族自治州', '小金县', '513227'); +INSERT INTO "public"."cardcodes" VALUES (4151, '四川省', '阿坝藏族羌族自治州', '黑水县', '513228'); +INSERT INTO "public"."cardcodes" VALUES (4152, '四川省', '阿坝藏族羌族自治州', '马尔康县', '513229'); +INSERT INTO "public"."cardcodes" VALUES (4153, '四川省', '阿坝藏族羌族自治州', '壤塘县', '513230'); +INSERT INTO "public"."cardcodes" VALUES (4154, '四川省', '阿坝藏族羌族自治州', '阿坝县', '513231'); +INSERT INTO "public"."cardcodes" VALUES (4155, '四川省', '阿坝藏族羌族自治州', '若尔盖县', '513232'); +INSERT INTO "public"."cardcodes" VALUES (4156, '四川省', '阿坝藏族羌族自治州', '红原县', '513233'); +INSERT INTO "public"."cardcodes" VALUES (4157, '四川省', '甘孜藏族自治州', '康定县', '513321'); +INSERT INTO "public"."cardcodes" VALUES (4158, '四川省', '甘孜藏族自治州', '泸定县', '513322'); +INSERT INTO "public"."cardcodes" VALUES (4159, '四川省', '甘孜藏族自治州', '丹巴县', '513323'); +INSERT INTO "public"."cardcodes" VALUES (4160, '四川省', '甘孜藏族自治州', '九龙县', '513324'); +INSERT INTO "public"."cardcodes" VALUES (4161, '四川省', '甘孜藏族自治州', '雅江县', '513325'); +INSERT INTO "public"."cardcodes" VALUES (4162, '四川省', '甘孜藏族自治州', '道孚县', '513326'); +INSERT INTO "public"."cardcodes" VALUES (4163, '四川省', '甘孜藏族自治州', '炉霍县', '513327'); +INSERT INTO "public"."cardcodes" VALUES (4164, '四川省', '甘孜藏族自治州', '甘孜县', '513328'); +INSERT INTO "public"."cardcodes" VALUES (4165, '四川省', '甘孜藏族自治州', '新龙县', '513329'); +INSERT INTO "public"."cardcodes" VALUES (4166, '四川省', '甘孜藏族自治州', '德格县', '513330'); +INSERT INTO "public"."cardcodes" VALUES (4167, '四川省', '甘孜藏族自治州', '白玉县', '513331'); +INSERT INTO "public"."cardcodes" VALUES (4168, '四川省', '甘孜藏族自治州', '石渠县', '513332'); +INSERT INTO "public"."cardcodes" VALUES (4169, '四川省', '甘孜藏族自治州', '色达县', '513333'); +INSERT INTO "public"."cardcodes" VALUES (4170, '四川省', '甘孜藏族自治州', '理塘县', '513334'); +INSERT INTO "public"."cardcodes" VALUES (4171, '四川省', '甘孜藏族自治州', '巴塘县', '513335'); +INSERT INTO "public"."cardcodes" VALUES (4172, '四川省', '甘孜藏族自治州', '乡城县', '513336'); +INSERT INTO "public"."cardcodes" VALUES (4173, '四川省', '甘孜藏族自治州', '稻城县', '513337'); +INSERT INTO "public"."cardcodes" VALUES (4174, '四川省', '甘孜藏族自治州', '得荣县', '513338'); +INSERT INTO "public"."cardcodes" VALUES (4175, '四川省', '凉山彝族自治州', '西昌市', '513401'); +INSERT INTO "public"."cardcodes" VALUES (4176, '四川省', '凉山彝族自治州', '木里藏族自治县', '513422'); +INSERT INTO "public"."cardcodes" VALUES (4177, '四川省', '凉山彝族自治州', '盐源县', '513423'); +INSERT INTO "public"."cardcodes" VALUES (4178, '四川省', '凉山彝族自治州', '德昌县', '513424'); +INSERT INTO "public"."cardcodes" VALUES (4179, '四川省', '凉山彝族自治州', '会理县', '513425'); +INSERT INTO "public"."cardcodes" VALUES (4180, '四川省', '凉山彝族自治州', '会东县', '513426'); +INSERT INTO "public"."cardcodes" VALUES (4181, '四川省', '凉山彝族自治州', '宁南县', '513427'); +INSERT INTO "public"."cardcodes" VALUES (4182, '四川省', '凉山彝族自治州', '普格县', '513428'); +INSERT INTO "public"."cardcodes" VALUES (4183, '四川省', '凉山彝族自治州', '布拖县', '513429'); +INSERT INTO "public"."cardcodes" VALUES (4184, '四川省', '凉山彝族自治州', '金阳县', '513430'); +INSERT INTO "public"."cardcodes" VALUES (4185, '四川省', '凉山彝族自治州', '昭觉县', '513431'); +INSERT INTO "public"."cardcodes" VALUES (4186, '四川省', '凉山彝族自治州', '喜德县', '513432'); +INSERT INTO "public"."cardcodes" VALUES (4187, '四川省', '凉山彝族自治州', '冕宁县', '513433'); +INSERT INTO "public"."cardcodes" VALUES (4188, '四川省', '凉山彝族自治州', '越西县', '513434'); +INSERT INTO "public"."cardcodes" VALUES (4189, '四川省', '凉山彝族自治州', '甘洛县', '513435'); +INSERT INTO "public"."cardcodes" VALUES (4190, '四川省', '凉山彝族自治州', '美姑县', '513436'); +INSERT INTO "public"."cardcodes" VALUES (4191, '四川省', '凉山彝族自治州', '雷波县', '513437'); +INSERT INTO "public"."cardcodes" VALUES (4192, '四川省', '成都市', '市辖区', '510101'); +INSERT INTO "public"."cardcodes" VALUES (4193, '四川省', '成都市', '东城区', '510102'); +INSERT INTO "public"."cardcodes" VALUES (4194, '四川省', '成都市', '西城区', '510103'); +INSERT INTO "public"."cardcodes" VALUES (4195, '四川省', '成都市', '锦江区', '510104'); +INSERT INTO "public"."cardcodes" VALUES (4196, '四川省', '成都市', '青羊区', '510105'); +INSERT INTO "public"."cardcodes" VALUES (4197, '四川省', '成都市', '金牛区', '510106'); +INSERT INTO "public"."cardcodes" VALUES (4198, '四川省', '成都市', '武侯区', '510107'); +INSERT INTO "public"."cardcodes" VALUES (4199, '四川省', '成都市', '成华区', '510108'); +INSERT INTO "public"."cardcodes" VALUES (4200, '四川省', '成都市', '金牛区', '510111'); +INSERT INTO "public"."cardcodes" VALUES (4201, '四川省', '成都市', '龙泉驿区', '510112'); +INSERT INTO "public"."cardcodes" VALUES (4202, '四川省', '成都市', '青白江区', '510113'); +INSERT INTO "public"."cardcodes" VALUES (4203, '四川省', '成都市', '新都区', '510114'); +INSERT INTO "public"."cardcodes" VALUES (4204, '四川省', '成都市', '市区', '510120'); +INSERT INTO "public"."cardcodes" VALUES (4205, '四川省', '成都市', '金堂县', '510121'); +INSERT INTO "public"."cardcodes" VALUES (4206, '四川省', '成都市', '双流县', '510122'); +INSERT INTO "public"."cardcodes" VALUES (4207, '四川省', '成都市', '温江县', '510123'); +INSERT INTO "public"."cardcodes" VALUES (4208, '四川省', '成都市', '郫县', '510124'); +INSERT INTO "public"."cardcodes" VALUES (4209, '四川省', '成都市', '新都县', '510125'); +INSERT INTO "public"."cardcodes" VALUES (4210, '四川省', '成都市', '彭县', '510126'); +INSERT INTO "public"."cardcodes" VALUES (4211, '四川省', '成都市', '灌县', '510127'); +INSERT INTO "public"."cardcodes" VALUES (4212, '四川省', '成都市', '崇庆县', '510128'); +INSERT INTO "public"."cardcodes" VALUES (4213, '四川省', '成都市', '大邑县', '510129'); +INSERT INTO "public"."cardcodes" VALUES (4214, '四川省', '成都市', '邛崃县', '510130'); +INSERT INTO "public"."cardcodes" VALUES (4215, '四川省', '成都市', '蒲江县', '510131'); +INSERT INTO "public"."cardcodes" VALUES (4216, '四川省', '成都市', '新津县', '510132'); +INSERT INTO "public"."cardcodes" VALUES (4217, '四川省', '成都市', '都江堰市', '510181'); +INSERT INTO "public"."cardcodes" VALUES (4218, '四川省', '成都市', '彭州市', '510182'); +INSERT INTO "public"."cardcodes" VALUES (4219, '四川省', '成都市', '邛崃市', '510183'); +INSERT INTO "public"."cardcodes" VALUES (4220, '四川省', '成都市', '崇州市', '510184'); +INSERT INTO "public"."cardcodes" VALUES (4221, '四川省', '重庆市', '市辖区', '510201'); +INSERT INTO "public"."cardcodes" VALUES (4222, '四川省', '重庆市', '市中区', '510202'); +INSERT INTO "public"."cardcodes" VALUES (4223, '四川省', '重庆市', '大渡口区', '510203'); +INSERT INTO "public"."cardcodes" VALUES (4224, '四川省', '重庆市', '江北区', '510211'); +INSERT INTO "public"."cardcodes" VALUES (4225, '四川省', '重庆市', '沙坪坝区', '510212'); +INSERT INTO "public"."cardcodes" VALUES (4226, '四川省', '重庆市', '九龙坡区', '510213'); +INSERT INTO "public"."cardcodes" VALUES (4227, '四川省', '重庆市', '南岸区', '510214'); +INSERT INTO "public"."cardcodes" VALUES (4228, '四川省', '重庆市', '北碚区', '510215'); +INSERT INTO "public"."cardcodes" VALUES (4229, '四川省', '重庆市', '万盛区', '510216'); +INSERT INTO "public"."cardcodes" VALUES (4230, '四川省', '重庆市', '双桥区', '510217'); +INSERT INTO "public"."cardcodes" VALUES (4231, '四川省', '重庆市', '渝北区', '510218'); +INSERT INTO "public"."cardcodes" VALUES (4232, '四川省', '重庆市', '巴南区', '510219'); +INSERT INTO "public"."cardcodes" VALUES (4233, '四川省', '重庆市', '市区', '510220'); +INSERT INTO "public"."cardcodes" VALUES (4234, '四川省', '重庆市', '长寿县', '510221'); +INSERT INTO "public"."cardcodes" VALUES (4235, '四川省', '重庆市', '巴县', '510222'); +INSERT INTO "public"."cardcodes" VALUES (4236, '四川省', '重庆市', '綦江县', '510223'); +INSERT INTO "public"."cardcodes" VALUES (4237, '四川省', '重庆市', '江北县', '510224'); +INSERT INTO "public"."cardcodes" VALUES (4238, '四川省', '重庆市', '江津县', '510225'); +INSERT INTO "public"."cardcodes" VALUES (4239, '四川省', '重庆市', '合川县', '510226'); +INSERT INTO "public"."cardcodes" VALUES (4240, '四川省', '重庆市', '潼南县', '510227'); +INSERT INTO "public"."cardcodes" VALUES (4241, '四川省', '重庆市', '铜梁县', '510228'); +INSERT INTO "public"."cardcodes" VALUES (4242, '四川省', '重庆市', '永川县', '510229'); +INSERT INTO "public"."cardcodes" VALUES (4243, '四川省', '重庆市', '大足县', '510230'); +INSERT INTO "public"."cardcodes" VALUES (4244, '四川省', '重庆市', '北碚区', '510231'); +INSERT INTO "public"."cardcodes" VALUES (4245, '四川省', '重庆市', '璧山县', '510232'); +INSERT INTO "public"."cardcodes" VALUES (4246, '四川省', '重庆市', '永川市', '510281'); +INSERT INTO "public"."cardcodes" VALUES (4247, '四川省', '重庆市', '江津市', '510282'); +INSERT INTO "public"."cardcodes" VALUES (4248, '四川省', '重庆市', '合川市', '510283'); +INSERT INTO "public"."cardcodes" VALUES (4249, '四川省', '乐山市', '市辖区', '511101'); +INSERT INTO "public"."cardcodes" VALUES (4250, '四川省', '乐山市', '市中区', '511102'); +INSERT INTO "public"."cardcodes" VALUES (4251, '四川省', '乐山市', '沙湾区', '511111'); +INSERT INTO "public"."cardcodes" VALUES (4252, '四川省', '乐山市', '五通桥区', '511112'); +INSERT INTO "public"."cardcodes" VALUES (4253, '四川省', '乐山市', '金口河区', '511113'); +INSERT INTO "public"."cardcodes" VALUES (4254, '四川省', '乐山市', '仁寿县', '511121'); +INSERT INTO "public"."cardcodes" VALUES (4255, '四川省', '乐山市', '眉山县', '511122'); +INSERT INTO "public"."cardcodes" VALUES (4256, '四川省', '乐山市', '犍为县', '511123'); +INSERT INTO "public"."cardcodes" VALUES (4257, '四川省', '乐山市', '井研县', '511124'); +INSERT INTO "public"."cardcodes" VALUES (4258, '四川省', '乐山市', '峨眉县', '511125'); +INSERT INTO "public"."cardcodes" VALUES (4259, '四川省', '乐山市', '夹江县', '511126'); +INSERT INTO "public"."cardcodes" VALUES (4260, '四川省', '乐山市', '洪雅县', '511127'); +INSERT INTO "public"."cardcodes" VALUES (4261, '四川省', '乐山市', '彭山县', '511128'); +INSERT INTO "public"."cardcodes" VALUES (4262, '四川省', '乐山市', '沐川县', '511129'); +INSERT INTO "public"."cardcodes" VALUES (4263, '四川省', '乐山市', '青神县', '511130'); +INSERT INTO "public"."cardcodes" VALUES (4264, '四川省', '乐山市', '丹棱县', '511131'); +INSERT INTO "public"."cardcodes" VALUES (4265, '四川省', '乐山市', '峨边彝族自治县', '511132'); +INSERT INTO "public"."cardcodes" VALUES (4266, '四川省', '乐山市', '马边彝族自治县', '511133'); +INSERT INTO "public"."cardcodes" VALUES (4267, '四川省', '乐山市', '峨眉山市', '511181'); +INSERT INTO "public"."cardcodes" VALUES (4268, '四川省', '万县市', '市辖区', '511201'); +INSERT INTO "public"."cardcodes" VALUES (4269, '四川省', '万县市', '龙宝区', '511202'); +INSERT INTO "public"."cardcodes" VALUES (4270, '四川省', '万县市', '天成区', '511203'); +INSERT INTO "public"."cardcodes" VALUES (4271, '四川省', '万县市', '五桥区', '511204'); +INSERT INTO "public"."cardcodes" VALUES (4272, '四川省', '万县市', '开县', '511221'); +INSERT INTO "public"."cardcodes" VALUES (4273, '四川省', '万县市', '忠县', '511222'); +INSERT INTO "public"."cardcodes" VALUES (4274, '四川省', '万县市', '梁平县', '511223'); +INSERT INTO "public"."cardcodes" VALUES (4275, '四川省', '万县市', '云阳县', '511224'); +INSERT INTO "public"."cardcodes" VALUES (4276, '四川省', '万县市', '奉节县', '511225'); +INSERT INTO "public"."cardcodes" VALUES (4277, '四川省', '万县市', '巫山县', '511226'); +INSERT INTO "public"."cardcodes" VALUES (4278, '四川省', '万县市', '巫溪县', '511227'); +INSERT INTO "public"."cardcodes" VALUES (4279, '四川省', '万县市', '城口县', '511228'); +INSERT INTO "public"."cardcodes" VALUES (4280, '四川省', '南充市', '市辖区', '511301'); +INSERT INTO "public"."cardcodes" VALUES (4281, '四川省', '南充市', '顺庆区', '511302'); +INSERT INTO "public"."cardcodes" VALUES (4282, '四川省', '南充市', '高坪区', '511303'); +INSERT INTO "public"."cardcodes" VALUES (4283, '四川省', '南充市', '嘉陵区', '511304'); +INSERT INTO "public"."cardcodes" VALUES (4284, '四川省', '南充市', '南部县', '511321'); +INSERT INTO "public"."cardcodes" VALUES (4285, '四川省', '南充市', '营山县', '511322'); +INSERT INTO "public"."cardcodes" VALUES (4286, '四川省', '南充市', '蓬安县', '511323'); +INSERT INTO "public"."cardcodes" VALUES (4287, '四川省', '南充市', '仪陇县', '511324'); +INSERT INTO "public"."cardcodes" VALUES (4288, '四川省', '南充市', '西充县', '511325'); +INSERT INTO "public"."cardcodes" VALUES (4289, '四川省', '南充市', '阆中市', '511381'); +INSERT INTO "public"."cardcodes" VALUES (4290, '四川省', '眉山市', '市辖区', '511401'); +INSERT INTO "public"."cardcodes" VALUES (4291, '四川省', '眉山市', '东坡区', '511402'); +INSERT INTO "public"."cardcodes" VALUES (4292, '四川省', '眉山市', '仁寿县', '511421'); +INSERT INTO "public"."cardcodes" VALUES (4293, '四川省', '眉山市', '彭山县', '511422'); +INSERT INTO "public"."cardcodes" VALUES (4294, '四川省', '眉山市', '洪雅县', '511423'); +INSERT INTO "public"."cardcodes" VALUES (4295, '四川省', '眉山市', '丹棱县', '511424'); +INSERT INTO "public"."cardcodes" VALUES (4296, '四川省', '眉山市', '青神县', '511425'); +INSERT INTO "public"."cardcodes" VALUES (4297, '四川省', '宜宾市', '市辖区', '511501'); +INSERT INTO "public"."cardcodes" VALUES (4298, '四川省', '宜宾市', '翠屏区', '511502'); +INSERT INTO "public"."cardcodes" VALUES (4299, '四川省', '宜宾市', '宜宾县', '511521'); +INSERT INTO "public"."cardcodes" VALUES (4300, '四川省', '宜宾市', '南溪县', '511522'); +INSERT INTO "public"."cardcodes" VALUES (4301, '四川省', '宜宾市', '江安县', '511523'); +INSERT INTO "public"."cardcodes" VALUES (4302, '四川省', '宜宾市', '长宁县', '511524'); +INSERT INTO "public"."cardcodes" VALUES (4303, '四川省', '宜宾市', '高县', '511525'); +INSERT INTO "public"."cardcodes" VALUES (4304, '四川省', '宜宾市', '珙县', '511526'); +INSERT INTO "public"."cardcodes" VALUES (4305, '四川省', '宜宾市', '筠连县', '511527'); +INSERT INTO "public"."cardcodes" VALUES (4306, '四川省', '宜宾市', '兴文县', '511528'); +INSERT INTO "public"."cardcodes" VALUES (4307, '四川省', '宜宾市', '屏山县', '511529'); +INSERT INTO "public"."cardcodes" VALUES (4308, '四川省', '广安市', '市辖区', '511601'); +INSERT INTO "public"."cardcodes" VALUES (4309, '四川省', '广安市', '广安区', '511602'); +INSERT INTO "public"."cardcodes" VALUES (4310, '四川省', '广安市', '岳池县', '511621'); +INSERT INTO "public"."cardcodes" VALUES (4311, '四川省', '广安市', '武胜县', '511622'); +INSERT INTO "public"."cardcodes" VALUES (4312, '四川省', '广安市', '邻水县', '511623'); +INSERT INTO "public"."cardcodes" VALUES (4313, '四川省', '广安市', '华蓥市', '511681'); +INSERT INTO "public"."cardcodes" VALUES (4314, '四川省', '达州市', '市辖区', '511701'); +INSERT INTO "public"."cardcodes" VALUES (4315, '四川省', '达州市', '通川区', '511702'); +INSERT INTO "public"."cardcodes" VALUES (4316, '四川省', '达州市', '达县', '511721'); +INSERT INTO "public"."cardcodes" VALUES (4317, '四川省', '达州市', '宣汉县', '511722'); +INSERT INTO "public"."cardcodes" VALUES (4318, '四川省', '达州市', '开江县', '511723'); +INSERT INTO "public"."cardcodes" VALUES (4319, '四川省', '达州市', '大竹县', '511724'); +INSERT INTO "public"."cardcodes" VALUES (4320, '四川省', '达州市', '渠县', '511725'); +INSERT INTO "public"."cardcodes" VALUES (4321, '四川省', '达州市', '万源市', '511781'); +INSERT INTO "public"."cardcodes" VALUES (4322, '四川省', '雅安市', '市辖区', '511801'); +INSERT INTO "public"."cardcodes" VALUES (4323, '四川省', '雅安市', '雨城区', '511802'); +INSERT INTO "public"."cardcodes" VALUES (4324, '四川省', '雅安市', '名山县', '511821'); +INSERT INTO "public"."cardcodes" VALUES (4325, '四川省', '雅安市', '荥经县', '511822'); +INSERT INTO "public"."cardcodes" VALUES (4326, '四川省', '雅安市', '汉源县', '511823'); +INSERT INTO "public"."cardcodes" VALUES (4327, '四川省', '雅安市', '石棉县', '511824'); +INSERT INTO "public"."cardcodes" VALUES (4328, '四川省', '雅安市', '天全县', '511825'); +INSERT INTO "public"."cardcodes" VALUES (4329, '四川省', '雅安市', '芦山县', '511826'); +INSERT INTO "public"."cardcodes" VALUES (4330, '四川省', '雅安市', '宝兴县', '511827'); +INSERT INTO "public"."cardcodes" VALUES (4331, '四川省', '巴中市', '市辖区', '511901'); +INSERT INTO "public"."cardcodes" VALUES (4332, '四川省', '巴中市', '巴州区', '511902'); +INSERT INTO "public"."cardcodes" VALUES (4333, '四川省', '巴中市', '通江县', '511921'); +INSERT INTO "public"."cardcodes" VALUES (4334, '四川省', '巴中市', '南江县', '511922'); +INSERT INTO "public"."cardcodes" VALUES (4335, '四川省', '巴中市', '平昌县', '511923'); +INSERT INTO "public"."cardcodes" VALUES (4336, '四川省', '资阳市', '市辖区', '512001'); +INSERT INTO "public"."cardcodes" VALUES (4337, '四川省', '资阳市', '雁江区', '512002'); +INSERT INTO "public"."cardcodes" VALUES (4338, '四川省', '资阳市', '安岳县', '512021'); +INSERT INTO "public"."cardcodes" VALUES (4339, '四川省', '资阳市', '乐至县', '512022'); +INSERT INTO "public"."cardcodes" VALUES (4340, '四川省', '资阳市', '简阳市', '512081'); +INSERT INTO "public"."cardcodes" VALUES (4341, '四川省', '黔江地区', '石柱土家族自治县', '513521'); +INSERT INTO "public"."cardcodes" VALUES (4342, '四川省', '黔江地区', '秀山土家族苗族自治县', '513522'); +INSERT INTO "public"."cardcodes" VALUES (4343, '四川省', '黔江地区', '黔江土家族苗族自治县', '513523'); +INSERT INTO "public"."cardcodes" VALUES (4344, '四川省', '黔江地区', '酉阳土家族苗族自治县', '513524'); +INSERT INTO "public"."cardcodes" VALUES (4345, '四川省', '广安市', '华蓥市', '513601'); +INSERT INTO "public"."cardcodes" VALUES (4346, '四川省', '广安市', '岳池县', '513621'); +INSERT INTO "public"."cardcodes" VALUES (4347, '四川省', '广安市', '广安县', '513622'); +INSERT INTO "public"."cardcodes" VALUES (4348, '四川省', '广安市', '武胜县', '513623'); +INSERT INTO "public"."cardcodes" VALUES (4349, '四川省', '广安市', '邻水县', '513624'); +INSERT INTO "public"."cardcodes" VALUES (4350, '四川省', '巴中地区', '巴中市', '513701'); +INSERT INTO "public"."cardcodes" VALUES (4351, '四川省', '巴中地区', '通江县', '513721'); +INSERT INTO "public"."cardcodes" VALUES (4352, '四川省', '巴中地区', '南江县', '513722'); +INSERT INTO "public"."cardcodes" VALUES (4353, '四川省', '巴中地区', '平昌县', '513723'); +INSERT INTO "public"."cardcodes" VALUES (4354, '四川省', '眉山地区', '眉山县', '513821'); +INSERT INTO "public"."cardcodes" VALUES (4355, '四川省', '眉山地区', '仁寿县', '513822'); +INSERT INTO "public"."cardcodes" VALUES (4356, '四川省', '眉山地区', '彭山县', '513823'); +INSERT INTO "public"."cardcodes" VALUES (4357, '四川省', '眉山地区', '洪雅县', '513824'); +INSERT INTO "public"."cardcodes" VALUES (4358, '四川省', '眉山地区', '丹棱县', '513825'); +INSERT INTO "public"."cardcodes" VALUES (4359, '四川省', '眉山地区', '青神县', '513826'); +INSERT INTO "public"."cardcodes" VALUES (4360, '四川省', '资阳地区', '资阳市', '513901'); +INSERT INTO "public"."cardcodes" VALUES (4361, '四川省', '资阳地区', '简阳市', '513902'); +INSERT INTO "public"."cardcodes" VALUES (4362, '四川省', '资阳地区', '安岳县', '513921'); +INSERT INTO "public"."cardcodes" VALUES (4363, '四川省', '资阳地区', '乐至县', '513922'); +INSERT INTO "public"."cardcodes" VALUES (4364, '四川省', NULL, '广汉市', '519001'); +INSERT INTO "public"."cardcodes" VALUES (4365, '四川省', NULL, '江油市', '519002'); +INSERT INTO "public"."cardcodes" VALUES (4366, '四川省', NULL, '都江堰市', '519003'); +INSERT INTO "public"."cardcodes" VALUES (4367, '四川省', NULL, '峨眉山市', '519004'); +INSERT INTO "public"."cardcodes" VALUES (4368, '贵州省', '贵阳市', '市辖区', '520101'); +INSERT INTO "public"."cardcodes" VALUES (4369, '贵州省', '贵阳市', '南明区', '520102'); +INSERT INTO "public"."cardcodes" VALUES (4370, '贵州省', '贵阳市', '云岩区', '520103'); +INSERT INTO "public"."cardcodes" VALUES (4371, '贵州省', '贵阳市', '花溪区', '520111'); +INSERT INTO "public"."cardcodes" VALUES (4372, '贵州省', '贵阳市', '乌当区', '520112'); +INSERT INTO "public"."cardcodes" VALUES (4373, '贵州省', '贵阳市', '白云区', '520113'); +INSERT INTO "public"."cardcodes" VALUES (4374, '贵州省', '贵阳市', '小河区', '520114'); +INSERT INTO "public"."cardcodes" VALUES (4375, '贵州省', '贵阳市', '开阳县', '520121'); +INSERT INTO "public"."cardcodes" VALUES (4376, '贵州省', '贵阳市', '息烽县', '520122'); +INSERT INTO "public"."cardcodes" VALUES (4377, '贵州省', '贵阳市', '修文县', '520123'); +INSERT INTO "public"."cardcodes" VALUES (4378, '贵州省', '贵阳市', '清镇市', '520181'); +INSERT INTO "public"."cardcodes" VALUES (4379, '贵州省', '六盘水市', '钟山区', '520201'); +INSERT INTO "public"."cardcodes" VALUES (4380, '贵州省', '六盘水市', '盘县特区', '520202'); +INSERT INTO "public"."cardcodes" VALUES (4381, '贵州省', '六盘水市', '六枝特区', '520203'); +INSERT INTO "public"."cardcodes" VALUES (4382, '贵州省', '六盘水市', '水城县', '520221'); +INSERT INTO "public"."cardcodes" VALUES (4383, '贵州省', '六盘水市', '盘县', '520222'); +INSERT INTO "public"."cardcodes" VALUES (4384, '贵州省', '遵义市', '市辖区', '520301'); +INSERT INTO "public"."cardcodes" VALUES (4385, '贵州省', '遵义市', '红花岗区', '520302'); +INSERT INTO "public"."cardcodes" VALUES (4386, '贵州省', '遵义市', '汇川区', '520303'); +INSERT INTO "public"."cardcodes" VALUES (4387, '贵州省', '遵义市', '遵义县', '520321'); +INSERT INTO "public"."cardcodes" VALUES (4388, '贵州省', '遵义市', '桐梓县', '520322'); +INSERT INTO "public"."cardcodes" VALUES (4389, '贵州省', '遵义市', '绥阳县', '520323'); +INSERT INTO "public"."cardcodes" VALUES (4390, '贵州省', '遵义市', '正安县', '520324'); +INSERT INTO "public"."cardcodes" VALUES (4391, '贵州省', '遵义市', '道真仡佬族苗族自治县', '520325'); +INSERT INTO "public"."cardcodes" VALUES (4392, '贵州省', '遵义市', '务川仡佬族苗族自治县', '520326'); +INSERT INTO "public"."cardcodes" VALUES (4393, '贵州省', '遵义市', '凤冈县', '520327'); +INSERT INTO "public"."cardcodes" VALUES (4394, '贵州省', '遵义市', '湄潭县', '520328'); +INSERT INTO "public"."cardcodes" VALUES (4395, '贵州省', '遵义市', '余庆县', '520329'); +INSERT INTO "public"."cardcodes" VALUES (4396, '贵州省', '遵义市', '习水县', '520330'); +INSERT INTO "public"."cardcodes" VALUES (4397, '贵州省', '遵义市', '赤水市', '520381'); +INSERT INTO "public"."cardcodes" VALUES (4398, '贵州省', '遵义市', '仁怀市', '520382'); +INSERT INTO "public"."cardcodes" VALUES (4399, '贵州省', '安顺市', '市辖区', '520401'); +INSERT INTO "public"."cardcodes" VALUES (4400, '贵州省', '安顺市', '西秀区', '520402'); +INSERT INTO "public"."cardcodes" VALUES (4401, '贵州省', '安顺市', '平坝县', '520421'); +INSERT INTO "public"."cardcodes" VALUES (4402, '贵州省', '安顺市', '普定县', '520422'); +INSERT INTO "public"."cardcodes" VALUES (4403, '贵州省', '安顺市', '镇宁布依族苗族自治县', '520423'); +INSERT INTO "public"."cardcodes" VALUES (4404, '贵州省', '安顺市', '关岭布依族苗族自治县', '520424'); +INSERT INTO "public"."cardcodes" VALUES (4405, '贵州省', '安顺市', '紫云苗族布依族自治县', '520425'); +INSERT INTO "public"."cardcodes" VALUES (4406, '贵州省', '遵义地区', '遵义市', '522101'); +INSERT INTO "public"."cardcodes" VALUES (4407, '贵州省', '遵义地区', '赤水市', '522102'); +INSERT INTO "public"."cardcodes" VALUES (4408, '贵州省', '遵义地区', '仁怀市', '522103'); +INSERT INTO "public"."cardcodes" VALUES (4409, '贵州省', '遵义地区', '遵义县', '522121'); +INSERT INTO "public"."cardcodes" VALUES (4410, '贵州省', '遵义地区', '桐梓县', '522122'); +INSERT INTO "public"."cardcodes" VALUES (4411, '贵州省', '遵义地区', '绥阳县', '522123'); +INSERT INTO "public"."cardcodes" VALUES (4412, '贵州省', '遵义地区', '正安县', '522124'); +INSERT INTO "public"."cardcodes" VALUES (4413, '贵州省', '遵义地区', '道真仡佬族苗族自治县', '522125'); +INSERT INTO "public"."cardcodes" VALUES (4414, '贵州省', '遵义地区', '务川仡佬族苗族自治县', '522126'); +INSERT INTO "public"."cardcodes" VALUES (4415, '贵州省', '遵义地区', '凤冈县', '522127'); +INSERT INTO "public"."cardcodes" VALUES (4416, '贵州省', '遵义地区', '湄潭县', '522128'); +INSERT INTO "public"."cardcodes" VALUES (4417, '贵州省', '遵义地区', '余庆县', '522129'); +INSERT INTO "public"."cardcodes" VALUES (4418, '贵州省', '遵义地区', '仁怀县', '522130'); +INSERT INTO "public"."cardcodes" VALUES (4419, '贵州省', '遵义地区', '赤水县', '522131'); +INSERT INTO "public"."cardcodes" VALUES (4420, '贵州省', '遵义地区', '习水县', '522132'); +INSERT INTO "public"."cardcodes" VALUES (4421, '贵州省', '铜仁地区', '铜仁市', '522201'); +INSERT INTO "public"."cardcodes" VALUES (4422, '贵州省', '铜仁地区', '铜仁县', '522221'); +INSERT INTO "public"."cardcodes" VALUES (4423, '贵州省', '铜仁地区', '江口县', '522222'); +INSERT INTO "public"."cardcodes" VALUES (4424, '贵州省', '铜仁地区', '玉屏侗族自治县', '522223'); +INSERT INTO "public"."cardcodes" VALUES (4425, '贵州省', '铜仁地区', '石阡县', '522224'); +INSERT INTO "public"."cardcodes" VALUES (4426, '贵州省', '铜仁地区', '思南县', '522225'); +INSERT INTO "public"."cardcodes" VALUES (4427, '贵州省', '铜仁地区', '印江土家族苗族自治县', '522226'); +INSERT INTO "public"."cardcodes" VALUES (4428, '贵州省', '铜仁地区', '德江县', '522227'); +INSERT INTO "public"."cardcodes" VALUES (4429, '贵州省', '铜仁地区', '沿河土家族自治县', '522228'); +INSERT INTO "public"."cardcodes" VALUES (4430, '贵州省', '铜仁地区', '松桃苗族自治县', '522229'); +INSERT INTO "public"."cardcodes" VALUES (4431, '贵州省', '铜仁地区', '万山特区', '522230'); +INSERT INTO "public"."cardcodes" VALUES (4432, '贵州省', '黔西南布依族苗族自治州', '兴义市', '522301'); +INSERT INTO "public"."cardcodes" VALUES (4433, '贵州省', '黔西南布依族苗族自治州', '赤壁市', '522302'); +INSERT INTO "public"."cardcodes" VALUES (4434, '贵州省', '黔西南布依族苗族自治州', '兴义县', '522321'); +INSERT INTO "public"."cardcodes" VALUES (4435, '贵州省', '黔西南布依族苗族自治州', '兴仁县', '522322'); +INSERT INTO "public"."cardcodes" VALUES (4436, '贵州省', '黔西南布依族苗族自治州', '普安县', '522323'); +INSERT INTO "public"."cardcodes" VALUES (4437, '贵州省', '黔西南布依族苗族自治州', '晴隆县', '522324'); +INSERT INTO "public"."cardcodes" VALUES (4438, '贵州省', '黔西南布依族苗族自治州', '贞丰县', '522325'); +INSERT INTO "public"."cardcodes" VALUES (4439, '贵州省', '黔西南布依族苗族自治州', '望谟县', '522326'); +INSERT INTO "public"."cardcodes" VALUES (4440, '贵州省', '黔西南布依族苗族自治州', '册亨县', '522327'); +INSERT INTO "public"."cardcodes" VALUES (4441, '贵州省', '黔西南布依族苗族自治州', '安龙县', '522328'); +INSERT INTO "public"."cardcodes" VALUES (4442, '贵州省', '毕节地区', '毕节市', '522401'); +INSERT INTO "public"."cardcodes" VALUES (4443, '贵州省', '毕节地区', '毕节县', '522421'); +INSERT INTO "public"."cardcodes" VALUES (4444, '贵州省', '毕节地区', '大方县', '522422'); +INSERT INTO "public"."cardcodes" VALUES (4445, '贵州省', '毕节地区', '黔西县', '522423'); +INSERT INTO "public"."cardcodes" VALUES (4446, '贵州省', '毕节地区', '金沙县', '522424'); +INSERT INTO "public"."cardcodes" VALUES (4447, '贵州省', '毕节地区', '织金县', '522425'); +INSERT INTO "public"."cardcodes" VALUES (4448, '贵州省', '毕节地区', '纳雍县', '522426'); +INSERT INTO "public"."cardcodes" VALUES (4449, '贵州省', '毕节地区', '威宁彝族回族苗族自治县', '522427'); +INSERT INTO "public"."cardcodes" VALUES (4450, '贵州省', '毕节地区', '赫章县', '522428'); +INSERT INTO "public"."cardcodes" VALUES (4451, '贵州省', '安顺地区', '安顺市', '522501'); +INSERT INTO "public"."cardcodes" VALUES (4452, '贵州省', '安顺地区', '清镇市', '522502'); +INSERT INTO "public"."cardcodes" VALUES (4453, '贵州省', '安顺地区', '安顺县', '522521'); +INSERT INTO "public"."cardcodes" VALUES (4454, '贵州省', '安顺地区', '开阳县', '522522'); +INSERT INTO "public"."cardcodes" VALUES (4455, '贵州省', '安顺地区', '息烽县', '522523'); +INSERT INTO "public"."cardcodes" VALUES (4456, '贵州省', '安顺地区', '修文县', '522524'); +INSERT INTO "public"."cardcodes" VALUES (4457, '贵州省', '安顺地区', '清镇县', '522525'); +INSERT INTO "public"."cardcodes" VALUES (4458, '贵州省', '安顺地区', '平坝县', '522526'); +INSERT INTO "public"."cardcodes" VALUES (4459, '贵州省', '安顺地区', '普定县', '522527'); +INSERT INTO "public"."cardcodes" VALUES (4460, '贵州省', '安顺地区', '关岭布依族苗族自治县', '522528'); +INSERT INTO "public"."cardcodes" VALUES (4461, '贵州省', '安顺地区', '镇宁布依族苗族自治县', '522529'); +INSERT INTO "public"."cardcodes" VALUES (4462, '贵州省', '安顺地区', '紫云苗族布依族自治县', '522530'); +INSERT INTO "public"."cardcodes" VALUES (4463, '贵州省', '黔东南苗族侗族自治州', '凯里市', '522601'); +INSERT INTO "public"."cardcodes" VALUES (4464, '贵州省', '黔东南苗族侗族自治州', '黄平县', '522622'); +INSERT INTO "public"."cardcodes" VALUES (4465, '贵州省', '黔东南苗族侗族自治州', '施秉县', '522623'); +INSERT INTO "public"."cardcodes" VALUES (4466, '贵州省', '黔东南苗族侗族自治州', '三穗县', '522624'); +INSERT INTO "public"."cardcodes" VALUES (4467, '贵州省', '黔东南苗族侗族自治州', '镇远县', '522625'); +INSERT INTO "public"."cardcodes" VALUES (4468, '贵州省', '黔东南苗族侗族自治州', '岑巩县', '522626'); +INSERT INTO "public"."cardcodes" VALUES (4469, '贵州省', '黔东南苗族侗族自治州', '天柱县', '522627'); +INSERT INTO "public"."cardcodes" VALUES (4470, '贵州省', '黔东南苗族侗族自治州', '锦屏县', '522628'); +INSERT INTO "public"."cardcodes" VALUES (4471, '贵州省', '黔东南苗族侗族自治州', '剑河县', '522629'); +INSERT INTO "public"."cardcodes" VALUES (4472, '贵州省', '黔东南苗族侗族自治州', '台江县', '522630'); +INSERT INTO "public"."cardcodes" VALUES (4473, '贵州省', '黔东南苗族侗族自治州', '黎平县', '522631'); +INSERT INTO "public"."cardcodes" VALUES (4474, '贵州省', '黔东南苗族侗族自治州', '榕江县', '522632'); +INSERT INTO "public"."cardcodes" VALUES (4475, '贵州省', '黔东南苗族侗族自治州', '从江县', '522633'); +INSERT INTO "public"."cardcodes" VALUES (4476, '贵州省', '黔东南苗族侗族自治州', '雷山县', '522634'); +INSERT INTO "public"."cardcodes" VALUES (4477, '贵州省', '黔东南苗族侗族自治州', '麻江县', '522635'); +INSERT INTO "public"."cardcodes" VALUES (4478, '贵州省', '黔东南苗族侗族自治州', '丹寨县', '522636'); +INSERT INTO "public"."cardcodes" VALUES (4479, '贵州省', '黔南布依族苗族自治州', '都匀市', '522701'); +INSERT INTO "public"."cardcodes" VALUES (4480, '贵州省', '黔南布依族苗族自治州', '福泉市', '522702'); +INSERT INTO "public"."cardcodes" VALUES (4481, '贵州省', '黔南布依族苗族自治州', '荔波县', '522722'); +INSERT INTO "public"."cardcodes" VALUES (4482, '贵州省', '黔南布依族苗族自治州', '贵定县', '522723'); +INSERT INTO "public"."cardcodes" VALUES (4483, '贵州省', '黔南布依族苗族自治州', '福泉县', '522724'); +INSERT INTO "public"."cardcodes" VALUES (4484, '贵州省', '黔南布依族苗族自治州', '瓮安县', '522725'); +INSERT INTO "public"."cardcodes" VALUES (4485, '贵州省', '黔南布依族苗族自治州', '独山县', '522726'); +INSERT INTO "public"."cardcodes" VALUES (4486, '中华人民共和国香港特别行政区', NULL, NULL, '810000'); +INSERT INTO "public"."cardcodes" VALUES (4487, '中华人民共和国澳门特别行政区', NULL, NULL, '820000'); +INSERT INTO "public"."cardcodes" VALUES (4488, '台湾省', NULL, NULL, '710000'); + +-- ---------------------------- +-- Table structure for cashinfo +-- ---------------------------- +DROP TABLE IF EXISTS "public"."cashinfo"; +CREATE TABLE "public"."cashinfo" ( + "CashNo" varchar(12) COLLATE "pg_catalog"."default" NOT NULL, + "CashName" varchar(300) COLLATE "pg_catalog"."default" NOT NULL, + "CashPrice" numeric(10,2) NOT NULL, + "CashClub" varchar(800) COLLATE "pg_catalog"."default" NOT NULL, + "CashTime" timestamp(6) NOT NULL, + "CashSource" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, + "CashPerson" varchar(800) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."cashinfo"."CashNo" IS '资产编号'; +COMMENT ON COLUMN "public"."cashinfo"."CashName" IS '资产名称'; +COMMENT ON COLUMN "public"."cashinfo"."CashPrice" IS '资产总值'; +COMMENT ON COLUMN "public"."cashinfo"."CashClub" IS '所属部门'; +COMMENT ON COLUMN "public"."cashinfo"."CashTime" IS '入库时间'; +COMMENT ON COLUMN "public"."cashinfo"."CashSource" IS '资产来源'; +COMMENT ON COLUMN "public"."cashinfo"."CashPerson" IS '资产经办人'; +COMMENT ON COLUMN "public"."cashinfo"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."cashinfo"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."cashinfo"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."cashinfo"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."cashinfo"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."cashinfo" IS '酒店资产表'; + +-- ---------------------------- +-- Records of cashinfo +-- ---------------------------- +INSERT INTO "public"."cashinfo" VALUES ('CN001', '购入18台PC', 150000.00, 'D-001', '2018-12-03 15:49:16', '联想电脑', 'WK001', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN002', '购入150平方的瓷砖', 800000.00, 'D-001', '2018-12-03 15:49:16', '京瓷', 'WK002', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN003', '与KaMiFood达成合作', 870000.00, 'D-001', '2018-12-04 00:00:00', '神之食餐饮', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN004', '购入40台高配笔记本', 900000.00, 'D-003', '2018-12-05 00:00:00', '戴尔电脑', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN005', '与闪修达成合作', 600000.00, 'D-001', '2018-12-05 00:00:00', '闪修公司', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN006', '顶级床单3000张', 900000.00, 'D-001', '2018-12-15 00:00:00', '席梦思', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN007', '办公椅300张', 50000.00, 'D-003', '2018-12-05 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN008', '办公桌300张', 80000.00, 'D-001', '2018-12-05 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN009', '测试数据', 200000.00, 'D-006', '2018-12-05 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN010', '测试数据', 300000.00, 'D-002', '2018-12-06 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN011', '测试数据', 400000.00, 'D-002', '2018-12-07 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN012', '测试数据', 500000.00, 'D-002', '2018-12-08 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN013', '测试数据', 600000.00, 'D-002', '2018-12-09 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN014', '测试数据', 700000.00, 'D-002', '2018-12-23 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN015', '测试数据', 800000.00, 'D-002', '2018-12-23 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN016', '测试数据', 900000.00, 'D-002', '2018-12-24 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN017', '纪念品', 500.00, 'D-011', '2020-08-22 15:22:44', '赠予', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN1262', '古董', 10000000.00, 'D-001', '2020-08-22 15:22:44', '赠送', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN202100013', '测试测试', 600000.00, 'D-004', '2021-01-30 00:00:00', '测试工厂', 'WK010', 0, 'admin', '2021-02-16', NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN20210002', '戴尔笔记本6台', 80000.00, 'D-010', '2021-01-30 00:00:00', '戴尔(珠海)经销商', 'WK202102007', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN4610', '购入20套办公桌', 50000.00, 'D-010', '2020-04-16 23:25:22', '志远办公', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN4665', '购入10套办公桌椅', 50000.00, 'D-010', '2020-04-16 23:26:57', '志远办公', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN6816', 'test', 20000.00, 'D-002', '2020-04-16 23:42:08', 'adasd', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN8051', 'cccccc', 10000.00, 'D-002', '2020-08-14 14:33:21', 'ccccccc', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('RG001', '唯秒合作入股', 770000.00, 'D-001', '2018-12-05 00:00:00', '唯秒', 'WK001', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for checkinfo +-- ---------------------------- +DROP TABLE IF EXISTS "public"."checkinfo"; +CREATE TABLE "public"."checkinfo" ( + "CheckNo" varchar(10) COLLATE "pg_catalog"."default" NOT NULL, + "CheckClub" varchar(12) COLLATE "pg_catalog"."default" NOT NULL, + "CheckProgres" varchar(250) COLLATE "pg_catalog"."default" NOT NULL, + "CheckCash" varchar(250) COLLATE "pg_catalog"."default" NOT NULL, + "CheckScore" int4 NOT NULL, + "CheckPerson" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, + "CheckAdvice" varchar(45) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."checkinfo"."CheckNo" IS '监管统计编号'; +COMMENT ON COLUMN "public"."checkinfo"."CheckClub" IS '受监管部门'; +COMMENT ON COLUMN "public"."checkinfo"."CheckProgres" IS '受监管部门总体概述'; +COMMENT ON COLUMN "public"."checkinfo"."CheckCash" IS '受监管部门交易情况'; +COMMENT ON COLUMN "public"."checkinfo"."CheckScore" IS '受监管部门得分情况'; +COMMENT ON COLUMN "public"."checkinfo"."CheckPerson" IS '本次监管负责人'; +COMMENT ON COLUMN "public"."checkinfo"."CheckAdvice" IS '监管建议'; +COMMENT ON COLUMN "public"."checkinfo"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."checkinfo"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."checkinfo"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."checkinfo"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."checkinfo"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."checkinfo" IS '监管统计表'; + +-- ---------------------------- +-- Records of checkinfo +-- ---------------------------- +INSERT INTO "public"."checkinfo" VALUES ('CI001', '后勤部', '有人偷懒', '(^-^)', 4, '罗良建', '合理分配时间', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."checkinfo" VALUES ('CI002', '餐饮部', '有人偷懒', 'QAQ', 4, '罗良建', '合理分配时间', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."checkinfo" VALUES ('CI003', '酒店部', '有人偷懒', '(-_-)', 4, '罗良建', '合理分配时间', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for counterrule +-- ---------------------------- +DROP TABLE IF EXISTS "public"."counterrule"; +CREATE TABLE "public"."counterrule" ( + "rule_id" int4 NOT NULL, + "rule_name" varchar(50) COLLATE "pg_catalog"."default", + "rule_desc" varchar(100) COLLATE "pg_catalog"."default", + "now_id" int4, + "prefix_name" varchar(20) COLLATE "pg_catalog"."default", + "custo_format" varchar(50) COLLATE "pg_catalog"."default", + "number_format" varchar(10) COLLATE "pg_catalog"."default", + "separating_char" varchar(5) COLLATE "pg_catalog"."default", + "datains_usrid" varchar(20) COLLATE "pg_catalog"."default", + "datains_time" timestamp(6), + "datachg_usrid" varchar(20) COLLATE "pg_catalog"."default", + "datachg_time" timestamp(6) +) +; +COMMENT ON COLUMN "public"."counterrule"."rule_id" IS '规则编号'; +COMMENT ON COLUMN "public"."counterrule"."rule_name" IS '规格名称'; +COMMENT ON COLUMN "public"."counterrule"."rule_desc" IS '规则描述'; +COMMENT ON COLUMN "public"."counterrule"."now_id" IS '当前ID'; +COMMENT ON COLUMN "public"."counterrule"."prefix_name" IS '规则简写'; +COMMENT ON COLUMN "public"."counterrule"."custo_format" IS '规则格式'; +COMMENT ON COLUMN "public"."counterrule"."number_format" IS '编号前缀'; +COMMENT ON COLUMN "public"."counterrule"."separating_char" IS '规则分割符'; +COMMENT ON COLUMN "public"."counterrule"."datains_usrid" IS '资料新增人'; +COMMENT ON COLUMN "public"."counterrule"."datains_time" IS '资料新增时间'; +COMMENT ON COLUMN "public"."counterrule"."datachg_usrid" IS '资料更新人'; +COMMENT ON COLUMN "public"."counterrule"."datachg_time" IS '资料更新时间'; +COMMENT ON TABLE "public"."counterrule" IS '业务流水号规则表'; + +-- ---------------------------- +-- Records of counterrule +-- ---------------------------- +INSERT INTO "public"."counterrule" VALUES (1, 'WorkerId', '员工工号流水号规则', 44, 'WK', 'yyyyMM', '00', '', 'System', NULL, NULL, NULL); +INSERT INTO "public"."counterrule" VALUES (9, 'EducationId', '学历编号', 3, 'E', 'yyyy', '0', '-', 'System', NULL, NULL, NULL); +INSERT INTO "public"."counterrule" VALUES (4, 'ReserId', '预约编号', 25, 'R', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); +INSERT INTO "public"."counterrule" VALUES (2, 'NationId', '民族类型编号', 7, 'N', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); +INSERT INTO "public"."counterrule" VALUES (10, 'PositionId', '职位编号', 8, 'P', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); +INSERT INTO "public"."counterrule" VALUES (6, 'NoticeId', '公告编号', 5, 'UP', 'yyyyMM', '00', '-', 'System', NULL, NULL, NULL); +INSERT INTO "public"."counterrule" VALUES (3, 'CustoId', '客户类型编号', 169, 'TS', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); +INSERT INTO "public"."counterrule" VALUES (5, 'SellId', '商品编号', 161, 'ST', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); +INSERT INTO "public"."counterrule" VALUES (11, 'VipRuleId', '会员等级类型编号', 126, 'VR', 'yyyyMMdd', '000', '-', 'System', NULL, NULL, NULL); +INSERT INTO "public"."counterrule" VALUES (8, 'DeptInfo', '部门编号', 145, 'D', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); +INSERT INTO "public"."counterrule" VALUES (7, 'CashInfo', '资产编号', 96, 'CN', 'yyyy', '000', '-', 'System', NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for customer +-- ---------------------------- +DROP TABLE IF EXISTS "public"."customer"; +CREATE TABLE "public"."customer" ( + "custo_no" varchar(30) COLLATE "pg_catalog"."default" NOT NULL, + "custo_name" varchar(200) COLLATE "pg_catalog"."default", + "custo_sex" int2 DEFAULT 0, + "custo_tel" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, + "passport_type" int2 NOT NULL DEFAULT 0, + "passport_id" varchar(30) COLLATE "pg_catalog"."default" NOT NULL, + "custo_address" varchar(300) COLLATE "pg_catalog"."default", + "custo_birth" date, + "custo_type" int2 NOT NULL DEFAULT 0, + "delete_mk" int2 NOT NULL DEFAULT 0, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."customer"."custo_no" IS '客户编号'; +COMMENT ON COLUMN "public"."customer"."custo_name" IS '客户姓名'; +COMMENT ON COLUMN "public"."customer"."custo_sex" IS '客户性别'; +COMMENT ON COLUMN "public"."customer"."custo_tel" IS '客户电话'; +COMMENT ON COLUMN "public"."customer"."passport_type" IS '证件类型'; +COMMENT ON COLUMN "public"."customer"."passport_id" IS '证件号码'; +COMMENT ON COLUMN "public"."customer"."custo_address" IS '客户地址'; +COMMENT ON COLUMN "public"."customer"."custo_birth" IS '客户生日'; +COMMENT ON COLUMN "public"."customer"."custo_type" IS '客户类型'; +COMMENT ON COLUMN "public"."customer"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."customer"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."customer"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."customer"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."customer"."datachg_date" IS '资料更新时间'; + +-- ---------------------------- +-- Records of customer +-- ---------------------------- +INSERT INTO "public"."customer" VALUES ('TS-1506895026', '刘秀英', 0, '1002550414', 0, '440921199501209853', '中国北京市西城区西長安街377号华润大厦43室', '1995-04-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7454724132', '廖杰宏', 0, '76986162986', 0, '440921199502100103', '中国东莞坑美十五巷640号36栋', '1995-12-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2536719205', '尹璐', 0, '7550103816', 0, '440921199501112666', '中国深圳龙岗区布吉镇西环路459号36楼', '1995-09-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7681845999', '侯嘉伦', 1, '1073313320', 0, '440921199511115587', '中国北京市朝阳区三里屯路950号36楼', '1995-06-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0076151469', '郭璐', 1, '7608982112', 0, '440921199500110565', '中国中山天河区大信商圈大信南路363号华润大厦12室', '1995-10-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5029974816', '吴杰宏', 1, '287480376', 0, '440921199512102541', '中国成都市成华区玉双路6号214号24号楼', '1995-11-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0659693478', '赵璐', 0, '14221176252', 0, '440921199502239705', '中国上海市黄浦区淮海中路40号4楼', '1995-03-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3237516123', '潘岚', 0, '19060568695', 0, '440921199520126770', '中国深圳罗湖区田贝一路543号3楼', '1995-05-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1108748503', '何岚', 0, '76058613687', 0, '440921199521232646', '中国中山天河区大信商圈大信南路77号44号楼', '1995-10-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1451459598', '夏云熙', 1, '17390261215', 0, '440921199502335726', '中国东莞环区南街二巷243号32楼', '1995-08-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6348049575', '丁睿', 0, '16631857575', 0, '440921199522216230', '中国深圳龙岗区布吉镇西环路635号24号楼', '1995-07-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7904382112', '武子韬', 0, '13749390032', 0, '440921199501221402', '中国上海市浦东新区橄榄路416号42楼', '1995-10-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5148194116', '秦云熙', 1, '7600076168', 0, '440921199500017960', '中国中山乐丰六路153号27室', '1995-01-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8820534363', '汪安琪', 1, '2848550841', 0, '440921199512030253', '中国成都市成华区双庆路365号18楼', '1995-08-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0447565875', '陶睿', 0, '17924625895', 0, '440921199520227152', '中国深圳福田区景田东一街509号50号楼', '1995-11-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7320427604', '孟杰宏', 1, '2165351055', 0, '440921199522003354', '中国上海市徐汇区虹桥路23号32号楼', '1995-05-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0562473946', '贾杰宏', 0, '2024962459', 0, '440921199500107279', '中国广州市越秀区中山二路228号14栋', '1995-03-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6271997365', '傅安琪', 1, '76928029795', 0, '440921199502028830', '中国东莞珊瑚路961号26室', '1995-10-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8731516492', '向岚', 0, '18476669107', 0, '440921199511336010', '中国东莞环区南街二巷64号华润大厦44室', '1995-07-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8494374625', '莫晓明', 0, '75510662594', 0, '440921199500316029', '中国深圳福田区景田东一街943号28室', '1995-01-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2951045520', '陆璐', 1, '17971970026', 0, '440921199500230551', '中国深圳福田区深南大道633号39号楼', '1995-08-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9034881014', '孙秀英', 0, '14321077607', 0, '440921199500217773', '中国深圳罗湖区清水河一路713号34号楼', '1995-05-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7740031409', '史致远', 0, '76985440647', 0, '440921199501300278', '中国东莞环区南街二巷174号华润大厦2室', '1995-08-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8835828548', '姜宇宁', 0, '76098855332', 0, '440921199511326343', '中国中山乐丰六路565号23楼', '1995-06-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3766806889', '龚致远', 1, '18135152058', 0, '440921199510138488', '中国上海市浦东新区橄榄路425号华润大厦1室', '1995-02-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2947713697', '郝嘉伦', 1, '17228480588', 0, '440921199500106502', '中国东莞珊瑚路387号华润大厦21室', '1995-06-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5998331717', '戴秀英', 0, '207951286', 0, '440921199501035881', '中国广州市白云区机场路棠苑街五巷27号5栋', '1995-02-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3315789438', '周安琪', 0, '16016632008', 0, '440921199522205749', '中国深圳福田区深南大道483号11楼', '1995-05-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3722674359', '龚岚', 0, '2054278064', 0, '440921199522239234', '中国广州市白云区小坪东路613号42号楼', '1995-09-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7913919899', '戴岚', 0, '1012562024', 0, '440921199512318979', '中国北京市西城区西長安街223号42栋', '1995-10-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2723006499', '黎云熙', 0, '283797049', 0, '440921199501202708', '中国成都市锦江区红星路三段18号24栋', '1995-09-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4912843193', '莫岚', 0, '17937242259', 0, '440921199522117944', '中国深圳福田区深南大道962号1楼', '1995-03-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4519488103', '李子异', 1, '210387900', 0, '440921199510116675', '中国上海市浦东新区橄榄路918号49室', '1995-07-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0042840822', '孙宇宁', 0, '2131230320', 0, '440921199510324251', '中国上海市浦东新区橄榄路998号20室', '1995-05-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5250717193', '傅秀英', 1, '2119415200', 0, '440921199501124209', '中国上海市徐汇区虹桥路648号35栋', '1995-11-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2299417933', '梁秀英', 0, '7696423615', 0, '440921199501236449', '中国东莞环区南街二巷876号36号楼', '1995-12-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0541659159', '李云熙', 0, '109528627', 0, '440921199522134572', '中国北京市海淀区清河中街68号736号17室', '1995-03-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1305328364', '钟云熙', 0, '102884467', 0, '440921199500012844', '中国北京市房山区岳琉路488号47室', '1995-07-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7459119445', '龚岚', 1, '209548728', 0, '440921199522314346', '中国广州市白云区小坪东路613号48室', '1995-05-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9460045616', '黎岚', 1, '16330927402', 0, '440921199511125340', '中国北京市房山区岳琉路315号36号楼', '1995-06-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9213656191', '许震南', 0, '18717939778', 0, '440921199502104618', '中国北京市延庆区028县道823号华润大厦1室', '1995-06-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1444003293', '赵岚', 1, '19232815766', 0, '440921199501316652', '中国广州市越秀区中山二路55号8室', '1995-12-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5190936732', '汤宇宁', 0, '7555880099', 0, '440921199500030940', '中国深圳福田区深南大道547号8楼', '1995-10-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1247930699', '孔璐', 1, '18175499474', 0, '440921199501003425', '中国深圳罗湖区蔡屋围深南东路606号28室', '1995-12-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5090277667', '叶睿', 0, '286626983', 0, '440921199510314013', '中国成都市成华区二仙桥东三路861号28室', '1995-07-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9767114625', '罗嘉伦', 1, '2013560681', 0, '440921199521002005', '中国广州市天河区天河路800号5号楼', '1995-03-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6240657918', '顾杰宏', 1, '15683008279', 0, '440921199521101105', '中国中山紫马岭商圈中山五路387号42室', '1995-06-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4378336852', '孔嘉伦', 1, '18278596494', 0, '440921199501014017', '中国成都市锦江区红星路三段401号28室', '1995-05-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7220171651', '许嘉伦', 0, '280572397', 0, '440921199521101225', '中国成都市锦江区人民南路四段879号华润大厦13室', '1995-06-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8266464299', '陆子韬', 0, '16524719594', 0, '440921199502219107', '中国广州市白云区机场路棠苑街五巷511号9栋', '1995-12-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0347489190', '任安琪', 0, '2199069199', 0, '440921199520120942', '中国上海市徐汇区虹桥路728号17室', '1995-01-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5358185163', '龙子异', 0, '15811897659', 0, '440921199520307885', '中国成都市锦江区人民南路四段665号37号楼', '1995-10-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4605633937', '吴安琪', 1, '17430801171', 0, '440921199511202781', '中国深圳罗湖区清水河一路649号华润大厦14室', '1995-12-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8126172478', '尹秀英', 0, '17779054816', 0, '440921199502332005', '中国深圳龙岗区布吉镇西环路381号18室', '1995-05-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7032243530', '朱宇宁', 0, '17309137840', 0, '440921199500212715', '中国中山紫马岭商圈中山五路334号华润大厦7室', '1995-01-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3153729511', '何杰宏', 1, '16045584998', 0, '440921199522304491', '中国广州市越秀区中山二路230号43楼', '1995-12-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6052973200', '林睿', 0, '7698204796', 0, '440921199502113961', '中国东莞坑美十五巷121号50楼', '1995-06-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6354973614', '叶杰宏', 1, '101774004', 0, '440921199522209952', '中国北京市朝阳区三里屯路162号1楼', '1995-01-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4485168990', '李秀英', 0, '286150470', 0, '440921199520119397', '中国成都市成华区双庆路82号15楼', '1995-06-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4826661328', '程子异', 0, '7693264925', 0, '440921199522205703', '中国东莞珊瑚路930号44号楼', '1995-10-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7492758157', '汤詩涵', 0, '209984709', 0, '440921199512101975', '中国广州市白云区机场路棠苑街五巷29号13栋', '1995-02-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3770536170', '崔嘉伦', 1, '1012327017', 0, '440921199511129121', '中国北京市延庆区028县道768号26室', '1995-03-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2580670018', '邱致远', 1, '19688997435', 0, '440921199501131015', '中国深圳福田区景田东一街232号42号楼', '1995-01-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4091080759', '莫子韬', 0, '18377779909', 0, '440921199500335526', '中国成都市成华区双庆路850号华润大厦34室', '1995-07-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2908524241', '袁子韬', 0, '16850881610', 0, '440921199522312182', '中国广州市海珠区江南西路104号48室', '1995-12-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2346109039', '林子韬', 0, '102727748', 0, '440921199512031266', '中国北京市西城区西長安街715号26室', '1995-01-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9827887246', '沈璐', 0, '15947236068', 0, '440921199500107366', '中国成都市锦江区红星路三段529号30号楼', '1995-03-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9942426044', '杨秀英', 0, '15692405566', 0, '440921199520306411', '中国深圳福田区深南大道970号8楼', '1995-03-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9336503578', '陶子韬', 0, '209782624', 0, '440921199502225255', '中国广州市海珠区江南西路336号13楼', '1995-12-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3111002539', '吴安琪', 1, '7601588859', 0, '440921199511115097', '中国中山乐丰六路198号45室', '1995-06-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6674657973', '莫詩涵', 1, '17184979541', 0, '440921199522209316', '中国上海市黄浦区淮海中路549号40栋', '1995-07-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7780654731', '张子异', 1, '2872119388', 0, '440921199502113515', '中国成都市成华区双庆路869号18号楼', '1995-07-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8702174595', '尹璐', 1, '7559925975', 0, '440921199511006830', '中国深圳福田区深南大道982号40楼', '1995-10-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5004013513', '宋安琪', 0, '217514766', 0, '440921199510119891', '中国上海市黄浦区淮海中路103号12栋', '1995-01-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0019935016', '郝致远', 0, '75547677638', 0, '440921199502302892', '中国深圳福田区深南大道955号21室', '1995-02-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2109860464', '吕晓明', 1, '104332966', 0, '440921199511338017', '中国北京市房山区岳琉路951号20楼', '1995-09-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9492775412', '许晓明', 1, '1026153799', 0, '440921199512203237', '中国北京市东城区东单王府井东街216号1号楼', '1995-08-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7199980214', '龙岚', 0, '7604850538', 0, '440921199521219788', '中国中山天河区大信商圈大信南路410号10楼', '1995-08-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4047272062', '曹岚', 1, '1059733914', 0, '440921199500019217', '中国北京市朝阳区三里屯路841号25室', '1995-02-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4279504949', '段岚', 1, '75539917042', 0, '440921199500005652', '中国深圳龙岗区布吉镇西环路590号18栋', '1995-12-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5835719492', '赵子韬', 1, '18792268720', 0, '440921199520237890', '中国成都市成华区玉双路6号256号华润大厦20室', '1995-10-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9325982117', '廖致远', 0, '14015888795', 0, '440921199511024302', '中国北京市房山区岳琉路200号9楼', '1995-05-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2238461704', '吴秀英', 1, '17906354588', 0, '440921199511214595', '中国成都市锦江区红星路三段973号47号楼', '1995-06-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2747760502', '徐安琪', 0, '75591445637', 0, '440921199510110686', '中国深圳龙岗区布吉镇西环路305号25号楼', '1995-03-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2859205191', '陶杰宏', 1, '15652413353', 0, '440921199502011801', '中国深圳罗湖区蔡屋围深南东路300号华润大厦43室', '1995-05-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3160992163', '夏嘉伦', 0, '17469869813', 0, '440921199511322234', '中国东莞环区南街二巷398号25栋', '1995-08-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0114962334', '傅安琪', 0, '7609585450', 0, '440921199512008600', '中国中山天河区大信商圈大信南路335号16号楼', '1995-08-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5445789563', '蒋璐', 0, '2809713908', 0, '440921199510221422', '中国成都市成华区双庆路121号38号楼', '1995-07-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7742375935', '唐云熙', 1, '14995734309', 0, '440921199502209649', '中国深圳龙岗区学园一巷130号9栋', '1995-05-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9991878383', '周致远', 1, '13929785083', 0, '440921199500224719', '中国东莞珊瑚路179号华润大厦9室', '1995-07-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5925358907', '顾云熙', 1, '102839391', 0, '440921199500306745', '中国北京市朝阳区三里屯路111号46楼', '1995-09-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9230672127', '罗震南', 1, '15183144137', 0, '440921199501119452', '中国广州市越秀区中山二路444号39室', '1995-10-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4694412474', '马致远', 1, '7698353247', 0, '440921199521034134', '中国东莞东泰五街362号华润大厦27室', '1995-06-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5450170972', '任震南', 0, '18398650430', 0, '440921199521110494', '中国北京市房山区岳琉路832号36号楼', '1995-09-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2359010491', '周睿', 1, '7693651352', 0, '440921199501318088', '中国东莞东泰五街617号8室', '1995-07-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3924976501', '雷秀英', 0, '18073285834', 0, '440921199510119545', '中国深圳福田区景田东一街571号10室', '1995-12-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0049936941', '姜岚', 1, '1013798583', 0, '440921199502237341', '中国北京市海淀区清河中街68号254号18楼', '1995-04-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1456225234', '钱致远', 1, '19766290835', 0, '440921199501308373', '中国深圳罗湖区田贝一路282号华润大厦12室', '1995-08-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3064868068', '韦秀英', 1, '105528479', 0, '440921199522224912', '中国北京市西城区复兴门内大街448号18栋', '1995-02-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5325669283', '雷致远', 0, '211992008', 0, '440921199512023152', '中国上海市黄浦区淮海中路60号22栋', '1995-06-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9867368224', '陶岚', 1, '76067542644', 0, '440921199500321035', '中国中山紫马岭商圈中山五路375号24楼', '1995-12-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9549887820', '黎安琪', 0, '17693208084', 0, '440921199510111635', '中国北京市西城区西長安街435号华润大厦41室', '1995-02-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0415635745', '姚子韬', 0, '107819237', 0, '440921199521339506', '中国北京市海淀区清河中街68号55号华润大厦3室', '1995-03-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9919521225', '严震南', 0, '2125977588', 0, '440921199522107344', '中国上海市徐汇区虹桥路554号42号楼', '1995-06-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0097082646', '向岚', 0, '287033526', 0, '440921199510314548', '中国成都市成华区玉双路6号421号13楼', '1995-02-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4042264986', '梁子异', 0, '18700471868', 0, '440921199521139052', '中国成都市锦江区人民南路四段612号50室', '1995-12-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6667725270', '方詩涵', 0, '14192039266', 0, '440921199520315744', '中国上海市闵行区宾川路294号12楼', '1995-09-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4248589548', '张睿', 0, '2837876080', 0, '440921199510233060', '中国成都市成华区二仙桥东三路980号35楼', '1995-05-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5856146439', '常詩涵', 1, '18075576267', 0, '440921199520111543', '中国东莞坑美十五巷49号12栋', '1995-05-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2564808537', '孙睿', 0, '100995609', 0, '440921199501313668', '中国北京市海淀区清河中街68号982号22号楼', '1995-06-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8805779844', '赵璐', 0, '1059638194', 0, '440921199512025442', '中国北京市东城区东单王府井东街500号38栋', '1995-01-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7097090777', '郭致远', 0, '18507121052', 0, '440921199501327851', '中国成都市成华区双庆路461号6楼', '1995-03-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3659054792', '贺秀英', 1, '13402823711', 0, '440921199502207559', '中国深圳龙岗区布吉镇西环路361号14号楼', '1995-11-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1194186908', '蒋安琪', 0, '2176894335', 0, '440921199511234615', '中国上海市闵行区宾川路535号2号楼', '1995-07-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7681919136', '曾致远', 1, '13197551276', 0, '440921199510115070', '中国广州市天河区天河路386号5栋', '1995-08-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2560754328', '韩璐', 0, '7605282251', 0, '440921199512235669', '中国中山京华商圈华夏街479号39楼', '1995-11-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2768087522', '郝杰宏', 0, '17802325538', 0, '440921199520113853', '中国成都市成华区双庆路692号38室', '1995-10-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0439044976', '杨致远', 1, '19474308010', 0, '440921199502318693', '中国中山京华商圈华夏街71号20室', '1995-01-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5494608787', '袁璐', 0, '13326237858', 0, '440921199511203157', '中国广州市越秀区中山二路951号29号楼', '1995-04-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0640586395', '黎晓明', 0, '14623516111', 0, '440921199521026747', '中国北京市延庆区028县道505号49楼', '1995-04-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9050987144', '吴嘉伦', 0, '214083917', 0, '440921199512329273', '中国上海市徐汇区虹桥路772号37室', '1995-11-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5390497903', '崔安琪', 0, '15167747596', 0, '440921199511114439', '中国北京市东城区东单王府井东街810号27室', '1995-12-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3110385527', '黎宇宁', 0, '76904743832', 0, '440921199512108041', '中国东莞东泰五街926号29室', '1995-11-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0809336770', '武璐', 1, '17356778485', 0, '440921199511025096', '中国中山天河区大信商圈大信南路565号45号楼', '1995-04-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5134657861', '杜璐', 1, '16057889821', 0, '440921199521100112', '中国中山乐丰六路59号42号楼', '1995-08-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5408143084', '冯嘉伦', 1, '14492035311', 0, '440921199500104621', '中国北京市房山区岳琉路792号18号楼', '1995-04-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6149575377', '吴晓明', 1, '202091934', 0, '440921199512101759', '中国广州市海珠区江南西路750号14栋', '1995-11-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0324661497', '萧詩涵', 0, '287999002', 0, '440921199512302515', '中国成都市锦江区红星路三段871号38室', '1995-04-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8803205240', '秦安琪', 1, '1017603007', 0, '440921199512116562', '中国北京市东城区东单王府井东街135号13楼', '1995-02-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7178412013', '薛杰宏', 1, '19263213232', 0, '440921199500325663', '中国深圳龙岗区布吉镇西环路562号2号楼', '1995-09-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6697989021', '叶云熙', 0, '7608692600', 0, '440921199500028451', '中国中山紫马岭商圈中山五路946号华润大厦22室', '1995-10-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4981292952', '萧安琪', 1, '17601225687', 0, '440921199521215919', '中国成都市锦江区人民南路四段221号23楼', '1995-02-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4446385837', '毛嘉伦', 1, '19320896044', 0, '440921199512010235', '中国成都市成华区双庆路11号27栋', '1995-04-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7336638213', '林睿', 0, '19854963112', 0, '440921199510008634', '中国东莞环区南街二巷257号20号楼', '1995-02-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8946451920', '董詩涵', 1, '7694862256', 0, '440921199501029931', '中国东莞环区南街二巷10号华润大厦32室', '1995-05-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6321279176', '谢岚', 1, '214137280', 0, '440921199501323658', '中国上海市浦东新区健祥路358号12号楼', '1995-05-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6883336433', '孟璐', 1, '2061434533', 0, '440921199512330907', '中国广州市天河区天河路455号华润大厦44室', '1995-01-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8319412676', '邱秀英', 0, '1065616887', 0, '440921199512108061', '中国北京市东城区东单王府井东街182号34号楼', '1995-05-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4417486873', '崔震南', 0, '15849405087', 0, '440921199502003653', '中国上海市浦东新区橄榄路545号3楼', '1995-02-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1215620538', '郑杰宏', 0, '16041999603', 0, '440921199500301785', '中国广州市越秀区中山二路882号21室', '1995-04-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3267330507', '丁詩涵', 1, '2161773655', 0, '440921199522033112', '中国上海市闵行区宾川路195号44栋', '1995-02-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4849175917', '陈震南', 0, '15027162678', 0, '440921199521310618', '中国北京市房山区岳琉路70号40室', '1995-06-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3766153942', '何宇宁', 0, '15684378978', 0, '440921199501007949', '中国成都市成华区二仙桥东三路408号6室', '1995-11-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7126522076', '冯杰宏', 1, '1008139430', 0, '440921199512211743', '中国北京市东城区东单王府井东街350号48室', '1995-09-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9073742549', '丁宇宁', 1, '18060186044', 0, '440921199522131501', '中国广州市白云区小坪东路152号19楼', '1995-03-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3334020575', '孟致远', 0, '17595293918', 0, '440921199512228579', '中国北京市东城区东单王府井东街712号18栋', '1995-01-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6226177471', '汪宇宁', 1, '19446902806', 0, '440921199500017388', '中国北京市房山区岳琉路136号24楼', '1995-07-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7849674625', '邵詩涵', 0, '7606711523', 0, '440921199510125621', '中国中山紫马岭商圈中山五路88号12栋', '1995-12-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4423639766', '朱安琪', 1, '1036338458', 0, '440921199522125632', '中国北京市西城区复兴门内大街354号华润大厦44室', '1995-04-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4560915691', '蔡睿', 0, '19948041198', 0, '440921199521133320', '中国东莞环区南街二巷777号36室', '1995-01-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2038996022', '丁震南', 0, '17659631502', 0, '440921199501320533', '中国北京市房山区岳琉路804号6号楼', '1995-04-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8686175713', '林璐', 0, '211035434', 0, '440921199500213564', '中国上海市浦东新区健祥路180号华润大厦44室', '1995-10-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6558661353', '武杰宏', 0, '15788153897', 0, '440921199510102838', '中国深圳福田区景田东一街875号32楼', '1995-06-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5028213000', '贺云熙', 0, '7694238988', 0, '440921199512204404', '中国东莞珊瑚路176号33号楼', '1995-12-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5089305262', '余安琪', 0, '17498362343', 0, '440921199501120483', '中国东莞环区南街二巷121号46楼', '1995-03-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0044014880', '罗子异', 1, '19436469429', 0, '440921199520121180', '中国东莞坑美十五巷431号37楼', '1995-05-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4721541803', '贾璐', 0, '2838482603', 0, '440921199512316705', '中国成都市锦江区人民南路四段84号40栋', '1995-10-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6992862287', '谭璐', 0, '19458193633', 0, '440921199501215195', '中国广州市海珠区江南西路103号40号楼', '1995-03-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2483907401', '萧睿', 1, '109004900', 0, '440921199510214768', '中国北京市房山区岳琉路680号19楼', '1995-01-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6269522067', '崔秀英', 1, '7550061846', 0, '440921199522315860', '中国深圳罗湖区清水河一路230号42栋', '1995-06-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2737747732', '汪安琪', 0, '102894171', 0, '440921199501302040', '中国北京市房山区岳琉路813号37室', '1995-07-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1598334183', '周璐', 0, '7690999463', 0, '440921199511031250', '中国东莞环区南街二巷889号22栋', '1995-07-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7180693351', '顾杰宏', 0, '13883674012', 0, '440921199510309778', '中国成都市锦江区人民南路四段325号华润大厦27室', '1995-02-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8344449119', '张宇宁', 1, '7698415997', 0, '440921199511136720', '中国东莞珊瑚路928号37号楼', '1995-10-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8405681776', '姜睿', 1, '1015034147', 0, '440921199512313470', '中国北京市房山区岳琉路191号18栋', '1995-12-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4339928263', '梁岚', 0, '2188325656', 0, '440921199521239741', '中国上海市浦东新区健祥路915号29室', '1995-11-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5287057844', '龚詩涵', 1, '19936168235', 0, '440921199511330500', '中国广州市海珠区江南西路644号42楼', '1995-10-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8135388469', '萧岚', 1, '76019009897', 0, '440921199500337656', '中国中山乐丰六路44号43楼', '1995-05-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4810740915', '陶震南', 1, '18464598464', 0, '440921199511334963', '中国上海市浦东新区橄榄路444号44号楼', '1995-03-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6807405987', '石杰宏', 0, '19874462227', 0, '440921199500338179', '中国东莞坑美十五巷289号华润大厦50室', '1995-06-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8348187320', '姚睿', 1, '7550988206', 0, '440921199522300246', '中国深圳罗湖区田贝一路388号3号楼', '1995-07-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5540353720', '余子韬', 1, '16229803799', 0, '440921199502131064', '中国中山天河区大信商圈大信南路144号43号楼', '1995-07-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5152300869', '何安琪', 0, '15540774689', 0, '440921199500037780', '中国广州市白云区小坪东路840号10栋', '1995-09-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7738593978', '郝秀英', 0, '13003699972', 0, '440921199512115494', '中国中山天河区大信商圈大信南路217号46号楼', '1995-04-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0357487013', '尹震南', 1, '202835964', 0, '440921199521000178', '中国广州市白云区机场路棠苑街五巷225号华润大厦9室', '1995-03-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5555244732', '苏嘉伦', 1, '2089395684', 0, '440921199510232233', '中国广州市越秀区中山二路58号8楼', '1995-03-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8255717173', '丁子异', 0, '7601570856', 0, '440921199511111618', '中国中山紫马岭商圈中山五路581号6号楼', '1995-04-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2613116383', '郝晓明', 0, '13862491654', 0, '440921199501120806', '中国北京市房山区岳琉路403号42室', '1995-08-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7654674829', '贾致远', 0, '76077520987', 0, '440921199501224913', '中国中山天河区大信商圈大信南路172号华润大厦23室', '1995-10-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1653683664', '莫秀英', 1, '1034224699', 0, '440921199501223067', '中国北京市房山区岳琉路821号14室', '1995-09-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6970982877', '朱秀英', 1, '1095756301', 0, '440921199512113465', '中国北京市西城区复兴门内大街4号华润大厦18室', '1995-03-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1298722648', '江秀英', 1, '19853089596', 0, '440921199511301507', '中国中山乐丰六路833号34栋', '1995-10-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7200128506', '董震南', 0, '16378228526', 0, '440921199501331100', '中国东莞珊瑚路984号44楼', '1995-05-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9972817417', '宋嘉伦', 1, '16535629114', 0, '440921199502022480', '中国北京市朝阳区三里屯路922号50栋', '1995-08-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4297615388', '熊秀英', 0, '16079350161', 0, '440921199522018276', '中国北京市朝阳区三里屯路60号华润大厦34室', '1995-07-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1633990353', '陆璐', 0, '19764303403', 0, '440921199500129315', '中国深圳罗湖区清水河一路185号华润大厦36室', '1995-11-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2602649127', '贾嘉伦', 0, '75588491742', 0, '440921199511218328', '中国深圳罗湖区清水河一路454号22楼', '1995-01-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1409696321', '韩云熙', 1, '109432097', 0, '440921199510326334', '中国北京市西城区西長安街691号华润大厦25室', '1995-07-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4904575204', '陈安琪', 0, '18474164905', 0, '440921199500131569', '中国上海市闵行区宾川路418号华润大厦6室', '1995-10-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7364097039', '胡安琪', 0, '75512262711', 0, '440921199521225768', '中国深圳罗湖区田贝一路919号28栋', '1995-02-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3956388450', '姜嘉伦', 1, '7604266384', 0, '440921199500031239', '中国中山京华商圈华夏街423号20楼', '1995-09-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7065007182', '薛致远', 0, '210465433', 0, '440921199510101417', '中国上海市黄浦区淮海中路367号32栋', '1995-07-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5900018647', '莫云熙', 0, '13958297182', 0, '440921199521307237', '中国上海市徐汇区虹桥路240号46栋', '1995-01-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5906270574', '贾子异', 1, '76932858967', 0, '440921199510111344', '中国东莞东泰五街959号42号楼', '1995-09-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9524132267', '邵嘉伦', 1, '102149906', 0, '440921199521212753', '中国北京市西城区西長安街455号2栋', '1995-10-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4165613988', '吕杰宏', 1, '2192364351', 0, '440921199501115280', '中国上海市黄浦区淮海中路35号14楼', '1995-11-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2154697728', '龙致远', 0, '2059997285', 0, '440921199502233258', '中国广州市海珠区江南西路956号华润大厦19室', '1995-06-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7104592339', '石詩涵', 0, '18330969703', 0, '440921199511006645', '中国深圳罗湖区清水河一路641号33栋', '1995-11-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8716385529', '丁璐', 1, '7695790505', 0, '440921199501120236', '中国东莞环区南街二巷649号29室', '1995-03-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8280491101', '陆宇宁', 1, '7558307175', 0, '440921199502023288', '中国深圳罗湖区蔡屋围深南东路953号华润大厦7室', '1995-11-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7995790740', '郭子异', 0, '2003316143', 0, '440921199512319343', '中国广州市白云区小坪东路397号26楼', '1995-06-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4376173405', '吕云熙', 0, '19966031396', 0, '440921199520237566', '中国东莞环区南街二巷247号22栋', '1995-10-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6458419716', '郭詩涵', 1, '16720419639', 0, '440921199500025238', '中国北京市朝阳区三里屯路632号26号楼', '1995-07-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4565770213', '胡晓明', 1, '16003424385', 0, '440921199522304853', '中国中山天河区大信商圈大信南路839号28楼', '1995-06-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8107227983', '唐安琪', 0, '13674058117', 0, '440921199512231994', '中国北京市房山区岳琉路111号1栋', '1995-10-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4320708970', '贾岚', 1, '16634068061', 0, '440921199511229679', '中国深圳罗湖区田贝一路997号21号楼', '1995-02-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2688721767', '邱致远', 0, '18690191397', 0, '440921199500221906', '中国中山紫马岭商圈中山五路209号47栋', '1995-06-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2219849863', '傅子韬', 1, '7556215988', 0, '440921199510125825', '中国深圳罗湖区田贝一路782号1号楼', '1995-02-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7640496884', '朱震南', 1, '17728345841', 0, '440921199502338071', '中国北京市東城区東直門內大街862号46号楼', '1995-08-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8004703390', '秦震南', 1, '16695142845', 0, '440921199500034255', '中国东莞坑美十五巷394号10室', '1995-05-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0889046442', '段岚', 0, '14416229775', 0, '440921199512033568', '中国北京市西城区复兴门内大街502号50号楼', '1995-02-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9324196419', '丁秀英', 0, '283331279', 0, '440921199502121282', '中国成都市成华区玉双路6号26号1室', '1995-08-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1146357766', '谢岚', 0, '7550480149', 0, '440921199500033439', '中国深圳福田区深南大道718号43室', '1995-04-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3889172918', '罗詩涵', 1, '13450689763', 0, '440921199520317691', '中国上海市浦东新区橄榄路558号39楼', '1995-06-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5138980144', '贺嘉伦', 0, '211166445', 0, '440921199521030097', '中国上海市闵行区宾川路548号华润大厦30室', '1995-09-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2846534600', '宋秀英', 0, '7605657127', 0, '440921199521008715', '中国中山天河区大信商圈大信南路330号43楼', '1995-02-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4956934389', '熊睿', 1, '19055741252', 0, '440921199521110086', '中国成都市锦江区红星路三段892号46楼', '1995-03-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5776507371', '崔杰宏', 1, '104621569', 0, '440921199511324923', '中国北京市海淀区清河中街68号223号华润大厦41室', '1995-02-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5354175281', '丁宇宁', 1, '284594107', 0, '440921199520117322', '中国成都市锦江区人民南路四段903号23楼', '1995-02-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7378905773', '严宇宁', 1, '16217274369', 0, '440921199502222369', '中国深圳罗湖区田贝一路812号41号楼', '1995-11-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8802501695', '武震南', 1, '13175156540', 0, '440921199502030731', '中国东莞坑美十五巷504号3室', '1995-07-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2323190521', '韩岚', 0, '13842547294', 0, '440921199522036063', '中国北京市西城区西長安街370号17楼', '1995-07-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1318046852', '龚詩涵', 1, '15381691617', 0, '440921199510107034', '中国深圳福田区景田东一街611号37栋', '1995-12-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6143150806', '姜震南', 1, '2093778443', 0, '440921199501302496', '中国广州市白云区机场路棠苑街五巷478号46楼', '1995-02-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5599096096', '陶震南', 1, '14433438688', 0, '440921199510322849', '中国广州市白云区小坪东路850号37室', '1995-08-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5921169804', '林睿', 1, '14316571935', 0, '440921199501200721', '中国上海市徐汇区虹桥路632号49室', '1995-09-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1951443754', '梁杰宏', 0, '1064282445', 0, '440921199502000610', '中国北京市西城区西長安街709号9号楼', '1995-03-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2095820079', '吴璐', 1, '1014840207', 0, '440921199512119698', '中国北京市房山区岳琉路44号华润大厦46室', '1995-02-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9011365855', '韩子异', 1, '14253035468', 0, '440921199512229425', '中国深圳罗湖区田贝一路297号3楼', '1995-04-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7738129567', '萧安琪', 0, '19817363753', 0, '440921199510332203', '中国深圳福田区景田东一街564号18号楼', '1995-12-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2692220468', '汤璐', 1, '13012721870', 0, '440921199521200802', '中国深圳罗湖区清水河一路768号45栋', '1995-05-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4793587885', '任致远', 1, '1053956199', 0, '440921199522102159', '中国北京市房山区岳琉路456号28号楼', '1995-05-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8529322882', '严致远', 1, '2887364297', 0, '440921199521214554', '中国成都市锦江区红星路三段261号42号楼', '1995-04-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5816426857', '韩子异', 0, '18961657223', 0, '440921199520207756', '中国上海市徐汇区虹桥路678号华润大厦14室', '1995-09-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9410726408', '段晓明', 1, '15394157874', 0, '440921199500016493', '中国北京市房山区岳琉路819号26室', '1995-09-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1820878638', '胡安琪', 0, '18260786106', 0, '440921199502302779', '中国成都市锦江区红星路三段16号11栋', '1995-03-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4748962088', '姚子异', 0, '13799664770', 0, '440921199510305406', '中国深圳龙岗区布吉镇西环路979号23楼', '1995-10-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7052388687', '孟震南', 1, '219396338', 0, '440921199522220561', '中国上海市徐汇区虹桥路80号13号楼', '1995-11-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1100608362', '段云熙', 0, '2848939241', 0, '440921199500324256', '中国成都市成华区二仙桥东三路403号39室', '1995-05-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7026815803', '黄子异', 1, '16168791862', 0, '440921199521134659', '中国中山紫马岭商圈中山五路975号26室', '1995-02-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8138240318', '顾杰宏', 0, '209310248', 0, '440921199512125097', '中国广州市白云区机场路棠苑街五巷241号46栋', '1995-03-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0844981498', '黄璐', 0, '13213700815', 0, '440921199510136119', '中国深圳福田区景田东一街86号华润大厦8室', '1995-04-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7465309822', '唐子韬', 1, '76983871835', 0, '440921199511118438', '中国东莞坑美十五巷111号10栋', '1995-01-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7506647058', '李晓明', 0, '17980592663', 0, '440921199520333959', '中国中山京华商圈华夏街868号26栋', '1995-10-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5582759401', '刘震南', 1, '15862403599', 0, '440921199511132630', '中国成都市成华区二仙桥东三路215号21号楼', '1995-01-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1045946924', '韦睿', 0, '7699528379', 0, '440921199511334956', '中国东莞环区南街二巷986号21号楼', '1995-08-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0167154596', '许子异', 0, '13352683786', 0, '440921199502130778', '中国深圳罗湖区清水河一路811号21楼', '1995-02-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9721625653', '梁子韬', 0, '15212432411', 0, '440921199521016672', '中国中山天河区大信商圈大信南路334号40号楼', '1995-01-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9151234946', '薛杰宏', 0, '19401754043', 0, '440921199520008645', '中国深圳龙岗区学园一巷563号26号楼', '1995-12-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0955152628', '孙岚', 1, '16424684303', 0, '440921199500027429', '中国广州市白云区机场路棠苑街五巷65号18号楼', '1995-07-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5705542434', '郑云熙', 0, '18162817369', 0, '440921199510234667', '中国上海市浦东新区橄榄路213号5室', '1995-04-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0737313379', '程詩涵', 0, '76090769197', 0, '440921199521337963', '中国中山天河区大信商圈大信南路121号20室', '1995-03-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7613189448', '谭詩涵', 1, '206501986', 0, '440921199511110039', '中国广州市海珠区江南西路834号1楼', '1995-04-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8460286510', '薛子韬', 0, '13089857283', 0, '440921199510202859', '中国北京市西城区西長安街772号8栋', '1995-04-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5143856143', '董岚', 0, '2860412773', 0, '440921199500128226', '中国成都市锦江区人民南路四段893号华润大厦47室', '1995-05-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8107843261', '傅震南', 0, '16295875521', 0, '440921199521121728', '中国深圳罗湖区清水河一路777号华润大厦19室', '1995-02-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2077393211', '武晓明', 0, '19339319027', 0, '440921199502120719', '中国深圳福田区深南大道92号36楼', '1995-08-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3480032845', '邵子韬', 1, '212012008', 0, '440921199520225531', '中国上海市黄浦区淮海中路866号5栋', '1995-02-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3318299316', '武秀英', 1, '14406900268', 0, '440921199520237259', '中国北京市海淀区清河中街68号456号12室', '1995-06-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4894094226', '何晓明', 0, '7553764775', 0, '440921199521034709', '中国深圳罗湖区清水河一路976号华润大厦13室', '1995-07-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3619652416', '罗秀英', 0, '17311068137', 0, '440921199510235213', '中国北京市房山区岳琉路92号华润大厦10室', '1995-11-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5113853250', '邓晓明', 0, '13707877369', 0, '440921199502304638', '中国北京市東城区東直門內大街780号25栋', '1995-04-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7310918062', '常晓明', 1, '13620256900', 0, '440921199512109275', '中国广州市海珠区江南西路14号25楼', '1995-02-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5074145800', '毛晓明', 0, '7552521210', 0, '440921199510017521', '中国深圳罗湖区田贝一路782号13楼', '1995-05-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2492415622', '方秀英', 1, '1043594874', 0, '440921199502106695', '中国北京市東城区東直門內大街776号华润大厦1室', '1995-12-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4258519803', '田致远', 0, '14141448476', 0, '440921199511314643', '中国广州市天河区天河路516号50号楼', '1995-04-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1967106392', '许秀英', 0, '2095099169', 0, '440921199501303449', '中国广州市海珠区江南西路278号10室', '1995-05-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2306430605', '毛晓明', 0, '2180125522', 0, '440921199500313311', '中国上海市徐汇区虹桥路208号45栋', '1995-11-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6115881238', '范安琪', 1, '17908950123', 0, '440921199510126540', '中国东莞坑美十五巷683号华润大厦12室', '1995-04-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1605461927', '丁杰宏', 0, '18018936027', 0, '440921199512115754', '中国深圳龙岗区布吉镇西环路190号11室', '1995-06-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7551638616', '廖嘉伦', 0, '1095423967', 0, '440921199520203310', '中国北京市朝阳区三里屯路113号华润大厦26室', '1995-09-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3531919732', '潘璐', 1, '217990567', 0, '440921199502207103', '中国上海市浦东新区健祥路167号43栋', '1995-04-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8451704699', '段秀英', 0, '76995030633', 0, '440921199520123591', '中国东莞东泰五街124号16号楼', '1995-01-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0145438468', '蒋子韬', 1, '18001869925', 0, '440921199521110990', '中国北京市朝阳区三里屯路26号6楼', '1995-08-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1626785606', '谭安琪', 0, '14241237211', 0, '440921199522028523', '中国东莞坑美十五巷235号华润大厦24室', '1995-01-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9130410822', '傅安琪', 1, '14210422189', 0, '440921199500011269', '中国东莞坑美十五巷505号11栋', '1995-11-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9272847760', '莫詩涵', 0, '7559359437', 0, '440921199500315986', '中国深圳罗湖区清水河一路882号40室', '1995-03-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4158939756', '吕云熙', 0, '19379328021', 0, '440921199511108131', '中国北京市东城区东单王府井东街860号1号楼', '1995-03-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9235895644', '吕致远', 1, '2184200842', 0, '440921199501004194', '中国上海市徐汇区虹桥路472号3楼', '1995-08-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9333525102', '曹致远', 0, '14920496222', 0, '440921199501011736', '中国广州市越秀区中山二路676号47楼', '1995-12-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1968474786', '郭岚', 0, '19594552992', 0, '440921199510303181', '中国东莞坑美十五巷227号28楼', '1995-02-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0126763433', '邹宇宁', 0, '19841108278', 0, '440921199500316474', '中国成都市锦江区红星路三段637号46栋', '1995-01-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0293188363', '侯震南', 0, '19791269073', 0, '440921199500113018', '中国上海市浦东新区橄榄路726号7楼', '1995-02-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6718457013', '莫安琪', 0, '75579137210', 0, '440921199521122808', '中国深圳罗湖区清水河一路3号20室', '1995-06-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2504079279', '陶云熙', 0, '16722931847', 0, '440921199512113857', '中国北京市朝阳区三里屯路571号40栋', '1995-02-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0518976929', '林云熙', 0, '19422682683', 0, '440921199522207968', '中国深圳龙岗区布吉镇西环路900号39室', '1995-10-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7090153473', '史杰宏', 1, '19507909016', 0, '440921199521311230', '中国上海市浦东新区橄榄路160号50栋', '1995-02-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1909617977', '郭嘉伦', 0, '18946561269', 0, '440921199520210881', '中国北京市延庆区028县道719号华润大厦10室', '1995-01-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5507446123', '戴安琪', 1, '280234811', 0, '440921199502228190', '中国成都市成华区二仙桥东三路33号49栋', '1995-09-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8241853688', '黄岚', 1, '2143874625', 0, '440921199522137168', '中国上海市浦东新区健祥路39号1栋', '1995-09-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0241355643', '顾安琪', 1, '285471020', 0, '440921199510229123', '中国成都市成华区二仙桥东三路365号华润大厦28室', '1995-10-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3084490278', '孙云熙', 1, '75597255591', 0, '440921199500019132', '中国深圳罗湖区田贝一路880号32栋', '1995-01-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2569850529', '崔云熙', 0, '2042431644', 0, '440921199502237871', '中国广州市越秀区中山二路868号17室', '1995-03-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6176727237', '郑嘉伦', 1, '17991320294', 0, '440921199510039059', '中国成都市成华区玉双路6号229号3楼', '1995-04-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3359610839', '马璐', 1, '104418922', 0, '440921199502321722', '中国北京市东城区东单王府井东街540号34楼', '1995-07-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6564292567', '胡晓明', 0, '2008909116', 0, '440921199520229184', '中国广州市海珠区江南西路169号27室', '1995-07-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3418007530', '向安琪', 1, '15213333317', 0, '440921199501215808', '中国北京市西城区西長安街755号34号楼', '1995-12-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6505285600', '胡子韬', 1, '1077677721', 0, '440921199510124662', '中国北京市延庆区028县道143号12栋', '1995-10-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9868004010', '段秀英', 0, '16260194669', 0, '440921199510023989', '中国北京市东城区东单王府井东街610号50号楼', '1995-01-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0542054160', '宋宇宁', 1, '1061155389', 0, '440921199511208730', '中国北京市房山区岳琉路844号42楼', '1995-05-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0602643729', '叶睿', 0, '13810171580', 0, '440921199500136925', '中国深圳罗湖区田贝一路999号30栋', '1995-09-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0955370668', '蔡秀英', 0, '1008711819', 0, '440921199501136868', '中国北京市東城区東直門內大街228号18室', '1995-12-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6388264440', '毛嘉伦', 0, '14263963779', 0, '440921199520209792', '中国成都市锦江区红星路三段599号华润大厦21室', '1995-05-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2148636631', '谢云熙', 1, '19043085248', 0, '440921199522131040', '中国北京市东城区东单王府井东街678号36楼', '1995-06-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8503514125', '王云熙', 1, '14674066455', 0, '440921199510308769', '中国成都市成华区双庆路862号36栋', '1995-01-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9813592997', '孙詩涵', 1, '14155093697', 0, '440921199500009539', '中国深圳罗湖区蔡屋围深南东路714号华润大厦40室', '1995-09-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0872451950', '钟宇宁', 0, '19064519241', 0, '440921199520305787', '中国北京市東城区東直門內大街989号2楼', '1995-01-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4638938231', '谭璐', 1, '16337841652', 0, '440921199522027840', '中国成都市锦江区人民南路四段871号11栋', '1995-05-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5136124649', '戴安琪', 1, '75596146532', 0, '440921199522127087', '中国深圳福田区深南大道254号19号楼', '1995-12-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5332840076', '谭子韬', 0, '16001838299', 0, '440921199500006929', '中国中山天河区大信商圈大信南路15号43栋', '1995-01-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1416997421', '段安琪', 1, '212861462', 0, '440921199502015237', '中国上海市浦东新区健祥路41号33号楼', '1995-10-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2469975181', '赵睿', 1, '14564537114', 0, '440921199522219249', '中国上海市徐汇区虹桥路436号华润大厦36室', '1995-09-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9691491638', '沈秀英', 1, '18431580699', 0, '440921199510138839', '中国成都市锦江区红星路三段30号华润大厦40室', '1995-06-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9640274009', '顾震南', 0, '76926417905', 0, '440921199501228266', '中国东莞东泰五街451号华润大厦22室', '1995-08-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8968550789', '武璐', 0, '287591472', 0, '440921199502331494', '中国成都市成华区二仙桥东三路452号华润大厦47室', '1995-12-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7485102734', '黎宇宁', 0, '19252242296', 0, '440921199510234475', '中国成都市锦江区红星路三段859号26楼', '1995-01-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5924489430', '李嘉伦', 1, '16394644738', 0, '440921199502216544', '中国广州市越秀区中山二路149号20栋', '1995-02-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8940548144', '孔晓明', 1, '202685391', 0, '440921199510235208', '中国广州市越秀区中山二路673号23号楼', '1995-12-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0517235494', '吴致远', 0, '107258236', 0, '440921199512034761', '中国北京市朝阳区三里屯路475号38号楼', '1995-11-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5944348317', '段睿', 1, '282320040', 0, '440921199501209120', '中国成都市锦江区人民南路四段753号41栋', '1995-09-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4476406809', '顾睿', 1, '2864981231', 0, '440921199521310012', '中国成都市成华区双庆路803号32楼', '1995-08-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0528262513', '郝致远', 1, '19430603108', 0, '440921199512026057', '中国成都市锦江区人民南路四段315号18号楼', '1995-09-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2786105782', '田岚', 0, '287243710', 0, '440921199512033693', '中国成都市成华区玉双路6号737号28栋', '1995-08-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8033412457', '邹震南', 1, '18258463784', 0, '440921199510029875', '中国广州市天河区天河路471号华润大厦39室', '1995-10-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3011616434', '谭震南', 1, '2869836959', 0, '440921199501222566', '中国成都市成华区二仙桥东三路289号33号楼', '1995-06-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1182825170', '赵杰宏', 1, '75539974796', 0, '440921199511012752', '中国深圳罗湖区田贝一路715号华润大厦47室', '1995-02-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4773269758', '方安琪', 0, '214103822', 0, '440921199520312501', '中国上海市浦东新区橄榄路513号2栋', '1995-10-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0918560505', '汪秀英', 0, '206673481', 0, '440921199502139271', '中国广州市天河区天河路776号16栋', '1995-04-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8297035122', '周杰宏', 1, '14722855267', 0, '440921199502328706', '中国北京市西城区复兴门内大街406号37室', '1995-11-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3576922966', '武岚', 0, '1021842874', 0, '440921199521112359', '中国北京市延庆区028县道951号6号楼', '1995-07-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2359277879', '丁杰宏', 0, '7554797153', 0, '440921199511323508', '中国深圳罗湖区蔡屋围深南东路436号43室', '1995-03-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2291897756', '唐岚', 1, '16558801412', 0, '440921199502300951', '中国上海市浦东新区健祥路607号24栋', '1995-04-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6352979402', '段詩涵', 1, '2170990126', 0, '440921199522106418', '中国上海市徐汇区虹桥路155号27号楼', '1995-09-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1063132120', '彭睿', 0, '19343447149', 0, '440921199501102668', '中国深圳罗湖区蔡屋围深南东路180号44室', '1995-03-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8793914955', '胡震南', 0, '14042599153', 0, '440921199520038517', '中国北京市海淀区清河中街68号698号华润大厦22室', '1995-02-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3498780071', '严睿', 1, '16563278443', 0, '440921199511225174', '中国深圳龙岗区学园一巷728号4栋', '1995-12-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4114076179', '高秀英', 1, '7691807629', 0, '440921199522132053', '中国东莞坑美十五巷897号6栋', '1995-08-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9665500010', '杜璐', 0, '106054411', 0, '440921199521331144', '中国北京市延庆区028县道252号46号楼', '1995-05-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0438306624', '金云熙', 0, '18994521306', 0, '440921199510038356', '中国上海市浦东新区橄榄路379号27室', '1995-01-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2427796712', '蒋杰宏', 1, '18978035232', 0, '440921199500027751', '中国广州市白云区机场路棠苑街五巷130号华润大厦47室', '1995-02-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8055304430', '梁睿', 1, '16820397277', 0, '440921199522317456', '中国深圳罗湖区田贝一路407号40栋', '1995-07-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8679981803', '徐詩涵', 1, '13034564783', 0, '440921199520324546', '中国东莞坑美十五巷215号11栋', '1995-09-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6126538598', '杨嘉伦', 1, '289929419', 0, '440921199522107251', '中国成都市成华区双庆路948号22楼', '1995-05-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5373656985', '汪致远', 1, '1007033639', 0, '440921199510005664', '中国北京市西城区复兴门内大街656号40栋', '1995-02-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8990113285', '龙子韬', 1, '7556421469', 0, '440921199520038346', '中国深圳罗湖区清水河一路765号25号楼', '1995-07-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6848600534', '彭震南', 1, '1076051256', 0, '440921199522017961', '中国北京市西城区西長安街193号华润大厦13室', '1995-02-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3178203592', '向詩涵', 1, '1068200065', 0, '440921199511134610', '中国北京市房山区岳琉路81号华润大厦47室', '1995-10-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1847944326', '郝詩涵', 1, '75592930102', 0, '440921199522328258', '中国深圳罗湖区蔡屋围深南东路584号9楼', '1995-11-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5917136464', '戴宇宁', 0, '7551343476', 0, '440921199510203675', '中国深圳龙岗区布吉镇西环路948号20栋', '1995-02-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8359688195', '孟璐', 0, '103458684', 0, '440921199501334544', '中国北京市朝阳区三里屯路140号34楼', '1995-04-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5958220897', '严致远', 0, '76016304559', 0, '440921199511125404', '中国中山乐丰六路683号34栋', '1995-12-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7584990725', '毛云熙', 1, '285125411', 0, '440921199521131151', '中国成都市锦江区人民南路四段469号5栋', '1995-03-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6441337245', '顾璐', 1, '17266503763', 0, '440921199500220330', '中国成都市锦江区人民南路四段593号47号楼', '1995-01-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5071174117', '常詩涵', 0, '218455171', 0, '440921199512119288', '中国上海市黄浦区淮海中路368号华润大厦35室', '1995-01-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2254883194', '蔡晓明', 1, '1014080741', 0, '440921199501123480', '中国北京市西城区西長安街387号49栋', '1995-12-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3327873080', '莫璐', 0, '14449742507', 0, '440921199512114943', '中国成都市成华区二仙桥东三路963号华润大厦17室', '1995-04-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6782160535', '韩安琪', 1, '18730995959', 0, '440921199502003604', '中国广州市白云区机场路棠苑街五巷887号41栋', '1995-06-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6400462526', '武致远', 1, '1070778358', 0, '440921199502117438', '中国北京市東城区東直門內大街918号6号楼', '1995-11-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1828933787', '夏璐', 1, '76033088830', 0, '440921199522004014', '中国中山乐丰六路895号华润大厦22室', '1995-11-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0100709783', '阎致远', 0, '13106789989', 0, '440921199521010022', '中国东莞坑美十五巷615号9楼', '1995-10-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1747337550', '顾詩涵', 1, '1020835932', 0, '440921199511233465', '中国北京市海淀区清河中街68号927号华润大厦17室', '1995-08-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5667396205', '钟秀英', 1, '217428333', 0, '440921199500039933', '中国上海市徐汇区虹桥路395号华润大厦47室', '1995-05-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1968586420', '顾致远', 1, '16184079406', 0, '440921199500331249', '中国北京市东城区东单王府井东街17号34楼', '1995-09-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4327390418', '曾云熙', 1, '19308075742', 0, '440921199501217679', '中国深圳龙岗区学园一巷228号17栋', '1995-09-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2035757907', '叶震南', 0, '18784515832', 0, '440921199500034438', '中国深圳罗湖区田贝一路48号43号楼', '1995-12-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6678063526', '董岚', 1, '13306560339', 0, '440921199510335333', '中国中山京华商圈华夏街495号36楼', '1995-09-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7103560180', '钟杰宏', 0, '17457951617', 0, '440921199512121450', '中国广州市白云区机场路棠苑街五巷262号40室', '1995-05-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7665618594', '韦致远', 1, '16951626943', 0, '440921199511231529', '中国成都市锦江区红星路三段177号6室', '1995-03-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7078854467', '段致远', 1, '19960914514', 0, '440921199512201617', '中国上海市浦东新区健祥路169号16号楼', '1995-01-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2933634798', '龚詩涵', 1, '76957636858', 0, '440921199522333357', '中国东莞环区南街二巷202号1楼', '1995-04-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2799350093', '林詩涵', 1, '75514878600', 0, '440921199502100485', '中国深圳龙岗区学园一巷883号33号楼', '1995-08-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5996438125', '董嘉伦', 1, '75591766730', 0, '440921199520237805', '中国深圳龙岗区布吉镇西环路886号10楼', '1995-09-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0286381056', '吕云熙', 1, '16250955932', 0, '440921199521024366', '中国成都市成华区双庆路380号12室', '1995-07-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4651090534', '胡秀英', 1, '7693073930', 0, '440921199502132462', '中国东莞坑美十五巷166号18栋', '1995-12-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6224776795', '吴安琪', 0, '7607664180', 0, '440921199520000942', '中国中山紫马岭商圈中山五路866号4室', '1995-12-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3271841202', '熊晓明', 1, '7697108504', 0, '440921199501330126', '中国东莞珊瑚路211号24楼', '1995-09-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9946863596', '严秀英', 1, '18203121679', 0, '440921199502039572', '中国成都市成华区二仙桥东三路427号45楼', '1995-01-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6525651933', '熊子韬', 0, '2033756400', 0, '440921199502035033', '中国广州市白云区机场路棠苑街五巷787号23栋', '1995-06-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9323997176', '史杰宏', 0, '76950381888', 0, '440921199521117260', '中国东莞环区南街二巷560号15室', '1995-01-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9110890762', '贺子异', 0, '288340787', 0, '440921199502014436', '中国成都市成华区双庆路404号27栋', '1995-03-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2825001428', '武杰宏', 0, '17984384100', 0, '440921199512235924', '中国深圳罗湖区田贝一路543号47楼', '1995-10-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5436100982', '崔震南', 0, '15390674780', 0, '440921199511134804', '中国北京市西城区西長安街521号34号楼', '1995-09-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6281951819', '段秀英', 1, '213346507', 0, '440921199500336550', '中国上海市浦东新区健祥路193号华润大厦20室', '1995-02-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9747972424', '龚嘉伦', 0, '18000033328', 0, '440921199500108363', '中国北京市西城区复兴门内大街539号21室', '1995-12-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9414629569', '贺嘉伦', 0, '102359469', 0, '440921199521303132', '中国北京市房山区岳琉路365号华润大厦19室', '1995-01-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2578609407', '黎安琪', 1, '14007868013', 0, '440921199511010301', '中国深圳福田区景田东一街75号4楼', '1995-07-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0754213339', '马子异', 1, '104708363', 0, '440921199500128572', '中国北京市海淀区清河中街68号596号15楼', '1995-06-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4623008040', '孟子韬', 1, '2146066218', 0, '440921199521330453', '中国上海市黄浦区淮海中路600号华润大厦42室', '1995-03-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7137546863', '徐子韬', 1, '17615068086', 0, '440921199511228696', '中国东莞东泰五街902号华润大厦32室', '1995-06-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7222890258', '钟宇宁', 0, '15347251682', 0, '440921199520135174', '中国深圳福田区深南大道490号1楼', '1995-09-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4075805395', '陈云熙', 0, '105527372', 0, '440921199512220266', '中国北京市朝阳区三里屯路401号34栋', '1995-12-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0990898475', '邵杰宏', 0, '75598235087', 0, '440921199502332279', '中国深圳罗湖区田贝一路137号华润大厦3室', '1995-08-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9721728448', '蔡安琪', 0, '17402964884', 0, '440921199500139611', '中国深圳龙岗区学园一巷762号27号楼', '1995-12-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4217558137', '田震南', 1, '76054046118', 0, '440921199501128391', '中国中山天河区大信商圈大信南路959号32楼', '1995-11-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4530720351', '阎子异', 0, '17481498547', 0, '440921199522306432', '中国广州市海珠区江南西路100号50号楼', '1995-01-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6732421051', '林震南', 0, '288154982', 0, '440921199522228138', '中国成都市成华区双庆路824号华润大厦1室', '1995-08-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5328204178', '韦震南', 0, '14902289851', 0, '440921199520012231', '中国上海市浦东新区橄榄路267号41室', '1995-04-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5836111413', '徐杰宏', 1, '1084937935', 0, '440921199511134647', '中国北京市东城区东单王府井东街954号47栋', '1995-12-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7863664024', '金嘉伦', 1, '14081783880', 0, '440921199510106185', '中国北京市朝阳区三里屯路672号30号楼', '1995-06-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6214007885', '常岚', 1, '17400115146', 0, '440921199500217237', '中国北京市东城区东单王府井东街555号49栋', '1995-04-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0253199645', '梁震南', 0, '19279142727', 0, '440921199500237390', '中国北京市延庆区028县道328号34栋', '1995-11-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3164371172', '赵詩涵', 1, '2099287358', 0, '440921199502318120', '中国广州市天河区天河路395号7栋', '1995-06-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4364299376', '郭璐', 0, '75557785607', 0, '440921199522039669', '中国深圳福田区景田东一街992号23室', '1995-11-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1986683133', '金嘉伦', 1, '15431708699', 0, '440921199512127784', '中国深圳龙岗区学园一巷895号49室', '1995-02-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3415250840', '丁岚', 1, '16366833736', 0, '440921199502038999', '中国北京市东城区东单王府井东街680号39室', '1995-02-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2425593024', '卢杰宏', 0, '204355030', 0, '440921199500224323', '中国广州市海珠区江南西路362号16楼', '1995-01-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8844920081', '黄岚', 0, '14699411011', 0, '440921199510005466', '中国成都市锦江区红星路三段876号50栋', '1995-09-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0851038900', '戴璐', 0, '13993163641', 0, '440921199522231687', '中国中山紫马岭商圈中山五路865号47栋', '1995-03-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6882367384', '邵嘉伦', 0, '17497925873', 0, '440921199520230248', '中国深圳福田区深南大道443号44栋', '1995-04-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2153584956', '阎致远', 1, '76008003863', 0, '440921199512033441', '中国中山乐丰六路490号41楼', '1995-12-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7735731938', '邱震南', 1, '7696976889', 0, '440921199512335706', '中国东莞坑美十五巷717号43号楼', '1995-10-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8493463589', '曾詩涵', 1, '2079538486', 0, '440921199511034678', '中国广州市天河区天河路535号11室', '1995-05-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1715101708', '莫杰宏', 1, '7550249976', 0, '440921199521202891', '中国深圳罗湖区蔡屋围深南东路226号35栋', '1995-06-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1317349944', '孙嘉伦', 1, '15587053666', 0, '440921199520320905', '中国上海市浦东新区橄榄路451号3楼', '1995-03-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0757033686', '方宇宁', 1, '2161755598', 0, '440921199521204463', '中国上海市徐汇区虹桥路250号2室', '1995-03-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1006143044', '毛璐', 1, '15574711162', 0, '440921199511212698', '中国北京市海淀区清河中街68号593号15室', '1995-09-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2939646597', '向岚', 1, '13466411543', 0, '440921199510202407', '中国上海市徐汇区虹桥路198号44栋', '1995-08-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7748905254', '孟安琪', 1, '19053845224', 0, '440921199500229596', '中国上海市浦东新区健祥路109号19楼', '1995-10-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0099357068', '杜璐', 1, '19773340906', 0, '440921199521023336', '中国中山京华商圈华夏街881号36栋', '1995-12-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2691348110', '龙璐', 1, '14884397402', 0, '440921199502029873', '中国成都市锦江区人民南路四段160号华润大厦5室', '1995-09-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5405671261', '郑岚', 0, '13886510206', 0, '440921199521210938', '中国北京市朝阳区三里屯路969号18栋', '1995-03-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2557507475', '宋嘉伦', 1, '7558901595', 0, '440921199522336364', '中国深圳福田区景田东一街644号16号楼', '1995-08-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0244361837', '韩睿', 1, '76944452391', 0, '440921199511136085', '中国东莞东泰五街111号18楼', '1995-01-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0528323974', '韦子韬', 0, '19413503318', 0, '440921199502117021', '中国中山天河区大信商圈大信南路88号8号楼', '1995-08-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7678160527', '韩詩涵', 0, '15515198641', 0, '440921199501131509', '中国广州市越秀区中山二路348号14楼', '1995-11-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3417309580', '汤秀英', 0, '104494191', 0, '440921199501111140', '中国北京市延庆区028县道440号37室', '1995-04-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1030488111', '邹詩涵', 1, '14430290164', 0, '440921199501106850', '中国深圳龙岗区学园一巷167号华润大厦2室', '1995-07-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3816714832', '汪安琪', 0, '13712872748', 0, '440921199520120755', '中国深圳龙岗区学园一巷899号4室', '1995-05-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3923775594', '谭岚', 1, '17412943064', 0, '440921199520025156', '中国成都市成华区二仙桥东三路326号11栋', '1995-08-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6638020576', '薛睿', 0, '14964608025', 0, '440921199500216868', '中国中山京华商圈华夏街137号华润大厦12室', '1995-06-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4139502137', '汤睿', 1, '7555321727', 0, '440921199522231873', '中国深圳福田区深南大道616号24号楼', '1995-12-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9599859071', '王震南', 1, '287472493', 0, '440921199500216312', '中国成都市锦江区红星路三段201号华润大厦47室', '1995-03-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2393637635', '曹子异', 1, '18116674980', 0, '440921199510013941', '中国北京市朝阳区三里屯路572号43栋', '1995-12-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1929959604', '陆子异', 0, '207411581', 0, '440921199502226411', '中国广州市海珠区江南西路223号华润大厦49室', '1995-05-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4753029305', '薛宇宁', 0, '2805972174', 0, '440921199501111981', '中国成都市成华区玉双路6号64号23号楼', '1995-04-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1610630529', '潘子韬', 1, '19933233565', 0, '440921199502106085', '中国广州市白云区机场路棠苑街五巷920号8楼', '1995-09-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8278858975', '胡安琪', 1, '17629955790', 0, '440921199522112856', '中国广州市白云区小坪东路18号19室', '1995-02-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9344329400', '周睿', 0, '17359606953', 0, '440921199500009690', '中国广州市白云区小坪东路196号30号楼', '1995-01-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2651955383', '姚云熙', 0, '15986797680', 0, '440921199522203826', '中国广州市天河区天河路330号华润大厦49室', '1995-12-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0719771398', '马晓明', 1, '17352348251', 0, '440921199521224761', '中国北京市西城区西長安街20号5楼', '1995-07-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5142189467', '罗震南', 0, '1002729978', 0, '440921199500112592', '中国北京市東城区東直門內大街892号华润大厦28室', '1995-02-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4689947917', '宋致远', 0, '7557104662', 0, '440921199512117962', '中国深圳龙岗区布吉镇西环路664号13号楼', '1995-05-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7365280502', '贾杰宏', 0, '2005022772', 0, '440921199502234013', '中国广州市白云区小坪东路999号华润大厦32室', '1995-03-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3805456037', '武睿', 0, '101502048', 0, '440921199510210863', '中国北京市海淀区清河中街68号258号48楼', '1995-01-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8857910459', '罗云熙', 1, '19318264004', 0, '440921199520231532', '中国深圳罗湖区田贝一路207号48号楼', '1995-02-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2791445966', '姚子韬', 0, '16945375745', 0, '440921199510300444', '中国北京市西城区复兴门内大街310号10室', '1995-11-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3495287789', '魏岚', 0, '75583941004', 0, '440921199520025762', '中国深圳罗湖区田贝一路582号35栋', '1995-07-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2387665094', '武晓明', 0, '16858590556', 0, '440921199510000426', '中国深圳罗湖区蔡屋围深南东路332号31号楼', '1995-05-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5529663030', '袁詩涵', 0, '18733035265', 0, '440921199510200421', '中国北京市朝阳区三里屯路398号46栋', '1995-07-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1470794266', '卢晓明', 0, '2038819840', 0, '440921199502317115', '中国广州市越秀区中山二路912号14楼', '1995-03-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7085174047', '龙岚', 1, '7552815707', 0, '440921199512234223', '中国深圳福田区深南大道965号36号楼', '1995-11-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8421988046', '钟宇宁', 1, '76964819658', 0, '440921199501101070', '中国东莞坑美十五巷75号28栋', '1995-10-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4275718018', '邓杰宏', 0, '19258354624', 0, '440921199500122053', '中国北京市东城区东单王府井东街747号6栋', '1995-10-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2053880921', '姚晓明', 0, '14716155165', 0, '440921199521026718', '中国深圳龙岗区学园一巷200号14栋', '1995-08-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2974795265', '邓岚', 1, '204760427', 0, '440921199520316040', '中国广州市白云区小坪东路93号42楼', '1995-04-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6064647159', '顾云熙', 0, '19379854740', 0, '440921199501007254', '中国北京市東城区東直門內大街754号24栋', '1995-11-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0778003732', '秦宇宁', 1, '14937889028', 0, '440921199522013357', '中国上海市浦东新区橄榄路477号32栋', '1995-05-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7818560090', '田杰宏', 1, '19330370428', 0, '440921199500304323', '中国中山紫马岭商圈中山五路413号6室', '1995-06-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6462721526', '程秀英', 0, '75538653391', 0, '440921199512229734', '中国深圳龙岗区学园一巷541号33室', '1995-01-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3470605027', '韦晓明', 0, '2044597961', 0, '440921199501202109', '中国广州市白云区机场路棠苑街五巷144号35楼', '1995-06-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2375108445', '余子韬', 0, '14887856461', 0, '440921199521200793', '中国北京市西城区复兴门内大街339号23楼', '1995-08-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1292313306', '毛嘉伦', 1, '17817046636', 0, '440921199500107613', '中国上海市黄浦区淮海中路953号华润大厦47室', '1995-01-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9171056470', '李安琪', 0, '203816397', 0, '440921199512237515', '中国广州市天河区天河路783号27号楼', '1995-04-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1381299069', '张云熙', 0, '18227683038', 0, '440921199501236322', '中国北京市延庆区028县道484号18室', '1995-02-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4664020922', '夏秀英', 0, '7559175751', 0, '440921199520036521', '中国深圳龙岗区布吉镇西环路912号33号楼', '1995-06-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8541156719', '谢致远', 1, '7699663610', 0, '440921199521109878', '中国东莞东泰五街421号45室', '1995-03-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2745937449', '邹岚', 1, '287308587', 0, '440921199510004826', '中国成都市成华区二仙桥东三路228号50室', '1995-11-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8258470327', '江嘉伦', 0, '18737952013', 0, '440921199520110217', '中国上海市浦东新区橄榄路984号45楼', '1995-11-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9891288433', '许嘉伦', 0, '19883249019', 0, '440921199511333275', '中国上海市黄浦区淮海中路872号2号楼', '1995-08-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7815728179', '邵睿', 0, '17835332332', 0, '440921199522020055', '中国北京市西城区西長安街688号21号楼', '1995-12-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5539219490', '曾岚', 0, '1076887645', 0, '440921199511311294', '中国北京市西城区西長安街219号35号楼', '1995-12-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7273580139', '贺震南', 1, '288086651', 0, '440921199501222764', '中国成都市锦江区红星路三段186号27室', '1995-08-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1851076810', '孙秀英', 1, '103791560', 0, '440921199520037899', '中国北京市西城区西長安街601号37室', '1995-12-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8481097404', '朱子异', 1, '203240328', 0, '440921199500202788', '中国广州市海珠区江南西路174号48号楼', '1995-11-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8530874673', '严杰宏', 1, '106866446', 0, '440921199500228962', '中国北京市西城区西長安街947号48室', '1995-04-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8258760100', '萧睿', 1, '76978210342', 0, '440921199512335074', '中国东莞环区南街二巷534号15室', '1995-11-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7362714189', '王嘉伦', 1, '19214679071', 0, '440921199510302262', '中国北京市朝阳区三里屯路915号48室', '1995-03-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4905013646', '沈晓明', 1, '18539861246', 0, '440921199512210082', '中国北京市西城区西長安街463号25楼', '1995-11-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6759679923', '孔宇宁', 0, '18276321351', 0, '440921199501035838', '中国东莞环区南街二巷819号华润大厦9室', '1995-10-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6722568938', '史秀英', 0, '15046935284', 0, '440921199511316281', '中国东莞环区南街二巷42号10室', '1995-03-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0718034228', '梁璐', 0, '16962676089', 0, '440921199522103856', '中国东莞珊瑚路436号38栋', '1995-11-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0996204090', '邹璐', 0, '16753464137', 0, '440921199500330912', '中国北京市東城区東直門內大街982号13楼', '1995-07-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0368359861', '谢秀英', 1, '14523631753', 0, '440921199500312234', '中国上海市浦东新区健祥路682号16楼', '1995-01-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0966998996', '杜岚', 1, '14134728849', 0, '440921199520338012', '中国广州市白云区机场路棠苑街五巷536号26号楼', '1995-12-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7945737078', '贾晓明', 1, '286862443', 0, '440921199521327352', '中国成都市成华区双庆路421号44室', '1995-06-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7670941939', '吴晓明', 0, '1039396422', 0, '440921199522233550', '中国北京市延庆区028县道73号47号楼', '1995-03-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1644688717', '蔡致远', 1, '203845492', 0, '440921199512101065', '中国广州市天河区天河路67号10室', '1995-08-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2200931626', '方致远', 1, '13778590639', 0, '440921199521220347', '中国广州市白云区机场路棠苑街五巷381号46楼', '1995-09-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7232256323', '梁震南', 1, '7694765448', 0, '440921199522231426', '中国东莞东泰五街817号32室', '1995-09-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8017974129', '方詩涵', 0, '17983531692', 0, '440921199521200586', '中国广州市白云区机场路棠苑街五巷119号43栋', '1995-05-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2586971161', '秦晓明', 1, '19410620748', 0, '440921199521225916', '中国北京市朝阳区三里屯路157号19号楼', '1995-03-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6985634644', '陶子异', 0, '18739845420', 0, '440921199500208134', '中国上海市浦东新区橄榄路97号21号楼', '1995-06-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7296131906', '孔子韬', 0, '76003017271', 0, '440921199521309908', '中国中山乐丰六路154号6号楼', '1995-06-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2505788602', '杨秀英', 1, '17322619124', 0, '440921199501135919', '中国东莞坑美十五巷927号47室', '1995-04-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9447435474', '田子韬', 1, '75511940551', 0, '440921199521139661', '中国深圳龙岗区布吉镇西环路312号39栋', '1995-02-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7876960961', '袁子韬', 1, '75510220986', 0, '440921199510113392', '中国深圳福田区景田东一街673号45栋', '1995-11-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7300786763', '程秀英', 1, '13926797858', 0, '440921199520226801', '中国北京市東城区東直門內大街636号28楼', '1995-08-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8232439257', '罗岚', 1, '7559134147', 0, '440921199522206872', '中国深圳罗湖区蔡屋围深南东路286号43室', '1995-09-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4117818865', '孙岚', 0, '107409887', 0, '440921199501104934', '中国北京市延庆区028县道244号7楼', '1995-01-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4626471649', '段安琪', 0, '1003019803', 0, '440921199521230474', '中国北京市海淀区清河中街68号675号华润大厦21室', '1995-02-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9721655018', '杨致远', 0, '7552424073', 0, '440921199512127521', '中国深圳福田区景田东一街723号华润大厦15室', '1995-07-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3010262591', '韩安琪', 0, '14497018477', 0, '440921199511209014', '中国北京市西城区西長安街699号36楼', '1995-08-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3623184648', '傅睿', 0, '75515890129', 0, '440921199520324728', '中国深圳罗湖区田贝一路507号46栋', '1995-05-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7815017038', '邓宇宁', 0, '103263799', 0, '440921199510238599', '中国北京市延庆区028县道959号24室', '1995-11-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1539522371', '武宇宁', 0, '281890714', 0, '440921199522135716', '中国成都市锦江区红星路三段512号33号楼', '1995-07-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7735603998', '刘致远', 1, '15018865079', 0, '440921199522202177', '中国成都市成华区玉双路6号751号41栋', '1995-09-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9239641261', '罗子韬', 1, '2843709134', 0, '440921199510300455', '中国成都市锦江区人民南路四段403号5栋', '1995-01-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0518466110', '贺嘉伦', 0, '14811404594', 0, '440921199500102565', '中国上海市浦东新区健祥路634号32室', '1995-05-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0563991372', '雷宇宁', 0, '1015651836', 0, '440921199511110147', '中国北京市海淀区清河中街68号488号7号楼', '1995-12-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4921264849', '程云熙', 0, '15633244031', 0, '440921199510212017', '中国北京市延庆区028县道839号3栋', '1995-03-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2646538487', '吴云熙', 0, '16724896234', 0, '440921199510032705', '中国成都市成华区二仙桥东三路423号华润大厦21室', '1995-10-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0836277855', '毛岚', 1, '76931485317', 0, '440921199501205734', '中国东莞东泰五街673号华润大厦34室', '1995-12-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4861248250', '马云熙', 0, '16058550689', 0, '440921199511100106', '中国上海市闵行区宾川路738号华润大厦8室', '1995-04-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3627542959', '汤睿', 0, '19832864947', 0, '440921199521221876', '中国深圳龙岗区学园一巷743号24楼', '1995-08-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8049330146', '毛宇宁', 1, '75593533552', 0, '440921199511032189', '中国深圳龙岗区布吉镇西环路506号华润大厦30室', '1995-01-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4814750535', '江致远', 0, '7602329647', 0, '440921199511000187', '中国中山京华商圈华夏街22号华润大厦29室', '1995-05-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6487485098', '郑震南', 1, '13522609880', 0, '440921199501032185', '中国上海市黄浦区淮海中路105号22栋', '1995-04-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2949281539', '侯秀英', 1, '16904953522', 0, '440921199512206787', '中国中山乐丰六路986号46室', '1995-01-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7491236400', '萧璐', 0, '18889601761', 0, '440921199510105465', '中国北京市海淀区清河中街68号451号26楼', '1995-10-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4272992254', '段安琪', 1, '284661106', 0, '440921199511229415', '中国成都市锦江区红星路三段833号华润大厦23室', '1995-06-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8827316625', '熊岚', 0, '19192576089', 0, '440921199520101637', '中国广州市白云区机场路棠苑街五巷254号26室', '1995-06-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6517301385', '谢宇宁', 1, '104520375', 0, '440921199502109171', '中国北京市房山区岳琉路844号47室', '1995-04-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2329788834', '侯秀英', 1, '2027776032', 0, '440921199521330419', '中国广州市天河区天河路865号华润大厦15室', '1995-07-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3166411970', '武子异', 1, '15496764213', 0, '440921199522225199', '中国中山京华商圈华夏街421号23栋', '1995-05-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0105092428', '邵秀英', 1, '202348769', 0, '440921199502029226', '中国广州市白云区小坪东路176号华润大厦26室', '1995-05-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1700533618', '彭子异', 1, '1020311753', 0, '440921199510139146', '中国北京市东城区东单王府井东街547号30栋', '1995-08-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3414754837', '许子韬', 0, '19891650251', 0, '440921199511212190', '中国成都市成华区双庆路307号4号楼', '1995-08-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2845893736', '方致远', 0, '2115445560', 0, '440921199521305400', '中国上海市浦东新区橄榄路290号24栋', '1995-12-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8780844502', '杜致远', 0, '17065071053', 0, '440921199510027069', '中国成都市锦江区人民南路四段599号41室', '1995-01-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3127660257', '武子韬', 1, '16858914324', 0, '440921199510301993', '中国广州市天河区天河路22号31栋', '1995-02-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2338279990', '阎云熙', 0, '208727918', 0, '440921199502302538', '中国广州市越秀区中山二路210号45号楼', '1995-07-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6350691911', '向子异', 0, '7697113196', 0, '440921199510132521', '中国东莞坑美十五巷7号华润大厦23室', '1995-01-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9771596739', '周子韬', 0, '1055999628', 0, '440921199522219847', '中国北京市东城区东单王府井东街406号9栋', '1995-10-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2273603568', '胡璐', 0, '106080861', 0, '440921199500307294', '中国北京市房山区岳琉路968号34楼', '1995-09-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2182605993', '宋致远', 1, '16897797032', 0, '440921199522123670', '中国北京市延庆区028县道779号华润大厦1室', '1995-02-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6703524631', '孙杰宏', 0, '7555604629', 0, '440921199512130450', '中国深圳福田区深南大道525号39室', '1995-12-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2466989764', '戴岚', 0, '15922957102', 0, '440921199521228013', '中国中山紫马岭商圈中山五路687号34栋', '1995-11-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6137033704', '严安琪', 0, '14154914938', 0, '440921199512339033', '中国深圳龙岗区学园一巷85号18室', '1995-07-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6741153926', '张震南', 1, '75571619903', 0, '440921199502228252', '中国深圳福田区景田东一街833号29号楼', '1995-05-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6116222080', '杜秀英', 0, '15598123709', 0, '440921199500112380', '中国成都市成华区双庆路276号23号楼', '1995-06-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6145246892', '侯晓明', 0, '289519642', 0, '440921199510028955', '中国成都市成华区二仙桥东三路730号43室', '1995-12-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6770696054', '邱嘉伦', 0, '13120153609', 0, '440921199500229102', '中国北京市海淀区清河中街68号684号17号楼', '1995-07-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9728633909', '任安琪', 1, '76035547089', 0, '440921199521200173', '中国中山天河区大信商圈大信南路768号华润大厦1室', '1995-06-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8688980786', '莫子韬', 1, '18759278964', 0, '440921199520228937', '中国东莞珊瑚路258号9室', '1995-05-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0038030676', '卢詩涵', 0, '76928524029', 0, '440921199512014823', '中国东莞东泰五街172号39室', '1995-07-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9592472115', '袁致远', 1, '18545596190', 0, '440921199500019814', '中国深圳罗湖区蔡屋围深南东路775号39栋', '1995-09-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3374226443', '朱杰宏', 0, '289358638', 0, '440921199502209427', '中国成都市锦江区红星路三段180号14室', '1995-01-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9996845355', '卢璐', 0, '208681145', 0, '440921199522216129', '中国广州市越秀区中山二路861号34室', '1995-07-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9446013162', '冯宇宁', 1, '109166315', 0, '440921199501035035', '中国北京市西城区西長安街876号47室', '1995-02-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2007359738', '程秀英', 0, '13413722091', 0, '440921199510233913', '中国中山紫马岭商圈中山五路506号25楼', '1995-10-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6223737658', '傅晓明', 1, '207069920', 0, '440921199502315184', '中国广州市海珠区江南西路618号43栋', '1995-07-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9682342013', '史詩涵', 1, '16628391768', 0, '440921199501010537', '中国中山乐丰六路604号30楼', '1995-02-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8442197236', '杨云熙', 1, '7552007019', 0, '440921199522202556', '中国深圳福田区景田东一街254号13栋', '1995-10-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4203440929', '邓晓明', 1, '16216468262', 0, '440921199510035428', '中国深圳龙岗区布吉镇西环路579号39楼', '1995-05-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8526275001', '顾璐', 0, '7600297311', 0, '440921199522002322', '中国中山乐丰六路937号33号楼', '1995-05-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4320078640', '邵岚', 0, '13427986505', 0, '440921199511239276', '中国中山乐丰六路309号33楼', '1995-01-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9710720018', '龙震南', 0, '16881459303', 0, '440921199501117122', '中国北京市房山区岳琉路370号50号楼', '1995-08-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1063467304', '周睿', 0, '18938125751', 0, '440921199500031746', '中国北京市海淀区清河中街68号344号25室', '1995-08-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1200568263', '邓秀英', 1, '18681536120', 0, '440921199502122732', '中国上海市浦东新区健祥路718号14楼', '1995-08-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8376041129', '潘震南', 1, '2067755862', 0, '440921199502307259', '中国广州市白云区机场路棠苑街五巷252号38号楼', '1995-06-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4878534408', '邵安琪', 1, '76032671673', 0, '440921199521023944', '中国中山乐丰六路648号23栋', '1995-12-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9329316669', '孙岚', 0, '15722627473', 0, '440921199510310835', '中国上海市黄浦区淮海中路817号华润大厦47室', '1995-09-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5558512430', '陈子韬', 1, '7698885701', 0, '440921199501306304', '中国东莞环区南街二巷515号华润大厦35室', '1995-06-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6396786727', '何杰宏', 1, '2024123047', 0, '440921199512017818', '中国广州市海珠区江南西路251号38楼', '1995-05-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1468737942', '向宇宁', 0, '2831229231', 0, '440921199500206231', '中国成都市成华区玉双路6号183号华润大厦17室', '1995-12-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0019032769', '尹杰宏', 0, '16374888684', 0, '440921199522006626', '中国东莞珊瑚路732号6号楼', '1995-07-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8385297645', '朱璐', 0, '7555215377', 0, '440921199500114446', '中国深圳福田区景田东一街135号42号楼', '1995-08-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7876594098', '胡震南', 0, '7553658889', 0, '440921199512203253', '中国深圳福田区景田东一街540号华润大厦43室', '1995-09-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7946585191', '曹致远', 1, '13207544304', 0, '440921199522031219', '中国上海市闵行区宾川路293号华润大厦5室', '1995-06-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8071265804', '顾安琪', 0, '100400622', 0, '440921199502218438', '中国北京市西城区复兴门内大街508号华润大厦12室', '1995-04-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1007673047', '黄秀英', 1, '209784059', 0, '440921199520132550', '中国广州市天河区天河路848号31室', '1995-12-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6313396260', '江杰宏', 0, '76012606166', 0, '440921199502032509', '中国中山乐丰六路894号华润大厦37室', '1995-05-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6277534058', '杜晓明', 1, '288757466', 0, '440921199511231783', '中国成都市成华区玉双路6号730号44楼', '1995-07-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7742739996', '胡震南', 0, '19622475053', 0, '440921199511020057', '中国成都市成华区双庆路811号25栋', '1995-03-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4590567452', '傅秀英', 1, '2122529268', 0, '440921199510218170', '中国上海市徐汇区虹桥路745号24号楼', '1995-11-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6365613033', '冯致远', 1, '15145283882', 0, '440921199522102262', '中国深圳福田区景田东一街159号华润大厦23室', '1995-07-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7985981133', '傅子异', 1, '104083897', 0, '440921199512110197', '中国北京市西城区西長安街107号9栋', '1995-10-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7555506645', '邵子异', 1, '14043536553', 0, '440921199522318582', '中国广州市越秀区中山二路558号46栋', '1995-06-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2510816579', '李安琪', 0, '13280777928', 0, '440921199501131907', '中国北京市东城区东单王府井东街839号华润大厦33室', '1995-12-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5406374490', '张子韬', 0, '17311122556', 0, '440921199501217344', '中国中山乐丰六路343号32号楼', '1995-09-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6022870863', '郭震南', 1, '18877401454', 0, '440921199500111675', '中国深圳罗湖区蔡屋围深南东路990号42栋', '1995-03-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3960501757', '任震南', 1, '7694520185', 0, '440921199501302737', '中国东莞坑美十五巷694号10楼', '1995-10-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1641782339', '张云熙', 1, '16277499567', 0, '440921199520329860', '中国成都市成华区双庆路288号45楼', '1995-04-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2863156798', '薛秀英', 1, '1099723056', 0, '440921199522215991', '中国北京市海淀区清河中街68号927号20楼', '1995-04-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0805258493', '钟子韬', 1, '19364136025', 0, '440921199510111771', '中国深圳罗湖区清水河一路474号46室', '1995-03-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0790522134', '丁云熙', 0, '200912926', 0, '440921199520032402', '中国广州市白云区小坪东路209号29楼', '1995-12-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3830211710', '江岚', 1, '19354454547', 0, '440921199521012972', '中国东莞珊瑚路59号10室', '1995-12-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6275492684', '陈嘉伦', 1, '19722006530', 0, '440921199521018552', '中国中山乐丰六路534号6室', '1995-04-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0419935065', '苏杰宏', 0, '17952899716', 0, '440921199501309460', '中国成都市成华区二仙桥东三路685号11号楼', '1995-09-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5780898978', '孙嘉伦', 1, '13946602458', 0, '440921199502237220', '中国成都市锦江区人民南路四段10号12室', '1995-10-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0065758903', '余嘉伦', 0, '16477731464', 0, '440921199512036061', '中国上海市徐汇区虹桥路46号12号楼', '1995-09-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1390326694', '常岚', 0, '14328194862', 0, '440921199500026920', '中国成都市成华区二仙桥东三路507号1室', '1995-08-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9938388220', '夏安琪', 1, '17706249665', 0, '440921199512215408', '中国中山京华商圈华夏街533号11室', '1995-08-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8898586855', '徐杰宏', 0, '15272572861', 0, '440921199511315448', '中国深圳龙岗区学园一巷707号19栋', '1995-11-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2089569024', '向詩涵', 0, '13613598899', 0, '440921199522129515', '中国东莞东泰五街368号华润大厦18室', '1995-12-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9436257007', '韩璐', 0, '16289756918', 0, '440921199500313077', '中国东莞珊瑚路366号45号楼', '1995-07-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1833987088', '邓子异', 0, '107166701', 0, '440921199500037267', '中国北京市延庆区028县道455号46室', '1995-03-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9253994925', '邓晓明', 0, '2149486648', 0, '440921199512228821', '中国上海市闵行区宾川路506号35号楼', '1995-12-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3012155080', '雷璐', 0, '206472873', 0, '440921199501230336', '中国广州市白云区机场路棠苑街五巷585号19楼', '1995-06-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7442192742', '方宇宁', 0, '16120747777', 0, '440921199522135151', '中国上海市浦东新区橄榄路612号49楼', '1995-08-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3874722384', '余云熙', 0, '76908667863', 0, '440921199520124508', '中国东莞东泰五街694号32室', '1995-12-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0331354885', '顾震南', 0, '7557731566', 0, '440921199510224838', '中国深圳龙岗区布吉镇西环路842号39号楼', '1995-03-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4089955254', '崔嘉伦', 1, '104391683', 0, '440921199522021400', '中国北京市海淀区清河中街68号632号35栋', '1995-07-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4832701777', '陈安琪', 1, '16963050579', 0, '440921199522113406', '中国北京市房山区岳琉路82号45室', '1995-12-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6664376791', '吴璐', 0, '7602252837', 0, '440921199522033254', '中国中山乐丰六路398号10栋', '1995-09-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4092591971', '何子异', 1, '75572208505', 0, '440921199512335984', '中国深圳罗湖区田贝一路732号9室', '1995-03-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8917717363', '许嘉伦', 1, '2801339792', 0, '440921199512228975', '中国成都市成华区双庆路290号50楼', '1995-08-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9227101605', '向宇宁', 1, '19022401445', 0, '440921199501339470', '中国深圳福田区深南大道445号50栋', '1995-06-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3691855761', '曹睿', 0, '7551372599', 0, '440921199512326539', '中国深圳福田区景田东一街192号华润大厦32室', '1995-05-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4877222818', '尹杰宏', 1, '16750693379', 0, '440921199500227913', '中国广州市天河区天河路977号40室', '1995-08-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1206779485', '莫嘉伦', 0, '2162326215', 0, '440921199511133119', '中国上海市黄浦区淮海中路100号12栋', '1995-11-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1188692377', '徐璐', 1, '19490766658', 0, '440921199501238680', '中国成都市锦江区红星路三段365号40号楼', '1995-01-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5502147999', '薛璐', 1, '7557107438', 0, '440921199501023476', '中国深圳福田区景田东一街760号1室', '1995-06-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3934626563', '雷嘉伦', 1, '206445970', 0, '440921199502032492', '中国广州市海珠区江南西路467号3栋', '1995-02-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3341564246', '田璐', 0, '1082681795', 0, '440921199522308055', '中国北京市朝阳区三里屯路266号华润大厦36室', '1995-10-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1499227912', '方晓明', 1, '17713773315', 0, '440921199500128650', '中国广州市越秀区中山二路566号21号楼', '1995-02-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2745156417', '陈睿', 1, '13164245508', 0, '440921199521236893', '中国东莞坑美十五巷960号45号楼', '1995-04-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1257264009', '冯秀英', 0, '18067465819', 0, '440921199510238451', '中国东莞环区南街二巷774号16楼', '1995-06-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0641099763', '刘致远', 0, '15350583422', 0, '440921199511123043', '中国上海市浦东新区橄榄路929号华润大厦17室', '1995-11-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5724631950', '尹晓明', 1, '285360111', 0, '440921199501126846', '中国成都市成华区二仙桥东三路904号26楼', '1995-10-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9623093656', '贾子异', 0, '19660283321', 0, '440921199501131222', '中国中山乐丰六路211号39栋', '1995-08-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9420385883', '夏子韬', 0, '7604878944', 0, '440921199521039714', '中国中山紫马岭商圈中山五路72号华润大厦16室', '1995-02-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9751046022', '钟璐', 1, '16249732092', 0, '440921199521335212', '中国广州市天河区天河路716号华润大厦28室', '1995-04-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1795926010', '范岚', 0, '16862759245', 0, '440921199501319773', '中国中山京华商圈华夏街882号华润大厦31室', '1995-02-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6383964085', '熊致远', 0, '15332736807', 0, '440921199511130936', '中国广州市越秀区中山二路23号3室', '1995-03-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4578754001', '郭睿', 0, '18645223005', 0, '440921199521023989', '中国成都市锦江区红星路三段64号华润大厦11室', '1995-07-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5066307193', '赵致远', 0, '75558686136', 0, '440921199520105667', '中国深圳龙岗区布吉镇西环路526号40室', '1995-11-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1787065422', '汤致远', 1, '1088852564', 0, '440921199520126426', '中国北京市朝阳区三里屯路784号37号楼', '1995-06-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7255613373', '郑安琪', 0, '7696759042', 0, '440921199501012738', '中国东莞东泰五街942号华润大厦38室', '1995-11-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8583053687', '顾子韬', 0, '13164748123', 0, '440921199522110811', '中国北京市東城区東直門內大街161号47室', '1995-11-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9777703463', '赵震南', 1, '19630901542', 0, '440921199510101104', '中国广州市白云区机场路棠苑街五巷826号36栋', '1995-12-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6073421029', '陆安琪', 1, '75556339086', 0, '440921199522218578', '中国深圳罗湖区田贝一路400号16栋', '1995-10-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0354984002', '侯子异', 1, '1074885719', 0, '440921199500230765', '中国北京市东城区东单王府井东街501号16栋', '1995-10-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8208247474', '曹岚', 1, '209452739', 0, '440921199510104611', '中国广州市白云区小坪东路907号47楼', '1995-12-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7532646849', '邓安琪', 1, '1066969364', 0, '440921199522031511', '中国北京市房山区岳琉路507号40楼', '1995-06-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2962937115', '龚震南', 0, '7694399519', 0, '440921199510215515', '中国东莞东泰五街538号50栋', '1995-10-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2307752925', '金子韬', 1, '7552787984', 0, '440921199500035569', '中国深圳龙岗区学园一巷553号华润大厦29室', '1995-07-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0853353829', '黎杰宏', 1, '1043747179', 0, '440921199501211881', '中国北京市西城区复兴门内大街694号29楼', '1995-03-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2343494476', '姜震南', 1, '2823430138', 0, '440921199502308364', '中国成都市成华区双庆路923号32栋', '1995-06-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6662076780', '郭致远', 0, '18127220223', 0, '440921199522216885', '中国北京市东城区东单王府井东街384号3室', '1995-10-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0509115255', '潘嘉伦', 1, '102633579', 0, '440921199502225654', '中国北京市房山区岳琉路726号36楼', '1995-09-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0389391746', '贺岚', 0, '14869091947', 0, '440921199500239158', '中国东莞坑美十五巷478号29栋', '1995-08-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1529376193', '梁杰宏', 1, '19576255153', 0, '440921199510327709', '中国东莞珊瑚路773号17楼', '1995-05-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0749579061', '孔晓明', 1, '7553406155', 0, '440921199500122879', '中国深圳福田区景田东一街786号33楼', '1995-06-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8941856696', '邱杰宏', 0, '2147414822', 0, '440921199502337929', '中国上海市浦东新区健祥路936号7号楼', '1995-02-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9499557547', '冯安琪', 0, '14922468890', 0, '440921199512206275', '中国深圳罗湖区蔡屋围深南东路7号华润大厦24室', '1995-08-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8121046065', '卢秀英', 0, '100358286', 0, '440921199522008841', '中国北京市西城区西長安街147号5楼', '1995-12-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0729127902', '莫璐', 1, '1016819477', 0, '440921199502110579', '中国北京市延庆区028县道470号4号楼', '1995-08-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0111603802', '余秀英', 0, '15637358913', 0, '440921199510005660', '中国上海市闵行区宾川路204号42号楼', '1995-07-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2998249194', '陆震南', 1, '15762539585', 0, '440921199521309562', '中国北京市朝阳区三里屯路155号华润大厦49室', '1995-09-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4622076993', '卢嘉伦', 0, '17871148799', 0, '440921199501100322', '中国上海市黄浦区淮海中路319号13室', '1995-06-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9203341952', '严嘉伦', 0, '14293192570', 0, '440921199502305422', '中国深圳龙岗区布吉镇西环路272号3号楼', '1995-04-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6871690577', '陶宇宁', 1, '75525140185', 0, '440921199521102057', '中国深圳龙岗区学园一巷832号华润大厦23室', '1995-03-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8158804013', '陶岚', 1, '76914694961', 0, '440921199502316240', '中国东莞珊瑚路197号华润大厦3室', '1995-01-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2463792609', '夏嘉伦', 1, '19738436828', 0, '440921199511113331', '中国广州市越秀区中山二路938号32室', '1995-05-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1070374168', '萧詩涵', 0, '100141516', 0, '440921199521314519', '中国北京市東城区東直門內大街705号43楼', '1995-12-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9121085969', '姚詩涵', 0, '7601730807', 0, '440921199521112804', '中国中山乐丰六路756号41楼', '1995-02-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8390162271', '叶璐', 1, '13695064598', 0, '440921199501310855', '中国上海市徐汇区虹桥路508号华润大厦39室', '1995-09-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6666113168', '杜睿', 1, '76958312269', 0, '440921199501209157', '中国东莞东泰五街714号42室', '1995-03-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5631807599', '汤宇宁', 1, '7557722790', 0, '440921199500001531', '中国深圳龙岗区布吉镇西环路673号11楼', '1995-09-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7284123127', '谭晓明', 0, '15674113609', 0, '440921199521005834', '中国广州市天河区天河路435号13号楼', '1995-10-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6125513635', '贺杰宏', 0, '16617274182', 0, '440921199502111853', '中国北京市东城区东单王府井东街238号18室', '1995-05-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4390785818', '龙震南', 0, '19679641934', 0, '440921199512129650', '中国东莞珊瑚路64号19号楼', '1995-01-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3339070481', '莫致远', 1, '13125275830', 0, '440921199510338864', '中国广州市白云区机场路棠苑街五巷994号12室', '1995-05-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0655601363', '叶宇宁', 0, '7558661932', 0, '440921199512338898', '中国深圳龙岗区布吉镇西环路738号22楼', '1995-06-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9219358031', '方睿', 1, '19291482770', 0, '440921199511211408', '中国东莞坑美十五巷646号46号楼', '1995-09-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2816980469', '贺杰宏', 0, '200877009', 0, '440921199510231043', '中国广州市天河区天河路722号50栋', '1995-12-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4723697431', '宋杰宏', 1, '15902185814', 0, '440921199501001612', '中国成都市锦江区红星路三段786号41号楼', '1995-06-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5090234323', '钱璐', 1, '16374890815', 0, '440921199512119080', '中国中山京华商圈华夏街647号32楼', '1995-07-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7334528031', '叶子异', 1, '17293821989', 0, '440921199512300903', '中国成都市锦江区人民南路四段648号华润大厦35室', '1995-10-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0572102168', '姚宇宁', 0, '2100884507', 0, '440921199520127128', '中国上海市黄浦区淮海中路494号29室', '1995-06-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0081792144', '谭睿', 1, '18030435163', 0, '440921199500131743', '中国成都市成华区玉双路6号219号24楼', '1995-12-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0476705503', '莫嘉伦', 1, '19083405858', 0, '440921199501226424', '中国东莞东泰五街321号12栋', '1995-10-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3913451186', '刘云熙', 1, '18596600093', 0, '440921199520034867', '中国成都市锦江区红星路三段551号47室', '1995-06-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3334016745', '叶云熙', 0, '16467278203', 0, '440921199522116131', '中国深圳福田区景田东一街762号45栋', '1995-11-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0786279626', '袁詩涵', 1, '16845838323', 0, '440921199520312219', '中国中山京华商圈华夏街856号50室', '1995-09-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6949417986', '莫秀英', 0, '14465144038', 0, '440921199501310089', '中国东莞珊瑚路940号28室', '1995-10-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9996932397', '邱震南', 0, '7699355260', 0, '440921199520310336', '中国东莞环区南街二巷19号华润大厦48室', '1995-11-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8696183099', '许宇宁', 1, '18638312091', 0, '440921199501307144', '中国中山紫马岭商圈中山五路101号华润大厦21室', '1995-05-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4774929849', '严嘉伦', 1, '19280995710', 0, '440921199502123710', '中国深圳福田区深南大道613号24室', '1995-06-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2202840723', '杜睿', 1, '16258991322', 0, '440921199500204230', '中国东莞珊瑚路819号41楼', '1995-08-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4556456399', '戴宇宁', 0, '1071918423', 0, '440921199521120220', '中国北京市東城区東直門內大街307号华润大厦4室', '1995-09-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4660346163', '杜宇宁', 0, '15431501469', 0, '440921199520212018', '中国北京市朝阳区三里屯路835号华润大厦42室', '1995-06-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9829127803', '罗子异', 0, '13788459656', 0, '440921199522116415', '中国北京市朝阳区三里屯路141号26号楼', '1995-07-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0201346018', '严嘉伦', 0, '13015839816', 0, '440921199512108113', '中国北京市东城区东单王府井东街84号华润大厦45室', '1995-01-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2761437627', '郭晓明', 0, '7698848074', 0, '440921199500328292', '中国东莞坑美十五巷855号36栋', '1995-02-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6509592005', '杨晓明', 0, '17914242016', 0, '440921199510021281', '中国上海市黄浦区淮海中路651号5号楼', '1995-09-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8531194175', '宋嘉伦', 0, '2020583815', 0, '440921199512011775', '中国广州市白云区机场路棠苑街五巷42号华润大厦40室', '1995-03-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3542803400', '贺杰宏', 0, '15067154584', 0, '440921199522339692', '中国北京市西城区西長安街723号1号楼', '1995-03-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4234332732', '陆晓明', 1, '17505009985', 0, '440921199501304756', '中国广州市白云区机场路棠苑街五巷516号40号楼', '1995-03-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5054355777', '曾子异', 0, '1053444567', 0, '440921199501109813', '中国北京市朝阳区三里屯路344号50楼', '1995-01-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7611638612', '姜宇宁', 0, '288323462', 0, '440921199502230288', '中国成都市成华区双庆路932号华润大厦33室', '1995-08-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6120354452', '韩秀英', 0, '76060166443', 0, '440921199501339605', '中国中山天河区大信商圈大信南路418号28栋', '1995-01-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0400011647', '毛宇宁', 1, '2020987866', 0, '440921199511312807', '中国广州市天河区天河路42号34号楼', '1995-07-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4813420142', '陆嘉伦', 0, '15869694701', 0, '440921199522128662', '中国深圳龙岗区布吉镇西环路785号41楼', '1995-12-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8723950214', '龚嘉伦', 0, '19150374274', 0, '440921199511216582', '中国广州市天河区天河路322号30室', '1995-12-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4923791882', '梁睿', 1, '14291833096', 0, '440921199520120364', '中国中山京华商圈华夏街329号16室', '1995-08-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0185540260', '范子异', 1, '16437343071', 0, '440921199501322657', '中国北京市延庆区028县道151号华润大厦7室', '1995-01-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6522380116', '黄安琪', 1, '76960389621', 0, '440921199522021755', '中国东莞珊瑚路215号37号楼', '1995-10-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1195970852', '韦子韬', 0, '15984421980', 0, '440921199501009720', '中国东莞东泰五街553号50栋', '1995-02-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4387655183', '田子异', 0, '76952080277', 0, '440921199500001679', '中国东莞珊瑚路659号19楼', '1995-10-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8984021176', '叶震南', 1, '18956577950', 0, '440921199510001753', '中国北京市延庆区028县道510号30楼', '1995-10-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7927192657', '邓晓明', 0, '18226898563', 0, '440921199511021288', '中国广州市白云区小坪东路139号24室', '1995-07-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9649135198', '孔岚', 1, '75548113559', 0, '440921199511237036', '中国深圳罗湖区田贝一路557号50号楼', '1995-12-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4126566194', '常嘉伦', 0, '7558279946', 0, '440921199522017742', '中国深圳龙岗区布吉镇西环路367号28室', '1995-08-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7319726758', '谭璐', 1, '13866398595', 0, '440921199521012239', '中国成都市成华区玉双路6号385号24号楼', '1995-07-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0016144095', '孟睿', 1, '1016807924', 0, '440921199500303487', '中国北京市延庆区028县道509号2楼', '1995-10-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6958797880', '郝睿', 1, '14412677141', 0, '440921199520308186', '中国深圳罗湖区田贝一路247号华润大厦35室', '1995-01-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9936063400', '邓晓明', 0, '19401399031', 0, '440921199501039291', '中国北京市房山区岳琉路56号18楼', '1995-05-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3509269448', '袁震南', 1, '16753890763', 0, '440921199522001399', '中国成都市锦江区人民南路四段495号44号楼', '1995-06-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4568405478', '孙岚', 1, '75568300135', 0, '440921199502235876', '中国深圳龙岗区学园一巷266号5号楼', '1995-01-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9604315346', '薛致远', 0, '75536921841', 0, '440921199520332652', '中国深圳福田区深南大道26号2号楼', '1995-04-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2320669464', '阎云熙', 0, '2069752081', 0, '440921199511338015', '中国广州市海珠区江南西路332号9楼', '1995-12-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9377804008', '刘杰宏', 1, '75582241882', 0, '440921199520311038', '中国深圳福田区景田东一街681号38号楼', '1995-04-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0861783557', '邵震南', 0, '18813706558', 0, '440921199500006097', '中国成都市锦江区人民南路四段837号12栋', '1995-01-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0978914740', '姚秀英', 1, '16592496853', 0, '440921199511020399', '中国中山天河区大信商圈大信南路802号华润大厦48室', '1995-02-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1516388824', '高晓明', 0, '2847941002', 0, '440921199502105271', '中国成都市成华区双庆路511号50室', '1995-06-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1759925904', '林致远', 0, '17271635719', 0, '440921199501329080', '中国成都市成华区双庆路636号29室', '1995-09-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7011637116', '金睿', 1, '14181096994', 0, '440921199521117800', '中国深圳龙岗区学园一巷650号5室', '1995-01-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5113483833', '孔璐', 0, '15610879824', 0, '440921199511212309', '中国上海市闵行区宾川路678号华润大厦41室', '1995-01-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1601956654', '吴致远', 0, '14985038607', 0, '440921199521001221', '中国北京市房山区岳琉路737号45栋', '1995-04-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4441536229', '冯宇宁', 0, '14909008689', 0, '440921199521236540', '中国深圳龙岗区学园一巷427号50栋', '1995-09-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7253599211', '魏杰宏', 0, '105505445', 0, '440921199500004852', '中国北京市东城区东单王府井东街423号22号楼', '1995-03-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2940653592', '彭晓明', 0, '19506910038', 0, '440921199520137536', '中国深圳福田区深南大道388号28栋', '1995-07-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4201867128', '邹岚', 1, '19774584159', 0, '440921199511332078', '中国东莞坑美十五巷321号30号楼', '1995-05-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9678101893', '金睿', 1, '204362702', 0, '440921199522130433', '中国广州市白云区小坪东路729号22号楼', '1995-06-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2580237249', '何璐', 0, '7551349791', 0, '440921199511008781', '中国深圳龙岗区布吉镇西环路167号38楼', '1995-10-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5643683270', '蔡晓明', 1, '13376393242', 0, '440921199510205750', '中国东莞环区南街二巷36号25号楼', '1995-11-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8041119875', '邓子异', 0, '7698061279', 0, '440921199510237187', '中国东莞东泰五街941号50号楼', '1995-01-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1281739812', '袁睿', 0, '15729599192', 0, '440921199501339658', '中国东莞坑美十五巷915号48楼', '1995-10-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8603027633', '周震南', 1, '7694587596', 0, '440921199512123081', '中国东莞珊瑚路525号35号楼', '1995-07-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9299540009', '傅震南', 0, '18749254246', 0, '440921199522123693', '中国北京市延庆区028县道461号39号楼', '1995-02-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5211845117', '韩璐', 1, '2850046708', 0, '440921199520231102', '中国成都市锦江区人民南路四段877号18室', '1995-06-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3536390025', '冯詩涵', 0, '15942682234', 0, '440921199512329753', '中国广州市越秀区中山二路577号24室', '1995-01-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6522392982', '秦詩涵', 0, '13340170198', 0, '440921199501327371', '中国深圳罗湖区田贝一路712号22室', '1995-06-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0571036326', '曹睿', 0, '205696581', 0, '440921199501001333', '中国广州市海珠区江南西路82号40栋', '1995-04-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1399322645', '余秀英', 1, '282385131', 0, '440921199511308410', '中国成都市成华区二仙桥东三路844号17号楼', '1995-04-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0017435368', '方子韬', 1, '13588145779', 0, '440921199502203411', '中国北京市海淀区清河中街68号911号37室', '1995-07-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7310086559', '范子异', 0, '15345202277', 0, '440921199511321763', '中国上海市浦东新区橄榄路163号31号楼', '1995-08-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8280016311', '任子韬', 0, '280068782', 0, '440921199502123551', '中国成都市锦江区人民南路四段931号16楼', '1995-11-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0496909781', '唐子异', 0, '15667398938', 0, '440921199511221860', '中国广州市天河区天河路181号42栋', '1995-02-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0141284802', '江云熙', 0, '18378910002', 0, '440921199521232607', '中国广州市白云区机场路棠苑街五巷54号34号楼', '1995-11-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5981669371', '丁詩涵', 0, '13781887986', 0, '440921199510312997', '中国中山紫马岭商圈中山五路445号18楼', '1995-09-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4296027571', '陈安琪', 1, '14001617185', 0, '440921199522224502', '中国北京市朝阳区三里屯路292号28楼', '1995-10-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2949836229', '曾震南', 0, '76019821456', 0, '440921199522316162', '中国中山紫马岭商圈中山五路729号20号楼', '1995-07-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4946011649', '余秀英', 0, '16442809574', 0, '440921199510211209', '中国深圳福田区深南大道547号49号楼', '1995-09-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4083958386', '毛云熙', 1, '14759535986', 0, '440921199510210844', '中国上海市徐汇区虹桥路840号7室', '1995-07-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2524607559', '范睿', 1, '17110085961', 0, '440921199512022380', '中国北京市西城区复兴门内大街433号华润大厦26室', '1995-12-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1785009649', '汤晓明', 0, '13250443484', 0, '440921199500112035', '中国中山京华商圈华夏街77号34楼', '1995-06-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9273355963', '曹子异', 0, '7554038843', 0, '440921199511333634', '中国深圳罗湖区田贝一路914号15栋', '1995-01-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3212027080', '范璐', 0, '219238456', 0, '440921199521322527', '中国上海市徐汇区虹桥路952号20号楼', '1995-03-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7185282839', '石詩涵', 0, '75534007028', 0, '440921199500107493', '中国深圳罗湖区田贝一路385号4楼', '1995-07-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8875443909', '严睿', 1, '13929692247', 0, '440921199522127155', '中国北京市西城区西長安街970号21室', '1995-12-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9979938872', '高子韬', 1, '18376958182', 0, '440921199522111801', '中国上海市浦东新区健祥路6号3号楼', '1995-03-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5210361933', '莫致远', 1, '1002740083', 0, '440921199501225066', '中国北京市西城区西長安街137号46楼', '1995-08-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6897820572', '邱詩涵', 0, '2197013659', 0, '440921199521202934', '中国上海市浦东新区橄榄路875号华润大厦41室', '1995-06-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2329552898', '梁安琪', 1, '19678028898', 0, '440921199502010193', '中国深圳罗湖区清水河一路862号36楼', '1995-05-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1080710667', '侯詩涵', 0, '2004751833', 0, '440921199510126662', '中国广州市越秀区中山二路68号42号楼', '1995-08-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3128387154', '金安琪', 0, '18130234582', 0, '440921199502034457', '中国上海市徐汇区虹桥路366号18号楼', '1995-02-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5261012470', '董宇宁', 1, '13740991300', 0, '440921199511331754', '中国北京市朝阳区三里屯路82号华润大厦24室', '1995-01-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7393814962', '汪震南', 1, '14855547938', 0, '440921199502323092', '中国东莞东泰五街533号11楼', '1995-04-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6844361936', '范震南', 0, '17957578450', 0, '440921199521202817', '中国东莞坑美十五巷360号47号楼', '1995-03-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7920710889', '潘詩涵', 0, '2073596404', 0, '440921199501331499', '中国广州市白云区小坪东路873号43楼', '1995-06-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0430721545', '薛子韬', 0, '283357614', 0, '440921199511213769', '中国成都市成华区玉双路6号118号33楼', '1995-11-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3821726449', '邹嘉伦', 1, '7552360157', 0, '440921199502001937', '中国深圳罗湖区田贝一路244号11号楼', '1995-10-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6600739984', '顾震南', 1, '15314227694', 0, '440921199522320892', '中国深圳罗湖区蔡屋围深南东路834号华润大厦44室', '1995-09-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9445145759', '崔安琪', 1, '18559484163', 0, '440921199511124272', '中国北京市房山区岳琉路834号42室', '1995-02-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1501323912', '夏晓明', 0, '16760839471', 0, '440921199500203081', '中国上海市黄浦区淮海中路510号华润大厦29室', '1995-09-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3796749103', '韦宇宁', 0, '17428316286', 0, '440921199502107707', '中国东莞坑美十五巷846号华润大厦42室', '1995-06-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9826076772', '唐璐', 1, '7556571926', 0, '440921199520135266', '中国深圳罗湖区田贝一路336号19栋', '1995-05-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5590742506', '邵安琪', 1, '17567754871', 0, '440921199522224946', '中国成都市成华区二仙桥东三路763号8号楼', '1995-07-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4966479703', '黎秀英', 0, '18618941967', 0, '440921199512021059', '中国东莞珊瑚路789号6号楼', '1995-07-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0689833029', '许震南', 0, '75571344167', 0, '440921199521020313', '中国深圳罗湖区田贝一路93号36栋', '1995-07-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1186887272', '胡璐', 1, '7690589683', 0, '440921199502025398', '中国东莞坑美十五巷919号5楼', '1995-02-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5378301282', '钟子韬', 0, '7690325487', 0, '440921199511007394', '中国东莞珊瑚路511号49室', '1995-11-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7954044248', '邹云熙', 1, '13155231381', 0, '440921199522028847', '中国中山京华商圈华夏街829号14楼', '1995-04-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8357325207', '蔡子异', 1, '17330926302', 0, '440921199521026874', '中国深圳龙岗区学园一巷940号23楼', '1995-11-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5458503791', '江子异', 1, '15777165610', 0, '440921199512232797', '中国中山京华商圈华夏街740号47栋', '1995-11-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3888832610', '林晓明', 0, '7609675346', 0, '440921199520306907', '中国中山紫马岭商圈中山五路458号31栋', '1995-01-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8469918751', '宋岚', 0, '17388778479', 0, '440921199501222389', '中国上海市徐汇区虹桥路802号8号楼', '1995-09-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9326820562', '方晓明', 0, '17504622048', 0, '440921199510104558', '中国北京市延庆区028县道23号24号楼', '1995-08-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0324869342', '曾杰宏', 0, '16533495619', 0, '440921199522312571', '中国成都市锦江区红星路三段768号1室', '1995-05-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1287304718', '孙睿', 1, '2181771021', 0, '440921199521128636', '中国上海市浦东新区健祥路403号15室', '1995-10-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6341497683', '傅嘉伦', 0, '17671770319', 0, '440921199510135969', '中国成都市成华区二仙桥东三路643号华润大厦43室', '1995-02-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4559744566', '钱子韬', 1, '19877200893', 0, '440921199501132194', '中国上海市浦东新区健祥路897号华润大厦2室', '1995-02-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9934023782', '崔云熙', 1, '219679979', 0, '440921199512013414', '中国上海市徐汇区虹桥路196号6号楼', '1995-04-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1540907464', '黎晓明', 1, '2036406833', 0, '440921199500335744', '中国广州市白云区机场路棠苑街五巷597号47栋', '1995-04-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1709621049', '杜睿', 0, '2882635208', 0, '440921199500312216', '中国成都市成华区双庆路533号29号楼', '1995-06-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0459227308', '黄宇宁', 0, '16271277408', 0, '440921199510333226', '中国东莞珊瑚路700号华润大厦35室', '1995-04-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9002454630', '徐震南', 0, '75538955778', 0, '440921199502032975', '中国深圳罗湖区清水河一路602号19室', '1995-11-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6672069617', '许子韬', 0, '18923212841', 0, '440921199510202453', '中国成都市成华区双庆路972号45栋', '1995-12-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2695188648', '夏岚', 0, '16110829115', 0, '440921199522114839', '中国深圳龙岗区学园一巷792号9号楼', '1995-11-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0300032368', '冯晓明', 0, '218835756', 0, '440921199512336572', '中国上海市徐汇区虹桥路521号25楼', '1995-12-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1417711539', '莫安琪', 0, '14896568656', 0, '440921199500339108', '中国深圳龙岗区布吉镇西环路603号50室', '1995-12-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6580042392', '赵岚', 0, '218930000', 0, '440921199522214003', '中国上海市徐汇区虹桥路779号34室', '1995-09-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3002987402', '汤宇宁', 0, '2888358196', 0, '440921199501302160', '中国成都市成华区双庆路150号42室', '1995-07-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2482190336', '朱子异', 0, '14853522667', 0, '440921199501311018', '中国北京市海淀区清河中街68号802号39栋', '1995-04-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1974393777', '邱子韬', 0, '283619296', 0, '440921199510018729', '中国成都市锦江区人民南路四段242号华润大厦2室', '1995-11-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3585458399', '邵晓明', 1, '2114027985', 0, '440921199520108616', '中国上海市闵行区宾川路912号7楼', '1995-05-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6219918437', '钱秀英', 0, '13756764322', 0, '440921199510018000', '中国中山天河区大信商圈大信南路266号1楼', '1995-02-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9000350774', '周杰宏', 0, '18057893126', 0, '440921199520304781', '中国中山天河区大信商圈大信南路510号16号楼', '1995-08-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7523655606', '余安琪', 1, '16039670967', 0, '440921199510120095', '中国中山天河区大信商圈大信南路320号22室', '1995-06-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0342697436', '熊安琪', 1, '2842225915', 0, '440921199521213364', '中国成都市成华区双庆路107号14栋', '1995-07-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1731289342', '秦致远', 1, '13902555363', 0, '440921199502131159', '中国上海市浦东新区橄榄路938号31号楼', '1995-06-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4254489909', '郝安琪', 1, '205071970', 0, '440921199502236850', '中国广州市白云区小坪东路454号9楼', '1995-09-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7583734394', '何安琪', 1, '2088282479', 0, '440921199510128902', '中国广州市海珠区江南西路870号1楼', '1995-10-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6255861473', '江云熙', 0, '7602056017', 0, '440921199500130777', '中国中山天河区大信商圈大信南路262号39室', '1995-04-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6365141446', '郭云熙', 1, '1010152103', 0, '440921199520216634', '中国北京市延庆区028县道532号25栋', '1995-07-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3205556470', '范秀英', 0, '200264628', 0, '440921199500224343', '中国广州市越秀区中山二路312号27号楼', '1995-08-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5266086799', '沈秀英', 1, '18862944451', 0, '440921199512235623', '中国中山乐丰六路589号28栋', '1995-05-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6368897776', '唐云熙', 0, '75537668434', 0, '440921199521115061', '中国深圳龙岗区学园一巷314号50号楼', '1995-03-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0268453412', '萧詩涵', 0, '2016765699', 0, '440921199520206533', '中国广州市天河区天河路715号7号楼', '1995-12-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3323154656', '方璐', 1, '17508857700', 0, '440921199502111409', '中国中山天河区大信商圈大信南路718号华润大厦44室', '1995-04-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8975383882', '郝宇宁', 0, '17043587701', 0, '440921199512105867', '中国上海市闵行区宾川路60号华润大厦11室', '1995-05-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2577929018', '侯詩涵', 1, '17866324573', 0, '440921199510209780', '中国成都市锦江区红星路三段932号42号楼', '1995-09-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2044931988', '邓子韬', 1, '107164812', 0, '440921199520321978', '中国北京市西城区西長安街918号华润大厦24室', '1995-10-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5890315934', '常震南', 0, '18422528121', 0, '440921199520330703', '中国北京市东城区东单王府井东街71号37栋', '1995-05-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8586000380', '熊子异', 1, '75589770832', 0, '440921199500201670', '中国深圳罗湖区蔡屋围深南东路425号9室', '1995-03-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9450221603', '廖安琪', 1, '17924795966', 0, '440921199510132451', '中国东莞坑美十五巷57号华润大厦8室', '1995-06-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5996210327', '贺宇宁', 0, '14423233391', 0, '440921199521233604', '中国广州市白云区机场路棠苑街五巷305号23号楼', '1995-11-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4318510078', '彭杰宏', 1, '217903138', 0, '440921199500338769', '中国上海市闵行区宾川路291号32室', '1995-06-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6259755765', '武秀英', 0, '1045744098', 0, '440921199501316623', '中国北京市朝阳区三里屯路334号11室', '1995-07-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1431382243', '杜詩涵', 0, '19091031292', 0, '440921199522124722', '中国广州市天河区天河路915号4号楼', '1995-09-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2727940425', '林秀英', 1, '16299803014', 0, '440921199512315129', '中国成都市成华区玉双路6号916号22室', '1995-01-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5009775026', '谭睿', 0, '7693131323', 0, '440921199502323390', '中国东莞东泰五街181号1栋', '1995-01-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0684648831', '毛致远', 0, '16007756715', 0, '440921199510337528', '中国深圳罗湖区清水河一路488号27栋', '1995-10-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1172118411', '丁子韬', 0, '14132172383', 0, '440921199500327908', '中国北京市西城区复兴门内大街382号35栋', '1995-03-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5843261984', '汪子异', 0, '13707512975', 0, '440921199500230657', '中国广州市白云区小坪东路163号18室', '1995-05-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6838035738', '袁嘉伦', 1, '16058723080', 0, '440921199512330222', '中国成都市成华区玉双路6号599号43楼', '1995-10-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8912357203', '唐嘉伦', 0, '19429012310', 0, '440921199521111430', '中国成都市成华区二仙桥东三路670号26楼', '1995-04-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8763933097', '卢安琪', 0, '103008297', 0, '440921199522227443', '中国北京市東城区東直門內大街68号5栋', '1995-07-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6770674596', '侯晓明', 1, '7603328838', 0, '440921199500339461', '中国中山天河区大信商圈大信南路56号49室', '1995-02-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1622180874', '程震南', 1, '76042791295', 0, '440921199510136253', '中国中山京华商圈华夏街966号25号楼', '1995-02-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2070820933', '刘岚', 1, '1046254056', 0, '440921199501104022', '中国北京市东城区东单王府井东街642号华润大厦42室', '1995-03-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2188826282', '吕震南', 1, '18208365904', 0, '440921199510018568', '中国上海市浦东新区健祥路633号22栋', '1995-12-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8497238612', '史子韬', 0, '210698884', 0, '440921199501320284', '中国上海市闵行区宾川路66号45号楼', '1995-01-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1685845621', '吕杰宏', 1, '17962027869', 0, '440921199500215131', '中国上海市黄浦区淮海中路573号8楼', '1995-05-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6126974381', '卢杰宏', 1, '15018604686', 0, '440921199511027870', '中国东莞环区南街二巷312号49室', '1995-03-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5823743835', '秦睿', 0, '201744330', 0, '440921199502132690', '中国广州市海珠区江南西路569号华润大厦49室', '1995-06-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8146908807', '何杰宏', 1, '18620929737', 0, '440921199502300112', '中国广州市白云区机场路棠苑街五巷379号34楼', '1995-04-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0209505867', '高秀英', 0, '204192876', 0, '440921199520128018', '中国广州市白云区机场路棠苑街五巷376号华润大厦12室', '1995-11-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6492969222', '丁子异', 1, '17345686709', 0, '440921199501307151', '中国成都市成华区二仙桥东三路846号35栋', '1995-04-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3388020616', '杜子韬', 0, '15124629923', 0, '440921199512114513', '中国北京市房山区岳琉路142号40号楼', '1995-02-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3046500559', '郝致远', 1, '76955139402', 0, '440921199502139502', '中国东莞东泰五街339号23室', '1995-05-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1539787461', '于岚', 1, '100978206', 0, '440921199511138994', '中国北京市延庆区028县道357号5号楼', '1995-04-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3889991156', '黄云熙', 0, '76911859785', 0, '440921199520225634', '中国东莞坑美十五巷89号华润大厦35室', '1995-03-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0359373185', '孟岚', 0, '15560123324', 0, '440921199512304185', '中国深圳罗湖区蔡屋围深南东路267号9栋', '1995-12-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0551952535', '郝秀英', 1, '1086950435', 0, '440921199501219763', '中国北京市東城区東直門內大街459号26室', '1995-10-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0577985531', '吕璐', 0, '17463442065', 0, '440921199511020218', '中国深圳龙岗区布吉镇西环路866号44栋', '1995-03-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4948475480', '董嘉伦', 0, '18641838221', 0, '440921199520324593', '中国北京市西城区西長安街20号27楼', '1995-05-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7357694844', '李詩涵', 0, '19751466499', 0, '440921199522338828', '中国成都市成华区双庆路38号5号楼', '1995-04-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8708492873', '熊子韬', 0, '13885653233', 0, '440921199522219686', '中国深圳罗湖区蔡屋围深南东路226号14楼', '1995-12-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0779003783', '丁秀英', 1, '7550767575', 0, '440921199522202617', '中国深圳罗湖区蔡屋围深南东路660号37栋', '1995-06-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4201414533', '梁詩涵', 0, '104874458', 0, '440921199510122500', '中国北京市房山区岳琉路30号48栋', '1995-06-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6615898181', '傅秀英', 1, '75533388051', 0, '440921199522238335', '中国深圳罗湖区田贝一路673号15楼', '1995-08-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0796925154', '冯睿', 1, '76092379529', 0, '440921199511033798', '中国中山紫马岭商圈中山五路777号44栋', '1995-05-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3876029117', '谢璐', 0, '14863203439', 0, '440921199511234293', '中国东莞珊瑚路694号22号楼', '1995-03-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0029922831', '蔡云熙', 0, '14015392393', 0, '440921199522205536', '中国北京市西城区西長安街602号20室', '1995-11-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0922257504', '姜詩涵', 0, '7604094175', 0, '440921199502324129', '中国中山天河区大信商圈大信南路209号24室', '1995-08-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2273248947', '钟致远', 0, '108272180', 0, '440921199511118165', '中国北京市東城区東直門內大街716号华润大厦40室', '1995-06-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3970853072', '夏子韬', 1, '15263011266', 0, '440921199500020807', '中国东莞坑美十五巷921号12楼', '1995-09-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3372347797', '邹詩涵', 0, '7694530995', 0, '440921199522031745', '中国东莞环区南街二巷901号24栋', '1995-11-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5531015756', '陶杰宏', 1, '15222368695', 0, '440921199500237739', '中国成都市锦江区人民南路四段880号华润大厦7室', '1995-07-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7333040056', '史秀英', 1, '7692176658', 0, '440921199522001043', '中国东莞坑美十五巷689号25楼', '1995-08-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6590965578', '姜晓明', 1, '19417101417', 0, '440921199500334222', '中国上海市浦东新区健祥路441号21室', '1995-03-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6142725256', '程睿', 0, '19215098461', 0, '440921199521229614', '中国广州市越秀区中山二路38号48室', '1995-05-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2754508777', '苏杰宏', 0, '17412929192', 0, '440921199502214473', '中国成都市成华区二仙桥东三路435号华润大厦38室', '1995-02-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2178700094', '段震南', 0, '7603849901', 0, '440921199500135369', '中国中山天河区大信商圈大信南路421号华润大厦32室', '1995-08-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6308124537', '郑宇宁', 0, '2023811837', 0, '440921199521133061', '中国广州市海珠区江南西路264号华润大厦30室', '1995-05-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2398475167', '苏嘉伦', 0, '2167202944', 0, '440921199521239582', '中国上海市浦东新区健祥路102号42栋', '1995-10-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1458145271', '李云熙', 0, '2063410757', 0, '440921199500312638', '中国广州市海珠区江南西路993号华润大厦37室', '1995-01-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9106569424', '吕致远', 0, '213425495', 0, '440921199512019123', '中国上海市浦东新区健祥路441号24室', '1995-09-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5072741444', '贺安琪', 0, '14183588465', 0, '440921199500300204', '中国中山天河区大信商圈大信南路66号华润大厦18室', '1995-04-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7269504648', '萧杰宏', 1, '14802834900', 0, '440921199521231511', '中国中山天河区大信商圈大信南路686号华润大厦1室', '1995-09-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3488053364', '高詩涵', 1, '75593615354', 0, '440921199502107644', '中国深圳罗湖区清水河一路652号34楼', '1995-10-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7726938511', '顾岚', 1, '18606321831', 0, '440921199512033609', '中国成都市成华区二仙桥东三路447号6栋', '1995-10-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9471330373', '卢致远', 0, '1005099412', 0, '440921199500028355', '中国北京市西城区西長安街176号4号楼', '1995-12-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0802969948', '武嘉伦', 0, '7692541158', 0, '440921199510023404', '中国东莞东泰五街241号28楼', '1995-11-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5960969779', '阎致远', 0, '1029241451', 0, '440921199522038184', '中国北京市西城区西長安街648号34栋', '1995-07-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9972229249', '苏睿', 1, '201922160', 0, '440921199510210145', '中国广州市白云区小坪东路147号12号楼', '1995-07-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3119775385', '刘致远', 0, '19481498167', 0, '440921199511138611', '中国广州市越秀区中山二路197号47栋', '1995-04-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7955384537', '戴宇宁', 1, '76006845714', 0, '440921199522110385', '中国中山天河区大信商圈大信南路533号30室', '1995-03-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5622570095', '陆子韬', 0, '17899802692', 0, '440921199511225290', '中国北京市東城区東直門內大街103号华润大厦17室', '1995-06-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0487872726', '杨震南', 1, '15328751878', 0, '440921199500225976', '中国北京市东城区东单王府井东街383号4楼', '1995-05-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8617949725', '段宇宁', 1, '17517008735', 0, '440921199500317991', '中国上海市黄浦区淮海中路977号华润大厦4室', '1995-01-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3811420667', '钟睿', 1, '1063392376', 0, '440921199511322896', '中国北京市西城区复兴门内大街868号49楼', '1995-11-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4318537950', '邱杰宏', 1, '19699769177', 0, '440921199500316998', '中国北京市西城区西長安街492号29室', '1995-09-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4797656233', '林璐', 1, '14746022139', 0, '440921199500105945', '中国上海市黄浦区淮海中路884号1楼', '1995-09-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6773342100', '常杰宏', 1, '14989681203', 0, '440921199521115611', '中国上海市浦东新区橄榄路148号18号楼', '1995-08-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8404775149', '江安琪', 0, '1078124510', 0, '440921199500221284', '中国北京市房山区岳琉路707号25号楼', '1995-10-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9254684091', '冯岚', 1, '15947166371', 0, '440921199501018415', '中国广州市海珠区江南西路793号2室', '1995-08-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5415696678', '严詩涵', 0, '7695868289', 0, '440921199502239943', '中国东莞东泰五街598号9楼', '1995-02-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7613228300', '武晓明', 0, '2185967320', 0, '440921199520038353', '中国上海市黄浦区淮海中路239号40栋', '1995-09-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9638317441', '于宇宁', 1, '18678972110', 0, '440921199522027290', '中国成都市锦江区人民南路四段395号41栋', '1995-08-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8881613973', '史震南', 0, '1012871628', 0, '440921199502030447', '中国北京市西城区西長安街769号2栋', '1995-01-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6065194682', '钟嘉伦', 1, '17259194257', 0, '440921199500020414', '中国深圳龙岗区布吉镇西环路741号47号楼', '1995-03-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2852329247', '钱秀英', 0, '2133201414', 0, '440921199510013985', '中国上海市徐汇区虹桥路770号32栋', '1995-08-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4821017369', '程璐', 1, '7606027605', 0, '440921199521312829', '中国中山京华商圈华夏街415号13栋', '1995-04-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1307356566', '谢秀英', 0, '75521986883', 0, '440921199510113699', '中国深圳罗湖区清水河一路92号47室', '1995-11-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3106151742', '马宇宁', 1, '2893122398', 0, '440921199502238215', '中国成都市成华区二仙桥东三路934号华润大厦34室', '1995-11-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5319711597', '尹嘉伦', 0, '17124373437', 0, '440921199500302175', '中国上海市浦东新区健祥路763号华润大厦3室', '1995-08-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3271778668', '阎詩涵', 0, '7607425819', 0, '440921199500221012', '中国中山紫马岭商圈中山五路242号34楼', '1995-06-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1164089356', '侯嘉伦', 1, '18308595585', 0, '440921199510338912', '中国广州市越秀区中山二路859号40室', '1995-09-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5088554017', '赵嘉伦', 1, '16889884829', 0, '440921199512121145', '中国成都市成华区玉双路6号848号29号楼', '1995-11-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5125684207', '于岚', 0, '1060788275', 0, '440921199501020325', '中国北京市海淀区清河中街68号589号45室', '1995-03-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5887932885', '常震南', 0, '7692919694', 0, '440921199520135261', '中国东莞珊瑚路722号6号楼', '1995-05-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0468217944', '丁璐', 0, '2819416847', 0, '440921199512324293', '中国成都市成华区二仙桥东三路959号12栋', '1995-10-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3083443541', '陆晓明', 1, '7556281475', 0, '440921199521222420', '中国深圳龙岗区布吉镇西环路334号43室', '1995-11-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1523137320', '尹致远', 0, '16161935632', 0, '440921199510137927', '中国东莞坑美十五巷753号47栋', '1995-07-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3156783096', '叶宇宁', 0, '104103817', 0, '440921199511225033', '中国北京市東城区東直門內大街992号华润大厦40室', '1995-09-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0302980381', '姜詩涵', 1, '14136522638', 0, '440921199522222027', '中国成都市成华区玉双路6号143号14楼', '1995-05-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3460302075', '魏子韬', 0, '280579817', 0, '440921199500003440', '中国成都市成华区双庆路424号43室', '1995-01-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0625123078', '汪云熙', 0, '19865250451', 0, '440921199520123801', '中国上海市浦东新区橄榄路444号39号楼', '1995-04-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5468853322', '梁嘉伦', 0, '1061776229', 0, '440921199520038983', '中国北京市西城区西長安街136号14楼', '1995-03-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6638484256', '方子异', 0, '7556327395', 0, '440921199510008164', '中国深圳龙岗区布吉镇西环路256号48栋', '1995-03-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2506844450', '廖岚', 0, '1004835117', 0, '440921199520210216', '中国北京市海淀区清河中街68号125号40室', '1995-05-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5408398905', '董嘉伦', 0, '1099306548', 0, '440921199521029113', '中国北京市东城区东单王府井东街671号49栋', '1995-02-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3027215460', '钟震南', 0, '7694663679', 0, '440921199500000651', '中国东莞环区南街二巷80号华润大厦31室', '1995-02-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3737110873', '莫云熙', 1, '7606193186', 0, '440921199522018859', '中国中山京华商圈华夏街509号28栋', '1995-05-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0680221845', '于安琪', 1, '1046987724', 0, '440921199510006344', '中国北京市延庆区028县道750号46号楼', '1995-08-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4434407522', '杨晓明', 0, '7699806489', 0, '440921199522028412', '中国东莞坑美十五巷685号18楼', '1995-05-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6289038916', '唐云熙', 0, '7554267058', 0, '440921199512338900', '中国深圳福田区景田东一街765号华润大厦33室', '1995-11-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4785680626', '罗宇宁', 1, '103919131', 0, '440921199512238398', '中国北京市房山区岳琉路550号16号楼', '1995-08-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0181787949', '贾致远', 0, '14837962545', 0, '440921199500314116', '中国成都市锦江区红星路三段974号25号楼', '1995-10-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4411925672', '张安琪', 0, '15491839890', 0, '440921199500327513', '中国上海市黄浦区淮海中路210号华润大厦42室', '1995-07-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7069617344', '崔秀英', 0, '101809259', 0, '440921199510216023', '中国北京市西城区西長安街834号华润大厦7室', '1995-12-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2603273674', '尹嘉伦', 0, '76980110661', 0, '440921199521134761', '中国东莞珊瑚路583号49楼', '1995-10-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6883688265', '陆安琪', 1, '202231679', 0, '440921199521114064', '中国广州市越秀区中山二路515号华润大厦29室', '1995-02-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0187863496', '苏子异', 1, '19168027821', 0, '440921199500110176', '中国东莞坑美十五巷156号36楼', '1995-01-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2875884234', '卢睿', 1, '17713219736', 0, '440921199512224982', '中国上海市闵行区宾川路801号14楼', '1995-06-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9785477698', '龙子异', 1, '212786019', 0, '440921199510135870', '中国上海市黄浦区淮海中路765号华润大厦10室', '1995-04-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5106620168', '曹子异', 0, '7699390040', 0, '440921199521039698', '中国东莞坑美十五巷116号华润大厦4室', '1995-09-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8285220868', '阎致远', 0, '76996087629', 0, '440921199511036491', '中国东莞坑美十五巷11号20楼', '1995-03-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2767569751', '程致远', 1, '217590604', 0, '440921199501111402', '中国上海市黄浦区淮海中路252号47楼', '1995-12-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3455857666', '江子韬', 0, '100944888', 0, '440921199520006264', '中国北京市朝阳区三里屯路967号华润大厦45室', '1995-02-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9268255956', '薛晓明', 0, '14823330527', 0, '440921199502222845', '中国成都市成华区二仙桥东三路593号19栋', '1995-02-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3489594717', '邵安琪', 0, '19379024398', 0, '440921199501213790', '中国深圳罗湖区清水河一路859号6号楼', '1995-01-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2897747073', '彭詩涵', 0, '75513157656', 0, '440921199501208536', '中国深圳罗湖区清水河一路316号36楼', '1995-12-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0864337010', '宋震南', 1, '1002903466', 0, '440921199501214439', '中国北京市朝阳区三里屯路686号7楼', '1995-03-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6023041195', '夏璐', 0, '1034726392', 0, '440921199522234004', '中国北京市东城区东单王府井东街732号48楼', '1995-01-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6682184711', '陶岚', 1, '7609190412', 0, '440921199520018448', '中国中山天河区大信商圈大信南路654号33楼', '1995-02-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5686478075', '林睿', 1, '75539698749', 0, '440921199500309415', '中国深圳龙岗区学园一巷13号41室', '1995-08-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2813494895', '顾杰宏', 0, '2877512392', 0, '440921199510134601', '中国成都市锦江区人民南路四段438号48楼', '1995-08-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6327653890', '段安琪', 0, '2840549564', 0, '440921199512321533', '中国成都市锦江区人民南路四段530号华润大厦23室', '1995-05-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4410001591', '汤宇宁', 1, '100203628', 0, '440921199502223868', '中国北京市海淀区清河中街68号208号27栋', '1995-04-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0771977805', '潘云熙', 0, '16891152538', 0, '440921199520230263', '中国北京市东城区东单王府井东街943号21栋', '1995-11-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1262478866', '汪宇宁', 1, '15254179288', 0, '440921199511118378', '中国成都市成华区二仙桥东三路523号44室', '1995-02-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2593650108', '汪詩涵', 0, '2082391775', 0, '440921199501206174', '中国广州市白云区小坪东路101号华润大厦23室', '1995-02-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9841047126', '武震南', 0, '18912530192', 0, '440921199511336335', '中国北京市延庆区028县道139号24楼', '1995-05-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0427998705', '武子韬', 0, '17531038991', 0, '440921199500200778', '中国北京市東城区東直門內大街463号9室', '1995-08-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0215194602', '向岚', 0, '17386813132', 0, '440921199501034209', '中国北京市西城区西長安街472号华润大厦47室', '1995-02-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1548495062', '萧宇宁', 0, '7693065528', 0, '440921199502200281', '中国东莞坑美十五巷835号33室', '1995-11-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1100927217', '蔡子韬', 0, '2145101852', 0, '440921199500222137', '中国上海市浦东新区健祥路243号12号楼', '1995-10-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8911231697', '马子异', 1, '7559814830', 0, '440921199520314118', '中国深圳龙岗区学园一巷638号34栋', '1995-07-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3906868441', '许晓明', 0, '16079536157', 0, '440921199511004109', '中国深圳龙岗区学园一巷570号23室', '1995-10-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7574233769', '高嘉伦', 1, '2176844423', 0, '440921199522202421', '中国上海市浦东新区健祥路436号50栋', '1995-09-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4596330628', '余晓明', 1, '7551055751', 0, '440921199521134470', '中国深圳福田区景田东一街171号24室', '1995-08-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8574093995', '蔡詩涵', 1, '7603006375', 0, '440921199510134539', '中国中山京华商圈华夏街164号华润大厦4室', '1995-08-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5603000676', '薛致远', 0, '282584360', 0, '440921199511018878', '中国成都市成华区二仙桥东三路103号38号楼', '1995-09-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5708411586', '高嘉伦', 1, '16446456335', 0, '440921199500028975', '中国北京市延庆区028县道83号11号楼', '1995-05-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4847371321', '黄秀英', 0, '1011774954', 0, '440921199500003081', '中国北京市东城区东单王府井东街327号20栋', '1995-06-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2705276087', '傅子异', 1, '13051612441', 0, '440921199501130763', '中国广州市天河区天河路958号36号楼', '1995-08-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9417823426', '郝致远', 1, '202568153', 0, '440921199521039201', '中国广州市白云区小坪东路244号华润大厦50室', '1995-09-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8962785891', '杨宇宁', 0, '1096293529', 0, '440921199511017008', '中国北京市房山区岳琉路533号49楼', '1995-10-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3224665789', '姜詩涵', 0, '2166754960', 0, '440921199521332564', '中国上海市浦东新区橄榄路834号29栋', '1995-12-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3842578615', '刘岚', 0, '17827535336', 0, '440921199500317734', '中国深圳龙岗区布吉镇西环路112号华润大厦28室', '1995-09-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2983464354', '谭岚', 0, '16810710166', 0, '440921199510317247', '中国北京市朝阳区三里屯路990号华润大厦27室', '1995-03-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4174677989', '周子韬', 1, '18288237233', 0, '440921199512010010', '中国北京市房山区岳琉路947号18号楼', '1995-05-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0200093143', '谢睿', 1, '13649145865', 0, '440921199512309245', '中国上海市徐汇区虹桥路528号37楼', '1995-04-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2477041961', '钟詩涵', 0, '19737681236', 0, '440921199521302393', '中国北京市延庆区028县道450号35楼', '1995-04-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4049197603', '向嘉伦', 1, '1021663234', 0, '440921199520338315', '中国北京市西城区复兴门内大街687号12室', '1995-05-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9050493869', '戴璐', 0, '16094135327', 0, '440921199520131074', '中国深圳罗湖区田贝一路834号华润大厦31室', '1995-06-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1899717284', '林宇宁', 0, '13969493393', 0, '440921199500109384', '中国上海市徐汇区虹桥路235号34栋', '1995-02-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1056989798', '孟秀英', 1, '14978933787', 0, '440921199511208440', '中国中山京华商圈华夏街761号23室', '1995-03-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9995080460', '汤云熙', 1, '14931913581', 0, '440921199511125570', '中国中山天河区大信商圈大信南路384号31号楼', '1995-03-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9500135798', '邵睿', 1, '13652024743', 0, '440921199512116213', '中国北京市朝阳区三里屯路531号华润大厦29室', '1995-09-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6999016454', '朱云熙', 1, '16538747521', 0, '440921199512135864', '中国深圳罗湖区田贝一路770号33号楼', '1995-09-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4915682910', '戴杰宏', 1, '7552714172', 0, '440921199521115027', '中国深圳龙岗区布吉镇西环路452号36栋', '1995-04-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3988896282', '魏安琪', 0, '107814885', 0, '440921199501214410', '中国北京市房山区岳琉路200号27室', '1995-04-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1599422339', '谢嘉伦', 1, '15943334150', 0, '440921199510126761', '中国成都市锦江区人民南路四段587号7室', '1995-01-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2131741279', '苏晓明', 0, '19749538043', 0, '440921199521124959', '中国深圳龙岗区学园一巷496号华润大厦15室', '1995-05-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7529294757', '秦嘉伦', 0, '204177008', 0, '440921199510225687', '中国广州市海珠区江南西路725号16号楼', '1995-12-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5416659603', '廖璐', 1, '14789984896', 0, '440921199500125943', '中国北京市房山区岳琉路329号40室', '1995-02-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9549732648', '武晓明', 1, '101830791', 0, '440921199500001315', '中国北京市東城区東直門內大街619号华润大厦3室', '1995-03-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7170191105', '曾震南', 0, '15570976972', 0, '440921199511234059', '中国成都市成华区双庆路851号15楼', '1995-05-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4530692982', '姜子异', 0, '14159317275', 0, '440921199500331248', '中国深圳龙岗区学园一巷677号6栋', '1995-01-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9809255048', '李云熙', 1, '13342532701', 0, '440921199502136839', '中国成都市成华区玉双路6号668号3栋', '1995-04-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1230855665', '江云熙', 0, '19885461577', 0, '440921199510106467', '中国广州市越秀区中山二路707号华润大厦44室', '1995-10-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5976945930', '邵璐', 0, '7604118285', 0, '440921199511208235', '中国中山乐丰六路315号32楼', '1995-10-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3923363932', '黄嘉伦', 1, '15175091057', 0, '440921199512222371', '中国北京市朝阳区三里屯路641号38室', '1995-01-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8454672352', '熊嘉伦', 1, '17624293813', 0, '440921199520112015', '中国北京市朝阳区三里屯路124号华润大厦43室', '1995-06-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6380123803', '杨岚', 0, '16805263576', 0, '440921199502201938', '中国广州市越秀区中山二路544号41栋', '1995-01-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4264636106', '傅震南', 1, '15587393632', 0, '440921199502316147', '中国成都市成华区玉双路6号389号21号楼', '1995-11-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1024742215', '龙杰宏', 0, '13964037174', 0, '440921199502005165', '中国广州市越秀区中山二路828号华润大厦49室', '1995-04-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5997116834', '林詩涵', 1, '14954290425', 0, '440921199511128180', '中国广州市越秀区中山二路995号20室', '1995-09-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1301570310', '范睿', 1, '16728920362', 0, '440921199511205449', '中国深圳罗湖区蔡屋围深南东路405号44号楼', '1995-09-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9416517886', '丁子异', 0, '280301682', 0, '440921199510137491', '中国成都市成华区玉双路6号808号25室', '1995-06-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5027706049', '姜晓明', 1, '15950652660', 0, '440921199502137893', '中国广州市白云区小坪东路332号13室', '1995-05-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6485791225', '张安琪', 0, '17514820190', 0, '440921199521303930', '中国广州市天河区天河路689号45室', '1995-03-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9059236850', '钟岚', 0, '203777425', 0, '440921199522028113', '中国广州市白云区机场路棠苑街五巷294号44栋', '1995-01-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); + +-- ---------------------------- +-- Table structure for custospend +-- ---------------------------- +DROP TABLE IF EXISTS "public"."custospend"; +CREATE TABLE "public"."custospend" ( + "SpendId" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "RoomNo" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, + "CustoNo" varchar(15) COLLATE "pg_catalog"."default" NOT NULL, + "SpendName" varchar(25) COLLATE "pg_catalog"."default" NOT NULL, + "SpendAmount" int4 NOT NULL, + "SpendPrice" numeric(10,2) NOT NULL, + "SpendMoney" numeric(10,2) NOT NULL, + "SpendTime" timestamp(6) NOT NULL, + "MoneyState" varchar(9) COLLATE "pg_catalog"."default", + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."custospend"."SpendId" IS '记录编号'; +COMMENT ON COLUMN "public"."custospend"."RoomNo" IS '房间编号'; +COMMENT ON COLUMN "public"."custospend"."CustoNo" IS '客户编号'; +COMMENT ON COLUMN "public"."custospend"."SpendName" IS '商品名称'; +COMMENT ON COLUMN "public"."custospend"."SpendAmount" IS '商品数量'; +COMMENT ON COLUMN "public"."custospend"."SpendPrice" IS '商品价格'; +COMMENT ON COLUMN "public"."custospend"."SpendMoney" IS '消费总额'; +COMMENT ON COLUMN "public"."custospend"."SpendTime" IS '消费时间'; +COMMENT ON COLUMN "public"."custospend"."MoneyState" IS '结算状态'; +COMMENT ON COLUMN "public"."custospend"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."custospend"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."custospend"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."custospend"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."custospend"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."custospend" IS '商品消费表'; + +-- ---------------------------- +-- Records of custospend +-- ---------------------------- +INSERT INTO "public"."custospend" VALUES (1, 'BS005', 'TS1081', '乐事薯片(原味)', 27, 20.00, 540.00, '2020-04-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (2, 'BS001', 'TS1571', '片(原味)', 1, 20.00, 0.00, '2020-08-21 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (3, 'BD001', 'TS1862', '特级DLS', 2, 40.00, 80.00, '2018-12-20 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (4, 'BD001', 'TS1239', '三只松鼠夏威夷坚果', 2, 40.00, 80.00, '2020-05-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (5, 'BS005', 'TS1081', '特级杜蕾斯', 27, 40.00, 1080.00, '2020-04-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (6, 'BD002', 'TS1816', '雪碧', 1, 2.50, 2.50, '2018-12-21 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (7, 'BD002', 'TS1816', '特级DLS', 1, 40.00, 40.00, '2018-12-21 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (8, 'BS005', 'TS1081', '青岛啤酒', 27, 15.00, 405.00, '2020-04-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (9, 'BS005', 'TS1081', '可口可乐', 31, 10.00, 310.00, '2020-04-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (10, 'HD006', 'TS1364', '居住HD0057天', 7, 4375.00, 4375.00, '2020-04-14 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (11, 'ZT002', 'TS1364', '居住HD0067天', 7, 4375.00, 4375.00, '2020-04-14 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (12, 'ZT002', 'TS1364', '可口可乐', 5, 2.50, 12.50, '2020-04-14 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (13, 'HD003', 'TS1001', '居住BD0050天', 0, 999.00, 0.00, '2020-04-26 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (14, 'BD004', 'TS1480', '火腿肠', 3, 10.00, 30.00, '2020-04-29 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (15, 'BD004', 'TS1480', '雪碧', 3, 2.50, 7.50, '2020-04-29 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (16, 'BD004', 'TS1480', '92拉菲', 2, 10800.00, 21600.00, '2020-04-29 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (17, 'HD001', 'TS1862', '康师傅方便面', 10, 10.00, 100.00, '2018-12-26 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (18, 'BD007', 'TS1002', '居住BS00865天', 65, 27625.00, 27625.00, '2020-07-05 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (19, 'BS007', 'TS1003', '居住BS00965天', 65, 27625.00, 27625.00, '2020-07-05 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (20, 'ZT005', 'TS1005', '居住HD00168天', 68, 42500.00, 42500.00, '2020-05-10 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (21, 'ZT005', 'TS1005', '特级杜蕾斯', 10, 40.00, 400.00, '2020-05-13 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (22, 'BS003', 'TS1084', '特级杜蕾斯', 20, 40.00, 800.00, '2018-12-26 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (23, 'BS007', 'TS1003', '特级杜蕾斯', 1, 40.00, 40.00, '2020-05-22 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (24, 'HS003', 'TS1194', '拉菲', 2, 10000.00, 20000.00, '2018-12-27 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (25, 'HS003', 'TS1194', '扑克牌', 2, 5.00, 10.00, '2018-12-27 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (26, 'HS003', 'TS1194', '火腿肠', 1, 10.00, 10.00, '2018-12-27 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (27, 'BD001', 'TS1365', '居住HD00247天', 47, 29375.00, 29375.00, '2020-07-19 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (28, 'BD001', 'TS1365', '香皂', 2, 25.00, 50.00, '2020-07-28 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (29, 'BD001', 'TS1365', '香皂', 2, 25.00, 50.00, '2020-07-28 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (30, 'BD001', 'TS1365', '青岛啤酒', 2, 15.00, 30.00, '2020-07-28 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (31, 'BS001', 'TS1571', 'WAHAHA', 2, 5.00, 10.00, '2020-08-21 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (32, 'BD002', 'TS1001', '三只松鼠夏威夷坚果', 12, 40.00, 480.00, '2019-10-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (33, 'BD005', 'TS1005', 'aaa', 1, 10.00, 10.00, '2020-08-22 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (34, 'ZT001', 'TS1457', '拉菲', 30, 10000.00, 300000.00, '2019-10-28 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (35, 'BD002', 'TS1001', '康师傅方便面', 1, 10.00, 10.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (36, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (37, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (38, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (39, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (40, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (41, 'BD002', 'TS1001', '康师傅方便面', 2, 10.00, 20.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (42, 'BD002', 'TS1001', '三只松鼠夏威夷坚果', 2, 40.00, 80.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (43, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-18 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (44, 'BD002', 'TS1001', '乐事薯片(原味)', 2, 20.00, 40.00, '2020-03-25 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (45, 'BS006', 'TS1998', '三只松鼠零食大礼包', 2, 299.00, 598.00, '2020-09-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (46, 'BD001', 'TS1862', '青岛啤酒', 2, 15.00, 30.00, '2018-12-20 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (47, 'HD001', 'TS1862', '雪碧', 5, 10.00, 50.00, '2018-12-26 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (48, 'HD001', 'TS1862', 'TS纪念品', 2, 10.00, 20.00, '2018-12-26 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (49, 'BS001', 'TS1005', '乐事薯片(原味)', 20, 20.00, 400.00, '2020-11-13 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (50, 'BS001', 'TS1005', '三只松鼠夏威夷坚果', 4, 40.00, 160.00, '2020-11-26 21:29:13', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (51, 'HD008', 'TS1492', '92拉菲', 1, 10800.00, 10800.00, '2020-12-23 22:25:48', 'Settled', 0, NULL, NULL, 'WK010', '2022-01-30'); +INSERT INTO "public"."custospend" VALUES (52, 'HD008', 'TS1492', '92拉菲', 1, 10800.00, 10800.00, '2020-12-23 22:57:01', 'Settled', 0, NULL, NULL, 'WK010', '2022-01-30'); +INSERT INTO "public"."custospend" VALUES (53, 'BD010', 'TS1143', '雪碧', 2, 2.50, 5.00, '2021-01-24 17:02:12', 'Settled', 0, NULL, NULL, 'WK010', '2022-01-30'); +INSERT INTO "public"."custospend" VALUES (54, 'BD006', 'TS1347', '居住BD00270天', 70, 21000.00, 21000.00, '2021-02-09 18:04:21', 'Settled', 0, NULL, NULL, 'WK010', '2021-05-14'); +INSERT INTO "public"."custospend" VALUES (55, 'BD008', 'TS1812', '居住BD003共12天', 12, 3600.00, 3600.00, '2021-02-12 15:04:14', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); +INSERT INTO "public"."custospend" VALUES (56, 'BD008', 'TS1812', '三只松鼠夏威夷坚果', 1, 40.00, 40.00, '2021-02-12 15:54:38', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); +INSERT INTO "public"."custospend" VALUES (57, 'BD008', 'TS1812', '三只松鼠夏威夷坚果', 1, 40.00, 40.00, '2021-02-12 15:58:38', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); +INSERT INTO "public"."custospend" VALUES (58, 'BD001', 'TS1074', '黄油华夫饼', 5, 80.00, 400.00, '2021-02-16 00:30:12', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (59, 'BD008', 'TS1812', 'T仔', 20, 90.00, 1800.00, '2021-02-18 17:24:58', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); +INSERT INTO "public"."custospend" VALUES (60, 'BD002', 'R-2021009', '日清方便面', 10, 5.50, 55.00, '2021-03-11 22:34:40', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (61, 'BD002', 'R-2021009', '拉菲', 10, 1080.00, 10800.00, '2021-03-11 22:34:54', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (62, 'BD002', 'R-2021009', '92拉菲', 10, 10800.00, 108000.00, '2021-03-11 22:35:01', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (63, 'BD001', 'TS1074', '乐事薯片(原味)', 1, 20.00, 20.00, '2021-04-17 16:07:38', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (64, 'BD001', 'TS1074', '雪碧', 3, 2.50, 7.50, '2021-04-17 16:07:43', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (65, 'BD001', 'TS1074', '特级杜蕾斯', 3, 40.00, 120.00, '2021-04-17 16:07:52', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (66, 'BD001', 'TS1074', '可口可乐', 3, 10.00, 30.00, '2021-04-17 16:08:12', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (67, 'BD001', 'TS1074', '乐事薯片(原味)', 3, 20.00, 60.00, '2021-04-17 16:08:14', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (68, 'BD001', 'TS1074', '雪碧', 3, 2.50, 7.50, '2021-04-17 16:08:16', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (69, 'BD001', 'TS1074', '特级杜蕾斯', 3, 40.00, 120.00, '2021-04-17 16:08:19', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (70, 'BD001', 'TS1074', '可口可乐', 3, 10.00, 30.00, '2021-04-17 16:08:40', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (71, 'BD001', 'TS1074', '乐事薯片(原味)', 3, 20.00, 60.00, '2021-04-17 16:08:42', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (72, 'BD001', 'TS1074', '雪碧', 3, 2.50, 7.50, '2021-04-17 16:08:45', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (73, 'BD001', 'TS1074', '乐事薯片(原味)', 3, 20.00, 60.00, '2021-04-17 16:08:57', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (74, 'BD001', 'TS1074', '雪碧', 3, 2.50, 7.50, '2021-04-17 16:08:59', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (75, 'BD001', 'TS1074', '特级杜蕾斯', 3, 40.00, 120.00, '2021-04-17 16:09:02', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (76, 'BD001', 'TS1074', '三只松鼠夏威夷坚果', 3, 40.00, 120.00, '2021-04-17 16:09:04', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (77, 'BD002', 'R-2021009', '乐事薯片(原味)', 3, 20.00, 60.00, '2021-04-17 16:09:38', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (78, 'BD006', 'TS1347', '三只松鼠夏威夷坚果', 3, 40.00, 120.00, '2021-04-17 21:02:33', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-05-14'); +INSERT INTO "public"."custospend" VALUES (79, 'BD006', 'TS1347', '火腿肠', 5, 10.00, 50.00, '2021-04-17 21:13:30', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-05-14'); +INSERT INTO "public"."custospend" VALUES (80, 'BD006', 'TS1347', '澡巾', 5, 12.50, 62.50, '2021-04-17 21:13:36', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-05-14'); +INSERT INTO "public"."custospend" VALUES (81, 'BD006', 'TS1347', '扑克牌', 5, 5.00, 25.00, '2021-04-17 21:13:46', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-05-14'); +INSERT INTO "public"."custospend" VALUES (82, 'BD006', 'TS1347', '澡巾', 3, 12.50, 37.50, '2021-04-17 21:15:16', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-05-14'); +INSERT INTO "public"."custospend" VALUES (83, 'BD006', 'TS1347', '三只松鼠夏威夷坚果', 5, 40.00, 200.00, '2021-05-05 13:34:48', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-05-14'); +INSERT INTO "public"."custospend" VALUES (84, 'BD005', 'TS-20210068', '测试勿选', 1, 9999999.00, 9999999.00, '2021-06-06 00:07:49', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); +INSERT INTO "public"."custospend" VALUES (85, 'BS004', 'TS1364', '红枣', 10, 25.00, 250.00, '2021-07-17 17:45:20', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-07-17'); +INSERT INTO "public"."custospend" VALUES (86, 'BS004', 'TS1364', 'TS纪念品', 10, 10.00, 100.00, '2021-07-17 17:45:30', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-07-17'); +INSERT INTO "public"."custospend" VALUES (87, 'BS004', 'TS1364', '92拉菲', 50, 10800.00, 540000.00, '2021-07-17 17:45:49', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-07-17'); +INSERT INTO "public"."custospend" VALUES (88, 'BD010', 'TS1143', '测试数据(勿选)', 1, 9999999.99, 9999999.99, '2021-07-19 19:44:57', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); +INSERT INTO "public"."custospend" VALUES (89, 'ZT002', 'TS-20210078', '黄油华夫饼', 2, 80.00, 160.00, '2022-01-30 23:38:14', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-02-26'); +INSERT INTO "public"."custospend" VALUES (90, 'ZT002', 'TS-20210078', '92拉菲', 5, 10800.00, 54000.00, '2022-01-30 23:38:52', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-02-26'); +INSERT INTO "public"."custospend" VALUES (363, 'BD001', 'TS001344013384', '雪碧', 1, 2.50, 2.50, '2022-04-05 21:38:31', 'Settled', 0, NULL, '0001-01-01', '', '2022-05-23'); +INSERT INTO "public"."custospend" VALUES (365, 'BD001', 'TS001344013384', '三只松鼠夏威夷坚果', 1, 40.00, 40.00, '2022-04-05 21:38:38', 'Settled', 0, NULL, '0001-01-01', '', '2022-05-23'); +INSERT INTO "public"."custospend" VALUES (370, 'BD001', 'TS001344013384', '可口可乐', 1, 10.00, 10.00, '2022-04-06 15:21:49', 'Settled', 0, NULL, '0001-01-01', '', '2022-05-23'); +INSERT INTO "public"."custospend" VALUES (372, 'BD001', 'TS001344013384', '黄油华夫饼', 1, 80.00, 80.00, '2022-04-06 15:21:55', 'Settled', 0, NULL, '0001-01-01', '', '2022-05-23'); +INSERT INTO "public"."custospend" VALUES (102, 'ZT005', 'TS-20210078', '火腿肠', 13, 10.00, 130.00, '2022-02-26 13:59:32', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-11-17'); +INSERT INTO "public"."custospend" VALUES (150, 'ZT005', 'TS-20210078', '毛巾', 3, 10.00, 30.00, '2022-02-26 15:58:38', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-11-17'); +INSERT INTO "public"."custospend" VALUES (656, 'BD012', 'TS004121649776', '哇哈哈矿泉水', 2, 3.00, 6.00, '2022-11-18 16:10:39', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-12-04'); +INSERT INTO "public"."custospend" VALUES (658, 'BD012', 'TS004121649776', '白象方便面', 2, 5.00, 10.00, '2022-11-18 16:10:53', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-12-04'); +INSERT INTO "public"."custospend" VALUES (660, 'BD012', 'TS004121649776', '老婆饼', 1, 15.00, 15.00, '2022-11-18 16:11:05', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-12-04'); +INSERT INTO "public"."custospend" VALUES (592, 'BD009', 'TS003574305322', '青岛啤酒', 10, 15.00, 150.00, '2022-10-04 00:49:02', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-12-05'); +INSERT INTO "public"."custospend" VALUES (687, 'BS003', 'TS006957585451', '三只松鼠零食大礼包', 5, 299.00, 1495.00, '2022-12-04 13:31:22', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-12-05'); +INSERT INTO "public"."custospend" VALUES (614, 'BD014', 'TS096263040047', '特级杜蕾斯', 2, 40.00, 80.00, '2022-11-17 11:09:17', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-12-06'); +INSERT INTO "public"."custospend" VALUES (616, 'BD014', 'TS096263040047', '扑克牌', 1, 5.00, 5.00, '2022-11-17 11:10:04', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-12-06'); +INSERT INTO "public"."custospend" VALUES (627, 'ZT003', 'TS063603838018', '可口可乐', 3, 10.00, 30.00, '2022-11-18 09:54:08', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2022-12-06'); +INSERT INTO "public"."custospend" VALUES (632, 'ZT003', 'TS063603838018', '香皂', 1, 25.00, 25.00, '2022-11-18 09:55:25', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-12-06'); +INSERT INTO "public"."custospend" VALUES (629, 'ZT003', 'TS063603838018', '蟹味瓜子仁', 2, 30.00, 60.00, '2022-11-18 09:54:27', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2022-12-06'); +INSERT INTO "public"."custospend" VALUES (635, 'ZT003', 'TS063603838018', '黄油华夫饼', 1, 80.00, 80.00, '2022-11-18 09:55:43', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-12-06'); + +-- ---------------------------- +-- Table structure for dept +-- ---------------------------- +DROP TABLE IF EXISTS "public"."dept"; +CREATE TABLE "public"."dept" ( + "dept_no" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, + "dept_name" varchar(100) COLLATE "pg_catalog"."default", + "dept_desc" varchar(255) COLLATE "pg_catalog"."default", + "dept_date" date, + "dept_leader" varchar(20) COLLATE "pg_catalog"."default", + "dept_parent" varchar(50) COLLATE "pg_catalog"."default", + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."dept"."dept_no" IS '部门编号'; +COMMENT ON COLUMN "public"."dept"."dept_name" IS '部门名称'; +COMMENT ON COLUMN "public"."dept"."dept_desc" IS '部门描述'; +COMMENT ON COLUMN "public"."dept"."dept_date" IS '创建时间(部门)'; +COMMENT ON COLUMN "public"."dept"."dept_leader" IS '部门主管'; +COMMENT ON COLUMN "public"."dept"."dept_parent" IS '上级部门'; +COMMENT ON COLUMN "public"."dept"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."dept"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."dept"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."dept"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."dept"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."dept" IS '部门表'; + +-- ---------------------------- +-- Records of dept +-- ---------------------------- +INSERT INTO "public"."dept" VALUES ('D-001', '经理部', '各部门经理', '2019-10-01', 'WK010', NULL, 0, 'System', '2019-10-01', NULL, NULL); +INSERT INTO "public"."dept" VALUES ('D-002', '酒店部', '酒店部门人员', '2019-10-02', 'WK010', NULL, 0, 'System', '2019-10-02', NULL, NULL); +INSERT INTO "public"."dept" VALUES ('D-003', '财务部', '财务部门人员', '2019-10-03', 'WK005', '', 0, 'System', '2019-10-03', '', '2021-02-17'); +INSERT INTO "public"."dept" VALUES ('D-004', '人力资源部', '人力资源部门人员', '2019-10-04', 'WK001', '', 0, 'System', '2019-10-04', '', '2021-02-17'); +INSERT INTO "public"."dept" VALUES ('D-005', '后勤部', '后勤部门人员', '2019-10-05', 'WK003', '', 0, 'System', '2019-10-05', '', '2021-02-17'); +INSERT INTO "public"."dept" VALUES ('D-006', '商品部', '商品部门人员', '2019-10-06', 'WK004', 'D-006', 0, 'System', '2019-10-06', 'WK010', '2021-02-28'); +INSERT INTO "public"."dept" VALUES ('D-007', '维修部', '维修部门人员', '2019-10-07', 'WK007', 'D-007', 0, 'System', '2019-10-07', 'WK010', '2021-02-28'); +INSERT INTO "public"."dept" VALUES ('D-008', '内控部', '内控部门人员', '2019-10-08', NULL, '', 0, 'System', '2019-10-08', NULL, NULL); +INSERT INTO "public"."dept" VALUES ('D-009', '监管小组', '监管小组人员', '2019-10-09', 'WK010', '', 0, 'System', '2019-10-09', 'WK009', '2021-05-29'); +INSERT INTO "public"."dept" VALUES ('D-010', '总经办', '总经办人员', '2019-10-10', 'WK010', 'D-001', 0, 'System', '2019-10-10', 'WK010', '2021-02-28'); +INSERT INTO "public"."dept" VALUES ('D-202200114', 'IT技术部', '维护酒店管理系统安全及更新', '2022-01-31', 'WK005', 'D-001', 0, NULL, '0001-01-01', NULL, '0001-01-01'); +INSERT INTO "public"."dept" VALUES ('D-011', '餐饮部', '餐饮部人员', '2019-10-11', 'Lien', 'D-008', 0, 'System', '2019-10-11', '', '2022-04-08'); +INSERT INTO "public"."dept" VALUES ('D-20210034', '测试测试', '测试测试', '2021-02-17', 'Shenyou', '', 0, NULL, '0001-01-01', '', '2022-09-18'); +INSERT INTO "public"."dept" VALUES ('D-20210087', '测试', '测试', '2021-05-30', 'Duyen', 'D-001', 0, NULL, '0001-01-01', '', '2022-09-18'); + +-- ---------------------------- +-- Table structure for education +-- ---------------------------- +DROP TABLE IF EXISTS "public"."education"; +CREATE TABLE "public"."education" ( + "education_no" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, + "education_name" varchar(100) COLLATE "pg_catalog"."default", + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."education"."education_no" IS '学历编号'; +COMMENT ON COLUMN "public"."education"."education_name" IS '学历名称'; +COMMENT ON COLUMN "public"."education"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."education"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."education"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."education"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."education"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."education" IS '学历表'; + +-- ---------------------------- +-- Records of education +-- ---------------------------- +INSERT INTO "public"."education" VALUES ('E-00001', '小学', 0, 'System', '2021-01-31', '', '2021-06-27'); +INSERT INTO "public"."education" VALUES ('E-00002', '初中', 0, 'System', '2021-02-01', 'System', '2021-02-01'); +INSERT INTO "public"."education" VALUES ('E-00003', '高中', 0, 'System', '2021-02-02', 'System', '2021-02-02'); +INSERT INTO "public"."education" VALUES ('E-00004', '中专', 0, 'System', '2021-02-03', 'WK009', '2021-05-29'); +INSERT INTO "public"."education" VALUES ('E-00005', '大专', 0, 'System', '2021-02-04', 'System', '2021-02-04'); +INSERT INTO "public"."education" VALUES ('E-00006', '本科', 0, 'System', '2021-02-05', 'System', '2021-02-05'); +INSERT INTO "public"."education" VALUES ('E-00007', '研究生', 0, 'System', '2021-02-06', 'System', '2021-02-06'); +INSERT INTO "public"."education" VALUES ('E-00008', '博士', 0, 'System', '2021-02-07', '', '2022-02-26'); +INSERT INTO "public"."education" VALUES ('E-202101', '硕士', 0, 'admin', '2021-05-10', '', '2022-02-26'); +INSERT INTO "public"."education" VALUES ('E-00009', '博士后', 0, 'System', '2021-02-08', '', '2022-02-26'); + +-- ---------------------------- +-- Table structure for fonts +-- ---------------------------- +DROP TABLE IF EXISTS "public"."fonts"; +CREATE TABLE "public"."fonts" ( + "FontsId" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "FontsMess" varchar(250) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."fonts"."FontsId" IS 'ID'; +COMMENT ON COLUMN "public"."fonts"."FontsMess" IS '文字信息'; +COMMENT ON COLUMN "public"."fonts"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."fonts"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."fonts"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."fonts"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."fonts"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."fonts" IS '主页跑马灯信息表'; + +-- ---------------------------- +-- Records of fonts +-- ---------------------------- +INSERT INTO "public"."fonts" VALUES (1, '本酒店即日起与闪修平台联合推出“多修多折”活动,详情请咨询前台!', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."fonts" VALUES (2, '本酒店即日起与神之食餐厅联合推出“吃多折多”活动,详情请咨询前台!', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."fonts" VALUES (3, '本酒店即日起与Second网吧联合推出“免费体验酒店式网吧”活动,详情请咨询前台!', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for gbtype +-- ---------------------------- +DROP TABLE IF EXISTS "public"."gbtype"; +CREATE TABLE "public"."gbtype" ( + "GBTypeId" int4 NOT NULL, + "GBName" varchar(255) COLLATE "pg_catalog"."default", + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."gbtype"."GBTypeId" IS '奖惩类型ID'; +COMMENT ON COLUMN "public"."gbtype"."GBName" IS '奖惩类型名称'; +COMMENT ON COLUMN "public"."gbtype"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."gbtype"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."gbtype"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."gbtype"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."gbtype"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."gbtype" IS '奖惩类型'; + +-- ---------------------------- +-- Records of gbtype +-- ---------------------------- +INSERT INTO "public"."gbtype" VALUES (0, '奖励', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."gbtype" VALUES (1, '惩罚', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for module +-- ---------------------------- +DROP TABLE IF EXISTS "public"."module"; +CREATE TABLE "public"."module" ( + "module_id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "module_name" varchar(200) COLLATE "pg_catalog"."default", + "module_desc" varchar(255) COLLATE "pg_catalog"."default", + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_time" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_time" date +) +; +COMMENT ON COLUMN "public"."module"."module_id" IS '模块ID'; +COMMENT ON COLUMN "public"."module"."module_name" IS '模块名称'; +COMMENT ON COLUMN "public"."module"."module_desc" IS '模块描述'; +COMMENT ON COLUMN "public"."module"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."module"."datains_usr" IS '资料新增人'; +COMMENT ON COLUMN "public"."module"."datains_time" IS '资料新增时间'; +COMMENT ON COLUMN "public"."module"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."module"."datachg_time" IS '资料更新时间'; +COMMENT ON TABLE "public"."module" IS '系统模块表'; + +-- ---------------------------- +-- Records of module +-- ---------------------------- +INSERT INTO "public"."module" VALUES (1, 'BaseInfo', NULL, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."module" VALUES (2, 'CashInfo', NULL, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."module" VALUES (3, 'WtiInfo', NULL, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."module" VALUES (4, 'CheckInfo', NULL, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."module" VALUES (5, 'RoomManager', NULL, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."module" VALUES (6, 'CustomerManager', NULL, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."module" VALUES (7, 'HumanResourcesManager', NULL, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."module" VALUES (8, 'MaterialManager', NULL, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."module" VALUES (9, 'OperationLogManager', NULL, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."module" VALUES (10, 'AdminManager', NULL, 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for module_zero +-- ---------------------------- +DROP TABLE IF EXISTS "public"."module_zero"; +CREATE TABLE "public"."module_zero" ( + "module_id" int4 NOT NULL, + "admin_account" varchar(15) COLLATE "pg_catalog"."default", + "module_name" varchar(200) COLLATE "pg_catalog"."default", + "module_enable" int4 +) +; +COMMENT ON COLUMN "public"."module_zero"."module_id" IS '模块ID'; +COMMENT ON COLUMN "public"."module_zero"."admin_account" IS '管理员账号'; +COMMENT ON COLUMN "public"."module_zero"."module_name" IS '模块名称'; +COMMENT ON COLUMN "public"."module_zero"."module_enable" IS '是否开启'; +COMMENT ON TABLE "public"."module_zero" IS '系统模块权限表'; + +-- ---------------------------- +-- Records of module_zero +-- ---------------------------- +INSERT INTO "public"."module_zero" VALUES (1, 'admin', 'BaseInfo', 1); +INSERT INTO "public"."module_zero" VALUES (2, 'admin', 'CashInfo', 1); +INSERT INTO "public"."module_zero" VALUES (3, 'admin', 'WtiInfo', 1); +INSERT INTO "public"."module_zero" VALUES (4, 'admin', 'CheckInfo', 1); +INSERT INTO "public"."module_zero" VALUES (5, 'admin', 'RoomManager', 1); +INSERT INTO "public"."module_zero" VALUES (6, 'admin', 'CustomerManager', 1); +INSERT INTO "public"."module_zero" VALUES (7, 'admin', 'HumanResourcesManager', 1); +INSERT INTO "public"."module_zero" VALUES (8, 'admin', 'MaterialManager', 1); +INSERT INTO "public"."module_zero" VALUES (9, 'admin', 'OperationLogManager', 1); +INSERT INTO "public"."module_zero" VALUES (10, 'admin', 'AdminManager', 1); + +-- ---------------------------- +-- Table structure for nation +-- ---------------------------- +DROP TABLE IF EXISTS "public"."nation"; +CREATE TABLE "public"."nation" ( + "nation_no" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, + "nation_name" varchar(100) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."nation"."nation_no" IS '民族编号'; +COMMENT ON COLUMN "public"."nation"."nation_name" IS '民族名称'; +COMMENT ON COLUMN "public"."nation"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."nation"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."nation"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."nation"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."nation"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."nation" IS '民族信息表'; + +-- ---------------------------- +-- Records of nation +-- ---------------------------- +INSERT INTO "public"."nation" VALUES ('N-00002', '满族', 0, 'System', '2021-02-01', 'System', '2021-02-01'); +INSERT INTO "public"."nation" VALUES ('N-00003', '蒙古族', 0, 'System', '2021-02-02', 'System', '2021-02-02'); +INSERT INTO "public"."nation" VALUES ('N-00004', '回族', 0, 'System', '2021-02-03', '', '2021-02-11'); +INSERT INTO "public"."nation" VALUES ('N-00005', '藏族', 0, 'System', '2021-02-04', 'System', '2021-02-04'); +INSERT INTO "public"."nation" VALUES ('N-00006', '维吾尔族', 0, 'System', '2021-02-05', '', '2021-02-01'); +INSERT INTO "public"."nation" VALUES ('N-00007', '苗族', 0, 'System', '2021-02-06', 'System', '2021-02-06'); +INSERT INTO "public"."nation" VALUES ('N-00008', '彝族', 0, 'System', '2021-02-07', '', '2021-06-29'); +INSERT INTO "public"."nation" VALUES ('N-00009', '壮族', 0, 'System', '2021-02-08', 'System', '2021-02-08'); +INSERT INTO "public"."nation" VALUES ('N-00010', '布依族', 0, 'System', '2021-02-09', '', '2021-02-01'); +INSERT INTO "public"."nation" VALUES ('N-00011', '侗族', 0, 'System', '2021-02-10', 'System', '2021-02-10'); +INSERT INTO "public"."nation" VALUES ('N-00012', '瑶族', 0, 'System', '2021-02-11', 'System', '2021-02-11'); +INSERT INTO "public"."nation" VALUES ('N-00026', '纳西族', 0, 'System', '2021-02-25', 'System', '2021-02-25'); +INSERT INTO "public"."nation" VALUES ('N-00027', '景颇族', 0, 'System', '2021-02-26', 'System', '2021-02-26'); +INSERT INTO "public"."nation" VALUES ('N-00044', '俄罗斯族', 0, 'System', '2021-03-15', 'System', '2021-03-15'); +INSERT INTO "public"."nation" VALUES ('N-00045', '鄂温克族', 0, 'System', '2021-03-16', 'System', '2021-03-16'); +INSERT INTO "public"."nation" VALUES ('N-00046', '德昂族', 0, 'System', '2021-03-17', 'System', '2021-03-17'); +INSERT INTO "public"."nation" VALUES ('N-00047', '保安族', 0, 'System', '2021-03-18', 'System', '2021-03-18'); +INSERT INTO "public"."nation" VALUES ('N-00048', '裕固族', 0, 'System', '2021-03-19', 'System', '2021-03-19'); +INSERT INTO "public"."nation" VALUES ('N-00049', '京族', 0, 'System', '2021-03-20', 'System', '2021-03-20'); +INSERT INTO "public"."nation" VALUES ('N-00050', '塔塔尔族', 0, 'System', '2021-03-21', '', '2021-02-11'); +INSERT INTO "public"."nation" VALUES ('N-00051', '独龙族', 0, 'System', '2021-03-22', 'System', '2021-03-22'); +INSERT INTO "public"."nation" VALUES ('N-00042', '怒族', 0, 'System', '2021-03-13', 'System', '2021-03-13'); +INSERT INTO "public"."nation" VALUES ('N-00043', '乌孜别克族', 0, 'System', '2021-03-14', 'System', '2021-03-14'); +INSERT INTO "public"."nation" VALUES ('N-2022006', '大韩民族', 0, 'admin', '2022-02-26', NULL, NULL); +INSERT INTO "public"."nation" VALUES ('N-00035', '毛南族', 0, 'System', '2021-03-06', '', '2022-05-09'); +INSERT INTO "public"."nation" VALUES ('N-00052', '鄂伦春族', 0, 'System', '2021-03-23', 'System', '2021-03-23'); +INSERT INTO "public"."nation" VALUES ('N-00053', '赫哲族', 0, 'System', '2021-03-24', 'System', '2021-03-24'); +INSERT INTO "public"."nation" VALUES ('N-00054', '门巴族', 0, 'System', '2021-03-25', 'System', '2021-03-25'); +INSERT INTO "public"."nation" VALUES ('N-00055', '珞巴族', 0, 'System', '2021-03-26', '', '2021-05-10'); +INSERT INTO "public"."nation" VALUES ('N-00056', '基诺族', 0, 'System', '2021-03-27', '', '2021-05-10'); +INSERT INTO "public"."nation" VALUES ('N-2022005', '大和民族', 0, 'admin', '2022-02-01', '', '2022-02-26'); +INSERT INTO "public"."nation" VALUES ('N-00013', '白族', 0, 'System', '2021-02-12', 'WK010', '2021-02-17'); +INSERT INTO "public"."nation" VALUES ('N-00014', '土家族', 0, 'System', '2021-02-13', 'System', '2021-02-13'); +INSERT INTO "public"."nation" VALUES ('N-00015', '哈尼族', 0, 'System', '2021-02-14', 'System', '2021-02-14'); +INSERT INTO "public"."nation" VALUES ('N-00016', '哈萨克族', 0, 'System', '2021-02-15', 'System', '2021-02-15'); +INSERT INTO "public"."nation" VALUES ('N-00017', '傣族', 0, 'System', '2021-02-16', 'System', '2021-02-16'); +INSERT INTO "public"."nation" VALUES ('N-00018', '黎族', 0, 'System', '2021-02-17', 'System', '2021-02-17'); +INSERT INTO "public"."nation" VALUES ('N-00019', '傈僳族', 0, 'System', '2021-02-18', '', '2021-02-11'); +INSERT INTO "public"."nation" VALUES ('N-00020', '佤族', 0, 'System', '2021-02-19', 'System', '2021-02-19'); +INSERT INTO "public"."nation" VALUES ('N-00021', '畲族', 0, 'System', '2021-02-20', 'System', '2021-02-20'); +INSERT INTO "public"."nation" VALUES ('N-00022', '高山族', 0, 'System', '2021-02-21', 'System', '2021-02-21'); +INSERT INTO "public"."nation" VALUES ('N-00023', '拉祜族', 0, 'System', '2021-02-22', 'System', '2021-02-22'); +INSERT INTO "public"."nation" VALUES ('N-00024', '水族', 0, 'System', '2021-02-23', 'System', '2021-02-23'); +INSERT INTO "public"."nation" VALUES ('N-00025', '东乡族', 0, 'System', '2021-02-24', 'System', '2021-02-24'); +INSERT INTO "public"."nation" VALUES ('N-00028', '柯尔克孜族', 0, 'System', '2021-02-27', 'System', '2021-02-27'); +INSERT INTO "public"."nation" VALUES ('N-00029', '土族', 0, 'System', '2021-02-28', 'System', '2021-02-28'); +INSERT INTO "public"."nation" VALUES ('N-00030', '达斡尔族', 0, 'System', '2021-03-01', 'System', '2021-03-01'); +INSERT INTO "public"."nation" VALUES ('N-00001', '汉族', 0, 'System', '2021-01-31', '', '2022-11-17'); +INSERT INTO "public"."nation" VALUES ('N-00031', '仫佬族', 0, 'System', '2021-03-02', 'System', '2021-03-02'); +INSERT INTO "public"."nation" VALUES ('N-00032', '羌族', 0, 'System', '2021-03-03', 'System', '2021-03-03'); +INSERT INTO "public"."nation" VALUES ('N-00033', '布朗族', 0, 'System', '2021-03-04', 'System', '2021-03-04'); +INSERT INTO "public"."nation" VALUES ('N-00034', '撒拉族', 0, 'System', '2021-03-05', 'System', '2021-03-05'); +INSERT INTO "public"."nation" VALUES ('N-00036', '仡佬族', 0, 'System', '2021-03-07', 'System', '2021-03-07'); +INSERT INTO "public"."nation" VALUES ('N-00037', '锡伯族', 0, 'System', '2021-03-08', 'System', '2021-03-08'); +INSERT INTO "public"."nation" VALUES ('N-00038', '阿昌族', 0, 'System', '2021-03-09', 'System', '2021-03-09'); +INSERT INTO "public"."nation" VALUES ('N-00039', '普米族', 0, 'System', '2021-03-10', 'System', '2021-03-10'); +INSERT INTO "public"."nation" VALUES ('N-00040', '朝鲜族', 0, 'System', '2021-03-11', 'System', '2021-03-11'); +INSERT INTO "public"."nation" VALUES ('N-00041', '塔吉克族', 0, 'System', '2021-03-12', 'System', '2021-03-12'); + +-- ---------------------------- +-- Table structure for nav_bar +-- ---------------------------- +DROP TABLE IF EXISTS "public"."nav_bar"; +CREATE TABLE "public"."nav_bar" ( + "nav_id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "nav_name" varchar(100) COLLATE "pg_catalog"."default" NOT NULL, + "nav_or" int4 DEFAULT 0, + "nav_pic" varchar(300) COLLATE "pg_catalog"."default", + "nav_event" varchar(255) COLLATE "pg_catalog"."default", + "delete_mk" int4 NOT NULL DEFAULT 0, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date, + "margin_left" int2 +) +; +COMMENT ON COLUMN "public"."nav_bar"."nav_id" IS '导航控件流水号'; +COMMENT ON COLUMN "public"."nav_bar"."nav_name" IS '导航控件名称'; +COMMENT ON COLUMN "public"."nav_bar"."nav_or" IS '导航控件排序'; +COMMENT ON COLUMN "public"."nav_bar"."nav_pic" IS '导航控件图片'; +COMMENT ON COLUMN "public"."nav_bar"."nav_event" IS '导航控件事件'; +COMMENT ON COLUMN "public"."nav_bar"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."nav_bar"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."nav_bar"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."nav_bar"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."nav_bar"."datachg_date" IS '资料更新时间'; +COMMENT ON COLUMN "public"."nav_bar"."margin_left" IS '左边距'; + +-- ---------------------------- +-- Records of nav_bar +-- ---------------------------- +INSERT INTO "public"."nav_bar" VALUES (708, '客房管理', 1, NULL, 'RoomManager_Event', 0, NULL, NULL, NULL, NULL, 0); +INSERT INTO "public"."nav_bar" VALUES (709, '用户管理', 2, NULL, 'CustoManager_Event', 0, NULL, NULL, NULL, NULL, 180); +INSERT INTO "public"."nav_bar" VALUES (710, '商品消费', 3, NULL, 'SellManager_Event', 0, NULL, NULL, NULL, NULL, 180); + +-- ---------------------------- +-- Table structure for operationlog +-- ---------------------------- +DROP TABLE IF EXISTS "public"."operationlog"; +CREATE TABLE "public"."operationlog" ( + "OperationId" int8 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "OperationTime" timestamp(0) NOT NULL, + "LogContent" varchar(8000) COLLATE "pg_catalog"."default" NOT NULL, + "OperationAccount" varchar(300) COLLATE "pg_catalog"."default" NOT NULL, + "OperationLevel" int4, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" timestamp(0) DEFAULT NULL::timestamp without time zone, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" timestamp(0) DEFAULT NULL::timestamp without time zone, + "SoftwareVersion" varchar(10) COLLATE "pg_catalog"."default", + "login_ip" varchar(10) COLLATE "pg_catalog"."default" +) +; +COMMENT ON COLUMN "public"."operationlog"."OperationId" IS '记录ID'; +COMMENT ON COLUMN "public"."operationlog"."OperationTime" IS '记录时间'; +COMMENT ON COLUMN "public"."operationlog"."LogContent" IS '日志内容'; +COMMENT ON COLUMN "public"."operationlog"."OperationAccount" IS '被记录账户'; +COMMENT ON COLUMN "public"."operationlog"."OperationLevel" IS '日志等级'; +COMMENT ON COLUMN "public"."operationlog"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."operationlog"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."operationlog"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."operationlog"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."operationlog"."datachg_date" IS '资料更新时间'; +COMMENT ON COLUMN "public"."operationlog"."SoftwareVersion" IS '软件版本'; +COMMENT ON COLUMN "public"."operationlog"."login_ip" IS '登录IP'; +COMMENT ON TABLE "public"."operationlog" IS '系统操作日志表'; + +-- ---------------------------- +-- Records of operationlog +-- ---------------------------- +INSERT INTO "public"."operationlog" VALUES (55, '2022-02-20 13:43:58', 'admin-杨俊杰在2022/2/20 13:43:57位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-20 13:43:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (56, '2022-02-20 20:05:40', 'WK010-杨俊杰在2022/2/20 20:05:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-20 20:05:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (57, '2022-02-20 20:43:48', 'admin-杨俊杰在2022/2/20 20:43:48位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-20 20:43:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (58, '2022-02-21 17:23:44', 'admin-杨俊杰在2022-02-21 17:23:43位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-21 17:23:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (59, '2022-02-21 17:24:18', 'admin-杨俊杰在2022-02-21 17:24:17位于1.5.0.7执行:新增职位类型操作!新增值为:P-2022006', 'admin', 200, 0, 'admin', '2022-02-21 17:24:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (60, '2022-02-21 20:29:44', 'WK010-杨俊杰在2022/2/21 20:29:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-21 20:29:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (62, '2022-02-21 20:29:54', 'SqlSugar.SqlSugarException: 23505: 重复键违反唯一约束"workercheck_pkey"', 'WK010', 300, 0, 'WK010', '2022-02-21 20:29:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (64, '2022-02-21 20:30:00', 'SqlSugar.SqlSugarException: 23505: 重复键违反唯一约束"workercheck_pkey"', 'WK010', 300, 0, 'WK010', '2022-02-21 20:30:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (65, '2022-02-21 20:31:16', 'WK010-杨俊杰在2022/2/21 20:31:15位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-21 20:31:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (67, '2022-02-22 23:11:35', 'admin-杨俊杰在2022/2/22 23:11:35位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-22 23:11:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (68, '2022-02-22 23:12:36', 'WK010-杨俊杰在2022/2/22 23:12:35位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-22 23:12:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (69, '2022-02-22 23:13:12', 'SqlSugar.SqlSugarException: 42804: 字段 "WtiNo" 的类型为 integer, 但表达式的类型为 text', 'WK010', 300, 0, 'WK010', '2022-02-22 23:13:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (70, '2022-02-22 23:13:19', 'SqlSugar.SqlSugarException: 42804: 字段 "WtiNo" 的类型为 integer, 但表达式的类型为 text', 'WK010', 300, 0, 'WK010', '2022-02-22 23:13:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (71, '2022-02-22 23:15:11', 'SqlSugar.SqlSugarException: 23502: null value in column "WtiNo" of relation "wtinfo" violates not-null constraint', 'WK010', 300, 0, 'WK010', '2022-02-22 23:15:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (73, '2022-02-23 23:17:30', 'admin-杨俊杰在2022/2/23 23:17:29位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-23 23:17:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (74, '2022-02-25 22:13:25', 'WK010-杨俊杰在2022/2/25 22:13:25位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-25 22:13:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (76, '2022-02-26 11:53:17', 'admin-杨俊杰在2022/2/26 11:53:17位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 11:53:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (77, '2022-02-26 11:54:54', 'admin-杨俊杰在2022/2/26 11:54:53位于1.5.0.7执行:删除学历类型操作!删除值为:E-00008', 'admin', 200, 0, 'admin', '2022-02-26 11:54:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (78, '2022-02-26 11:54:57', 'admin-杨俊杰在2022/2/26 11:54:57位于1.5.0.7执行:删除学历类型操作!删除值为:E-202101', 'admin', 200, 0, 'admin', '2022-02-26 11:54:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (79, '2022-02-26 11:55:00', 'admin-杨俊杰在2022/2/26 11:55:00位于1.5.0.7执行:删除学历类型操作!删除值为:E-00009', 'admin', 200, 0, 'admin', '2022-02-26 11:55:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (80, '2022-02-26 12:19:59', 'WK010-杨俊杰在2022/2/26 12:19:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 12:19:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (81, '2022-02-26 12:20:22', 'SqlSugar.SqlSugarException: 42804: 字段 "WtiNo" 的类型为 integer, 但表达式的类型为 text', 'WK010', 300, 0, 'WK010', '2022-02-26 12:20:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (82, '2022-02-26 12:21:04', 'WK010-杨俊杰在2022/2/26 12:21:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 12:21:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (83, '2022-02-26 12:22:00', 'SqlSugar.SqlSugarException: 42804: 字段 "WtiNo" 的类型为 integer, 但表达式的类型为 text', 'WK010', 300, 0, 'WK010', '2022-02-26 12:22:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (84, '2022-02-26 12:28:05', 'WK010-杨俊杰在2022/2/26 12:28:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 12:28:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (85, '2022-02-26 12:28:45', '经理部-总经理-杨俊杰于2022/2/26 12:28:44帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-02-26 12:28:45', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (87, '2022-02-26 12:29:23', '经理部-总经理-杨俊杰于2022/2/26 12:29:22帮助TS-20210078进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-02-26 12:29:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (88, '2022-02-26 12:29:41', '经理部-总经理-杨俊杰于2022/2/26 12:29:40帮助TS-20220089进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-02-26 12:29:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (89, '2022-02-26 12:29:57', '经理部-总经理-杨俊杰于2022/2/26 12:29:56帮助TS-20220090进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-02-26 12:29:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (90, '2022-02-26 12:30:12', '经理部-总经理-杨俊杰于2022/2/26 12:30:11帮助TS-20220099进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-02-26 12:30:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (91, '2022-02-26 12:31:08', 'WK010-杨俊杰在2022/2/26 12:31:08位于1.5.0.7执行:添加了一名客户,客户编号为:TS-202200136', 'WK010', 300, 0, 'WK010', '2022-02-26 12:31:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (92, '2022-02-26 13:33:18', 'WK010-杨俊杰在2022/2/26 13:33:18位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:33:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (93, '2022-02-26 13:33:43', 'admin-杨俊杰在2022/2/26 13:33:43位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 13:33:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (94, '2022-02-26 13:38:52', 'WK010-杨俊杰在2022/2/26 13:38:51位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:38:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (95, '2022-02-26 13:39:54', 'WK010-杨俊杰在2022/2/26 13:39:53位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:39:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (96, '2022-02-26 13:40:17', 'WK010-杨俊杰在2022/2/26 13:40:17位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:40:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (97, '2022-02-26 13:51:19', 'WK010-杨俊杰在2022/2/26 13:51:18位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:51:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (98, '2022-02-26 13:53:19', 'WK010-杨俊杰在2022/2/26 13:53:18位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:53:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (100, '2022-02-26 13:54:46', 'WK010-杨俊杰在2022/2/26 13:54:45位于1.5.0.7执行:帮助TS-20210078进行了消费商品:乐事薯片(原味)操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 13:54:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (101, '2022-02-26 13:59:10', 'WK010-杨俊杰在2022/2/26 13:59:09位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:59:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (103, '2022-02-26 13:59:34', 'WK010-杨俊杰在2022/2/26 13:59:34位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 13:59:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (104, '2022-02-26 14:22:12', 'WK010-杨俊杰在2022/2/26 14:22:11位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:22:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (105, '2022-02-26 14:22:49', 'WK010-杨俊杰在2022/2/26 14:22:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:22:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (106, '2022-02-26 14:24:34', 'WK010-杨俊杰在2022/2/26 14:24:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:24:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (107, '2022-02-26 14:26:30', 'WK010-杨俊杰在2022/2/26 14:26:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:26:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (108, '2022-02-26 14:27:59', 'WK010-杨俊杰在2022/2/26 14:27:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:27:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (109, '2022-02-26 14:31:00', 'WK010-杨俊杰在2022/2/26 14:30:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:31:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (110, '2022-02-26 14:36:26', 'WK010-杨俊杰在2022/2/26 14:36:25位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:36:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (112, '2022-02-26 14:37:06', 'SqlSugar.SqlSugarException: 23502: null value in column "SellName" of relation "sellthing" violates not-null constraint', 'WK010', 300, 0, 'WK010', '2022-02-26 14:37:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (113, '2022-02-26 14:37:25', 'WK010-杨俊杰在2022/2/26 14:37:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:37:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (115, '2022-02-26 14:38:04', 'SqlSugar.SqlSugarException: 23502: null value in column "SellName" of relation "sellthing" violates not-null constraint', 'WK010', 300, 0, 'WK010', '2022-02-26 14:38:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (116, '2022-02-26 14:46:52', 'WK010-杨俊杰在2022/2/26 14:46:51位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:46:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (118, '2022-02-26 14:47:15', 'WK010-杨俊杰在2022/2/26 14:47:15位于1.5.0.7执行:帮助TS-20210078进行了消费商品:毛巾操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 14:47:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (119, '2022-02-26 14:52:54', 'WK010-杨俊杰在2022/2/26 14:52:53位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:52:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (120, '2022-02-26 14:58:06', 'WK010-杨俊杰在2022/2/26 14:58:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:58:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (121, '2022-02-26 14:58:56', 'WK010-杨俊杰在2022/2/26 14:58:55位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:58:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (122, '2022-02-26 15:00:16', 'WK010-杨俊杰在2022/2/26 15:00:16位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:00:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (123, '2022-02-26 15:00:49', 'WK010-杨俊杰在2022/2/26 15:00:49位于1.5.0.7执行:帮助TS-20210078撤销了消费商品:操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:00:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (124, '2022-02-26 15:20:40', 'WK010-杨俊杰在2022/2/26 15:20:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:20:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (125, '2022-02-26 15:21:54', 'WK010-杨俊杰在2022/2/26 15:21:54位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:21:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (126, '2022-02-26 15:23:35', 'WK010-杨俊杰在2022/2/26 15:23:35位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:23:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (127, '2022-02-26 15:24:04', 'WK010-杨俊杰在2022/2/26 15:24:03位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:24:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (128, '2022-02-26 15:27:25', 'WK010-杨俊杰在2022/2/26 15:27:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:27:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (129, '2022-02-26 15:27:46', 'SqlSugar.SqlSugarException: 42601: 语法错误 在 ""SpendPrice"" 或附近的', 'WK010', 300, 0, 'WK010', '2022-02-26 15:27:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (130, '2022-02-26 15:27:57', 'WK010-杨俊杰在2022/2/26 15:27:56位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:27:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (131, '2022-02-26 15:28:29', 'SqlSugar.SqlSugarException: 42601: 语法错误 在 ""SpendPrice"" 或附近的', 'WK010', 300, 0, 'WK010', '2022-02-26 15:28:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (132, '2022-02-26 15:28:58', 'WK010-杨俊杰在2022/2/26 15:28:57位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:28:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (133, '2022-02-26 15:29:15', 'SqlSugar.SqlSugarException: 42601: 语法错误 在 "$3" 或附近的', 'WK010', 300, 0, 'WK010', '2022-02-26 15:29:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (134, '2022-02-26 15:29:49', 'WK010-杨俊杰在2022/2/26 15:29:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:29:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (135, '2022-02-26 15:32:04', 'SqlSugar.SqlSugarException: 42601: 语法错误 在 "$3" 或附近的', 'WK010', 300, 0, 'WK010', '2022-02-26 15:32:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (136, '2022-02-26 15:34:30', 'WK010-杨俊杰在2022/2/26 15:34:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:34:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (137, '2022-02-26 15:36:01', 'WK010-杨俊杰在2022/2/26 15:36:00位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:36:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (138, '2022-02-26 15:37:14', 'WK010-杨俊杰在2022/2/26 15:37:13位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:37:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (139, '2022-02-26 15:39:14', 'WK010-杨俊杰在2022/2/26 15:39:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:39:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (140, '2022-02-26 15:40:18', 'WK010-杨俊杰在2022/2/26 15:40:18位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:40:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (141, '2022-02-26 15:47:03', 'WK010-杨俊杰在2022/2/26 15:47:03位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:47:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (142, '2022-02-26 15:48:27', 'WK010-杨俊杰在2022/2/26 15:48:26位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:48:27', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (143, '2022-02-26 15:48:54', 'WK010-杨俊杰在2022/2/26 15:48:53位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:48:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (144, '2022-02-26 15:50:40', 'WK010-杨俊杰在2022/2/26 15:50:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:50:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (145, '2022-02-26 15:52:28', 'WK010-杨俊杰在2022/2/26 15:52:28位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:52:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (146, '2022-02-26 15:53:06', 'WK010-杨俊杰在2022/2/26 15:53:05位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:53:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (147, '2022-02-26 15:55:23', 'WK010-杨俊杰在2022/2/26 15:55:23位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:55:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (148, '2022-02-26 15:55:43', 'WK010-杨俊杰在2022/2/26 15:55:43位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:55:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (149, '2022-02-26 15:58:23', 'WK010-杨俊杰在2022/2/26 15:58:22位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:58:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (151, '2022-02-26 15:58:40', 'WK010-杨俊杰在2022/2/26 15:58:40位于1.5.0.7执行:帮助TS-20210078进行了消费商品:毛巾操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:58:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (152, '2022-02-26 15:58:54', 'WK010-杨俊杰在2022/2/26 15:58:53位于1.5.0.7执行:帮助TS-20210078进行了消费商品:毛巾操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:58:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (153, '2022-02-26 15:59:34', 'WK010-杨俊杰在2022/2/26 15:59:34位于1.5.0.7执行:修改了一名客户信息,客户编号为:TS-20220099', 'WK010', 300, 0, 'WK010', '2022-02-26 15:59:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (154, '2022-02-26 16:02:33', 'WK010-杨俊杰在2022/2/26 16:02:33位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:02:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (155, '2022-02-26 16:03:29', 'WK010-杨俊杰在2022/2/26 16:03:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:03:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (156, '2022-02-26 16:04:46', 'WK010-杨俊杰在2022/2/26 16:04:45位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:04:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (157, '2022-02-26 16:06:30', 'WK010-杨俊杰在2022/2/26 16:06:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:06:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (158, '2022-02-26 16:08:18', 'WK010-杨俊杰在2022/2/26 16:08:18位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:08:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (159, '2022-02-26 16:09:01', 'WK010-杨俊杰在2022/2/26 16:09:00位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:09:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (160, '2022-02-26 16:09:23', 'WK010-杨俊杰在2022/2/26 16:09:22位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:09:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (161, '2022-02-26 16:10:38', 'WK010-杨俊杰在2022/2/26 16:10:38位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:10:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (162, '2022-02-26 16:13:00', 'WK010-杨俊杰在2022/2/26 16:12:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:13:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (163, '2022-02-26 16:15:31', 'WK010-杨俊杰在2022/2/26 16:15:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:15:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (164, '2022-02-26 16:17:50', 'WK010-杨俊杰在2022/2/26 16:17:50位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:17:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (165, '2022-02-26 16:20:22', 'WK010-杨俊杰在2022/2/26 16:20:21位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:20:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (166, '2022-02-26 16:21:31', 'WK010-杨俊杰在2022/2/26 16:21:31位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:21:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (167, '2022-02-26 16:47:30', 'WK010-杨俊杰在2022/2/26 16:47:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:47:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (168, '2022-02-26 16:48:22', 'SqlSugar.SqlSugarException: 22001: 对于可变字符类型来说,值太长了(11)', 'WK010', 300, 0, 'WK010', '2022-02-26 16:48:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (169, '2022-02-26 16:49:35', 'WK010-杨俊杰在2022/2/26 16:49:35位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:49:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (170, '2022-02-26 16:50:30', 'SqlSugar.SqlSugarException: 22001: 对于可变字符类型来说,值太长了(11)', 'WK010', 300, 0, 'WK010', '2022-02-26 16:50:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (171, '2022-02-26 16:51:19', 'WK010-杨俊杰在2022/2/26 16:51:19位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:51:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (172, '2022-02-26 16:51:40', 'SqlSugar.SqlSugarException: 22001: 对于可变字符类型来说,值太长了(11)', 'WK010', 300, 0, 'WK010', '2022-02-26 16:51:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (173, '2022-02-26 16:52:59', 'WK010-杨俊杰在2022/2/26 16:52:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:52:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (174, '2022-02-26 16:53:19', 'SqlSugar.SqlSugarException: 22001: 对于可变字符类型来说,值太长了(20)', 'WK010', 300, 0, 'WK010', '2022-02-26 16:53:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (175, '2022-02-26 16:54:41', 'WK010-杨俊杰在2022/2/26 16:54:41位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:54:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (176, '2022-02-26 16:55:06', '经理部总经理杨俊杰于2022/2/26 16:55:06帮助21321313213进行了预订房间操作!', 'WK010', 100, 0, 'WK010', '2022-02-26 16:55:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (177, '2022-02-26 17:01:13', 'admin-杨俊杰在2022/2/26 17:01:12位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:01:13', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (178, '2022-02-26 17:01:21', 'admin-杨俊杰在2022/2/26 17:01:20位于1.5.0.7执行:删除职位类型操作!删除值为:P-2022006', 'admin', 200, 0, 'admin', '2022-02-26 17:01:21', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (179, '2022-02-26 17:01:39', 'admin-杨俊杰在2022/2/26 17:01:38位于1.5.0.7执行:恢复学历类型操作!删除值为:E-00008', 'admin', 200, 0, 'admin', '2022-02-26 17:01:39', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (180, '2022-02-26 17:01:44', 'admin-杨俊杰在2022/2/26 17:01:43位于1.5.0.7执行:恢复学历类型操作!删除值为:E-202101', 'admin', 200, 0, 'admin', '2022-02-26 17:01:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (181, '2022-02-26 17:01:46', 'admin-杨俊杰在2022/2/26 17:01:45位于1.5.0.7执行:恢复学历类型操作!删除值为:E-00009', 'admin', 200, 0, 'admin', '2022-02-26 17:01:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (182, '2022-02-26 17:03:19', 'admin-杨俊杰在2022/2/26 17:03:18位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:03:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (183, '2022-02-26 17:04:13', 'admin-杨俊杰在2022/2/26 17:04:13位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:04:13', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (184, '2022-02-26 17:10:47', 'admin-杨俊杰在2022/2/26 17:10:47位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:10:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (185, '2022-02-26 17:12:36', 'admin-杨俊杰在2022/2/26 17:12:35位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:12:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (186, '2022-02-26 17:14:43', 'admin-杨俊杰在2022/2/26 17:14:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:14:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (187, '2022-02-26 17:15:52', 'admin-杨俊杰在2022/2/26 17:15:52位于1.5.0.7执行:添加会员规则操作!新增值为:VR-2022022600052', 'admin', 200, 0, 'admin', '2022-02-26 17:15:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (188, '2022-02-26 17:22:44', 'WK010-杨俊杰在2022/2/26 17:22:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 17:22:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (189, '2022-02-26 17:22:57', 'admin-杨俊杰在2022/2/26 17:22:57位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:22:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (190, '2022-02-26 17:36:42', 'admin-杨俊杰在2022/2/26 17:36:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:36:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (191, '2022-02-26 17:36:52', 'admin-杨俊杰在2022/2/26 17:36:52位于1.5.0.7执行:恢复职位类型操作!恢复值为:P-2022006', 'admin', 200, 0, 'admin', '2022-02-26 17:36:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (192, '2022-02-26 17:36:55', 'admin-杨俊杰在2022/2/26 17:36:55位于1.5.0.7执行:删除职位类型操作!删除值为:P-2022006', 'admin', 200, 0, 'admin', '2022-02-26 17:36:55', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (193, '2022-02-26 17:40:21', 'admin-杨俊杰在2022/2/26 17:40:21位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:40:21', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (194, '2022-02-26 17:49:47', 'admin-杨俊杰在2022/2/26 17:49:46位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:49:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (195, '2022-02-26 17:51:08', 'admin-杨俊杰在2022/2/26 17:51:08位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:51:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (196, '2022-02-26 17:57:30', 'admin-杨俊杰在2022/2/26 17:57:30位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:57:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (197, '2022-02-26 17:57:44', 'admin-杨俊杰在2022/2/26 17:57:44位于1.5.0.7执行:删除民族类型操作!删除值为:N-2022005', 'admin', 200, 0, 'admin', '2022-02-26 17:57:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (198, '2022-02-26 17:57:49', 'admin-杨俊杰在2022/2/26 17:57:48位于1.5.0.7执行:恢复民族类型操作!恢复值为:N-2022005', 'admin', 200, 0, 'admin', '2022-02-26 17:57:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (199, '2022-02-26 18:39:36', 'admin-杨俊杰在2022/2/26 18:39:35位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 18:39:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (200, '2022-02-26 18:40:42', 'admin-杨俊杰在2022/2/26 18:40:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 18:40:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (201, '2022-02-26 18:53:34', 'admin-杨俊杰在2022/2/26 18:53:34位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 18:53:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (202, '2022-02-26 18:54:48', 'admin-杨俊杰在2022/2/26 18:54:48位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 18:54:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (203, '2022-02-26 18:58:04', 'admin-杨俊杰在2022/2/26 18:58:03位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 18:58:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (204, '2022-02-26 19:30:36', 'admin-杨俊杰在2022/2/26 19:30:35位于1.5.0.7执行:新增民族类型操作!新增值为:N-2022006', 'admin', 200, 0, 'admin', '2022-02-26 19:30:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (205, '2022-02-26 19:31:41', 'admin-杨俊杰在2022/2/26 19:31:41位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 19:31:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (208, '2022-02-26 20:36:36', 'WK010-杨俊杰在2022/2/26 20:36:36位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 20:36:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (209, '2022-02-26 22:50:37', 'admin-杨俊杰在2022/2/26 22:50:36位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 22:50:37', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (210, '2022-02-27 01:10:49', 'WK010-杨俊杰在2022/2/27 1:10:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:10:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (212, '2022-02-27 01:24:30', 'WK010-杨俊杰在2022/2/27 1:24:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:24:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (213, '2022-02-27 01:25:08', 'WK010-杨俊杰在2022/2/27 1:25:08位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:25:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (214, '2022-02-27 01:25:26', 'WK010-杨俊杰在2022/2/27 1:25:26位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:25:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (215, '2022-02-27 01:30:48', 'WK010-杨俊杰在2022/2/27 1:30:48位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:30:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (216, '2022-02-27 01:31:18', 'WK010-杨俊杰在2022/2/27 1:31:17位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:31:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (217, '2022-02-27 01:32:12', 'WK010-杨俊杰在2022/2/27 1:32:11位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:32:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (218, '2022-02-27 01:36:45', 'WK010-杨俊杰在2022/2/27 1:36:45位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:36:45', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (219, '2022-02-27 01:38:15', 'WK010-杨俊杰在2022/2/27 1:38:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:38:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (220, '2022-02-27 01:38:28', 'admin-杨俊杰在2022/2/27 1:38:28位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-27 01:38:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (221, '2022-02-27 01:43:00', 'WK010-杨俊杰在2022/2/27 1:43:00位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:43:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (222, '2022-02-27 01:43:20', 'WK010-杨俊杰在2022/2/27 1:43:20位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:43:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (223, '2022-02-27 01:44:32', 'WK010-杨俊杰在2022/2/27 1:44:31位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:44:32', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (224, '2022-02-28 00:03:11', 'WK010-杨俊杰在2022/2/28 0:03:11位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-28 00:03:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (226, '2022-02-28 19:15:56', 'admin-杨俊杰在2022/2/28 19:15:55位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-28 19:15:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (227, '2022-02-28 19:16:38', 'SqlSugar.SqlSugarException: 23502: null value in column "module_id" of relation "module_zero" violates not-null constraint', 'admin', 300, 0, 'admin', '2022-02-28 19:16:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (228, '2022-03-01 23:36:38', 'WK010-杨俊杰在2022/3/1 23:36:37位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-01 23:36:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (229, '2022-03-01 23:39:04', 'admin-杨俊杰在2022/3/1 23:39:03位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-01 23:39:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (230, '2022-03-03 08:01:59', 'WK010-杨俊杰在2022-03-03 8:01:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-03 08:01:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (231, '2022-03-03 08:03:38', 'SqlSugar.SqlSugarException: 42804: 字段 "WtiNo" 的类型为 smallint, 但表达式的类型为 text', 'WK010', 300, 0, 'WK010', '2022-03-03 08:03:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (232, '2022-03-03 09:14:56', 'admin-杨俊杰在2022/3/3 9:14:55位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-03 09:14:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (233, '2022-03-03 09:21:23', 'admin-杨俊杰在2022/3/3 9:21:23位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-03 09:21:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (234, '2022-03-05 21:18:20', 'WK010-杨俊杰在2022/3/5 21:18:19位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-05 21:18:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (235, '2022-03-06 01:22:01', 'WK010-杨俊杰在2022/3/6 1:22:01位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-06 01:22:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (236, '2022-03-06 01:23:01', 'admin-杨俊杰在2022/3/6 1:23:01位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-06 01:23:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (237, '2022-03-06 12:39:56', 'WK010-杨俊杰在2022/3/6 12:39:56位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-06 12:39:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (238, '2022-03-09 17:23:43', 'admin-杨俊杰在2022/3/9 17:23:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-09 17:23:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (239, '2022-03-09 17:31:00', 'admin-杨俊杰在2022/3/9 17:30:59位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-09 17:31:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (240, '2022-03-09 23:12:25', 'WK010-杨俊杰在2022/3/9 23:12:25位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-09 23:12:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (241, '2022-03-10 17:43:52', 'WK010-杨俊杰在2022/3/10 17:43:52位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-10 17:43:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (242, '2022-03-11 20:43:40', 'admin-杨俊杰在2022/3/11 20:43:40位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-11 20:43:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (243, '2022-03-13 14:05:06', 'WK010-杨俊杰在2022/3/13 14:05:05位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 14:05:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (244, '2022-03-13 14:42:34', 'admin-杨俊杰在2022/3/13 14:42:33位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-13 14:42:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (245, '2022-03-13 14:43:15', 'WK010-杨俊杰在2022/3/13 14:43:15位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 14:43:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (246, '2022-03-13 14:46:11', 'WK010-杨俊杰在2022/3/13 14:46:10位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 14:46:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (247, '2022-03-13 14:47:45', 'WK010-杨俊杰在2022/3/13 14:47:45位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 14:47:45', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (248, '2022-03-13 14:49:06', 'WK010-杨俊杰在2022/3/13 14:49:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 14:49:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (249, '2022-03-13 14:52:30', 'WK010-杨俊杰在2022/3/13 14:52:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 14:52:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (250, '2022-03-13 14:53:01', '经理部-总经理-杨俊杰于2022/3/13 14:53:00帮助TS001344013384进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 14:53:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (252, '2022-03-13 14:54:46', '经理部-总经理-杨俊杰于2022/3/13 14:54:46帮助TS000299787414进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 14:54:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (253, '2022-03-13 14:55:12', '经理部-总经理-杨俊杰于2022/3/13 14:55:11帮助TS001535098782进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 14:55:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (254, '2022-03-13 14:55:35', '经理部-总经理-杨俊杰于2022/3/13 14:55:34帮助TS003574305322进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 14:55:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (255, '2022-03-13 14:56:01', '经理部-总经理-杨俊杰于2022/3/13 14:56:00帮助TS004121649776进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 14:56:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (256, '2022-03-13 15:02:23', 'WK010-杨俊杰在2022/3/13 15:02:23位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:02:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (257, '2022-03-13 15:04:04', 'WK010-杨俊杰在2022/3/13 15:04:03位于1.5.0.7执行:添加了一名客户,客户编号为:TS-202200141', 'WK010', 300, 0, 'WK010', '2022-03-13 15:04:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (258, '2022-03-13 15:08:38', 'WK010-杨俊杰在2022/3/13 15:08:37位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:08:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (259, '2022-03-13 15:11:39', 'WK010-杨俊杰在2022/3/13 15:11:38位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:11:39', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (260, '2022-03-13 15:14:06', 'WK010-杨俊杰在2022/3/13 15:14:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:14:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (261, '2022-03-13 15:14:31', '经理部-总经理-杨俊杰于2022/3/13 15:14:31帮助TS01562313进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 15:14:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (262, '2022-03-13 15:15:00', '经理部-总经理-杨俊杰于2022/3/13 15:14:59帮助TS096263040047进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 15:15:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (263, '2022-03-13 15:15:26', '经理部-总经理-杨俊杰于2022/3/13 15:15:26帮助TS039625402835进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 15:15:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (264, '2022-03-13 15:26:28', 'WK010-杨俊杰在2022/3/13 15:26:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:26:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (265, '2022-03-13 15:27:55', 'WK010-杨俊杰在2022/3/13 15:27:54位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:27:55', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (266, '2022-03-13 15:36:35', 'WK010-杨俊杰在2022/3/13 15:36:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:36:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (267, '2022-03-13 15:39:10', 'WK010-杨俊杰在2022/3/13 15:39:10位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:39:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (268, '2022-03-13 15:40:31', 'WK010-杨俊杰在2022/3/13 15:40:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:40:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (269, '2022-03-13 15:50:28', 'WK010-杨俊杰在2022/3/13 15:50:27位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:50:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (270, '2022-03-13 15:51:05', 'admin-杨俊杰在2022/3/13 15:51:04位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-13 15:51:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (271, '2022-03-13 15:57:15', 'WK010-杨俊杰在2022/3/13 15:57:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:57:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (272, '2022-03-13 15:59:33', 'admin-杨俊杰在2022/3/13 15:59:33位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-13 15:59:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (273, '2022-03-13 16:06:39', 'WK010-杨俊杰在2022/3/13 16:06:39位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 16:06:39', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (274, '2022-03-13 20:55:34', 'WK010-杨俊杰在2022/3/13 20:55:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 20:55:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (275, '2022-03-13 20:56:20', '经理部-总经理-杨俊杰于2022/3/13 20:56:20帮助TS006957585451进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 20:56:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (276, '2022-03-13 23:43:06', 'admin-杨俊杰在2022/3/13 23:43:06位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-13 23:43:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (278, '2022-03-14 19:54:50', 'WK010-杨俊杰在2022/3/14 19:54:50位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-14 19:54:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (280, '2022-03-14 19:55:42', '经理部-总经理-杨俊杰于2022/3/14 19:55:42帮助TS001535098782进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-14 19:55:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (281, '2022-03-14 19:56:13', '经理部-总经理-杨俊杰于2022/3/14 19:56:12帮助TS006292728074进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-14 19:56:13', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (282, '2022-03-14 20:04:10', 'WK010-杨俊杰在2022/3/14 20:04:10位于1.5.0.7执行:修改了一名客户信息,客户编号为:TS-202200136', 'WK010', 300, 0, 'WK010', '2022-03-14 20:04:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (283, '2022-03-14 22:34:43', 'WK010-杨俊杰在2022/3/14 22:34:42位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-14 22:34:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (284, '2022-03-14 22:39:19', 'WK010-杨俊杰在2022/3/14 22:39:18位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-14 22:39:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (285, '2022-03-14 22:39:36', 'WK010-杨俊杰在2022/3/14 22:39:35位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-14 22:39:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (286, '2022-03-14 22:40:34', 'WK010-杨俊杰在2022/3/14 22:40:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-14 22:40:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (288, '2022-03-14 23:31:29', 'WK010-杨俊杰在2022/3/14 23:31:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-14 23:31:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (289, '2022-03-14 23:31:52', '经理部-总经理-杨俊杰于2022/3/14 23:31:52帮助TS015253323658进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-14 23:31:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (290, '2022-03-14 23:32:19', '经理部-总经理-杨俊杰于2022/3/14 23:32:19帮助TS026428262056进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-14 23:32:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (291, '2022-03-14 23:32:47', '经理部-总经理-杨俊杰于2022/3/14 23:32:47帮助TS063603838018进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-14 23:32:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (292, '2022-03-14 23:33:59', 'admin-杨俊杰在2022/3/14 23:33:59位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-14 23:33:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (293, '2022-03-15 19:38:17', 'WK010-杨俊杰在2022/3/15 19:38:17位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-15 19:38:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (294, '2022-03-15 19:38:41', '经理部-总经理-杨俊杰于2022/3/15 19:38:40帮助TS012832200601进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-15 19:38:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (296, '2022-03-15 23:17:28', 'WK010-杨俊杰在2022/3/15 23:17:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-15 23:17:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (297, '2022-03-16 23:08:06', 'WK010-杨俊杰在2022/3/16 23:08:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-16 23:08:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (299, '2022-03-17 23:14:16', 'WK010-杨俊杰在2022/3/17 23:14:15位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-17 23:14:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (301, '2022-03-17 23:15:20', 'admin-杨俊杰在2022/3/17 23:15:20位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-17 23:15:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (302, '2022-03-20 16:05:46', 'WK010-杨俊杰在2022/3/20 16:05:45位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-20 16:05:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (304, '2022-03-20 16:06:22', '经理部-总经理-杨俊杰于2022/3/20 16:06:21帮助TS006957585451进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-20 16:06:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (305, '2022-03-20 16:06:46', '经理部-总经理-杨俊杰于2022/3/20 16:06:45帮助TS011721677405进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-20 16:06:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (306, '2022-03-21 18:58:59', 'admin-杨俊杰在2022/3/21 18:58:59位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-21 18:58:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (307, '2022-03-22 11:42:43', 'WK010-杨俊杰在2022-03-22 11:42:42位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-22 11:42:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (308, '2022-03-22 16:03:40', 'admin-杨俊杰在2022-03-22 16:03:40位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-22 16:03:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (309, '2022-03-22 16:04:24', 'WK010-杨俊杰在2022-03-22 16:04:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-22 16:04:24', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (311, '2022-03-23 19:44:05', 'WK010-杨俊杰在2022/3/23 19:44:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-23 19:44:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (313, '2022-03-24 23:03:01', 'WK010-杨俊杰在2022/3/24 23:03:00位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-24 23:03:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (315, '2022-03-25 19:38:14', 'WK010-杨俊杰在2022-03-25 19:38:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-25 19:38:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (316, '2022-03-26 00:48:02', 'WK010-杨俊杰在2022/3/26 0:48:02位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-26 00:48:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (317, '2022-03-26 20:44:52', 'WK010-杨俊杰在2022/3/26 20:44:52位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-26 20:44:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (319, '2022-03-28 23:05:20', 'WK010-杨俊杰在2022/3/28 23:05:20位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-28 23:05:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (321, '2022-03-28 23:06:03', '经理部-总经理-杨俊杰于2022/3/28 23:06:02帮助TS053630244707进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-28 23:06:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (322, '2022-03-28 23:06:37', '经理部-总经理-杨俊杰于2022/3/28 23:06:37帮助TS900880194151进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-28 23:06:37', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (323, '2022-03-28 23:07:09', '经理部-总经理-杨俊杰于2022/3/28 23:07:09帮助TS040379060037进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-28 23:07:09', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (324, '2022-03-29 15:23:35', 'admin-杨俊杰在2022/3/29 15:23:34位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-29 15:23:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (325, '2022-03-29 15:24:58', 'WK010-杨俊杰在2022/3/29 15:24:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-29 15:24:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (327, '2022-03-29 15:28:27', 'admin-杨俊杰在2022/3/29 15:28:27位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-29 15:28:27', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (328, '2022-03-29 16:44:20', 'WK010-杨俊杰在2022/3/29 16:44:19位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-29 16:44:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (329, '2022-03-29 16:47:25', '经理部-总经理-杨俊杰于2022/3/29 16:47:25帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-03-29 16:47:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (330, '2022-03-29 16:48:12', 'admin-杨俊杰在2022/3/29 16:48:12位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-29 16:48:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (331, '2022-03-29 16:49:34', 'WK010-杨俊杰在2022/3/29 16:49:33位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-29 16:49:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (332, '2022-03-30 19:13:03', 'WK010-杨俊杰在2022/3/30 19:13:03位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-30 19:13:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (334, '2022-03-30 20:52:14', 'admin-杨俊杰在2022/3/30 20:52:13位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-30 20:52:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (335, '2022-03-30 23:06:33', 'WK010-杨俊杰在2022/3/30 23:06:32位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-30 23:06:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (336, '2022-03-31 23:11:32', 'WK010-杨俊杰在2022/3/31 23:11:31位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-31 23:11:32', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (338, '2022-04-01 23:00:16', 'admin-杨俊杰在2022/4/1 23:00:16位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-01 23:00:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (339, '2022-04-03 12:48:05', 'WK010-杨俊杰在2022/4/3 12:48:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 12:48:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (341, '2022-04-03 13:39:57', 'WK010-杨俊杰在2022/4/3 13:39:56位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 13:39:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (342, '2022-04-03 13:40:41', 'WK010-杨俊杰在2022/4/3 13:40:41位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 13:40:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (343, '2022-04-03 13:53:28', 'WK010-杨俊杰在2022/4/3 13:53:27位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 13:53:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (344, '2022-04-03 13:55:12', 'WK010-杨俊杰在2022/4/3 13:55:12位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 13:55:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (345, '2022-04-03 13:56:07', 'WK010-杨俊杰在2022/4/3 13:56:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 13:56:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (346, '2022-04-03 13:58:34', 'WK010-杨俊杰在2022/4/3 13:58:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 13:58:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (347, '2022-04-03 14:00:41', 'WK010-杨俊杰在2022/4/3 14:00:41位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 14:00:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (348, '2022-04-04 12:10:04', 'WK010-杨俊杰在2022/4/4 12:10:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-04 12:10:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (349, '2022-04-04 12:10:37', 'admin-杨俊杰在2022/4/4 12:10:36位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-04 12:10:37', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (350, '2022-04-04 14:35:33', 'admin-杨俊杰在2022/4/4 14:35:33位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-04 14:35:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (351, '2022-04-05 16:57:32', 'WK010-杨俊杰在2022/4/5 16:57:32位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-05 16:57:32', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (352, '2022-04-05 17:00:15', 'admin-杨俊杰在2022/4/5 17:00:15位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-05 17:00:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (353, '2022-04-05 17:01:58', 'admin-杨俊杰在2022/4/5 17:01:58位于1.5.0.7执行:恢复职位类型操作!恢复值为:P-2022006', 'admin', 200, 0, 'admin', '2022-04-05 17:01:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (354, '2022-04-05 17:02:02', 'admin-杨俊杰在2022/4/5 17:02:01位于1.5.0.7执行:删除职位类型操作!删除值为:P-0001', 'admin', 200, 0, 'admin', '2022-04-05 17:02:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (355, '2022-04-05 17:08:50', 'admin-杨俊杰在2022/4/5 17:08:49位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-05 17:08:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (356, '2022-04-05 17:53:54', 'WK010-杨俊杰在2022/4/5 17:53:53位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-05 17:53:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (357, '2022-04-05 17:58:00', 'admin-杨俊杰在2022/4/5 17:57:59位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-05 17:58:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (358, '2022-04-05 18:04:58', 'SqlSugar.SqlSugarException: Exception while reading from stream', 'admin', 300, 0, 'admin', '2022-04-05 18:04:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (359, '2022-04-05 19:58:11', 'admin-杨俊杰在2022/4/5 19:58:11位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-05 19:58:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (360, '2022-04-05 20:01:07', 'WK010-杨俊杰在2022/4/5 20:01:07位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-05 20:01:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (361, '2022-04-05 20:32:02', 'WK010-杨俊杰在2022/4/5 20:32:02位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-05 20:32:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (362, '2022-04-05 20:50:10', 'WK010-杨俊杰在2022/4/5 20:50:10位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-05 20:50:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (364, '2022-04-05 21:38:33', 'WK010-杨俊杰在2022/4/5 21:38:33位于1.5.0.7执行:帮助TS001344013384进行了消费商品:雪碧操作!', 'WK010', 200, 0, 'WK010', '2022-04-05 21:38:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (366, '2022-04-05 21:38:40', 'WK010-杨俊杰在2022/4/5 21:38:39位于1.5.0.7执行:帮助TS001344013384进行了消费商品:三只松鼠夏威夷坚果操作!', 'WK010', 200, 0, 'WK010', '2022-04-05 21:38:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (367, '2022-04-06 15:14:06', 'WK010-杨俊杰在2022/4/6 15:14:05位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-06 15:14:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (369, '2022-04-06 15:18:50', '经理部总经理杨俊杰于2022/4/6 15:18:50帮助1111111进行了预订房间操作!', 'WK010', 100, 0, 'WK010', '2022-04-06 15:18:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (371, '2022-04-06 15:21:50', 'WK010-杨俊杰在2022/4/6 15:21:50位于1.5.0.7执行:帮助TS001344013384进行了消费商品:可口可乐操作!', 'WK010', 200, 0, 'WK010', '2022-04-06 15:21:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (373, '2022-04-06 15:21:57', 'WK010-杨俊杰在2022/4/6 15:21:56位于1.5.0.7执行:帮助TS001344013384进行了消费商品:黄油华夫饼操作!', 'WK010', 200, 0, 'WK010', '2022-04-06 15:21:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (374, '2022-04-06 15:22:48', 'admin-杨俊杰在2022/4/6 15:22:48位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-06 15:22:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (375, '2022-04-06 23:02:26', 'WK010-杨俊杰在2022/4/6 23:02:26位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-06 23:02:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (376, '2022-04-06 23:02:57', 'admin-杨俊杰在2022/4/6 23:02:57位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-06 23:02:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (377, '2022-04-06 23:04:54', 'admin-杨俊杰在2022/4/6 23:04:53位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-06 23:04:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (378, '2022-04-06 23:05:02', 'admin-杨俊杰在2022/4/6 23:05:02位于1.5.0.7执行:恢复职位类型操作!恢复值为:P-0001', 'admin', 200, 0, 'admin', '2022-04-06 23:05:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (379, '2022-04-07 16:18:44', 'WK010-杨俊杰在2022/4/7 16:18:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-07 16:18:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (381, '2022-04-07 16:22:11', 'admin-杨俊杰在2022/4/7 16:22:11位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-07 16:22:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (382, '2022-04-07 23:04:08', 'WK010-杨俊杰在2022/4/7 23:04:07位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-07 23:04:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (383, '2022-04-07 23:04:18', 'admin-杨俊杰在2022/4/7 23:04:18位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-07 23:04:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (384, '2022-04-08 23:06:49', 'admin-杨俊杰在2022/4/8 23:06:49位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-08 23:06:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (385, '2022-04-08 23:07:59', 'admin-杨俊杰在2022/4/8 23:07:58位于1.5.0.7执行:修改部门类型操作!修改值为:D-011', 'admin', 200, 0, 'admin', '2022-04-08 23:07:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (386, '2022-04-09 00:10:47', 'WK010-杨俊杰在2022/4/9 0:10:46位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-09 00:10:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (387, '2022-04-10 10:01:08', 'WK010-杨俊杰在2022/4/10 10:01:08位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-10 10:01:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (389, '2022-04-13 17:09:07', 'admin-杨俊杰在2022/4/13 17:09:06位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-13 17:09:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (390, '2022-04-14 13:33:52', 'WK010-杨俊杰在2022/4/14 13:33:51位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-14 13:33:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (392, '2022-04-15 09:52:15', 'WK010-杨俊杰在2022/4/15 9:52:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-15 09:52:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (393, '2022-04-15 09:55:11', 'admin-杨俊杰在2022/4/15 9:55:11位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-15 09:55:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (394, '2022-04-15 21:17:51', 'admin-杨俊杰在2022/4/15 星期五 21:17:50位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-15 21:17:51', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (395, '2022-04-15 21:19:08', 'admin-杨俊杰在2022/4/15 星期五 21:19:08位于1.5.0.7执行:新增商品操作!新增值为:ST-202200107', 'admin', 200, 0, 'admin', '2022-04-15 21:19:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (396, '2022-04-16 20:30:58', 'WK010-杨俊杰在2022/4/16 20:30:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-16 20:30:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (398, '2022-04-18 19:19:38', 'WK010-杨俊杰在2022/4/18 19:19:38位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-18 19:19:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (400, '2022-04-20 23:11:02', 'WK010-杨俊杰在2022/4/20 23:11:02位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-20 23:11:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (401, '2022-04-22 09:38:10', 'WK010-杨俊杰在2022/4/22 9:38:10位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-22 09:38:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (402, '2022-04-22 10:20:36', 'admin-杨俊杰在2022/4/22 10:20:35位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-22 10:20:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (403, '2022-04-22 10:21:47', 'WK010-杨俊杰在2022/4/22 10:21:46位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-22 10:21:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (404, '2022-04-22 10:26:02', 'admin-杨俊杰在2022/4/22 10:26:02位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-22 10:26:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (405, '2022-04-22 14:04:40', 'WK010-杨俊杰在2022/4/22 14:04:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-22 14:04:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (407, '2022-04-26 12:00:49', 'WK010-杨俊杰在2022/4/26 12:00:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-26 12:00:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (408, '2022-04-26 14:27:22', 'WK010-杨俊杰在2022-04-26 14:27:22位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-26 14:27:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (409, '2022-04-26 23:29:05', 'WK010-杨俊杰在2022/4/26 23:29:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-26 23:29:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (411, '2022-04-28 00:18:37', 'WK010-杨俊杰在2022/4/28 0:18:36位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-28 00:18:37', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (412, '2022-04-29 09:45:58', 'admin-杨俊杰在2022-04-29 9:45:58位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-29 09:45:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (413, '2022-04-29 09:47:04', 'WK010-杨俊杰在2022-04-29 9:47:03位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-29 09:47:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (414, '2022-04-29 11:28:26', 'admin-杨俊杰在2022/4/29 11:28:25位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-29 11:28:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (415, '2022-04-29 11:29:15', 'admin-杨俊杰在2022/4/29 11:29:15位于1.5.0.7执行:删除职位类型操作!删除值为:P-0004', 'admin', 200, 0, 'admin', '2022-04-29 11:29:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (416, '2022-04-29 11:29:36', 'admin-杨俊杰在2022/4/29 11:29:35位于1.5.0.7执行:新增职位类型操作!新增值为:P-2022007', 'admin', 200, 0, 'admin', '2022-04-29 11:29:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (417, '2022-04-29 11:29:43', 'admin-杨俊杰在2022/4/29 11:29:43位于1.5.0.7执行:恢复职位类型操作!恢复值为:P-0004', 'admin', 200, 0, 'admin', '2022-04-29 11:29:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (418, '2022-04-29 11:34:52', 'admin-杨俊杰在2022/4/29 11:34:52位于1.5.0.7执行:上传公告操作!新增值为:UP-202204004', 'admin', 200, 0, 'admin', '2022-04-29 11:34:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (419, '2022-04-29 11:35:29', 'WK010-杨俊杰在2022/4/29 11:35:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-29 11:35:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (421, '2022-04-29 11:38:04', 'WK010-杨俊杰在2022/4/29 11:38:03位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-29 11:38:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (422, '2022-04-29 13:34:01', 'admin-杨俊杰在2022/4/29 13:34:00位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-29 13:34:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (423, '2022-04-30 15:48:42', 'admin-杨俊杰在2022/4/30 15:48:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-30 15:48:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (424, '2022-05-02 00:51:57', 'WK010-杨俊杰在2022/5/2 0:51:56位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-02 00:51:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (426, '2022-05-03 19:21:56', 'admin-杨俊杰在2022-05-03 19:21:56位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-03 19:21:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (427, '2022-05-03 19:22:17', 'WK010-杨俊杰在2022-05-03 19:22:17位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-03 19:22:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (428, '2022-05-03 19:24:49', 'WK010-杨俊杰在2022-05-03 19:24:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-03 19:24:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (429, '2022-05-04 23:21:12', 'WK010-杨俊杰在2022/5/4 23:21:11位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-04 23:21:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (430, '2022-05-06 10:57:20', 'admin-杨俊杰在2022.05.06 10:57:19位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-06 10:57:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (431, '2022-05-06 14:14:28', 'admin-杨俊杰在2022.05.06 14:14:28位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-06 14:14:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (432, '2022-05-06 14:32:52', 'WK010-杨俊杰在2022-05-06 14:32:51位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-06 14:32:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (433, '2022-05-07 16:18:34', 'admin-杨俊杰在2022/5/7 16:18:33位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-07 16:18:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (434, '2022-05-07 19:14:55', 'WK010-杨俊杰在2022/5/7 19:14:54位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-07 19:14:55', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (435, '2022-05-07 19:15:14', 'admin-杨俊杰在2022/5/7 19:15:14位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-07 19:15:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (436, '2022-05-08 23:25:36', 'WK010-杨俊杰在2022/5/8 23:25:36位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-08 23:25:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (437, '2022-05-09 13:49:20', 'admin-杨俊杰在2022/5/9 13:49:19位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-09 13:49:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (438, '2022-05-09 13:49:40', 'admin-杨俊杰在2022/5/9 13:49:39位于1.5.0.7执行:删除民族类型操作!删除值为:N-00035', 'admin', 200, 0, 'admin', '2022-05-09 13:49:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (439, '2022-05-09 13:49:44', 'admin-杨俊杰在2022/5/9 13:49:43位于1.5.0.7执行:恢复民族类型操作!恢复值为:N-00035', 'admin', 200, 0, 'admin', '2022-05-09 13:49:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (440, '2022-05-09 13:51:06', 'admin-杨俊杰在2022/5/9 13:51:06位于1.5.0.7执行:禁用/启用管理账号操作!新增值为:1', 'admin', 200, 0, 'admin', '2022-05-09 13:51:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (441, '2022-05-10 00:12:57', 'admin-杨俊杰在2022/5/10 0:12:56位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-10 00:12:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (442, '2022-05-12 20:57:15', 'WK010-杨俊杰在2022/5/12 20:57:15位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-12 20:57:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (444, '2022-05-12 21:01:56', 'WK010-杨俊杰在2022/5/12 21:01:55位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-12 21:01:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (445, '2022-05-13 00:41:36', 'WK010-杨俊杰在2022/5/13 0:41:36位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-13 00:41:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (446, '2022-05-13 22:15:43', 'admin-杨俊杰在2022/5/13 22:15:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-13 22:15:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (447, '2022-05-15 16:15:28', 'WK010-杨俊杰在2022/5/15 16:15:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-15 16:15:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (448, '2022-05-16 10:59:19', 'WK010-杨俊杰在2022/5/16 10:59:19位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-16 10:59:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (449, '2022-05-16 11:02:04', 'admin-杨俊杰在2022/5/16 11:02:03位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-16 11:02:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (450, '2022-05-18 08:55:30', 'admin-杨俊杰在2022/5/18 8:55:30位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-18 08:55:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (451, '2022-05-18 08:56:57', 'admin-杨俊杰在2022/5/18 8:56:56位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-18 08:56:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (452, '2022-05-18 08:58:46', 'admin-杨俊杰在2022/5/18 8:58:45位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-18 08:58:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (453, '2022-05-18 15:46:10', 'admin-杨俊杰在2022/5/18 15:46:09位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-18 15:46:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (454, '2022-05-18 15:50:07', 'WK010-杨俊杰在2022/5/18 15:50:07位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-18 15:50:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (455, '2022-05-18 15:51:20', 'admin-杨俊杰在2022/5/18 15:51:19位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-18 15:51:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (456, '2022-05-18 15:51:31', 'WK010-杨俊杰在2022/5/18 15:51:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-18 15:51:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (457, '2022-05-18 15:54:30', 'admin-杨俊杰在2022/5/18 15:54:29位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-18 15:54:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (458, '2022-05-18 16:01:03', 'WK010-杨俊杰在2022/5/18 16:01:03位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-18 16:01:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (459, '2022-05-18 16:13:41', 'admin-杨俊杰在2022/5/18 16:13:41位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-18 16:13:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (460, '2022-05-18 17:42:29', 'WK010-杨俊杰在2022/5/18 17:42:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-18 17:42:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (461, '2022-05-18 17:46:08', 'WK010-杨俊杰在2022/5/18 17:46:08位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-18 17:46:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (462, '2022-05-18 19:56:26', 'WK010-杨俊杰在2022/5/18 19:56:26位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-18 19:56:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (463, '2022-05-18 23:03:38', 'WK010-杨俊杰在2022/5/18 23:03:37位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-18 23:03:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (464, '2022-05-19 15:54:42', 'admin-杨俊杰在2022/5/19 15:54:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-19 15:54:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (465, '2022-05-19 22:52:30', 'WK010-杨俊杰在2022/5/19 22:52:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-19 22:52:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (466, '2022-05-19 22:54:43', 'admin-杨俊杰在2022/5/19 22:54:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-19 22:54:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (467, '2022-05-21 09:38:58', 'WK010-杨俊杰在2022/5/21 9:38:57位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-21 09:38:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (469, '2022-05-21 21:36:50', 'admin-杨俊杰在2022/5/21 21:36:50位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-21 21:36:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (470, '2022-05-21 22:17:16', 'WK010-杨俊杰在2022/5/21 22:17:16位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-21 22:17:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (471, '2022-05-23 16:53:05', 'WK010-杨俊杰在2022-05-23 16:53:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-23 16:53:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (472, '2022-05-23 16:58:15', 'admin-杨俊杰在2022-05-23 16:58:14位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-23 16:58:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (473, '2022-05-23 17:03:35', 'SqlSugar.SqlSugarException: 23505: 重复键违反唯一约束"wtinfo_pkey"', 'admin', 300, 0, 'admin', '2022-05-23 17:03:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (474, '2022-05-23 17:07:28', 'WK010-杨俊杰在2022-05-23 17:07:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-23 17:07:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (475, '2022-05-23 17:15:07', 'admin-杨俊杰在2022-05-23 17:15:07位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-23 17:15:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (476, '2022-05-23 17:15:51', 'WK010-杨俊杰在2022-05-23 17:15:51位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-23 17:15:51', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (478, '2022-05-23 18:42:03', 'admin-杨俊杰在2022-05-23 18:42:03位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-23 18:42:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (479, '2022-05-25 11:08:57', 'admin-杨俊杰在2022/5/25 11:08:56位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-25 11:08:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (480, '2022-05-25 11:09:42', 'WK010-杨俊杰在2022/5/25 11:09:42位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-25 11:09:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (481, '2022-05-25 11:10:01', 'admin-杨俊杰在2022/5/25 11:10:00位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-25 11:10:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (482, '2022-05-25 17:22:51', 'admin-杨俊杰在5/25/2022 5:22:50 PM位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-25 17:22:51', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (483, '2022-05-26 09:07:49', 'admin-杨俊杰在2022/5/26 9:07:48位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-26 09:07:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (484, '2022-05-27 09:42:36', 'WK010-杨俊杰在2022-05-27 09:42:35位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-27 09:42:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (485, '2022-05-27 09:45:13', 'admin-杨俊杰在2022-05-27 09:45:13位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-27 09:45:13', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (486, '2022-05-27 22:32:21', 'WK010-杨俊杰在2022/5/27 22:32:21位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-27 22:32:21', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (487, '2022-05-27 22:33:48', 'admin-杨俊杰在2022/5/27 22:33:47位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-27 22:33:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (488, '2022-05-27 22:34:22', 'WK010-杨俊杰在2022/5/27 22:34:21位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-27 22:34:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (489, '2022-05-27 22:38:02', 'WK010-杨俊杰在2022/5/27 22:38:01位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-27 22:38:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (490, '2022-05-27 22:39:34', 'admin-杨俊杰在2022/5/27 22:39:33位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-27 22:39:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (491, '2022-05-28 10:06:40', 'WK010-杨俊杰在2022/5/28 10:06:39位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-28 10:06:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (492, '2022-05-28 10:10:11', 'admin-杨俊杰在2022/5/28 10:10:10位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-28 10:10:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (493, '2022-05-29 19:04:56', 'admin-杨俊杰在2022-5-29 19:04:56位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-29 19:04:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (494, '2022-05-29 19:05:32', 'admin-杨俊杰在2022-5-29 19:05:32位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-29 19:05:32', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (495, '2022-05-29 19:05:50', 'admin-杨俊杰在2022-5-29 19:05:50位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-29 19:05:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (496, '2022-05-29 19:06:43', 'admin-杨俊杰在2022-5-29 19:06:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-29 19:06:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (497, '2022-05-29 23:54:53', 'WK010-杨俊杰在2022/5/29 23:54:53位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-29 23:54:53', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (499, '2022-05-30 09:49:01', 'admin-杨俊杰在2022-05-30 09:49:01位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-30 09:49:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (500, '2022-05-30 17:05:12', 'admin-杨俊杰在2022/5/30 17:05:12位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-30 17:05:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (501, '2022-05-30 17:05:42', 'WK010-杨俊杰在2022/5/30 17:05:41位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-30 17:05:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (503, '2022-05-30 19:36:59', 'WK010-杨俊杰在2022/5/30 19:36:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-30 19:36:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (504, '2022-05-30 19:41:22', 'admin-杨俊杰在2022/5/30 19:41:22位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-30 19:41:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (505, '2022-05-30 19:43:06', 'WK010-杨俊杰在2022/5/30 19:43:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-30 19:43:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (507, '2022-05-30 19:44:06', 'WK010-杨俊杰在2022/5/30 19:44:06位于1.5.0.7执行:添加了一名客户,客户编号为:TS-202200157', 'WK010', 300, 0, 'WK010', '2022-05-30 19:44:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (508, '2022-05-30 19:45:07', '经理部-总经理-杨俊杰于2022/5/30 19:45:06帮助TS-202200157进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-05-30 19:45:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (509, '2022-05-30 19:45:20', 'admin-杨俊杰在2022/5/30 19:45:19位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-30 19:45:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (510, '2022-05-30 19:47:01', 'WK010-杨俊杰在2022/5/30 19:47:01位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-30 19:47:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (511, '2022-05-30 19:48:30', 'WK010-杨俊杰在2022/5/30 19:48:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-30 19:48:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (512, '2022-05-30 19:50:33', 'WK010-杨俊杰在2022/5/30 19:50:32位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-30 19:50:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (513, '2022-05-31 14:41:04', 'admin-杨俊杰在2022/5/31 14:41:03位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-31 14:41:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (514, '2022-06-04 10:50:45', 'WK010-杨俊杰在2022/6/4 10:50:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 10:50:45', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (515, '2022-06-04 10:52:37', 'SqlSugar.SqlSugarException: 23505: duplicate key value violates unique constraint "wtinfo_pkey"', 'WK010', 300, 0, 'WK010', '2022-06-04 10:52:37', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (516, '2022-06-04 10:54:15', 'WK010-杨俊杰在2022/6/4 10:54:15位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 10:54:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (517, '2022-06-04 10:54:52', 'admin-杨俊杰在2022/6/4 10:54:51位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-06-04 10:54:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (518, '2022-06-04 11:25:41', 'WK010-杨俊杰在2022/6/4 11:25:41位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 11:25:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (520, '2022-06-04 11:29:54', 'WK010-杨俊杰在2022/6/4 11:29:54位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 11:29:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (521, '2022-06-04 13:43:26', 'admin-杨俊杰在2022/6/4 13:43:25位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-06-04 13:43:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (522, '2022-06-04 18:06:34', 'WK010-杨俊杰在2022/6/4 18:06:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:06:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (523, '2022-06-04 18:17:41', 'WK010-杨俊杰在2022/6/4 18:17:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:17:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (524, '2022-06-04 18:19:44', 'WK010-杨俊杰在2022/6/4 18:19:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:19:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (525, '2022-06-04 18:20:55', 'WK010-杨俊杰在2022/6/4 18:20:54位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:20:55', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (526, '2022-06-04 18:27:04', 'WK010-杨俊杰在2022/6/4 18:27:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:27:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (527, '2022-06-04 18:34:20', 'WK010-杨俊杰在2022/6/4 18:34:20位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:34:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (529, '2022-06-04 18:35:16', 'WK010-杨俊杰在2022/6/4 18:35:16位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:35:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (531, '2022-06-04 18:36:37', 'WK010-杨俊杰在2022/6/4 18:36:36位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:36:37', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (532, '2022-06-05 19:19:34', 'WK010-杨俊杰在2022/6/5 19:19:33位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-05 19:19:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (534, '2022-06-07 19:31:38', 'WK010-杨俊杰在2022/6/7 19:31:37位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-07 19:31:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (535, '2022-06-12 01:07:15', 'WK010-杨俊杰在2022/6/12 1:07:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-12 01:07:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (537, '2022-06-14 23:14:14', 'WK010-杨俊杰在2022/6/14 23:14:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-14 23:14:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (539, '2022-06-16 20:44:41', 'admin-杨俊杰在2022/6/16 20:44:41位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-06-16 20:44:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (540, '2022-06-16 20:45:35', 'WK010-杨俊杰在2022/6/16 20:45:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-16 20:45:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (541, '2022-06-16 20:48:49', 'WK010-杨俊杰在2022/6/16 20:48:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-16 20:48:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (542, '2022-06-16 23:34:32', 'WK010-杨俊杰在2022-06-16 23:34:32位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-16 23:34:32', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (543, '2022-06-16 23:35:28', 'WK010-杨俊杰在2022-06-16 23:35:27位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-16 23:35:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (544, '2022-06-16 23:36:06', 'admin-杨俊杰在2022-06-16 23:36:05位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-06-16 23:36:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (545, '2022-06-26 16:00:40', 'WK010-杨俊杰在2022/6/26 16:00:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-26 16:00:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (547, '2022-06-27 10:34:09', 'WK010-杨俊杰在2022-06-27 10:34:09位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-27 10:34:09', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (548, '2022-06-27 14:29:38', 'WK010-杨俊杰在2022/6/27 14:29:38位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-27 14:29:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (549, '2022-06-27 14:50:51', 'WK010-杨俊杰在2022/6/27 14:50:50位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-27 14:50:51', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (550, '2022-06-30 11:26:59', 'WK010-杨俊杰在2022/6/30 11:26:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-30 11:26:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (551, '2022-06-30 11:31:23', 'admin-杨俊杰在2022/6/30 11:31:22位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-06-30 11:31:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (552, '2022-07-01 20:22:11', 'WK010-杨俊杰在2022/7/1 20:22:10位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-07-01 20:22:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (554, '2022-07-05 23:05:44', 'admin-杨俊杰在2022/7/5 23:05:44位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-07-05 23:05:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (555, '2022-07-13 23:29:05', 'WK010-杨俊杰在2022/7/13 23:29:05位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-07-13 23:29:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (557, '2022-07-18 21:37:27', 'WK010-杨俊杰在2022/7/18 21:37:26位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-07-18 21:37:27', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (559, '2022-07-21 09:29:08', 'admin-杨俊杰在2022/7/21 9:29:07位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-07-21 09:29:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (560, '2022-07-30 15:47:03', 'WK010-杨俊杰在2022/7/30 15:47:03位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-07-30 15:47:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (561, '2022-07-30 15:53:57', 'WK010-杨俊杰在2022/7/30 15:53:57位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-07-30 15:53:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (562, '2022-07-30 15:56:45', 'WK010-杨俊杰在2022/7/30 15:56:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-07-30 15:56:45', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (563, '2022-08-02 23:07:36', 'WK010-杨俊杰在2022/8/2 23:07:36位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-08-02 23:07:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (565, '2022-08-07 15:56:17', 'WK010-杨俊杰在2022/8/7 15:56:16位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-08-07 15:56:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (566, '2022-08-09 17:55:33', 'admin-杨俊杰在2022/8/9 17:55:33位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-08-09 17:55:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (567, '2022-08-09 17:55:48', 'WK010-杨俊杰在2022/8/9 17:55:47位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-08-09 17:55:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (568, '2022-08-09 17:56:58', 'admin-杨俊杰在2022/8/9 17:56:57位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-08-09 17:56:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (569, '2022-08-16 20:21:40', 'WK010-杨俊杰在2022/8/16 20:21:39位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-08-16 20:21:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (570, '2022-08-23 10:56:54', 'WK010-杨俊杰在2022/8/23 10:56:54位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-08-23 10:56:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (571, '2022-08-28 16:38:10', 'WK010-杨俊杰在2022/8/28 16:38:09位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-08-28 16:38:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (572, '2022-09-01 23:14:05', 'admin-杨俊杰在2022/9/1 23:14:04位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-09-01 23:14:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (573, '2022-09-01 23:14:20', 'admin-杨俊杰在2022/9/1 23:14:20位于1.5.0.7执行:删除职位类型操作!删除值为:P-2022006', 'admin', 200, 0, 'admin', '2022-09-01 23:14:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (574, '2022-09-11 01:43:36', 'WK010-杨俊杰在2022/9/11 1:43:36位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-09-11 01:43:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (576, '2022-09-11 14:14:42', 'WK010-杨俊杰在2022/9/11 14:14:42位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-09-11 14:14:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (577, '2022-09-15 01:32:06', 'WK010-杨俊杰在2022/9/15 1:32:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-09-15 01:32:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (578, '2022-09-15 21:23:59', 'WK010-杨俊杰在2022/9/15 21:23:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-09-15 21:23:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (579, '2022-09-15 21:27:16', 'WK010-杨俊杰在2022/9/15 21:27:16位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-09-15 21:27:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (580, '2022-09-15 21:27:56', 'admin-杨俊杰在2022/9/15 21:27:56位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-09-15 21:27:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (581, '2022-09-15 21:29:50', 'WK010-杨俊杰在2022/9/15 21:29:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-09-15 21:29:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (582, '2022-09-18 23:38:26', 'WK010-杨俊杰在2022/9/18 23:38:25位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-09-18 23:38:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (584, '2022-09-18 23:39:19', 'admin-杨俊杰在2022/9/18 23:39:19位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-09-18 23:39:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (585, '2022-09-18 23:39:51', 'admin-杨俊杰在2022/9/18 23:39:51位于1.5.0.7执行:删除部门类型操作!删除值为:D-20210034', 'admin', 200, 0, 'admin', '2022-09-18 23:39:51', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (586, '2022-09-18 23:39:57', 'admin-杨俊杰在2022/9/18 23:39:57位于1.5.0.7执行:删除部门类型操作!删除值为:D-20210087', 'admin', 200, 0, 'admin', '2022-09-18 23:39:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (587, '2022-09-24 19:48:50', 'WK010-杨俊杰在2022/9/24 19:48:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-09-24 19:48:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (589, '2022-09-25 19:43:01', 'admin-杨俊杰在2022-09-25 19:43:00位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-09-25 19:43:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (590, '2022-09-28 15:37:54', 'admin-杨俊杰在2022/9/28 15:37:53位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-09-28 15:37:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (591, '2022-10-04 00:48:25', 'WK010-杨俊杰在2022/10/4 0:48:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-10-04 00:48:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (593, '2022-10-04 00:49:04', 'WK010-杨俊杰在2022/10/4 0:49:04位于1.5.0.7执行:帮助TS003574305322进行了消费商品:青岛啤酒操作!', 'WK010', 200, 0, 'WK010', '2022-10-04 00:49:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (595, '2022-10-07 10:04:29', 'admin-杨俊杰在2022/10/7 10:04:29位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-10-07 10:04:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (596, '2022-10-12 09:24:05', 'admin-杨俊杰在2022/10/12 9:24:05位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-10-12 09:24:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (597, '2022-10-14 21:17:24', 'admin-杨俊杰在2022/10/14 21:17:24位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-10-14 21:17:24', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (598, '2022-10-18 23:00:31', 'WK010-杨俊杰在2022/10/18 23:00:31位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-10-18 23:00:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (599, '2022-10-22 17:41:56', 'WK010-杨俊杰在2022/10/22 17:41:56位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-10-22 17:41:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (600, '2022-10-31 10:50:15', 'admin-杨俊杰在2022/10/31 10:50:14位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-10-31 10:50:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (601, '2022-10-31 10:52:57', 'admin-杨俊杰在2022/10/31 10:52:57位于1.5.0.7执行:禁用/启用管理账号操作!新增值为:1', 'admin', 200, 0, 'admin', '2022-10-31 10:52:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (602, '2022-10-31 10:53:09', 'WK010-杨俊杰在2022/10/31 10:53:09位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-10-31 10:53:09', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (603, '2022-11-05 00:17:19', 'admin-杨俊杰在2022/11/5 0:17:19位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-11-05 00:17:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (604, '2022-11-05 00:20:02', 'WK010-杨俊杰在2022/11/5 0:20:02位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-05 00:20:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (605, '2022-11-05 00:20:29', 'SqlSugar.SqlSugarException: 23505: duplicate key value violates unique constraint "wtinfo_pkey"', 'WK010', 300, 0, 'WK010', '2022-11-05 00:20:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (606, '2022-11-15 23:19:56', 'admin-杨俊杰在2022/11/15 23:19:55位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-11-15 23:19:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (607, '2022-11-15 23:24:56', 'WK010-杨俊杰在2022/11/15 23:24:55位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-15 23:24:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (608, '2022-11-16 10:22:13', 'WK010-杨俊杰在2022/11/16 10:22:12位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-16 10:22:13', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (609, '2022-11-17 10:23:24', 'WK010-杨俊杰在2022/11/17 10:23:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-17 10:23:24', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (611, '2022-11-17 10:30:30', 'admin-杨俊杰在2022/11/17 10:30:29位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-11-17 10:30:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (612, '2022-11-17 10:32:49', 'admin-杨俊杰在2022/11/17 10:32:49位于1.5.0.7执行:删除民族类型操作!删除值为:N-00001', 'admin', 200, 0, 'admin', '2022-11-17 10:32:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (613, '2022-11-17 10:52:00', 'WK010-杨俊杰在2022/11/17 10:51:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-17 10:52:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (615, '2022-11-17 11:09:19', 'WK010-杨俊杰在2022/11/17 11:09:19位于1.5.0.7执行:帮助TS096263040047进行了消费商品:特级杜蕾斯操作!', 'WK010', 200, 0, 'WK010', '2022-11-17 11:09:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (617, '2022-11-17 11:10:05', 'WK010-杨俊杰在2022/11/17 11:10:05位于1.5.0.7执行:帮助TS096263040047进行了消费商品:扑克牌操作!', 'WK010', 200, 0, 'WK010', '2022-11-17 11:10:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (618, '2022-11-17 11:19:30', 'SqlSugar.SqlSugarException: 23505: duplicate key value violates unique constraint "wtinfo_pkey"', 'WK010', 300, 0, 'WK010', '2022-11-17 11:19:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (619, '2022-11-17 11:20:06', 'SqlSugar.SqlSugarException: 22007: invalid input syntax for type timestamp: ""', 'WK010', 300, 0, 'WK010', '2022-11-17 11:20:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (620, '2022-11-17 13:47:02', 'WK010-杨俊杰在2022/11/17 13:47:02位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-17 13:47:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (621, '2022-11-17 13:50:50', 'admin-杨俊杰在2022/11/17 13:50:49位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-11-17 13:50:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (622, '2022-11-17 15:43:44', 'WK010-杨俊杰在2022/11/17 15:43:43位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-17 15:43:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (623, '2022-11-17 17:04:19', 'SqlSugar.SqlSugarException: 23505: duplicate key value violates unique constraint "wtinfo_pkey"', 'WK010', 300, 0, 'WK010', '2022-11-17 17:04:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (624, '2022-11-17 17:04:49', 'SqlSugar.SqlSugarException: 23505: duplicate key value violates unique constraint "wtinfo_pkey"', 'WK010', 300, 0, 'WK010', '2022-11-17 17:04:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (625, '2022-11-17 17:05:00', 'SqlSugar.SqlSugarException: 23505: duplicate key value violates unique constraint "wtinfo_pkey"', 'WK010', 300, 0, 'WK010', '2022-11-17 17:05:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (626, '2022-11-18 09:51:55', 'WK010-杨俊杰在2022/11/18 9:51:55位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-18 09:51:55', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (628, '2022-11-18 09:54:10', 'WK010-杨俊杰在2022/11/18 9:54:09位于1.5.0.7执行:帮助TS063603838018进行了消费商品:可口可乐操作!', 'WK010', 200, 0, 'WK010', '2022-11-18 09:54:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (630, '2022-11-18 09:54:29', 'WK010-杨俊杰在2022/11/18 9:54:28位于1.5.0.7执行:帮助TS063603838018进行了消费商品:蟹味瓜子仁操作!', 'WK010', 200, 0, 'WK010', '2022-11-18 09:54:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (631, '2022-11-18 09:55:17', 'WK010-杨俊杰在2022/11/18 9:55:16位于1.5.0.7执行:帮助TS063603838018撤销了消费商品:蟹味瓜子仁操作!', 'WK010', 200, 0, 'WK010', '2022-11-18 09:55:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (633, '2022-11-18 09:55:27', 'WK010-杨俊杰在2022/11/18 9:55:27位于1.5.0.7执行:帮助TS063603838018进行了消费商品:香皂操作!', 'WK010', 200, 0, 'WK010', '2022-11-18 09:55:27', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (634, '2022-11-18 09:55:33', 'WK010-杨俊杰在2022/11/18 9:55:32位于1.5.0.7执行:帮助TS063603838018撤销了消费商品:香皂操作!', 'WK010', 200, 0, 'WK010', '2022-11-18 09:55:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (636, '2022-11-18 09:55:44', 'WK010-杨俊杰在2022/11/18 9:55:44位于1.5.0.7执行:帮助TS063603838018进行了消费商品:黄油华夫饼操作!', 'WK010', 200, 0, 'WK010', '2022-11-18 09:55:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (637, '2022-11-18 09:58:04', 'WK010-杨俊杰在2022/11/18 9:58:03位于1.5.0.7执行:修改了一名客户信息,客户编号为:TS-20220099', 'WK010', 300, 0, 'WK010', '2022-11-18 09:58:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (638, '2022-11-18 10:02:49', 'WK010-杨俊杰在2022/11/18 10:02:49位于1.5.0.7执行:添加了一名客户,客户编号为:TS-202200165', 'WK010', 300, 0, 'WK010', '2022-11-18 10:02:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (639, '2022-11-18 10:04:08', 'WK010-杨俊杰在2022/11/18 10:04:08位于1.5.0.7执行:添加了一名客户,客户编号为:TS-202200166', 'WK010', 300, 0, 'WK010', '2022-11-18 10:04:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (640, '2022-11-18 10:19:53', 'admin-杨俊杰在2022/11/18 10:19:53位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-11-18 10:19:53', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (641, '2022-11-18 10:54:17', 'admin-杨俊杰在2022/11/18 10:54:16位于1.5.0.7执行:修改商品操作!修改值为:ST008', 'admin', 200, 0, 'admin', '2022-11-18 10:54:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (642, '2022-11-18 10:55:00', 'admin-杨俊杰在2022/11/18 10:54:59位于1.5.0.7执行:修改商品操作!修改值为:ST008', 'admin', 200, 0, 'admin', '2022-11-18 10:55:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (643, '2022-11-18 10:56:03', 'admin-杨俊杰在2022/11/18 10:56:03位于1.5.0.7执行:修改商品操作!修改值为:ST020', 'admin', 200, 0, 'admin', '2022-11-18 10:56:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (644, '2022-11-18 10:56:22', 'admin-杨俊杰在2022/11/18 10:56:22位于1.5.0.7执行:修改商品操作!修改值为:ST022', 'admin', 200, 0, 'admin', '2022-11-18 10:56:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (645, '2022-11-18 10:56:45', 'admin-杨俊杰在2022/11/18 10:56:44位于1.5.0.7执行:修改商品操作!修改值为:ST014', 'admin', 200, 0, 'admin', '2022-11-18 10:56:45', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (646, '2022-11-18 10:57:07', 'admin-杨俊杰在2022/11/18 10:57:07位于1.5.0.7执行:修改商品操作!修改值为:ST007', 'admin', 200, 0, 'admin', '2022-11-18 10:57:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (647, '2022-11-18 10:57:39', 'admin-杨俊杰在2022/11/18 10:57:39位于1.5.0.7执行:修改商品操作!修改值为:ST-202200107', 'admin', 200, 0, 'admin', '2022-11-18 10:57:39', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (648, '2022-11-18 10:58:33', 'admin-杨俊杰在2022/11/18 10:58:33位于1.5.0.7执行:修改商品操作!修改值为:ST677', 'admin', 200, 0, 'admin', '2022-11-18 10:58:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (649, '2022-11-18 10:59:24', 'admin-杨俊杰在2022/11/18 10:59:23位于1.5.0.7执行:修改商品操作!修改值为:ST017', 'admin', 200, 0, 'admin', '2022-11-18 10:59:24', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (650, '2022-11-18 10:59:43', 'admin-杨俊杰在2022/11/18 10:59:43位于1.5.0.7执行:修改商品操作!修改值为:ST019', 'admin', 200, 0, 'admin', '2022-11-18 10:59:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (651, '2022-11-18 11:00:08', 'admin-杨俊杰在2022/11/18 11:00:08位于1.5.0.7执行:修改商品操作!修改值为:ST983', 'admin', 200, 0, 'admin', '2022-11-18 11:00:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (652, '2022-11-18 11:01:10', 'admin-杨俊杰在2022/11/18 11:01:09位于1.5.0.7执行:修改商品操作!修改值为:ST011', 'admin', 200, 0, 'admin', '2022-11-18 11:01:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (653, '2022-11-18 11:01:45', 'admin-杨俊杰在2022/11/18 11:01:45位于1.5.0.7执行:修改商品操作!修改值为:ST-2021009', 'admin', 200, 0, 'admin', '2022-11-18 11:01:45', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (654, '2022-11-18 14:07:11', 'WK010-杨俊杰在2022/11/18 14:07:10位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-18 14:07:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (657, '2022-11-18 16:10:41', 'WK010-杨俊杰在2022/11/18 16:10:40位于1.5.0.7执行:帮助TS004121649776进行了消费商品:哇哈哈矿泉水操作!', 'WK010', 200, 0, 'WK010', '2022-11-18 16:10:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (659, '2022-11-18 16:10:54', 'WK010-杨俊杰在2022/11/18 16:10:54位于1.5.0.7执行:帮助TS004121649776进行了消费商品:白象方便面操作!', 'WK010', 200, 0, 'WK010', '2022-11-18 16:10:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (661, '2022-11-18 16:11:07', 'WK010-杨俊杰在2022/11/18 16:11:06位于1.5.0.7执行:帮助TS004121649776进行了消费商品:老婆饼操作!', 'WK010', 200, 0, 'WK010', '2022-11-18 16:11:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (662, '2022-11-18 16:11:27', 'WK010-杨俊杰在2022/11/18 16:11:26位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-18 16:11:27', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (663, '2022-11-20 23:50:34', 'WK010-杨俊杰在2022/11/20 23:50:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-20 23:50:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (665, '2022-11-20 23:55:29', 'admin-杨俊杰在2022/11/20 23:55:28位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-11-20 23:55:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (666, '2022-11-21 16:44:24', 'WK010-杨俊杰在2022/11/21 16:44:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-21 16:44:24', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (667, '2022-11-30 13:59:47', 'WK010-杨俊杰在2022/11/30 13:59:47位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-30 13:59:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (668, '2022-11-30 14:05:11', 'admin-杨俊杰在2022/11/30 14:05:10位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-11-30 14:05:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (669, '2022-11-30 14:07:16', 'WK010-杨俊杰在2022/11/30 14:07:16位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-30 14:07:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (670, '2022-12-04 12:58:38', 'WK010-杨俊杰在2022/12/4 12:58:38位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 12:58:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (671, '2022-12-04 12:59:03', 'SqlSugar.SqlSugarException: 23505: duplicate key value violates unique constraint "wtinfo_pkey"', 'WK010', 300, 0, 'WK010', '2022-12-04 12:59:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (672, '2022-12-04 13:00:23', 'WK010-杨俊杰在2022/12/4 13:00:23位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:00:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (673, '2022-12-04 13:02:24', 'SqlSugar.SqlSugarException: 23505: duplicate key value violates unique constraint "wtinfo_pkey"', 'WK010', 300, 0, 'WK010', '2022-12-04 13:02:24', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (675, '2022-12-04 13:09:30', 'WK010-杨俊杰在2022/12/4 13:09:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:09:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (676, '2022-12-04 13:11:31', 'WK010-杨俊杰在2022/12/4 13:11:31位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:11:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (677, '2022-12-04 13:13:46', 'WK010-杨俊杰在2022/12/4 13:13:45位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:13:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (678, '2022-12-04 13:16:07', 'WK010-杨俊杰在2022/12/4 13:16:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:16:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (680, '2022-12-04 13:20:01', 'WK010-杨俊杰在2022/12/4 13:20:00位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:20:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (682, '2022-12-04 13:20:31', '经理部-总经理-杨俊杰于2022/12/4 13:20:30帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:20:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (684, '2022-12-04 13:24:33', 'WK010-杨俊杰在2022/12/4 13:24:32位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:24:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (685, '2022-12-04 13:26:28', 'WK010-杨俊杰在2022/12/4 13:26:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:26:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (686, '2022-12-04 13:30:18', 'WK010-杨俊杰在2022/12/4 13:30:17位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:30:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (688, '2022-12-04 13:31:24', 'WK010-杨俊杰在2022/12/4 13:31:24位于1.5.0.7执行:帮助TS006957585451进行了消费商品:三只松鼠零食大礼包操作!', 'WK010', 200, 0, 'WK010', '2022-12-04 13:31:24', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (689, '2022-12-04 13:43:27', 'WK010-杨俊杰在2022/12/4 13:43:27位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:43:27', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (690, '2022-12-04 13:44:58', 'WK010-杨俊杰在2022/12/4 13:44:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:44:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (691, '2022-12-04 13:45:25', 'WK010-杨俊杰在2022/12/4 13:45:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:45:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (692, '2022-12-04 13:47:19', 'WK010-杨俊杰在2022/12/4 13:47:19位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:47:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (693, '2022-12-04 13:49:03', 'WK010-杨俊杰在2022/12/4 13:49:03位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:49:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (694, '2022-12-04 13:51:00', 'WK010-杨俊杰在2022/12/4 13:51:00位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:51:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (695, '2022-12-04 13:51:23', 'WK010-杨俊杰在2022/12/4 13:51:22位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:51:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (696, '2022-12-04 13:53:02', 'WK010-杨俊杰在2022/12/4 13:53:01位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:53:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (697, '2022-12-04 13:53:30', 'WK010-杨俊杰在2022/12/4 13:53:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:53:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (698, '2022-12-04 13:54:03', 'WK010-杨俊杰在2022/12/4 13:54:02位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:54:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (699, '2022-12-04 13:56:33', 'WK010-杨俊杰在2022/12/4 13:56:32位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:56:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (700, '2022-12-04 13:57:29', 'WK010-杨俊杰在2022/12/4 13:57:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:57:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (701, '2022-12-04 13:57:59', 'WK010-杨俊杰在2022/12/4 13:57:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:57:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (702, '2022-12-04 14:00:29', 'WK010-杨俊杰在2022/12/4 14:00:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:00:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (703, '2022-12-04 14:03:43', 'WK010-杨俊杰在2022/12/4 14:03:42位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:03:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (704, '2022-12-04 14:04:02', 'WK010-杨俊杰在2022/12/4 14:04:01位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:04:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (705, '2022-12-04 14:04:25', 'WK010-杨俊杰在2022/12/4 14:04:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:04:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (706, '2022-12-04 14:04:50', 'WK010-杨俊杰在2022/12/4 14:04:50位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:04:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (707, '2022-12-04 14:05:12', 'WK010-杨俊杰在2022/12/4 14:05:12位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:05:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (711, '2022-12-04 14:40:25', 'WK010-杨俊杰在2022/12/4 14:40:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:40:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (712, '2022-12-04 14:41:17', 'WK010-杨俊杰在2022/12/4 14:41:16位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:41:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (713, '2022-12-04 14:41:53', 'WK010-杨俊杰在2022/12/4 14:41:53位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:41:53', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (714, '2022-12-04 14:42:57', 'WK010-杨俊杰在2022/12/4 14:42:57位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:42:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (715, '2022-12-04 14:43:47', 'WK010-杨俊杰在2022/12/4 14:43:47位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:43:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (716, '2022-12-04 14:44:49', 'WK010-杨俊杰在2022/12/4 14:44:48位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:44:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (717, '2022-12-04 14:45:45', 'WK010-杨俊杰在2022/12/4 14:45:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:45:45', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (718, '2022-12-04 14:46:12', 'WK010-杨俊杰在2022/12/4 14:46:12位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:46:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (719, '2022-12-04 14:47:11', 'WK010-杨俊杰在2022/12/4 14:47:11位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:47:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (720, '2022-12-04 14:47:43', 'WK010-杨俊杰在2022/12/4 14:47:42位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:47:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (721, '2022-12-04 14:48:33', 'WK010-杨俊杰在2022/12/4 14:48:33位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:48:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (722, '2022-12-04 14:49:12', 'WK010-杨俊杰在2022/12/4 14:49:11位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:49:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (723, '2022-12-04 14:55:52', 'WK010-杨俊杰在2022/12/4 14:55:52位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:55:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (724, '2022-12-04 14:56:57', 'WK010-杨俊杰在2022/12/4 14:56:56位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:56:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (725, '2022-12-04 15:01:02', 'WK010-杨俊杰在2022/12/4 15:01:01位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:01:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (726, '2022-12-04 15:01:37', 'WK010-杨俊杰在2022/12/4 15:01:36位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:01:37', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (727, '2022-12-04 15:10:32', 'WK010-杨俊杰在2022/12/4 15:10:31位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:10:32', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (728, '2022-12-04 15:17:40', 'WK010-杨俊杰在2022/12/4 15:17:39位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:17:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (729, '2022-12-04 15:19:50', 'WK010-杨俊杰在2022/12/4 15:19:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:19:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (730, '2022-12-04 15:25:11', 'WK010-杨俊杰在2022/12/4 15:25:10位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:25:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (731, '2022-12-04 15:26:17', 'WK010-杨俊杰在2022/12/4 15:26:16位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:26:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (732, '2022-12-04 15:26:58', 'WK010-杨俊杰在2022/12/4 15:26:57位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:26:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (733, '2022-12-04 15:27:41', 'WK010-杨俊杰在2022/12/4 15:27:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:27:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (734, '2022-12-04 15:27:58', 'WK010-杨俊杰在2022/12/4 15:27:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:27:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (735, '2022-12-04 15:28:30', 'WK010-杨俊杰在2022/12/4 15:28:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:28:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (736, '2022-12-04 15:30:29', 'WK010-杨俊杰在2022/12/4 15:30:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:30:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (737, '2022-12-05 13:53:01', 'WK010-杨俊杰在2022/12/5 13:53:00位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-05 13:53:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (739, '2022-12-05 13:56:51', 'WK010-杨俊杰在2022/12/5 13:56:50位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-05 13:56:51', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (740, '2022-12-05 15:47:14', 'admin-杨俊杰在2022/12/5 15:47:14位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-12-05 15:47:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (741, '2022-12-05 22:39:00', 'WK010-杨俊杰在2022/12/5 22:39:00位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-05 22:39:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (742, '2022-12-05 22:42:15', 'WK010-杨俊杰在2022/12/5 22:42:15位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-05 22:42:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (743, '2022-12-05 22:55:46', 'WK010-杨俊杰在2022/12/5 22:55:46位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-05 22:55:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (745, '2022-12-05 22:56:32', '经理部-总经理-杨俊杰于2022/12/5 22:56:32帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-05 22:56:32', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (746, '2022-12-05 23:00:54', 'WK010-杨俊杰在2022/12/5 23:00:53位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-05 23:00:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (748, '2022-12-05 23:01:25', '经理部-总经理-杨俊杰于2022/12/5 23:01:25帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-05 23:01:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (750, '2022-12-05 23:01:46', '经理部-总经理-杨俊杰于2022/12/5 23:01:46帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-05 23:01:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (751, '2022-12-05 23:02:31', 'WK010-杨俊杰在2022/12/5 23:02:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-05 23:02:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (753, '2022-12-05 23:03:02', '经理部-总经理-杨俊杰于2022/12/5 23:03:02帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-05 23:03:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (755, '2022-12-05 23:03:30', '经理部-总经理-杨俊杰于2022/12/5 23:03:30帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-05 23:03:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (756, '2022-12-06 08:52:09', 'WK010-杨俊杰在2022/12/6 8:52:08位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:52:09', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (758, '2022-12-06 08:52:35', '经理部-总经理-杨俊杰于2022/12/6 8:52:34帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:52:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (760, '2022-12-06 08:52:55', '经理部-总经理-杨俊杰于2022/12/6 8:52:55帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:52:55', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (762, '2022-12-06 08:53:30', 'WK010-杨俊杰在2022/12/6 8:53:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:53:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (763, '2022-12-06 08:53:47', '经理部-总经理-杨俊杰于2022/12/6 8:53:47帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:53:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (764, '2022-12-06 08:53:58', '经理部-总经理-杨俊杰于2022/12/6 8:53:57帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:53:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (765, '2022-12-06 08:54:09', '经理部-总经理-杨俊杰于2022/12/6 8:54:09帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:54:09', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (766, '2022-12-06 08:54:21', '经理部-总经理-杨俊杰于2022/12/6 8:54:20帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:54:21', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (767, '2022-12-06 08:54:33', '经理部-总经理-杨俊杰于2022/12/6 8:54:32帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:54:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (768, '2022-12-06 08:54:46', '经理部-总经理-杨俊杰于2022/12/6 8:54:45帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:54:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (769, '2022-12-06 08:55:03', '经理部-总经理-杨俊杰于2022/12/6 8:55:02帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:55:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (770, '2022-12-06 08:55:20', '经理部-总经理-杨俊杰于2022/12/6 8:55:20帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:55:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (771, '2022-12-06 09:15:42', 'WK010-杨俊杰在2022/12/6 9:15:42位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 09:15:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (772, '2022-12-06 09:15:43', 'SqlSugar.SqlSugarException: 42703: column "RoomNo" does not exist', 'WK010', 300, 0, 'WK010', '2022-12-06 09:15:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (773, '2022-12-06 09:19:58', 'WK010-杨俊杰在2022/12/6 9:19:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 09:19:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (775, '2022-12-06 09:45:15', 'WK010-杨俊杰在2022/12/6 9:45:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 09:45:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (776, '2022-12-06 09:58:42', 'WK010-杨俊杰在2022/12/6 9:58:41位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 09:58:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (777, '2022-12-06 10:02:16', 'WK010-杨俊杰在2022/12/6 10:02:16位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:02:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (778, '2022-12-06 10:03:07', 'WK010-杨俊杰在2022/12/6 10:03:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:03:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (779, '2022-12-06 10:05:46', 'WK010-杨俊杰在2022/12/6 10:05:45位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:05:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (780, '2022-12-06 10:09:36', 'WK010-杨俊杰在2022/12/6 10:09:35位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:09:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (781, '2022-12-06 10:12:48', 'WK010-杨俊杰在2022/12/6 10:12:48位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:12:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (782, '2022-12-06 10:13:34', 'WK010-杨俊杰在2022/12/6 10:13:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:13:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (783, '2022-12-06 10:17:44', 'WK010-杨俊杰在2022/12/6 10:17:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:17:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (784, '2022-12-06 10:37:10', 'WK010-杨俊杰在2022/12/6 10:37:09位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:37:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (785, '2022-12-06 10:38:20', 'WK010-杨俊杰在2022/12/6 10:38:20位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:38:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (786, '2022-12-06 10:44:37', 'WK010-杨俊杰在2022/12/6 10:44:37位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:44:37', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (787, '2022-12-06 10:48:16', 'WK010-杨俊杰在2022/12/6 10:48:15位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:48:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (788, '2022-12-06 10:51:17', 'admin-杨俊杰在2022/12/6 10:51:16位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-12-06 10:51:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (789, '2022-12-06 10:52:30', 'admin杨俊杰于2022/12/6 10:52:29新增了房间,房间号为:BD001,房间类型为:标准单人间', 'admin', 200, 0, 'admin', '2022-12-06 10:52:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (790, '2022-12-06 10:52:48', 'admin杨俊杰于2022/12/6 10:52:47新增了房间,房间号为:BD002,房间类型为:标准单人间', 'admin', 200, 0, 'admin', '2022-12-06 10:52:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (791, '2022-12-06 10:52:53', 'admin杨俊杰于2022/12/6 10:52:53新增了房间,房间号为:BD003,房间类型为:标准单人间', 'admin', 200, 0, 'admin', '2022-12-06 10:52:53', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (792, '2022-12-06 10:52:58', 'admin杨俊杰于2022/12/6 10:52:57新增了房间,房间号为:BD004,房间类型为:标准单人间', 'admin', 200, 0, 'admin', '2022-12-06 10:52:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (793, '2022-12-06 10:53:02', 'admin杨俊杰于2022/12/6 10:53:02新增了房间,房间号为:BD005,房间类型为:标准单人间', 'admin', 200, 0, 'admin', '2022-12-06 10:53:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (794, '2022-12-06 10:53:09', 'admin杨俊杰于2022/12/6 10:53:08新增了房间,房间号为:BD006,房间类型为:标准单人间', 'admin', 200, 0, 'admin', '2022-12-06 10:53:09', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (795, '2022-12-06 10:53:14', 'admin杨俊杰于2022/12/6 10:53:13新增了房间,房间号为:BD007,房间类型为:标准单人间', 'admin', 200, 0, 'admin', '2022-12-06 10:53:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (796, '2022-12-06 10:53:20', 'admin杨俊杰于2022/12/6 10:53:20新增了房间,房间号为:BD008,房间类型为:标准单人间', 'admin', 200, 0, 'admin', '2022-12-06 10:53:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (797, '2022-12-06 10:53:26', 'admin杨俊杰于2022/12/6 10:53:25新增了房间,房间号为:BD009,房间类型为:标准单人间', 'admin', 200, 0, 'admin', '2022-12-06 10:53:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (798, '2022-12-06 10:53:31', 'admin杨俊杰于2022/12/6 10:53:31新增了房间,房间号为:BD010,房间类型为:标准单人间', 'admin', 200, 0, 'admin', '2022-12-06 10:53:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (799, '2022-12-06 10:53:47', 'admin杨俊杰于2022/12/6 10:53:47新增了房间,房间号为:BS010,房间类型为:标准双人间', 'admin', 200, 0, 'admin', '2022-12-06 10:53:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (800, '2022-12-06 10:54:00', 'admin杨俊杰于2022/12/6 10:53:59新增了房间,房间号为:BS005,房间类型为:标准双人间', 'admin', 200, 0, 'admin', '2022-12-06 10:54:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (801, '2022-12-06 10:54:11', 'admin杨俊杰于2022/12/6 10:54:10新增了房间,房间号为:ZT005,房间类型为:总统套房', 'admin', 200, 0, 'admin', '2022-12-06 10:54:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (802, '2022-12-06 10:54:17', 'admin杨俊杰于2022/12/6 10:54:17新增了房间,房间号为:ZT001,房间类型为:总统套房', 'admin', 200, 0, 'admin', '2022-12-06 10:54:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (803, '2022-12-06 10:54:22', 'admin杨俊杰于2022/12/6 10:54:21新增了房间,房间号为:ZT002,房间类型为:总统套房', 'admin', 200, 0, 'admin', '2022-12-06 10:54:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (804, '2022-12-06 10:54:27', 'admin杨俊杰于2022/12/6 10:54:26新增了房间,房间号为:ZT003,房间类型为:总统套房', 'admin', 200, 0, 'admin', '2022-12-06 10:54:27', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (805, '2022-12-06 10:54:32', 'admin杨俊杰于2022/12/6 10:54:31新增了房间,房间号为:ZT004,房间类型为:总统套房', 'admin', 200, 0, 'admin', '2022-12-06 10:54:32', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (806, '2022-12-06 10:54:41', 'admin杨俊杰于2022/12/6 10:54:41新增了房间,房间号为:ZT006,房间类型为:总统套房', 'admin', 200, 0, 'admin', '2022-12-06 10:54:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (807, '2022-12-06 10:54:55', 'admin杨俊杰于2022/12/6 10:54:55新增了房间,房间号为:QL006,房间类型为:情侣套房', 'admin', 200, 0, 'admin', '2022-12-06 10:54:55', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (808, '2022-12-06 10:55:02', 'admin杨俊杰于2022/12/6 10:55:02新增了房间,房间号为:QL008,房间类型为:情侣套房', 'admin', 200, 0, 'admin', '2022-12-06 10:55:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (809, '2022-12-06 10:55:09', 'admin杨俊杰于2022/12/6 10:55:09新增了房间,房间号为:QL1314,房间类型为:情侣套房', 'admin', 200, 0, 'admin', '2022-12-06 10:55:09', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (810, '2022-12-06 10:55:24', 'admin杨俊杰于2022/12/6 10:55:23新增了房间,房间号为:QL999,房间类型为:情侣套房', 'admin', 200, 0, 'admin', '2022-12-06 10:55:24', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (811, '2022-12-06 10:56:11', 'WK010-杨俊杰在2022/12/6 10:56:10位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:56:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (812, '2022-12-06 11:00:12', 'WK010-杨俊杰在2022/12/6 11:00:11位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 11:00:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (813, '2022-12-06 11:00:36', '经理部-总经理-杨俊杰于2022/12/6 11:00:35帮助TS-0571036326进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-12-06 11:00:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (814, '2022-12-06 11:06:48', 'WK010-杨俊杰在2022/12/6 11:06:47位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 11:06:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (815, '2022-12-06 11:08:48', 'WK010-杨俊杰在2022/12/6 11:08:48位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 11:08:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (816, '2022-12-06 11:09:42', 'WK010-杨俊杰在2022/12/6 11:09:42位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 11:09:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (817, '2022-12-06 11:14:04', 'WK010-杨俊杰在2022/12/6 11:14:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 11:14:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (818, '2022-12-06 11:27:10', 'WK010-杨俊杰在2022/12/6 11:27:09位于1.5.0.8版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 11:27:10', NULL, '0001-01-01 00:00:00', '1.5.0.8', NULL); + +-- ---------------------------- +-- Table structure for passporttype +-- ---------------------------- +DROP TABLE IF EXISTS "public"."passporttype"; +CREATE TABLE "public"."passporttype" ( + "PassportId" int4 NOT NULL, + "PassportName" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."passporttype"."PassportId" IS '证件类型ID'; +COMMENT ON COLUMN "public"."passporttype"."PassportName" IS '证件类型名称'; +COMMENT ON COLUMN "public"."passporttype"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."passporttype"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."passporttype"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."passporttype"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."passporttype"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."passporttype" IS '证件类型表'; + +-- ---------------------------- +-- Records of passporttype +-- ---------------------------- +INSERT INTO "public"."passporttype" VALUES (0, '中国居民身份证', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."passporttype" VALUES (1, '港澳通行证', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."passporttype" VALUES (2, '台胞证', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."passporttype" VALUES (3, '军官证', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."passporttype" VALUES (4, '外国护照', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for pdman_db_version +-- ---------------------------- +DROP TABLE IF EXISTS "public"."pdman_db_version"; +CREATE TABLE "public"."pdman_db_version" ( + "DB_VERSION" varchar(256) COLLATE "pg_catalog"."default", + "VERSION_DESC" varchar(1024) COLLATE "pg_catalog"."default", + "CREATED_TIME" varchar(32) COLLATE "pg_catalog"."default" +) +; + +-- ---------------------------- +-- Records of pdman_db_version +-- ---------------------------- + +-- ---------------------------- +-- Table structure for position +-- ---------------------------- +DROP TABLE IF EXISTS "public"."position"; +CREATE TABLE "public"."position" ( + "position_no" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, + "position_name" varchar(150) COLLATE "pg_catalog"."default", + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."position"."position_no" IS '职位编号'; +COMMENT ON COLUMN "public"."position"."position_name" IS '职位名称'; +COMMENT ON COLUMN "public"."position"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."position"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."position"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."position"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."position"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."position" IS '职位表'; + +-- ---------------------------- +-- Records of position +-- ---------------------------- +INSERT INTO "public"."position" VALUES ('P-0004', '监管组长', 0, 'System', '2021-02-03', '', '2022-04-29'); +INSERT INTO "public"."position" VALUES ('P-0002', '经理', 0, 'System', '2021-02-01', 'System', '2021-02-01'); +INSERT INTO "public"."position" VALUES ('P-0003', '职员', 0, 'System', '2021-02-02', 'System', '2021-02-02'); +INSERT INTO "public"."position" VALUES ('P-0005', '监管组员', 0, 'System', '2021-02-04', '', '2022-01-05'); +INSERT INTO "public"."position" VALUES ('P-2021001', '主管', 0, 'admin', '2021-02-17', NULL, '0001-01-01'); +INSERT INTO "public"."position" VALUES ('P-0001', '总经理', 0, 'System', '2021-01-31', '', '2022-04-06'); + +-- ---------------------------- +-- Table structure for reser +-- ---------------------------- +DROP TABLE IF EXISTS "public"."reser"; +CREATE TABLE "public"."reser" ( + "ReserId" varchar COLLATE "pg_catalog"."default" NOT NULL, + "CustoName" varchar COLLATE "pg_catalog"."default", + "CustoTel" varchar(300) COLLATE "pg_catalog"."default", + "ReserWay" varchar COLLATE "pg_catalog"."default", + "ReserRoom" varchar COLLATE "pg_catalog"."default", + "ReserDate" date, + "ReserEndDay" date, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."reser"."ReserId" IS '预约ID '; +COMMENT ON COLUMN "public"."reser"."CustoName" IS '客户名字'; +COMMENT ON COLUMN "public"."reser"."CustoTel" IS '联系方式'; +COMMENT ON COLUMN "public"."reser"."ReserWay" IS '预约方式'; +COMMENT ON COLUMN "public"."reser"."ReserRoom" IS '预约房号'; +COMMENT ON COLUMN "public"."reser"."ReserDate" IS '预约开始日期'; +COMMENT ON COLUMN "public"."reser"."ReserEndDay" IS '预约结束日期'; +COMMENT ON COLUMN "public"."reser"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."reser"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."reser"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."reser"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."reser"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."reser" IS '预约表'; + +-- ---------------------------- +-- Records of reser +-- ---------------------------- + +-- ---------------------------- +-- Table structure for room +-- ---------------------------- +DROP TABLE IF EXISTS "public"."room"; +CREATE TABLE "public"."room" ( + "room_no" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, + "room_type" int2 NOT NULL DEFAULT 0, + "custo_no" varchar(30) COLLATE "pg_catalog"."default", + "check_in_time" date, + "check_out_time" date, + "room_state_id" int2 NOT NULL DEFAULT 0, + "room_rent" numeric(18,2) NOT NULL DEFAULT 0, + "room_deposit" numeric(18,2) DEFAULT 0, + "room_position" varchar(50) COLLATE "pg_catalog"."default" NOT NULL DEFAULT 0, + "delete_mk" int2 NOT NULL DEFAULT 0, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."room"."room_no" IS '房间编号'; +COMMENT ON COLUMN "public"."room"."room_type" IS '房间类型'; +COMMENT ON COLUMN "public"."room"."custo_no" IS '客户编号'; +COMMENT ON COLUMN "public"."room"."check_in_time" IS '入住时间'; +COMMENT ON COLUMN "public"."room"."check_out_time" IS '退房时间'; +COMMENT ON COLUMN "public"."room"."room_state_id" IS '房间状态'; +COMMENT ON COLUMN "public"."room"."room_rent" IS '房屋租金'; +COMMENT ON COLUMN "public"."room"."room_deposit" IS '房屋押金'; +COMMENT ON COLUMN "public"."room"."room_position" IS '房屋位置'; +COMMENT ON COLUMN "public"."room"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."room"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."room"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."room"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."room"."datachg_date" IS '资料更新时间'; + +-- ---------------------------- +-- Records of room +-- ---------------------------- +INSERT INTO "public"."room" VALUES ('BD002', 0, NULL, NULL, NULL, 0, 300.00, 100.00, 'A层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('BD003', 0, NULL, NULL, NULL, 0, 300.00, 100.00, 'A层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('BD004', 0, NULL, NULL, NULL, 0, 300.00, 100.00, 'A层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('BD005', 0, NULL, NULL, NULL, 0, 300.00, 100.00, 'A层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('BD006', 0, NULL, NULL, NULL, 0, 300.00, 100.00, 'A层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('BD007', 0, NULL, NULL, NULL, 0, 300.00, 100.00, 'A层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('BD008', 0, NULL, NULL, NULL, 0, 300.00, 100.00, 'A层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('BD009', 0, NULL, NULL, NULL, 0, 300.00, 100.00, 'A层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('BD010', 0, NULL, NULL, NULL, 0, 300.00, 100.00, 'A层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('BS010', 1, NULL, NULL, NULL, 0, 425.00, 120.00, 'B层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('BS005', 1, NULL, NULL, NULL, 0, 425.00, 120.00, 'B层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('ZT005', 5, NULL, NULL, NULL, 0, 1080.00, 200.00, 'D层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('ZT001', 5, NULL, NULL, NULL, 0, 1080.00, 200.00, 'D层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('ZT002', 5, NULL, NULL, NULL, 0, 1080.00, 200.00, 'D层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('ZT003', 5, NULL, NULL, NULL, 0, 1080.00, 200.00, 'D层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('ZT004', 5, NULL, NULL, NULL, 0, 1080.00, 200.00, 'D层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('ZT006', 5, NULL, NULL, NULL, 0, 1080.00, 200.00, 'D层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('QL006', 4, NULL, NULL, NULL, 0, 845.00, 180.00, 'C层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('QL008', 4, NULL, NULL, NULL, 0, 845.00, 180.00, 'C层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('QL1314', 4, NULL, NULL, NULL, 0, 845.00, 180.00, 'C层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('QL999', 4, NULL, NULL, NULL, 0, 845.00, 180.00, 'C层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('BD001', 0, 'TS-0571036326', '2022-12-06', NULL, 1, 300.00, 100.00, 'A层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); + +-- ---------------------------- +-- Table structure for roomstate +-- ---------------------------- +DROP TABLE IF EXISTS "public"."roomstate"; +CREATE TABLE "public"."roomstate" ( + "RoomStateId" int4 NOT NULL, + "RoomState" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."roomstate"."RoomStateId" IS '房间状态ID'; +COMMENT ON COLUMN "public"."roomstate"."RoomState" IS '房间状态名称'; +COMMENT ON COLUMN "public"."roomstate"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."roomstate"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."roomstate"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."roomstate"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."roomstate"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."roomstate" IS '房间状态表'; + +-- ---------------------------- +-- Records of roomstate +-- ---------------------------- +INSERT INTO "public"."roomstate" VALUES (0, '空房', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."roomstate" VALUES (1, '已住', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."roomstate" VALUES (2, '维修中', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."roomstate" VALUES (3, '脏房', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."roomstate" VALUES (4, '已预约', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for roomtype +-- ---------------------------- +DROP TABLE IF EXISTS "public"."roomtype"; +CREATE TABLE "public"."roomtype" ( + "RoomType" int4 NOT NULL, + "RoomName" varchar(10) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."roomtype"."RoomType" IS '房间类型ID'; +COMMENT ON COLUMN "public"."roomtype"."RoomName" IS '房间类型名称'; +COMMENT ON COLUMN "public"."roomtype"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."roomtype"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."roomtype"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."roomtype"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."roomtype"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."roomtype" IS '房间类型表'; + +-- ---------------------------- +-- Records of roomtype +-- ---------------------------- +INSERT INTO "public"."roomtype" VALUES (0, '标准单人间', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."roomtype" VALUES (1, '标准双人间', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."roomtype" VALUES (2, '豪华单人间', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."roomtype" VALUES (3, '豪华双人间', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."roomtype" VALUES (4, '情侣套房', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."roomtype" VALUES (5, '总统套房', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for sellthing +-- ---------------------------- +DROP TABLE IF EXISTS "public"."sellthing"; +CREATE TABLE "public"."sellthing" ( + "SellNo" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, + "SellName" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, + "SellPrice" numeric(10,2) NOT NULL, + "format" varchar(20) COLLATE "pg_catalog"."default", + "Stock" numeric(16,2) NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."sellthing"."SellNo" IS '商品编号'; +COMMENT ON COLUMN "public"."sellthing"."SellName" IS '商品名称'; +COMMENT ON COLUMN "public"."sellthing"."SellPrice" IS '商品价格'; +COMMENT ON COLUMN "public"."sellthing"."format" IS '规格型号'; +COMMENT ON COLUMN "public"."sellthing"."Stock" IS '库存数量'; +COMMENT ON COLUMN "public"."sellthing"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."sellthing"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."sellthing"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."sellthing"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."sellthing"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."sellthing" IS '商品表'; + +-- ---------------------------- +-- Records of sellthing +-- ---------------------------- +INSERT INTO "public"."sellthing" VALUES ('ST-20210020', '测试', 243444.00, '阿斯顿', 10.00, 1, 'admin', '2021-02-15', 'admin', '2021-02-15'); +INSERT INTO "public"."sellthing" VALUES ('ST-20210027', 'BIG大桶方便面', 8.50, '/桶', 50.00, 1, 'admin', '2021-02-16', 'admin', '2021-02-16'); +INSERT INTO "public"."sellthing" VALUES ('ST-20210055', '测试数据(勿选)', 9999999.99, '测试数据', 9.00, 0, 'admin', '2021-05-29', 'WK010', '2021-07-19'); +INSERT INTO "public"."sellthing" VALUES ('ST-20210061', '测试勿选', 9999999.00, '测试', 4.00, 0, 'admin', '2021-05-30', 'WK010', '2021-06-06'); +INSERT INTO "public"."sellthing" VALUES ('ST016', '牙刷', 10.00, '/个', 1000.00, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."sellthing" VALUES ('ST398', '拉菲', 1080.00, '/支', 989.00, 0, NULL, NULL, 'WK010', '2021-03-11'); +INSERT INTO "public"."sellthing" VALUES ('ST851', 'T仔', 90.00, '/个', 29980.00, 0, NULL, NULL, 'WK010', '2021-02-18'); +INSERT INTO "public"."sellthing" VALUES ('ST005', '乐事薯片(原味)', 20.00, '/包(145g)', 934.00, 0, NULL, NULL, 'WK010', '2022-02-26'); +INSERT INTO "public"."sellthing" VALUES ('ST012', '火腿肠', 10.00, '/包(40g)', 990.00, 0, NULL, NULL, 'WK010', '2022-02-26'); +INSERT INTO "public"."sellthing" VALUES ('ST013', '毛巾', 10.00, '/条', 996.00, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."sellthing" VALUES ('ST009', '三只松鼠夏威夷坚果', 40.00, '/袋(160g)', 1483.00, 0, NULL, NULL, 'WK010', '2021-05-05'); +INSERT INTO "public"."sellthing" VALUES ('ST003', '可口可乐', 10.00, '/瓶(1.5L)', 965.00, 0, NULL, NULL, 'WK010', '2021-04-17'); +INSERT INTO "public"."sellthing" VALUES ('ST015', '香皂', 25.00, '/个(145g)', 995.00, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."sellthing" VALUES ('ST010', '蟹味瓜子仁', 30.00, '/袋', 1018.00, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."sellthing" VALUES ('ST008', '避孕套', 10.00, '/盒', 100.00, 0, NULL, NULL, 'WK010', '2021-04-17'); +INSERT INTO "public"."sellthing" VALUES ('ST022', '芬达', 3.50, '/瓶(1.5L)', 100.00, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."sellthing" VALUES ('ST014', '羊毛绒浴巾', 12.50, '/条', 300.00, 0, NULL, NULL, 'WK010', '2021-04-17'); +INSERT INTO "public"."sellthing" VALUES ('ST007', '雪碧', 2.50, '/罐', 150.00, 0, NULL, NULL, 'WK010', '2021-04-17'); +INSERT INTO "public"."sellthing" VALUES ('ST-202200107', '避孕药', 15.00, '/盒', 20.00, 0, 'admin', '2022-04-15', NULL, '0001-01-01'); +INSERT INTO "public"."sellthing" VALUES ('ST677', '82年拉菲', 30000.00, '/瓶', 6.00, 0, NULL, NULL, 'WK010', '2022-01-30'); +INSERT INTO "public"."sellthing" VALUES ('ST017', '山东脆枣', 20.00, '/盒(1斤)', 8.00, 0, NULL, NULL, 'WK010', '2021-07-17'); +INSERT INTO "public"."sellthing" VALUES ('ST019', '扑克牌', 3.00, '/副', 50.00, 0, NULL, NULL, 'WK010', '2021-04-17'); +INSERT INTO "public"."sellthing" VALUES ('ST011', '青岛啤酒', 3.00, '/瓶', 150.00, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."sellthing" VALUES ('ST020', '哇哈哈矿泉水', 3.00, '/瓶', 198.00, 0, NULL, NULL, 'WK010', '2021-07-17'); +INSERT INTO "public"."sellthing" VALUES ('ST983', '白象方便面', 5.00, '/桶', 58.00, 0, NULL, NULL, 'WK010', '2021-03-11'); +INSERT INTO "public"."sellthing" VALUES ('ST-2021009', '老婆饼', 15.00, '/盒(8块装)', 29.00, 0, 'admin', '2021-02-15', 'WK010', '2022-01-30'); +INSERT INTO "public"."sellthing" VALUES ('ST021', '三只松鼠零食大礼包', 299.00, '/礼包', 2993.00, 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for sextype +-- ---------------------------- +DROP TABLE IF EXISTS "public"."sextype"; +CREATE TABLE "public"."sextype" ( + "sexId" int4 NOT NULL, + "sexName" varchar(15) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."sextype"."sexId" IS '性别ID'; +COMMENT ON COLUMN "public"."sextype"."sexName" IS '性别名称'; +COMMENT ON COLUMN "public"."sextype"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."sextype"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."sextype"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."sextype"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."sextype"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."sextype" IS '性别类型表'; + +-- ---------------------------- +-- Records of sextype +-- ---------------------------- +INSERT INTO "public"."sextype" VALUES (0, '女', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."sextype" VALUES (1, '男', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for uploadinfo +-- ---------------------------- +DROP TABLE IF EXISTS "public"."uploadinfo"; +CREATE TABLE "public"."uploadinfo" ( + "NoticeNo" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, + "Noticetheme" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, + "NoticeType" varchar(100) COLLATE "pg_catalog"."default", + "NoticeTime" timestamp(6) NOT NULL, + "NoticeContent" varchar(8000) COLLATE "pg_catalog"."default" NOT NULL, + "NoticeClub" varchar(25) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."uploadinfo"."NoticeNo" IS '公告编号'; +COMMENT ON COLUMN "public"."uploadinfo"."Noticetheme" IS '公告主题'; +COMMENT ON COLUMN "public"."uploadinfo"."NoticeType" IS '公告类型'; +COMMENT ON COLUMN "public"."uploadinfo"."NoticeTime" IS '发布日期'; +COMMENT ON COLUMN "public"."uploadinfo"."NoticeContent" IS '公告正文'; +COMMENT ON COLUMN "public"."uploadinfo"."NoticeClub" IS '发文部门'; +COMMENT ON COLUMN "public"."uploadinfo"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."uploadinfo"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."uploadinfo"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."uploadinfo"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."uploadinfo"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."uploadinfo" IS '公告表'; + +-- ---------------------------- +-- Records of uploadinfo +-- ---------------------------- +INSERT INTO "public"."uploadinfo" VALUES ('UP-202204004', '', NULL, '2021-02-13 00:00:00', '

 

', 'D-001', 0, 'admin', '2022-04-29', NULL, '0001-01-01'); + +-- ---------------------------- +-- Table structure for user_log +-- ---------------------------- +DROP TABLE IF EXISTS "public"."user_log"; +CREATE TABLE "public"."user_log" ( + "id" int4 NOT NULL, + "user_key" varchar(100) COLLATE "pg_catalog"."default", + "user_token" varchar(255) COLLATE "pg_catalog"."default", + "datains_time" timestamp(6) +) +; +COMMENT ON TABLE "public"."user_log" IS '用户登录信息表'; + +-- ---------------------------- +-- Records of user_log +-- ---------------------------- + +-- ---------------------------- +-- Table structure for userinfo +-- ---------------------------- +DROP TABLE IF EXISTS "public"."userinfo"; +CREATE TABLE "public"."userinfo" ( + "CustoNo" varchar COLLATE "pg_catalog"."default" NOT NULL, + "CustoName" varchar COLLATE "pg_catalog"."default" NOT NULL, + "CustoSex" int4 NOT NULL, + "CustoTel" varchar COLLATE "pg_catalog"."default" NOT NULL, + "PassportType" int4 NOT NULL, + "CustoID" varchar COLLATE "pg_catalog"."default" NOT NULL, + "CustoAdress" varchar COLLATE "pg_catalog"."default", + "CustoBirth" date NOT NULL, + "CustoType" int4 NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."userinfo"."CustoNo" IS '用户编号'; +COMMENT ON COLUMN "public"."userinfo"."CustoName" IS '用户名称'; +COMMENT ON COLUMN "public"."userinfo"."CustoSex" IS '用户性别'; +COMMENT ON COLUMN "public"."userinfo"."CustoTel" IS '用户电话'; +COMMENT ON COLUMN "public"."userinfo"."PassportType" IS '证照类型'; +COMMENT ON COLUMN "public"."userinfo"."CustoID" IS '证件号码'; +COMMENT ON COLUMN "public"."userinfo"."CustoAdress" IS '居住地址'; +COMMENT ON COLUMN "public"."userinfo"."CustoBirth" IS '出生日期'; +COMMENT ON COLUMN "public"."userinfo"."CustoType" IS '客户类型'; +COMMENT ON COLUMN "public"."userinfo"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."userinfo"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."userinfo"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."userinfo"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."userinfo"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."userinfo" IS '用户信息表'; + +-- ---------------------------- +-- Records of userinfo +-- ---------------------------- +INSERT INTO "public"."userinfo" VALUES ('TS585256153553', '森田結翔', 1, '+86 755-265-8399', 2, '976966744592142540', 'No.43 building, 92 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1991-10-21', 0, 0, 'yuimori00', '2001-09-05', 'ymorit', '2017-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS811038643761', '韩杰宏', 1, '+1 213-444-8145', 0, '160464972549229670', '526 Grape Street Apt 43, Los Angeles, CA 90002, United States', '1992-01-15', 0, 0, 'jiehh5', '2002-04-26', 'hajiehong15', '2005-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS596787251494', '姚榮發', 0, '+44 (161) 807 0258', 1, '203039270910490117', 'No.13 Main building, 24 Sackville St, Manchester, M1 3BB, United Kingdom', '1995-11-15', 0, 0, 'yewingfat', '2009-01-26', 'wfyeow', '2017-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS015253323658', '谷心穎', 1, '+1 718-042-3912', 3, '022088717186769918', '23 Nostrand Ave Apt 11, Brooklyn, NY 11216, United States', '1985-08-20', 0, 0, 'koo9', '2019-10-14', 'koosumwing', '2013-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS426905526052', '彭云熙', 1, '+81 3-2792-5250', 1, '537393932597402120', '46-kai, 3-15-19 Ginza, Chuo-ku, Tokyo, Japan', '1986-07-18', 0, 0, 'peyunxi', '2016-11-27', 'pengyu1212', '2009-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS702776546498', '劉頴璇', 0, '+86 142-6168-4176', 0, '209765272174610823', '中国深圳龙岗区布吉镇西环路684号44栋', '1991-05-30', 0, 0, 'wslau7', '2008-12-14', 'wingsuenla', '2018-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS-20220089', '古河早苗', 0, '', 4, '', '团子商店街', '1980-07-08', 0, 0, 'WK010', '2022-02-01', NULL, '0001-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS-20220090', '古河秋生', 1, '', 4, '', '团子商店街', '1980-02-05', 0, 0, 'WK010', '2022-02-01', NULL, '0001-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS-20210078', '阿洛', 1, '', 0, '', '广东省茂名市信宜县', '1988-07-20', 3, 0, '', '2021-10-20', 'WK010', '2022-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS267401616162', '吴岚', 1, '+86 166-5702-2951', 3, '730614680470425584', 'No.24 building, 273 Shanhu Rd, Dongguan, China', '1988-12-29', 0, 0, 'lan6', '2010-08-10', 'lanwu', '2006-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS070900382318', '姚明', 0, '+86 20-194-9902', 0, '577863450914082902', '中国广州市越秀区中山二路296号30栋', '1991-03-30', 0, 0, 'yeowming1019', '2001-12-28', 'mingye1', '2004-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS732618060709', 'Katherine Smith', 1, '+81 66-519-7434', 2, '492308242519003040', '日本おおさかし西成区出城一丁目1番19号33階', '1991-03-12', 0, 0, 'ksmith', '2016-04-27', 'smithkath10', '2016-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS350564805154', '郭永權', 0, '+86 193-8111-1879', 4, '431156855617068334', '中国深圳福田区景田东一街219号10栋', '1987-06-26', 0, 0, 'kwokwingkuen1021', '2007-09-27', 'wingkw', '2000-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS791977570647', '福田架純', 0, '+86 181-4110-0426', 0, '499013912291471526', 'Room 42, CR Building, 282 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1991-06-10', 0, 0, 'kasumifuku', '2018-08-23', 'kasufukuda48', '2000-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS213386138456', '斉藤明菜', 0, '+44 7299 312402', 4, '026825493441475727', 'No.14 Main building, 891 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1990-02-24', 0, 0, 'as40', '2019-09-30', 'saito2017', '2012-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS348874362328', 'Emma Reyes', 1, '+1 213-604-4828', 1, '498580421107011953', '287 Sky Way Apt 24, Los Angeles, CA 90043, United States', '1989-05-11', 0, 0, 'ereye', '2016-11-15', 'remma', '2015-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS586862078217', 'Benjamin Medina', 1, '+86 28-220-7977', 3, '917833406864635370', '中国成都市成华区双庆路315号19室', '1991-06-08', 0, 0, 'benjaminmedina', '2003-06-07', 'mebenja', '2010-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS198098249721', '湯霆鋒', 1, '+81 11-727-4845', 4, '237084184908952086', 'Rm. 36, 5-19-12 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1997-05-30', 0, 0, 'tongtingfung5', '2018-01-15', 'tingfungtong', '2000-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS801073356899', '刘致远', 0, '+86 755-748-5973', 3, '451712735700182022', '中国深圳罗湖区清水河一路142号23栋', '1997-11-06', 0, 0, 'liu1', '2015-06-16', 'zli', '2001-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS410358513022', 'Leslie Black', 0, '+1 614-478-0048', 2, '719774077695033017', '831 Wicklow Road Suite 9, Columbus, GA 43204, United States', '1991-06-01', 0, 0, 'blesl', '2013-09-22', 'blacklesli1', '2012-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS382146557353', 'Clarence Davis', 0, '+86 755-5881-4902', 1, '418406042100915828', '中国深圳福田区景田东一街10号34栋', '1990-08-23', 0, 0, 'daviscla10', '2014-02-16', 'clardavis', '2005-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS729114864467', 'Joshua Hernandez', 0, '+44 (161) 208 7184', 2, '823847333229076678', 'Flat 14, 521 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-09-06', 0, 0, 'hernandezj', '2021-05-14', 'hernajos', '2003-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS399000956927', 'Randy Spencer', 1, '+86 760-464-0608', 3, '643509211305250389', 'No.25 building, 318 Lefeng 6th Rd, Zhongshan, China', '1992-04-12', 0, 0, 'sran831', '2019-01-02', 'spencer1130', '2019-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS299480184061', '車德華', 1, '+86 760-157-5629', 3, '023110169950729640', 'Room 45, CR Building, 146 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1994-07-31', 0, 0, 'chtw5', '2002-03-14', 'twc', '2000-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS623951355526', '何致远', 1, '+44 5414 471350', 3, '214168478174743105', 'No.22 Main building, 461 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1990-02-03', 0, 0, 'zhiyuanhe6', '2001-03-24', 'hezhiy', '2014-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS257740627541', 'Charlotte Sullivan', 0, '+44 (116) 514 0070', 1, '289087105319936856', 'No.27 Main building, 658 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1995-02-07', 0, 0, 'charlotte61', '2001-05-18', 'sullivancha66', '2020-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS521404137184', '竹内美咲', 1, '+44 5875 123541', 4, '722565115806775287', 'No.24 Main building, 290 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1995-08-15', 0, 0, 'misaki1', '2021-12-09', 'misakitakeuchi4', '2001-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS195514131202', '太田凛', 0, '+44 (116) 477 4928', 4, '638999800552912158', 'Unit 6, Oxford Eco Centre, 553 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1992-09-21', 0, 0, 'rinot2', '2004-03-04', 'rinota', '2021-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS150034729320', 'Tiffany Gonzales', 1, '+1 718-409-7733', 2, '617260751165253886', '455 Flatbush Ave Apt 29, Brooklyn, NY 11225, United States', '1986-10-05', 0, 0, 'gonzales2', '2007-08-15', 'gonzalestiffa', '2004-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS334888848057', '汪晓明', 0, '+86 171-8557-2988', 0, '311648618289305268', '48F, 494 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1988-02-28', 0, 0, 'xiaomingw', '2015-11-02', 'xiaomingwang', '2008-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS639091325995', '中川光', 0, '+86 174-8790-7873', 2, '763994145787248545', 'Room 27, CR Building, 70 Hongqiao Rd., Xu Hui District, Shanghai, China', '1985-05-18', 0, 0, 'nakagawahikar', '2010-02-24', 'hikaru8', '2001-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS597829422113', 'Rosa Hicks', 1, '+1 838-853-3504', 3, '993068281917893235', '312 Broadway Suite 50, Albany, NY 12207, United States', '1988-06-03', 0, 0, 'hicks63', '2005-07-17', 'rosa10', '2003-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS694176429778', '曹朝偉', 0, '+81 80-0411-9796', 2, '303478487543215159', '日本札幌白石区菊水三条五丁目2番14号9階', '1997-05-11', 0, 0, 'cwcho5', '2022-01-12', 'chochi', '2012-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS768890329079', '宣慧嫻', 0, '+81 70-6681-0773', 4, '061259543905519100', '日本おおさかし平野区加美東四丁目9番11号22号室', '1991-03-19', 0, 0, 'waihanhsuan4', '2013-10-21', 'hwh1218', '2017-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS216604156001', '宋詩涵', 1, '+86 153-0408-8370', 3, '452060955977661189', '中国成都市成华区玉双路6号481号36室', '1992-07-17', 0, 0, 'shihanso3', '2011-09-21', 'shihanson5', '2005-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS963197354824', '市川美咲', 0, '+81 11-615-4337', 3, '557861955162741045', '39-kai, 6-1-4, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-08-05', 0, 0, 'ichikawam821', '2007-03-07', 'misakiichikawa1987', '2014-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS520159957916', '大野涼太', 1, '+86 169-7295-8221', 2, '848312202355930703', '中国北京市朝阳区三里屯路532号45号楼', '1987-01-09', 0, 0, 'ono1223', '2018-02-16', 'ryotono1', '2003-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS518383668917', '谷安娜', 0, '+86 21-6174-6887', 2, '024123930820471402', '中国上海市浦东新区橄榄路754号7楼', '1993-01-25', 0, 0, 'kooon', '2001-10-20', 'koon', '2011-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS040643678095', 'Anne Bell', 0, '+86 10-7897-4605', 4, '852045692747035773', '中国北京市海淀区清河中街68号869号50号楼', '1994-06-25', 0, 0, 'bella', '2016-07-04', 'annebell', '2008-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS434172036062', 'Harold Stephens', 1, '+81 70-4872-1312', 2, '440666652928425721', 'Rm. 7, 2-5-15 Chitose, Atsuta Ward, Nagoya, Japan', '1999-02-04', 0, 0, 'harstep', '2012-07-11', 'stephens60', '2005-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS204975787272', '吴宇宁', 1, '+81 52-821-7446', 2, '937531407738285556', '21F, 17 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1987-08-20', 0, 0, 'wuy', '2005-04-28', 'wu809', '2011-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS179116962854', '麥青雲', 0, '+86 20-3989-3259', 4, '511776403463790069', 'Room 4, 919 Xiaoping E Rd, Baiyun , Guangzhou, China', '1985-04-06', 0, 0, 'chingwanmak9', '2011-04-03', 'chingwan1963', '2021-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS168589854570', '柴田樹', 1, '+86 20-470-7235', 2, '062760012655964210', '中国广州市白云区机场路棠苑街五巷236号18号楼', '1996-08-14', 0, 0, 'shiits', '2020-11-08', 'itsukishibata', '2011-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS205491479117', '钱致远', 0, '+86 755-1620-5744', 2, '502066216949730821', '中国深圳罗湖区田贝一路340号华润大厦14室', '1991-07-23', 0, 0, 'qianzhiyuan', '2020-12-13', 'zhqian907', '2019-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS890216047341', '謝秀文', 0, '+44 7888 802664', 3, '573126497309468063', 'Unit 2, Oxford Eco Centre, 204 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1989-01-30', 0, 0, 'tse9', '2018-09-07', 'saumants4', '2017-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS562790158552', '鈴木蒼士', 0, '+44 7364 514534', 2, '127527748660346544', 'No.7 Main building, 166 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-03-11', 0, 0, 'suzuki7', '2006-11-29', 'aoshisuzuki', '2021-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS064310800840', 'Francis Powell', 1, '+81 80-1124-8416', 0, '596811850795407648', '13F, 5-2-6 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1989-03-03', 0, 0, 'francispowell', '2015-08-10', 'frapowe', '2010-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS538113731906', '姜宇宁', 1, '+81 70-6297-2658', 2, '130488298755592137', '35-kai, 14 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1995-12-17', 0, 0, 'yjiang630', '2008-03-06', 'jiangyun', '2006-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS076240347180', 'Carrie Payne', 0, '+81 90-6108-3229', 3, '926959564712766005', '37-kai, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1988-11-27', 0, 0, 'cap321', '2000-10-16', 'paynec1984', '2014-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS637654339503', '程杰宏', 1, '+81 90-4975-7752', 3, '720302781725394694', '日本なごやし瑞穂区河岸町四丁目20番6号27階', '1991-11-06', 0, 0, 'chengjiehong1025', '2003-12-16', 'chengj', '2018-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS034766436621', '中森詩乃', 1, '+81 11-782-2145', 1, '219712155114897024', '日本札幌白石区菊水三条五丁目4番3号6階', '1993-07-08', 0, 0, 'nakamorishino', '2011-06-05', 'nashino', '2002-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS911014385228', '宣浩然', 0, '+86 135-2002-0840', 3, '726619123520776245', '中国中山乐丰六路949号19栋', '1997-05-17', 0, 0, 'hyh', '2018-11-18', 'hyhsuan3', '2011-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS104482791384', '谷詠詩', 1, '+86 20-631-1902', 0, '183738680875878287', '中国广州市海珠区江南西路713号华润大厦33室', '1985-03-11', 0, 0, 'wingszekoo', '2007-12-15', 'koo6', '2010-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS572994382798', '森田桜', 1, '+1 614-871-2425', 2, '489607435637156148', '28 East Alley Suite 32, Columbus, GA 43201, United States', '1998-06-09', 0, 0, 'sakumorita8', '2020-07-15', 'msaku416', '2016-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS515340058576', 'Frances Peterson', 0, '+1 838-954-9019', 1, '995119807195334660', '485 Central Avenue Suite 29, Albany, NY 12205, United States', '1986-02-06', 0, 0, 'francpe', '2018-06-20', 'peterson1129', '2004-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS921279455132', '戴曉彤', 1, '+86 167-7759-0017', 4, '037392790187627482', 'Room 39, CR Building, 912 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1990-10-15', 0, 0, 'dai8', '2006-03-04', 'dai616', '2004-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS904360457177', '方岚', 1, '+86 177-5858-1077', 2, '456054350220593626', '中国中山乐丰六路807号14号楼', '1990-06-01', 0, 0, 'lan827', '2005-03-12', 'fanla', '2004-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS298298285859', 'Marcus Johnson', 0, '+44 (161) 542 7634', 1, '553251824238043565', 'Unit 7, Oxford Eco Centre, 706 Portland St, Manchester, M1 3LA, United Kingdom', '1994-07-09', 0, 0, 'marcusjohn', '2004-05-15', 'johnsonmarcus', '2013-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS445311353071', '雷慧敏', 1, '+86 143-8201-8875', 0, '615820042799552981', '中国上海市浦东新区橄榄路977号华润大厦32室', '1985-12-15', 0, 0, 'wmloui', '2007-11-17', 'wailoui14', '2004-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS103813792923', '高詩涵', 1, '+81 66-498-8306', 1, '480731819281868386', '日本おおさかし東住吉区東田辺三丁目27番7号13階', '1989-04-28', 0, 0, 'gaoshihan', '2008-11-21', 'shihanga', '2001-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS916764747417', 'Cheryl Evans', 0, '+86 180-3570-7853', 2, '914585671418247503', '中国中山乐丰六路753号7楼', '1994-05-12', 0, 0, 'ce64', '2003-06-10', 'evacheryl10', '2003-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS747661741614', 'Harold Schmidt', 1, '+1 718-921-7172', 0, '777433863958280514', '432 Nostrand Ave Apartment 21, Brooklyn, NY 11216, United States', '1989-03-12', 0, 0, 'sh1104', '2011-04-11', 'haroldschmidt', '2001-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS232434067577', '吉田美咲', 0, '+86 132-5434-4674', 0, '023957756508755875', 'Room 8, No. 531, Shuangqing Rd, Chenghua District, Chengdu, China', '1987-11-30', 0, 0, 'misakiy', '2020-06-01', 'misaki8', '2016-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS595321297808', '後藤凛', 1, '+81 80-6509-0929', 1, '601109962880588872', '日本ならし大和郡山市本庄町一丁目1番13号10階', '1995-08-23', 0, 0, 'gori', '2001-08-31', 'rin64', '2015-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS600205469055', '上田葵', 0, '+81 3-2461-3214', 2, '658884722663748458', 'Rm. 17, 1-6-9, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1993-03-13', 0, 0, 'uea17', '2007-01-08', 'uedaaoi', '2013-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS384440674855', 'Jamie Walker', 0, '+81 74-361-0969', 2, '152143063613807886', '2F, 3-9-1 Gakuenminami, Nara, Japan', '1986-07-10', 0, 0, 'jamiewalk9', '2011-07-14', 'jamiwalker', '2001-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS059733215470', '罗震南', 1, '+81 70-7104-6991', 1, '577508698421944837', '日本なごやし熱田区千年二丁目5番11号4号室', '1998-10-29', 0, 0, 'zhennanluo', '2009-05-14', 'luo1127', '2013-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS276056206010', '杉山紗良', 0, '+81 3-0575-3838', 2, '302751997046032508', '12-kai, 2-3-19 Yoyogi, Shibuya-ku, Tokyo, Japan', '1996-10-16', 0, 0, 'sasugiyama1217', '2013-11-20', 'sugiyama1', '2008-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS505738486294', '萬詠詩', 0, '+86 133-3085-4867', 0, '229386360939394764', 'Room 10, CR Building, 46 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1985-06-01', 0, 0, 'wsmeng1968', '2015-03-11', 'wsmeng', '2013-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS750509021701', '黎安琪', 1, '+81 3-5596-7872', 2, '858119541039199175', '日本東京渋谷区代々木二丁目3番20号32階', '1992-12-10', 0, 0, 'anqi1216', '2014-06-19', 'lianqi', '2008-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS788544112881', 'Miguel Hernandez', 1, '+86 10-554-7717', 0, '447353024327289852', '中国北京市海淀区清河中街68号55号23室', '1988-06-01', 0, 0, 'mhernandez', '2005-08-15', 'hmig105', '2011-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS279740689516', '林榮發', 0, '+86 760-4650-6404', 4, '908195472283974504', 'No.16 building, 852 Lefeng 6th Rd, Zhongshan, China', '1986-08-11', 0, 0, 'wingfat7', '2021-01-21', 'wflam', '2009-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS130590264918', '杉山光', 1, '+86 20-8179-9515', 0, '533037636167932665', '中国广州市白云区小坪东路202号7楼', '1992-12-19', 0, 0, 'sugiyamahikaru', '2000-05-23', 'hsugiyama', '2009-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS662070015429', 'Marvin Stewart', 1, '+86 10-1276-0893', 2, '692366137563635465', 'Room 50, 689 Yueliu Rd, Fangshan District, Beijing, China', '1993-03-16', 0, 0, 'stewm10', '2019-10-16', 'stewartma', '2015-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS404764704984', 'Martha King', 1, '+81 80-2802-7776', 1, '617538582267310658', '日本ならし西大寺赤田町一丁目7番3号18階', '1986-12-24', 0, 0, 'kingmartha3', '2005-02-10', 'king802', '2000-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS611433463877', '上野明菜', 0, '+86 145-5557-0420', 2, '404595761740135816', '中国中山天河区大信商圈大信南路682号5楼', '1985-07-02', 0, 0, 'uenoa', '2017-06-21', 'ueakina', '2002-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS316998304522', 'Jacob Hill', 1, '+86 196-3134-7495', 1, '199077549997049650', 'Room 15, 100 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1999-02-02', 0, 0, 'jhil324', '2008-08-11', 'jhill', '2018-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS435849444973', 'Tracy Stephens', 1, '+44 (1865) 95 3052', 2, '328669405602482900', 'Unit 12, Oxford Eco Centre, 562 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1986-08-28', 0, 0, 'stetracy1123', '2009-06-05', 'stephenstracy8', '2019-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS798408476526', '山崎蓮', 0, '+44 5066 777978', 2, '739102982421880463', 'Block 20, 641 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1990-02-10', 0, 0, 'yre', '2002-05-04', 'renyamaz3', '2000-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS086926116276', 'Carl Nguyen', 0, '+81 70-0072-8439', 4, '818438384792469994', '日本おおさかし東住吉区東田辺三丁目27番7号35号室', '1986-01-15', 0, 0, 'carlng', '2008-08-12', 'ngucarl', '2015-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS946057137788', '酒井一輝', 0, '+86 10-903-5091', 0, '089598801185999381', 'Room 39, 371 West Chang''an Avenue, Xicheng District, Beijing, China', '1988-11-04', 0, 0, 'ikkisa1', '2000-05-27', 'ikki52', '2005-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS257149254963', '高木美月', 0, '+81 90-7094-3037', 1, '882744916289491246', '日本東京千代田区丸の内一丁目6番19号18階', '1989-06-30', 0, 0, 'mtaka', '2008-09-03', 'mitst', '2018-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS482197799731', '容慧珊', 1, '+81 74-447-9090', 1, '179039572397258985', '日本ならし西大寺赤田町一丁目7番10号42階', '1995-11-12', 0, 0, 'waisanyung2011', '2017-12-15', 'waiyung10', '2008-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS763905825346', '菅原瑛太', 1, '+81 80-4302-6901', 2, '566621964623274283', '37F, 2-3-17 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-01-19', 0, 0, 'eitasugawara', '2011-08-17', 'eitasug10', '2014-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS567605229847', '郭詠詩', 1, '+44 5751 044242', 2, '061823422468811434', 'No.15 Main building, 86 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1993-01-05', 0, 0, 'wskw6', '2008-10-01', 'wskw70', '2012-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS855576315904', '小野結翔', 0, '+1 312-149-4810', 0, '980253162213439686', '246 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1995-05-26', 0, 0, 'onoy2', '2016-03-27', 'oyuito', '2000-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS097040704068', '黄璐', 1, '+81 3-0866-2570', 4, '289112339328461192', '日本東京千代田区丸の内一丁目6番17号45号室', '1993-05-08', 0, 0, 'huanglu', '2001-03-27', 'huanglu407', '2004-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS568028039881', 'Douglas Roberts', 0, '+86 158-2113-1464', 4, '245394241325178265', 'Room 46, 8 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1997-06-25', 0, 0, 'dour617', '2001-06-25', 'roberts731', '2018-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS399448768543', '戴心穎', 0, '+86 186-4698-6509', 2, '346321645071453323', 'No.9 building, 327 Xiaoping E Rd, Baiyun , Guangzhou, China', '1991-04-27', 0, 0, 'swdai1', '2019-08-10', 'swdai', '2020-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS321708736698', '村田光', 1, '+44 7869 689677', 3, '079467946578626231', 'No.33 Main building, 544 Hanover St, Liverpool, L1 4AF, United Kingdom', '1998-09-25', 0, 0, 'hikarmurata2', '2020-10-24', 'muratahik', '2005-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS737472918635', '有村葉月', 1, '+81 66-400-1055', 4, '757138908508356555', '38-kai, 2-1-16 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1986-09-04', 0, 0, 'arimura3', '2015-10-16', 'hazuki9', '2004-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS410955089884', 'Kathleen Smith', 1, '+81 52-892-4957', 3, '067998454837901849', '日本なごやし守山区瀬古東二丁目171番16号8階', '1985-06-18', 0, 0, 'smk6', '2018-01-20', 'ksm', '2005-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS471764007107', '萬曉彤', 1, '+86 769-582-8896', 0, '028783796087282874', '中国东莞环区南街二巷208号11号楼', '1990-06-05', 0, 0, 'hiutung608', '2021-12-08', 'mehiutung', '2010-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS836122626542', 'Nicole Campbell', 1, '+86 138-3705-5294', 2, '689928214140692964', '中国上海市闵行区宾川路551号华润大厦9室', '1997-05-21', 0, 0, 'campbellnicole', '2006-11-28', 'campbellnic', '2004-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS538349111937', 'Kelly Reed', 1, '+86 168-4485-6316', 3, '694374091726463126', '中国深圳罗湖区蔡屋围深南东路901号32栋', '1992-11-23', 0, 0, 'kereed', '2002-04-17', 'rekelly', '2016-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS381402104101', '盧家文', 1, '+86 164-2294-6557', 2, '601805256473648563', '中国深圳福田区深南大道21号2栋', '1988-08-15', 0, 0, 'kaman8', '2010-01-08', 'lkm109', '2016-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS441628336906', '上野愛梨', 1, '+1 212-418-5228', 3, '255689154576449633', '131 West Houston Street Apartment 45, New York, NY 10014, United States', '1997-02-20', 0, 0, 'ueairi', '2001-08-20', 'uenoairi', '2005-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS809772145131', '向岚', 0, '+86 10-963-1606', 4, '662771471391297154', 'No.30 building, 715 East Wangfujing Street, Dongcheng District , Beijing, China', '1986-07-07', 0, 0, 'xiangl', '2009-12-30', 'lanxiang', '2003-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS056455239845', '宣朝偉', 0, '+44 (20) 7838 3727', 3, '576785014436104043', 'Block 19, 531 Maddox Street, London, W1S 1PU, United Kingdom', '1988-11-14', 0, 0, 'cwhs1985', '2000-11-15', 'chiuwaihsuan623', '2022-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS283282239438', '太田一輝', 0, '+86 164-5703-0973', 3, '030352037206645326', 'No.12 building, 229 Lefeng 6th Rd, Zhongshan, China', '1989-07-21', 0, 0, 'ota70', '2012-01-02', 'ikkio', '2006-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS005824713459', '翁學友', 0, '+81 80-6108-3874', 2, '860751817588120696', 'Rm. 38, 3 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-10-31', 0, 0, 'yung3', '2020-08-02', 'hokyauyun', '2004-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS840728115615', '平野結翔', 1, '+1 212-269-0832', 2, '029568844608113885', '16 Fifth Avenue Apt 7, New York, NY 10017, United States', '1994-09-30', 0, 0, 'yuitohirano', '2001-04-28', 'hyuit4', '2015-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS980898077130', '伊藤葉月', 0, '+1 212-735-0381', 3, '138173182696870878', '301 Fifth Avenue Apartment 19, New York, NY 10017, United States', '1997-05-12', 0, 0, 'ithazu58', '2000-07-14', 'ith7', '2014-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS007986140486', '菅原明菜', 0, '+81 3-0839-1063', 2, '980960110305278913', '日本東京品川区東五反田五丁目2番19号50号室', '1998-02-22', 0, 0, 'sugawara1230', '2017-09-06', 'akinasu7', '2014-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS271732202710', 'Ray Gordon', 0, '+1 213-439-7641', 4, '839459117042703008', '370 Alameda Street Apartment 22, Los Angeles, CA 90002, United States', '1991-06-18', 0, 0, 'rgo19', '2010-05-10', 'ray714', '2000-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS592057545233', '容安娜', 1, '+1 213-885-6195', 3, '996556178964206853', '998 Grape Street Suite 19, Los Angeles, CA 90002, United States', '1990-04-20', 0, 0, 'yonna10', '2009-08-13', 'onyung909', '2015-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS034951144003', '宣明詩', 0, '+1 330-248-3753', 3, '114383963522194494', '135 Collier Road Apartment 3, Akron, OH 44320, United States', '1992-04-07', 0, 0, 'hsuanms10', '2014-05-24', 'hmingsze97', '2015-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS156174610296', 'Bruce Hernandez', 0, '+81 11-180-5400', 1, '224441400451981683', '27-kai, 5-2-4 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-08-08', 0, 0, 'hernandez7', '2016-08-02', 'bruceh', '2007-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS839633507172', '向岚', 1, '+81 90-5341-4458', 2, '306347477523797323', '日本なごやし熱田区千年二丁目5番12号5階', '1991-09-27', 0, 0, 'lanxiang', '2013-05-29', 'xianglan1988', '2008-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS648376490689', '方詩涵', 1, '+44 5864 525471', 1, '503061907422241567', 'Unit 30, Oxford Eco Centre, 374 Sackville St, Manchester, M1 3BB, United Kingdom', '1986-08-31', 0, 0, 'fang117', '2012-05-06', 'fang915', '2010-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS742398020641', '藤田七海', 0, '+86 199-0193-6016', 1, '839029236144646680', 'No.29 building, 739 028 County Rd, Yanqing District, Beijing, China', '1992-11-01', 0, 0, 'nanami42', '2007-05-01', 'nanafujit1953', '2013-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS678547249661', '任永權', 0, '+86 20-5323-9910', 1, '302837481024869903', 'Room 9, 262 Xiaoping E Rd, Baiyun , Guangzhou, China', '1998-10-20', 0, 0, 'yam10', '2015-07-03', 'yam83', '2008-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS717957333501', 'Walter Gutierrez', 1, '+1 614-689-0399', 3, '904564829792508109', '423 East Alley Apartment 20, Columbus, GA 43201, United States', '1993-05-05', 0, 0, 'gutierrezwalter87', '2015-04-09', 'walterg', '2016-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS244100526864', 'Joan Alexander', 0, '+81 74-103-2367', 0, '380824290774873052', '日本ならし学園南三丁目9番13号21号室', '1994-06-22', 0, 0, 'alexanderjoan1993', '2006-01-27', 'joanalexander', '2016-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS468263806389', '蔡杰宏', 0, '+44 (116) 305 9340', 3, '039895123969450711', 'Unit 4, Oxford Eco Centre, 321 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1990-11-03', 0, 0, 'caijiehong1002', '2013-07-02', 'jiehong1955', '2002-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS837641054892', '白發', 1, '+86 20-310-1952', 3, '899961704304706875', '中国广州市白云区机场路棠苑街五巷306号23楼', '1996-09-02', 0, 0, 'fatpa', '2010-08-03', 'pakfa5', '2014-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS147608127721', '劉詠詩', 1, '+86 166-3181-3522', 2, '773811536918299578', '中国深圳福田区景田东一街223号6室', '1986-09-21', 0, 0, 'lwin', '2011-05-22', 'lauws2001', '2001-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS891833788814', '許志明', 0, '+81 80-1787-1660', 1, '572417863086583692', '45-kai, 2-5-19 Chitose, Atsuta Ward, Nagoya, Japan', '1987-05-31', 0, 0, 'huicm1101', '2003-12-09', 'chhui03', '2018-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS071013740463', '高田明菜', 1, '+86 158-5467-3681', 3, '064474965941788962', '中国广州市天河区天河路922号3楼', '1996-04-18', 0, 0, 'takadaakina', '2000-09-01', 'atakada803', '2017-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS893392793966', '野村大地', 1, '+44 7338 003086', 0, '040561157856886786', 'Flat 5, 725 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-06-12', 0, 0, 'daichi60', '2020-07-28', 'nomurad', '2017-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS975249379792', '原田彩乃', 1, '+1 614-716-4584', 0, '237445031717012297', '722 Diplomacy Drive Suite 21, Columbus, GA 43228, United States', '1985-03-06', 0, 0, 'ayanharada914', '2004-11-12', 'ayanharada8', '2001-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS243331965553', '杨云熙', 0, '+86 186-7759-1062', 2, '966895980460891637', 'Room 49, CR Building, 127 Jiangnan West Road, Haizhu District, Guangzhou, China', '1998-09-11', 0, 0, 'yayunxi', '2011-05-15', 'yanyunx5', '2001-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS714562165240', 'Lawrence Hernandez', 0, '+81 66-290-6052', 1, '794322631975259984', '日本おおさかし東住吉区東田辺三丁目27番12号49階', '1985-04-19', 0, 0, 'lawrence20', '2009-02-12', 'lawrencehern', '2013-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS121379183683', '董宇宁', 1, '+86 155-6492-4619', 1, '089983226116219517', '中国上海市徐汇区虹桥路219号31号楼', '1985-04-03', 0, 0, 'yuning321', '2009-05-28', 'yuning8', '2011-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS267609422445', '石田陽菜', 1, '+86 10-358-8100', 0, '532837579302887068', '中国北京市延庆区028县道719号42号楼', '1997-09-21', 0, 0, 'ihina1', '2021-02-16', 'hinishida00', '2015-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS305204879048', '洪慧儀', 0, '+1 213-703-6727', 2, '005456132717552565', '378 Wall Street Apt 27, Los Angeles, CA 90003, United States', '1987-03-30', 0, 0, 'waiyeh', '2019-02-14', 'hung1', '2004-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS588749037071', '小林蓮', 0, '+44 5818 513788', 4, '719031544806711995', 'No.1 Main building, 396 Hanover St, Liverpool, L1 4AF, United Kingdom', '1985-12-10', 0, 0, 'kobayre', '2008-07-15', 'kobayren', '2020-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS331913576490', '林致远', 0, '+86 141-7310-3096', 3, '771153999709845495', '中国上海市闵行区宾川路152号29室', '1986-06-29', 0, 0, 'lizhiyuan', '2013-06-13', 'zhiyuanlin', '2011-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS434774771788', '史晓明', 0, '+81 70-2475-4667', 0, '909305931096345904', '36-kai, 1-6-20, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-05-05', 0, 0, 'shi107', '2004-04-17', 'sxia10', '2010-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS261139882662', '吉田結翔', 0, '+86 28-741-2227', 4, '124224909768350570', 'Room 29, 869 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1989-06-03', 0, 0, 'yuitoyoshida', '2005-01-24', 'yoshiday', '2004-02-29'); +INSERT INTO "public"."userinfo" VALUES ('TS150527825047', '三浦桜', 1, '+81 74-063-8709', 2, '103845031302111964', '23-kai, 1-7-15 Saidaiji Akodacho, Nara, Japan', '1986-11-02', 0, 0, 'miurasakura', '2001-01-09', 'sakuramiu', '2005-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS485142110230', '高橋蒼士', 1, '+1 718-042-5943', 0, '598244011650256756', '972 Columbia St Apt 20, Brooklyn, NY 11231, United States', '1990-10-24', 0, 0, 'aostakahashi40', '2019-01-04', 'aoshi1212', '2010-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS388152841035', '蒋致远', 1, '+81 80-9705-7050', 3, '286587974886243202', '48-kai, 1-7-12 Omido, Higashiosaka, Osaka, Japan', '1997-06-12', 0, 0, 'zhiyuan1949', '2021-03-01', 'zhiyj6', '2021-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS202771476313', '渡部大和', 0, '+86 187-8848-8011', 0, '636911685705616000', '中国成都市锦江区红星路三段472号37栋', '1993-04-02', 0, 0, 'watanabeyamato', '2012-02-17', 'yamato53', '2018-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS312265616100', '何秀英', 1, '+44 (151) 771 0596', 2, '048393084401420306', 'Block 19, 954 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1993-09-15', 0, 0, 'hxiuy7', '2009-07-08', 'hexiuy1120', '2007-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS446433754194', '胡裕玲', 1, '+44 (151) 220 7454', 4, '448230399478067929', 'Unit 28, Oxford Eco Centre, 780 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1989-01-10', 0, 0, 'yuling65', '2008-02-23', 'ylwu13', '2001-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS105077838764', '黎岚', 0, '+81 66-814-8658', 3, '062070988704908352', '日本おおさかし西成区出城一丁目1番3号3階', '1988-09-04', 0, 0, 'lanli', '2021-03-18', 'll46', '2003-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS315125766789', '小川架純', 0, '+44 5168 613845', 1, '935003797601231803', 'Block 34, 90 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1988-10-12', 0, 0, 'ogakasumi', '2006-10-02', 'kao', '2021-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS732436183687', 'Anthony Freeman', 1, '+86 769-199-9888', 3, '448121524462686999', 'No.17 building, 447 Shanhu Rd, Dongguan, China', '1990-11-01', 0, 0, 'anthf', '2002-04-11', 'anthonyfreeman', '2004-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS459087841982', 'Aaron Medina', 0, '+1 213-065-9735', 4, '202740750726947617', '907 Grape Street Suite 32, Los Angeles, CA 90002, United States', '1996-11-28', 0, 0, 'aamedina', '2018-02-17', 'aaronmedina', '2003-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS609994130228', '中野七海', 0, '+1 614-202-2115', 1, '723239122878014472', '46 Wicklow Road Apartment 17, Columbus, GA 43204, United States', '1995-09-24', 0, 0, 'nakann', '2019-03-01', 'nakano1005', '2009-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS531951089060', 'Bradley Wilson', 0, '+81 52-037-6073', 4, '437878155147609182', '35F, 4 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1991-02-27', 0, 0, 'bwilson', '2013-07-20', 'wilsbr', '2004-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS560906788338', '秦云熙', 0, '+44 7090 553452', 1, '349180455194591807', 'Unit 40, Oxford Eco Centre, 511 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1988-12-19', 0, 0, 'qinyu', '2004-03-27', 'qinyunxi', '2005-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS727595944491', '劉發', 0, '+81 90-8971-0746', 3, '937417599940269034', 'Rm. 14, 1-1-10 Deshiro, Nishinari Ward, Osaka, Japan', '1995-03-17', 0, 0, 'lfat', '2001-03-21', 'fatlau', '2008-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS654930897824', '阎致远', 0, '+81 52-216-3821', 0, '516598107410408864', '16-kai, 9 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-10-22', 0, 0, 'zhiyuanyan10', '2001-08-13', 'zya', '2007-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS129687338880', '翁安娜', 0, '+86 10-1688-7364', 1, '413131846779106565', 'Room 42, 345 028 County Rd, Yanqing District, Beijing, China', '1987-05-11', 0, 0, 'yon', '2015-11-28', 'yungon70', '2020-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS710612084476', '河野凛', 1, '+44 5328 108044', 1, '654360951131520394', 'Block 34, 783 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1996-09-30', 0, 0, 'rko131', '2012-10-29', 'konorin', '2016-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS569908904951', 'Josephine Reyes', 0, '+44 (116) 712 0430', 1, '303700192909930836', 'Block 35, 756 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1989-07-07', 0, 0, 'josephinereyes', '2003-11-13', 'jor', '2000-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS771412126800', '中野美羽', 1, '+81 66-703-9253', 2, '792544728463575052', '15-kai, 4-9-6 Kamihigashi, Hirano Ward, Osaka, Japan', '1991-02-02', 0, 0, 'miunaka513', '2012-12-29', 'miunakano902', '2013-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS987449161250', '小林蓮', 1, '+86 28-268-3420', 3, '613428901782745111', '29F, No.310, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1998-07-20', 0, 0, 'kobayashi10', '2012-10-18', 'renkobayashi', '2013-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS384186731329', '内田彩乃', 0, '+1 330-228-3308', 1, '800133975363055867', '548 Collier Road 3rd Floor, Akron, OH 44320, United States', '1990-02-17', 0, 0, 'uchiaya', '2012-08-20', 'uchaya', '2022-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS367223437985', 'Shawn Green', 0, '+44 7728 316964', 3, '815150078474353359', 'Flat 1, 622 Hanover St, Liverpool, L1 4AF, United Kingdom', '1993-10-05', 0, 0, 'shag', '2019-08-04', 'green5', '2020-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS153566546881', '朱俊宇', 1, '+86 769-3782-8585', 1, '069723381910281555', 'No.11 building, 925 Kengmei 15th Alley, Dongguan, China', '1994-07-05', 0, 0, 'cychu623', '2020-06-14', 'cychu', '2011-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS355586655735', '武睿', 1, '+44 (161) 816 6467', 4, '237684090237446506', 'No.3 Main building, 525 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-05-30', 0, 0, 'wrui', '2015-06-13', 'rui52', '2003-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS012819872170', 'Esther Wallace', 1, '+86 196-9808-5883', 2, '374887850796865931', '中国深圳罗湖区清水河一路995号华润大厦43室', '1986-07-12', 0, 0, 'esther319', '2020-08-10', 'esther81', '2009-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS575175617654', 'Kimberly Stewart', 0, '+86 21-230-6972', 2, '554784437767939602', '中国上海市闵行区宾川路987号1号楼', '1992-03-28', 0, 0, 'stewartkim1990', '2021-01-19', 'stewart63', '2015-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS004121649776', '杜云熙', 0, '+81 11-979-1749', 1, '558743976744925921', '4F, 5-2-19 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1986-10-05', 0, 0, 'yunxi428', '2013-08-17', 'duyunxi10', '2004-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS765698227195', '李永權', 0, '+44 (151) 640 6614', 0, '043143309493104620', 'Block 30, 719 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1985-12-29', 0, 0, 'lewk1118', '2000-03-01', 'leewk', '2019-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS417143264539', '蘇明', 1, '+81 70-8149-0003', 3, '711364597742916524', '日本おおさかし東住吉区東田辺三丁目27番1号1階', '1991-02-12', 0, 0, 'ming3', '2004-04-22', 'ming62', '2005-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS436764845322', '藤詠詩', 0, '+81 80-7650-2693', 3, '461382911606802777', '日本おおさかし近江堂一丁目7番18号13階', '1997-07-31', 0, 0, 'tangws', '2000-11-29', 'wingszetang', '2001-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS607502496825', '段子韬', 1, '+86 135-3628-7812', 2, '433127110518091452', 'No.36 building, 603 Huanqu South Street 2nd Alley, Dongguan, China', '1996-01-24', 0, 0, 'duanzitao', '2009-08-05', 'dz78', '2021-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS467575376437', '向安琪', 0, '+81 52-656-0144', 2, '891975414539165647', '17-kai, 13 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-05-22', 0, 0, 'xanqi1974', '2001-10-24', 'ax10', '2001-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS943026708047', 'Helen Bennett', 0, '+86 28-601-3800', 4, '110684954768188778', '44F, No. 54, Shuangqing Rd, Chenghua District, Chengdu, China', '1990-08-18', 0, 0, 'hb1', '2002-12-21', 'bennett5', '2004-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS359385279916', '周秀英', 1, '+86 158-2726-6530', 1, '238347986982115687', '中国北京市海淀区清河中街68号959号24楼', '1994-12-14', 0, 0, 'xzhou', '2010-11-06', 'xzho', '2021-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS709579032830', 'Nathan Burns', 1, '+81 70-2574-8801', 2, '081122551947413716', '日本東京港区東新橋一丁目5番15号37階', '1987-01-03', 0, 0, 'burnsnathan', '2011-11-27', 'burn', '2019-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS659763854358', '黎岚', 1, '+1 718-654-1972', 1, '084710430971889355', '377 Bergen St Apt 5, Brooklyn, NY 11217, United States', '1989-09-24', 0, 0, 'lanli', '2021-01-24', 'lanli4', '2012-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS724294731244', '石田架純', 0, '+86 160-4230-0059', 1, '421036624653139410', '中国上海市徐汇区虹桥路454号30号楼', '1988-01-17', 0, 0, 'kasumi1', '2014-10-08', 'kasumi8', '2005-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS057101473663', '中村凛', 0, '+81 3-6346-1871', 1, '531309722933586640', '日本東京渋谷区代々木二丁目3番9号17階', '1988-10-22', 0, 0, 'nakamurarin3', '2018-03-11', 'nakamurarin', '2001-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS896294358042', '王岚', 1, '+81 80-9875-6870', 2, '417144636190044565', '32F, 2-5-4 Chitose, Atsuta Ward, Nagoya, Japan', '1993-11-15', 0, 0, 'lw44', '2008-05-14', 'wla', '2007-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS418460840660', '高橋聖子', 1, '+1 838-167-6316', 1, '955811598239507891', '211 State Street Suite 10, Albany, NY 12203, United States', '1986-09-29', 0, 0, 'takahashise', '2002-12-15', 'seikotakahashi8', '2018-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS480050995638', '井上舞', 1, '+44 5507 270444', 1, '294232680958979600', 'No.11 Main building, 636 Regent Street, London, W1B 2LX, United Kingdom', '1993-02-24', 0, 0, 'mainoue', '2007-09-28', 'inouemai9', '2014-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS959795498462', '贺杰宏', 1, '+81 90-4885-1457', 0, '133061732219037791', '日本札幌白石区菊水三条五丁目4番12号38号室', '1996-07-04', 0, 0, 'jiehohe1943', '2016-06-28', 'he2', '2010-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS461141410626', 'Jerry Johnson', 0, '+86 148-2562-6468', 3, '725921946763166966', 'Room 30, 399 Hongqiao Rd., Xu Hui District, Shanghai, China', '1990-03-05', 0, 0, 'jerrjohns', '2014-09-29', 'johnsonj02', '2014-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS532459056624', '中山大輔', 1, '+1 838-452-7925', 3, '583892282810330950', '673 State Street Apt 21, Albany, NY 12203, United States', '1986-02-21', 0, 0, 'daisuke6', '2012-07-02', 'nakayamadaisuke', '2012-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS336370533668', '范嘉伦', 1, '+86 156-9187-4325', 2, '417665917235233768', '中国上海市黄浦区淮海中路248号32室', '1985-12-30', 0, 0, 'fan9', '2009-11-07', 'jialunfa', '2021-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS206599849240', '邹震南', 0, '+44 7084 782492', 2, '698148558173563458', 'No.28 Main building, 601 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1995-06-03', 0, 0, 'zhennanzou', '2010-12-20', 'zozhennan', '2020-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS018055062594', '斉藤陸', 0, '+44 (116) 263 2288', 1, '627321863476237715', 'Flat 17, 255 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1993-07-17', 0, 0, 'saito13', '2013-03-06', 'sariku', '2002-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS661948771574', '高睿', 1, '+86 151-2512-0625', 1, '717595999078660510', 'No.24 building, 165 Sanlitun Road, Chaoyang District, Beijing, China', '1993-10-08', 0, 0, 'ruga', '2001-08-05', 'gaoru', '2007-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS812607155342', 'Anna Simpson', 0, '+86 755-668-8090', 2, '965084741179106045', '中国深圳福田区深南大道770号20栋', '1998-11-10', 0, 0, 'annas1026', '2012-03-31', 'annasimpson', '2016-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS068690935951', '孙嘉伦', 0, '+44 (20) 7250 6157', 1, '719486338595498866', 'Flat 35, 702 Hanover Street, London, W1S 1YD, United Kingdom', '1996-09-07', 0, 0, 'sunjial6', '2003-08-19', 'jiasu', '2015-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS169020077118', 'Ethel Roberts', 0, '+81 90-6131-6765', 3, '033981726181719505', '日本東京港区東新橋一丁目5番9号29階', '1993-12-13', 0, 0, 'er4', '2010-01-04', 'roberethel', '2003-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS841111124685', '唐杰宏', 0, '+81 11-069-7496', 0, '012135791506782007', 'Rm. 37, 6-1-4, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1992-03-03', 0, 0, 'jit', '2019-09-15', 'jiehtang53', '2004-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS908094315250', '松本聖子', 0, '+86 760-1237-3679', 2, '449434323172068740', '中国中山乐丰六路671号26室', '1989-09-19', 0, 0, 'matsumoto69', '2012-02-01', 'seiko1966', '2021-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS784798121325', '高安琪', 1, '+86 175-0247-2534', 2, '509791631761296327', 'Room 47, CR Building, 433 East Wangfujing Street, Dongcheng District , Beijing, China', '1994-08-07', 0, 0, 'anqiga229', '2017-09-14', 'aga', '2012-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS708168128425', '梁麗欣', 0, '+81 66-582-4552', 1, '871784338364380957', 'Rm. 5, 1-7-17 Omido, Higashiosaka, Osaka, Japan', '1988-09-26', 0, 0, 'lyl', '2021-04-09', 'lly', '2004-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS696886144338', '蔡璐', 1, '+44 (121) 474 7034', 4, '378501295654499180', 'Flat 16, 785 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1986-10-05', 0, 0, 'cai10', '2001-06-07', 'lu93', '2011-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS400747713421', '森百恵', 0, '+86 194-0253-1487', 1, '453152651543429899', '中国中山乐丰六路569号17楼', '1986-04-10', 0, 0, 'momoemori1977', '2000-10-26', 'momoe1', '2011-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS015670696153', '溫浩然', 1, '+86 198-6451-3723', 3, '795578908287932400', 'No.21 building, 454 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1986-06-07', 0, 0, 'wanhy', '2019-08-16', 'hyw914', '2008-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS866965894308', '太田健太', 1, '+86 150-9520-8310', 2, '666403676116669216', '中国深圳罗湖区蔡屋围深南东路597号9楼', '1993-07-18', 0, 0, 'kentaota', '2001-10-31', 'ota3', '2009-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS259481408650', '中島桜', 1, '+1 213-588-8537', 3, '298970849061029596', '680 Grape Street Apt 13, Los Angeles, CA 90002, United States', '1995-12-20', 0, 0, 'nakajimasakura', '2005-05-12', 'nsakura206', '2016-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS144381943803', '伊藤玲奈', 1, '+86 769-3374-0873', 2, '154716365920670098', '14F, 462 Shanhu Rd, Dongguan, China', '1988-08-20', 0, 0, 'renai825', '2011-07-02', 'itorena', '2013-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS734925962911', '岩崎悠人', 1, '+81 74-186-1627', 1, '793441791344518862', '日本ならし学園南三丁目9番4号14号室', '1998-08-06', 0, 0, 'iwasayuto49', '2008-12-07', 'yutoi', '2005-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS465444710970', 'Nicholas Adams', 0, '+86 28-818-1166', 2, '133766054532178238', '中国成都市成华区双庆路577号22号楼', '1985-06-08', 0, 0, 'nicholasadams', '2015-02-23', 'anicho7', '2008-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS372672530350', '余岚', 1, '+86 145-2751-5045', 3, '306465843807943025', 'Room 49, CR Building, 369 Hongqiao Rd., Xu Hui District, Shanghai, China', '1987-04-27', 0, 0, 'lan5', '2005-10-25', 'yulan', '2014-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS496378219946', '伍明詩', 1, '+81 90-5816-1433', 2, '723230048230021656', '46F, 5-4-15 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-08-27', 0, 0, 'ngmingsze', '2010-04-14', 'ming3', '2020-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS781163419726', '丸山樹', 1, '+44 5468 348966', 3, '706977969256451973', 'Block 4, 800 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1995-03-30', 0, 0, 'itsukim', '2018-09-16', 'itsukimaruyama6', '2012-02-29'); +INSERT INTO "public"."userinfo" VALUES ('TS428795115006', 'Curtis Hayes', 1, '+81 3-4865-6884', 4, '121988353048917110', 'Rm. 32, 1-5-2, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1993-11-16', 0, 0, 'curtishayes707', '2018-08-08', 'hayescurtis', '2006-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS285528047094', '野口絢斗', 0, '+44 5403 472788', 2, '886180673341159214', 'Block 27, 238 Maddox Street, London, W1S 1PU, United Kingdom', '1996-06-03', 0, 0, 'ayato10', '2000-04-29', 'noayato910', '2000-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS673138299276', '侯嘉伦', 1, '+44 7099 033945', 2, '352799268289950643', 'Block 32, 322 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1990-03-07', 0, 0, 'jialunhou721', '2001-03-28', 'houjialun', '2010-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS845366163067', '胡嘉欣', 0, '+1 330-477-0760', 3, '163517111564686533', '830 Collier Road Apartment 45, Akron, OH 44320, United States', '1988-06-05', 0, 0, 'karyanwu6', '2010-05-27', 'wukaryan', '2004-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS704226303246', '田中樹', 0, '+81 11-222-7191', 1, '568133907221076175', '23F, 5-4-6 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1988-01-17', 0, 0, 'tanitsuki1', '2000-02-02', 'tit', '2008-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS897135198516', '中島愛梨', 1, '+81 11-291-7527', 2, '140970846722696097', '日本札幌豊平区豊平三条十三丁目3番13号37階', '1998-07-07', 0, 0, 'airnakajima44', '2003-10-21', 'nakajimaairi', '2001-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS775239959324', '元天榮', 1, '+86 10-7331-0908', 3, '947039977929531448', 'Room 37, 972 68 Qinghe Middle St, Haidian District, Beijing, China', '1985-10-08', 0, 0, 'yutinw', '2022-02-09', 'tiy', '2011-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS730237627061', '斉藤樹', 1, '+86 10-8480-4758', 2, '321225974707987879', '中国北京市房山区岳琉路640号华润大厦18室', '1990-04-07', 0, 0, 'saitsuki', '2005-12-08', 'itss', '2007-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS453374638007', '工藤百恵', 0, '+81 80-3390-2355', 3, '213503241895753649', '29F, 3-27-14 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-05-31', 0, 0, 'momoekudo', '2020-07-30', 'momoe3', '2006-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS888073865769', 'Paul Cox', 0, '+86 10-9192-9640', 1, '205339663530973605', 'Room 7, CR Building, 601 Sanlitun Road, Chaoyang District, Beijing, China', '1989-11-24', 0, 0, 'paulcox', '2016-08-27', 'copaul1', '2004-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS853085867596', '鄭志遠', 0, '+81 90-2503-8556', 1, '975617269103353194', '日本札幌白石区菊水三条五丁目2番5号48階', '1989-05-22', 0, 0, 'chency5', '2011-02-01', 'chcheng1218', '2015-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS666485480580', '斎藤百花', 0, '+1 213-031-5606', 4, '851361521772109314', '726 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1994-05-22', 0, 0, 'momokasait', '2016-12-25', 'saitomomok', '2017-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS248066291942', 'Alice Ruiz', 1, '+1 330-950-7628', 2, '783205591515206323', '60 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1995-03-20', 0, 0, 'ruizalice', '2001-06-26', 'alicruiz1214', '2018-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS338529536798', '村田瑛太', 0, '+1 213-009-4744', 0, '256771144835568564', '113 Alameda Street Apartment 17, Los Angeles, CA 90002, United States', '1995-10-15', 0, 0, 'emurata98', '2018-01-27', 'meita', '2009-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS763450808167', '郭頴璇', 1, '+86 198-9878-1319', 1, '332313976933636171', '中国成都市成华区玉双路6号606号40号楼', '1990-07-19', 0, 0, 'wingkwok', '2008-03-29', 'kws', '2017-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS643004540310', '薛淑怡', 1, '+44 (121) 258 6023', 2, '521936519305394696', 'Unit 34, Oxford Eco Centre, 170 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1990-11-22', 0, 0, 'sysi', '2013-01-17', 'sysi', '2013-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS790334758030', '曾晓明', 1, '+86 10-824-4267', 2, '692698495192407951', '中国北京市東城区東直門內大街156号48楼', '1987-05-18', 0, 0, 'zenxiaoming', '2012-07-28', 'zenxiaoming', '2003-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS622386891898', '王云熙', 1, '+1 213-673-5052', 1, '855726740159006720', '929 Sky Way Apt 18, Los Angeles, CA 90043, United States', '1998-02-15', 0, 0, 'wanyunxi', '2014-10-12', 'yunxi7', '2000-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS309471735717', '向詩君', 0, '+81 80-8729-0132', 1, '668586034622817405', 'Rm. 44, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1998-02-18', 0, 0, 'szekwan96', '2008-09-15', 'heungsk1', '2012-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS885647145532', '石川結翔', 0, '+86 153-8627-5587', 2, '050782808855831254', '中国东莞珊瑚路755号华润大厦47室', '1995-04-27', 0, 0, 'yuiishikawa', '2001-09-11', 'yuiishikawa828', '2020-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS000690261493', '史安琪', 1, '+44 5774 640481', 2, '921423242826391013', 'Unit 24, Oxford Eco Centre, 979 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1989-05-04', 0, 0, 'sha', '2004-01-26', 'shianqi713', '2015-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS870093199860', 'Juan Romero', 1, '+81 90-6127-1255', 3, '808118914013771818', '日本東京港区東新橋一丁目5番16号44階', '1988-05-29', 0, 0, 'romero96', '2021-01-11', 'romju10', '2018-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS896313301542', '池田海斗', 0, '+44 7588 909897', 4, '449604837266238553', 'Flat 1, 568 Maddox Street, London, W1S 1PU, United Kingdom', '1992-03-02', 0, 0, 'ikeka1', '2017-03-14', 'kaitoike727', '2004-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS271699829837', '顧頴思', 0, '+81 66-864-2418', 0, '633856951299902427', '12F, 3-27-15 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1986-12-24', 0, 0, 'wingszek', '2006-05-14', 'wsku44', '2008-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS269047383395', '汤晓明', 1, '+86 189-7424-9888', 2, '780415571746305907', '中国成都市成华区双庆路866号华润大厦17室', '1993-02-03', 0, 0, 'xitan1027', '2009-09-10', 'tangxiaoming528', '2011-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS112760540456', '内田絢斗', 1, '+1 330-378-0512', 4, '696182999840102208', '800 Ridgewood Road Apartment 36, Akron, OH 44321, United States', '1990-03-22', 0, 0, 'ayatouc8', '2020-01-21', 'ayato6', '2003-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS777669183773', '徐榮發', 1, '+86 769-973-1697', 2, '710368530672347424', '中国东莞珊瑚路498号华润大厦29室', '1986-10-16', 0, 0, 'wingfattsu', '2005-10-08', 'tswf', '2005-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS761260105553', '莫惠敏', 0, '+86 28-7696-2252', 3, '270865655786209545', '中国成都市成华区二仙桥东三路951号华润大厦50室', '1993-03-10', 0, 0, 'mokwaiman', '2003-05-22', 'wmmok', '2011-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS291991794150', '卢云熙', 1, '+81 11-449-2926', 2, '908537304798154609', '日本札幌白石区菊水三条五丁目2番13号49階', '1990-05-10', 0, 0, 'yunxilu2', '2021-04-23', 'ylu', '2012-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS328668256601', 'Victoria Griffin', 0, '+1 213-705-4863', 3, '737529555744503478', '528 Alameda Street Suite 41, Los Angeles, CA 90002, United States', '1997-07-15', 0, 0, 'victogriffin3', '2021-03-03', 'victoriagrif4', '2009-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS417459539138', '汤云熙', 0, '+44 7505 862469', 4, '822774966954905037', 'Flat 10, 237 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1993-11-03', 0, 0, 'yunxi20', '2006-08-08', 'tangy', '2014-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS269377095151', '有村瑛太', 1, '+1 614-974-7508', 3, '720291534470326631', '252 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1991-07-07', 0, 0, 'eitaar', '2004-02-09', 'eita20', '2006-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS412179446512', '向家玲', 1, '+1 212-872-6531', 1, '709689894082942125', '543 Fifth Avenue Suite 45, New York, NY 10017, United States', '1991-02-22', 0, 0, 'kalingheung10', '2006-07-11', 'hkl', '2003-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS023935753171', 'Carmen Barnes', 0, '+81 52-549-5953', 2, '432931890012264085', '8-kai, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-02-20', 0, 0, 'carmenbar', '2018-05-06', 'carmbarnes1', '2003-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS016870904397', 'Carl Jimenez', 0, '+44 (1865) 02 1090', 3, '748106875880017749', 'No.37 Main building, 864 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1997-01-20', 0, 0, 'carjimenez', '2016-10-03', 'cjimenez', '2015-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS272857277373', '餘志明', 0, '+81 11-670-0906', 2, '305133376506124594', 'Rm. 39, 6-1-14, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-07-13', 0, 0, 'yuchimi1219', '2011-08-13', 'chimingy', '2021-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS667928901034', '田梓軒', 0, '+1 312-003-5203', 3, '432557617342074626', '994 Pedway Apt 4, Chicago, IL 60601, United States', '1998-09-21', 0, 0, 'tin1955', '2014-06-10', 'tith4', '2017-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS795543842955', 'Lisa Hicks', 0, '+86 760-373-9249', 3, '416646113425147394', '中国中山京华商圈华夏街657号华润大厦3室', '1986-04-10', 0, 0, 'hicks1214', '2014-08-03', 'lhi', '2020-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS879455647344', '雷家玲', 1, '+1 718-570-7106', 1, '806343915617498102', '858 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1996-11-21', 0, 0, 'kaling828', '2003-09-07', 'loka627', '2020-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS688097575327', '駱國賢', 0, '+86 192-4324-3151', 2, '169521267799158332', '中国北京市房山区岳琉路226号10室', '1990-05-17', 0, 0, 'lky', '2014-08-08', 'lokky10', '2020-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS110443597744', 'Norma Myers', 1, '+81 90-6876-9436', 1, '040464803900317771', '34-kai, 13-3-6 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1997-05-27', 0, 0, 'myernorm', '2019-04-18', 'normamyers', '2002-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS857902517904', '石川蓮', 0, '+86 21-467-7884', 1, '136714140821558270', 'No.4 building, 682 Middle Huaihai Road, Huangpu District, Shanghai, China', '1995-03-26', 0, 0, 'ishikr', '2008-01-17', 'iren', '2002-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS479227162267', '田中優奈', 0, '+81 70-7772-2813', 0, '937053969141736471', '日本札幌白石区菊水三条五丁目4番15号48階', '1989-04-09', 0, 0, 'tanakayuna', '2005-04-27', 'yuna54', '2000-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS607308652422', '應志明', 1, '+44 (151) 628 5146', 2, '556026756179645328', 'Block 19, 304 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1988-11-13', 0, 0, 'ychiming49', '2016-01-01', 'ycm4', '2003-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS872919412497', 'Sylvia Parker', 1, '+81 74-922-0116', 2, '025822874898156109', '日本ならし学園南三丁目9番12号26階', '1988-01-09', 0, 0, 'sparker52', '2013-07-18', 'sylvp', '2007-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS529364305468', '彭詩涵', 0, '+81 52-599-5815', 4, '426639231146562752', '日本なごやし瑞穂区河岸町四丁目20番13号15号室', '1995-05-15', 0, 0, 'shihanpen', '2011-11-24', 'spen', '2020-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS629432377496', 'Andrea Long', 0, '+86 130-2001-7228', 1, '963663978078869365', '10F, 371 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1989-06-03', 0, 0, 'andrealong', '2018-05-26', 'andreal', '2020-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS267205227730', '廖宇宁', 0, '+1 212-554-8047', 3, '323695032460242912', '377 Canal Street 3rd Floor, New York, NY 10013, United States', '1995-05-29', 0, 0, 'yunl', '2007-08-24', 'yuningl428', '2018-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS677700086689', '容仲賢', 1, '+1 312-644-6786', 3, '688165245557236270', '482 Pedway Apt 22, Chicago, IL 60601, United States', '1989-05-16', 0, 0, 'yungchungyin', '2014-09-20', 'chungyinyung907', '2018-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS354667530840', 'Louis Grant', 1, '+44 5513 844360', 4, '656481964190517348', 'Flat 44, 735 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1987-06-19', 0, 0, 'glouis614', '2005-07-14', 'louisgrant', '2020-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS245711734610', '菅原蓮', 0, '+86 20-349-6989', 0, '663121149082167356', 'No.19 building, 40 Tianhe Road, Tianhe District, Guangzhou, China', '1986-09-15', 0, 0, 'sugawara8', '2001-01-26', 'sren', '2021-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS137503831617', '廖杰宏', 0, '+81 90-6137-1789', 0, '409101575796913743', '日本ならし学園南三丁目9番11号41階', '1993-08-16', 0, 0, 'liao3', '2010-07-17', 'ljie', '2012-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS533852615711', '麥青雲', 1, '+81 80-5462-5423', 3, '918358859099111586', '24-kai, 1-7-5 Saidaiji Akodacho, Nara, Japan', '1996-02-15', 0, 0, 'cwm', '2017-07-03', 'chingwan00', '2012-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS257752272951', 'Charlotte Brown', 1, '+86 177-3139-8252', 2, '696657261219106531', 'Room 34, 276 Hongqiao Rd., Xu Hui District, Shanghai, China', '1996-03-17', 0, 0, 'browncharlotte', '2015-11-27', 'bcharlotte', '2011-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS226516433860', '石井樹', 1, '+44 (151) 889 9408', 2, '690230426522227825', 'Unit 13, Oxford Eco Centre, 349 Redfern St, Liverpool, L20 8JB, United Kingdom', '1986-01-04', 0, 0, 'itsuki213', '2019-09-21', 'iishii', '2016-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS778002618662', '竹内健太', 1, '+86 20-625-0677', 1, '044841455785257345', '中国广州市天河区天河路511号41号楼', '1986-04-07', 0, 0, 'kentake', '2020-12-18', 'tkenta128', '2019-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS436086943369', '曾璐', 1, '+81 80-7684-8271', 2, '176884406213431026', '13F, 1-5-6, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1992-05-11', 0, 0, 'zeng5', '2003-04-06', 'zenlu', '2013-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS079693135560', '余安琪', 0, '+44 (1865) 85 3598', 3, '078213388995195874', 'Block 11, 967 Park End St, Oxford, OX1 1JD, United Kingdom', '1987-07-06', 0, 0, 'anqyu', '2017-12-04', 'anqi9', '2012-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS430149102619', '江志明', 0, '+1 212-654-7363', 1, '606259844752821738', '411 West Houston Street Suite 27, New York, NY 10014, United States', '1991-12-19', 0, 0, 'chimingkong', '2010-07-26', 'cmk', '2008-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS976327271119', '長谷川大輔', 0, '+86 760-1671-1388', 2, '296019239699368945', 'No.13 building, 98 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1985-06-08', 0, 0, 'hasegawadaisuke', '2012-09-28', 'dahase', '2019-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS567172971281', 'Edward Grant', 1, '+81 90-8699-4628', 4, '470352336848132484', 'Rm. 33, 1 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1995-08-30', 0, 0, 'edward309', '2019-03-05', 'grantedward3', '2004-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS428851491499', '曾曉彤', 1, '+86 28-528-4920', 2, '333824210926447639', '中国成都市锦江区红星路三段657号华润大厦46室', '1998-04-04', 0, 0, 'tsanght1989', '2001-06-05', 'hiutungtsang', '2013-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS535739195618', '梁富城', 1, '+81 3-0023-0561', 4, '640054523900674091', '12-kai, 1-5-18, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1996-03-31', 0, 0, 'fushingleu1105', '2014-10-30', 'fushingleung', '2008-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS553908872323', '朱岚', 1, '+81 52-962-6054', 2, '247269055336021886', '44-kai, 2-5-11 Chitose, Atsuta Ward, Nagoya, Japan', '1991-07-12', 0, 0, 'zhlan', '2001-08-06', 'zhulan', '2016-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS609969254610', '尹岚', 0, '+86 10-100-1637', 3, '991075664497595557', 'Room 47, CR Building, 540 FuXingMenNei Street, XiCheng District, Beijing, China', '1998-05-19', 0, 0, 'lyin', '2004-11-27', 'lan520', '2004-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS968126477755', 'Jack Warren', 1, '+86 152-7785-3300', 4, '872715682183922607', 'No.6 building, 62 Binchuan Rd, Minhang District, Shanghai, China', '1990-11-28', 0, 0, 'warren9', '2020-09-27', 'warrenjack', '2014-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS462117680930', '阎杰宏', 1, '+81 3-2651-6235', 0, '780347842602288636', 'Rm. 44, 1-5-3, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-03-20', 0, 0, 'yan2', '2007-12-13', 'jy207', '2005-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS281114780991', '許梓晴', 0, '+44 7916 701285', 0, '994593919485129754', 'Block 38, 524 Park End St, Oxford, OX1 1JD, United Kingdom', '1993-07-21', 0, 0, 'tshui', '2016-10-31', 'hui429', '2002-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS944260528724', '藤井玲奈', 0, '+44 7043 184779', 2, '119799617323562205', 'No.29 Main building, 304 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1993-01-10', 0, 0, 'renafujii', '2013-03-16', 'fujiir', '2006-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS613797503420', '官詠詩', 0, '+86 161-6831-6050', 3, '535963035767779746', 'No.13 building, 362 Huanqu South Street 2nd Alley, Dongguan, China', '1989-10-20', 0, 0, 'koowingsze', '2017-04-02', 'wingszek', '2005-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS162765600274', '吕秀英', 1, '+1 312-959-8815', 1, '715545312662241612', '919 North Michigan Ave Suite 39, Chicago, IL 60611, United States', '1996-04-03', 0, 0, 'xiuyinglu825', '2018-11-13', 'lxiuying906', '2019-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS497935506298', '金子七海', 0, '+86 145-5454-4887', 2, '248092744215740980', '中国深圳罗湖区田贝一路832号45楼', '1991-04-03', 0, 0, 'kaneko330', '2017-06-27', 'nanami314', '2001-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS928255301993', 'Mark Hughes', 1, '+86 20-2104-6190', 1, '025893030427281128', 'No.45 building, 139 Jiangnan West Road, Haizhu District, Guangzhou, China', '1990-07-24', 0, 0, 'hm1', '2002-07-15', 'hughes1101', '2021-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS309956730020', '上野七海', 1, '+86 28-155-6509', 2, '020108017869654656', 'Room 42, No. 534, Shuangqing Rd, Chenghua District, Chengdu, China', '1996-07-04', 0, 0, 'uenonanami', '2014-09-04', 'nueno', '2015-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS454686537694', '崔志明', 1, '+44 (1223) 40 4280', 2, '958635970563729715', 'Unit 3, Oxford Eco Centre, 799 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1988-05-18', 0, 0, 'choicm', '2021-09-26', 'choicm', '2014-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS576187008196', '伍國榮', 1, '+44 (20) 8921 7921', 3, '350317888208970063', 'No.11 Main building, 714 Maddox Street, London, W1S 1PU, United Kingdom', '1989-12-17', 0, 0, 'kwokwingn', '2002-02-06', 'kwng', '2000-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS137794661439', 'Heather Chen', 0, '+81 66-532-0146', 1, '961740886846167346', '日本おおさかし近江堂一丁目7番6号28階', '1995-12-04', 0, 0, 'hche', '2005-06-20', 'cheheather91', '2020-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS301165788746', '武田大地', 1, '+44 (1223) 58 4810', 4, '901097825764287713', 'Unit 9, Oxford Eco Centre, 629 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1992-10-29', 0, 0, 'takedada', '2005-06-26', 'daichit16', '2014-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS610214002400', '段震南', 0, '+81 80-3771-2455', 1, '677739293479767268', '9F, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1997-12-30', 0, 0, 'duan09', '2016-01-14', 'dzhennan', '2015-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS813857600696', 'Joan Owens', 0, '+1 312-362-5987', 2, '882348563755580161', '74 Pedway Suite 6, Chicago, IL 60601, United States', '1992-11-02', 0, 0, 'ojoan412', '2015-07-02', 'owens11', '2007-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS915986554708', '樂德華', 1, '+1 718-367-3828', 2, '043582440326621375', '378 Flatbush Ave Apt 33, Brooklyn, NY 11225, United States', '1995-07-07', 0, 0, 'twlok', '2019-03-26', 'ltakw04', '2019-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS553238352529', '藍玲玲', 0, '+86 760-8285-7846', 3, '437294228169101771', 'No.6 building, 656 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1993-07-23', 0, 0, 'lll', '2018-08-09', 'lall6', '2000-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS087849824004', 'Henry Roberts', 1, '+81 70-9421-3582', 1, '201291885655931094', '日本札幌厚別区上野幌一条二丁目1番17号36号室', '1990-01-27', 0, 0, 'henry9', '2001-02-24', 'henryroberts5', '2000-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS632682708406', 'Deborah Morgan', 1, '+81 80-2547-9295', 1, '901858441712671757', '日本ならし学園南三丁目9番10号47階', '1990-06-08', 0, 0, 'morgan9', '2003-01-08', 'deborahm', '2020-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS946794677068', '福田海斗', 0, '+1 838-938-5604', 2, '299355474212436685', '613 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1995-11-27', 0, 0, 'fukai8', '2013-09-21', 'fukudaka6', '2019-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS477856195011', '許頴璇', 0, '+81 3-8332-5067', 3, '343659940482214404', '26-kai, 5-2-14 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1988-06-10', 0, 0, 'wingsuen219', '2006-11-18', 'huiwing', '2000-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS022731865048', '贺震南', 0, '+81 90-7073-4386', 0, '003618000080591232', '日本おおさかし西成区出城一丁目1番20号43号室', '1993-09-09', 0, 0, 'zhenhe6', '2002-10-16', 'zhe87', '2009-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS299849562097', '傅嘉伦', 0, '+86 21-2238-0024', 1, '982131542950471046', '中国上海市闵行区宾川路82号26室', '1995-12-06', 0, 0, 'fu00', '2016-12-07', 'fuji', '2019-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS125728307846', 'Josephine Davis', 0, '+86 164-7180-5880', 3, '513906456582374600', 'Room 36, CR Building, 553 Huanqu South Street 2nd Alley, Dongguan, China', '1996-06-04', 0, 0, 'jd801', '2015-12-29', 'jodavis89', '2019-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS654702249405', '清水七海', 0, '+86 755-6743-1777', 0, '196638388102221079', '中国深圳罗湖区清水河一路165号25楼', '1990-11-16', 0, 0, 'nshimizu11', '2007-11-10', 'nanami6', '2005-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS126796008024', 'Randall Murray', 0, '+86 141-8358-3557', 0, '195224615560226921', '中国广州市白云区小坪东路122号华润大厦36室', '1990-05-07', 0, 0, 'randallmurr1112', '2002-06-09', 'randamurr1104', '2007-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS177041663218', '梅曉彤', 0, '+81 66-868-6595', 4, '802791452372990391', '46-kai, 4-9-11 Kamihigashi, Hirano Ward, Osaka, Japan', '1992-05-23', 0, 0, 'mht', '2008-01-21', 'hiutungmu', '2018-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS746020279270', '戴岚', 1, '+1 213-137-6206', 2, '787748825789357514', '582 Wall Street Apartment 27, Los Angeles, CA 90003, United States', '1985-07-22', 0, 0, 'lan1984', '2003-03-10', 'dail704', '2001-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS796399055389', '石井舞', 0, '+81 90-6346-8080', 4, '904257951651038367', '7F, 2 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-07-25', 0, 0, 'maiishii9', '2010-03-30', 'maiishii', '2007-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS216052331587', '戴嘉伦', 1, '+86 28-756-0930', 2, '646596024748187160', 'No.31 building, 855 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1992-03-17', 0, 0, 'jialdai1941', '2011-01-06', 'jdai', '2016-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS494591471811', '吳頴璇', 1, '+81 80-8238-9160', 2, '748688376590571963', '22F, 3-27-13 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1994-09-12', 0, 0, 'wingsuen2', '2013-01-22', 'wingsuenng2016', '2019-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS155357259765', 'Rita Evans', 0, '+81 70-8725-3489', 2, '718928941739111656', '日本なごやし北区楠味鋺三丁目80番15号39号室', '1996-12-05', 0, 0, 'rievans', '2001-05-12', 'ritaev329', '2005-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS723974951578', '呂祖兒', 1, '+44 (121) 411 7412', 3, '858856974709881646', 'Unit 22, Oxford Eco Centre, 991 New Street, Birmingham, B2 4DB, United Kingdom', '1994-08-08', 0, 0, 'choyeelui', '2007-05-09', 'cylui', '2008-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS509693896592', '安藤凛', 0, '+44 (116) 006 7718', 2, '769521685193749586', 'Block 21, 306 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1997-02-17', 0, 0, 'rinan5', '2012-04-14', 'anrin123', '2006-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS176971342846', 'Tracy Jenkins', 1, '+81 90-6214-6452', 3, '853131874405071269', 'Rm. 11, 13-3-11 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1993-09-05', 0, 0, 'trajenk', '2017-03-06', 'jentracy', '2004-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS139467379400', '曾子异', 1, '+1 330-716-4964', 3, '848677730461316676', '264 Riverview Road Apartment 49, Akron, OH 44313, United States', '1991-08-07', 0, 0, 'ziyizen', '2021-02-25', 'ziyizeng4', '2017-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS890359171178', '邱德華', 1, '+81 11-042-6763', 3, '254633939546181787', '45-kai, 5-2-6 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-03-09', 0, 0, 'takwah45', '2000-12-17', 'twyau', '2019-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS222239906787', '安藤蒼士', 1, '+86 10-6086-8761', 2, '857886651221209506', '中国北京市西城区西長安街780号18楼', '1992-12-07', 0, 0, 'aoshiando', '2013-01-05', 'anaoshi', '2002-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS730225503133', '武田玲奈', 1, '+81 74-122-5624', 3, '333134404457569950', '3-kai, 3-9-2 Gakuenminami, Nara, Japan', '1992-08-18', 0, 0, 'takedrena7', '2004-09-08', 'renatakeda10', '2017-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS117813738561', 'Francisco Hicks', 0, '+81 70-0870-3537', 0, '720612211538932469', '34-kai, 1-6-8, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1985-02-16', 0, 0, 'francisco4', '2016-02-01', 'fh69', '2019-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS604306269026', '房浩然', 1, '+1 330-181-8832', 1, '311081978214066819', '687 West Market Street Suite 36, Akron, OH 44333, United States', '1987-07-21', 0, 0, 'fonhoyin', '2019-11-21', 'fonghy', '2000-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS561552888521', '河野百恵', 0, '+86 755-730-4115', 1, '555324348901261424', '中国深圳龙岗区学园一巷538号31室', '1997-08-30', 0, 0, 'komomoe216', '2002-02-21', 'kono08', '2011-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS355825415930', '小山花', 0, '+86 10-2289-9555', 1, '623462941279063373', '中国北京市海淀区清河中街68号89号44号楼', '1986-09-27', 0, 0, 'koyamahana', '2009-08-12', 'koyama1214', '2009-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS407482384513', 'Marcus Henderson', 1, '+86 191-4273-2849', 0, '915212999257342372', '中国深圳罗湖区田贝一路165号17栋', '1993-09-24', 0, 0, 'henderson9', '2000-01-24', 'marcus69', '2020-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS722780688116', '餘慧儀', 0, '+81 52-368-0716', 4, '024070080756753264', '23F, 14 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-12-05', 0, 0, 'yuewaiyee3', '2006-07-31', 'waiyeeyu', '2018-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS470105538695', '樊惠敏', 0, '+86 159-8708-6252', 3, '538801729836955649', '中国成都市成华区双庆路409号华润大厦28室', '1988-05-20', 0, 0, 'fan2', '2000-03-14', 'waiman1948', '2008-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS186611139465', '江秀英', 1, '+86 760-931-9367', 0, '968606308999635997', '中国中山紫马岭商圈中山五路744号38栋', '1991-09-06', 0, 0, 'jx1963', '2019-07-01', 'xjiang5', '2019-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS812719142361', '方惠敏', 0, '+81 11-411-7629', 2, '842790097847625122', '24F, 2-1-12 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1987-06-05', 0, 0, 'wmfong', '2004-10-09', 'fong87', '2009-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS154847140905', 'Louis Hicks', 1, '+81 70-5400-4582', 0, '465972358364627711', '日本東京中央区銀座三丁目12番11号22階', '1992-07-03', 0, 0, 'hiclouis', '2000-04-16', 'hickslouis', '2011-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS175149587223', '野村桜', 0, '+81 52-975-5305', 4, '321013143331679658', '日本なごやし瑞穂区河岸町四丁目20番1号19階', '1998-05-18', 0, 0, 'snom5', '2003-04-23', 'sakurnomura', '2014-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS139625314728', 'Carolyn Shaw', 1, '+86 137-2734-8734', 1, '006099379750489458', '中国深圳罗湖区蔡屋围深南东路219号23栋', '1987-05-31', 0, 0, 'shaw3', '2003-02-01', 'shaw9', '2014-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS895311028555', '新井愛梨', 0, '+81 80-5874-3723', 1, '753581129645239762', '1-kai, 1-1-16 Deshiro, Nishinari Ward, Osaka, Japan', '1996-07-25', 0, 0, 'airiarai921', '2021-04-30', 'airiarai19', '2000-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS857357915453', '湯慧珊', 0, '+86 769-9514-1553', 0, '861853636411308047', '中国东莞东泰五街107号49号楼', '1990-04-09', 0, 0, 'waisant', '2020-11-13', 'tong209', '2017-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS006445560647', 'Hazel Mitchell', 0, '+86 760-7215-3216', 1, '824573276942681481', '中国中山乐丰六路130号13楼', '1997-08-10', 0, 0, 'mitchellhazel709', '2007-12-25', 'ham47', '2012-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS877988947756', 'Jerry Hamilton', 1, '+81 3-9677-8057', 3, '654759672735588964', '1F, 1-5-5, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-04-25', 0, 0, 'hamiltonjerry', '2000-01-12', 'jerry5', '2000-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS468549144227', '贾宇宁', 1, '+81 80-3794-4143', 1, '335703132754343679', '43F, 3-15-1 Ginza, Chuo-ku, Tokyo, Japan', '1991-11-07', 0, 0, 'jiyuning1221', '2007-05-09', 'yuning7', '2000-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS351297743976', '陳潤發', 0, '+81 70-0687-5794', 1, '992373842218868464', '日本おおさかし東住吉区東田辺三丁目27番6号29階', '1994-11-16', 0, 0, 'yunfat53', '2010-07-27', 'yfchan58', '2015-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS600370254322', '餘明', 0, '+44 (1865) 14 6019', 3, '603723181598307956', 'Unit 11, Oxford Eco Centre, 524 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1986-10-09', 0, 0, 'miyue', '2020-02-16', 'mingyue', '2003-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS392250140683', '赵睿', 1, '+86 198-9314-8575', 0, '258693365210661238', 'Room 47, 986 Ganlan Rd, Pudong, Shanghai, China', '1996-06-14', 0, 0, 'ruiz', '2003-10-04', 'ruzhao', '2000-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS671699050333', '羅國榮', 1, '+44 5085 989561', 0, '837400274782390289', 'Block 16, 592 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1995-01-21', 0, 0, 'kwl', '2019-12-11', 'kwokwinglo6', '2016-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS002910558928', 'Marvin Vargas', 1, '+44 5076 776726', 1, '163619852519108029', 'Unit 38, Oxford Eco Centre, 420 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1987-06-15', 0, 0, 'marvinvarga7', '2016-11-28', 'vargas202', '2001-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS096136142987', 'Amber Black', 1, '+81 70-7532-4686', 3, '477021086462924336', '12F, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1991-07-21', 0, 0, 'blaamb', '2000-11-16', 'blamber1123', '2008-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS184207139817', '叶震南', 0, '+81 90-4608-9988', 2, '300156192019264922', '日本札幌白石区菊水三条五丁目2番12号3階', '1986-09-12', 0, 0, 'zhye', '2020-07-06', 'yezhe618', '2017-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS243867631895', '野口一輝', 1, '+1 213-715-2470', 3, '844154035117652747', '306 Sky Way Suite 7, Los Angeles, CA 90043, United States', '1990-04-14', 0, 0, 'ikkin74', '2021-07-29', 'noguchi07', '2003-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS346331483802', '森田美咲', 1, '+44 (161) 124 7251', 0, '385506294571377562', 'Unit 29, Oxford Eco Centre, 656 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-05-11', 0, 0, 'moritami', '2020-02-22', 'misaki69', '2014-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS875419934893', '邵力申', 1, '+86 10-4780-0397', 3, '355029922773167902', 'No.28 building, 605 Dong Zhi Men, Dongcheng District, Beijing, China', '1992-03-06', 0, 0, 'liksun2', '2009-08-03', 'sliksun', '2000-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS955419575452', '松田拓哉', 1, '+81 11-485-2293', 0, '977623278255441471', '日本札幌白石区菊水三条五丁目4番10号44階', '1995-11-29', 0, 0, 'matsutakuya2003', '2006-02-17', 'tma', '2020-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS847135740092', '前田美咲', 1, '+1 330-838-3340', 0, '677323999470908705', '46 Collier Road Apartment 48, Akron, OH 44320, United States', '1999-02-06', 0, 0, 'misamaeda2', '2008-05-29', 'maedam5', '2020-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS793989419790', 'Justin Spencer', 0, '+81 90-3651-3218', 3, '727372360424467630', '30-kai, 5-2-12 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1988-08-18', 0, 0, 'justinsp', '2021-06-11', 'spenj', '2008-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS326837250116', 'Amanda Hamilton', 0, '+81 66-033-5922', 1, '928917031479805477', '5-kai, 1-1-4 Deshiro, Nishinari Ward, Osaka, Japan', '1993-01-10', 0, 0, 'ha10', '2019-01-22', 'amanda322', '2009-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS989868700712', '贺宇宁', 0, '+81 11-468-4175', 1, '945940582822020579', 'Rm. 42, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1997-05-21', 0, 0, 'heyuni', '2019-10-07', 'heyunin825', '2014-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS250563277286', '長谷川樹', 1, '+81 52-338-9025', 2, '831515664173690570', 'Rm. 17, 11 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1992-02-18', 0, 0, 'hasegawa408', '2012-07-22', 'hasegawaitsu5', '2006-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS840469075446', '彭德華', 0, '+81 70-5973-1630', 1, '310045891698838322', '日本札幌白石区菊水三条五丁目2番14号19号室', '1985-02-20', 0, 0, 'twpang82', '2013-06-21', 'ptw', '2017-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS567086945337', '中野陽菜', 0, '+81 80-6020-0705', 4, '663113639492415744', '日本ならし学園南三丁目9番13号31号室', '1992-05-19', 0, 0, 'nakahina', '2002-01-06', 'nakanhina', '2016-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS617997494232', '孙致远', 0, '+44 (151) 774 0873', 3, '124840350704425044', 'Unit 3, Oxford Eco Centre, 75 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-03-19', 0, 0, 'zhiyuansun', '2020-03-05', 'szhiy203', '2006-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS528365008414', '朱璐', 0, '+81 70-7543-1946', 2, '200949603247949072', '日本なごやし北区楠味鋺三丁目80番8号41号室', '1995-12-21', 0, 0, 'luzhu6', '2004-10-11', 'luz5', '2002-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS295821900836', '郭嘉伦', 0, '+44 (121) 227 2737', 1, '677801606290198863', 'Block 37, 193 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1987-05-05', 0, 0, 'jialung', '2009-04-16', 'jialg', '2006-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS524896396894', '范安琪', 1, '+86 134-7199-0956', 1, '033264884010989046', '中国上海市浦东新区健祥路456号25栋', '1988-12-20', 0, 0, 'fananqi', '2016-03-20', 'anqif90', '2010-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS289306875735', 'Fred Jackson', 0, '+86 177-6602-6880', 3, '067952491080268954', 'No.26 building, 106 Ganlan Rd, Pudong, Shanghai, China', '1992-06-03', 0, 0, 'jackfred4', '2001-03-14', 'fredjackson', '2021-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS976088752391', '麥明', 0, '+44 (1223) 54 7511', 1, '319750895549456232', 'Block 2, 915 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1993-09-23', 0, 0, 'makm718', '2014-05-09', 'maming', '2016-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS726235965508', '馬浩然', 0, '+1 838-443-1783', 0, '757938483448274189', '195 Central Avenue Apt 35, Albany, NY 12205, United States', '1987-12-21', 0, 0, 'hoyin6', '2016-06-05', 'hyma5', '2005-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS582975784011', 'Justin James', 1, '+86 159-9908-4602', 3, '383244167048074063', '中国东莞东泰五街336号26栋', '1986-08-31', 0, 0, 'justinj', '2006-03-09', 'jamesjustin', '2011-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS910373906493', '田震南', 0, '+1 213-953-9898', 1, '988360493833471669', '71 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1986-01-12', 0, 0, 'tianz', '2021-06-04', 'tian112', '2010-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS813221282650', '曹詠詩', 0, '+1 213-337-6788', 1, '138477164205461563', '395 Figueroa Street Apt 18, Los Angeles, CA 90037, United States', '1994-11-28', 0, 0, 'chwingsze', '2004-06-18', 'cwingsze', '2015-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS664675301510', '呂俊宇', 0, '+44 7937 636325', 3, '490731524998138876', 'No.22 Main building, 800 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1995-09-13', 0, 0, 'lui204', '2006-06-27', 'lui7', '2014-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS525639154460', '山下健太', 1, '+1 212-160-5033', 3, '388982687875114288', '896 Wooster Street 3rd Floor, New York, NY 10012, United States', '1995-12-23', 0, 0, 'yamashitak', '2011-11-05', 'keyam', '2005-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS586406107636', '楊安娜', 1, '+1 213-048-5676', 2, '614431117631785858', '995 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1991-10-10', 0, 0, 'yeung2014', '2005-07-22', 'onyeun', '2018-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS134967750672', '鄺心穎', 0, '+81 80-4978-4724', 0, '302428292239434868', '日本東京中央区銀座三丁目12番7号34号室', '1997-10-29', 0, 0, 'sumwing213', '2014-11-17', 'sumwingkw44', '2002-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS765845489619', '大塚結翔', 1, '+1 213-787-0955', 0, '627616902704383385', '278 Wall Street Apt 48, Los Angeles, CA 90003, United States', '1985-06-11', 0, 0, 'otyuito45', '2008-01-22', 'yuio', '2010-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS331869103667', '呂家玲', 1, '+81 66-300-7397', 0, '954049694381876397', '日本おおさかし近江堂一丁目7番3号9階', '1985-05-24', 0, 0, 'luika6', '2014-01-25', 'kaling9', '2002-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS791150271132', '蔡祖兒', 1, '+81 90-1229-9268', 2, '304182601395157140', '43F, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1987-10-17', 0, 0, 'choyeechoi80', '2021-09-16', 'choyeechoi10', '2001-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS059620743902', '胡國賢', 0, '+81 3-4154-1348', 2, '724421839014404082', '30F, 3-15-7 Ginza, Chuo-ku, Tokyo, Japan', '1992-03-13', 0, 0, 'wukwokyin329', '2013-06-30', 'kywu', '2008-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS879229711518', '藤發', 1, '+86 769-9414-7299', 1, '283141716369727735', 'No.7 building, 285 Dongtai 5th St, Dongguan, China', '1990-08-22', 0, 0, 'fatt', '2022-03-03', 'tang1225', '2014-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS723830654290', '關惠敏', 1, '+86 769-074-6656', 1, '595961467745769458', 'No.9 building, 746 Kengmei 15th Alley, Dongguan, China', '1985-09-11', 0, 0, 'kwan313', '2013-03-09', 'kwm', '2007-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS191967172397', '顧小慧', 0, '+86 156-3020-9108', 4, '756992353392030604', '中国中山乐丰六路314号40栋', '1996-12-01', 0, 0, 'siuwai809', '2005-12-11', 'ksiuwai', '2009-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS302305677885', 'Joshua Chavez', 0, '+44 7234 214305', 0, '435851251148573998', 'Unit 23, Oxford Eco Centre, 690 Mosley St, Manchester, M2 3AQ, United Kingdom', '1996-04-11', 0, 0, 'chavezjoshua', '2017-12-01', 'chjoshu', '2011-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS094070147834', 'Scott Hawkins', 0, '+44 (20) 5092 5771', 2, '868477132651667059', 'No.35 Main building, 464 Maddox Street, London, W1S 1PU, United Kingdom', '1990-07-09', 0, 0, 'hawkinssco', '2005-04-28', 'hawkscot', '2016-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS924069058475', '高田美羽', 1, '+44 (121) 598 6371', 3, '666875175976965243', 'Block 21, 426 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1995-01-23', 0, 0, 'takamiu', '2014-04-22', 'takadamiu', '2018-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS240368941424', 'Christopher Williams', 1, '+44 (121) 076 5303', 3, '405226387283462925', 'Block 35, 939 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1992-01-08', 0, 0, 'christopherwill', '2017-04-05', 'willchristopher', '2001-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS865709005599', '潘詩涵', 0, '+81 70-8679-5679', 1, '705449811390571591', '日本札幌清田区真栄四条五丁目19番4号26階', '1995-08-31', 0, 0, 'shihan214', '2010-09-12', 'pan69', '2007-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS666045218313', 'Julie Clark', 0, '+81 3-5476-7862', 1, '740432235073736101', '22-kai, 5-2-17 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1992-04-27', 0, 0, 'juclark86', '2016-05-30', 'juclar1217', '2017-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS553065441856', '史秀英', 0, '+44 7294 984003', 3, '310570582144085144', 'No.4 Main building, 995 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1988-07-19', 0, 0, 'shix', '2004-09-08', 'xiuyshi10', '2009-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS096589243962', 'Amanda Kennedy', 0, '+44 7095 696448', 2, '401445567692453255', 'No.20 Main building, 805 Maddox Street, London, W1S 1PU, United Kingdom', '1994-03-17', 0, 0, 'kennamanda', '2011-03-02', 'amandaken', '2014-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS014411968798', '大塚海斗', 1, '+86 137-5145-4501', 1, '625493836526953970', 'No.23 building, 862 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1999-02-06', 0, 0, 'kaitootsu8', '2009-03-20', 'kotsuka402', '2018-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS712473002117', 'Jacqueline Miller', 0, '+1 838-288-1072', 1, '583109042360777380', '260 Broadway Suite 11, Albany, NY 12207, United States', '1990-12-08', 0, 0, 'mjacqueline515', '2002-03-19', 'jm2015', '2021-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS111057956253', '古志明', 1, '+1 330-174-5319', 3, '367171240289626913', '178 Ridgewood Road Suite 32, Akron, OH 44321, United States', '1994-07-17', 0, 0, 'cmku', '2008-04-20', 'ku6', '2006-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS720625014784', 'Debbie Russell', 1, '+44 7046 445478', 1, '400416784174575508', 'Unit 25, Oxford Eco Centre, 775 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1988-10-09', 0, 0, 'rud', '2012-11-17', 'debbier', '2011-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS426761174132', '佐藤美羽', 0, '+86 150-5907-7602', 1, '566774282789062085', 'No.50 building, 384 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1995-12-15', 0, 0, 'satomiu', '2002-03-28', 'miusa127', '2021-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS951036201455', '叶睿', 0, '+1 718-668-4339', 0, '847731692304792183', '382 Flatbush Ave Apartment 36, Brooklyn, NY 11225, United States', '1998-04-28', 0, 0, 'yrui6', '2002-12-28', 'yrui2001', '2018-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS426761838342', '朱璐', 1, '+44 (151) 341 3059', 0, '382856163700687260', 'No.42 Main building, 248 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1989-05-18', 0, 0, 'zhulu', '2001-01-23', 'lu121', '2011-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS571424830233', '高木海斗', 1, '+44 (1223) 35 2236', 3, '589317441614294238', 'Block 10, 653 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1998-06-04', 0, 0, 'kaito1945', '2009-02-13', 'kaitot', '2009-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS056294282800', '内田花', 1, '+44 5714 858825', 2, '440144668004538748', 'Unit 40, Oxford Eco Centre, 462 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1988-05-25', 0, 0, 'hauchida', '2006-03-16', 'uchida4', '2016-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS925539671963', '村田桜', 1, '+86 184-6999-1417', 0, '418617916604624656', '中国中山京华商圈华夏街768号华润大厦5室', '1990-11-12', 0, 0, 'sakuram1968', '2000-08-13', 'mursaku', '2021-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS998456559604', '李致远', 1, '+1 718-300-8614', 1, '559604624052927650', '621 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1996-10-28', 0, 0, 'lizhiyuan7', '2008-04-19', 'lzh', '2001-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS225280649039', '伊藤拓哉', 1, '+81 3-0161-4540', 3, '483335899949903412', '日本東京品川区東五反田五丁目2番12号41号室', '1995-09-27', 0, 0, 'takuyit', '2006-11-10', 'itot', '2018-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS816395186445', '木下美咲', 1, '+81 70-5594-6316', 3, '785819750723136902', '45-kai, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1988-05-22', 0, 0, 'misakikin9', '2000-12-18', 'misakkinoshita5', '2006-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS815455762213', '陳嘉欣', 1, '+86 28-8023-4102', 0, '296674511495196350', 'Room 29, 943 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1992-09-05', 0, 0, 'ckaryan', '2001-01-05', 'karyanchan', '2016-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS615094687632', '阎云熙', 0, '+1 718-337-8270', 3, '392966019951562520', '1 Columbia St Apartment 9, Brooklyn, NY 11231, United States', '1985-12-07', 0, 0, 'yay627', '2021-05-29', 'yyun1970', '2014-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS977628447448', '田中舞', 1, '+81 70-7242-3216', 0, '932777930456859974', '日本なごやし北区清水三丁目19番11号7階', '1996-12-30', 0, 0, 'matanaka', '2004-05-04', 'tanakama', '2002-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS611328410509', '邓致远', 1, '+81 80-3517-4898', 3, '755465927373393588', 'Rm. 49, 2-1-16 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1995-10-24', 0, 0, 'zhiyuanden219', '2002-02-08', 'zdeng', '2000-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS850654962986', '村上美羽', 0, '+81 52-612-9954', 3, '988873100538249574', '日本なごやし守山区瀬古東二丁目171番13号25階', '1993-02-17', 0, 0, 'miumura401', '2008-12-20', 'miu520', '2004-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS348869516990', 'Todd Moreno', 1, '+81 52-301-5668', 2, '370512092653518600', '日本なごやし北区清水三丁目19番17号16号室', '1990-03-18', 0, 0, 'mtodd56', '2007-01-19', 'toddm1', '2020-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS941357257883', '谭晓明', 0, '+81 80-0142-6237', 2, '954886352539630849', 'Rm. 8, 4-9-13 Kamihigashi, Hirano Ward, Osaka, Japan', '1994-01-22', 0, 0, 'tanxiaoming', '2015-03-24', 'xiaomingt67', '2016-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS301982458650', '萬浩然', 1, '+44 5231 752491', 2, '538690075487573565', 'Unit 33, Oxford Eco Centre, 177 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1986-07-10', 0, 0, 'hym', '2015-08-15', 'mhoyin1', '2020-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS853445831385', '野口拓哉', 1, '+1 212-931-8590', 4, '985523983992704909', '490 Canal Street Apt 28, New York, NY 10013, United States', '1985-10-28', 0, 0, 'taknoguchi', '2007-01-03', 'nt705', '2014-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS872940812656', '遠藤七海', 0, '+81 11-297-3164', 2, '286356616716779865', '日本札幌白石区菊水三条五丁目4番13号38階', '1990-11-02', 0, 0, 'enanam', '2021-06-02', 'nanamiendo51', '2018-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS273282714163', 'Robert Soto', 1, '+44 5917 570850', 0, '994886929690273112', 'Unit 16, Oxford Eco Centre, 579 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1997-07-31', 0, 0, 'sotor', '2011-05-08', 'soto8', '2018-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS571430920449', '成慧敏', 0, '+81 52-307-9357', 0, '647480818117394363', '14F, 3-19-12 Shimizu, Kita Ward, Nagoya, Japan', '1996-12-05', 0, 0, 'shingwm8', '2017-11-18', 'waimashing9', '2021-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS963527501500', '周頴璇', 1, '+44 5059 099215', 4, '619760875300191855', 'Flat 27, 708 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1987-09-21', 0, 0, 'wschow', '2007-08-10', 'chow6', '2014-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS134645974378', 'Walter Thomas', 1, '+86 148-3279-2888', 3, '406144284944646702', 'Room 1, CR Building, 764 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1999-02-26', 0, 0, 'thomawalter8', '2008-01-23', 'walt', '2000-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS475757596123', '朱家玲', 1, '+86 755-3449-4020', 2, '086392658852854870', 'Room 15, CR Building, 341 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1998-10-17', 0, 0, 'ckl1109', '2020-10-10', 'ckaling', '2021-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS131980986478', '野口光莉', 0, '+81 11-724-6457', 1, '098971093556525428', '日本札幌中央区宮の森四条六丁目1番6号16階', '1985-10-31', 0, 0, 'noghi5', '2006-09-08', 'hikarnoguchi521', '2000-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS622968279699', '小川蒼士', 0, '+81 90-5783-7371', 2, '643804819157949792', 'Rm. 16, 3-27-17 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1995-01-01', 0, 0, 'aoshi5', '2003-01-19', 'oaoshi', '2004-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS756416454798', '葉玲玲', 1, '+86 21-590-8230', 1, '395640365891617050', '中国上海市徐汇区虹桥路269号17室', '1989-04-02', 0, 0, 'yiplin60', '2008-04-14', 'llyi', '2020-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS967862506876', '石井拓哉', 0, '+81 80-0656-2198', 3, '259958089580474013', '日本札幌中央区宮の森四条六丁目1番12号47号室', '1990-11-29', 0, 0, 'takuya2', '2015-05-14', 'takuyishi517', '2005-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS887312931465', '林慧敏', 1, '+86 21-793-0282', 3, '369674892360491089', '中国上海市浦东新区橄榄路367号23楼', '1988-01-11', 0, 0, 'wmlam', '2019-07-25', 'waiman417', '2019-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS747228634305', 'Susan Perez', 0, '+86 755-6861-0633', 0, '774505372273574877', 'Room 44, CR Building, 221 Jingtian East 1st St, Futian District, Shenzhen, China', '1992-02-14', 0, 0, 'perezsusan', '2009-07-16', 'susanperez3', '2006-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS477975531500', '關朝偉', 0, '+86 148-0127-5005', 1, '783405336915369542', 'No.25 building, 759 Jiangnan West Road, Haizhu District, Guangzhou, China', '1991-11-02', 0, 0, 'cwkwan', '2008-12-20', 'cwk6', '2017-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS243338562632', '曹朝偉', 0, '+44 7194 092172', 2, '796850674976208397', 'Flat 1, 394 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1993-10-18', 0, 0, 'chiuwaich', '2021-05-16', 'chocw829', '2020-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS107302041756', '薛慧敏', 1, '+81 80-1039-0746', 2, '255478600200379854', '日本東京渋谷区代々木二丁目3番3号46階', '1993-05-23', 0, 0, 'waiman1022', '2008-10-19', 'wmsit', '2000-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS276779754118', '钟岚', 0, '+86 152-6986-8529', 2, '457511654797342146', 'Room 20, CR Building, 573 Ganlan Rd, Pudong, Shanghai, China', '1986-01-16', 0, 0, 'lanzh', '2000-08-25', 'zhong1', '2020-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS969545127995', '丸山明菜', 0, '+1 330-916-1459', 0, '764309952290872740', '704 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1994-10-10', 0, 0, 'amaruyama126', '2008-12-30', 'maruyamaa', '2020-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS388650071007', '吳永權', 1, '+86 160-3291-5852', 2, '003499612880780346', 'No.30 building, 603 Dong Zhi Men, Dongcheng District, Beijing, China', '1988-10-16', 0, 0, 'wingkuenng', '2010-07-24', 'ngwk09', '2016-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS106307102239', 'Ray Parker', 0, '+86 142-6214-2372', 3, '988005047488122779', 'Room 17, CR Building, 943 Jianxiang Rd, Pudong, Shanghai, China', '1996-05-30', 0, 0, 'parkerray', '2017-01-05', 'rapar', '2008-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS171503741287', '和田陸', 0, '+44 7874 042461', 1, '543589995161637312', 'Unit 14, Oxford Eco Centre, 15 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1992-12-28', 0, 0, 'riku822', '2009-10-13', 'rwada', '2017-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS230436646589', '梁青雲', 1, '+81 3-5802-9934', 0, '928399081688389590', '日本東京千代田区丸の内一丁目6番17号50階', '1992-07-04', 0, 0, 'chingwanleung', '2002-07-12', 'leung5', '2014-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS464001366371', '常嘉伦', 0, '+44 7957 904174', 1, '841140853016387868', 'Block 13, 716 New Street, Birmingham, B2 4DB, United Kingdom', '1997-09-03', 0, 0, 'changjialun', '2020-04-26', 'changjialun526', '2000-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS178478635873', 'Amanda Hunt', 0, '+44 7762 599872', 3, '489680054781774953', 'Flat 1, 646 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1985-07-31', 0, 0, 'hunt406', '2021-05-03', 'amandahunt1940', '2004-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS133841979991', '冯云熙', 0, '+1 838-532-6755', 3, '449803660673698735', '886 Lark Street Apartment 12, Albany, NY 12210, United States', '1996-09-18', 0, 0, 'fengyunxi2006', '2012-05-26', 'fengy7', '2007-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS643837368595', '小川和真', 0, '+44 (116) 346 0076', 0, '216701785556997816', 'Block 35, 625 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1996-04-21', 0, 0, 'kazumaogawa58', '2000-05-27', 'kazog3', '2018-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS063737389233', '許朝偉', 0, '+81 70-7619-0728', 3, '188452089675544067', '日本札幌豊平区豊平三条十三丁目3番8号50号室', '1998-08-06', 0, 0, 'cwhui910', '2001-07-15', 'cwhui', '2016-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS725636581949', '邵頴思', 0, '+86 175-8866-0192', 2, '114497305394136485', 'Room 21, 511 Tianhe Road, Tianhe District, Guangzhou, China', '1998-06-22', 0, 0, 'wss415', '2007-09-29', 'siuwingsze', '2001-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS266890599767', '岡本瑛太', 0, '+81 3-4917-3872', 2, '990623728558756981', '日本東京千代田区丸の内一丁目6番11号19階', '1990-03-10', 0, 0, 'eo1960', '2017-05-31', 'eiokamoto', '2009-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS026676944830', '崔永權', 0, '+81 3-0098-7815', 2, '215659168984396135', 'Rm. 27, 3-15-9 Ginza, Chuo-ku, Tokyo, Japan', '1997-06-07', 0, 0, 'wingkuen61', '2004-07-21', 'wkchoi6', '2018-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS288946724843', '今井愛梨', 0, '+1 614-743-4530', 0, '577381112596653642', '40 Tremont Road Suite 11, Columbus, GA 43212, United States', '1997-08-17', 0, 0, 'aiim', '2021-06-04', 'imaairi', '2003-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS457770523874', '范岚', 0, '+81 52-645-0952', 3, '174609222025341265', '日本なごやし北区清水三丁目19番10号43階', '1995-02-17', 0, 0, 'fan75', '2005-09-24', 'fan206', '2005-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS786441400670', '木下一輝', 1, '+44 (161) 106 8700', 3, '766388270500474117', 'Unit 44, Oxford Eco Centre, 667 Mosley St, Manchester, M2 3AQ, United Kingdom', '1995-07-30', 0, 0, 'ikki10', '2013-06-02', 'kinoi', '2022-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS441079855844', 'William Garcia', 1, '+86 158-7736-6467', 2, '675167361185988949', '中国深圳龙岗区学园一巷235号32号楼', '1993-07-02', 0, 0, 'willig', '2003-11-14', 'gawilli', '2015-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS252050086093', '梁睿', 0, '+81 52-614-6388', 0, '218638729588089994', '日本なごやし瑞穂区河岸町四丁目20番7号42号室', '1990-02-04', 0, 0, 'liangr', '2018-08-29', 'ruiliang', '2010-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS946639086134', '安藤絢斗', 1, '+1 213-450-5280', 4, '012877690341012014', '960 S Broadway Apartment 29, Los Angeles, CA 90015, United States', '1998-06-27', 0, 0, 'andoayato', '2002-10-12', 'aaya', '2003-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS247876005744', '高國權', 0, '+44 5964 307532', 2, '898054664759989828', 'Flat 18, 431 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1993-08-04', 0, 0, 'kao1998', '2010-04-23', 'kkkao426', '2017-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS343394583169', 'Anne Thompson', 0, '+86 152-4686-7635', 1, '726509247265977424', '中国北京市海淀区清河中街68号686号1楼', '1998-02-13', 0, 0, 'thompson5', '2000-11-06', 'thompsonanne2', '2002-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS248851658985', '西村湊', 1, '+86 10-4338-4200', 1, '989858785260768981', 'No.41 building, 580 East Wangfujing Street, Dongcheng District , Beijing, China', '1989-08-26', 0, 0, 'minaton', '2005-01-28', 'nishimuram2014', '2009-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS946892614986', '吳惠敏', 0, '+86 185-6775-3919', 3, '902026728392965485', 'Room 20, CR Building, 83 Dong Zhi Men, Dongcheng District, Beijing, China', '1998-11-28', 0, 0, 'waiman7', '2019-10-03', 'ngwm', '2018-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS630047753886', '橋本陸', 1, '+1 213-144-4589', 1, '438428245825834572', '263 Sky Way Apt 32, Los Angeles, CA 90043, United States', '1995-09-09', 0, 0, 'rikuhashimoto', '2007-05-28', 'rikuha', '2001-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS959939477573', '張頴璇', 1, '+81 11-744-3532', 2, '162554550844909925', '31F, 13-3-13 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1986-10-30', 0, 0, 'wingsuen54', '2002-06-08', 'cheungws7', '2018-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS690921405768', '宋震南', 1, '+1 312-138-9370', 2, '480655522047981959', '466 North Michigan Ave Apartment 10, Chicago, IL 60611, United States', '1990-07-24', 0, 0, 'zhenson', '2017-03-17', 'sozh', '2010-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS172700141048', '武晓明', 0, '+81 66-897-4329', 1, '711561656993871364', 'Rm. 49, 4-9-17 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-09-02', 0, 0, 'wuxiaoming1008', '2003-10-15', 'wux8', '2011-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS081816023206', '夏晓明', 0, '+44 5431 611539', 3, '391953759400059047', 'Unit 25, Oxford Eco Centre, 721 Redfern St, Liverpool, L20 8JB, United Kingdom', '1995-11-11', 0, 0, 'xiaoxia', '2019-10-06', 'xiaxi', '2022-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS379180094104', 'Jane Sanchez', 0, '+44 7154 461865', 2, '912164795167250392', 'Unit 42, Oxford Eco Centre, 557 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1993-12-02', 0, 0, 'sanchezj', '2021-02-14', 'jane86', '2005-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS039727022627', '常璐', 0, '+86 760-0425-1310', 2, '304675386122103015', 'No.20 building, 255 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1990-08-15', 0, 0, 'cl2016', '2004-08-13', 'lch722', '2018-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS943313980155', '金子愛梨', 1, '+86 755-891-8456', 3, '645755440632274537', 'Room 49, 543 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1989-05-13', 0, 0, 'kaneko102', '2015-07-09', 'akaneko', '2000-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS141453230896', '邱慧珊', 1, '+81 80-8983-9280', 2, '651954825416188376', '28-kai, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1989-08-12', 0, 0, 'yau13', '2011-11-04', 'yaws6', '2012-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS013973545359', 'Russell Scott', 1, '+44 7879 631755', 1, '119470492643667316', 'Flat 20, 166 New Street, Birmingham, B2 4DB, United Kingdom', '1989-11-07', 0, 0, 'scottr1230', '2016-01-14', 'rs1944', '2007-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS803971301924', '石川桜', 0, '+81 80-0537-9707', 4, '724231795686914309', '日本なごやし北区楠味鋺三丁目80番13号1階', '1994-01-09', 0, 0, 'ishikawa617', '2011-03-20', 'sakura06', '2015-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS040379060037', '馬詠詩', 1, '+86 135-6456-5150', 1, '151731835167169546', '中国成都市成华区二仙桥东三路972号华润大厦21室', '1985-12-09', 0, 0, 'mawingsze7', '2013-03-28', 'wingsze5', '2016-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS585026325896', '石璐', 1, '+81 11-797-5343', 1, '796192779008385475', '33F, 5-19-18 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1985-12-18', 0, 0, 'shi10', '2017-05-16', 'slu', '2021-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS558985692858', '田中聖子', 0, '+86 10-138-8403', 1, '524124578026680320', '中国北京市房山区岳琉路711号47号楼', '1990-04-23', 0, 0, 'tanakas', '2002-01-29', 'seiko1117', '2020-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS959326175754', '胡晓明', 0, '+81 52-371-2493', 4, '841243957939852861', 'Rm. 32, 19 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1994-03-04', 0, 0, 'huxiaoming', '2006-01-09', 'hxi1954', '2003-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS118037684878', '鄺國賢', 1, '+1 838-324-7998', 3, '096241284416227074', '83 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1988-09-20', 0, 0, 'kwokyin823', '2017-06-16', 'kwongkwokyin', '2006-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS540512419595', '陆詩涵', 1, '+81 11-819-9950', 3, '230803497284599215', '日本札幌清田区真栄四条五丁目19番3号33号室', '1994-07-08', 0, 0, 'shihan8', '2019-10-20', 'lushihan2005', '2015-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS596888763601', 'Linda Brown', 1, '+86 10-885-0563', 3, '520946246998167381', '中国北京市西城区西長安街247号21室', '1994-07-16', 0, 0, 'lbrow1', '2007-05-01', 'lbrow', '2016-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS256302059618', 'Frederick Payne', 1, '+86 20-756-6056', 3, '158863684576497463', '中国广州市天河区天河路451号18室', '1985-02-18', 0, 0, 'frederick1978', '2006-09-11', 'paynef', '2001-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS737415919065', '高田大和', 1, '+81 80-2650-5944', 4, '156696792889178832', '日本札幌厚別区上野幌一条二丁目1番9号42号室', '1997-11-25', 0, 0, 'yamato8', '2015-05-12', 'yamato98', '2006-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS803641860825', '韦子异', 1, '+86 769-591-8590', 4, '347586375907413863', '中国东莞环区南街二巷199号40室', '1985-05-18', 0, 0, 'ziyiwei96', '2015-03-13', 'zwe81', '2006-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS396718889569', '谢宇宁', 1, '+81 80-0354-0870', 0, '984656107160840112', '日本東京品川区東五反田五丁目2番5号12階', '1995-08-20', 0, 0, 'xy56', '2002-02-20', 'xiyuni2000', '2010-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS521484127212', 'John Perez', 1, '+86 194-2803-6384', 3, '891257067551963240', 'Room 36, 745 Sanlitun Road, Chaoyang District, Beijing, China', '1994-01-12', 0, 0, 'pj9', '2007-08-30', 'jop', '2019-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS385927735092', '松井美咲', 0, '+86 769-698-3026', 0, '019733435816989329', '中国东莞珊瑚路870号34栋', '1987-08-26', 0, 0, 'mimatsui', '2018-07-31', 'matsm90', '2002-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS493009996637', '渡部紗良', 1, '+1 718-824-9033', 4, '980726927529857299', '258 Flatbush Ave Suite 45, Brooklyn, NY 11225, United States', '1992-07-05', 0, 0, 'sarawa1', '2000-07-19', 'sara504', '2008-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS726044870909', '小野絢斗', 1, '+86 755-219-4355', 3, '472235733600921711', 'Room 22, 66 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1990-09-29', 0, 0, 'ayatoono', '2012-04-18', 'onoayato4', '2014-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS954286061689', '王詠詩', 0, '+1 838-752-7428', 3, '899719954122947475', '594 Central Avenue Apartment 5, Albany, NY 12206, United States', '1985-11-01', 0, 0, 'wingszewong131', '2015-04-19', 'wingsze93', '2002-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS299503378942', 'Eva Hunt', 0, '+44 (1223) 59 7886', 2, '413207438370615573', 'Flat 17, 807 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1993-01-20', 0, 0, 'evahunt', '2021-11-02', 'eh102', '2003-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS688927970781', '高木美月', 0, '+44 7626 514960', 3, '407596257947694470', 'Flat 30, 751 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-03-30', 0, 0, 'tami', '2013-06-21', 'mtakagi5', '2000-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS282307632648', '錢家強', 0, '+86 769-404-9282', 2, '047725975763982692', '32F, 878 Huanqu South Street 2nd Alley, Dongguan, China', '1985-09-27', 0, 0, 'chinkakeung', '2008-03-22', 'chkakeung', '2017-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS825084287447', 'Sharon Clark', 0, '+1 213-725-7817', 3, '546829791064421055', '490 Grape Street Apt 47, Los Angeles, CA 90002, United States', '1993-09-19', 0, 0, 'clarkshar', '2014-07-03', 'sharoncl824', '2001-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS230994195841', 'Thomas Salazar', 1, '+81 70-6615-5137', 2, '167135303586754038', '28F, 1-6-18, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1998-12-07', 0, 0, 'thomsal', '2017-04-26', 'salazthomas112', '2003-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS731773331326', '贾晓明', 1, '+81 66-251-3761', 3, '931094082644467624', '28F, 3-27-11 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1998-08-15', 0, 0, 'jixia61', '2008-02-29', 'xij508', '2000-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS326499418559', '邱惠妹', 1, '+81 90-5802-0799', 2, '801314221688297461', 'Rm. 28, 3-19-4 Shimizu, Kita Ward, Nagoya, Japan', '1993-04-16', 0, 0, 'huimei923', '2019-11-07', 'hmyau', '2019-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS609198721360', 'Jack Vasquez', 1, '+81 90-7624-6467', 2, '869545542009510807', 'Rm. 36, 12 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1990-07-01', 0, 0, 'jackvasquez10', '2014-12-21', 'jack1', '2017-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS052286427260', '戚慧琳', 1, '+86 159-8028-5657', 1, '297195321501542605', '中国北京市朝阳区三里屯路939号38室', '1990-02-17', 0, 0, 'wailam9', '2010-08-10', 'wailamchic1114', '2004-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS246659042802', '王詠詩', 1, '+81 52-496-2321', 2, '725438219646394030', '16-kai, 2-5-8 Chitose, Atsuta Ward, Nagoya, Japan', '1996-11-16', 0, 0, 'wong623', '2017-04-05', 'wingsze908', '2019-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS333151527682', '梁晓明', 1, '+44 (151) 408 5006', 3, '769411138477557755', 'Flat 9, 890 Hanover St, Liverpool, L1 4AF, United Kingdom', '1998-11-12', 0, 0, 'lx99', '2008-07-13', 'liang716', '2000-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS959163852301', '吳力申', 1, '+86 28-9748-3772', 1, '649184731237032864', '中国成都市成华区玉双路6号536号15室', '1992-07-06', 0, 0, 'ng702', '2005-06-10', 'likng5', '2018-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS277726585257', '斎藤涼太', 0, '+86 20-806-8613', 0, '352223637598280340', 'No.7 building, 540 Tianhe Road, Tianhe District, Guangzhou, China', '1994-10-21', 0, 0, 'sryot', '2015-08-02', 'rsaito703', '2006-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS606985018502', 'Charlotte Watson', 1, '+86 769-3653-2530', 0, '069879279177859939', '41F, 535 Shanhu Rd, Dongguan, China', '1994-03-04', 0, 0, 'watsonc', '2004-01-15', 'charlotte7', '2008-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS324098480889', '韦致远', 1, '+1 330-176-6219', 3, '108098648512531040', '66 Riverview Road Suite 48, Akron, OH 44313, United States', '1991-03-05', 0, 0, 'zwei67', '2019-09-19', 'zw7', '2018-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS381070046625', '叶晓明', 0, '+86 167-2131-8825', 1, '669924216878670383', '中国广州市白云区小坪东路112号27室', '1988-01-03', 0, 0, 'yexiaoming', '2010-08-16', 'xiay', '2018-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS566856928297', '丸山陽太', 1, '+86 168-2794-4468', 0, '936243718426096611', '中国北京市海淀区清河中街68号964号16号楼', '1986-04-22', 0, 0, 'yotamaruyama1122', '2022-03-01', 'mayota93', '2012-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS563434730391', '石井涼太', 0, '+86 178-5264-9615', 0, '394979765086586003', 'No.40 building, 561 68 Qinghe Middle St, Haidian District, Beijing, China', '1992-03-13', 0, 0, 'ishryota', '2018-03-13', 'iryota224', '2013-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS263816910873', '戴宇宁', 0, '+81 90-9153-6550', 4, '881444859448615904', '日本なごやし北区清水三丁目19番17号8階', '1986-06-05', 0, 0, 'daiyu', '2003-01-20', 'yunidai', '2014-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS255991253474', 'Eddie Ross', 0, '+86 10-500-6725', 3, '902187740384015819', '中国北京市西城区复兴门内大街983号华润大厦33室', '1996-05-13', 0, 0, 'eddie77', '2012-05-11', 'edro', '2001-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS244598312802', '近藤蒼士', 0, '+44 7327 700844', 4, '333119789462734306', 'Unit 29, Oxford Eco Centre, 928 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1996-05-22', 0, 0, 'kondoaoshi', '2003-08-26', 'akondo', '2019-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS853384743098', '邱子异', 0, '+86 769-5017-7620', 3, '797032921948022066', 'No.45 building, 796 Kengmei 15th Alley, Dongguan, China', '1998-02-20', 0, 0, 'qziyi1128', '2019-07-04', 'ziq', '2008-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS162119161292', '村田葉月', 0, '+86 141-7922-6130', 3, '897377502587790152', '中国中山京华商圈华夏街598号29室', '1990-05-27', 0, 0, 'murata107', '2017-11-18', 'hmurata05', '2010-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS900687557059', '黄子韬', 0, '+1 614-272-9072', 4, '609366241031976465', '24 East Cooke Road Apt 24, Columbus, GA 43214, United States', '1985-07-31', 0, 0, 'huangzitao', '2000-07-27', 'zhuang1', '2010-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS582215773999', '桜井聖子', 0, '+44 (1865) 23 9139', 1, '848113572078990404', 'Flat 12, 671 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1992-08-30', 0, 0, 'sakurseiko', '2008-01-28', 'sakurais', '2009-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS312014555010', '小野蓮', 1, '+86 769-9123-8673', 3, '470821344861155560', 'Room 28, CR Building, 575 Kengmei 15th Alley, Dongguan, China', '1995-01-02', 0, 0, 'renon', '2014-08-06', 'onore1013', '2015-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS58525615', '森田結翔', 0, '+86 172-0862-6583', 4, '989769667445921425', 'No.43 building, 92 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1989-08-23', 0, 0, 'moritayuito', '2010-02-15', 'moritayuito', '2001-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS28708110', '斎藤詩乃', 0, '+86 21-376-1814', 3, '481456160464972549', '11F, 147 Hongqiao Rd., Xu Hui District, Shanghai, China', '1991-11-22', 0, 0, 'shinos', '2007-08-22', 'shins5', '2002-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS31374205', '王慧珊', 1, '+86 137-2514-9400', 1, '807025892030392709', '中国深圳罗湖区田贝一路198号21室', '1990-08-30', 0, 0, 'wws', '2008-08-15', 'wows', '2006-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS07102101', '韩安琪', 1, '+81 90-3236-5837', 4, '423912402208871718', 'Rm. 1, 5-19-6 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1985-09-17', 0, 0, 'anqi10', '2020-09-28', 'haa', '2019-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS46749744', 'Anthony Hughes', 1, '+81 90-5526-0522', 3, '827925250053739393', 'Rm. 33, 2-1-6 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1988-08-02', 0, 0, 'anthonyhughes1', '2001-03-29', 'anthony1118', '2004-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS35847952', '阮志明', 1, '+44 (151) 702 7765', 2, '649891922616841764', 'Block 11, 812 Redfern St, Liverpool, L20 8JB, United Kingdom', '1994-06-06', 0, 0, 'chiming1983', '2008-06-04', 'chimingyue', '2020-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS35866068', '梁國賢', 1, '+81 70-8654-7682', 1, '267401616162851465', '日本おおさかし西成区出城一丁目1番7号47号室', '1993-05-29', 0, 0, 'lky621', '2006-10-04', 'kyleun8', '2007-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS27046109', '盧慧敏', 1, '+1 212-394-7578', 4, '237958070900382318', '798 Canal Street 3rd Floor, New York, NY 10013, United States', '1996-04-21', 0, 0, 'lowa', '2005-12-06', 'wmlo', '2017-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS68471469', '龚岚', 0, '+81 90-4389-0100', 1, '001581274433920073', 'Rm. 30, 5-19-6 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-04-15', 0, 0, 'gonglan10', '2007-06-04', 'golan99', '2019-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS97147709', 'Brian Reed', 1, '+86 10-999-7437', 3, '953906369768826350', '中国北京市海淀区清河中街68号62号35号楼', '1990-05-29', 0, 0, 'brianreed', '2010-10-23', 'reedbrian', '2002-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS56170683', '周致远', 1, '+1 718-118-3791', 3, '063119666160942417', '931 Bergen St Suite 25, Brooklyn, NY 11217, United States', '1991-11-28', 0, 0, 'zhouzhiyuan1981', '2002-09-19', 'zhou1203', '2009-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS63499013', '秦詩涵', 1, '+81 3-2914-7152', 3, '853817321130864703', 'Rm. 35, 1-6-15, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1991-05-24', 0, 0, 'qs1', '2006-11-18', 'shihan1960', '2007-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS29931240', '錢力申', 0, '+1 718-026-8254', 2, '344147572753346543', '519 Bergen St Suite 24, Brooklyn, NY 11217, United States', '1992-07-07', 0, 0, 'chin2017', '2012-01-22', 'chils', '2019-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS62328886', 'Denise Jackson', 1, '+81 52-828-4498', 1, '804211070119538836', '34-kai, 13 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1998-09-23', 0, 0, 'jacksonden6', '2004-06-30', 'jadenise57', '2008-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS17318422', 'Earl Payne', 1, '+86 197-1917-8334', 2, '686463537033339984', '46F, 759 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1989-05-21', 0, 0, 'payneea', '2008-06-16', 'pearl64', '2011-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS11647274', '谢安琪', 1, '+86 132-3708-4184', 2, '089520862214764634', 'No.2 building, 620 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1995-10-31', 0, 0, 'anqxie815', '2000-01-11', 'axie10', '2018-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS89925687', 'Stephen Lee', 0, '+1 330-597-3445', 1, '712735700182022995', '760 West Market Street Apartment 39, Akron, OH 44333, United States', '1987-12-12', 0, 0, 'lstephen', '2012-02-29', 'ls3', '2016-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS35851302', '青木凛', 1, '+1 312-147-8004', 2, '171977407769503301', '656 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1992-10-04', 0, 0, 'aorin213', '2017-08-03', 'riao', '2008-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS20382146', '岡本百花', 0, '+1 838-735-3852', 2, '588149021418406042', '325 Broadway Apartment 50, Albany, NY 12207, United States', '1986-04-01', 0, 0, 'moo', '2018-03-19', 'momokaokamo', '2017-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS24653250', '任青雲', 0, '+1 838-729-6162', 2, '291148644673002087', '63 State Street Suite 36, Albany, NY 12203, United States', '1985-01-18', 0, 0, 'yam4', '2008-04-30', 'yamchingwan', '2019-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS96392788', '馬浩然', 1, '+86 186-8410-7223', 3, '399000956927662646', '18F, 137 Xiaoping E Rd, Baiyun , Guangzhou, China', '1998-05-25', 0, 0, 'mahoyin209', '2019-02-22', 'ma4', '2005-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS18378069', '莫安琪', 0, '+81 11-657-5541', 1, '371873341299480184', 'Rm. 39, 13-3-9 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1990-09-17', 0, 0, 'amo', '2002-06-12', 'moanqi', '2011-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS62512566', '朱麗欣', 1, '+86 145-2073-6408', 2, '810865585262395135', '中国北京市东城区东单王府井东街5号华润大厦2室', '1989-11-30', 0, 0, 'laiyach', '2012-12-21', 'chu4', '2000-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS59392765', '關頴思', 1, '+81 90-3243-1894', 1, '204615058967298925', '日本札幌白石区菊水三条五丁目4番2号19階', '1989-07-10', 0, 0, 'wskwan', '2011-08-05', 'wingszekwan', '2001-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS93685640', '何璐', 0, '+81 66-682-2462', 4, '186677636404310290', '日本おおさかし西成区出城一丁目1番11号13号室', '1998-12-14', 0, 0, 'hl89', '2018-01-16', 'he5', '2005-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS15806775', 'Robin Allen', 1, '+86 193-9188-0671', 1, '173137143055863057', '中国成都市成华区玉双路6号775号13楼', '1992-12-16', 0, 0, 'allenrob', '2011-11-20', 'alrobin801', '2001-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS52912158', '彭嘉伦', 0, '+81 90-9341-9616', 2, '659656903096836770', '日本おおさかし平野区加美東四丁目9番19号47階', '1985-05-29', 0, 0, 'jialunpeng', '2002-07-07', 'pjialun', '2014-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS11652538', '曹霆鋒', 0, '+86 769-765-7136', 2, '798793874817869184', 'No.24 building, 536 Huanqu South Street 2nd Alley, Dongguan, China', '1991-06-04', 0, 0, 'cting18', '2015-03-26', 'tingfungcho', '2011-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS86182893', '周子异', 1, '+44 (161) 688 0154', 0, '849379671334474064', 'Unit 33, Oxford Eco Centre, 617 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1988-07-13', 0, 0, 'zhziyi', '2004-12-05', 'zhoziyi2008', '2019-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS39941457', '遠藤彩乃', 1, '+81 66-485-4584', 2, '255130626870419533', '日本おおさかし近江堂一丁目7番2号15号室', '1996-01-05', 0, 0, 'ayanoe', '2006-02-24', 'endayano5', '2006-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS28191789', 'April Lopez', 0, '+86 183-5018-5802', 2, '929068418348391598', '中国北京市东城区东单王府井东街561号26栋', '1987-07-26', 0, 0, 'aprillopez', '2001-04-16', 'alopez8', '2019-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS34784875', '劉杰倫', 1, '+1 212-215-1591', 1, '020513924629050543', '818 Fifth Avenue Apt 32, New York, NY 10017, United States', '1986-06-18', 0, 0, 'lachie214', '2007-04-26', 'chiehlunlau124', '2005-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS60612595', '原田百花', 1, '+44 5551 910035', 3, '241781395255290995', 'Unit 10, Oxford Eco Centre, 653 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1990-04-01', 0, 0, 'momoka915', '2013-12-20', 'hamomoka', '2008-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS40883705', '严璐', 1, '+86 28-609-5597', 2, '661189996663906825', 'Room 5, CR Building, No. 634, Shuangqing Rd, Chenghua District, Chengdu, China', '1997-11-01', 0, 0, 'yan1124', '2011-10-30', 'luy106', '2003-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS48615433', '阮國賢', 0, '+86 197-8619-5516', 3, '741045282398218594', 'No.30 building, 175 Yueliu Rd, Fangshan District, Beijing, China', '1992-10-27', 0, 0, 'kwokyiny723', '2016-12-24', 'kwokyin5', '2014-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS91687139', '山下花', 0, '+86 178-2211-8483', 2, '220235593070330666', 'Room 1, 89 Jingtian East 1st St, Futian District, Shenzhen, China', '1987-12-24', 0, 0, 'hanayamashita', '2022-01-03', 'yamashitaha6', '2000-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS40643678', '麥德華', 0, '+81 70-9237-8974', 0, '057852045692747035', '日本なごやし熱田区千年二丁目5番10号14号室', '1990-01-06', 0, 0, 'twmak', '2014-03-14', 'maktakwah', '2022-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS40862434', '雷慧嫻', 1, '+1 718-203-6062', 2, '490487213121440666', '401 Flatbush Ave Apartment 8, Brooklyn, NY 11225, United States', '1989-05-04', 0, 0, 'louiwaihan', '2004-07-09', 'louiwaihan', '2009-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS65061793', '毛思妤', 1, '+44 7212 049757', 4, '727205082174464937', 'Unit 8, Oxford Eco Centre, 517 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-07-13', 0, 0, 'szeyumo9', '2004-09-29', 'szeyumo3', '2012-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS33930036', '傅致远', 1, '+81 74-958-6179', 4, '169628545847398932', '日本ならし大和郡山市本庄町一丁目1番2号4階', '1996-05-31', 0, 0, 'fuz5', '2000-11-04', 'fuzhi', '2010-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS25156841', 'Carmen Miller', 0, '+81 74-066-8409', 1, '316858985457035264', '日本ならし西大寺赤田町一丁目7番3号35階', '1996-05-02', 0, 0, 'carmenmi1981', '2010-10-15', 'carmenmiller44', '2003-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS20091414', '何志明', 1, '+44 5763 915397', 3, '220549147911774251', 'Flat 43, 290 Hanover St, Liverpool, L1 4AF, United Kingdom', '1992-08-29', 0, 0, 'hochiming817', '2008-02-04', 'chiming326', '2003-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS71661863', '武璐', 1, '+81 52-204-3103', 3, '592622703890216047', '日本なごやし守山区瀬古東二丁目171番11号3階', '1987-02-27', 0, 0, 'luwu', '2013-05-07', 'luwu915', '2003-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS04651836', '小野凛', 0, '+81 52-653-7359', 0, '584696278652562790', '日本なごやし熱田区千年二丁目5番17号20階', '1987-04-11', 0, 0, 'onorin627', '2005-03-25', 'riono', '2020-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS44491284', '武田結翔', 0, '+1 312-331-7926', 4, '765726940386291406', '788 Rush Street Apartment 35, Chicago, IL 60611, United States', '1990-08-04', 0, 0, 'yuito721', '2015-05-20', 'yuito423', '2005-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS40764860', '木村絢斗', 0, '+44 (151) 918 6283', 1, '451197963146189125', 'No.2 Main building, 428 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1996-07-29', 0, 0, 'ayatokimura', '2002-08-29', 'akimura', '2018-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS82987555', '傅梓軒', 1, '+86 147-2242-9966', 2, '393476330684534166', '中国东莞环区南街二巷64号43楼', '1989-08-04', 0, 0, 'tszhinf9', '2013-01-25', 'futh', '2006-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS59269595', '桜井彩乃', 0, '+86 172-7660-0580', 1, '521556341560469418', '中国成都市锦江区人民南路四段196号43栋', '1993-05-16', 0, 0, 'aysaku', '2015-12-23', 'sayano', '2005-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS57752172', 'Kenneth Sanders', 0, '+86 20-781-7253', 0, '469475458831716627', 'Room 14, 799 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1990-03-22', 0, 0, 'kennsanders', '2007-05-20', 'kennethsan', '2005-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS47822145', 'Shawn Castro', 0, '+44 7712 155114', 1, '970249698166516990', 'No.34 Main building, 875 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1999-02-17', 0, 0, 'cassha', '2000-01-09', 'castrshawn', '2007-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS69552002', '吴杰宏', 0, '+86 21-172-6619', 3, '235207762459922977', '中国上海市浦东新区橄榄路107号32室', '1997-04-13', 0, 0, 'wuj', '2014-05-08', 'jiehowu', '2003-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS04482791', '尹國權', 1, '+44 (1223) 65 6663', 1, '190231837386808758', 'Unit 17, Oxford Eco Centre, 311 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1991-12-23', 0, 0, 'kky623', '2002-03-30', 'kwokkuenyin', '2009-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS78457299', '贺岚', 0, '+81 52-279-8728', 0, '124259489607435637', '日本なごやし瑞穂区河岸町四丁目20番16号8階', '1988-03-22', 0, 0, 'lan1014', '2012-11-07', 'lanhe8', '2020-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS50591116', '宋嘉伦', 1, '+81 80-4005-8576', 1, '395490199995119807', '日本なごやし瑞穂区河岸町四丁目20番19号46階', '1995-07-31', 0, 0, 'jialsong48', '2021-03-09', 'songjialun4', '2013-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS36235192', '小島瑛太', 1, '+1 718-794-5513', 3, '787077759001710373', '776 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1998-02-04', 0, 0, 'kojima9', '2000-07-05', 'kojimaeit', '2017-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS67323751', '方慧敏', 0, '+86 769-2192-0904', 2, '604571773516758581', 'No.28 building, 288 Kengmei 15th Alley, Dongguan, China', '1993-03-10', 0, 0, 'wmf5', '2011-07-06', 'fongwm', '2016-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS13645120', '清水彩乃', 0, '+44 (151) 263 7689', 1, '529829828585989454', 'Unit 5, Oxford Eco Centre, 70 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1992-05-17', 0, 0, 'ayanoshimizu331', '2007-01-04', 'shimizuayan', '2000-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS72688563', 'Elizabeth Russell', 1, '+86 755-5633-7783', 3, '244531135307152323', 'No.16 building, 93 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1997-03-10', 0, 0, 'russellelizabeth47', '2020-09-20', 'elizabeth1', '2001-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS92330408', 'Earl Roberts', 0, '+86 769-561-2480', 0, '726731038137929238', '中国东莞环区南街二巷285号40号楼', '1988-07-20', 0, 0, 'earlro82', '2004-05-20', 'robere', '2006-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS56984826', 'Ruth Lopez', 0, '+86 10-738-3425', 2, '046091676474741756', '中国北京市海淀区清河中街68号888号19栋', '1991-09-02', 0, 0, 'ruthlop11', '2012-09-03', 'loruth', '2022-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS15977265', '原田七海', 1, '+81 66-034-7785', 0, '363972147476617416', '日本おおさかし西成区天神ノ森二丁目1番5号46階', '1990-12-22', 0, 0, 'haradananami', '2018-02-11', 'haradnanami110', '2021-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS83406738', 'Annie Simmons', 1, '+86 760-0647-5533', 2, '429232723243406757', '中国中山乐丰六路453号39号楼', '1995-05-22', 0, 0, 'ansimm', '2010-04-28', 'annies', '2005-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS80748526', '佘秀文', 1, '+86 176-1223-5259', 3, '553698818559532129', '中国北京市朝阳区三里屯路387号华润大厦47室', '1997-01-13', 0, 0, 'shehsauman', '2002-05-01', 'sheh78', '2008-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS87270118', '林光', 1, '+81 11-079-5581', 1, '758118896809223512', '10-kai, 6-1-2, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-05-15', 0, 0, 'hh831', '2017-05-02', 'hikaruhaya', '2021-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS37484580', '鄧發', 0, '+86 28-703-4894', 1, '503784506509177635', '中国成都市成华区二仙桥东三路388号7栋', '1986-03-20', 0, 0, 'fattang', '2022-01-17', 'fat918', '2008-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS14306361', '翁玲玲', 1, '+44 (121) 788 6611', 1, '936443831379239592', 'Unit 7, Oxford Eco Centre, 928 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1998-06-22', 0, 0, 'ylingling', '2002-05-06', 'yunglingl10', '2011-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS15577508', '田村健太', 1, '+86 28-219-4483', 1, '143458433406926475', 'No.21 building, 284 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1994-02-27', 0, 0, 'kentat5', '2018-12-23', 'kentat', '2007-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS38386302', '區志遠', 0, '+86 179-7046-0325', 4, '804802128289066370', '中国东莞坑美十五巷282号1号楼', '1988-12-25', 0, 0, 'auchiyuen', '2017-10-03', 'aucy', '2011-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS50783308', '山口一輝', 0, '+81 66-671-2293', 1, '636093939476406552', '6-kai, 1-7-9 Omido, Higashiosaka, Osaka, Japan', '1986-07-21', 0, 0, 'yamaikki', '2015-11-13', 'yamaguchiikki', '2011-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS90217011', '石川聖子', 0, '+44 7967 872285', 3, '119541039199175771', 'Block 19, 162 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1991-04-16', 0, 0, 'ishisei', '2021-08-06', 'seiko60', '2004-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS11288144', 'Amber Hall', 1, '+86 164-7717-1447', 2, '530243272898525640', 'No.45 building, 918 Kengmei 15th Alley, Dongguan, China', '1998-04-13', 0, 0, 'amberha2', '2013-06-30', 'amberhall', '2001-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS74068951', '野村聖子', 1, '+81 90-7465-0640', 3, '090819547228397450', '13F, 3-27-10 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1998-11-22', 0, 0, 'nomura4', '2005-07-28', 'nomuraseiko9', '2016-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS30130590', '樂國賢', 0, '+81 11-918-4221', 2, '179951575330376361', '22F, 5-2-12 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-10-08', 0, 0, 'kwokyinlok4', '2008-04-02', 'lokkw13', '2006-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS66207001', 'Diane Reed', 1, '+44 (151) 967 6112', 1, '608930692366137563', 'No.29 Main building, 5 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1986-06-28', 0, 0, 'dreed713', '2013-01-27', 'reediane', '2019-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS94346404', '石秀英', 0, '+86 10-0498-4311', 2, '280277766617538582', 'Room 38, 484 68 Qinghe Middle St, Haidian District, Beijing, China', '1993-10-18', 0, 0, 'xiuyingshi80', '2018-02-22', 'xiuyshi3', '2005-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS07039461', '吳慧珊', 1, '+86 154-6387-7309', 1, '555570420140459576', '中国北京市东城区东单王府井东街551号华润大厦36室', '1993-05-12', 0, 0, 'ngws1130', '2018-05-14', 'ngws3', '2017-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS11081295', 'Margaret Morris', 0, '+44 5998 304522', 3, '813631347495919907', 'Block 22, 132 Park End St, Oxford, OX1 1JD, United Kingdom', '1987-11-13', 0, 0, 'margaretm', '2000-06-26', 'margmorris65', '2017-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS11377099', '郭青雲', 1, '+86 10-874-3584', 3, '444973604953052332', '36F, 225 West Chang''an Avenue, Xicheng District, Beijing, China', '1997-04-10', 0, 0, 'kwok707', '2005-02-10', 'kchingwan1', '2020-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS70731851', '陳頴思', 0, '+44 (116) 699 0042', 1, '798408476526877206', 'Block 38, 210 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1992-02-02', 0, 0, 'chwingsze4', '2016-05-12', 'chanwingsze', '2017-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS64216029', 'Virginia Mcdonald', 1, '+81 90-5604-4949', 3, '413825086926116276', 'Rm. 35, 3-19-19 Shimizu, Kita Ward, Nagoya, Japan', '1985-02-02', 0, 0, 'mvirginia328', '2011-10-31', 'mcdonald701', '2019-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS06151249', 'Barbara Spencer', 1, '+44 7915 988275', 0, '238125946057137788', 'No.25 Main building, 557 Maddox Street, London, W1S 1PU, United Kingdom', '1990-02-24', 0, 0, 'sb43', '2008-02-10', 'spencerbarba9', '2014-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS66240609', 'Carolyn Johnson', 0, '+44 7181 308075', 2, '274259402571492549', 'Unit 30, Oxford Eco Centre, 519 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1992-08-16', 0, 0, 'cajohnson', '2004-09-13', 'carolyn4', '2019-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS61712636', '平野光莉', 1, '+86 154-7164-2088', 1, '951090972231284821', '中国深圳福田区景田东一街975号40室', '1986-08-07', 0, 0, 'hikarih', '2019-05-19', 'hiranohikari401', '2019-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS11525445', '葉嘉欣', 0, '+86 159-3757-4997', 2, '218606609640214276', '中国北京市西城区西長安街849号30栋', '1986-05-20', 0, 0, 'kyyip', '2020-05-10', 'yipkarya', '2020-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS46232742', '中川葉月', 1, '+44 (1223) 60 2045', 1, '142837793247659044', 'Unit 23, Oxford Eco Centre, 650 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1997-09-14', 0, 0, 'nakagawahazuki6', '2014-05-05', 'hnak10', '2005-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS18234224', 'Arthur Crawford', 1, '+81 3-1143-4915', 0, '590865762589861152', '日本東京港区東新橋一丁目5番19号36階', '1989-06-09', 0, 0, 'crawfa', '2008-11-17', 'craarth6', '2007-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS25316221', 'Victor Griffin', 1, '+86 146-8699-5864', 0, '916917321487269455', 'Room 14, 101 Xiaoping E Rd, Baiyun , Guangzhou, China', '1995-12-23', 0, 0, 'victor14', '2014-02-13', 'griffinvictor', '2014-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS22891123', '原悠人', 1, '+81 70-8461-1927', 3, '474404864216963449', '日本ならし西大寺赤田町一丁目7番9号27号室', '1994-09-07', 0, 0, 'hyuto', '2010-06-07', 'hara2001', '2006-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS21131464', '田村花', 1, '+44 (116) 539 4241', 3, '251782654128546078', 'No.34 Main building, 590 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1998-02-25', 0, 0, 'tamura731', '2018-08-13', 'tamuhan703', '2016-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS54323936', '潘璐', 1, '+81 70-6509-3346', 1, '216450714533232748', '日本札幌中央区宮の森四条六丁目1番14号44階', '1988-12-24', 0, 0, 'plu', '2017-04-13', 'lupa98', '2010-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS36698719', '廖嘉伦', 1, '+81 3-9689-6770', 2, '794679465786262312', '日本東京渋谷区代々木二丁目3番19号10階', '1996-05-13', 0, 0, 'ljial828', '2010-07-11', 'jialiao46', '2018-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS18635256', '横山蒼士', 0, '+81 66-105-5175', 0, '138908508356555455', '日本おおさかし東住吉区東田辺三丁目27番16号38階', '1990-05-02', 0, 0, 'yaoshi', '2018-10-26', 'yokoyamaaos', '2001-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS10955089', '龚詩涵', 1, '+1 838-487-8892', 2, '957906799845483790', '755 State Street Suite 3, Albany, NY 12203, United States', '1987-02-02', 0, 0, 'shihangong', '2007-12-06', 'gongs6', '2018-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS05567083', 'Dawn Cook', 0, '+44 7764 007107', 2, '044582889660287837', 'No.48 Main building, 460 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1986-10-04', 0, 0, 'dawn9', '2020-07-06', 'dawnc', '2018-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS21085370', '郑子韬', 1, '+86 21-4616-8361', 2, '262654224988370552', '中国上海市黄浦区淮海中路75号27号楼', '1999-02-21', 0, 0, 'zhengz', '2017-10-06', 'zzit', '2001-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS36625728', 'Jeff Morales', 1, '+86 28-3067-3082', 2, '383491119374377844', '36F, 22 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1991-05-31', 0, 0, 'jeffm811', '2000-06-22', 'moraj', '2001-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS61409188', 'Carl Aguilar', 0, '+1 213-678-1484', 2, '562778381402104101', '51 S Broadway Suite 41, Los Angeles, CA 90015, United States', '1999-02-02', 0, 0, 'agca', '2015-05-26', 'aguilarcar79', '2012-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS57432093', '山崎詩乃', 0, '+86 21-1259-6141', 3, '813976441628336906', 'No.7 building, 478 Binchuan Rd, Minhang District, Shanghai, China', '1991-10-26', 0, 0, 'yamazakishin', '2004-02-14', 'sy1019', '2015-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS08413533', '黎秀文', 0, '+81 52-895-4300', 3, '428818097721451319', 'Rm. 7, 3-19-5 Shimizu, Kita Ward, Nagoya, Japan', '1986-10-02', 0, 0, 'saumanla2', '2021-09-28', 'saumanlai', '2021-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS90771455', '何仲賢', 0, '+1 614-842-0380', 2, '065340261805645523', '554 Wicklow Road Apt 30, Columbus, GA 43204, United States', '1998-02-15', 0, 0, 'chungyinho9', '2015-09-09', 'hocy', '2012-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS43658395', '洪思妤', 0, '+81 66-986-2801', 1, '132574593431558907', '日本おおさかし西成区出城一丁目1番19号41号室', '1988-12-08', 0, 0, 'hung726', '2007-10-18', 'hungsy5', '2003-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS20372066', 'Shannon Marshall', 1, '+86 146-0556-0964', 0, '779198455042976895', 'Room 28, CR Building, 742 028 County Rd, Yanqing District, Beijing, China', '1986-11-05', 0, 0, 'smarsh103', '2021-05-29', 'marshallsha', '2005-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS75881206', '郝岚', 1, '+86 10-8008-1297', 1, '691512058286692949', 'No.9 building, 429 68 Qinghe Middle St, Haidian District, Beijing, China', '1990-03-06', 0, 0, 'haolan', '2002-05-31', 'lhao', '2003-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS81138850', 'Ricky Flores', 1, '+86 28-7074-4042', 4, '735155563180302093', 'No.44 building, No. 573, Shuangqing Rd, Chenghua District, Chengdu, China', '1998-12-18', 0, 0, 'florer', '2001-08-15', 'fricky', '2022-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS96870878', '毛詩涵', 0, '+81 11-600-8107', 2, '959798636415267889', '日本札幌清田区真栄四条五丁目19番12号32階', '1987-04-15', 0, 0, 'mao921', '2010-08-08', 'mshi', '2004-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS31980960', '中村美緒', 1, '+44 (1865) 30 5278', 2, '137095703395090861', 'Block 2, 762 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1991-09-02', 0, 0, 'nakammio210', '2013-04-07', 'mio97', '2019-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS19839459', '餘祖兒', 1, '+86 144-2703-0080', 0, '291725055956005545', 'No.41 building, 249 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1996-02-14', 0, 0, 'yuchoyee', '2013-08-26', 'cyyue10', '2003-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS69965561', '麥國權', 1, '+81 90-4206-8532', 4, '547303950055668880', '24-kai, 1-6-6, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-11-11', 0, 0, 'makkk', '2020-04-12', 'kwokkuen45', '2020-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS75391143', '秦睿', 0, '+81 90-3522-1944', 2, '409495367856304071', '5F, 3-9-12 Gakuenminami, Nara, Japan', '1993-03-13', 0, 0, 'rui4', '2005-05-05', 'ruiqi', '2022-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS21805400', '容朝偉', 0, '+86 769-441-4004', 4, '198168361029006916', '46F, 990 Huanqu South Street 2nd Alley, Dongguan, China', '1987-10-28', 0, 0, 'yung902', '2019-01-15', 'yung222', '2007-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS85341445', '馮慧珊', 1, '+81 80-6347-4775', 2, '379732376766905007', '日本おおさかし西成区天神ノ森二丁目1番4号27階', '1999-02-24', 0, 0, 'waisan1', '2018-07-03', 'fung1973', '2006-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS90689959', '菊地樹', 0, '+81 3-4525-4710', 4, '030619074222415672', '46F, 5-2-10 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-01-14', 0, 0, 'itki', '2006-02-23', 'itsukikikuchi', '2000-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS97423980', 'Joan Jordan', 0, '+1 718-641-8473', 2, '019360168839029236', '586 Columbia St Suite 3, Brooklyn, NY 11231, United States', '1988-05-22', 0, 0, 'joan1994', '2011-12-10', 'jordanjoan801', '2013-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS16851805', '山崎蓮', 1, '+86 755-8547-2496', 3, '170875323991063028', '中国深圳龙岗区学园一巷250号35室', '1987-04-09', 0, 0, 'ren5', '2013-01-27', 'yamazakiren', '2009-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS59699780', '戚淑怡', 1, '+44 7171 795733', 4, '501196890399490456', 'Block 10, 986 Regent Street, London, W1B 2LX, United Kingdom', '1998-07-23', 0, 0, 'chicsukyee', '2017-02-23', 'chisukyee', '2018-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS32006178', '黎詩涵', 0, '+81 3-0936-2441', 4, '052686409410323672', '日本東京品川区東五反田五丁目2番11号41号室', '1997-11-13', 0, 0, 'shihanli', '2010-10-11', 'lis03', '2016-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS57574445', 'Eleanor Green', 1, '+81 70-2728-4001', 1, '468263806389402305', '日本なごやし北区清水三丁目19番16号20号室', '1991-05-20', 0, 0, 'greene', '2022-01-05', 'eleang', '2014-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS48979988', '黃家強', 0, '+86 769-412-6152', 1, '379694283764105489', '42F, 489 Dongtai 5th St, Dongguan, China', '1991-12-09', 0, 0, 'kakeungwong', '2017-05-01', 'wkk1026', '2017-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS02462119', '甘安娜', 1, '+81 3-9147-6067', 0, '645265839488201476', '15-kai, 2-3-4 Yoyogi, Shibuya-ku, Tokyo, Japan', '1994-06-05', 0, 0, 'kamon', '2014-03-10', 'onkam9', '2016-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS95787576', '龚詩涵', 0, '+81 52-968-6647', 0, '168682348747651814', '日本なごやし北区清水三丁目19番8号14号室', '1998-08-19', 0, 0, 'shihangong', '2012-01-01', 'gong50', '2015-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS17863086', '冯杰宏', 0, '+1 330-369-2416', 0, '285878035133965610', '742 Riverview Road Suite 22, Akron, OH 44313, United States', '1989-11-12', 0, 0, 'fengjie2', '2011-07-27', 'feng110', '2019-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS54673681', '朱震南', 1, '+81 3-4474-9659', 3, '178896237130817431', '8-kai, 1-6-12, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1986-02-13', 0, 0, 'zz210', '2009-08-29', 'zhuzhennan', '2011-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS95333800', '孟云熙', 0, '+81 3-6104-0561', 1, '578568867860525411', '日本東京中央区銀座三丁目12番12号50階', '1995-03-19', 0, 0, 'yunxim', '2015-10-23', 'mengyunx603', '2007-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS71645847', '宋云熙', 1, '+86 164-5031-7170', 3, '229770057530423551', 'No.6 building, 783 Yueliu Rd, Fangshan District, Beijing, China', '1994-01-02', 0, 0, 'yunxisong', '2016-03-21', 'yunxi2004', '2002-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS65553305', 'Mark Russell', 1, '+44 7591 062896', 1, '895980460891637602', 'Block 12, 443 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1992-03-24', 0, 0, 'russell1006', '2021-10-20', 'russellmar', '2005-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS73777145', '伍慧琳', 0, '+81 90-5240-0842', 2, '060527794322631975', '32-kai, 5-19-18 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1991-05-03', 0, 0, 'ngwl', '2006-05-12', 'wailamn', '2011-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS75664684', '加藤凛', 1, '+1 213-511-2137', 2, '183683231656492461', '605 S Broadway Suite 2, Los Angeles, CA 90015, United States', '1988-12-15', 0, 0, 'katori1112', '2006-06-11', 'rk1227', '2008-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS21140222', '盧思妤', 1, '+44 7267 609422', 3, '451284358810025328', 'No.4 Main building, 822 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1996-04-15', 0, 0, 'losy', '2000-01-29', 'lszeyu75', '2007-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS26779726', 'Timothy Anderson', 1, '+81 70-9858-3052', 3, '487904831703672700', 'Rm. 11, 5-2-2 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-12-12', 0, 0, 'tande', '2007-06-05', 'timothy3', '2007-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS15602791', 'Henry Gutierrez', 0, '+86 177-8425-8874', 2, '037071379081851378', '18F, 555 Shennan Ave, Futian District, Shenzhen, China', '1998-05-15', 0, 0, 'henrygutie', '2008-04-15', 'henrygutierrez1201', '2019-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS36913568', '高田百花', 1, '+81 70-1157-2598', 2, '633191357649065191', '日本ならし学園南三丁目9番20号48号室', '1998-12-31', 0, 0, 'takadamomoka', '2008-01-21', 'momoka60', '2005-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS00225931', '李宇宁', 0, '+86 140-9453-8638', 1, '251543477477178837', '中国北京市海淀区清河中街68号300号35栋', '1993-09-09', 0, 0, 'yuli', '2017-06-17', 'yuningli1', '2017-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS62684725', '罗子韬', 1, '+44 (1865) 12 8116', 0, '853434216106626113', 'Unit 5, Oxford Eco Centre, 649 Park End St, Oxford, OX1 1JD, United Kingdom', '1994-10-02', 0, 0, 'zitl', '2005-07-26', 'luo2017', '2002-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS35057060', '麥安琪', 1, '+1 213-116-6192', 4, '225549042293119169', '687 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1989-02-20', 0, 0, 'onkay6', '2019-02-26', 'mak6', '2013-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS31302111', 'Nathan Phillips', 1, '+86 21-376-4147', 2, '974852575011289564', '中国上海市浦东新区橄榄路895号14楼', '1994-11-23', 0, 0, 'nathanphill', '2003-11-01', 'nathaphil2', '2009-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS02567562', '鄭慧敏', 0, '+81 3-3071-9081', 3, '465331124513738775', '24-kai, 5-2-5 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1989-10-23', 0, 0, 'chewm', '2005-06-10', 'cwaim1008', '2015-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS74886243', '遠藤美緒', 0, '+44 (161) 652 9493', 1, '159699475659611936', 'No.26 Main building, 575 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1986-06-26', 0, 0, 'mioendo', '2013-07-01', 'enmi', '2003-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS18636911', '韩宇宁', 1, '+81 80-0561-6000', 2, '414778055349303688', '22-kai, 3-9-2 Gakuenminami, Nara, Japan', '1997-10-22', 0, 0, 'yh4', '2015-04-01', 'han1007', '2014-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS04839308', 'Henry Dixon', 1, '+81 3-1420-3063', 4, '723982164849809291', '11-kai, 2-3-12 Yoyogi, Shibuya-ku, Tokyo, Japan', '1985-07-11', 0, 0, 'henrdix', '2003-02-19', 'henryd', '2008-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS07454744', 'Tammy Wright', 1, '+81 70-3994-7806', 1, '929850642707666157', '日本東京千代田区丸の内一丁目6番14号38階', '1995-09-08', 0, 0, 'wright3', '2004-05-09', 'wtam211', '2003-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS14865840', '容明詩', 0, '+86 20-0988-7049', 3, '835277364182906915', 'Room 8, CR Building, 969 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1989-04-25', 0, 0, 'yms', '2021-08-21', 'miyun228', '2014-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS01686138', '鄧志遠', 1, '+81 90-3500-3797', 1, '012318034169334907', '日本なごやし守山区瀬古東二丁目171番12号26号室', '1992-04-10', 0, 0, 'tcy', '2007-12-17', 'tachiyuen', '2012-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS87348419', '姚慧敏', 1, '+86 10-864-4812', 3, '524462686999241584', '中国北京市延庆区028县道357号49楼', '1985-07-20', 0, 0, 'waimanyeow', '2004-04-19', 'waiman6', '2013-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS41982600', 'Catherine Brooks', 0, '+81 90-3582-0274', 3, '750726947617662086', '日本東京品川区東五反田五丁目2番5号38階', '1989-05-30', 0, 0, 'cbrook10', '2005-08-15', 'cbrooks213', '2012-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS89720221', '翁世榮', 0, '+1 614-872-3239', 1, '228780144726656067', '754 Tremont Road Apt 20, Columbus, GA 43212, United States', '1993-04-24', 0, 0, 'yungsa', '2019-05-05', 'yungsw1101', '2014-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS19803760', '钱宇宁', 0, '+81 90-3787-8155', 3, '476091820904029385', '日本東京港区東新橋一丁目5番6号16階', '1986-11-23', 0, 0, 'yuniqian424', '2010-01-05', 'qiyuning12', '2013-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS90553452', 'Timothy Peterson', 0, '+86 769-1804-5519', 1, '591807284065608668', '中国东莞东泰五街462号11室', '1998-06-06', 0, 0, 'petersontimothy', '2020-02-22', 'petersonti', '2012-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS58971074', '胡子韬', 1, '+86 167-4175-9994', 3, '269034651770967249', '中国成都市成华区玉双路6号992号28号楼', '1996-11-19', 0, 0, 'huzitao89', '2019-12-13', 'hu68', '2004-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS16216382', '苏詩涵', 0, '+44 7659 810741', 3, '408864870811041921', 'Block 20, 830 Sackville St, Manchester, M1 3BB, United Kingdom', '1990-03-06', 0, 0, 'shihansu', '2012-02-12', 'sushi10', '2007-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS38880070', '董秀英', 1, '+1 312-688-7364', 1, '413131846779106565', '915 Pedway Apartment 22, Chicago, IL 60601, United States', '1991-12-01', 0, 0, 'dxiu', '2015-11-28', 'dongx70', '2020-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS71061208', '河野凛', 0, '+44 5829 032810', 0, '044165436095113152', 'Block 34, 783 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1988-11-11', 0, 0, 'konorin', '2001-02-14', 'rik', '2000-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS79317272', '韦詩涵', 0, '+86 760-9089-0495', 2, '944712043043037001', '中国中山乐丰六路752号华润大厦23室', '1986-04-21', 0, 0, 'shihanw', '2001-03-26', 'weishihan', '2000-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS47619767', 'Jeremy Lopez', 0, '+86 141-4121-2680', 4, '312703925317925447', '2F, 893 Xiaoping E Rd, Baiyun , Guangzhou, China', '1989-12-14', 0, 0, 'lopezjeremy1205', '2001-03-07', 'jeremylopez', '2012-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS57326800', '中山凛', 0, '+81 74-896-4098', 1, '449161250292426834', 'Rm. 31, 3-9-17 Gakuenminami, Nara, Japan', '1992-03-21', 0, 0, 'rin1', '2003-02-06', 'nakayamarin', '2004-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS57978342', '孙秀英', 1, '+86 28-5238-4186', 0, '313295822833087800', '中国成都市成华区双庆路44号41室', '1998-10-21', 0, 0, 'sunxiuying', '2014-08-31', 'sux', '2008-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS02541074', 'Barbara Martin', 1, '+86 755-503-3672', 4, '343798516517283169', 'Room 43, CR Building, 870 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1999-01-14', 0, 0, 'barbaramartin108', '2003-07-09', 'barbara4', '2009-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS72252804', '赵子韬', 0, '+81 70-4038-1153', 1, '665468814987378285', '28F, 2-1-4 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1990-05-27', 0, 0, 'zitao86', '2003-05-28', 'zhao1997', '2000-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS16799180', 'John Rogers', 0, '+86 755-8668-5641', 0, '555866557357048166', 'Room 16, 884 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1990-10-28', 0, 0, 'johnrogers', '2010-07-16', 'johnrogers8', '2020-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS60122520', '盧天樂', 1, '+81 80-0528-1020', 2, '012819872170893169', 'Rm. 38, 3-19-13 Shimizu, Kita Ward, Nagoya, Japan', '1993-12-22', 0, 0, 'tinlolo', '2003-02-21', 'tinloklo84', '2001-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS23376304', '藤田大輔', 0, '+44 (1865) 07 5060', 1, '596047575175617654', 'Unit 22, Oxford Eco Centre, 188 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1996-03-10', 0, 0, 'daisuke1975', '2009-07-19', 'fujita1030', '2015-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS90571532', '廖岚', 1, '+81 11-392-7963', 0, '484322115253500412', '日本札幌厚別区上野幌一条二丁目1番18号37号室', '1993-12-06', 0, 0, 'laliao', '2007-05-06', 'liaolan', '2017-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS14255711', '村田結翔', 1, '+81 74-535-8397', 1, '378912980091147076', '日本ならし西大寺赤田町一丁目7番8号24階', '1993-11-21', 0, 0, 'ymurata6', '2016-03-07', 'muratayuit', '2007-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS10462039', '杜淑怡', 0, '+1 838-471-4347', 2, '736882598700011251', '328 Lark Street Apartment 22, Albany, NY 12210, United States', '1992-10-26', 0, 0, 'tosukyee71', '2006-01-12', 'syto620', '2021-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS97742916', 'Steve Salazar', 0, '+86 10-6079-1523', 1, '367298651375204400', 'Room 1, 996 West Chang''an Avenue, Xicheng District, Beijing, China', '1993-05-02', 0, 0, 'steves5', '2008-02-24', 'ssteve4', '2001-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS60680277', '石田光', 0, '+44 (151) 681 9842', 2, '265818309385341926', 'No.27 Main building, 723 Hanover St, Liverpool, L1 4AF, United Kingdom', '1996-10-24', 0, 0, 'hikaru1', '2015-04-18', 'ishi3', '2008-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS11051809', '戚祖兒', 1, '+86 132-2056-1339', 0, '549605799798528693', '33F, 246 Lefeng 6th Rd, Zhongshan, China', '1987-07-10', 0, 0, 'chcy', '2000-11-23', 'choyeechic', '2002-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS89197541', '唐子异', 1, '+44 7165 647208', 3, '783705612404493645', 'Unit 9, Oxford Eco Centre, 404 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1994-10-16', 0, 0, 'ziyitang3', '2009-11-09', 'tanziyi1', '2008-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS13800511', '苑頴思', 1, '+81 11-495-4768', 3, '887784635536700208', '39F, 5-19-18 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1986-08-15', 0, 0, 'yuews', '2011-09-08', 'ywing1024', '2020-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS98827266', '杜杰宏', 0, '+1 212-022-3834', 0, '986982115687130239', '944 West Houston Street 3rd Floor, New York, NY 10014, United States', '1995-11-23', 0, 0, 'jiehongdu', '2016-04-28', 'dujieh', '2009-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS57903283', '車力申', 0, '+1 718-114-2574', 4, '801008112255194741', '406 Flatbush Ave Apartment 33, Brooklyn, NY 11225, United States', '1987-02-09', 0, 0, 'liksun303', '2001-10-08', 'lsche', '2011-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS67765976', 'Jeremy Hernandez', 0, '+81 80-3580-5654', 1, '972008471043097188', '日本東京港区東新橋一丁目5番14号39階', '1988-09-07', 0, 0, 'jhernandez', '2020-01-17', 'hernandezjerem', '2005-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS42417872', 'Christine Myers', 0, '+44 5731 244005', 4, '042300059142103662', 'Unit 5, Oxford Eco Centre, 886 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1990-04-18', 0, 0, 'cmyers1', '2004-04-08', 'christinemyers10', '2000-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS23050571', 'Jason Bennett', 1, '+44 (121) 736 6315', 3, '634618715531309722', 'Unit 23, Oxford Eco Centre, 628 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1986-07-12', 0, 0, 'bennett7', '2016-07-23', 'bennej', '2019-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS31597184', 'Clifford Fisher', 1, '+81 74-318-9629', 2, '358042121398756870', '日本ならし学園南三丁目9番13号25階', '1986-12-26', 0, 0, 'fishcl', '2001-11-01', 'fisher07', '2020-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS23665995', 'Jennifer Freeman', 1, '+86 138-7134-4184', 0, '084066099167631679', '中国广州市白云区小坪东路27号1室', '1985-12-10', 0, 0, 'fj51', '2009-04-18', 'jefre', '2010-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS61808586', 'Joe Meyer', 0, '+81 3-7278-6480', 1, '509956388894507270', '50-kai, 3-15-10 Ginza, Chuo-ku, Tokyo, Japan', '1987-06-24', 0, 0, 'mejo', '2006-03-07', 'mjoe', '2006-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS99580305', '小林詩乃', 1, '+81 90-7430-2493', 0, '776959795498462887', '27F, 1-6-11, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1986-05-31', 0, 0, 'kobayashishino', '2013-09-05', 'kobayashi1', '2005-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS73914424', '余子异', 1, '+44 5817 739948', 2, '098222404611414106', 'Unit 21, Oxford Eco Centre, 968 Hanover Street, London, W1S 1YD, United Kingdom', '1997-04-16', 0, 0, 'ziyu', '2010-04-28', 'ziyu', '2011-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS67336443', '中山優奈', 1, '+86 28-333-3639', 3, '667790004117579532', '10F, 321 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1996-09-15', 0, 0, 'yunan', '2012-07-24', 'yunaka1216', '2009-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS23254685', '雷家輝', 0, '+86 135-2699-1956', 1, '010441623363705336', 'No.33 building, 647 Ganlan Rd, Pudong, Shanghai, China', '1988-08-18', 0, 0, 'louikafai', '2000-10-28', 'louikf', '2014-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS70056480', 'Jonathan Fernandez', 1, '+86 191-0506-2012', 4, '570511685330206599', 'Room 50, CR Building, No. 276, Shuangqing Rd, Chenghua District, Chengdu, China', '1992-04-10', 0, 0, 'fernandezjonathan', '2001-02-06', 'fernandez2007', '2014-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS63458729', 'Andrew Martinez', 1, '+81 90-4539-3807', 0, '900136667384422018', '49-kai, 5-2-17 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-01-09', 0, 0, 'mandre427', '2010-03-06', 'andrm', '2010-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS39528651', '姚云熙', 0, '+81 70-6881-4261', 2, '330357371500456619', '29-kai, 13-3-13 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1997-08-20', 0, 0, 'yyunx', '2014-06-12', 'yunxiya3', '2004-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS10070489', 'Mario Rogers', 1, '+44 (1223) 42 2394', 0, '682740289602318845', 'Unit 16, Oxford Eco Centre, 894 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1997-12-19', 0, 0, 'mario8', '2001-04-14', 'rogersmario', '2002-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS41179106', '鄭朝偉', 0, '+81 70-2042-2056', 2, '935214877522714830', '19-kai, 4-9-17 Kamihigashi, Hirano Ward, Osaka, Japan', '1987-01-20', 0, 0, 'cheng601', '2018-04-24', 'cchiuwai', '2003-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS79719486', '潘子韬', 1, '+1 213-859-5498', 0, '663360798095709484', '849 Wall Street Suite 34, Los Angeles, CA 90003, United States', '1993-05-03', 0, 0, 'zitaopan1974', '2021-06-27', 'pz3', '2004-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS61316765', '木村拓哉', 1, '+86 159-8172-6181', 2, '195057813122143936', 'Room 33, CR Building, 318 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1995-10-11', 0, 0, 'takuyki', '2012-12-18', 'kimura10', '2019-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS06974962', '林蒼士', 0, '+86 769-3579-1506', 0, '820070922227647500', 'Room 2, 316 Dongtai 5th St, Dongguan, China', '1986-04-24', 0, 0, 'hayaoshi', '2020-08-06', 'ah4', '2013-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS50620512', 'Douglas Shaw', 1, '+86 197-9544-9434', 3, '231720687409746170', '中国深圳罗湖区蔡屋围深南东路754号41栋', '1999-01-22', 0, 0, 'ds1983', '2012-06-11', 'dougs', '2016-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS81213257', '山田百花', 0, '+1 718-150-2472', 1, '342509791631761296', '675 1st Ave Suite 7, Brooklyn, NY 11220, United States', '1989-02-15', 0, 0, 'momoka430', '2000-11-28', 'yamadamomoka', '2013-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS78940777', '馬小慧', 1, '+1 213-081-6812', 1, '425072582455298717', '373 Figueroa Street Suite 44, Los Angeles, CA 90037, United States', '1998-06-13', 0, 0, 'masi', '2009-06-30', 'masiuwai3', '2009-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS15130255', '薛詩涵', 1, '+81 3-6366-9688', 2, '144338668474703493', '日本東京千代田区丸の内一丁目6番14号9号室', '1985-03-18', 0, 0, 'xus709', '2006-09-03', 'shxue', '2021-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS54373078', '鄧國明', 0, '+44 5007 477134', 3, '164714025314876453', 'Unit 45, Oxford Eco Centre, 247 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1986-01-09', 0, 0, 'tangkm', '2007-01-29', 'kmtang', '2004-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS06464028', '林璐', 0, '+44 (161) 536 7043', 2, '143015670696153145', 'Flat 46, 277 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1986-07-07', 0, 0, 'llin', '2020-08-29', 'linlu8', '2002-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS94884290', '张震南', 0, '+86 10-8955-0689', 3, '985863601786696589', 'Room 34, 902 FuXingMenNei Street, XiCheng District, Beijing, China', '1986-12-27', 0, 0, 'zzhen', '2014-04-05', 'zhangzh', '2021-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS51547783', 'Ernest Campbell', 0, '+44 7283 089010', 3, '816436872594814086', 'Block 44, 370 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1991-05-28', 0, 0, 'erc', '2006-08-17', 'ernestcamp10', '2002-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS99716929', 'Travis Washington', 1, '+1 330-987-3333', 3, '663558226934656144', '828 Fern Street Suite 1, Akron, OH 44307, United States', '1990-08-01', 0, 0, 'traviswashington', '2003-05-28', 'wastravis4', '2007-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS70098458', '容杰倫', 0, '+81 90-7253-9846', 2, '530965383577001940', 'Rm. 26, 13-3-13 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1987-09-22', 0, 0, 'chiehlunyung7', '2007-06-07', 'ychiehlun', '2001-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS44518862', 'Crystal Marshall', 1, '+81 52-846-2053', 4, '320200243156221438', '日本なごやし守山区瀬古東二丁目171番17号48階', '1988-09-05', 0, 0, 'crmarshall', '2000-02-06', 'cmarshall', '2001-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS61337660', '島田美咲', 0, '+81 80-2178-2389', 2, '863890816273969385', '日本おおさかし近江堂一丁目7番1号20号室', '1998-08-18', 0, 0, 'misaki1118', '2000-11-19', 'shimadamis1998', '2009-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS15045630', 'Francis Mitchell', 1, '+44 (20) 5843 8079', 1, '302568397074155439', 'Block 24, 519 Maddox Street, London, W1S 1PU, United Kingdom', '1989-04-19', 0, 0, 'fmitchell', '2008-06-19', 'francmitchell60', '2003-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS33581614', '萬家強', 1, '+81 11-723-2300', 3, '823002165602480895', '日本札幌中央区宮の森四条六丁目1番7号18階', '1988-06-18', 0, 0, 'meng3', '2020-06-27', 'kakeungme1959', '2000-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS60312468', '關家玲', 1, '+86 760-6677-0697', 2, '969256451973177853', '中国中山乐丰六路248号48楼', '1986-12-06', 0, 0, 'klk1984', '2016-03-15', 'kaling51', '2010-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS00658248', '韦子韬', 0, '+81 66-884-9121', 0, '883530489171100049', '12-kai, 4-9-13 Kamihigashi, Hirano Ward, Osaka, Japan', '1991-10-02', 0, 0, 'wez9', '2017-02-17', 'zitaow113', '2000-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS55280470', 'Timothy Lee', 0, '+1 718-363-0403', 3, '727881886180673341', '905 Nostrand Ave Apt 12, Brooklyn, NY 11216, United States', '1988-12-20', 0, 0, 'leet', '2003-10-20', 'leet9', '2000-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS12110655', '呂明詩', 0, '+1 213-850-6731', 1, '829927630190990339', '421 S Broadway Apt 10, Los Angeles, CA 90015, United States', '1997-05-14', 0, 0, 'luimingsze49', '2015-12-13', 'mslui', '2009-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS20995194', '狄國明', 0, '+86 28-7522-8453', 3, '616306757477076011', 'Room 6, No. 683, Shuangqing Rd, Chenghua District, Chengdu, China', '1991-10-30', 0, 0, 'kmti', '2005-01-27', 'tikwokming', '2015-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS09705221', '邵晓明', 1, '+86 155-9467-0422', 1, '303246598222719105', 'No.46 building, 575 68 Qinghe Middle St, Haidian District, Beijing, China', '1995-12-02', 0, 0, 'xiaomings', '2019-05-24', 'shao52', '2021-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS89891087', '汪震南', 0, '+81 52-761-6976', 3, '489713519851664829', '日本なごやし熱田区千年二丁目5番6号2階', '1986-07-25', 0, 0, 'wangzhennan', '2000-10-29', 'wangzhennan', '2000-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS48448911', '許祖兒', 0, '+81 74-480-0046', 4, '561034893417752399', '日本ならし西大寺赤田町一丁目7番10号21号室', '1989-08-01', 0, 0, 'choyee2016', '2015-08-05', 'chhu', '2018-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS49694589', 'Thomas Patel', 0, '+86 10-618-9151', 3, '045752779778379730', 'Room 30, 46 Dong Zhi Men, Dongcheng District, Beijing, China', '1989-05-29', 0, 0, 'thomasp', '2017-08-04', 'pathoma', '2002-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS79878799', '麥永發', 1, '+81 52-345-2202', 1, '861312705358310399', '23-kai, 2-5-5 Chitose, Atsuta Ward, Nagoya, Japan', '1993-05-18', 0, 0, 'mak404', '2020-05-29', 'wingfat318', '2003-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS03241895', '後藤陽太', 1, '+81 80-4985-0901', 3, '093027320427995565', '40F, 1-5-14, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-01-12', 0, 0, 'yota3', '2003-03-31', 'yotg', '2012-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS03205339', '河野玲奈', 0, '+81 80-3097-3605', 0, '948810455923010725', '44-kai, 5-2-17 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-10-30', 0, 0, 'konre', '2009-04-27', 'konor419', '2009-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS85566975', '邹詩涵', 1, '+86 196-9103-3531', 1, '492339400024884288', '中国广州市天河区天河路541号6号楼', '1993-08-25', 0, 0, 'zoushihan312', '2021-09-04', 'shihzou722', '2003-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS60851361', 'Tammy Carter', 1, '+86 147-2109-3146', 0, '463662696731440839', 'Room 26, CR Building, 114 FuXingMenNei Street, XiCheng District, Beijing, China', '1989-10-26', 0, 0, 'tammy6', '2010-05-23', 'cartert1', '2011-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS37832055', 'Robert Hawkins', 1, '+1 718-515-2063', 3, '361785415888814179', '931 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1996-05-13', 0, 0, 'robert10', '2016-11-02', 'robert1963', '2010-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS47443256', '唐惠妹', 1, '+86 164-4835-5685', 0, '403453043860561182', '中国成都市锦江区红星路三段484号华润大厦43室', '1987-10-25', 0, 0, 'tong83', '2003-12-04', 'huimeitong', '2020-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS48987813', '酒井美月', 0, '+81 66-332-3139', 2, '693363617171557789', '21-kai, 1-7-5 Omido, Higashiosaka, Osaka, Japan', '1993-10-19', 0, 0, 'sakai726', '2015-12-07', 'smitsu', '2001-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS04702586', '洪曉彤', 1, '+86 155-2193-6519', 4, '053946960670278052', 'Room 5, 637 Jianxiang Rd, Pudong, Shanghai, China', '1995-12-15', 0, 0, 'hht329', '2016-12-29', 'huhiutung515', '2003-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS82282442', 'Carol Cruz', 1, '+1 312-669-2698', 1, '951924079517801884', '246 Pedway Suite 34, Chicago, IL 60601, United States', '1985-12-24', 0, 0, 'crucarol', '2003-03-24', 'cc04', '2006-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS89815673', 'Shawn Ferguson', 0, '+81 80-0855-7267', 2, '015900672084951830', '23F, 1-1-16 Deshiro, Nishinari Ward, Osaka, Japan', '1992-04-25', 0, 0, 'shawnf813', '2009-02-01', 'shawferguson10', '2017-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS72901329', '林結翔', 0, '+86 769-8603-4622', 1, '174054532350023935', '中国东莞东泰五街222号8室', '1992-10-02', 0, 0, 'yuitohayas', '2022-01-31', 'yuitoh', '2019-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS53228133', '高田美咲', 1, '+44 (121) 755 8740', 2, '078280885583125415', 'Flat 27, 569 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1985-03-13', 0, 0, 'misakitak01', '2015-05-23', 'takmis803', '2012-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS90261493', '郭詩涵', 1, '+1 614-787-7464', 2, '481092142324282639', '470 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1988-06-14', 0, 0, 'gshi', '2009-05-07', 'guoshihan', '2020-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS36025338', '高木拓哉', 1, '+86 20-3199-8607', 1, '336127125578081189', '中国广州市白云区机场路棠苑街五巷976号11室', '1988-10-22', 0, 0, 'ttak', '2017-01-19', 'takagitakuya8', '2003-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS08467926', '新井樹', 0, '+86 169-6313-3015', 3, '270575889098970449', 'No.4 building, 322 Dongtai 5th St, Dongguan, China', '1993-03-01', 0, 0, 'araiitsu1995', '2005-08-02', 'araiitsuki40', '2004-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS93491126', '吳永權', 0, '+81 52-908-2716', 2, '982983765286424186', '38-kai, 3-19-6 Shimizu, Kita Ward, Nagoya, Japan', '1989-06-15', 0, 0, 'wkng', '2005-10-19', 'ngwk', '2002-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS66557331', '呂德華', 1, '+1 614-806-8299', 4, '383389269047383395', '119 Tremont Road Suite 38, Columbus, GA 43212, United States', '1994-03-17', 0, 0, 'takwahlu', '2006-03-07', 'takwahlui', '2013-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS99811438', '柴田拓哉', 0, '+81 90-4786-0127', 2, '529923956646279211', '8F, 3-9-16 Gakuenminami, Nara, Japan', '1997-02-14', 0, 0, 'shibata727', '2016-03-16', 'shibata8', '2017-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS10220880', '王國權', 0, '+81 90-2407-6516', 3, '763122958075953029', '日本おおさかし近江堂一丁目7番7号17号室', '1987-05-11', 0, 0, 'wkwokkuen1216', '2007-09-08', 'wokk318', '2018-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS74245803', '郑云熙', 0, '+86 769-047-7165', 2, '233735092776973422', '中国东莞环区南街二巷710号42号楼', '1998-04-06', 0, 0, 'zhengyunxi', '2002-08-04', 'yunxizheng', '2021-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS65578620', '文國榮', 1, '+81 11-592-8921', 0, '661170096370218524', '日本札幌厚別区上野幌一条二丁目1番7号23号室', '1988-11-13', 0, 0, 'kwman', '2019-11-29', 'kwokwing203', '2011-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS53730479', '彭震南', 1, '+44 5609 572446', 1, '561095366251758709', 'No.5 Main building, 139 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1994-07-05', 0, 0, 'zhennanp3', '2019-05-19', 'zhennanpeng7', '2005-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS95557445', 'Shawn Patel', 1, '+44 (121) 789 5618', 1, '959210046823951363', 'Flat 5, 658 New Street, Birmingham, B2 4DB, United Kingdom', '1995-05-17', 0, 0, 'shawnpatel', '2007-08-06', 'patelsha508', '2008-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS62469982', 'Ellen Chen', 0, '+81 90-9669-5490', 4, '037512884977009863', '日本なごやし瑞穂区河岸町四丁目20番10号34階', '1985-04-13', 0, 0, 'ellen5', '2019-03-08', 'ellenchen', '2000-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS75087720', '河野陽太', 0, '+81 80-3447-0326', 1, '314080062042288072', 'Rm. 38, 4 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1988-10-14', 0, 0, 'yotakon105', '2012-07-15', 'konoyota86', '2011-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS68989408', 'Micheal Bennett', 1, '+86 20-125-1011', 1, '602935981020999487', 'No.49 building, 850 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1994-07-16', 0, 0, 'micbennett3', '2003-08-10', 'micheal8', '2002-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS31890012', '武田花', 0, '+81 11-085-4908', 3, '277023515010406921', '日本札幌白石区菊水三条五丁目4番11号6号室', '1997-10-01', 0, 0, 'takedah', '2007-11-06', 'hant', '2015-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS74810687', '和田樹', 1, '+81 3-0017-7496', 2, '747791157670081053', '日本東京千代田区丸の内一丁目6番14号18号室', '1992-10-19', 0, 0, 'itsukwada', '2014-11-24', 'itsukiw3', '2004-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS05133376', '佐藤凛', 1, '+86 10-2459-4489', 4, '773508512498124286', '中国北京市西城区西長安街604号44号楼', '1992-11-20', 0, 0, 'satorin', '2018-01-11', 'sato114', '2018-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS03743255', '河野結翔', 0, '+1 330-173-4207', 3, '626969701647507206', '610 Fern Street Apt 4, Akron, OH 44307, United States', '1991-11-15', 0, 0, 'yuito721', '2000-08-08', 'konoyuit', '2000-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS50246373', '應曉彤', 1, '+44 (1865) 99 4166', 2, '611342514739459118', 'Unit 6, Oxford Eco Centre, 341 Park End St, Oxford, OX1 1JD, United Kingdom', '1990-12-27', 0, 0, 'yinhi9', '2021-10-20', 'yinghiutung', '2018-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS73441157', '周永發', 1, '+86 146-3806-3439', 3, '561749810264349738', 'Room 41, CR Building, 427 Shanhu Rd, Dongguan, China', '1988-05-29', 0, 0, 'chowwingfat1021', '2005-02-22', 'cwingfat', '2016-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS53279634', '中森聖子', 1, '+81 70-4315-1616', 1, '521267799158332719', '13F, 2-1-2 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1990-10-11', 0, 0, 'seiko1972', '2011-03-07', 'seikona', '2006-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS59774426', '唐玲玲', 1, '+86 755-769-4362', 3, '404648039003177718', '中国深圳福田区景田东一街735号华润大厦30室', '1994-11-11', 0, 0, 'tolingling', '2019-04-18', 'linglingtong', '2002-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS85790251', '石川蓮', 0, '+86 21-054-8467', 4, '884913671414082155', 'No.4 building, 682 Middle Huaihai Road, Huangpu District, Shanghai, China', '1990-06-27', 0, 0, 'rishik', '2006-11-05', 'ishikawaren', '2016-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS97474792', 'Sandra Lopez', 1, '+86 192-2671-7327', 4, '722813093705396914', '中国深圳罗湖区清水河一路323号47栋', '1985-03-16', 0, 0, 'sandral', '2003-02-20', 'lopezsan', '2017-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS93527512', 'Virginia Black', 0, '+81 80-0865-2422', 4, '766285146155602675', 'Rm. 21, 5-4-13 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1993-07-21', 0, 0, 'blacvirginia', '2014-03-10', 'blackvirginia', '2014-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS73165125', '周學友', 1, '+1 330-946-7872', 2, '194124978189220116', '752 Fern Street Apartment 24, Akron, OH 44307, United States', '1986-12-11', 0, 0, 'chowhy', '2018-09-18', 'hychow1221', '2013-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS40950652', '今井紗良', 0, '+86 769-7903-2629', 1, '529364305468168599', '中国东莞环区南街二巷867号34号楼', '1986-01-26', 0, 0, 'imaisar', '2017-01-03', 'imsa6', '2010-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS40602569', '盧家輝', 1, '+44 5985 298862', 3, '432377496663302001', 'Unit 43, Oxford Eco Centre, 631 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1998-12-01', 0, 0, 'kaflo7', '2018-12-08', 'kafai09', '2017-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS45465680', '馬家玲', 1, '+81 52-368-5952', 2, '720522773091554804', '日本なごやし北区清水三丁目19番6号23階', '1993-03-28', 0, 0, 'makl4', '2002-11-28', 'klm', '2013-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS93752983', 'Eugene Perez', 0, '+44 (121) 102 8778', 3, '167770008668940644', 'Flat 40, 738 New Street, Birmingham, B2 4DB, United Kingdom', '1988-02-28', 0, 0, 'peu2017', '2017-10-08', 'ep3', '2005-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS36670452', 'Paul Simpson', 0, '+81 70-6654-0048', 3, '546675308402814513', '8-kai, 3-27-8 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-03-08', 0, 0, 'pauls', '2003-04-09', 'psimpson1105', '2016-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS74007873', '有村悠人', 0, '+81 11-338-8332', 2, '786195924571173461', 'Rm. 29, 6-1-4, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1986-02-04', 0, 0, 'yarimura629', '2019-01-25', 'arimurayuto3', '2016-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS88674650', '杜宇宁', 0, '+86 168-0583-5690', 1, '113750383161799756', '中国深圳福田区深南大道729号27楼', '1992-01-06', 0, 0, 'duy', '2009-05-01', 'du1', '2004-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS79321868', '今井和真', 1, '+1 212-983-7464', 0, '387279991275533852', '613 West Houston Street Apartment 2, New York, NY 10014, United States', '1997-08-20', 0, 0, 'kazumimai86', '2004-01-18', 'kazuimai', '2018-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS88973480', '何玲玲', 1, '+81 70-5028-9311', 1, '935869713072257752', 'Rm. 49, 13-3-6 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1986-06-03', 0, 0, 'linh', '2017-10-02', 'lingling4', '2012-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS53105049', '陳慧琳', 1, '+86 760-663-1270', 1, '059520246816892265', '中国中山京华商圈华夏街102号17室', '1986-11-26', 0, 0, 'chanwl', '2019-12-30', 'wailam42', '2020-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS78251404', 'Edward West', 1, '+81 70-1055-5653', 0, '620706548189710117', '日本札幌厚別区上野幌一条二丁目1番1号14階', '1997-12-11', 0, 0, 'west710', '2016-06-20', 'westedward', '2002-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS85257345', 'Janice Smith', 0, '+44 5272 027453', 1, '776467937754279221', 'Unit 11, Oxford Eco Centre, 277 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1994-10-25', 0, 0, 'janice503', '2015-01-09', 'smith10', '2018-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS76884406', '吕岚', 1, '+86 133-1026-2233', 2, '964050067737769620', '中国深圳罗湖区清水河一路413号40室', '1985-09-06', 0, 0, 'lanl', '2013-08-15', 'lanlu', '2016-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS33889951', '邵詩涵', 0, '+86 760-4041-0288', 1, '887582426771366093', 'No.47 building, 663 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1991-05-08', 0, 0, 'shihanshao2', '2017-11-18', 'shao59', '2010-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS47528217', 'Sandra Robertson', 1, '+1 838-877-1415', 1, '907277111188728056', '997 Broadway Apartment 9, Albany, NY 12207, United States', '1996-12-16', 0, 0, 'robertson77', '2016-01-02', 'sandrarobertson8', '2020-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS01923969', '罗云熙', 0, '+81 66-894-5287', 0, '144311922206685850', 'Rm. 32, 1-1-9 Deshiro, Nishinari Ward, Osaka, Japan', '1994-12-11', 0, 0, 'lyunxi', '2000-02-16', 'luoy', '2017-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS28247035', '陆致远', 1, '+86 158-4813-2484', 1, '424664852042938204', '中国东莞坑美十五巷607号13楼', '1990-01-29', 0, 0, 'zhiyuan1977', '2017-03-30', 'lz58', '2005-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS28492053', '元浩然', 0, '+81 74-242-1092', 4, '447639573482580776', '10F, 12 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-05-02', 0, 0, 'hoyinyuen', '2006-01-22', 'yhoyin129', '2002-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS58002305', '岡本紗良', 0, '+81 66-640-0545', 1, '390067409183364739', '日本おおさかし西成区出城一丁目1番19号34階', '1998-02-06', 0, 0, 'okamotosara1209', '2005-12-29', 'sokamoto', '2020-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS23214962', '萧秀英', 0, '+86 199-2472-6905', 0, '336021886824329234', 'Room 45, 317 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1986-08-16', 0, 0, 'xxiao10', '2003-11-27', 'xiao2', '2008-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS46104504', '鐘浩然', 1, '+44 (151) 163 7799', 2, '075664497595557081', 'Unit 31, Oxford Eco Centre, 88 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1990-06-22', 0, 0, 'hoyin1987', '2000-09-12', 'hych16', '2012-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS47775533', '大野蒼士', 0, '+86 10-7853-3001', 2, '727156821839226078', '33F, 949 Yueliu Rd, Fangshan District, Beijing, China', '1990-11-24', 0, 0, 'oaoshi', '2004-04-26', 'oaoshi', '2021-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS21176809', '钟詩涵', 1, '+86 138-2651-6235', 0, '780347842602288636', 'No.4 building, 543 Tianhe Road, Tianhe District, Guangzhou, China', '1994-03-20', 0, 0, 'zhong2', '2007-12-13', 'sz207', '2005-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS28111478', '許梓晴', 0, '+44 7305 991670', 3, '285999459391948512', 'Block 38, 524 Park End St, Oxford, OX1 1JD, United Kingdom', '1987-04-13', 0, 0, 'tchui2', '2004-04-28', 'huitc', '2005-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS79994426', '彭杰宏', 1, '+86 28-724-4611', 4, '431847796119799617', '中国成都市成华区玉双路6号667号3号楼', '1992-12-13', 0, 0, 'jiehong1', '2014-08-12', 'jiehongpeng', '2006-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS29070231', '郑安琪', 1, '+1 213-396-1379', 3, '503420743316831605', '834 S Broadway Suite 50, Los Angeles, CA 90015, United States', '1992-06-02', 0, 0, 'azheng96', '2002-05-21', 'anqi8', '2004-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS10774784', '島田絢斗', 1, '+86 28-872-1627', 2, '560027441959881547', '中国成都市成华区双庆路886号11室', '1985-02-08', 0, 0, 'as328', '2002-01-01', 'ayato2', '2012-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS56348608', '石川美月', 1, '+81 80-1367-4072', 1, '497935506298529155', '27F, 6-1-2, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-11-04', 0, 0, 'mii', '2010-02-26', 'ishikawamits5', '2005-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS56798397', '森樹', 0, '+44 (116) 497 6348', 1, '578929282553019930', 'Block 21, 166 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1992-11-12', 0, 0, 'im2', '2017-02-28', 'imor', '2011-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS82426570', '陶子韬', 0, '+1 213-728-0879', 1, '227415380565476263', '357 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1985-11-15', 0, 0, 'zitao810', '2015-04-09', 'zitaotao', '2007-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS86965465', '宮本樹', 1, '+44 (121) 287 5027', 2, '399340601032774742', 'Flat 7, 469 New Street, Birmingham, B2 4DB, United Kingdom', '1997-11-13', 0, 0, 'itsukm', '2000-02-04', 'itsmiyam10', '2010-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS05637297', '任嘉伦', 1, '+44 5158 981044', 1, '529423880118306630', 'No.9 Main building, 180 Pollen Street, London, W1S 1NG, United Kingdom', '1992-11-09', 0, 0, 'rjialun', '2018-01-02', 'jialunr', '2004-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS88820897', '傅秀英', 0, '+86 760-8830-3842', 3, '813862949597680814', 'Room 43, 136 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1995-08-21', 0, 0, 'xiuyingf', '2003-02-08', 'fu1980', '2013-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS88684616', 'Chad Lee', 1, '+81 74-698-0597', 2, '094335947598143407', '日本ならし大和郡山市本庄町一丁目1番13号2階', '1998-11-12', 0, 0, 'chad15', '2003-01-11', 'chadlee602', '2011-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS10978257', '董安琪', 1, '+86 755-771-3237', 4, '262649557372175751', '中国深圳罗湖区清水河一路240号20楼', '1995-07-21', 0, 0, 'ad8', '2018-03-25', 'donga', '2015-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS53677739', '山下美緒', 0, '+86 197-9767-2680', 4, '337576505973041933', '中国北京市房山区岳琉路682号华润大厦31室', '1993-08-16', 0, 0, 'yamashitamio617', '2003-10-04', 'mioyamas', '2014-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS48563755', 'Rodney Campbell', 0, '+86 10-6190-6804', 3, '211772243340172862', 'Room 44, CR Building, 4 FuXingMenNei Street, XiCheng District, Beijing, China', '1989-01-10', 0, 0, 'camro', '2010-04-19', 'carod', '2010-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS82440326', 'Emily Mendoza', 0, '+1 838-137-5778', 3, '807336922428390165', '774 Broadway Apartment 44, Albany, NY 12207, United States', '1987-05-20', 0, 0, 'emim98', '2011-09-07', 'mendozaemily511', '2017-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS46143729', '橋本紗良', 0, '+1 718-281-6910', 3, '771041295475793644', '84 Bergen St Apartment 23, Brooklyn, NY 11217, United States', '1995-12-28', 0, 0, 'sara1005', '2004-04-21', 'sarahas5', '2007-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS94213582', '胡麗欣', 0, '+86 769-2918-8565', 3, '931094967590483238', 'No.39 building, 908 Shanhu Rd, Dongguan, China', '1985-05-10', 0, 0, 'laiyaw', '2005-09-19', 'wuly5', '2010-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS81225479', '松田凛', 0, '+44 7901 858441', 3, '126717573239743827', 'Block 17, 114 Portland St, Manchester, M1 3LA, United Kingdom', '1985-03-15', 0, 0, 'rinm1119', '2006-12-28', 'rinma409', '2021-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS60442993', '斎藤彩乃', 1, '+86 21-4212-4366', 2, '596268110687320141', '中国上海市浦东新区健祥路171号18楼', '1988-12-18', 0, 0, 'saiayano6', '2013-06-01', 'saitoa519', '2016-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS32506783', 'Danny Cook', 1, '+81 3-5994-0482', 4, '144046698012101013', 'Rm. 27, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1991-11-21', 0, 0, 'cdanny', '2001-01-03', 'dannycook', '2001-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS83967073', '丸山湊', 0, '+86 10-600-3618', 1, '000805912329396229', '21F, 131 68 Qinghe Middle St, Haidian District, Beijing, China', '1995-10-28', 0, 0, 'minmaruyama87', '2009-12-23', 'maruminato', '2008-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS49562097', '常詩涵', 0, '+81 3-5223-8002', 4, '498213154295047104', '30-kai, 3-15-14 Ginza, Chuo-ku, Tokyo, Japan', '1997-04-18', 0, 0, 'shihan9', '2018-03-08', 'chsh', '2010-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS54691257', 'Helen Peterson', 0, '+81 90-7846-5673', 1, '718058801513906456', '日本ならし西大寺赤田町一丁目7番10号11階', '1991-06-09', 0, 0, 'phelen1117', '2010-03-18', 'phelen', '2000-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS37014798', '叶嘉伦', 0, '+81 66-282-9346', 4, '470224940569296743', '日本おおさかし近江堂一丁目7番15号2階', '1985-12-06', 0, 0, 'jialye716', '2007-06-06', 'ye3', '2006-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS91455708', '梅秀文', 0, '+1 213-570-5049', 3, '137540312679600802', '702 Alameda Street Apartment 29, Los Angeles, CA 90002, United States', '1991-12-13', 0, 0, 'msaum9', '2020-05-29', 'muism', '2009-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS16598864', '河野葉月', 1, '+86 171-4400-7463', 3, '430000157364515803', '中国上海市闵行区宾川路535号36楼', '1992-04-26', 0, 0, 'kh828', '2018-06-28', 'konohazuki919', '2001-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS39140890', '工藤七海', 1, '+81 74-277-7887', 3, '319951670959242746', 'Rm. 38, 1-7-1 Saidaiji Akodacho, Nara, Japan', '1998-01-16', 0, 0, 'nanami8', '2003-10-23', 'kudonanami', '2008-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS57514230', 'Billy Soto', 1, '+86 28-6587-7002', 4, '734425196234718991', 'No.8 building, No.400, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-01-23', 0, 0, 'bsoto606', '2011-10-11', 'sotobill', '2009-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS65103836', '中村湊', 1, '+44 (151) 180 8232', 1, '986723885258922078', 'Block 25, 614 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1990-11-20', 0, 0, 'minnakam1229', '2010-02-21', 'minato93', '2008-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS60247481', '彭明', 0, '+86 190-2381-7941', 3, '419367561840547328', '中国广州市越秀区中山二路18号26号楼', '1997-05-28', 0, 0, 'pangming', '2021-04-28', 'mpang1201', '2021-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS48688376', 'Nicole Fisher', 0, '+44 (1223) 57 1963', 1, '438936198507202903', 'Unit 44, Oxford Eco Centre, 950 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1997-06-27', 0, 0, 'nicole3', '2014-03-19', 'nifisher', '2003-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS87253489', '劉國權', 1, '+86 139-2894-1739', 0, '116563069415892018', 'No.46 building, 837 Kengmei 15th Alley, Dongguan, China', '1990-02-06', 0, 0, 'kwlau2', '2003-08-17', 'kklau', '2021-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS84184117', '蔡仲賢', 1, '+86 21-8588-5697', 2, '709881646976773303', 'Room 41, CR Building, 510 Ganlan Rd, Pudong, Shanghai, China', '1995-09-22', 0, 0, 'chochu', '2003-08-10', 'choicy', '2009-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS28980067', '姚詩涵', 1, '+44 (161) 976 9521', 4, '851937495868890583', 'No.3 Main building, 46 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-09-23', 0, 0, 'shihya', '2006-02-11', 'shiya821', '2012-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS42846955', '佘玲玲', 0, '+81 66-146-4527', 1, '531318744050712694', '日本おおさかし近江堂一丁目7番16号20階', '1996-10-29', 0, 0, 'shlingling328', '2018-04-19', 'linglings', '2011-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS73794003', '原田美咲', 0, '+81 70-4964-2848', 1, '777304613166767649', '24-kai, 3-27-9 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1986-11-16', 0, 0, 'misakiharada', '2005-10-03', 'haramis', '2004-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS91711780', '藤井陸', 0, '+86 21-267-6322', 2, '463393954618178703', 'No.33 building, 1 Ganlan Rd, Pudong, Shanghai, China', '1989-07-17', 0, 0, 'friku1985', '2019-10-05', 'rikufuj84', '2002-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS67873269', '丁詩涵', 1, '+81 11-687-6118', 1, '788665122120950616', '日本札幌白石区菊水三条五丁目4番2号9階', '1986-09-07', 0, 0, 'shihdi731', '2001-02-05', 'shihanding221', '2013-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS31339841', '雷詩君', 0, '+1 718-562-4533', 0, '134404457569950410', '680 1st Ave Suite 33, Brooklyn, NY 11220, United States', '1993-02-26', 0, 0, 'louszekwan4', '2009-09-02', 'szekwanlou125', '2003-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS37385616', 'Todd Shaw', 1, '+86 21-870-3537', 0, '720612211538932469', 'Room 20, CR Building, 333 Hongqiao Rd., Xu Hui District, Shanghai, China', '1985-02-16', 0, 0, 'todd4', '2016-02-01', 'ts69', '2019-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS60430626', '房浩然', 1, '+1 330-265-4181', 2, '832031108197821406', '687 West Market Street Suite 36, Akron, OH 44333, United States', '1989-05-04', 0, 0, 'hyfong121', '2010-06-04', 'hoyin10', '2020-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS43495615', '有村詩乃', 1, '+1 614-888-5216', 1, '087304115855532434', '977 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1994-12-01', 0, 0, 'arims', '2008-08-08', 'arimura10', '2006-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS15368237', '樂梓晴', 1, '+1 614-784-1544', 3, '558254159308547228', '139 Tremont Road Apartment 17, Columbus, GA 43212, United States', '1987-07-05', 0, 0, 'loktszching4', '2020-07-18', 'tclok', '2013-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS69944588', '官頴璇', 0, '+44 5613 522157', 0, '184074823845136897', 'Flat 18, 938 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1995-11-26', 0, 0, 'koowingsuen', '2008-03-30', 'koonwingsuen1204', '2016-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS56884241', '林彩乃', 1, '+1 614-241-8832', 1, '319656709717227806', '470 East Alley Apt 33, Columbus, GA 43201, United States', '1993-10-24', 0, 0, 'ayanhayashi7', '2007-07-04', 'ayanoh2006', '2000-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS86029709', '橋本翼', 0, '+86 760-932-6157', 2, '301898678884701055', '中国中山天河区大信商圈大信南路108号华润大厦47室', '1987-05-24', 0, 0, 'tsubasah10', '2010-04-24', 'hatsubasa', '2016-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS56495919', '盧裕玲', 1, '+1 212-415-1203', 3, '011227637406801701', '665 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1991-08-24', 0, 0, 'lyl', '2000-09-13', 'lyl', '2015-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS08999635', '郑秀英', 0, '+86 182-6733-8034', 3, '298548448126713393', '中国北京市延庆区028县道764号30楼', '1989-03-09', 0, 0, 'zhengxi', '2004-12-23', 'xiuyiz61', '2012-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS90097847', '狄潤發', 0, '+81 70-2264-7578', 1, '557881562497407158', '2F, 5 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1994-08-18', 0, 0, 'yunfat2002', '2005-07-11', 'tyf', '2021-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS59723583', 'Frank Hughes', 1, '+86 20-771-1578', 3, '123697055549030919', 'No.12 building, 772 Jiangnan West Road, Haizhu District, Guangzhou, China', '1996-06-04', 0, 0, 'hughfrank', '2001-02-04', 'frankh11', '2021-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS58321013', '黄詩涵', 0, '+1 213-333-1679', 1, '587045949378443134', '459 S Broadway Apartment 44, Los Angeles, CA 90015, United States', '1994-06-29', 0, 0, 'shihanhuang', '2007-03-15', 'shu', '2007-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS39977273', '岡本紗良', 0, '+81 70-4600-6099', 2, '797504894583559842', 'Rm. 22, 1-6-9, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-11-14', 0, 0, 'okamotosara', '2018-05-09', 'saraokamoto', '2006-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS02855539', 'Edith Washington', 1, '+1 213-587-4372', 0, '675358112964523976', '969 Alameda Street Apartment 47, Los Angeles, CA 90002, United States', '1996-03-16', 0, 0, 'washingtonedith309', '2001-04-03', 'washingtonedit1015', '2011-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS88648573', '廖震南', 1, '+44 7545 302099', 3, '141553886185363641', 'No.35 Main building, 275 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1986-07-26', 0, 0, 'liao16', '2003-05-19', 'zli14', '2022-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS79981006', '杜家強', 1, '+44 7606 476863', 0, '215321678245732769', 'Unit 3, Oxford Eco Centre, 156 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1988-04-10', 0, 0, 'kakeung312', '2002-04-06', 'tokk', '2000-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS82942027', '山本健太', 1, '+44 (151) 328 7468', 1, '798894775675096778', 'Block 15, 482 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1993-01-18', 0, 0, 'yamamotokent', '2005-07-23', 'kenta3', '2018-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS44139000', '韩震南', 1, '+81 3-3444-6007', 0, '346854914422741743', '日本東京渋谷区代々木二丁目3番10号5号室', '1988-06-04', 0, 0, 'hanzhennan', '2017-02-15', 'zha', '2018-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS07331059', '池田結翔', 0, '+81 52-159-1598', 0, '902568943035129774', '日本なごやし北区清水三丁目19番14号4階', '1998-12-07', 0, 0, 'ikedayuito7', '2021-12-09', 'ikeda10', '2008-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS64367532', '蔡志遠', 0, '+81 11-606-5993', 0, '527142790207487076', 'Rm. 29, 2-1-18 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1996-02-10', 0, 0, 'chochiyuen', '2012-09-27', 'cchiyuen', '2007-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS98307956', 'Frances Warren', 1, '+1 212-963-7139', 4, '157219534996785914', '351 West Houston Street 3rd Floor, New York, NY 10014, United States', '1986-12-23', 0, 0, 'frances10', '2001-06-17', 'warren1947', '2008-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS92586933', '阮慧儀', 1, '+1 212-210-6612', 3, '883303001475650646', '840 Bank Street Apartment 19, New York, NY 10014, United States', '1987-06-24', 0, 0, 'yuenwy', '2006-11-27', 'yuewaiyee', '2003-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS20859895', '原陸', 0, '+86 755-374-0027', 2, '782390289182278756', 'No.32 building, 755 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1997-11-17', 0, 0, 'hriku', '2004-12-18', 'hara57', '2021-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS92846700', '顾晓明', 1, '+44 7672 681636', 1, '985251910802938075', 'Flat 35, 542 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-08-05', 0, 0, 'xiaominggu', '2007-04-08', 'xig', '2007-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS61361429', '马詩涵', 1, '+81 80-3075-3246', 4, '684770210864629243', '日本札幌厚別区上野幌一条二丁目1番12号11階', '1987-08-12', 0, 0, 'shim', '2011-02-10', 'shihanma', '2014-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS15085726', '藤田美緒', 0, '+81 90-4207-1398', 4, '793794608998833001', '日本なごやし熱田区千年二丁目5番15号17階', '1995-09-02', 0, 0, 'fujim5', '2012-06-13', 'mio8', '2011-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS39836351', 'Timothy Barnes', 0, '+86 178-2438-6763', 2, '895647152470584415', 'Room 4, No. 646, Shuangqing Rd, Chenghua District, Chengdu, China', '1996-12-12', 0, 0, 'barnestimo', '2007-01-03', 'timothybarnes219', '2015-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS18273942', '横山涼太', 1, '+86 10-331-4838', 3, '223612472517385506', 'No.31 building, 209 East Wangfujing Street, Dongcheng District , Beijing, China', '1989-12-21', 0, 0, 'yokryo', '2012-10-12', 'yokoyama1', '2004-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS29040659', '石井光莉', 0, '+86 755-5419-9348', 3, '335614780039793550', 'Room 4, 361 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1995-02-12', 0, 0, 'hi45', '2015-10-30', 'ishii3', '2021-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS22848755', '夏睿', 1, '+86 164-1957-5452', 3, '444852293197762327', '20F, 933 Lefeng 6th Rd, Zhongshan, China', '1990-02-27', 0, 0, 'xru', '2018-05-02', 'ruixia56', '2016-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS97920441', '渡部凛', 0, '+44 (116) 471 3574', 1, '092988383340767732', 'No.5 Main building, 335 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1988-02-03', 0, 0, 'rinwata', '2004-08-07', 'riwatanabe', '2003-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS85843149', '松田明菜', 0, '+44 7656 839793', 2, '894197908556365132', 'Unit 32, Oxford Eco Centre, 505 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1997-09-01', 0, 0, 'matsudaakina3', '2012-05-26', 'akinama', '2013-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS66604298', 'Martha Clark', 0, '+1 213-384-2310', 0, '094434326837250116', '662 S Broadway Suite 29, Los Angeles, CA 90015, United States', '1991-10-02', 0, 0, 'marthacla331', '2004-08-05', 'clarkmartha', '2003-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS50909530', '樂頴璇', 0, '+86 135-6325-1958', 1, '222090898986870071', 'No.31 building, 147 Xiaoping E Rd, Baiyun , Guangzhou, China', '1992-03-31', 0, 0, 'lok84', '2004-06-01', 'wingsuenlo18', '2004-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS92171067', '馮慧珊', 1, '+44 7920 066856', 3, '148769925056327728', 'No.21 Main building, 241 Hanover Street, London, W1S 1YD, United Kingdom', '1995-10-21', 0, 0, 'fungwaisan', '2008-12-06', 'fung1948', '2017-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS25901730', '曹震南', 1, '+81 3-1441-8463', 4, '368859691502468404', 'Rm. 12, 1-6-7, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-06-19', 0, 0, 'caoz', '2014-11-30', 'caozhe', '2015-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS83832237', '唐云熙', 1, '+86 187-1109-3846', 4, '457247240612999651', '中国广州市越秀区中山二路400号42栋', '1987-04-05', 0, 0, 'tangyunxi', '2018-09-01', 'tang831', '2014-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS63949241', '袁宇宁', 1, '+44 (20) 4568 4372', 3, '415124136919820728', 'No.41 Main building, 443 Pollen Street, London, W1S 1NG, United Kingdom', '1994-12-21', 0, 0, 'yuanyuning', '2010-08-15', 'yuanyuning10', '2014-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS81248403', '藤原大和', 1, '+44 5442 504483', 2, '489344673244747197', 'Block 1, 45 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1988-01-26', 0, 0, 'yfujiwara', '2009-01-19', 'yafu', '2005-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS94682009', '鄧安琪', 1, '+44 (121) 032 4794', 2, '072143341740525517', 'Block 19, 498 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1993-04-25', 0, 0, 'oktang', '2009-01-18', 'onkay210', '2018-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS00836208', '史杰宏', 0, '+1 212-727-3736', 4, '780160629019886347', '187 Bank Street Apt 33, New York, NY 10014, United States', '1995-03-09', 0, 0, 'jiehongsh', '2019-08-25', 'shi6', '2020-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS25248963', '宮本百花', 1, '+81 66-948-4144', 3, '199095610332648840', '日本おおさかし近江堂一丁目7番15号14階', '1991-05-10', 0, 0, 'mmomoka', '2010-04-08', 'mimomok', '2002-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS29590239', '钱云熙', 1, '+86 760-2893-0687', 3, '735285376602688000', 'No.4 building, 396 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1990-10-17', 0, 0, 'yunxi49', '2010-07-21', 'qianyunxi508', '2015-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS74424169', 'Gregory Sanders', 0, '+81 80-0410-9097', 2, '088752391074547511', '日本おおさかし西成区出城一丁目1番7号21号室', '1993-02-01', 0, 0, 'gregosa', '2013-12-16', 'sagregory', '2004-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS68009741', '阿部和真', 0, '+81 11-703-4387', 1, '262359655086444317', 'Rm. 20, 5-2-17 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-04-24', 0, 0, 'abekazuma43', '2008-06-10', 'abka330', '2013-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS30235352', '木下光', 1, '+81 66-760-5905', 2, '297578401143179990', '9F, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1988-11-07', 0, 0, 'hikaru701', '2002-02-05', 'hikakino81', '2019-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS69151994', '田明詩', 0, '+1 838-075-2064', 4, '910373906493199539', '613 Central Avenue Apt 48, Albany, NY 12206, United States', '1989-10-16', 0, 0, 'mingstin1', '2021-07-20', 'mingszetin', '2007-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS24309277', '于秀英', 1, '+44 7267 813221', 2, '826501433767881138', 'Flat 48, 664 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1997-06-30', 0, 0, 'yu308', '2009-06-05', 'xiuying93', '2020-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS72106046', '森百花', 1, '+81 11-166-4675', 3, '015103453937636325', '日本札幌白石区菊水三条五丁目4番15号19号室', '1986-12-26', 0, 0, 'momokamori', '2013-04-10', 'morimomoka', '2003-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS65132142', '魏子韬', 0, '+81 80-6214-8452', 1, '639154460761605033', '30F, 2-1-6 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1990-01-12', 0, 0, 'wz429', '2010-02-10', 'ziwe', '2015-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS13928908', '苑玲玲', 1, '+44 (161) 661 5864', 2, '610763673048567656', 'Flat 43, 867 Mosley St, Manchester, M2 3AQ, United Kingdom', '1998-09-03', 0, 0, 'lingling2', '2006-01-12', 'yll6', '2015-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS86613013', '张岚', 1, '+44 (1865) 23 4961', 2, '496775067208354978', 'Block 25, 155 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1989-01-27', 0, 0, 'lanz5', '2006-04-21', 'lzhang4', '2019-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS38079527', '吳志遠', 1, '+44 5700 669838', 3, '658454896192078709', 'Flat 9, 938 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1985-12-24', 0, 0, 'ngcy7', '2012-10-05', 'chiyuenng', '2009-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS75995662', '山崎光莉', 1, '+81 3-0811-0037', 1, '228633186910366795', '43F, 1-6-16, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-07-14', 0, 0, 'hikari829', '2006-02-23', 'yamazakihikari7', '2017-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS11526128', '容永權', 0, '+81 90-1044-2748', 3, '759142791150271132', '日本なごやし北区楠味鋺三丁目80番18号34号室', '1987-04-16', 0, 0, 'yungwk3', '2000-10-13', 'wkyung', '2006-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS64578921', '江永發', 0, '+86 167-8893-6659', 2, '304115956105962074', '中国东莞坑美十五巷504号26室', '1986-07-28', 0, 0, 'kowi77', '2003-07-22', 'kwf96', '2009-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS16466634', '蔡玲玲', 0, '+86 177-5180-7670', 1, '172320387922971151', 'Room 41, 388 West Chang''an Avenue, Xicheng District, Beijing, China', '1990-01-19', 0, 0, 'choilingling', '2016-12-14', 'choilingling61', '2004-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS31495880', '岡田七海', 0, '+86 760-122-3278', 2, '228078457723830654', 'No.27 building, 786 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1986-11-14', 0, 0, 'nanami1950', '2005-04-20', 'nanamiokada', '2013-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS53094674', '藤原架純', 1, '+86 138-6136-1439', 1, '103499122791919671', '中国成都市成华区双庆路563号7室', '1988-04-13', 0, 0, 'kasufuj1942', '2007-06-03', 'fujiwkasumi', '2000-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS49830908', '斉藤陽太', 1, '+1 213-430-5472', 3, '203232917338617554', '1 Grape Street Suite 34, Los Angeles, CA 90002, United States', '1992-04-23', 0, 0, 'yotasa', '2015-02-22', 'syota8', '2008-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS48573998', '佐々木彩乃', 0, '+86 20-8760-3851', 3, '272198384488445270', 'Room 46, CR Building, 951 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1998-10-30', 0, 0, 'sasakiayan', '2010-04-02', 'ayano5', '2017-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS65166705', 'Jesus Myers', 1, '+86 173-3631-5351', 4, '323514016003661351', '中国北京市东城区东单王府井东街982号华润大厦48室', '1997-03-13', 0, 0, 'jmyers', '2003-12-25', 'jesus2014', '2021-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS59769652', '胡家強', 1, '+81 70-9330-4805', 3, '055402467246260446', '日本なごやし北区清水三丁目19番14号32階', '1996-04-27', 0, 0, 'kkw1964', '2003-10-18', 'kakeungwu', '2008-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS72834629', 'Troy Daniels', 0, '+1 614-644-3794', 1, '439862135344365477', '23 Wicklow Road Suite 6, Columbus, GA 43204, United States', '1988-02-04', 0, 0, 'dtro', '2008-04-12', 'troyd', '2018-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS70544981', '汪慧嫻', 1, '+86 145-7159-1151', 1, '605753317912816076', '36F, 268 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1988-04-30', 0, 0, 'wongwh', '2013-05-05', 'wawong1', '2016-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS20740432', '有村涼太', 0, '+44 5737 361014', 1, '014781109486309012', 'Flat 30, 133 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1997-10-17', 0, 0, 'arimura205', '2009-08-12', 'arimura1123', '2012-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS40312949', 'Peter Mendez', 0, '+86 20-313-1057', 4, '582144085144464157', 'Room 36, CR Building, 646 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1989-10-05', 0, 0, 'mendezpet67', '2017-05-12', 'mendepete', '2016-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS62191909', 'Marilyn Reed', 0, '+86 184-4814-0144', 0, '567692453255300192', 'No.23 building, 406 Dong Zhi Men, Dongcheng District, Beijing, China', '1987-01-14', 0, 0, 'reedmarilyn2004', '2011-11-10', 'reed10', '2011-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS79890337', 'Marcus Reynolds', 1, '+81 52-545-0196', 4, '549383652695397008', '日本なごやし北区清水三丁目19番2号32号室', '1995-10-05', 0, 0, 'rmarcus', '2011-06-06', 'marcusreynolds', '2013-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS29171247', '鈴木桜', 0, '+81 11-211-7612', 4, '810722583109042360', '日本札幌白石区菊水三条五丁目4番16号46階', '1997-11-24', 0, 0, 'suzsakura', '2002-06-26', 'sas', '2000-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS10749591', '莫志遠', 1, '+81 3-5795-6253', 3, '717453198367171240', '49F, 1-6-1, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1997-01-16', 0, 0, 'mchiyuen', '2018-01-04', 'mocy', '2018-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS35123720', '谢睿', 1, '+81 90-1478-4817', 3, '046445478240041678', '35F, 6 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1988-12-05', 0, 0, 'xierui', '2018-10-28', 'ruixie', '2015-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS77624539', '陶云熙', 0, '+86 28-761-1741', 4, '245700590776022566', '中国成都市成华区双庆路496号华润大厦26室', '1993-12-25', 0, 0, 'yta324', '2016-06-04', 'yta', '2007-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS98575496', '向天樂', 1, '+81 70-2951-0362', 4, '145558668433938477', '日本なごやし北区清水三丁目19番2号7階', '1998-06-14', 0, 0, 'heungtinlok', '2016-06-15', 'heung99', '2021-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS47224613', '方子韬', 1, '+86 28-2442-8894', 2, '676183834265634130', '中国成都市锦江区人民南路四段579号26室', '1995-01-15', 0, 0, 'zif', '2018-01-13', 'fang312', '2006-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS31513015', 'Ann Medina', 1, '+81 66-591-8215', 2, '407571424830233472', '日本おおさかし平野区加美東四丁目9番19号45階', '1995-03-16', 0, 0, 'annmedin', '2008-01-02', 'medina5', '2007-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS60387369', '溫小慧', 0, '+86 149-1169-5747', 3, '415056294282800475', 'No.14 building, 191 028 County Rd, Yanqing District, Beijing, China', '1988-10-15', 0, 0, 'swwan10', '2002-03-05', 'wasiuwai7', '2007-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS45345532', '邵家玲', 1, '+81 80-3786-5514', 3, '920925539671963893', '日本東京港区東新橋一丁目5番9号15階', '1987-11-25', 0, 0, 'kalings', '2003-08-23', 'klsiu', '2004-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS44412116', '方安琪', 1, '+81 66-748-7316', 0, '329613994719799845', 'Rm. 45, 4-9-7 Kamihigashi, Hirano Ward, Osaka, Japan', '1994-04-17', 0, 0, 'fanganq', '2012-04-15', 'fanganqi1964', '2003-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS73063345', '萬朝偉', 0, '+86 28-3137-1606', 4, '691691922225280649', 'Room 46, CR Building, No. 448, Shuangqing Rd, Chenghua District, Chengdu, China', '1994-11-19', 0, 0, 'mengchiuwai', '2007-08-09', 'cwm6', '2005-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS23921622', '梁玲玲', 1, '+1 212-770-5085', 0, '118524409457302655', '515 West Houston Street Suite 20, New York, NY 10014, United States', '1999-02-10', 0, 0, 'lelingling', '2006-05-27', 'lll', '2021-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS75072313', '村田玲奈', 0, '+81 66-282-2662', 3, '389889550164746548', 'Rm. 14, 1-7-5 Omido, Higashiosaka, Osaka, Japan', '1994-07-22', 0, 0, 'remura217', '2006-05-25', 'murrena823', '2015-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS67451149', 'Crystal King', 0, '+86 163-5048-9316', 1, '179956096979658308', 'No.29 building, 859 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1988-04-29', 0, 0, 'kingcrystal10', '2021-11-17', 'crystal313', '2003-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS01995156', '錢心穎', 1, '+1 312-207-2487', 4, '680762475175404541', '358 Pedway 3rd Floor, Chicago, IL 60601, United States', '1996-09-29', 0, 0, 'swchin', '2000-02-11', 'chsw', '2010-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS42321689', '大塚絢斗', 0, '+86 137-9304-5685', 1, '974704782262424441', 'Room 25, 502 Middle Huaihai Road, Huangpu District, Shanghai, China', '1987-10-03', 0, 0, 'ayato1204', '2005-11-06', 'otsukaayato', '2009-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS99935174', '青木聖子', 1, '+86 28-755-4659', 4, '737339358845702671', '中国成都市成华区二仙桥东三路441号2楼', '1985-07-18', 0, 0, 'aokiseiko4', '2004-01-27', 'seiko2', '2019-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS54962986', '古詠詩', 0, '+81 66-612-9954', 3, '988873100538249574', '日本おおさかし西成区天神ノ森二丁目1番12号26階', '1993-02-17', 0, 0, 'wingszeku14', '2018-04-01', 'ku9', '2015-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS65434886', '佐藤一輝', 1, '+1 614-169-9053', 4, '301566883705120926', '357 East Alley Apt 17, Columbus, GA 43201, United States', '1997-06-06', 0, 0, 'saikki5', '2007-08-21', 'isato56', '2007-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS52168252', 'Brandon Thomas', 0, '+1 330-941-3572', 3, '788333100142623779', '868 West Market Street Apartment 30, Akron, OH 44333, United States', '1989-03-22', 0, 0, 'brandonthomas', '2010-06-15', 'thomas7', '2001-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS74648127', '杜志明', 0, '+86 134-6837-5547', 3, '019824586505354231', '中国广州市天河区天河路346号30号楼', '1986-03-25', 0, 0, 'tochimi7', '2020-05-06', 'tocm1954', '2020-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS93476387', '贺子韬', 1, '+44 (151) 646 9085', 3, '445831385989318590', 'Flat 13, 735 Redfern St, Liverpool, L20 8JB, United Kingdom', '1994-03-22', 0, 0, 'zitaohe', '2014-03-29', 'hezitao', '2019-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS88694310', 'Ethel Reyes', 1, '+81 70-4998-4823', 4, '729408126560642973', '日本おおさかし近江堂一丁目7番12号50階', '1997-11-15', 0, 0, 'etrey', '2000-09-21', 'reyes1015', '2014-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS05382080', '孟睿', 1, '+44 5313 561115', 3, '327328271416375789', 'Unit 7, Oxford Eco Centre, 552 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1996-05-03', 0, 0, 'meng216', '2014-03-03', 'merui', '2013-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS91017226', '刘子异', 1, '+86 10-8346-2090', 1, '095714309204496383', 'No.28 building, 750 028 County Rd, Yanqing District, Beijing, China', '1989-04-22', 0, 0, 'ziyi81', '2002-12-29', 'liuz', '2004-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS73385455', 'John Mills', 0, '+81 52-172-0936', 0, '859706789635275015', '14F, 10 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1998-09-02', 0, 0, 'johmil10', '2011-09-15', 'johnm', '2000-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS97380215', '黄致远', 0, '+81 74-566-0007', 1, '855408361346459743', '日本ならし学園南三丁目9番6号31階', '1994-04-18', 0, 0, 'huang1004', '2007-07-16', 'zhuang', '2016-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS28035864', '小島七海', 0, '+81 3-7002-4995', 4, '029135410552827818', '33F, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-10-05', 0, 0, 'kon128', '2005-11-04', 'nanak1012', '2006-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS48704592', '任慧敏', 0, '+81 66-334-8575', 1, '999382152552323812', '日本おおさかし西成区天神ノ森二丁目1番17号30階', '1990-01-17', 0, 0, 'ywaiman', '2010-05-30', 'waimanya1', '2011-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS65254281', 'Francisco Dunn', 0, '+81 3-9122-5934', 3, '319019673103836155', '11-kai, 5-2-18 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-10-02', 0, 0, 'dfrancisco', '2009-06-02', 'franciscod', '2003-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS11643804', 'Hazel Stephens', 1, '+81 80-5794-9792', 2, '394080445307345111', '日本おおさかし西成区出城一丁目1番10号22階', '1991-03-04', 0, 0, 'stephazel5', '2000-09-29', 'hsteph2', '2005-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS33956403', 'Catherine Washington', 0, '+81 11-916-1705', 1, '997271095327170922', '30-kai, 13-3-19 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1994-01-22', 0, 0, 'cathewashington42', '2020-07-07', 'cathewa523', '2005-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS62198325', '中川光', 1, '+81 80-0895-8047', 4, '013103144717730873', '19-kai, 6-1-1, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1998-04-14', 0, 0, 'hikan', '2008-12-01', 'hikaru314', '2017-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS09687930', 'Julie Bryant', 0, '+81 11-736-9674', 1, '923604910891870667', '日本札幌白石区菊水三条五丁目4番17号49号室', '1995-07-04', 0, 0, 'bryant525', '2000-08-06', 'bryantjulie', '2005-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS43059589', '橋本和真', 1, '+86 10-0633-7774', 3, '053722735748774385', 'Room 7, CR Building, 931 FuXingMenNei Street, XiCheng District, Beijing, China', '1996-12-14', 0, 0, 'kazumahashimoto1993', '2012-02-25', 'khash', '2003-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS75531500', '傅岚', 0, '+44 5801 275005', 1, '783405336915369542', 'Block 4, 625 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1998-02-17', 0, 0, 'fulan', '2004-08-24', 'lfu6', '2011-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS43338562', 'Joyce Stevens', 0, '+81 52-651-7194', 3, '921726796850674976', '28F, 16 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1992-11-29', 0, 0, 'stjoyce', '2004-09-17', 'sjoyce', '2004-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS22791981', '雷天樂', 0, '+81 80-2041-7561', 3, '191039074662554786', '3F, 13-3-10 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1987-04-12', 0, 0, 'loutl', '2020-10-10', 'louitinlok6', '2020-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS99643915', '木村海斗', 0, '+81 90-7797-5411', 3, '591426986852964575', '日本東京港区東新橋一丁目5番18号2階', '1995-11-19', 0, 0, 'kimurkaito', '2016-12-25', 'kk56', '2001-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS64294403', '吕睿', 1, '+44 7695 451279', 1, '593916145987643099', 'Block 32, 941 Park End St, Oxford, OX1 1JD, United Kingdom', '1990-03-26', 0, 0, 'rui1206', '2018-01-29', 'lu1025', '2005-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS41734200', 'Sarah Sanders', 1, '+44 7388 650071', 1, '078012032915852500', 'No.6 Main building, 174 Regent Street, London, W1B 2LX, United Kingdom', '1986-09-06', 0, 0, 'ssanders9', '2016-02-28', 'sanderssar76', '2015-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS58170670', 'Bonnie Cox', 1, '+1 718-273-6101', 2, '630710223954192621', '640 Columbia St Apt 13, Brooklyn, NY 11231, United States', '1996-09-19', 0, 0, 'cobonni1', '2003-01-27', 'bonniecox68', '2014-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS04383825', '文頴思', 0, '+86 21-995-4179', 0, '715037412872675874', 'Room 1, CR Building, 458 Middle Huaihai Road, Huangpu District, Shanghai, China', '1996-01-22', 0, 0, 'man81', '2011-11-15', 'manws', '2015-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS95423263', '坂本愛梨', 1, '+81 66-689-5257', 1, '040642304366465893', '2-kai, 1-7-18 Omido, Higashiosaka, Osaka, Japan', '1987-03-28', 0, 0, 'sakamotoair', '2013-09-10', 'sakamotoai10', '2008-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS65341778', '鄺國榮', 1, '+44 (151) 620 0089', 2, '089464001366371535', 'Block 10, 936 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1991-10-30', 0, 0, 'kwkw', '2009-03-31', 'kwokwong5', '2015-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS60967949', '樊思妤', 0, '+44 (151) 889 8804', 2, '073146933632417847', 'Unit 19, Oxford Eco Centre, 477 Hanover St, Liverpool, L1 4AF, United Kingdom', '1997-09-12', 0, 0, 'syfan', '2003-11-04', 'syfan', '2015-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS74953257', '曹璐', 1, '+44 7588 311976', 2, '112965319733946313', 'Unit 5, Oxford Eco Centre, 615 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1987-04-08', 0, 0, 'caolu', '2014-03-11', 'caolu', '2009-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS36987351', 'Timothy Castro', 1, '+81 66-264-8380', 2, '980563523810640186', '日本おおさかし西成区出城一丁目1番16号5号室', '1994-07-06', 0, 0, 'castro10', '2006-08-03', 'timothyc', '2015-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS42167017', '钱秀英', 1, '+1 330-556-9978', 1, '687910589231698677', '436 Riverview Road Apt 8, Akron, OH 44313, United States', '1996-11-26', 0, 0, 'xiuying93', '2010-04-30', 'qianx', '2016-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS97619072', '王麗欣', 0, '+86 138-4520-8967', 1, '544067348416809291', '34F, 966 Jingtian East 1st St, Futian District, Shenzhen, China', '1989-06-21', 0, 0, 'lywo64', '2021-10-19', 'lywong', '2021-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS94983315', '任詩涵', 1, '+1 330-660-1926', 3, '144973053941364856', '583 Ridgewood Road Suite 8, Akron, OH 44321, United States', '1998-06-22', 0, 0, 'sr415', '2007-09-29', 'renshihan', '2001-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS26689059', '岡本瑛太', 0, '+81 3-7838-4917', 1, '872899062372855875', '19F, 1-6-11, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1996-03-25', 0, 0, 'eitaokamoto6', '2021-01-05', 'eitaokamoto', '2012-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS83010446', '蒋致远', 0, '+1 614-667-6944', 2, '308380098781582156', '234 Diplomacy Drive Suite 7, Columbus, GA 43228, United States', '1993-03-18', 0, 0, 'zhiyuan9', '2010-07-10', 'zhiyujiang223', '2014-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS10370229', '宣永發', 0, '+1 718-420-2889', 3, '672484366743453035', '857 Bergen St Suite 42, Brooklyn, NY 11217, United States', '1997-03-10', 0, 0, 'wfhsuan10', '2017-06-22', 'wingfat7', '2019-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS92962565', '朱慧敏', 1, '+44 (151) 597 4577', 2, '052387407664509528', 'No.46 Main building, 26 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1986-04-18', 0, 0, 'wmch', '2016-11-18', 'waichu', '2002-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS91436583', '陳力申', 0, '+81 52-960-9539', 2, '864414006706401068', '日本なごやし北区楠味鋺三丁目80番17号34号室', '1989-04-06', 0, 0, 'chanls9', '2003-06-17', 'chls1205', '2000-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS67714524', '陶嘉伦', 1, '+86 769-878-7441', 3, '798558440934877366', 'No.4 building, 673 Huanqu South Street 2nd Alley, Dongguan, China', '1986-11-25', 0, 0, 'taojialun8', '2009-03-06', 'tjialun69', '2005-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS95911764', '原田一輝', 0, '+86 131-0067-1722', 3, '205008609320661463', 'No.27 building, 303 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1988-12-21', 0, 0, 'harada4', '2019-04-04', 'hai', '2020-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS93217041', 'Ryan Hunter', 1, '+86 20-7148-2946', 1, '390861344645052803', 'Room 4, 751 Xiaoping E Rd, Baiyun , Guangzhou, China', '1988-08-06', 0, 0, 'ryanhun', '2017-08-23', 'ryhun2020', '2000-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS37110434', '藤明', 0, '+81 80-5924-7876', 2, '057440256964307532', '日本ならし学園南三丁目9番6号2階', '1989-04-12', 0, 0, 'ming1946', '2020-12-10', 'ming09', '2017-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS52424491', 'Cindy Herrera', 0, '+81 66-911-8101', 2, '334339458316984132', 'Rm. 41, 2-1-12 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1990-03-10', 0, 0, 'herreracindy', '2010-03-29', 'cindyh', '2000-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS38534229', '谭安琪', 1, '+1 212-341-3149', 3, '193026248985832488', '243 Canal Street Apartment 30, New York, NY 10013, United States', '1997-08-04', 0, 0, 'anqita', '2007-07-21', 'anqitan', '2018-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS76898146', '郑晓明', 1, '+81 80-4465-8125', 3, '930948035971449244', '20F, 5-2-1 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1992-04-29', 0, 0, 'xiaz502', '2002-07-25', 'xiaomingzhe1013', '2005-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS92965485', '西村陽菜', 1, '+86 137-7660-2448', 4, '932194017639348063', 'Room 34, 18 028 County Rd, Yanqing District, Beijing, China', '1992-07-16', 0, 0, 'hini', '2009-03-24', 'hnishimura', '2019-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS34572252', '周子韬', 1, '+81 80-8984-3882', 1, '070472701690616389', '日本なごやし北区清水三丁目19番14号5階', '1989-01-06', 0, 0, 'zitaoz', '2011-05-09', 'zhz503', '2016-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS92584119', '钱晓明', 1, '+86 21-453-7276', 1, '109936995774637469', 'No.16 building, 825 Jianxiang Rd, Pudong, Shanghai, China', '1990-05-19', 0, 0, 'xqian55', '2021-02-04', 'qixiaom', '2005-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS59204908', 'Doris Marshall', 0, '+44 (151) 603 0817', 3, '333346582467548351', 'Unit 46, Oxford Eco Centre, 810 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1990-08-15', 0, 0, 'marshalld516', '2015-07-03', 'marshall9', '2011-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS71364841', '莫璐', 1, '+81 74-209-3327', 3, '822767850119473504', '32F, 3-9-9 Gakuenminami, Nara, Japan', '1985-02-14', 0, 0, 'molu826', '2000-10-06', 'mlu1', '2006-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS75940005', 'Debra Woods', 1, '+86 755-2162-9334', 0, '845435546502371006', '47F, 295 Shennan Ave, Futian District, Shenzhen, China', '1993-08-21', 0, 0, 'dwoods', '2004-01-20', 'woodebra', '2001-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS21647951', '區裕玲', 1, '+81 66-503-9281', 1, '239285253171446243', '日本おおさかし西成区出城一丁目1番2号15階', '1995-10-05', 0, 0, 'ylau829', '2001-10-05', 'ayl3', '2002-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS04675386', 'Cindy Castillo', 1, '+86 769-0301-5221', 4, '269794317964024837', 'Room 33, CR Building, 466 Shanhu Rd, Dongguan, China', '1988-09-14', 0, 0, 'cindycastillo', '2018-04-16', 'ccindy', '2014-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS89184566', '苏嘉伦', 0, '+81 70-5544-0632', 0, '745378803705405907', '42F, 2-1-14 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1994-07-02', 0, 0, 'jialun78', '2010-11-12', 'jialunsu', '2008-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS65557898', 'Kelly Anderson', 1, '+81 66-809-6519', 3, '482541618837664852', '45-kai, 1-7-16 Omido, Higashiosaka, Osaka, Japan', '1997-08-22', 0, 0, 'kellande', '2014-12-03', 'anderk', '2017-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS73545359', '苏子异', 1, '+81 70-8796-3175', 3, '011947049264366731', '8-kai, 5 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-11-07', 0, 0, 'suz1230', '2016-01-14', 'zs1944', '2007-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS80397130', '石川桜', 1, '+81 52-476-9805', 4, '797070724231795686', '日本なごやし北区楠味鋺三丁目80番13号1階', '1990-05-27', 0, 0, 'sakuishikawa8', '2011-08-19', 'sakura1997', '2013-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS83004037', '翁詩君', 1, '+86 760-037-4472', 2, '645651508151731835', '中国中山京华商圈华夏街750号20室', '1988-12-03', 0, 0, 'yungsk', '2002-10-04', 'szekwany', '2009-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS59053579', '佐々木優奈', 1, '+81 70-8502-6325', 2, '968107975343979619', 'Rm. 29, 2-3-9 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-05-12', 0, 0, 'sasakiyun', '2011-05-24', 'sasakiyuna724', '2000-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS08368464', '谷口彩乃', 1, '+86 189-8569-2858', 0, '926138840355241245', '中国北京市東城区東直門內大街437号华润大厦6室', '1993-01-16', 0, 0, 'ayanot', '2004-10-06', 'taniguchiayano8', '2000-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS19610729', '彭子异', 1, '+1 614-959-3261', 0, '575484237124930841', '169 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1994-06-21', 0, 0, 'peng10', '2019-03-05', 'pz7', '2010-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS64665848', '薛浩然', 1, '+81 70-0262-4118', 0, '376848782932479986', '29-kai, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1994-08-31', 0, 0, 'sit79', '2005-06-20', 'sithy8', '2006-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS05402028', '佘梓軒', 0, '+1 213-638-4385', 3, '051241959599881999', '685 Alameda Street Suite 21, Los Angeles, CA 90002, United States', '1996-09-08', 0, 0, 'sheh9', '2018-07-20', 'tszhinsheh', '2010-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS91703122', '傅世榮', 1, '+81 70-9050-5715', 1, '823459688876360112', 'Rm. 46, 6-1-3, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1986-10-06', 0, 0, 'fu124', '2001-04-05', 'saiwing10', '2011-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS08906377', 'Ashley Howard', 0, '+86 755-044-4547', 0, '061854286256302059', 'No.12 building, 491 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1985-08-23', 0, 0, 'howardash', '2005-07-17', 'ashlh', '2018-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS89520266', '野口拓哉', 1, '+86 20-5927-9801', 4, '295219977374159190', 'No.35 building, 517 Xiaoping E Rd, Baiyun , Guangzhou, China', '1990-08-28', 0, 0, 'nogtakuya', '2020-05-31', 'tnogu', '2011-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS71175447', '毛云熙', 1, '+81 74-700-6571', 1, '559962247760458036', '23-kai, 1-7-18 Saidaiji Akodacho, Nara, Japan', '1989-08-26', 0, 0, 'maoyunxi3', '2019-03-31', 'maoyunxi', '2004-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS31714497', 'Kathleen Shaw', 0, '+86 149-1870-2653', 3, '940194010680680655', '中国上海市浦东新区健祥路177号7栋', '1988-09-01', 0, 0, 'shaw724', '2007-12-20', 'shakath', '2014-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS60840112', '野口悠人', 0, '+44 (20) 6699 6247', 3, '827874275501181395', 'No.41 Main building, 252 Regent Street, London, W1B 2LX, United Kingdom', '1992-11-21', 0, 0, 'yunoguchi69', '2009-08-11', 'ny509', '2001-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS42891257', '侯嘉伦', 1, '+44 7519 632404', 3, '948535482291676913', 'Flat 24, 544 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-01-19', 0, 0, 'jialuh', '2004-10-29', 'jialhou', '2004-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS98302600', '錢浩然', 0, '+81 80-3435-8169', 1, '932939621068026809', '18-kai, 1-1-20 Deshiro, Nishinari Ward, Osaka, Japan', '1989-12-27', 0, 0, 'hychin5', '2017-09-14', 'chy721', '2001-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS90333980', '溫惠敏', 0, '+81 74-927-5298', 2, '729957123061030996', '日本ならし学園南三丁目9番1号50階', '1992-05-10', 0, 0, 'wmwan', '2015-09-28', 'waiman10', '2006-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS70909626', '汤杰宏', 1, '+1 614-194-3558', 1, '722357336009217110', '270 Tremont Road Apartment 12, Columbus, GA 43212, United States', '1990-09-29', 0, 0, 'jiehongta', '2012-04-18', 'tangjieho4', '2014-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS95428606', '王詠詩', 0, '+1 838-895-4752', 4, '428189971995412294', '594 Central Avenue Apartment 5, Albany, NY 12206, United States', '1995-04-05', 0, 0, 'wingsze706', '2011-07-27', 'wswo1988', '2018-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS29950337', '孔子韬', 0, '+81 66-261-6597', 2, '861413207438370615', '日本おおさかし東住吉区東田辺三丁目27番9号17階', '1993-05-31', 0, 0, 'kongzitao', '2000-12-18', 'kong1995', '2013-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS23519616', 'Paul Wright', 0, '+44 5797 078121', 4, '762651496094075962', 'Unit 47, Oxford Eco Centre, 546 Hanover St, Liverpool, L1 4AF, United Kingdom', '1991-12-17', 0, 0, 'wrpa', '2018-06-15', 'pawright', '2018-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS26198275', '三浦架純', 0, '+81 66-132-8230', 3, '632648636440492828', '43F, 1-1-9 Deshiro, Nishinari Ward, Osaka, Japan', '1993-07-15', 0, 0, 'mkasumi', '2001-01-01', 'miura1988', '2013-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS65092677', 'Danielle Vasquez', 1, '+44 7248 250842', 0, '744705725781715468', 'Unit 36, Oxford Eco Centre, 22 Portland St, Manchester, M1 3LA, United Kingdom', '1994-04-30', 0, 0, 'vasquezdanielle', '2005-07-30', 'danielle90', '2001-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS87498447', '廖岚', 1, '+81 66-704-0573', 0, '162309941958412454', '46F, 4-9-12 Kamihigashi, Hirano Ward, Osaka, Japan', '1987-10-22', 0, 0, 'lanliao7', '2003-11-12', 'liaolan', '2002-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS73897100', '横山悠人', 0, '+81 11-971-8007', 1, '579852089337317733', '日本札幌豊平区豊平三条十三丁目3番6号1階', '1986-01-30', 0, 0, 'yokoyama5', '2019-06-06', 'yutoyokoyama', '2018-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS62426524', '藤井舞', 1, '+1 330-962-0589', 1, '881228314894635787', '964 West Market Street Apt 11, Akron, OH 44333, United States', '1987-03-18', 0, 0, 'mafujii', '2007-11-04', 'mai45', '2013-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS80131422', 'John Marshall', 0, '+86 755-297-4614', 2, '162752285901100221', '中国深圳罗湖区清水河一路692号35楼', '1993-11-03', 0, 0, 'johnmarsh94', '2012-05-26', 'marshalljohn', '2001-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS46467886', '後藤美緒', 1, '+1 212-455-4200', 0, '510807854318487142', '350 Canal Street Suite 47, New York, NY 10013, United States', '1994-03-20', 0, 0, 'gom1220', '2017-06-10', 'gotomio317', '2003-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS79802856', 'Louise Martin', 0, '+86 199-7195-3215', 0, '154260599401508034', 'No.29 building, 224 East Wangfujing Street, Dongcheng District , Beijing, China', '1991-05-24', 0, 0, 'louisem304', '2019-09-17', 'louise72', '2010-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS80255049', '前田詩乃', 0, '+1 212-321-3725', 1, '382196463940302918', '264 Fifth Avenue Apartment 43, New York, NY 10017, United States', '1997-08-05', 0, 0, 'maedshino', '2001-01-09', 'maeda6', '2015-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS33151527', '森悠人', 0, '+86 21-3640-8500', 3, '276941113847755775', '中国上海市徐汇区虹桥路724号12号楼', '1998-11-12', 0, 0, 'my99', '2008-07-13', 'mori716', '2000-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS95916385', '吳力申', 0, '+86 28-1487-9748', 2, '772764918473123703', 'Room 15, 536 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1994-03-03', 0, 0, 'ngliksun', '2003-07-15', 'ngls', '2005-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS10127352', '宣安娜', 1, '+86 176-5852-5732', 0, '480686132352223637', '中国深圳罗湖区蔡屋围深南东路224号35室', '1989-07-17', 0, 0, 'onnahsua', '2013-03-05', 'onhsu702', '2015-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS08026414', '古安娜', 1, '+1 213-960-6985', 3, '185020707365325300', '341 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1986-08-27', 0, 0, 'kuon', '2013-03-13', 'onnak1954', '2017-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS63971779', '高田美緒', 0, '+44 (116) 365 9324', 1, '984808897917662198', 'Unit 29, Oxford Eco Centre, 580 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1990-03-01', 0, 0, 'takadamio', '2010-07-28', 'takmio59', '2008-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS98025846', 'Sandra Jones', 1, '+81 52-881-0443', 4, '038107004662516767', '11F, 9 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1994-08-28', 0, 0, 'jonsandra94', '2000-06-11', 'sandrajones520', '2016-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS52755910', '谷力申', 0, '+1 718-125-3984', 2, '406889056685692829', '815 1st Ave Suite 22, Brooklyn, NY 11220, United States', '1985-12-28', 0, 0, 'kooliksun', '2000-12-22', 'koo530', '2017-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS17588102', '侯宇宁', 0, '+86 10-8643-7409', 2, '872214779696047282', 'No.8 building, 852 68 Qinghe Middle St, Haidian District, Beijing, China', '1989-04-17', 0, 0, 'hyuning51', '2018-07-23', 'houyuning629', '2017-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS65860032', '龚子异', 0, '+44 7590 106479', 1, '385791606676231705', 'Unit 46, Oxford Eco Centre, 183 Maddox Street, London, W1S 1PU, United Kingdom', '1994-10-17', 0, 0, 'gziyi', '2016-09-16', 'gong306', '2021-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS85944861', 'Kenneth Cox', 1, '+81 52-410-5292', 2, '037513902645776702', '14F, 2 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-11-25', 0, 0, 'kennecox65', '2007-10-17', 'kenncox', '2017-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS02187740', '内田舞', 0, '+81 11-015-8199', 1, '982516156159500158', '9F, 6-1-3, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1995-04-18', 0, 0, 'umai', '2013-06-15', 'uma94', '2002-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS27700844', 'Douglas Murray', 1, '+1 614-331-1978', 0, '462734306105725622', '583 Tremont Road Apartment 13, Columbus, GA 43212, United States', '1986-07-20', 0, 0, 'douglasm6', '2020-12-01', 'murradoug2', '2013-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS89501776', '樂慧敏', 0, '+81 3-7970-3292', 3, '948022066201704889', '14F, 2-3-16 Yoyogi, Shibuya-ku, Tokyo, Japan', '1993-02-13', 0, 0, 'lok417', '2006-07-15', 'lokwaiman', '2008-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS61292405', '尹頴思', 1, '+86 162-2613-0789', 0, '377502587790152360', '39F, 424 028 County Rd, Yanqing District, Beijing, China', '1994-01-07', 0, 0, 'yinwingsze', '2006-01-28', 'wingsze05', '2010-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS90068755', '黄子韬', 0, '+1 614-593-4272', 2, '072660936624103197', '24 East Cooke Road Apt 24, Columbus, GA 43214, United States', '1997-03-13', 0, 0, 'huazitao4', '2022-02-17', 'huangzitao82', '2004-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS85822157', '松本大地', 1, '+1 312-999-9802', 3, '913968481135720789', '677 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1986-10-17', 0, 0, 'daichim54', '2017-03-28', 'mada', '2010-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS83120145', '任晓明', 0, '+81 3-1022-4591', 2, '386738470821344861', '日本東京港区東新橋一丁目5番20号6階', '1991-09-11', 0, 0, 'ren88', '2020-08-12', 'xiaomingre', '2014-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS85603581', '田安琪', 1, '+81 3-4186-1268', 2, '871771821557089055', '11F, 3-15-8 Ginza, Chuo-ku, Tokyo, Japan', '1985-10-24', 0, 0, 'oktin4', '2009-04-14', 'oktin910', '2008-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS38316595', 'Jose Gonzalez', 0, '+44 (116) 861 7954', 0, '368393462811607245', 'Unit 22, Oxford Eco Centre, 908 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1985-07-12', 0, 0, 'gonzjose', '2007-10-04', 'jogonzalez', '2003-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS97483247', '姜玲玲', 0, '+86 28-2184-7771', 4, '208666197733012225', '中国成都市成华区二仙桥东三路679号26楼', '1995-01-27', 0, 0, 'chang6', '2021-04-10', 'linchan610', '2018-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS04301718', '中山美月', 0, '+81 52-620-7959', 3, '058954901351802859', 'Rm. 11, 8 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1991-11-29', 0, 0, 'nakayama03', '2002-05-16', 'nakmitsuki', '2001-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS14591900', '斎藤架純', 0, '+44 (116) 098 2281', 3, '706629408200656772', 'No.22 Main building, 928 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1998-05-26', 0, 0, 'ksaito', '2016-12-23', 'ksaito4', '2001-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS97728758', '罗睿', 0, '+44 (1865) 87 0508', 3, '136259970198533713', 'Unit 38, Oxford Eco Centre, 183 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1985-08-05', 0, 0, 'luorui71', '2008-05-18', 'rulu', '2005-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS95334756', '後藤湊', 0, '+81 3-4186-5195', 4, '786382208687027884', '日本東京港区東新橋一丁目5番5号40号室', '1986-09-09', 0, 0, 'gotm309', '2000-10-28', 'mgoto', '2002-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS78452673', 'Stephen Kennedy', 1, '+81 90-1110-5968', 4, '981272814932596104', '日本おおさかし近江堂一丁目7番11号47号室', '1992-07-31', 0, 0, 'skenne', '2020-11-15', 'stephenkenne10', '2013-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS26776919', 'Peter Reyes', 1, '+44 (151) 572 9750', 3, '219897779552990435', 'Flat 46, 669 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1985-05-09', 0, 0, 'rpeter723', '2008-03-10', 'petrey', '2013-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS32702211', 'Lucille Rose', 1, '+81 11-374-3488', 4, '543780117290422747', '日本札幌白石区菊水三条五丁目2番3号6階', '1994-08-29', 0, 0, 'rol', '2014-06-27', 'roseluc', '2008-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS07651707', 'Alfred Black', 1, '+44 5136 460622', 4, '840227857229454357', 'Block 5, 322 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1994-05-11', 0, 0, 'blacka', '2009-08-26', 'blackalfred907', '2008-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS60867017', '謝俊宇', 0, '+81 66-757-4252', 3, '252942901153739656', '日本おおさかし西成区天神ノ森二丁目1番8号19階', '1994-06-21', 0, 0, 'chunyuts', '2017-05-24', 'chts69', '2005-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS16990382', 'Jamie Herrera', 0, '+86 10-8297-2741', 3, '389971925084614577', '中国北京市房山区岳琉路202号29栋', '1988-05-22', 0, 0, 'jamieherrera', '2007-12-02', 'jamie1207', '2020-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS87751346', '中村拓哉', 0, '+44 5185 278071', 1, '580184118551682011', 'No.45 Main building, 743 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1986-03-16', 0, 0, 'takuyanakamura1', '2017-10-17', 'nakamta', '2010-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS87496109', 'Mildred Moreno', 0, '+1 213-044-6254', 0, '972901510962777829', '925 Alameda Street Apt 18, Los Angeles, CA 90002, United States', '1994-01-04', 0, 0, 'morenomildred', '2004-07-07', 'morenomildred51', '2014-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS11592491', 'Don Diaz', 1, '+86 195-3487-8491', 4, '771474174882376286', '中国上海市黄浦区淮海中路728号华润大厦8室', '1990-03-15', 0, 0, 'didon505', '2007-09-26', 'dondiaz90', '2019-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS11447269', '三浦翼', 0, '+86 755-944-9628', 1, '561231406159465458', '中国深圳龙岗区学园一巷325号32楼', '1988-04-22', 0, 0, 'tsubasa1981', '2004-09-25', 'tsubasam', '2007-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS10897073', '姚國賢', 0, '+81 11-498-3797', 2, '232265295978960779', '日本札幌清田区真栄四条五丁目19番3号4階', '1992-06-10', 0, 0, 'kwokyinyeow', '2006-12-27', 'yeky', '2020-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS79276193', '彭震南', 1, '+81 80-2049-2780', 1, '281726204186285479', '34F, 5-2-9 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-12-03', 0, 0, 'pengzhennan', '2014-10-17', 'pengz', '2007-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS33416697', '郑云熙', 1, '+44 5577 463412', 4, '815094294672478812', 'No.35 Main building, 789 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1997-09-11', 0, 0, 'yunxiz', '2018-10-10', 'zhey', '2013-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS20457532', '黃家輝', 0, '+81 80-3849-2167', 3, '737275276091828266', '29F, 10 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-12-13', 0, 0, 'kafai4', '2011-11-04', 'kafai329', '2018-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS50405751', 'Robin Gardner', 1, '+86 21-2134-0852', 3, '256354063201215819', '中国上海市闵行区宾川路699号15室', '1995-07-14', 0, 0, 'rog817', '2005-08-16', 'gardnerr426', '2008-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS39679177', '太田健太', 0, '+81 70-1833-7918', 1, '173771892045015573', '49F, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1988-10-07', 0, 0, 'okenta6', '2021-09-01', 'otaken', '2009-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS09268129', '小野美緒', 0, '+81 52-096-0658', 3, '593770299900329785', 'Rm. 26, 2-5-7 Chitose, Atsuta Ward, Nagoya, Japan', '1992-12-07', 0, 0, 'onom83', '2001-06-12', 'miono', '2003-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS29444140', '宣心穎', 0, '+81 80-3869-2169', 3, '345392022829178024', '日本なごやし瑞穂区河岸町四丁目20番2号41号室', '1995-03-18', 0, 0, 'hsuan2', '2011-07-24', 'hsuan41', '2013-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS82689057', '湯明詩', 0, '+86 20-8428-6601', 3, '236969186473549107', '中国广州市白云区机场路棠苑街五巷5号18栋', '1986-06-12', 0, 0, 'msto51', '2012-12-31', 'tomingsze', '2011-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS37547431', '周榮發', 0, '+81 3-2695-1771', 1, '411581749510025051', '9-kai, 1-5-11, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1990-10-23', 0, 0, 'wfchow10', '2018-07-22', 'cwingfat8', '2011-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS31970356', '黎小慧', 0, '+1 213-653-8682', 3, '486026428262056630', '290 Alameda Street Apt 36, Los Angeles, CA 90002, United States', '1985-10-27', 0, 0, 'lai1998', '2005-06-20', 'siuwai7', '2008-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS25356528', '宋子韬', 0, '+44 5593 622186', 3, '650309254157163260', 'Block 35, 641 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1989-12-06', 0, 0, 'zso', '2013-01-13', 'songzitao506', '2000-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS45230524', '伊藤大和', 1, '+1 212-699-3889', 3, '852709308684028038', '720 West Houston Street Apt 45, New York, NY 10014, United States', '1990-09-01', 0, 0, 'yamatoito', '2020-01-07', 'itoyamato65', '2011-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS48421765', 'Linda Simpson', 0, '+44 5905 665250', 3, '689453570192131848', 'Block 5, 733 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1990-10-06', 0, 0, 'simpsonlin3', '2002-02-23', 'simpsonlinda210', '2001-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS11322111', '钱云熙', 0, '+86 170-0987-9784', 2, '967426734387220232', '中国北京市东城区东单王府井东街9号22栋', '1985-11-25', 0, 0, 'yunxiqian', '2019-08-28', 'yunxiq', '2003-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS35541557', '戚安琪', 1, '+44 (116) 285 0402', 3, '168484823803973509', 'Unit 38, Oxford Eco Centre, 663 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1987-02-21', 0, 0, 'chic46', '2012-08-21', 'okchic', '2018-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS98572638', '田嘉欣', 1, '+86 21-5701-9367', 3, '129326693685161116', 'Room 41, CR Building, 77 Binchuan Rd, Minhang District, Shanghai, China', '1995-07-10', 0, 0, 'tikaryan1015', '2002-02-28', 'tinkaryan', '2000-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS96678023', '林致远', 0, '+81 70-4172-1879', 3, '778044478335435290', '日本札幌清田区真栄四条五丁目19番8号5階', '1998-04-19', 0, 0, 'linz2006', '2018-05-29', 'zhilin924', '2020-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS80939476', '中村海斗', 1, '+81 80-4729-1977', 3, '383719205417582088', '日本なごやし北区楠味鋺三丁目80番1号19階', '1991-09-12', 0, 0, 'nakaito', '2004-06-09', 'nakamurak', '2010-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS05479216', '斎藤大輔', 1, '+86 179-1717-2113', 3, '599317938340347893', 'No.8 building, 453 Shanhu Rd, Dongguan, China', '1986-10-30', 0, 0, 'saidaisuke', '2003-01-01', 'saito7', '2018-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS92124284', '钟秀英', 0, '+1 213-030-1840', 0, '500797114276381066', '413 Grape Street Apartment 39, Los Angeles, CA 90002, United States', '1996-03-09', 0, 0, 'xz7', '2013-02-04', 'xzho', '2005-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS53094947', 'Richard Owens', 0, '+86 150-4442-4592', 0, '010753291743744653', '中国成都市锦江区红星路三段538号9楼', '1989-10-11', 0, 0, 'richardowens2', '2018-09-23', 'ricowe', '2012-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS90753104', '吕秀英', 1, '+81 70-5426-3010', 2, '238562073813760800', '21-kai, 3-9-20 Gakuenminami, Nara, Japan', '1987-11-13', 0, 0, 'xiuyinglu', '2000-12-06', 'luxiuying313', '2009-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS88118199', '高木陸', 1, '+86 139-6152-0475', 1, '393432428093942499', '28F, 460 68 Qinghe Middle St, Haidian District, Beijing, China', '1989-10-31', 0, 0, 'takagiriku', '2012-12-10', 'rt4', '2012-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS71219377', '小山一輝', 1, '+44 (1865) 38 5575', 0, '235580258742469187', 'Flat 46, 10 Park End St, Oxford, OX1 1JD, United Kingdom', '1998-03-30', 0, 0, 'ikki1985', '2007-12-22', 'kik2', '2010-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS33239309', 'Travis Schmidt', 0, '+86 20-2189-1893', 0, '156726796772072196', 'Room 42, CR Building, 916 Xiaoping E Rd, Baiyun , Guangzhou, China', '1992-11-16', 0, 0, 'schmidt1945', '2001-11-26', 'travissc', '2009-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS83492729', 'Jerry Castro', 0, '+81 74-211-0400', 3, '601511303797873609', '45F, 3-9-19 Gakuenminami, Nara, Japan', '1996-09-10', 0, 0, 'jerrycastro', '2016-01-05', 'castjer', '2001-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS47191567', '鄭青雲', 0, '+86 755-180-0660', 2, '029027977565022149', '中国深圳罗湖区清水河一路320号7栋', '1997-11-30', 0, 0, 'cwc14', '2004-01-19', 'checw', '2010-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS57766024', '向晓明', 1, '+86 760-4695-7140', 2, '820007742306620748', 'No.33 building, 408 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1991-03-23', 0, 0, 'xiaxiang', '2015-03-25', 'xiang113', '2014-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS93031141', '曾國明', 1, '+86 195-6667-1048', 1, '523704666252716419', 'No.33 building, 690 Shanhu Rd, Dongguan, China', '1991-06-16', 0, 0, 'tskwokming2014', '2020-07-31', 'kmt', '2011-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS45994274', '尹睿', 1, '+81 66-145-6114', 3, '380084976957190165', '6F, 3-27-18 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1986-03-20', 0, 0, 'ruyin', '2009-04-27', 'yrui', '2005-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS22346190', '崔小慧', 1, '+81 66-148-8807', 1, '448646528761378056', '37F, 1-1-14 Deshiro, Nishinari Ward, Osaka, Japan', '1986-03-13', 0, 0, 'swchoi830', '2021-12-31', 'choisiuwai5', '2016-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS40375096', 'Jennifer Gibson', 1, '+81 70-8670-8402', 3, '009946668197255193', '日本おおさかし西成区天神ノ森二丁目1番15号10階', '1987-07-25', 0, 0, 'gjennifer', '2010-05-28', 'jennifer3', '2004-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS68443727', '向宇宁', 0, '+81 52-700-3951', 4, '317360064402906939', '50F, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1994-02-02', 0, 0, 'xiangyun5', '2017-03-29', 'yuningxia07', '2007-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS74564013', 'Harold Vasquez', 1, '+81 70-2346-1036', 3, '221780248017524461', '日本なごやし北区楠味鋺三丁目80番19号41号室', '1987-08-15', 0, 0, 'harvasquez', '2006-01-15', 'harold8', '2016-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS32865365', '袁霆鋒', 1, '+81 11-105-9750', 3, '454691624494901361', '日本札幌清田区真栄四条五丁目19番2号20号室', '1985-10-28', 0, 0, 'tingfungyuen', '2018-07-23', 'ytf', '2007-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS19321162', '郑岚', 0, '+81 70-1880-9790', 0, '285191768622556361', '18-kai, 13 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1993-12-20', 0, 0, 'zhelan', '2016-04-14', 'lan1017', '2010-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS38794914', '蕭祖兒', 0, '+86 20-957-0203', 1, '341865618272370889', '中国广州市海珠区江南西路33号华润大厦8室', '1993-04-29', 0, 0, 'siu2', '2004-07-05', 'choyesi', '2011-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS73258434', '莫安琪', 1, '+44 (161) 965 4128', 3, '078722657555586316', 'No.14 Main building, 750 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1985-03-22', 0, 0, 'anqim', '2002-04-08', 'anqimo', '2021-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS03589669', '李睿', 1, '+81 52-446-5338', 3, '532296919272410071', '日本なごやし瑞穂区河岸町四丁目20番18号42階', '1997-05-29', 0, 0, 'lir', '2021-06-08', 'ruili9', '2006-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS10465713', '史詩涵', 1, '+86 187-5282-0105', 2, '453575343238320658', '中国北京市東城区東直門內大街692号19栋', '1993-11-27', 0, 0, 'shihash', '2003-03-20', 'shishihan1962', '2008-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS66617413', '宣玲玲', 1, '+1 213-621-6786', 2, '987977650809499961', '768 Wall Street Suite 9, Los Angeles, CA 90003, United States', '1998-12-26', 0, 0, 'lingling1114', '2011-01-20', 'llhsuan', '2013-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS13916266', 'Juan Herrera', 0, '+1 213-942-5956', 0, '751717576383437692', '126 Figueroa Street Apt 28, Los Angeles, CA 90037, United States', '1992-05-07', 0, 0, 'juan827', '2013-10-25', 'juanh', '2005-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS78066839', 'Mary Mason', 1, '+1 838-374-0932', 0, '544293921894291833', '313 State Street Apartment 3, Albany, NY 12203, United States', '1987-08-23', 0, 0, 'mamas', '2012-05-29', 'masonm3', '2005-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS87386770', '廖裕玲', 0, '+81 66-173-7853', 2, '576534641075844805', '日本おおさかし近江堂一丁目7番19号43号室', '1994-09-03', 0, 0, 'ylliao', '2018-01-20', 'yulliao', '2008-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS61363723', '苑世榮', 1, '+81 70-5205-1643', 3, '846475932138901113', '27F, 8 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-09-08', 0, 0, 'yuensw7', '2014-04-28', 'ysw1217', '2010-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS36144300', '邓宇宁', 0, '+81 52-736-3100', 0, '720667447105837645', '30-kai, 16 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-09-28', 0, 0, 'yuningd', '2009-12-29', 'yuningdeng1943', '2014-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS92285747', 'Jennifer Reynolds', 1, '+81 66-011-0673', 1, '573191620192807583', '日本おおさかし西成区出城一丁目1番15号8階', '1992-08-02', 0, 0, 'jenniferre', '2001-08-28', 'reynjenni', '2012-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS85454784', 'Judith Peterson', 1, '+1 838-503-6985', 1, '607876563136468813', '28 State Street Apt 25, Albany, NY 12203, United States', '1996-06-23', 0, 0, 'judithpeter', '2016-08-20', 'petersonj', '2010-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS39995840', '赵宇宁', 0, '+1 212-585-0217', 1, '845526805208107096', '753 Canal Street Apartment 45, New York, NY 10013, United States', '1999-01-14', 0, 0, 'yzha1', '2008-04-14', 'yuningzhao', '2010-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS58360488', '三浦大和', 1, '+1 213-253-1441', 2, '835014761951815151', '79 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1991-08-31', 0, 0, 'myamato', '2001-04-24', 'yamatmiura2', '2016-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS11756479', '姚杰宏', 1, '+86 178-4518-9358', 4, '083434859151524440', '中国东莞坑美十五巷67号16号楼', '1995-09-13', 0, 0, 'jiehongyao', '2012-01-20', 'jiehongy', '2013-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS40756227', 'Rose Reyes', 1, '+86 136-9471-3569', 2, '481660811547357972', '中国深圳龙岗区学园一巷886号华润大厦49室', '1991-08-06', 0, 0, 'reyesr308', '2012-10-02', 'rosere', '2006-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS00005653', '尹志明', 0, '+44 (1865) 18 1864', 2, '837528698431134421', 'No.21 Main building, 144 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-12-12', 0, 0, 'ycm', '2001-10-14', 'cmyin', '2003-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS09617702', '森大地', 1, '+86 20-512-6977', 3, '054618314471173007', 'Room 28, 772 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1985-01-21', 0, 0, 'daimo', '2020-08-03', 'mordaichi', '2001-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS57791144', '桜井愛梨', 0, '+81 90-2662-8557', 3, '648480815887326675', '33-kai, 1-5-12, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1998-01-04', 0, 0, 'airisakur', '2017-04-21', 'airisakurai', '2012-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS25677317', '鈴木光莉', 0, '+44 7299 101358', 2, '701753300111953924', 'Flat 15, 970 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1993-07-20', 0, 0, 'hikari123', '2015-10-14', 'hikarisuz330', '2002-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS87345356', 'Paula Diaz', 0, '+86 760-080-7166', 2, '963040616724253706', '中国中山京华商圈华夏街248号49楼', '1985-08-04', 0, 0, 'pauld55', '2021-04-28', 'pauladi5', '2017-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS97817143', '譚安琪', 1, '+81 66-821-6251', 3, '666782007824392785', '日本おおさかし東住吉区東田辺三丁目27番7号2階', '1985-08-17', 0, 0, 'onkatam53', '2000-04-21', 'tonkay', '2011-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS50301534', 'Elizabeth Cole', 0, '+86 10-770-2367', 1, '423779689787878301', '中国北京市西城区复兴门内大街586号华润大厦4室', '1995-03-30', 0, 0, 'elizabethc', '2015-05-07', 'cole821', '2002-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS08172388', 'Thomas Morgan', 1, '+44 5778 394436', 4, '183250413252739000', 'Unit 21, Oxford Eco Centre, 37 Pollen Street, London, W1S 1NG, United Kingdom', '1988-01-04', 0, 0, 'thm1', '2015-11-16', 'thomasmo', '2007-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS82303760', 'Nicole West', 0, '+86 179-4615-4827', 1, '058437217056767965', '中国上海市徐汇区虹桥路450号2楼', '1991-05-29', 0, 0, 'nicolewest913', '2019-03-20', 'west9', '2017-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS27753364', 'Anne Soto', 0, '+81 90-3379-6591', 2, '295755716698795565', '19F, 2-1-9 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1991-02-14', 0, 0, 'annesoto', '2006-10-28', 'sotoa319', '2014-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS72032144', 'Jamie Warren', 0, '+86 148-8665-8874', 3, '714406062166186697', '中国深圳罗湖区清水河一路534号44号楼', '1992-12-10', 0, 0, 'jamiwarren43', '2014-03-19', 'wjamie', '2007-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS87759893', '蔡宇宁', 1, '+1 614-112-8240', 3, '176004719232301584', '578 East Cooke Road Apartment 13, Columbus, GA 43214, United States', '1997-03-07', 0, 0, 'yunicai', '2013-06-30', 'yuninc10', '2015-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS41213427', '郑岚', 0, '+86 184-3941-7590', 4, '725708779346832674', '中国深圳福田区景田东一街550号1号楼', '1989-10-02', 0, 0, 'lan2', '2005-01-08', 'zlan', '2021-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS86597727', '钱岚', 1, '+44 (161) 423 7125', 0, '159303711893040741', 'No.46 Main building, 277 Portland St, Manchester, M1 3LA, United Kingdom', '1987-01-13', 0, 0, 'lqian', '2020-08-04', 'qilan1214', '2017-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS03190820', 'Edwin Kelley', 0, '+44 5654 936612', 3, '587144466090663586', 'Unit 46, Oxford Eco Centre, 297 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1997-04-10', 0, 0, 'edwin83', '2009-08-03', 'edwin613', '2019-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS93139735', '胡子异', 0, '+86 172-1458-6279', 4, '881554165433975721', 'No.39 building, 220 Xiaoping E Rd, Baiyun , Guangzhou, China', '1989-05-27', 0, 0, 'huzi', '2011-12-15', 'ziyi9', '2007-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS97497033', 'Jimmy Robertson', 0, '+44 (1865) 69 0470', 2, '827975233586244789', 'Block 41, 814 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1994-07-03', 0, 0, 'robj2011', '2012-11-24', 'roberjim10', '2018-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS49455106', 'Miguel Foster', 0, '+86 21-3216-8426', 1, '626172188355601632', 'Room 49, 565 Hongqiao Rd., Xu Hui District, Shanghai, China', '1998-12-06', 0, 0, 'miguelfos621', '2012-12-23', 'foster96', '2015-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS24039932', 'Francisco Dixon', 1, '+81 80-9092-8795', 3, '278971079663884879', 'Rm. 8, 13-3-15 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1997-01-30', 0, 0, 'dixonfran93', '2016-08-06', 'fdix', '2008-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS73121211', '松田涼太', 0, '+86 10-231-3656', 1, '876136099221556074', '26F, 183 Yueliu Rd, Fangshan District, Beijing, China', '1994-06-28', 0, 0, 'ryota926', '2011-02-09', 'matsudaryot', '2020-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS95963466', '石田舞', 0, '+81 80-8126-5645', 1, '574520978776014838', '日本なごやし熱田区千年二丁目5番3号14階', '1996-11-19', 0, 0, 'ishidamai', '2011-02-03', 'maish', '2019-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS90298519', '陶安娜', 0, '+86 21-5961-1082', 1, '894218193747816487', '中国上海市浦东新区健祥路749号46号楼', '1986-06-26', 0, 0, 'tao808', '2014-04-24', 'tonna', '2012-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS13902645', '陆致远', 0, '+1 212-564-2676', 4, '397191545975249397', '391 Bank Street Apartment 43, New York, NY 10014, United States', '1987-06-29', 0, 0, 'zhiyuanl', '2006-06-10', 'zhiyl320', '2015-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS89554715', 'Theodore Hunt', 0, '+81 3-5365-8388', 2, '136223625738406558', '日本東京港区東新橋一丁目5番8号33階', '1998-01-22', 0, 0, 'thunt3', '2003-02-26', 'theodore617', '2011-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS42539991', '蔣安娜', 1, '+81 3-9569-5092', 1, '987963308465693976', 'Rm. 17, 5-2-1 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-05-29', 0, 0, 'onna14', '2008-09-20', 'chiang5', '2012-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS54120974', '邓安琪', 0, '+1 718-622-0334', 3, '342324404242349121', '349 Columbia St Apartment 20, Brooklyn, NY 11231, United States', '1991-09-18', 0, 0, 'danqi6', '2014-10-02', 'danq', '2008-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS36558491', 'Edwin Graham', 1, '+1 718-436-0887', 1, '567667747773085793', '847 Columbia St Apt 18, Brooklyn, NY 11231, United States', '1989-02-03', 0, 0, 'gedwin', '2003-07-01', 'edwin226', '2017-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS86630997', 'Paul Martinez', 1, '+1 838-440-8054', 1, '867175739486243422', '998 Broadway 3rd Floor, Albany, NY 12207, United States', '1996-12-13', 0, 0, 'paulm', '2010-01-03', 'marpaul1951', '2017-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS81712267', 'Carl Robinson', 0, '+44 (116) 511 8741', 0, '878361517878327256', 'Unit 48, Oxford Eco Centre, 820 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1997-05-29', 0, 0, 'robinson70', '2010-11-29', 'rcar811', '2021-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS67937739', 'Clara Adams', 0, '+81 3-1735-4506', 3, '320617504543662929', '日本東京中央区銀座三丁目12番9号37階', '1985-08-09', 0, 0, 'cadams18', '2012-07-04', 'clad', '2006-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS63333978', 'Joyce Kennedy', 0, '+81 66-817-7986', 2, '213630881539576491', '22F, 1-1-20 Deshiro, Nishinari Ward, Osaka, Japan', '1987-10-02', 0, 0, 'kennedyjoyce1212', '2001-10-30', 'joykenn', '2017-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS18080976', 'Eva Daniels', 1, '+1 312-483-6106', 0, '622844661262470584', '663 North Michigan Ave Suite 4, Chicago, IL 60611, United States', '1990-01-20', 0, 0, 'evad', '2004-02-21', 'eva106', '2003-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS63630671', '郑嘉伦', 0, '+1 718-742-1082', 4, '859661019925665047', '410 1st Ave Suite 12, Brooklyn, NY 11220, United States', '1987-11-17', 0, 0, 'jialunz', '2016-05-25', 'zhengj', '2004-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS64343962', 'Edward Stevens', 1, '+1 614-807-4530', 0, '584411542260627808', '167 East Alley Apartment 50, Columbus, GA 43201, United States', '1988-07-17', 0, 0, 'sedward9', '2015-08-11', 'steveedward', '2015-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS10349519', '江震南', 1, '+1 614-291-7374', 1, '138823584970615094', '957 Diplomacy Drive Apartment 34, Columbus, GA 43228, United States', '1986-07-04', 0, 0, 'jiang525', '2004-03-28', 'zhejiang', '2013-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS25746248', '崔子韬', 1, '+44 (151) 158 4982', 1, '634287229847401388', 'Flat 50, 679 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1985-12-21', 0, 0, 'cuizita927', '2010-08-08', 'zitao1994', '2016-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS71642447', '毛志遠', 1, '+86 769-4830-6554', 1, '950872482373984570', '中国东莞环区南街二巷13号6栋', '1987-08-09', 0, 0, 'chiyuen9', '2006-12-01', 'chiyuenmo1959', '2015-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS40262595', '譚惠敏', 1, '+86 20-8943-6839', 3, '899247566002776690', 'No.29 building, 855 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1987-10-05', 0, 0, 'tam1202', '2004-07-13', 'tamwm', '2006-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS51678146', 'Carl Lee', 0, '+44 7977 426892', 3, '812701487574188174', 'Unit 22, Oxford Eco Centre, 874 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1996-08-22', 0, 0, 'lee2', '2003-07-23', 'lcarl', '2011-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS81505670', '伍榮發', 0, '+81 90-2909-2843', 1, '327024693008082355', '30F, 13-3-14 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1993-01-06', 0, 0, 'ngwingfat4', '2006-07-03', 'ngwf', '2005-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS43675874', '廖岚', 1, '+44 (121) 129 3978', 2, '049936322428429004', 'Flat 19, 623 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1997-07-31', 0, 0, 'liao9', '2011-01-14', 'liaolan', '2001-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS61371954', '任慧嫻', 1, '+81 90-6882-5498', 0, '098321167314538283', '日本東京渋谷区代々木二丁目3番17号8階', '1985-05-25', 0, 0, 'yamwh', '2002-03-20', 'waihan712', '2001-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS56956590', '田梓軒', 1, '+86 135-9953-8785', 3, '995579809736995871', '中国北京市海淀区清河中街68号725号华润大厦28室', '1995-09-10', 0, 0, 'tinth', '2000-03-01', 'tszhint83', '2017-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS50585361', '大野葉月', 1, '+81 52-381-3642', 0, '886140799332924908', '日本なごやし熱田区千年二丁目5番7号40階', '1998-02-25', 0, 0, 'hon', '2010-12-18', 'onha11', '2007-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS90941757', '段子异', 0, '+86 194-0667-5874', 1, '271395278324544202', '22F, 227 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1986-10-11', 0, 0, 'ziyiduan2000', '2001-03-11', 'ziyi328', '2003-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS88355206', '江永發', 0, '+81 3-5433-6213', 3, '987758374064906977', '日本東京中央区銀座三丁目12番17号26号室', '1987-04-01', 0, 0, 'wingfat3', '2005-08-03', 'kong7', '2001-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS85477711', 'Angela Crawford', 0, '+81 80-5446-1767', 1, '487756016997281513', '50F, 1-7-2 Omido, Higashiosaka, Osaka, Japan', '1995-04-13', 0, 0, 'crawford45', '2009-07-17', 'cangela', '2020-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS37951025', 'Ralph Ortiz', 0, '+44 5515 550420', 2, '468278232044222824', 'Block 31, 620 New Street, Birmingham, B2 4DB, United Kingdom', '1991-01-03', 0, 0, 'ralphortiz', '2004-01-18', 'rortiz55', '2010-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS35181913', 'Luis Owens', 1, '+44 (161) 920 5264', 1, '810126055140375645', 'Block 20, 522 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-11-02', 0, 0, 'luio', '2002-06-02', 'lowen809', '2013-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS57515665', '斉藤蓮', 0, '+86 149-2008-3727', 3, '703315272322702482', '中国成都市成华区二仙桥东三路524号华润大厦36室', '1989-06-17', 0, 0, 'rsaito', '2017-04-23', 'saitoren1115', '2001-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS39245271', '古家玲', 1, '+44 7974 731753', 4, '522974036078162161', 'Unit 21, Oxford Eco Centre, 962 Redfern St, Liverpool, L20 8JB, United Kingdom', '1995-02-12', 0, 0, 'ku6', '2011-09-09', 'kukl', '2013-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS24989316', '田秀英', 1, '+81 3-6010-3455', 2, '922509047278490967', '日本東京千代田区丸の内一丁目6番13号38階', '1992-09-02', 0, 0, 'xiuying7', '2008-10-30', 'tianx', '2017-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS68136536', '贾秀英', 1, '+81 80-4421-8137', 1, '320066967821456638', 'Rm. 15, 1-7-12 Omido, Higashiosaka, Osaka, Japan', '1985-06-11', 0, 0, 'xjia', '2011-07-25', 'xiuyingj', '2007-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS90519585', '鐘安琪', 1, '+86 28-676-1741', 1, '813406560123109595', 'Room 26, 114 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1986-03-14', 0, 0, 'onkaychun130', '2021-03-04', 'okc65', '2022-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS63932148', '野口葵', 0, '+44 (161) 210 8146', 2, '075411439579285176', 'Flat 49, 524 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-11-06', 0, 0, 'noguchi1964', '2014-01-25', 'aonoguc2', '2004-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS85505218', '姜秀英', 0, '+1 213-892-0138', 0, '908963897954204410', '807 Sky Way Apt 27, Los Angeles, CA 90043, United States', '1990-08-29', 0, 0, 'jiangxiuying', '2009-04-07', 'jxiuying5', '2014-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS04264834', '方杰倫', 1, '+81 11-563-8669', 2, '605866047696283892', 'Rm. 20, 6-1-4, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1993-05-29', 0, 0, 'fongch1115', '2002-11-17', 'fongcl', '2003-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS02947082', '石井百花', 1, '+81 3-1970-4369', 2, '740483437736938487', '7F, 5-2-8 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1988-09-19', 0, 0, 'mishii', '2006-11-29', 'ishm1', '2001-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS54359926', 'Marie Morales', 1, '+1 212-283-5219', 1, '171615594927699704', '602 West Houston Street 3rd Floor, New York, NY 10014, United States', '1995-02-10', 0, 0, 'morales87', '2000-12-31', 'moma1', '2018-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS16135263', '郝睿', 1, '+86 193-9482-4420', 1, '915226845390382972', 'No.29 building, 800 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-08-01', 0, 0, 'ruihao1213', '2005-05-31', 'ruihao', '2018-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS57517090', 'Willie Hill', 1, '+1 838-762-1590', 2, '081768534303450497', '271 State Street Suite 31, Albany, NY 12203, United States', '1990-09-11', 0, 0, 'wih66', '2004-04-02', 'whill1948', '2021-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS92668917', 'Theresa Butler', 0, '+44 (1223) 15 7115', 3, '579730073480252929', 'No.17 Main building, 173 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-02-10', 0, 0, 'theresabutl', '2019-12-06', 'tbutler', '2017-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS27311475', '錢家玲', 0, '+81 70-6261-8194', 3, '035064184687691761', '48F, 1-1-20 Deshiro, Nishinari Ward, Osaka, Japan', '1985-02-05', 0, 0, 'ckl', '2013-07-13', 'kaling1', '2017-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS41684298', 'Alan Young', 0, '+1 614-331-6671', 3, '206469626850466604', '873 Wicklow Road Suite 9, Columbus, GA 43204, United States', '1996-06-05', 0, 0, 'alan1966', '2010-07-16', 'alan2005', '2004-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS79943709', '陳玲玲', 0, '+86 760-6001-6593', 2, '565923175435002919', 'Room 15, CR Building, 958 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1997-08-13', 0, 0, 'lingling413', '2008-09-11', 'chanll', '2005-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS66246349', '梁云熙', 1, '+86 144-1603-9584', 3, '570802739688923241', 'Room 29, CR Building, 193 Jiangnan West Road, Haizhu District, Guangzhou, China', '1991-10-28', 0, 0, 'yunxiliang', '2006-05-31', 'ylian', '2010-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS23885501', '方慧琳', 1, '+44 7126 323283', 3, '896619021387002141', 'Flat 11, 564 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1987-08-20', 0, 0, 'wlfon', '2010-02-15', 'fwl', '2017-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS40610179', '苑潤發', 1, '+1 614-044-4902', 1, '042572027513936459', '521 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1987-09-24', 0, 0, 'yyf', '2000-09-10', 'yuen48', '2010-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS72622427', 'Patricia Jones', 1, '+44 7074 367665', 0, '340855912657624546', 'Unit 19, Oxford Eco Centre, 913 Sackville St, Manchester, M1 3BB, United Kingdom', '1985-05-03', 0, 0, 'jones5', '2002-07-09', 'jopatri', '2005-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS56131411', '朱頴思', 1, '+44 (151) 412 3822', 1, '633628238501970141', 'Flat 20, 378 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1987-01-09', 0, 0, 'wschu', '2011-05-12', 'wingsze08', '2017-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS91338786', '阎致远', 0, '+81 11-332-6427', 1, '928427659753372959', '日本札幌中央区宮の森四条六丁目1番6号20号室', '1992-04-22', 0, 0, 'zhiyuan11', '2021-10-01', 'yazhiyuan', '2020-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS70913744', '薛慧琳', 1, '+44 (151) 354 9710', 2, '415028690949874425', 'No.8 Main building, 866 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-12-10', 0, 0, 'sitwailam', '2016-06-16', 'sitwl', '2014-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS80159751', '袁詩君', 1, '+86 10-803-4987', 1, '869331301406186542', '中国北京市海淀区清河中街68号471号华润大厦29室', '1997-09-03', 0, 0, 'yuenszekwan', '2000-06-08', 'yuszek', '2018-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS26168869', 'Jeffery Jordan', 1, '+86 21-2188-1605', 3, '621899314393090251', '中国上海市浦东新区橄榄路174号44楼', '1991-11-20', 0, 0, 'jeffjo', '2004-04-15', 'jej', '2004-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS49639358', '譚家玲', 1, '+44 5095 702809', 0, '906039950582219681', 'Block 49, 513 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1986-10-31', 0, 0, 'tamkl', '2006-07-01', 'kltam', '2019-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS45901869', '金致远', 1, '+81 52-421-5306', 4, '170345491624615458', '33F, 16 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-12-25', 0, 0, 'jinzhiyuan', '2013-05-17', 'jinzhi', '2013-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS98314708', '清水花', 0, '+86 183-7031-0055', 2, '556753763432923621', '中国成都市成华区玉双路6号537号42栋', '1991-01-12', 0, 0, 'hashimizu', '2001-05-04', 'shimihana4', '2021-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS05609588', '渡辺美月', 1, '+86 10-744-1511', 2, '754460012224638257', 'Room 46, 578 Dong Zhi Men, Dongcheng District, Beijing, China', '1988-04-15', 0, 0, 'mitsukisat508', '2007-04-02', 'sato2007', '2013-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS93012074', '三浦美緒', 1, '+86 164-7855-5613', 3, '756322829646288888', '中国北京市东城区东单王府井东街432号8栋', '1991-11-12', 0, 0, 'miurmio', '2017-03-13', 'mimiura', '2013-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS65526482', '李致远', 0, '+86 195-3222-2677', 2, '960966796718896559', 'Room 23, 207 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1998-09-22', 0, 0, 'lizhiyuan', '2013-10-25', 'zhiyuan1113', '2019-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS84278072', '贾安琪', 1, '+81 3-2779-6835', 2, '195512504117299349', '日本東京港区東新橋一丁目5番4号39階', '1993-05-14', 0, 0, 'anji', '2003-03-15', 'jia77', '2015-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS78440834', '邵安琪', 1, '+81 90-6773-3668', 3, '976532565003955113', '16F, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1992-06-03', 0, 0, 'sha', '2012-09-30', 'ash', '2009-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS26235269', '彭晓明', 0, '+86 10-3395-0822', 0, '099954648842437792', '48F, 517 East Wangfujing Street, Dongcheng District , Beijing, China', '1992-09-15', 0, 0, 'pengxiaoming', '2012-07-02', 'pengxia2017', '2021-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS41808503', 'Stephanie Miller', 1, '+81 66-031-3536', 1, '568183719196902393', '日本おおさかし近江堂一丁目7番7号14階', '1992-09-19', 0, 0, 'millerstephanie', '2001-05-09', 'millerstephanie13', '2020-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS31931128', '唐致远', 0, '+1 213-264-1716', 1, '991598828107158288', '409 S Broadway Apt 17, Los Angeles, CA 90015, United States', '1997-09-05', 0, 0, 'tang63', '2004-07-24', 'tangzh', '2021-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS37990467', '許慧嫻', 0, '+86 10-234-3371', 3, '772711146828390846', 'Room 6, CR Building, 852 Sanlitun Road, Chaoyang District, Beijing, China', '1997-12-22', 0, 0, 'whh', '2014-06-27', 'huiwh619', '2012-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS32205253', 'Hazel Chen', 0, '+81 80-2920-9040', 1, '958684078176658726', 'Rm. 27, 5-19-16 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1990-02-10', 0, 0, 'hazchen', '2015-09-05', 'chenh', '2010-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS63415009', '石川花', 1, '+44 (121) 475 0568', 1, '614040752248659174', 'Unit 13, Oxford Eco Centre, 814 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1988-02-27', 0, 0, 'hana9', '2012-09-09', 'hanaishi', '2013-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS11423043', '田村蒼士', 1, '+1 614-712-7812', 3, '805415548025457988', '704 Tremont Road Apartment 8, Columbus, GA 43212, United States', '1993-06-04', 0, 0, 'tamuao9', '2006-03-10', 'atamura', '2000-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS44589537', '王學友', 1, '+86 150-7843-5432', 3, '318135377719822828', '中国深圳福田区景田东一街839号29楼', '1998-01-31', 0, 0, 'hywo', '2020-07-30', 'wong1', '2015-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS02999743', 'Anne Ryan', 1, '+81 80-6893-8453', 2, '724130910225152783', '日本なごやし北区楠味鋺三丁目80番1号37号室', '1987-01-21', 0, 0, 'anne4', '2019-12-22', 'anner', '2008-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS12981459', 'Doris Edwards', 1, '+81 3-8182-6996', 4, '433038892291629865', '日本東京渋谷区代々木二丁目3番16号30階', '1994-01-02', 0, 0, 'dorisedwar2', '2008-02-12', 'doris8', '2021-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS61030845', '應頴思', 0, '+86 186-9498-8013', 0, '005802750737404969', '中国成都市成华区二仙桥东三路281号27楼', '1995-10-21', 0, 0, 'wsyi', '2011-01-05', 'wsyin126', '2009-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS43464937', '區祖兒', 0, '+81 70-0396-0341', 0, '310714363019172927', 'Rm. 41, 1-7-3 Omido, Higashiosaka, Osaka, Japan', '1988-12-08', 0, 0, 'auchoyee', '2021-06-11', 'auchoyee', '2003-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS16932826', '钟子韬', 1, '+86 10-9730-3051', 0, '046255381646615007', 'No.37 building, 376 028 County Rd, Yanqing District, Beijing, China', '1994-11-18', 0, 0, 'zhongzitao', '2005-04-25', 'zhongzitao', '2015-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS28396642', '山本和真', 1, '+86 174-1550-7009', 1, '953788763903482283', 'Room 10, 215 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1990-09-09', 0, 0, 'kyamamoto', '2002-10-01', 'ykazu', '2021-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS61547783', 'Ronald Cook', 1, '+81 52-839-1828', 2, '785005203784024236', 'Rm. 36, 3-19-19 Shimizu, Kita Ward, Nagoya, Japan', '1996-08-15', 0, 0, 'ronaldcook2', '2021-09-01', 'ronald10', '2021-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS16663423', '加藤絢斗', 0, '+81 80-7476-1295', 1, '901146848325529541', '12F, 2-1-15 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-09-15', 0, 0, 'kato2016', '2007-08-08', 'kato5', '2000-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS38411926', '史詩涵', 0, '+44 5917 011626', 4, '273603033427563548', 'Block 27, 714 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1997-03-16', 0, 0, 'shihansh70', '2020-12-03', 'ssh', '2021-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS13878843', '車惠敏', 0, '+81 11-739-4217', 1, '419633242448705024', '39F, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-11-22', 0, 0, 'waimanc00', '2000-10-22', 'che12', '2016-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS33992947', '楊青雲', 0, '+86 755-5135-2194', 2, '526459351062456494', '中国深圳福田区景田东一街654号40楼', '1992-05-12', 0, 0, 'yeucw721', '2013-06-13', 'chingwanye1', '2015-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS27136381', '藍青雲', 1, '+81 3-0083-8694', 4, '612432505385877524', '日本東京中央区銀座三丁目12番4号5号室', '1991-05-29', 0, 0, 'chingwan3', '2009-02-14', 'chingwanla', '2016-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS75380926', '宋杰宏', 1, '+81 11-189-1992', 1, '836857463789268932', '1F, 6-1-4, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-10-17', 0, 0, 'songjiehong9', '2021-02-03', 'songjie93', '2007-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS22240058', 'Don Jackson', 0, '+44 5963 017455', 3, '667943794280524660', 'Block 39, 852 Pollen Street, London, W1S 1NG, United Kingdom', '1992-06-26', 0, 0, 'don1948', '2020-02-27', 'jd4', '2003-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS54623085', '内田彩乃', 1, '+86 10-0041-2160', 3, '307970655230514562', 'No.30 building, 295 Dong Zhi Men, Dongcheng District, Beijing, China', '1990-08-14', 0, 0, 'uayano', '2020-06-05', 'uchidaayano4', '2004-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS81224995', '大塚百恵', 0, '+81 70-1479-5695', 3, '366688012016765784', '日本おおさかし西成区天神ノ森二丁目1番9号5号室', '1997-11-06', 0, 0, 'otsukam', '2011-07-22', 'mot13', '2015-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS44395528', 'Bonnie Gibson', 1, '+81 70-1561-5617', 3, '552008428706027977', '31-kai, 3-27-1 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-03-12', 0, 0, 'gibonnie2', '2001-10-23', 'bogibs', '2004-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS67023704', '松本美羽', 1, '+81 80-6733-5941', 3, '255388638128077090', '日本東京港区東新橋一丁目5番8号14階', '1994-06-28', 0, 0, 'matsumoto9', '2021-06-29', 'mmat', '2020-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS13789808', '顾云熙', 0, '+86 20-952-0325', 1, '536007200555022711', '中国广州市越秀区中山二路445号21楼', '1997-07-11', 0, 0, 'guyunxi71', '2002-04-02', 'yunxigu', '2005-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS19935281', '清水優奈', 1, '+81 66-647-3371', 4, '993699821636793043', '日本おおさかし西成区天神ノ森二丁目1番16号39号室', '1995-04-12', 0, 0, 'yunashimizu', '2007-11-11', 'shimizuyuna7', '2007-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS61826086', '邵安琪', 0, '+44 (121) 268 7618', 2, '740607509975566674', 'Unit 49, Oxford Eco Centre, 613 New Street, Birmingham, B2 4DB, United Kingdom', '1998-09-18', 0, 0, 'anqishao', '2006-03-08', 'shaoan2003', '2009-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS33795333', '内田舞', 0, '+86 159-3893-2864', 3, '671095733692166871', '中国深圳福田区深南大道319号39楼', '1991-02-22', 0, 0, 'maiu', '2006-07-03', 'uchima', '2015-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS86921430', '山下悠人', 1, '+81 66-222-9482', 2, '338619026322129581', '日本おおさかし西成区天神ノ森二丁目1番5号5階', '1998-02-18', 0, 0, 'yamashitayuto1021', '2008-11-23', 'yamashita2', '2015-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS32190585', '蔡安琪', 0, '+1 718-997-9489', 4, '194700097300844726', '117 Columbia St Suite 26, Brooklyn, NY 11231, United States', '1989-07-09', 0, 0, 'aca', '2016-05-06', 'cai9', '2004-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS42124764', '田璐', 0, '+81 3-0529-8095', 1, '778548190658844701', 'Rm. 17, 1-5-6, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1995-06-25', 0, 0, 'ltia', '2012-05-23', 'tilu', '2018-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS61965490', '江云熙', 1, '+81 52-507-9582', 3, '005606659903503447', 'Rm. 34, 3 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1986-07-10', 0, 0, 'yunxjia', '2006-08-18', 'yunxiji522', '2007-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS09376770', '文梓軒', 0, '+1 213-289-6831', 2, '468033053358659899', '283 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1991-08-14', 0, 0, 'tszhinman', '2017-01-25', 'math', '2013-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS19057807', '成安娜', 1, '+81 80-2978-5759', 1, '428958266041574709', '23F, 2 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1993-05-20', 0, 0, 'ons9', '2006-10-03', 'onshing7', '2019-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS95620923', '杉山架純', 1, '+1 330-146-2975', 3, '263738967977221936', '170 Collier Road Apt 8, Akron, OH 44320, United States', '1987-04-29', 0, 0, 'ksugiyama', '2003-12-01', 'kasumsugiyama', '2007-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS73684713', '楊慧嫻', 1, '+81 90-2535-2301', 2, '643630028414048736', '日本なごやし北区楠味鋺三丁目80番7号40号室', '1999-02-23', 0, 0, 'why', '2021-10-03', 'why2', '2000-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS05441304', '曾安琪', 0, '+1 614-101-0395', 3, '719032313122988692', '984 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1986-05-20', 0, 0, 'zanq', '2011-01-11', 'anzen', '2004-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS09034642', '曾永發', 0, '+81 74-252-8568', 1, '629668243244931978', 'Rm. 1, 3 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-08-30', 0, 0, 'tswing', '2020-11-28', 'tsang6', '2006-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS30201544', 'Tiffany Phillips', 0, '+1 312-889-8330', 1, '293102785208894730', '839 Rush Street Apartment 46, Chicago, IL 60611, United States', '1989-12-30', 0, 0, 'phillipsti', '2020-11-08', 'phillips53', '2002-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS28073037', '坂本大和', 0, '+81 80-5436-5869', 1, '881093180143105586', 'Rm. 50, 1-1-5 Deshiro, Nishinari Ward, Osaka, Japan', '1986-12-04', 0, 0, 'yamatosakamoto2009', '2011-05-18', 'syamato2010', '2005-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS36023995', '苑嘉欣', 1, '+81 3-5591-6501', 0, '340828285666549598', '14-kai, 3-15-5 Ginza, Chuo-ku, Tokyo, Japan', '1995-12-11', 0, 0, 'karyan73', '2006-04-26', 'yuenkaryan', '2015-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS96444312', 'Frances Powell', 1, '+1 614-755-2455', 2, '172377264122481896', '764 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1985-05-07', 0, 0, 'fpowel15', '2003-04-26', 'francespowe', '2001-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS46817961', '郑震南', 0, '+1 213-771-1888', 0, '627950670375880630', '385 Figueroa Street Suite 14, Los Angeles, CA 90037, United States', '1985-08-27', 0, 0, 'zzheng', '2021-05-29', 'zzheng3', '2012-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS62236174', '姜詩涵', 0, '+86 20-9024-1239', 3, '082047140250827909', 'No.36 building, 436 Tianhe Road, Tianhe District, Guangzhou, China', '1988-03-16', 0, 0, 'shihanjiang', '2011-10-22', 'shihanjiang710', '2018-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS06045474', 'Jack Guzman', 0, '+44 (151) 770 2616', 3, '448385705700262740', 'No.49 Main building, 986 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1995-09-28', 0, 0, 'jg1213', '2015-10-02', 'gj63', '2015-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS90478595', '佐野絢斗', 1, '+1 330-944-6435', 4, '050503797309276483', '2 Riverview Road Suite 34, Akron, OH 44313, United States', '1986-01-29', 0, 0, 'ayatosa3', '2005-01-07', 'sanoa', '2014-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS39889554', 'Lillian Chavez', 0, '+81 11-340-7428', 0, '989736454290769287', '日本札幌清田区真栄四条五丁目19番19号6階', '1998-02-08', 0, 0, 'lch42', '2008-06-29', 'chavez90', '2017-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS25602107', '山口花', 0, '+86 20-6035-2856', 4, '311506087587849269', '19F, 238 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1989-03-18', 0, 0, 'yamaghana8', '2008-06-15', 'hanayamaguchi', '2005-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS59405769', 'Jeremy Mendez', 1, '+86 769-9523-3641', 2, '999941424238430415', '中国东莞珊瑚路720号华润大厦48室', '1995-02-07', 0, 0, 'jme43', '2009-12-05', 'jermende', '2001-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS00435036', '藤田玲奈', 1, '+86 154-7996-6630', 4, '483769279951744172', 'Room 34, CR Building, 982 Lefeng 6th Rd, Zhongshan, China', '1996-02-15', 0, 0, 'renaf5', '2022-03-04', 'rena612', '2010-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS49167337', '葉國權', 1, '+81 11-177-4412', 1, '964720273726281924', 'Rm. 17, 13-3-7 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1986-12-22', 0, 0, 'yipkk', '2003-03-16', 'yipkwokkuen6', '2007-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS76961897', '秦云熙', 1, '+81 52-893-3916', 3, '021237331830619192', '30F, 13 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1991-10-17', 0, 0, 'yunxiqi5', '2011-12-19', 'yunxqi', '2012-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS66448699', '金子絢斗', 0, '+86 157-5564-2202', 2, '044616707899804778', '中国北京市房山区岳琉路823号46号楼', '1986-09-19', 0, 0, 'ayato1995', '2000-08-25', 'kaneko94', '2021-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS01048684', 'Ethel Turner', 0, '+81 74-857-9567', 0, '196635996713906927', '6-kai, 3-9-12 Gakuenminami, Nara, Japan', '1992-03-19', 0, 0, 'ethelturner76', '2016-02-09', 'ethetur', '2010-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS80502099', 'Carolyn Johnson', 1, '+81 70-2666-5766', 2, '587738727955062132', '日本おおさかし近江堂一丁目7番9号45階', '1991-11-16', 0, 0, 'johnsoncaro8', '2020-08-31', 'jocarolyn', '2005-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS05734946', '朱世榮', 0, '+81 90-4355-8947', 1, '565033096680127012', '日本東京港区東新橋一丁目5番8号24階', '1987-10-24', 0, 0, 'csaiwi', '2013-09-04', 'saiwingchu06', '2013-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS27588920', '竹内陽菜', 0, '+44 5832 826665', 1, '542865103534616339', 'No.7 Main building, 230 Pollen Street, London, W1S 1NG, United Kingdom', '1985-02-16', 0, 0, 'hinat', '2014-08-01', 'takeuchi731', '2012-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS26062147', '岡田一輝', 1, '+81 90-1446-7106', 2, '741439370890300837', '39-kai, 2-3-11 Yoyogi, Shibuya-ku, Tokyo, Japan', '1993-03-03', 0, 0, 'okada1948', '2002-04-12', 'okadaikk', '2012-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS02947393', 'Cheryl Rose', 0, '+1 212-803-9224', 1, '889681508232048829', '577 Fifth Avenue Suite 31, New York, NY 10017, United States', '1994-09-09', 0, 0, 'rosech1960', '2005-02-21', 'roscheryl6', '2004-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS26797191', 'Debra Butler', 0, '+81 70-3833-6080', 4, '287004601975492785', '日本なごやし北区楠味鋺三丁目80番5号3階', '1995-03-26', 0, 0, 'butler74', '2006-11-26', 'debra919', '2020-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS87459722', 'Bernard Bryant', 0, '+81 74-464-9381', 0, '967792693372166497', 'Rm. 3, 1-7-10 Saidaiji Akodacho, Nara, Japan', '1998-03-21', 0, 0, 'bernardbry', '2007-12-30', 'brybernard', '2001-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS94370455', 'Jennifer Moore', 0, '+1 213-190-1094', 2, '583292065773132333', '870 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1988-07-23', 0, 0, 'jennifer05', '2020-03-04', 'moorej15', '2020-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS40506345', '小島大輔', 0, '+81 11-528-6575', 3, '217611141905457972', '日本札幌中央区宮の森四条六丁目1番2号49号室', '1994-05-02', 0, 0, 'kd220', '2018-12-19', 'kojimadai50', '2022-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS41280142', '韦子异', 0, '+1 213-239-2265', 1, '326708223057036796', '952 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1995-04-26', 0, 0, 'ziyi10', '2001-03-07', 'wei1958', '2013-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS24057245', '苑國權', 0, '+44 7363 446166', 4, '450083735041393894', 'Unit 44, Oxford Eco Centre, 33 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1996-11-17', 0, 0, 'kwokkuen118', '2001-06-14', 'yuen4', '2007-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS79943308', 'Emma Wagner', 1, '+81 80-9699-5056', 1, '101093210860132673', '日本ならし大和郡山市本庄町一丁目1番19号37階', '1986-01-05', 0, 0, 'emmawa209', '2006-01-31', 'wagneemma', '2016-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS27549037', '島田明菜', 1, '+44 (20) 1002 6056', 3, '585827765692110388', 'Block 8, 175 Maddox Street, London, W1S 1PU, United Kingdom', '1989-05-29', 0, 0, 'akina129', '2008-11-12', 'akina8', '2000-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS21791671', '罗致远', 1, '+81 70-8653-1829', 2, '674712868396515303', 'Rm. 24, 15 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1991-08-20', 0, 0, 'luoz', '2020-02-16', 'zhiyuanl', '2015-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS07806150', '内田光莉', 1, '+1 213-408-0359', 2, '855387677565178974', '443 Grape Street Apartment 29, Los Angeles, CA 90002, United States', '1994-07-04', 0, 0, 'hikuchida', '2007-03-08', 'hu64', '2008-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS12931209', '陈震南', 1, '+86 194-3806-9074', 1, '330604084012786132', '48F, 700 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1992-12-02', 0, 0, 'chenzhennan', '2017-05-15', 'chzhennan', '2017-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS07702659', 'Philip Romero', 0, '+81 3-3844-9593', 3, '090099272184886149', '42-kai, 5-2-13 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-06-28', 0, 0, 'philip106', '2018-10-22', 'phromer', '2006-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS11677691', 'Mildred Evans', 1, '+86 169-0633-0795', 1, '762526802383202682', 'Room 19, 874 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1994-04-02', 0, 0, 'mildredevans', '2015-11-01', 'evamildred', '2011-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS76085278', '邵睿', 0, '+86 28-4312-0294', 0, '811170269922420643', '中国成都市锦江区红星路三段492号12室', '1992-10-28', 0, 0, 'rushao704', '2012-06-24', 'ruishao', '2010-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS27609708', '田睿', 1, '+81 3-8317-5918', 1, '149573343762367369', '日本東京中央区銀座三丁目12番2号29号室', '1994-02-02', 0, 0, 'tianrui55', '2017-09-07', 'rui528', '2011-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS48070043', 'Gloria Moreno', 0, '+1 212-540-8309', 3, '479025112890442068', '533 Fifth Avenue Apartment 38, New York, NY 10017, United States', '1997-09-17', 0, 0, 'gloria9', '2016-11-30', 'glorm', '2009-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS44552381', '張嘉欣', 0, '+86 21-593-8578', 3, '523332756409679566', 'Room 31, CR Building, 946 Ganlan Rd, Pudong, Shanghai, China', '1989-03-26', 0, 0, 'kycheung', '2003-01-01', 'karyan2018', '2011-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS96200289', '和田悠人', 1, '+86 10-0280-7580', 1, '115538826636075708', '中国北京市東城区東直門內大街392号28号楼', '1997-01-17', 0, 0, 'yutow', '2012-10-26', 'yutowada1976', '2019-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS46504603', '洪德華', 0, '+86 28-0298-0506', 0, '414921096902571046', '中国成都市锦江区人民南路四段120号华润大厦24室', '1993-10-23', 0, 0, 'twhung', '2015-10-26', 'hungtw', '2016-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS49806953', '龚詩涵', 1, '+86 20-871-7995', 3, '390171332756797155', 'Room 40, 715 Tianhe Road, Tianhe District, Guangzhou, China', '1985-08-17', 0, 0, 'gong8', '2019-05-20', 'gshi303', '2000-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS49043290', '段岚', 0, '+86 133-2946-7618', 0, '216498727257851072', '中国广州市天河区天河路485号18楼', '1995-10-15', 0, 0, 'lduan131', '2012-07-30', 'duanlan314', '2018-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS49418332', '胡子韬', 0, '+1 330-547-0023', 2, '319703021231720362', '699 Collier Road Suite 15, Akron, OH 44320, United States', '1988-11-29', 0, 0, 'zitaohu', '2013-01-15', 'zitaohu8', '2012-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS17270049', '劉頴璇', 0, '+81 74-968-3441', 4, '491922200493431011', '48-kai, 1-7-1 Saidaiji Akodacho, Nara, Japan', '1987-06-25', 0, 0, 'lawingsuen46', '2014-11-21', 'wsl', '2015-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS02658430', 'Robin Diaz', 1, '+86 769-669-9537', 1, '191669294004465284', 'No.13 building, 926 Kengmei 15th Alley, Dongguan, China', '1991-02-14', 0, 0, 'diaz1980', '2020-12-06', 'rdi', '2006-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS29775209', 'Ryan Morales', 0, '+81 3-3790-5996', 1, '237202754547521356', '17F, 2-3-13 Yoyogi, Shibuya-ku, Tokyo, Japan', '1986-06-16', 0, 0, 'ryanmorales3', '2005-10-02', 'ryanmorales1959', '2007-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS42469053', 'Crystal Wagner', 0, '+1 330-259-3220', 0, '579382805311073179', '380 Ridgewood Road Suite 9, Akron, OH 44321, United States', '1998-01-04', 0, 0, 'wagcrystal7', '2022-02-09', 'cw623', '2001-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS89959405', 'Barry Holmes', 0, '+44 (116) 083 9926', 3, '254657962873123667', 'Block 35, 287 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1986-03-08', 0, 0, 'holmes1', '2014-05-15', 'holmesbarry1009', '2006-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS54303809', '高子异', 1, '+86 755-907-1425', 0, '085165171196564100', 'Room 1, CR Building, 764 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1985-07-01', 0, 0, 'gaoziyi8', '2019-11-24', 'ziyiga', '2017-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS03645342', '遠藤涼太', 0, '+86 150-5301-9136', 2, '002574141573051578', 'No.21 building, 500 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1987-12-19', 0, 0, 'eryota6', '2022-01-14', 'ryotendo1106', '2008-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS64833928', '金子海斗', 0, '+81 80-2285-7976', 2, '509811480267875748', '日本札幌清田区真栄四条五丁目19番10号9号室', '1992-08-02', 0, 0, 'kaitoka2', '2002-05-28', 'kanekok', '2001-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS58541543', 'Norman Ford', 1, '+1 330-299-0502', 3, '107787678931335932', '227 Collier Road Apt 38, Akron, OH 44320, United States', '1996-01-06', 0, 0, 'norman02', '2005-10-10', 'fordnorman', '2010-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS68901566', '江天榮', 1, '+81 3-6157-2509', 3, '159317738888105595', 'Rm. 42, 3-15-15 Ginza, Chuo-ku, Tokyo, Japan', '1999-03-02', 0, 0, 'twkong', '2001-05-26', 'twkong3', '2014-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS64088202', '彭睿', 1, '+81 3-6064-6856', 2, '731174573181159716', '日本東京品川区東五反田五丁目2番2号38階', '1994-01-21', 0, 0, 'rui1983', '2015-02-18', 'pr4', '2004-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS21953124', '邵德華', 0, '+1 718-789-1662', 0, '809529460945514949', '22 Bergen St Apartment 33, Brooklyn, NY 11217, United States', '1998-06-29', 0, 0, 'stw516', '2009-03-18', 'siutakwah', '2019-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS08709701', 'Michelle Jones', 1, '+81 66-485-0809', 0, '830797084878994137', '日本おおさかし西成区天神ノ森二丁目1番14号35号室', '1986-06-06', 0, 0, 'michelle08', '2006-04-08', 'micjones', '2011-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS45843775', '房志明', 1, '+44 (151) 005 9277', 3, '192247458983991984', 'Block 1, 113 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1995-07-12', 0, 0, 'foncm1972', '2020-04-01', 'chiming1970', '2011-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS13042015', '周杰宏', 0, '+86 163-5708-0833', 2, '321721830468673671', '中国北京市东城区东单王府井东街943号44楼', '1993-02-25', 0, 0, 'zhou62', '2018-07-30', 'jiehong5', '2006-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS83306315', 'Jeffery Miller', 1, '+81 11-403-7524', 3, '953772561673946048', '日本札幌厚別区上野幌一条二丁目1番3号34階', '1998-05-19', 0, 0, 'jeffmiller', '2009-02-20', 'jefferymiller', '2008-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS53289122', '雷國榮', 0, '+44 7975 126509', 0, '628336747229660326', 'Flat 40, 121 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1993-09-29', 0, 0, 'kwloui', '2017-01-26', 'loui123', '2007-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS79040130', '狄麗欣', 1, '+81 52-631-9763', 3, '402983102680061702', '日本なごやし守山区瀬古東二丁目171番18号4号室', '1990-06-15', 0, 0, 'lyti59', '2012-09-24', 'laiyan74', '2009-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS19996914', '葉國賢', 1, '+81 52-034-0273', 1, '696100613904839136', 'Rm. 37, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-06-24', 0, 0, 'kwoy728', '2017-05-24', 'kyyi', '2019-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS66570133', '丸山海斗', 1, '+86 28-185-0257', 1, '338027562412854637', 'No.21 building, 486 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1988-06-15', 0, 0, 'maruyama10', '2018-05-13', 'mk530', '2010-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS26446521', '江慧儀', 0, '+44 (151) 843 4156', 4, '435010653930333179', 'Unit 8, Oxford Eco Centre, 462 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1993-12-08', 0, 0, 'wyk1225', '2001-02-07', 'kongwy10', '2010-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS11447202', '高田玲奈', 0, '+1 838-428-1201', 2, '543410221814914920', '828 Central Avenue Suite 16, Albany, NY 12206, United States', '1993-02-08', 0, 0, 'trena', '2016-03-05', 'renata', '2002-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS07621892', '戴志明', 1, '+81 74-833-4733', 3, '378638370295780470', 'Rm. 44, 3-9-20 Gakuenminami, Nara, Japan', '1998-01-01', 0, 0, 'cmdai1944', '2009-04-14', 'dachiming', '2009-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS60975911', 'Dennis Sanders', 1, '+1 330-307-7885', 3, '459462847436156200', '479 Fern Street 3rd Floor, Akron, OH 44307, United States', '1992-06-19', 0, 0, 'dennisand', '2019-01-01', 'densan', '2011-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS81230042', '邹岚', 0, '+1 718-526-8732', 1, '468869876108004484', '540 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1995-02-07', 0, 0, 'zoulan', '2017-10-17', 'lanzo604', '2020-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS21629662', '盧家輝', 0, '+81 70-7630-9929', 2, '662616148945479559', '20F, 6-1-6, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1985-12-28', 0, 0, 'lkafai', '2004-11-14', 'lkafai95', '2003-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS75280114', 'Robin Bailey', 0, '+44 (20) 4455 0123', 2, '372017320111707926', 'Block 42, 860 Maddox Street, London, W1S 1PU, United Kingdom', '1988-02-07', 0, 0, 'robbailey', '2006-02-14', 'robin611', '2020-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS25739623', '松井光', 1, '+44 (116) 687 3618', 0, '647047354017293266', 'No.15 Main building, 401 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1994-12-11', 0, 0, 'matsuih', '2014-07-28', 'matsuihikaru', '2010-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS83734053', 'Nicole Parker', 1, '+81 90-8190-4711', 3, '093388940163330501', '日本なごやし北区清水三丁目19番5号44号室', '1995-08-10', 0, 0, 'parkernicole', '2008-12-11', 'parker126', '2014-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS10872177', '谷詠詩', 1, '+86 142-1389-3307', 3, '445359231958918485', 'No.47 building, 495 West Chang''an Avenue, Xicheng District, Beijing, China', '1994-12-12', 0, 0, 'wskoo', '2020-03-05', 'kws', '2003-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS08421531', 'Beverly Sanders', 1, '+81 3-3155-0034', 3, '519235865960311466', '9F, 3-15-20 Ginza, Chuo-ku, Tokyo, Japan', '1987-06-09', 0, 0, 'sandersb70', '2010-10-10', 'beversanders3', '2022-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS55498465', '高田美緒', 1, '+81 90-1073-4794', 1, '414613753512714643', '日本ならし学園南三丁目9番18号13階', '1991-03-15', 0, 0, 'takamio', '2007-07-22', 'takmi', '2013-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS06843032', '許小慧', 1, '+81 66-131-5700', 2, '785861345570515441', 'Rm. 26, 1-7-2 Omido, Higashiosaka, Osaka, Japan', '1995-09-30', 0, 0, 'husiuwa69', '2006-10-07', 'hsw', '2004-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS11764521', '藤國榮', 1, '+81 74-527-3731', 2, '709699048270203818', 'Rm. 17, 3-9-4 Gakuenminami, Nara, Japan', '1993-09-13', 0, 0, 'kwt', '2003-01-12', 'tkwokwing410', '2003-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS99893504', 'Ethel Castro', 1, '+1 330-443-7423', 3, '594434213024136918', '342 Collier Road 3rd Floor, Akron, OH 44320, United States', '1996-12-22', 0, 0, 'ethel303', '2002-05-03', 'castroe', '2005-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS67163752', '李云熙', 1, '+81 3-4917-3929', 3, '736112317096596114', '日本東京渋谷区代々木二丁目3番16号33号室', '1996-06-06', 0, 0, 'yuli', '2020-01-27', 'liyunxi', '2017-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS14138157', '吴杰宏', 1, '+86 10-050-9804', 4, '690007053667541604', '24F, 142 028 County Rd, Yanqing District, Beijing, China', '1988-03-10', 0, 0, 'jwu', '2007-11-05', 'jiehongwu', '2011-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS97553923', '岡本悠人', 1, '+81 52-802-6130', 1, '769101014623335803', 'Rm. 42, 2-5-13 Chitose, Atsuta Ward, Nagoya, Japan', '1992-04-26', 0, 0, 'yutookamoto87', '2003-12-18', 'yuto916', '2016-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS60930673', '郝震南', 1, '+86 131-5195-1658', 2, '215125612553727894', '中国中山乐丰六路283号46栋', '1998-08-22', 0, 0, 'haozhennan', '2015-01-02', 'zhenhao', '2018-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS01839834', '張心穎', 0, '+81 80-0539-0311', 3, '952663528593716438', '45F, 4-9-14 Kamihigashi, Hirano Ward, Osaka, Japan', '1994-04-05', 0, 0, 'swch', '2013-03-23', 'cheusumwi627', '2008-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS64724093', '何慧珊', 0, '+81 66-377-0929', 3, '074099126895098291', '日本おおさかし西成区天神ノ森二丁目1番11号17階', '1995-03-15', 0, 0, 'howaisan2006', '2001-08-21', 'waih7', '2019-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS62423970', '今井陽太', 0, '+86 10-6231-1122', 4, '080671788564898188', 'Room 45, CR Building, 638 Yueliu Rd, Fangshan District, Beijing, China', '1987-01-17', 0, 0, 'imyota', '2007-06-16', 'yimai', '2012-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS16879783', '林大輔', 0, '+86 195-3057-3191', 0, '194854600904420434', '中国上海市浦东新区橄榄路452号40楼', '1998-12-29', 0, 0, 'hayashi908', '2015-01-08', 'daishayashi407', '2010-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS29680541', '黃梓軒', 1, '+86 769-241-1531', 1, '966206926114700273', '中国东莞坑美十五巷58号1楼', '1993-03-28', 0, 0, 'wongtszhi', '2018-11-17', 'wong313', '2015-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS97351774', 'Florence West', 0, '+86 769-4152-6152', 3, '809669947215681332', 'Room 29, 876 Kengmei 15th Alley, Dongguan, China', '1989-05-16', 0, 0, 'fwest10', '2016-08-04', 'flow', '2017-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS65191296', '陶宇宁', 0, '+86 182-0798-2841', 4, '040291698263027062', '8F, 469 Middle Huaihai Road, Huangpu District, Shanghai, China', '1997-09-27', 0, 0, 'tayuning423', '2010-04-25', 'ytao', '2006-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS49289550', '樂詠詩', 0, '+1 838-526-4563', 1, '164789123626403939', '816 Broadway Apartment 6, Albany, NY 12207, United States', '1990-08-02', 0, 0, 'lws', '2003-02-08', 'lok618', '2021-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS43432280', 'Stephanie Thompson', 0, '+44 (121) 516 8218', 1, '884085646900081037', 'No.6 Main building, 660 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1996-11-14', 0, 0, 'stepthom129', '2013-01-20', 'st7', '2011-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS16657372', '鄺家玲', 0, '+1 718-375-4300', 3, '973490050807355816', '989 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1995-12-17', 0, 0, 'kalingkwong', '2007-07-10', 'klkwong1114', '2005-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS63894740', '張思妤', 1, '+86 130-7063-1599', 1, '559506070602285984', 'No.26 building, 603 Dong Zhi Men, Dongcheng District, Beijing, China', '1990-06-25', 0, 0, 'cheung78', '2006-09-20', 'szeyu49', '2002-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS16301786', 'Timothy Morales', 1, '+81 66-450-7372', 3, '155676401439883574', '日本おおさかし平野区加美東四丁目9番4号43階', '1996-04-06', 0, 0, 'moraltimothy', '2002-03-22', 'tmoral930', '2019-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS11821778', '曹璐', 1, '+86 131-8526-9229', 2, '524394126036975014', '中国深圳罗湖区田贝一路263号20号楼', '1988-10-18', 0, 0, 'caolu', '2001-06-10', 'calu', '2021-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS82843130', '龚晓明', 1, '+81 70-5755-3817', 2, '235913050423799250', '日本おおさかし東住吉区東田辺三丁目27番11号29階', '1985-03-04', 0, 0, 'gongxiaoming', '2018-05-12', 'gongxia', '2010-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS42948556', 'Lawrence Ford', 1, '+44 (161) 866 3597', 3, '261637559263453631', 'No.50 Main building, 16 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-02-10', 0, 0, 'fordlawrence', '2000-01-03', 'lawrence99', '2012-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS93907083', '菅原光', 0, '+81 66-234-5587', 4, '190885607012956677', '日本おおさかし西成区出城一丁目1番14号50階', '1992-06-05', 0, 0, 'hikarusugawara', '2015-10-23', 'hikaru408', '2004-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS21900424', '容嘉欣', 1, '+81 74-805-9933', 0, '112569752835629001', '43F, 1-7-1 Saidaiji Akodacho, Nara, Japan', '1985-11-03', 0, 0, 'yunkaryan', '2020-03-22', 'kyyung', '2016-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS09395248', '杜晓明', 1, '+81 52-355-6463', 0, '760915469222242331', '日本なごやし熱田区千年二丁目5番20号27階', '1994-11-26', 0, 0, 'duxiaoming62', '2001-06-10', 'xdu', '2014-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS61785399', '戴云熙', 0, '+44 7865 467371', 4, '220693474091555359', 'Unit 19, Oxford Eco Centre, 207 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1991-10-26', 0, 0, 'day', '2014-11-30', 'yunxdai2', '2000-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS21370932', '姚云熙', 0, '+86 760-8238-7109', 3, '111197398109998222', '中国中山乐丰六路668号20楼', '1990-10-11', 0, 0, 'yao4', '2001-01-28', 'yunxiyao', '2017-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS06074567', 'Rachel Graham', 0, '+81 80-3910-9351', 1, '817426728270226309', '日本おおさかし東住吉区東田辺三丁目27番17号28階', '1986-09-23', 0, 0, 'grarac', '2009-01-07', 'rgraham1975', '2003-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS35636344', '韓明詩', 1, '+1 312-845-0760', 1, '529928232096795734', '588 Rush Street Suite 37, Chicago, IL 60611, United States', '1987-09-03', 0, 0, 'mingsze01', '2007-05-17', 'mshan', '2010-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS20693295', '葉天樂', 1, '+86 10-1925-5579', 2, '816213078244426092', '中国北京市朝阳区三里屯路267号37号楼', '1993-10-11', 0, 0, 'yip114', '2008-03-07', 'tlyip', '2020-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS25354243', '長谷川詩乃', 1, '+81 80-2762-1590', 1, '175011196738024884', '47F, 3-9-12 Gakuenminami, Nara, Japan', '1989-06-15', 0, 0, 'hasegawashino', '2019-06-06', 'shinohaseg', '2009-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS31290649', '曹安琪', 0, '+86 769-7949-4048', 3, '355999431486114237', 'Room 30, CR Building, 708 Kengmei 15th Alley, Dongguan, China', '1987-05-26', 0, 0, 'aca', '2000-03-02', 'canqi', '2021-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS73184192', 'Jamie Jimenez', 1, '+1 213-185-7007', 0, '898029776284828382', '516 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1990-10-18', 0, 0, 'jamij915', '2000-05-03', 'jamie95', '2006-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS98623847', '高田蓮', 1, '+86 28-543-1602', 2, '433435257356888366', 'Room 39, No. 788, Shuangqing Rd, Chenghua District, Chengdu, China', '1998-01-26', 0, 0, 'ren2004', '2016-08-08', 'takaren', '2005-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS50282523', 'Virginia Porter', 0, '+86 769-940-5146', 1, '778361520951937450', 'Room 44, CR Building, 975 Shanhu Rd, Dongguan, China', '1993-04-18', 0, 0, 'virporter', '2006-11-06', 'vporter', '2004-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS43575923', '鐘嘉欣', 1, '+81 90-4025-8610', 4, '232611238583898127', '36F, 1-6-6, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-04-24', 0, 0, 'kyc118', '2002-12-17', 'chungky225', '2015-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS26764847', '吴秀英', 0, '+86 20-9180-5374', 3, '580960279715171158', 'No.35 building, 760 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1985-09-13', 0, 0, 'wu507', '2006-06-23', 'wuxi', '2020-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS67999617', '贾子韬', 1, '+1 838-868-1486', 0, '112724262274721293', '418 Lark Street Apt 42, Albany, NY 12210, United States', '1998-11-14', 0, 0, 'jz20', '2006-07-19', 'jiazitao2', '2001-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS58440666', 'Robert Rivera', 1, '+86 171-1303-1979', 2, '743810699459213245', '中国东莞东泰五街33号3栋', '1995-11-04', 0, 0, 'robert1012', '2020-10-07', 'riverarobert8', '2003-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS38509611', '翁麗欣', 0, '+1 312-414-7989', 2, '205110329852702266', '682 Pedway 3rd Floor, Chicago, IL 60601, United States', '1988-02-03', 0, 0, 'yungly', '2003-07-27', 'laiyanyung1976', '2004-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS13985086', '杨睿', 0, '+44 5956 363894', 3, '074124165709194686', 'Unit 3, Oxford Eco Centre, 83 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1988-05-08', 0, 0, 'ruiyang2002', '2017-02-16', 'yangrui', '2008-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS15007614', '廖子韬', 1, '+1 838-377-3180', 2, '987935571132782099', '648 Broadway 3rd Floor, Albany, NY 12207, United States', '1998-04-03', 0, 0, 'liaz50', '2007-09-30', 'lizi606', '2002-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS72632687', '長谷川七海', 0, '+1 718-784-5252', 4, '718402497760419109', '833 Flatbush Ave Suite 17, Brooklyn, NY 11225, United States', '1999-01-22', 0, 0, 'nanamihase', '2007-03-31', 'nanhaseg5', '2021-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS12175620', '程安琪', 0, '+81 11-919-3035', 3, '999278887015392545', '日本札幌中央区宮の森四条六丁目1番12号21階', '1986-05-19', 0, 0, 'cheng818', '2006-12-11', 'acheng503', '2007-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS98392762', 'Thomas Baker', 1, '+86 28-6318-5348', 3, '964337791862362966', 'Room 20, CR Building, 356 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1988-11-19', 0, 0, 'thomasb', '2016-01-14', 'bthomas', '2013-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS17808205', 'Don Shaw', 0, '+81 90-7101-0460', 4, '514159308378036741', '日本札幌中央区宮の森四条六丁目1番9号46階', '1998-07-13', 0, 0, 'don99', '2004-03-23', 'shawdon48', '2001-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS42768736', '宮本聖子', 0, '+1 213-031-0376', 2, '762008249834312044', '797 Figueroa Street Apartment 21, Los Angeles, CA 90037, United States', '1991-10-06', 0, 0, 'seimiyamoto10', '2020-11-22', 'miyamotoseiko', '2012-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS54962113', '市川絢斗', 0, '+1 838-143-1538', 2, '147237274964561633', '146 Central Avenue Apartment 41, Albany, NY 12205, United States', '1995-05-15', 0, 0, 'ichiaya04', '2000-07-31', 'iayato9', '2008-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS34308210', '大野百恵', 0, '+44 5053 449677', 2, '522649019444015297', 'No.42 Main building, 625 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1987-01-25', 0, 0, 'momoon', '2010-08-30', 'momoeono', '2005-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS39931281', 'Jesse Ryan', 0, '+86 769-083-5379', 1, '157839450710444473', 'Room 20, 681 Huanqu South Street 2nd Alley, Dongguan, China', '1988-07-05', 0, 0, 'jerya', '2014-06-19', 'ryan219', '2015-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS41206444', '徐云熙', 0, '+44 (151) 441 2172', 4, '314333805842994927', 'Unit 34, Oxford Eco Centre, 533 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1995-01-09', 0, 0, 'xu9', '2000-02-05', 'yunxix', '2001-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS77781967', '大塚大輔', 0, '+1 213-091-8199', 1, '122926865200769402', '33 Wall Street Suite 46, Los Angeles, CA 90003, United States', '1994-01-31', 0, 0, 'otsukdaisuke', '2015-11-26', 'oda', '2002-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS71554528', 'Virginia Dixon', 0, '+86 20-6180-3386', 2, '542269482945476944', '中国广州市白云区小坪东路191号11号楼', '1992-10-05', 0, 0, 'virdixo10', '2012-07-14', 'virginiadixon7', '2012-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS23986754', '桜井大輔', 0, '+81 3-7993-1267', 2, '191312113363926032', '23-kai, 1-6-8, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-12-04', 0, 0, 'ds59', '2011-12-03', 'daisukes8', '2001-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS74700318', '關玲玲', 1, '+81 90-0922-9431', 2, '940701146360931622', '31F, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1995-03-28', 0, 0, 'kwanlingling1114', '2013-03-25', 'llkwan', '2010-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS36450662', '尹慧珊', 0, '+44 (161) 339 4308', 1, '596430588311518878', 'No.39 Main building, 719 Sackville St, Manchester, M1 3BB, United Kingdom', '1989-05-02', 0, 0, 'yiwaisan5', '2004-10-10', 'yiwaisan606', '2014-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS79202775', 'Catherine Nguyen', 0, '+81 52-151-5520', 1, '214413746241625627', 'Rm. 15, 2-5-13 Chitose, Atsuta Ward, Nagoya, Japan', '1996-06-01', 0, 0, 'nguyenca67', '2003-05-14', 'nguyecatherine', '2009-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS47300854', '卢宇宁', 0, '+86 21-4508-6754', 0, '524203139234806525', '38F, 639 Ganlan Rd, Pudong, Shanghai, China', '1988-03-26', 0, 0, 'luyunin62', '2016-02-16', 'lu1017', '2020-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS08664008', 'Martha Ford', 1, '+81 11-919-1850', 0, '612615772383257130', '日本札幌厚別区上野幌一条二丁目1番16号48号室', '1991-10-15', 0, 0, 'martha6', '2010-12-10', 'marthaford421', '2020-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS46974161', '張國榮', 1, '+1 213-008-9752', 4, '999606544261711108', '98 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1992-03-22', 0, 0, 'cheukw', '2014-10-30', 'kwokwingc', '2010-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS78223486', '莫岚', 1, '+86 150-6519-3883', 2, '987351826116695508', 'Room 45, 336 Dongtai 5th St, Dongguan, China', '1985-06-30', 0, 0, 'mo50', '2001-09-13', 'molan44', '2001-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS23479593', '姚宇宁', 1, '+86 760-169-2697', 2, '076852073066633083', '中国中山天河区大信商圈大信南路375号42室', '1995-08-20', 0, 0, 'yuningya10', '2010-06-15', 'yuny', '2014-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS05962419', '蔡嘉伦', 1, '+86 137-8331-8345', 1, '354291865559393991', '中国广州市海珠区江南西路884号华润大厦23室', '1995-03-13', 0, 0, 'jialcai', '2021-06-13', 'jialun130', '2001-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS36039465', 'Ernest Garcia', 0, '+81 80-5821-8888', 0, '437169863460485302', '日本東京品川区東五反田五丁目2番12号9階', '1988-07-30', 0, 0, 'garcia3', '2016-09-11', 'egarcia', '2013-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS81245947', '張朝偉', 0, '+86 186-4108-0112', 3, '054399201015346001', '中国东莞环区南街二巷117号29楼', '1990-03-08', 0, 0, 'ccw', '2011-01-21', 'cwcheung', '2014-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS07053300', '孔震南', 0, '+86 20-509-6268', 4, '277924499013983604', '中国广州市白云区小坪东路639号26栋', '1996-11-11', 0, 0, 'zhennankong', '2004-12-30', 'kzhennan', '2007-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS38291552', 'Hazel Barnes', 1, '+86 176-0127-5998', 3, '942483508018280937', 'No.36 building, 997 Ganlan Rd, Pudong, Shanghai, China', '1992-12-15', 0, 0, 'hbar10', '2013-01-25', 'bahazel', '2006-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS44842081', '藍家文', 0, '+1 213-839-1467', 4, '025722101554031955', '493 Grape Street Suite 41, Los Angeles, CA 90002, United States', '1995-04-22', 0, 0, 'kamanl430', '2015-07-26', 'lkam', '2017-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS15400506', '山口瑛太', 0, '+86 174-4877-8058', 3, '437611624121451442', '39F, 79 Shanhu Rd, Dongguan, China', '1985-05-04', 0, 0, 'eitaya3', '2008-11-16', 'eiy7', '2004-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS23329750', 'Miguel Rivera', 1, '+44 (20) 6768 1864', 3, '381917668877610084', 'Block 45, 58 Regent Street, London, W1B 2LX, United Kingdom', '1991-10-08', 0, 0, 'migueriver', '2021-06-11', 'riveramiguel1110', '2000-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS23251888', '李秀文', 1, '+81 52-775-9067', 3, '659028682561657690', '日本なごやし瑞穂区河岸町四丁目20番7号17階', '1998-02-21', 0, 0, 'lsauman1987', '2012-03-13', 'sml5', '2021-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS18907104', 'Carl Hall', 0, '+86 21-4921-3989', 0, '600233665564682210', 'Room 8, 472 Binchuan Rd, Minhang District, Shanghai, China', '1994-08-05', 0, 0, 'carhal2', '2012-07-28', 'carl12', '2021-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS20314943', '菅原大輔', 0, '+44 (161) 331 6583', 4, '856906811169295005', 'No.5 Main building, 432 Mosley St, Manchester, M2 3AQ, United Kingdom', '1995-08-14', 0, 0, 'daisuke4', '2017-09-23', 'daissugawara78', '2015-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS95063554', '横山聖子', 0, '+86 156-1373-8795', 0, '115864942443938614', 'Room 36, CR Building, 478 Lefeng 6th Rd, Zhongshan, China', '1997-06-22', 0, 0, 'seikoy', '2017-03-30', 'yoksei', '2005-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS12775374', '黄致远', 1, '+81 70-5551-5881', 1, '926646317290449421', 'Rm. 14, 13-3-11 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1989-10-28', 0, 0, 'huangzhiyuan', '2017-12-15', 'hzhiy', '2014-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS28784112', '蕭詩君', 1, '+44 7629 108153', 1, '330444670382497079', 'Flat 28, 762 Regent Street, London, W1B 2LX, United Kingdom', '1986-10-01', 0, 0, 'szekwansi', '2021-05-01', 'siuszekwan618', '2004-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS08315611', '桜井翼', 0, '+1 330-578-3968', 2, '503494976801671790', '45 Riverview Road Suite 1, Akron, OH 44313, United States', '1990-03-10', 0, 0, 'stsu', '2002-05-12', 'tsubasasa', '2007-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS04857138', '黃玲玲', 1, '+86 134-5263-8622', 3, '621483595443186851', '中国东莞珊瑚路964号31栋', '1996-02-09', 0, 0, 'wonll', '2005-07-26', 'wonglingling3', '2008-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS91209100', '沈嘉伦', 0, '+44 7198 590872', 0, '385249863579526332', 'Block 19, 964 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1990-10-28', 0, 0, 'jials72', '2016-12-28', 'shen10', '2008-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS62647615', '高田蓮', 0, '+81 74-274-3517', 2, '468231068020465565', 'Rm. 8, 2 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-02-08', 0, 0, 'takada12', '2001-08-24', 'takadaren93', '2009-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS01256354', '松本彩乃', 1, '+86 10-6566-2040', 3, '852939671626386223', 'Room 8, CR Building, 887 West Chang''an Avenue, Xicheng District, Beijing, China', '1990-03-02', 0, 0, 'matsumotoayano1', '2001-06-05', 'matsumoto9', '2015-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS01028448', '苗麗欣', 1, '+81 70-9160-9984', 2, '441113201425178204', '日本ならし西大寺赤田町一丁目7番2号37号室', '1994-08-14', 0, 0, 'laiyanmiu', '2017-07-15', 'lym87', '2015-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS58652871', 'Beverly Gonzalez', 0, '+81 11-533-9836', 3, '608414976453484154', '10F, 5-2-13 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1996-07-16', 0, 0, 'beverlygonzalez1991', '2015-01-17', 'gonbever1', '2017-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS22068869', '许璐', 1, '+44 (116) 636 5628', 2, '661899685939844373', 'Block 31, 150 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-07-02', 0, 0, 'luxu', '2007-05-04', 'lxu1964', '2013-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS12457984', '唐宇宁', 1, '+81 3-7575-6469', 1, '065868199556057051', '36-kai, 3-15-13 Ginza, Chuo-ku, Tokyo, Japan', '1998-07-07', 0, 0, 'tang79', '2020-06-17', 'yuningt121', '2013-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS72903795', '中山陸', 0, '+86 755-742-9922', 3, '850530021553336158', 'No.50 building, 745 Shennan Ave, Futian District, Shenzhen, China', '1985-02-21', 0, 0, 'rikunakayama8', '2012-04-26', 'rikunakayama', '2007-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS47393836', 'Henry Anderson', 0, '+81 66-082-0935', 2, '794351368603547917', 'Rm. 43, 1-1-3 Deshiro, Nishinari Ward, Osaka, Japan', '1998-10-06', 0, 0, 'heande213', '2013-12-07', 'henrya', '2017-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS30561981', '佐々木葵', 1, '+86 187-5534-5762', 1, '009736977357639520', '32F, 888 Jingtian East 1st St, Futian District, Shenzhen, China', '1996-08-14', 0, 0, 'aoisasaki', '2011-04-21', 'aosasak60', '2012-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS84710766', 'Jeffrey Ramirez', 1, '+1 718-042-5669', 4, '873017995900897740', '460 Flatbush Ave Apt 41, Brooklyn, NY 11225, United States', '1990-10-12', 0, 0, 'jeffreyrami', '2011-03-24', 'rjeffr', '2006-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS86930928', 'Cindy White', 0, '+86 195-6760-3930', 4, '872363048241000107', '中国深圳罗湖区清水河一路804号32栋', '1985-10-18', 0, 0, 'whicindy', '2012-08-26', 'white1', '2016-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS60437578', 'Ernest Peterson', 0, '+86 10-358-7272', 2, '062432664038543837', 'Room 39, CR Building, 896 028 County Rd, Yanqing District, Beijing, China', '1994-03-04', 0, 0, 'peteernes', '2003-01-11', 'epeterson419', '2002-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS15225248', '井上美咲', 0, '+86 196-1020-2961', 1, '491461001151160930', 'Room 47, CR Building, 511 Ganlan Rd, Pudong, Shanghai, China', '1997-03-10', 0, 0, 'misaki10', '2000-04-07', 'misakiinoue', '2010-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS49937877', '武田百花', 1, '+86 755-5771-1496', 1, '343809761903614254', '25F, 969 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1993-07-04', 0, 0, 'momokatake', '2000-04-17', 'takeda1009', '2003-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS52012323', '長谷川美緒', 1, '+81 80-1487-3863', 4, '712786011281055765', '42F, 5-4-2 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-08-08', 0, 0, 'mio1982', '2010-06-10', 'hasegawamio', '2001-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS87097511', '程致远', 0, '+1 718-130-1756', 3, '762643881300396755', '136 Bergen St Apartment 21, Brooklyn, NY 11217, United States', '1989-05-20', 0, 0, 'zcheng7', '2006-02-15', 'cheng7', '2001-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS83915011', '邵國權', 0, '+1 718-359-3494', 2, '667407028161088013', '450 Nostrand Ave Apartment 19, Brooklyn, NY 11216, United States', '1998-02-10', 0, 0, 'siukwo807', '2018-08-29', 'skk', '2009-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS52112400', 'Kyle Wells', 0, '+86 10-565-7679', 2, '857159257946081334', '中国北京市西城区西長安街449号26栋', '1985-04-08', 0, 0, 'welkyle', '2000-11-07', 'wellsky', '2015-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS04745977', '范睿', 0, '+81 74-643-6312', 2, '973835149960790019', '日本ならし西大寺赤田町一丁目7番13号22号室', '1985-04-06', 0, 0, 'fru117', '2015-12-27', 'fanr', '2009-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS90050776', '龙璐', 1, '+1 614-908-6604', 2, '742029584752177892', '586 East Cooke Road Apt 3, Columbus, GA 43214, United States', '1992-06-23', 0, 0, 'lulong1991', '2020-12-02', 'longlu', '2002-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS15474741', '钟致远', 0, '+1 312-058-7307', 4, '870797039961032163', '833 Rush Street Apt 8, Chicago, IL 60611, United States', '1996-04-28', 0, 0, 'zhizhong9', '2004-04-26', 'zhiyuanz', '2012-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS62832473', '孙杰宏', 0, '+86 20-043-9225', 3, '501026641307172404', 'No.24 building, 936 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-08-10', 0, 0, 'jiehongsu', '2010-09-12', 'sun10', '2002-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS11846264', 'Scott Shaw', 1, '+86 20-537-0034', 1, '636946587933788491', '中国广州市海珠区江南西路147号华润大厦48室', '1986-10-08', 0, 0, 'scoshaw', '2007-02-04', 'shawscott', '2000-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS96124815', '佐野拓哉', 1, '+81 11-799-1343', 4, '467631467226204737', '日本札幌白石区菊水三条五丁目2番2号48号室', '1996-05-29', 0, 0, 'sano416', '2018-09-06', 'sanotakuya7', '2010-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS39030700', '加藤七海', 1, '+81 70-7673-8682', 3, '946812597971275767', '日本おおさかし東住吉区東田辺三丁目27番15号11階', '1996-10-28', 0, 0, 'nkat1', '2010-09-25', 'nanami7', '2003-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS14091116', '太田大地', 0, '+81 70-0425-5279', 2, '636908499701900937', '44F, 2-1-7 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1993-12-13', 0, 0, 'daichio7', '2018-05-03', 'daichiota', '2004-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS58099588', '呂志遠', 1, '+81 52-867-5866', 4, '312353059334700092', '日本なごやし瑞穂区河岸町四丁目20番3号4階', '1998-08-15', 0, 0, 'luichiyuen', '2011-04-03', 'lchiyuen', '2002-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS12934589', '廖心穎', 1, '+81 70-9991-4339', 3, '869010266328771774', '32F, 13-3-12 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1992-07-01', 0, 0, 'liasumwing806', '2013-02-22', 'lisumwing', '2012-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS00894575', 'Leonard Palmer', 1, '+86 10-5289-8836', 2, '920261348824576271', '中国北京市海淀区清河中街68号204号华润大厦27室', '1994-06-17', 0, 0, 'leonardpalm', '2017-12-03', 'palml', '2004-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS76407318', '刘子异', 1, '+81 66-427-0054', 2, '684796266532517252', '日本おおさかし東住吉区東田辺三丁目27番17号32号室', '1989-07-25', 0, 0, 'liu6', '2018-05-02', 'liu60', '2006-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS03797690', '松井美月', 1, '+44 (116) 702 1039', 0, '495551482969814282', 'Unit 18, Oxford Eco Centre, 357 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1991-01-15', 0, 0, 'mmatsui88', '2011-11-02', 'matsuimi', '2019-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS62857649', '郭致远', 1, '+81 52-392-6781', 1, '760654972418722308', '29F, 7 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-03-31', 0, 0, 'zhiyuan510', '2021-02-18', 'zhiyuan2002', '2019-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS47768161', 'Joel Spencer', 1, '+81 74-245-2349', 4, '111926466976686666', '43-kai, 4 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1988-09-12', 0, 0, 'spejoe', '2014-05-19', 'spencer8', '2003-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS55865449', '伍明', 0, '+86 755-1426-4736', 4, '327513795797497073', '33F, 322 Jingtian East 1st St, Futian District, Shenzhen, China', '1987-01-22', 0, 0, 'ming5', '2010-08-06', 'ming1997', '2000-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS78576168', '劉祖兒', 1, '+86 760-362-5470', 2, '334826737128800424', '中国中山京华商圈华夏街221号18楼', '1991-11-17', 0, 0, 'lchoy', '2013-05-10', 'choyee56', '2009-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS48076765', '中村愛梨', 1, '+44 5633 529646', 0, '602634134215709133', 'Flat 41, 546 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1999-01-18', 0, 0, 'nakama', '2015-10-28', 'nakamuraairi7', '2016-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS61153782', '蕭家輝', 0, '+86 755-4818-2053', 3, '568609853518402606', '中国深圳罗湖区清水河一路752号45栋', '1988-12-24', 0, 0, 'kfsi', '2014-11-14', 'skafai9', '2015-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS80383352', 'Juanita Nelson', 1, '+86 10-3814-8191', 3, '627903046471704384', 'Room 22, 432 Sanlitun Road, Chaoyang District, Beijing, China', '1989-09-05', 0, 0, 'juanitanel2', '2018-01-24', 'nelsonjuanita', '2010-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS34525303', 'Heather Long', 0, '+86 769-8081-3830', 2, '664187353269712262', '中国东莞珊瑚路180号37楼', '1998-03-15', 0, 0, 'hlong', '2008-05-17', 'heatherlon809', '2019-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS29262418', '小山蓮', 0, '+86 151-3592-8055', 1, '079089319450195093', 'Room 39, 331 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1993-09-25', 0, 0, 'renk1', '2003-12-30', 'rko', '2002-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS75637036', '彭富城', 1, '+86 171-3941-6084', 3, '020878807049447302', 'No.7 building, 133 68 Qinghe Middle St, Haidian District, Beijing, China', '1996-07-22', 0, 0, 'pfs', '2006-06-24', 'pafushing', '2008-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS47700110', '郭志遠', 1, '+86 147-3699-2227', 2, '240487785085257933', '中国上海市浦东新区健祥路629号44栋', '1985-03-06', 0, 0, 'chiyuenkwok1012', '2002-06-07', 'chiyuenkwok1', '2017-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS49027193', '金安琪', 0, '+81 3-9812-7597', 1, '091462022980914650', '日本東京港区東新橋一丁目5番14号36階', '1993-11-05', 0, 0, 'anqijin2005', '2008-04-12', 'jin811', '2012-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS36985174', 'Jerry Webb', 0, '+81 90-7692-5768', 0, '368294616179650936', '日本なごやし瑞穂区河岸町四丁目20番6号11階', '1992-02-16', 0, 0, 'jerrywebb', '2012-02-17', 'jewebb314', '2008-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS21130633', '郭永發', 1, '+81 3-2807-6423', 2, '267195244329703586', '日本東京港区東新橋一丁目5番12号45階', '1995-04-22', 0, 0, 'wingfat68', '2013-02-17', 'wfk', '2003-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS76141344', '渡部絢斗', 1, '+81 3-4257-6508', 2, '451492055868800016', 'Rm. 30, 5-2-8 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-02-24', 0, 0, 'ayatowata', '2011-11-21', 'ayw', '2013-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS21367894', '錢永權', 1, '+86 186-0755-2707', 2, '162295620264289919', 'No.20 building, 54 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1991-06-11', 0, 0, 'wkchin', '2006-05-12', 'wingkuenchin62', '2011-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS32109584', 'Rhonda Williams', 1, '+44 (20) 1580 3985', 2, '192002693615086715', 'No.45 Main building, 327 Maddox Street, London, W1S 1PU, United Kingdom', '1985-09-25', 0, 0, 'rhonda5', '2021-05-26', 'williamsrhonda', '2006-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS01562313', '鄧永發', 1, '+86 20-656-8480', 3, '441052326044122124', 'No.27 building, 998 Tianhe Road, Tianhe District, Guangzhou, China', '1996-05-23', 0, 0, 'wft', '2014-08-10', 'wingfattang', '2020-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS60340818', '韓家強', 0, '+81 70-6274-0839', 3, '710572287982712585', '3F, 1-6-7, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1988-08-11', 0, 0, 'hankakeung', '2019-04-25', 'hankk', '2014-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS14570409', 'Rodney Mendoza', 1, '+86 760-5722-4129', 1, '414706726120528697', '19F, 766 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1995-08-15', 0, 0, 'rodneymendo', '2018-06-28', 'rodmendoza', '2003-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS45220766', '中川葉月', 1, '+81 74-069-5090', 3, '462542150795928154', '6F, 1-7-10 Saidaiji Akodacho, Nara, Japan', '1990-12-28', 0, 0, 'hnakagawa', '2021-09-04', 'hazn', '2006-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS89808302', '青木海斗', 0, '+44 5799 246413', 2, '690989543953873529', 'No.44 Main building, 703 Mosley St, Manchester, M2 3AQ, United Kingdom', '1988-05-30', 0, 0, 'aokkaito', '2010-04-16', 'aokaito', '2012-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS21525103', '何杰宏', 1, '+86 20-1025-6520', 3, '608282943565274746', '中国广州市白云区小坪东路499号5号楼', '1988-02-26', 0, 0, 'hejieh9', '2012-03-25', 'hejiehong14', '2014-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS77099922', '宣國明', 0, '+81 70-2855-2920', 4, '535890506476316694', '15F, 1-1-14 Deshiro, Nishinari Ward, Osaka, Japan', '1995-05-25', 0, 0, 'kmh', '2016-06-27', 'kwokmingh', '2021-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS99348405', 'Juan Ryan', 0, '+81 80-7700-0318', 2, '953357061726948656', '18-kai, 15 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1998-10-16', 0, 0, 'ryanjuan', '2021-08-27', 'juanry2', '2007-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS30551878', '藤慧琳', 1, '+81 3-5699-2729', 3, '303081227890509523', '日本東京品川区東五反田五丁目2番17号32階', '1993-02-21', 0, 0, 'wailam1222', '2004-05-27', 'tanwailam', '2007-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS89596800', '罗秀英', 1, '+81 80-7284-0256', 1, '511094295016729558', 'Rm. 22, 3-9-14 Gakuenminami, Nara, Japan', '1996-12-02', 0, 0, 'xiuyingluo5', '2010-04-01', 'xiluo', '2012-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS84173422', '曾明詩', 1, '+44 (1865) 08 6050', 0, '702511758434885120', 'Flat 45, 89 Park End St, Oxford, OX1 1JD, United Kingdom', '1996-12-11', 0, 0, 'tsangms', '2003-02-10', 'tsmingsze', '2021-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS47913096', '成青雲', 0, '+81 90-3814-5917', 2, '347814552392020043', '23-kai, 5-2-3 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1996-05-16', 0, 0, 'chingwanshing', '2020-11-12', 'chingwanshing3', '2014-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS86366301', '魏秀英', 0, '+86 769-2265-5885', 1, '605860465382200940', 'No.6 building, 133 Shanhu Rd, Dongguan, China', '1995-04-08', 0, 0, 'xwe', '2013-03-12', 'xwei', '2015-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS67913210', '宋杰宏', 0, '+81 3-1730-4187', 1, '356903329433441357', '日本東京港区東新橋一丁目5番3号20階', '1985-07-21', 0, 0, 'song5', '2003-06-16', 'sjie8', '2000-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS94916947', '罗詩涵', 1, '+81 90-0345-3008', 1, '368629788087003433', '50F, 3-9-16 Gakuenminami, Nara, Japan', '1990-09-24', 0, 0, 'luos', '2019-08-15', 'shihanlu9', '2008-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS45036455', '青木詩乃', 1, '+81 80-2118-0882', 3, '040954838572447958', '日本なごやし北区清水三丁目19番19号46階', '1988-08-01', 0, 0, 'aoks', '2003-12-02', 'aoks6', '2001-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS84407079', '蒋震南', 0, '+86 197-3537-1415', 2, '598856622218810308', '中国成都市成华区二仙桥东三路96号37楼', '1995-11-08', 0, 0, 'zhennanji', '2010-07-08', 'jianzhennan54', '2000-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS78044719', '李云熙', 0, '+81 70-0362-2238', 0, '417148883907373217', '42-kai, 8 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1995-05-06', 0, 0, 'yunxi910', '2010-06-07', 'yunxil', '2021-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS26969362', '森健太', 1, '+1 212-999-7184', 1, '926337259156487439', '564 Canal Street 3rd Floor, New York, NY 10013, United States', '1987-07-27', 0, 0, 'kentamori', '2018-10-26', 'kmori', '2001-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS73548044', '上野光', 0, '+1 614-989-0404', 3, '596967154035944315', '855 Tremont Road Apt 41, Columbus, GA 43212, United States', '1989-08-15', 0, 0, 'hikaru203', '2007-12-22', 'hikueno', '2008-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS81229000', '莫裕玲', 0, '+81 11-442-3879', 4, '883744373079744771', '日本札幌豊平区豊平三条十三丁目3番9号2階', '1989-02-11', 0, 0, 'moyuling', '2015-07-31', 'yuling53', '2020-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS51391801', '余秀英', 1, '+81 74-792-3020', 1, '856716892655738754', '日本ならし大和郡山市本庄町一丁目1番2号18号室', '1995-07-24', 0, 0, 'yuxi52', '2016-02-14', 'yu41', '2007-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS69760848', 'George Miller', 0, '+81 66-656-9147', 0, '173882992095291187', '日本おおさかし西成区出城一丁目1番12号34号室', '1995-02-03', 0, 0, 'georgmiller', '2016-02-04', 'millergeorge', '2004-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS90576633', '鄧安娜', 1, '+86 10-496-5580', 1, '373657303171792129', 'Room 22, CR Building, 464 028 County Rd, Yanqing District, Beijing, China', '1988-03-09', 0, 0, 'tanonna', '2002-12-20', 'tangonna', '2018-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS90341785', 'Doris Shaw', 0, '+86 160-7912-4402', 1, '729769186555249675', '中国北京市房山区岳琉路772号1号楼', '1997-01-20', 0, 0, 'shaw20', '2020-03-19', 'shaw02', '2016-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS59989470', '西村聖子', 1, '+44 5617 327564', 4, '653190294242652484', 'No.11 Main building, 583 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1996-03-22', 0, 0, 'niseik', '2015-01-09', 'nishseik1218', '2021-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS68002357', '李梓軒', 1, '+44 7025 079935', 3, '838634887220764216', 'Flat 24, 527 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-04-02', 0, 0, 'thl76', '2010-02-22', 'thlee617', '2014-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS76896356', '伍惠妹', 0, '+81 70-4603-6092', 3, '926442288260495404', '44F, 3-9-8 Gakuenminami, Nara, Japan', '1992-02-23', 0, 0, 'huimein', '2003-10-19', 'hmn1220', '2009-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS08691651', '徐嘉伦', 0, '+86 191-4997-7817', 2, '505899068978840669', 'Room 13, CR Building, 979 Tianhe Road, Tianhe District, Guangzhou, China', '1990-03-09', 0, 0, 'jialxu', '2017-10-30', 'xujialun1201', '2008-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS00461378', 'Stephanie Ferguson', 0, '+81 70-7581-9647', 0, '467463228285698363', '22F, 13-3-2 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1987-05-25', 0, 0, 'fergusons', '2015-05-25', 'stferg2', '2012-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS40357097', '金子海斗', 0, '+81 52-738-5717', 1, '192326584955682184', '14-kai, 17 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1987-01-12', 0, 0, 'kanekok', '2008-07-02', 'kanekokait', '2000-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS78534604', 'Norma Gonzalez', 1, '+81 80-0337-4953', 4, '464174809783985075', '日本東京中央区銀座三丁目12番6号42階', '1996-08-23', 0, 0, 'gono719', '2021-12-16', 'normgon', '2008-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS42550894', '小川美緒', 1, '+81 3-3421-8463', 3, '249759820560267796', '9-kai, 1-5-19, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1993-08-13', 0, 0, 'ogawami7', '2008-08-02', 'mo66', '2014-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS96692237', '傅國權', 0, '+44 5757 677888', 2, '337170691976686341', 'Unit 19, Oxford Eco Centre, 146 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1990-02-22', 0, 0, 'fukwokkuen86', '2006-06-25', 'kwokkuenfu4', '2012-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS24859935', '汪安琪', 1, '+86 172-6195-8332', 1, '494511410950995252', '中国成都市成华区二仙桥东三路534号7号楼', '1991-05-07', 0, 0, 'wanganq', '2001-04-20', 'aw1988', '2011-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS96772768', '文小慧', 1, '+1 614-014-3154', 4, '305408599038045230', '797 East Cooke Road Apartment 3, Columbus, GA 43214, United States', '1991-02-11', 0, 0, 'mansw', '2008-03-18', 'mansiuwai', '2002-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS43016955', '阎子韬', 0, '+44 (151) 936 3708', 2, '897090798362515626', 'Unit 35, Oxford Eco Centre, 514 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1995-11-24', 0, 0, 'zitaoyan', '2004-07-14', 'zitaoya', '2021-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS47363509', 'Donna Bryant', 1, '+86 146-3976-8882', 1, '618698665037941116', 'No.31 building, 801 Middle Huaihai Road, Huangpu District, Shanghai, China', '1997-08-29', 0, 0, 'bryadonna', '2010-01-29', 'bryantd2', '2003-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS63087591', 'Carmen Hill', 1, '+81 80-0302-0105', 2, '907420657056094570', 'Rm. 16, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1995-03-06', 0, 0, 'carmenh', '2008-08-04', 'hilc', '2003-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS98169867', '胡震南', 1, '+86 172-2681-2436', 1, '891716288065435006', '中国广州市白云区小坪东路277号3栋', '1988-04-30', 0, 0, 'zhennanhu', '2019-08-14', 'zhenh18', '2018-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS22152307', 'Todd Dixon', 0, '+81 70-6720-2933', 4, '510589247726168808', 'Rm. 50, 1-1-11 Deshiro, Nishinari Ward, Osaka, Japan', '1996-11-02', 0, 0, 'dixon3', '2010-09-05', 'dixonto416', '2015-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS65808882', '池田陽菜', 1, '+1 838-957-3996', 1, '356390392956111782', '321 State Street Suite 43, Albany, NY 12203, United States', '1990-01-05', 0, 0, 'hik', '2013-06-12', 'hinaikeda825', '2013-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS46001254', 'Paula Sullivan', 0, '+44 7891 642972', 2, '881815583143348362', 'Flat 41, 503 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1992-10-22', 0, 0, 'psulli', '2006-12-09', 'sullivanpaula', '2002-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS57143132', '高木聖子', 1, '+81 3-6250-3060', 2, '557948464559325816', '31F, 1-5-20, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1999-01-04', 0, 0, 'tase8', '2007-05-20', 'seikotak3', '2007-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS15594869', 'Victoria Hamilton', 1, '+1 718-070-0661', 1, '806243902540957073', '449 Nostrand Ave Apartment 11, Brooklyn, NY 11216, United States', '1987-05-04', 0, 0, 'hamilton425', '2014-02-16', 'victohamilton628', '2015-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS12961555', '任德華', 1, '+1 718-756-8812', 2, '294030566095078947', '530 1st Ave Apartment 10, Brooklyn, NY 11220, United States', '1988-02-11', 0, 0, 'takwahyam', '2009-09-30', 'yam7', '2003-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS62240622', '増田海斗', 0, '+81 3-2851-3252', 1, '412438294755757356', '19F, 3-15-2 Ginza, Chuo-ku, Tokyo, Japan', '1994-06-08', 0, 0, 'masudakai', '2013-03-16', 'masudaka', '2006-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS25227903', '曹力申', 1, '+1 212-671-5405', 0, '689298197129618631', '37 Wooster Street Suite 22, New York, NY 10012, United States', '1997-02-02', 0, 0, 'liksun13', '2006-06-03', 'liksuncho', '2012-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS06150892', '太田陽菜', 1, '+86 769-5971-0220', 4, '794687771963776587', 'No.23 building, 229 Kengmei 15th Alley, Dongguan, China', '1993-12-29', 0, 0, 'ota1027', '2002-10-22', 'ohina', '2008-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS93071885', '元天榮', 0, '+81 11-625-3529', 2, '140751925580147420', '日本札幌清田区真栄四条五丁目19番9号10号室', '1998-07-16', 0, 0, 'twyuen1121', '2006-11-07', 'tinwing1947', '2014-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS23772363', '陆詩涵', 1, '+1 213-754-8858', 2, '368051916027884009', '424 Grape Street Apartment 2, Los Angeles, CA 90002, United States', '1994-02-19', 0, 0, 'sl218', '2014-03-08', 'lushiha427', '2020-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS55870607', '有村光', 0, '+1 330-202-5375', 2, '808635661335418981', '995 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1990-03-25', 0, 0, 'harimura', '2016-04-04', 'arimurahikaru912', '2019-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS33300679', 'Jerry Anderson', 1, '+44 (116) 940 8507', 3, '087296606948255522', 'Block 27, 822 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1991-12-01', 0, 0, 'jerry224', '2005-12-04', 'andejerry', '2008-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS97548840', '方晓明', 0, '+81 74-373-7244', 0, '939349884198202822', 'Rm. 30, 17 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1993-07-01', 0, 0, 'xiaoming06', '2004-07-04', 'xiaofa', '2018-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS67760797', '姜子异', 0, '+81 11-426-3494', 2, '897222916732995994', '37-kai, 13-3-17 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1986-05-27', 0, 0, 'jziyi', '2014-05-07', 'ziyijiang83', '2017-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS89596110', '苏致远', 1, '+44 5496 619686', 1, '524722195235598978', 'Block 25, 139 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1986-03-12', 0, 0, 'zhiyuansu1', '2014-01-28', 'suzhiyu', '2014-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS15468416', 'Francis Wood', 1, '+1 213-924-0759', 1, '907691885407244438', '564 Alameda Street Suite 16, Los Angeles, CA 90002, United States', '1990-11-19', 0, 0, 'francis802', '2000-05-25', 'franciswo', '2004-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS48566356', '赵秀英', 0, '+81 11-771-3667', 1, '621159630704729028', '43F, 5-19-6 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1992-01-25', 0, 0, 'xiuyingz', '2009-05-06', 'xiuyingzha', '2020-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS82641435', 'Shannon Moore', 0, '+81 80-7858-5661', 2, '537887650259493043', '日本ならし西大寺赤田町一丁目7番6号17階', '1988-07-02', 0, 0, 'shannonm', '2001-11-10', 'mooreshann', '2009-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS94409739', '石晓明', 1, '+86 130-0351-0421', 3, '332626122519249922', 'Room 11, 819 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1985-10-09', 0, 0, 'xshi', '2013-01-08', 'shi17', '2004-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS53666170', 'Carl Myers', 1, '+44 7081 895052', 1, '773263144057453194', 'Unit 37, Oxford Eco Centre, 717 Redfern St, Liverpool, L20 8JB, United Kingdom', '1986-08-11', 0, 0, 'carlmyers', '2004-01-28', 'cm6', '2019-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS06870265', '周震南', 1, '+1 718-267-8221', 3, '402967202497626381', '57 Columbia St Suite 13, Brooklyn, NY 11231, United States', '1992-05-25', 0, 0, 'zhenzho5', '2006-06-03', 'zhez', '2009-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS86075420', '中森七海', 0, '+86 187-7130-1147', 1, '191399428364314487', '中国成都市成华区双庆路234号华润大厦3室', '1992-07-07', 0, 0, 'nakamorinanam', '2018-12-11', 'nananakamori', '2003-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS79503281', 'Jennifer Robinson', 1, '+81 90-0295-3744', 2, '163053034355525726', '日本東京港区東新橋一丁目5番15号13階', '1990-10-01', 0, 0, 'robinsonjenn1101', '2006-03-05', 'jenniferrobinson4', '2020-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS14679224', '梅慧敏', 1, '+1 838-434-6241', 2, '108413371850212571', '156 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1996-07-04', 0, 0, 'wmmui2000', '2012-08-21', 'waimanmu', '2008-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS98745344', '廖慧儀', 1, '+1 212-338-7136', 2, '035222374308272477', '740 Fifth Avenue Apartment 37, New York, NY 10017, United States', '1985-01-08', 0, 0, 'wyl52', '2016-04-22', 'wyliao', '2011-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS77858030', '洪慧珊', 0, '+81 74-249-8608', 1, '935362762444450934', '35F, 3-9-13 Gakuenminami, Nara, Japan', '1999-02-09', 0, 0, 'hungwaisan228', '2005-11-05', 'hung831', '2002-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS24364134', 'Christina Hamilton', 1, '+1 718-070-4984', 3, '829986873879701418', '150 Nostrand Ave Apt 18, Brooklyn, NY 11216, United States', '1993-04-22', 0, 0, 'ch3', '2018-05-20', 'christina612', '2001-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS27467455', '蔡家輝', 1, '+86 20-910-3931', 0, '201717829996326031', '中国广州市白云区小坪东路507号48室', '1997-03-11', 0, 0, 'kfch4', '2003-12-08', 'chkf9', '2020-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS16081054', '方子韬', 1, '+86 149-6889-8663', 1, '690512917644261279', '中国北京市朝阳区三里屯路901号13号楼', '1993-09-25', 0, 0, 'fzitao1948', '2004-07-26', 'fangzi', '2016-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS69763843', '山口結翔', 1, '+86 20-349-0544', 1, '281833222131631455', '中国广州市天河区天河路938号27楼', '1993-02-16', 0, 0, 'yamyuito7', '2010-06-04', 'yamagyu', '2002-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS21054219', '高橋美緒', 1, '+86 157-3795-9409', 1, '376893037006139345', '中国东莞珊瑚路631号32号楼', '1998-03-05', 0, 0, 'miotakahashi', '2020-12-10', 'mio58', '2014-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS31744461', '太田聖子', 1, '+86 182-0405-9114', 1, '827875842275171814', '中国中山天河区大信商圈大信南路285号31室', '1998-04-24', 0, 0, 'seota1009', '2002-10-22', 'otaseiko', '2020-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS51396537', '蕭天樂', 1, '+81 90-0063-7127', 2, '760222166717379955', '日本札幌白石区菊水三条五丁目4番12号2号室', '1985-02-21', 0, 0, 'siutin', '2021-11-02', 'tinloksiu', '2010-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS41561485', '中森結翔', 0, '+86 141-0889-3296', 4, '468548271008048559', 'No.44 building, 843 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1996-08-06', 0, 0, 'nyui', '2005-06-15', 'yuinakamori', '2002-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS32792112', '方惠妹', 1, '+1 330-977-1349', 3, '462538595049411580', '985 Collier Road Suite 49, Akron, OH 44320, United States', '1985-02-20', 0, 0, 'fonghuimei', '2015-08-01', 'fonhuimei', '2000-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS85562177', 'Mark Ruiz', 1, '+81 90-9696-7153', 2, '161716295787529258', '4F, 13-3-20 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-07-08', 0, 0, 'ruizm', '2002-10-30', 'markruiz2002', '2019-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS72642672', '上田明菜', 0, '+81 52-782-0839', 3, '094261988899732577', '日本なごやし北区清水三丁目19番18号47階', '1998-09-15', 0, 0, 'uedaakin1207', '2019-07-18', 'akinued04', '2017-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS78755839', '藍慧琳', 1, '+81 70-4068-0733', 0, '607190282336106464', '日本おおさかし東住吉区東田辺三丁目27番14号13号室', '1994-05-27', 0, 0, 'lamwailam', '2011-11-09', 'lamwa', '2006-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS92510297', '龚宇宁', 1, '+1 718-933-6518', 3, '004681271000382120', '118 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1992-07-05', 0, 0, 'yugong', '2011-01-13', 'yuning97', '2006-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS87694404', '中山陽菜', 1, '+44 5625 373898', 4, '696559937566809947', 'Block 39, 139 Hanover St, Liverpool, L1 4AF, United Kingdom', '1991-09-06', 0, 0, 'nakayh618', '2008-09-10', 'nakahina65', '2000-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS85191342', 'Grace Richardson', 0, '+86 191-6979-0175', 2, '615540850285889866', '中国深圳龙岗区学园一巷3号华润大厦45室', '1998-05-24', 0, 0, 'gracrichardson04', '2006-07-16', 'gri5', '2008-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS49004609', 'Sylvia Griffin', 0, '+44 7013 371545', 3, '621790059830408258', 'Block 50, 647 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1985-07-28', 0, 0, 'griffinsylvia', '2007-06-28', 'grifsy', '2008-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS02978147', '冯嘉伦', 1, '+44 5777 425499', 3, '761736068190347535', 'No.42 Main building, 683 Redfern St, Liverpool, L20 8JB, United Kingdom', '1988-04-09', 0, 0, 'fej', '2020-12-07', 'fjialun912', '2015-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS84336749', 'Allen Henderson', 1, '+81 11-398-5522', 1, '936079766587904358', '27F, 6-1-20, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-03-17', 0, 0, 'alhe', '2017-09-08', 'allen120', '2004-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS82923605', '原舞', 0, '+86 190-7185-7436', 1, '462968751710288603', '中国北京市西城区复兴门内大街606号华润大厦8室', '1998-03-14', 0, 0, 'mah921', '2017-12-26', 'mahara504', '2015-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS57964529', 'John Phillips', 0, '+81 90-7089-7699', 2, '081384999620394551', '日本ならし西大寺赤田町一丁目7番10号29号室', '1998-04-23', 0, 0, 'philljohn', '2003-01-03', 'pjohn', '2020-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS74397537', 'Josephine Hicks', 0, '+44 5798 610557', 3, '734461146735628127', 'Unit 25, Oxford Eco Centre, 939 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1994-06-23', 0, 0, 'hicksjosephine', '2006-01-29', 'josehicks', '2017-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS41533279', '马子韬', 1, '+86 194-6996-1133', 0, '119652881653218737', '中国北京市海淀区清河中街68号121号19栋', '1998-02-11', 0, 0, 'mazitao', '2007-09-23', 'mazitao', '2021-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS65420596', '黎安琪', 1, '+81 80-7917-4903', 2, '761254921226524939', '日本なごやし熱田区千年二丁目5番1号38階', '1994-06-16', 0, 0, 'ali', '2017-03-01', 'lanq4', '2003-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS44517165', '陳國榮', 1, '+81 11-865-3076', 1, '047001926776748696', '日本札幌豊平区豊平三条十三丁目3番12号22階', '1993-10-31', 0, 0, 'chankw', '2005-01-12', 'ckwokwing', '2005-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS31035355', '謝家輝', 0, '+44 (20) 2568 9483', 4, '607288882753769190', 'Block 17, 99 Regent Street, London, W1B 2LX, United Kingdom', '1998-06-03', 0, 0, 'kafai4', '2017-09-15', 'tse7', '2011-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS65307404', '翁裕玲', 1, '+86 21-445-4607', 2, '275891731056774906', 'Room 4, CR Building, 57 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-09-01', 0, 0, 'yung47', '2007-12-29', 'yyl3', '2009-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS19266590', '赵宇宁', 0, '+86 148-5886-8030', 3, '787368073364756575', 'No.31 building, 737 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1992-04-01', 0, 0, 'zhyun', '2009-08-20', 'zyun', '2013-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS60894743', '木村美咲', 0, '+86 171-9714-6395', 3, '533013714197752211', '中国东莞珊瑚路980号33栋', '1988-09-17', 0, 0, 'kimuramisaki', '2010-11-20', 'kimura612', '2006-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS19587195', '何晓明', 1, '+86 769-329-7347', 3, '377020753323350069', '中国东莞环区南街二巷937号3楼', '1985-10-22', 0, 0, 'hxiaoming', '2007-12-23', 'hexia1', '2019-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS44915699', 'Dorothy Phillips', 0, '+86 133-1767-0649', 4, '048052963349763593', 'No.39 building, 243 Middle Huaihai Road, Huangpu District, Shanghai, China', '1988-04-20', 0, 0, 'phillipsd12', '2003-08-22', 'phillips2', '2004-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS26895206', '王秀英', 1, '+86 20-8902-7160', 1, '046970504416458408', 'Room 39, 642 Jiangnan West Road, Haizhu District, Guangzhou, China', '1994-12-06', 0, 0, 'wx77', '2014-12-04', 'xiuying5', '2003-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS97030529', '安藤海斗', 1, '+86 178-5091-7309', 2, '541384418364000815', 'Room 16, CR Building, 789 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1993-08-02', 0, 0, 'andok8', '2000-11-05', 'kaitoando', '2014-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS39920550', '田中樹', 0, '+44 7010 057685', 2, '362666665082233765', 'Block 7, 648 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1996-06-04', 0, 0, 'tanaka14', '2018-01-28', 'itsukitanaka', '2017-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS89234026', '朱詩涵', 1, '+81 74-648-8595', 2, '603611164914321660', 'Rm. 48, 6 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1993-12-23', 0, 0, 'zhushihan', '2012-03-11', 'szhu', '2016-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS51899717', 'Steven Campbell', 1, '+1 330-944-2226', 2, '451386930176558993', '183 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1996-08-14', 0, 0, 'stevencampbell2', '2015-08-12', 'steven316', '2000-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS95715929', '周麗欣', 1, '+86 21-834-5345', 0, '393554705286587634', 'Room 8, CR Building, 298 Middle Huaihai Road, Huangpu District, Shanghai, China', '1991-09-14', 0, 0, 'laiyanchow6', '2012-12-31', 'chow83', '2017-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS45250271', '梁青雲', 0, '+86 154-7214-5511', 4, '005747940988853297', 'No.9 building, 46 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1993-09-05', 0, 0, 'chingwanleung', '2000-12-11', 'cwl', '2006-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS53280442', '菅原明菜', 0, '+86 134-4641-3049', 0, '550953110316136874', '中国东莞东泰五街530号11栋', '1990-02-01', 0, 0, 'sugawaraakina', '2006-03-06', 'sugawaraa10', '2019-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS192418612686', '苗家玲', 1, '+81 70-7182-1557', 1, '890556630430423297', '23-kai, 5-19-3 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1991-09-18', 0, 0, 'klmiu1963', '2002-07-26', 'mikl409', '2021-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS954836839346', '橋本葵', 0, '+1 312-116-0724', 3, '546781847575234691', '256 Pedway Suite 20, Chicago, IL 60601, United States', '1996-05-04', 0, 0, 'haoi', '2007-12-24', 'aoi1', '2006-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS184777112086', 'Jesse Gordon', 1, '+81 80-7733-0122', 1, '514109695769008903', '日本ならし大和郡山市本庄町一丁目1番8号19号室', '1987-09-29', 0, 0, 'goj', '2017-12-04', 'gordonjesse', '2002-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS620795910589', '村上詩乃', 0, '+1 614-901-3518', 4, '285900986686186269', '644 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1994-03-10', 0, 0, 'murakamis1958', '2002-10-10', 'murash', '2001-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS815706629408', '黎家明', 0, '+86 10-567-7243', 3, '308909849013019564', '中国北京市东城区东单王府井东街492号华润大厦50室', '1985-11-27', 0, 0, 'lai51', '2018-09-20', 'kaming93', '2008-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS362599701985', '佐野陽菜', 0, '+86 133-6913-9249', 2, '125374204946054292', '中国上海市浦东新区健祥路512号7栋', '1990-04-19', 0, 0, 'hsano1230', '2004-05-31', 'sahina', '2014-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS086870278849', '邵玲玲', 1, '+81 3-0844-5869', 2, '636458357705612753', 'Rm. 46, 5-2-9 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1986-04-16', 0, 0, 'linglings502', '2011-12-02', 'llsiu', '2012-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS493259610493', '胡秀英', 0, '+1 718-595-5262', 0, '715697029823950541', '171 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1991-02-13', 0, 0, 'huxiuying3', '2008-12-24', 'huxiuyi', '2008-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS795529904354', '中山海斗', 0, '+86 21-607-8195', 1, '292522463828555222', 'Room 8, 23 Jianxiang Rd, Pudong, Shanghai, China', '1989-11-01', 0, 0, 'nakaka1112', '2019-11-07', 'kaitonakay', '2010-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS227471386926', '佐々木美緒', 0, '+86 169-0373-3643', 3, '448494862712707651', '中国广州市白云区小坪东路324号4室', '1989-08-23', 0, 0, 'sasakimio', '2013-02-06', 'sasakimio', '2014-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS701190666606', 'Frederick Collins', 0, '+81 52-626-1822', 3, '586806520306086701', '日本なごやし北区楠味鋺三丁目80番3号28階', '1997-06-26', 0, 0, 'collins303', '2001-05-25', 'collifrede', '2002-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS044002870656', '蕭曉彤', 0, '+86 144-8688-2129', 2, '642852116990382240', '中国北京市朝阳区三里屯路247号8栋', '1997-10-30', 0, 0, 'htsiu77', '2001-09-11', 'siu1008', '2019-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS727203844252', '金子悠人', 0, '+86 28-0116-8877', 1, '134622901852780713', '中国成都市成华区双庆路5号36室', '1988-09-05', 0, 0, 'yk01', '2005-03-01', 'kaneko15', '2004-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS335807011191', '酒井蒼士', 0, '+86 755-4961-0977', 0, '446254197290151096', '42F, 1 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1989-02-14', 0, 0, 'aoshi9', '2010-04-10', 'sakaiaos6', '2008-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS961950051159', 'James Martin', 0, '+81 80-1358-5348', 2, '849197714741748823', '日本なごやし守山区瀬古東二丁目171番10号35階', '1985-01-19', 0, 0, 'martinjames1', '2001-07-14', 'martinjam1211', '2001-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS637294851811', '斉藤悠人', 1, '+1 614-726-9494', 2, '944962885612314061', '350 Wicklow Road Suite 50, Columbus, GA 43204, United States', '1986-08-14', 0, 0, 'yuto6', '2019-10-04', 'yutosaito', '2004-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS338820366111', 'Peggy Cooper', 0, '+86 150-7308-2498', 3, '797323226529597896', 'No.32 building, 380 Jingtian East 1st St, Futian District, Shenzhen, China', '1986-03-05', 0, 0, 'peggyc', '2014-01-20', 'peggcooper209', '2005-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS779276193649', 'Gary Rivera', 1, '+81 52-492-7806', 4, '817262041862854796', '日本なごやし熱田区千年二丁目5番4号23階', '1986-03-13', 0, 0, 'garyrivera', '2000-10-09', 'rivera12', '2008-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS416697717657', 'Anne Perry', 1, '+81 74-341-2681', 1, '094294672478812177', '25F, 1-7-5 Saidaiji Akodacho, Nara, Japan', '1992-10-19', 0, 0, 'perann7', '2010-09-12', 'anp', '2003-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS930384921679', '楊思妤', 1, '+86 177-5276-0918', 4, '826623644043383369', '5F, 867 East Wangfujing Street, Dongcheng District , Beijing, China', '1996-03-06', 0, 0, 'szeyuy', '2019-04-10', 'szeyuyeung', '2015-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS321340852425', 'Kevin Robertson', 1, '+81 70-0632-0121', 0, '819344817494056906', '1F, 3-9-4 Gakuenminami, Nara, Japan', '1987-02-27', 0, 0, 'robertsonkevin604', '2005-06-16', 'roberke1231', '2011-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS918617377189', 'Marie Jimenez', 1, '+86 28-0155-7323', 2, '482251954726306591', '中国成都市成华区玉双路6号666号28楼', '1996-11-05', 0, 0, 'jimenez916', '2000-09-23', 'jmarie', '2000-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS593770299900', '胡慧敏', 0, '+44 7850 167726', 3, '349124763834922517', 'Flat 13, 493 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1998-12-14', 0, 0, 'wwm', '2001-02-04', 'wmwu', '2006-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS539202282917', '王德華', 0, '+44 (151) 435 5977', 3, '171170130088828713', 'No.36 Main building, 377 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1993-10-09', 0, 0, 'wtakwah', '2020-09-11', 'takwah307', '2002-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS623696918647', '孙杰宏', 1, '+1 312-491-0756', 1, '857974177539407061', '662 Rush Street Apt 48, Chicago, IL 60611, United States', '1994-11-06', 0, 0, 'sunjiehong721', '2012-05-17', 'sunj10', '2012-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS134115817495', '中山樹', 1, '+81 66-250-5102', 4, '769318935094778477', '日本おおさかし西成区天神ノ森二丁目1番4号43階', '1998-11-17', 0, 0, 'in1011', '2014-11-25', 'nakayama41', '2011-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS026428262056', '江震南', 0, '+1 330-039-6486', 3, '348656558542484476', '18 Collier Road Suite 14, Akron, OH 44320, United States', '1993-06-06', 0, 0, 'zhennanjia88', '2019-12-03', 'jzhennan13', '2014-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS254157163260', '蘇家輝', 1, '+81 70-2825-8191', 1, '506814731244942910', 'Rm. 22, 5-4-3 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1987-12-30', 0, 0, 'sokf123', '2019-06-19', 'kafai1030', '2008-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS383568400219', '柴田花', 0, '+86 155-6227-2912', 0, '861046008484217654', '中国深圳福田区深南大道392号华润大厦40室', '1991-10-07', 0, 0, 'shibahana', '2002-09-27', 'shibata7', '2003-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS861378321961', '石睿', 1, '+81 80-7031-6732', 4, '111713522985111322', '日本東京港区東新橋一丁目5番8号32号室', '1998-08-10', 0, 0, 'shi718', '2016-08-25', 'ruis06', '2020-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS550304765914', 'Nicole Diaz', 0, '+81 52-834-4177', 0, '729610049343554155', '日本なごやし北区清水三丁目19番8号5階', '1995-10-05', 0, 0, 'ndia', '2011-06-07', 'nicole1129', '2015-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS172686026646', 'Marvin Henry', 1, '+81 52-506-1219', 2, '124686985726380301', '日本なごやし守山区瀬古東二丁目171番9号34階', '1998-11-24', 0, 0, 'marvin8', '2009-07-08', 'mahenry7', '2012-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS065652681391', '张秀英', 1, '+86 755-5415-5152', 2, '644496678023243341', '中国深圳福田区景田东一街941号32楼', '1997-07-06', 0, 0, 'xiuyingzhang1', '2001-10-17', 'zhangxiuy129', '2000-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS584333185207', 'Tiffany Powell', 0, '+86 152-0761-9358', 3, '939476785547291977', '中国深圳龙岗区学园一巷690号26楼', '1996-05-29', 0, 0, 'tpowe', '2001-08-08', 'tip', '2004-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS106402752796', 'Travis Porter', 1, '+86 162-6054-7921', 3, '423591717211335993', '中国深圳罗湖区蔡屋围深南东路52号3楼', '1992-03-07', 0, 0, 'porter72', '2003-03-02', 'travporter', '2021-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS898205024921', '谷明詩', 1, '+44 (116) 840 6030', 1, '840950079711427638', 'Flat 18, 262 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1996-12-19', 0, 0, 'mskoo7', '2002-06-04', 'koo1', '2009-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS285469873530', '小林百恵', 0, '+1 213-947-6573', 2, '444245921010753291', '740 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1997-05-13', 0, 0, 'km94', '2017-03-11', 'momoekobayashi2010', '2011-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS478851399075', '黄宇宁', 0, '+81 11-476-5354', 2, '630108238562073813', '日本札幌厚別区上野幌一条二丁目1番9号26号室', '1988-12-12', 0, 0, 'yuninghuang4', '2008-09-10', 'yuninghuang58', '2003-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS631896408811', '小山紗良', 0, '+1 838-991-2739', 0, '152047523934324280', '934 Broadway Apartment 2, Albany, NY 12207, United States', '1989-06-28', 0, 0, 'sarakoy1218', '2021-05-30', 'sarakoyama', '2016-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS671219377856', '武田紗良', 0, '+86 197-5823-5580', 1, '587424691873378080', '中国深圳龙岗区学园一巷6号14室', '1987-10-02', 0, 0, 'st210', '2010-02-07', 'saratakeda', '2018-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS184921891893', '菅原聖子', 0, '+81 90-7267-9677', 1, '072196447340946305', '13F, 15 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1986-10-05', 0, 0, 'seikos1119', '2000-04-25', 'sugse', '2018-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS400260151130', 'Mike Murray', 1, '+81 80-8736-0965', 0, '668567021536989239', '50F, 3-19-4 Shimizu, Kita Ward, Nagoya, Japan', '1998-12-19', 0, 0, 'mikemurra4', '2018-07-19', 'murmik6', '2014-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS279775650221', '李云熙', 0, '+44 5082 959838', 0, '720591589914323305', 'Block 41, 934 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1996-08-29', 0, 0, 'liyunxi', '2019-10-22', 'yli', '2016-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS007742306620', 'Heather Anderson', 0, '+81 11-466-1030', 2, '594140918250013276', '45F, 5-19-3 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1997-11-29', 0, 0, 'aheat1', '2016-04-02', 'ah7', '2008-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS662527164194', '區學友', 0, '+81 3-8946-4168', 3, '505449412170528859', '31-kai, 3-15-8 Ginza, Chuo-ku, Tokyo, Japan', '1996-10-08', 0, 0, 'au10', '2006-05-28', 'hyau', '2017-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS769571901652', 'Tina Patel', 1, '+1 213-161-8682', 3, '081849659396129440', '635 S Broadway Suite 25, Los Angeles, CA 90015, United States', '1992-08-23', 0, 0, 'patel5', '2005-08-07', 'ptina', '2006-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS761378056493', 'Kathryn Robertson', 0, '+86 10-589-0935', 0, '074805966479764806', '中国北京市西城区复兴门内大街93号华润大厦18室', '1996-08-04', 0, 0, 'kathryn1027', '2003-01-12', 'rk505', '2019-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS519337012738', '萬天樂', 0, '+86 132-1145-5783', 0, '004165927684437274', 'Room 31, CR Building, 999 Dong Zhi Men, Dongcheng District, Beijing, China', '1989-02-23', 0, 0, 'tlmeng', '2008-10-14', 'mengtl', '2010-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS211794490647', 'Alexander Ellis', 0, '+81 90-3832-7680', 1, '926878723745640134', '日本東京中央区銀座三丁目12番15号23階', '1992-11-21', 0, 0, 'alexaellis', '2010-03-18', 'ella', '2008-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS696320777382', 'Mario Schmidt', 1, '+86 28-6900-9710', 3, '023286536563410597', '中国成都市成华区双庆路853号16号楼', '1997-01-26', 0, 0, 'scmar76', '2009-08-06', 'schmidt2', '2011-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS572573755322', 'Thelma Kennedy', 1, '+81 90-1932-1162', 0, '730188097905285191', '日本おおさかし平野区加美東四丁目9番10号13号室', '1988-08-16', 0, 0, 'tk1956', '2013-02-03', 'thelken', '2006-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS238538133879', '周子韬', 1, '+86 187-9229-5702', 0, '353418656182723708', 'No.15 building, 238 Yueliu Rd, Fangshan District, Beijing, China', '1992-06-26', 0, 0, 'zzitao7', '2013-04-03', 'zhouz2', '2011-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS325843463096', '木村玲奈', 0, '+81 90-8307-8722', 3, '575555863165566320', '日本なごやし北区楠味鋺三丁目80番14号14号室', '1996-09-02', 0, 0, 'renakim', '2004-12-24', 'renakimura', '2013-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS653380532296', '葉慧嫻', 1, '+44 5724 100719', 4, '942203664665887909', 'Flat 11, 169 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1992-02-04', 0, 0, 'yipwh', '2016-02-11', 'yiwh', '2004-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS105745357534', '山崎拓哉', 1, '+86 143-2065-8769', 4, '463469278153819852', '中国广州市白云区机场路棠苑街五巷329号华润大厦18室', '1985-12-15', 0, 0, 'tayamazaki', '2003-11-30', 'takuyamazaki802', '2001-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS765080949996', '松本健太', 1, '+81 70-4436-3102', 0, '668185026760510254', '日本おおさかし平野区加美東四丁目9番3号47階', '1988-07-13', 0, 0, 'kentamatsumoto', '2021-10-14', 'matsumoto3', '2005-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS692421355146', '高田樹', 0, '+81 52-890-2057', 2, '112215983207806683', '日本なごやし守山区瀬古東二丁目171番6号38号室', '1986-04-17', 0, 0, 'ittakad', '2011-08-26', 'itstakada', '2006-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS399369492868', '余嘉伦', 1, '+86 182-2380-0409', 4, '587386770420173785', '中国北京市西城区西長安街259号30号楼', '1998-08-29', 0, 0, 'jialunyu729', '2021-09-19', 'jialun722', '2004-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS297868831871', '曾安娜', 1, '+86 769-3637-2360', 1, '052051643284647593', '27F, 294 Shanhu Rd, Dongguan, China', '1987-04-13', 0, 0, 'ontsang', '2017-06-06', 'ton8', '2001-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS055941087457', 'Stephanie Aguilar', 1, '+81 52-361-4430', 4, '662736310077206674', 'Rm. 43, 11 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-08-26', 0, 0, 'aguilarsteph6', '2009-12-19', 'aguistephanie', '2002-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS734717763592', '中山愛梨', 1, '+86 144-7894-0110', 3, '738573191620192807', '中国深圳罗湖区清水河一路537号48栋', '1997-06-25', 0, 0, 'naairi', '2014-07-21', 'airn', '2007-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS854547843450', '柴田凛', 1, '+44 5546 078765', 2, '313646881346278859', 'No.10 Main building, 163 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1994-12-23', 0, 0, 'rinshi', '2000-01-01', 'shibatari', '2016-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS217284552680', '邱霆鋒', 0, '+86 769-107-0965', 0, '657963207193033445', '中国东莞环区南街二巷245号30栋', '1997-11-07', 0, 0, 'tfy2', '2007-11-11', 'tfyau', '2011-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS476195181515', '韓梓晴', 0, '+81 90-2318-3977', 2, '733139006577566007', '日本東京渋谷区代々木二丁目3番14号36階', '1987-06-02', 0, 0, 'han8', '2000-09-06', 'htszching', '2021-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS591515244401', 'Crystal Woods', 0, '+44 7409 264683', 2, '496675840319230648', 'Flat 29, 993 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1997-05-26', 0, 0, 'wooc924', '2000-01-28', 'wcrystal4', '2021-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS723957992512', '林榮發', 0, '+86 132-6148-0422', 1, '420798647024587000', '17F, 258 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1998-01-22', 0, 0, 'wflam723', '2004-02-23', 'wfla', '2014-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS016471217414', '郝嘉伦', 1, '+86 157-6760-0531', 2, '509617702278051269', '中国成都市成华区二仙桥东三路710号34室', '1994-04-15', 0, 0, 'haojia', '2019-11-30', 'jiahao', '2019-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS563311924735', 'Brenda Davis', 0, '+86 21-4755-7791', 1, '440598266285571648', 'No.23 building, 794 Binchuan Rd, Minhang District, Shanghai, China', '1986-09-07', 0, 0, 'davisbren730', '2007-05-15', 'brenda8', '2016-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS488511223025', '邵安琪', 1, '+86 131-7657-7299', 1, '013580701753300111', '中国北京市朝阳区三里屯路286号21号楼', '1987-02-12', 0, 0, 'siu1118', '2017-06-21', 'oks', '2015-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS220263854873', '吉田紗良', 0, '+86 156-9268-0807', 3, '660963040616724253', '中国深圳龙岗区布吉镇西环路852号1室', '1992-03-16', 0, 0, 'sarayoshida57', '2020-10-22', 'yoshidasar1957', '2007-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS849781714322', '袁璐', 0, '+44 (161) 162 5196', 2, '678200782439278559', 'Flat 2, 981 Sackville St, Manchester, M1 3BB, United Kingdom', '1994-05-18', 0, 0, 'yuanl53', '2000-04-21', 'ylu', '2011-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS503015345566', 'Elizabeth Cole', 0, '+86 10-367-0423', 3, '796897878783013518', '中国北京市西城区复兴门内大街586号华润大厦4室', '1989-06-22', 0, 0, 'elizabeth10', '2009-10-07', 'coleeli9', '2000-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS388099277839', '中島翼', 1, '+81 70-9183-2504', 0, '325273900058013376', 'Rm. 9, 5-2-16 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1991-03-29', 0, 0, 'nakajimat5', '2000-04-17', 'tsubanak2007', '2008-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS472946154827', 'Richard Meyer', 0, '+81 80-4372-1705', 1, '767965764656698020', '12-kai, 4-9-4 Kamihigashi, Hirano Ward, Osaka, Japan', '1986-01-27', 0, 0, 'mrich', '2004-03-09', 'meyerr', '2009-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS876337965918', '湯天樂', 0, '+1 838-575-5716', 2, '987955654365824311', '143 State Street Apartment 3, Albany, NY 12203, United States', '1989-12-15', 0, 0, 'tongtinlok7', '2005-11-16', 'tongtinlok625', '2012-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS148866588740', '太田優奈', 1, '+44 (20) 4060 6216', 4, '186697794662604897', 'Flat 46, 855 Maddox Street, London, W1S 1PU, United Kingdom', '1989-12-18', 0, 0, 'ota2', '2009-09-18', 'otayun78', '2005-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS128240117600', '市川蒼士', 1, '+1 838-192-3230', 1, '584575401826831931', '13 Broadway Apartment 38, Albany, NY 12207, United States', '1994-04-16', 0, 0, 'ichikawa6', '2013-01-22', 'aoshi1206', '2018-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS143941759057', '严秀英', 0, '+81 80-8779-3468', 3, '267476536611788907', '日本東京渋谷区代々木二丁目3番18号18号室', '1995-09-18', 0, 0, 'xiuyan', '2021-07-08', 'xiuying208', '2017-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS712521593037', '葉詩君', 1, '+44 (161) 930 4074', 1, '803292173218030533', 'Flat 38, 42 Sackville St, Manchester, M1 3BB, United Kingdom', '1989-02-03', 0, 0, 'szekwanyip', '2015-06-23', 'yip209', '2007-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS493661255871', '沈子韬', 1, '+81 66-660-9066', 2, '586580272262293326', '日本おおさかし西成区出城一丁目1番2号21階', '1996-11-24', 0, 0, 'shzita', '2009-05-19', 'zitaosh', '2010-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS145862792881', '汤云熙', 1, '+1 212-416-5433', 3, '757218710588209386', '47 West Houston Street Apartment 20, New York, NY 10014, United States', '1997-07-10', 0, 0, 'tangyun1', '2010-12-13', 'tangyun2', '2002-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS279752335862', '阎璐', 0, '+86 159-2475-0985', 0, '559738925994098214', 'No.4 building, 426 Shanhu Rd, Dongguan, China', '1990-06-01', 0, 0, 'ylu', '2013-11-06', 'ylu', '2004-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS261626172188', 'Jeff Hall', 1, '+86 160-1632-8891', 0, '111345079757524467', '中国上海市浦东新区健祥路958号华润大厦7室', '1989-01-03', 0, 0, 'jeh10', '2007-09-02', 'hajeff4', '2020-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS710796638848', '崔子韬', 0, '+86 21-441-7987', 1, '901591389970709656', 'No.30 building, 84 Jianxiang Rd, Pudong, Shanghai, China', '1987-04-18', 0, 0, 'zcui', '2011-02-03', 'zitao1998', '2003-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS099221556074', '原瑛太', 1, '+86 173-2805-9712', 4, '339491421399623529', 'No.4 building, 326 Dong Zhi Men, Dongcheng District, Beijing, China', '1993-12-27', 0, 0, 'haei', '2017-07-30', 'eitahara603', '2016-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS148389446854', '野口愛梨', 0, '+81 70-6912-8477', 0, '372559301852823290', 'Rm. 5, 1-5-16, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1998-05-19', 0, 0, 'nairi10', '2014-07-17', 'airinoguc', '2003-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS648716185049', 'Leslie Rodriguez', 0, '+1 330-703-0236', 4, '938522648893513902', '653 Fern Street Suite 19, Akron, OH 44307, United States', '1997-02-27', 0, 0, 'roleslie7', '2017-12-04', 'rodriguez63', '2001-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS432543340401', '韩致远', 0, '+86 755-573-2596', 1, '323881189554715016', '中国深圳龙岗区布吉镇西环路700号46号楼', '1992-03-31', 0, 0, 'hanzh', '2015-10-13', 'zhiyhan', '2017-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS468836009017', '常子韬', 0, '+81 3-6143-8254', 4, '844253999136295695', '36F, 3-15-17 Ginza, Chuo-ku, Tokyo, Japan', '1987-07-23', 0, 0, 'changzitao', '2011-02-14', 'zch801', '2004-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS122135796247', '清水大地', 1, '+86 755-5412-0974', 1, '362203346342324404', 'Room 14, CR Building, 289 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-03-14', 0, 0, 'daichi3', '2004-10-10', 'shimizudaichi220', '2022-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS623303836558', '苗秀文', 1, '+81 80-1436-0887', 1, '567667747773085793', '45-kai, 3-15-10 Ginza, Chuo-ku, Tokyo, Japan', '1986-10-23', 0, 0, 'smm', '2003-12-28', 'saumanmiu', '2007-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS099716440805', 'Mildred Fernandez', 0, '+81 3-6717-5739', 1, '862434227232268565', '6F, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1991-03-04', 0, 0, 'fernandez9', '2005-07-15', 'mildredfern', '2008-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS976511874138', '劉惠敏', 1, '+86 191-5178-7832', 0, '256427633350864952', '中国北京市朝阳区三里屯路120号21号楼', '1994-06-13', 0, 0, 'lawm109', '2007-08-30', 'lauwm', '2021-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS506832061750', 'Anita Baker', 1, '+81 3-3662-9293', 3, '491016520559508812', '48-kai, 5-2-10 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-11-18', 0, 0, 'anitab911', '2007-01-23', 'anitaba', '2020-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS621363088153', '陆子韬', 1, '+1 330-764-9140', 2, '151875733771855949', '339 Collier Road 3rd Floor, Akron, OH 44320, United States', '1985-04-17', 0, 0, 'luzit', '2000-07-30', 'lzita9', '2007-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS466126247058', '胡天榮', 0, '+86 145-5045-2083', 4, '295205475155383727', '35F, 354 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-11-10', 0, 0, 'tinwingwu', '2001-10-24', 'tww79', '2001-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS553426012236', '白世榮', 0, '+81 52-493-2794', 3, '236557643439628180', '日本なごやし北区清水三丁目19番17号1階', '1996-01-27', 0, 0, 'swp912', '2017-05-02', 'saiwpa', '2013-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS157754136136', '雷榮發', 1, '+81 90-1561-0349', 3, '195029173748138823', '日本東京千代田区丸の内一丁目6番9号39号室', '1988-09-10', 0, 0, 'wingfat810', '2018-12-05', 'louiwf42', '2007-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS444788972574', '周祖兒', 0, '+44 (121) 893 2158', 1, '982063428722984740', 'Flat 8, 467 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1993-09-27', 0, 0, 'chowcy', '2007-10-05', 'chowchoyee', '2002-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS507760083490', 'Edith Bryant', 1, '+1 212-164-2447', 2, '323483065542950872', '746 Canal Street Apt 32, New York, NY 10013, United States', '1988-04-09', 0, 0, 'edithb', '2021-09-10', 'edithb', '2017-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS702442830991', '松井葵', 0, '+44 5664 026259', 4, '462789436839589924', 'Block 22, 785 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1990-05-29', 0, 0, 'matsuaoi', '2003-03-15', 'aoi122', '2020-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS663711273526', '雷云熙', 1, '+1 330-516-7814', 1, '895197742689238127', '90 Ridgewood Road Apt 9, Akron, OH 44321, United States', '1996-12-30', 0, 0, 'yunxilei', '2014-12-11', 'ylei', '2005-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS740932902716', '孫慧珊', 1, '+1 213-888-1505', 3, '700976290928438327', '889 Figueroa Street Apartment 32, Los Angeles, CA 90037, United States', '1986-04-24', 0, 0, 'hsuanwaisan', '2011-12-05', 'hsuanwa', '2006-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS643518882442', '野村大輔', 1, '+86 163-6758-7469', 1, '129397870499363224', 'Room 25, CR Building, 43 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-01-20', 0, 0, 'dan', '2011-04-22', 'nd13', '2019-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS502584561371', 'Earl Vasquez', 0, '+81 66-903-8688', 2, '549880983211673145', '日本おおさかし東住吉区東田辺三丁目27番15号49階', '1988-11-09', 0, 0, 'vasquez328', '2007-10-03', 'vasquezearl', '2005-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS868336025695', '姚子韬', 0, '+81 90-8036-5995', 4, '878579955798097369', '日本なごやし熱田区千年二丁目5番19号17号室', '1985-11-23', 0, 0, 'zitaoyao2', '2020-04-02', 'yaozitao1', '2014-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS882014213193', '杨岚', 0, '+44 (151) 858 2641', 3, '169991598828107158', 'Flat 50, 747 Redfern St, Liverpool, L20 8JB, United Kingdom', '1993-11-30', 0, 0, 'lya63', '2004-07-24', 'yangla', '2021-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS505853610043', '何富城', 0, '+86 144-2188-6140', 3, '993329249085154691', '21F, 208 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1996-05-08', 0, 0, 'hofs', '2020-07-08', 'hofushing1009', '2005-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS417572133406', '徐俊宇', 0, '+86 137-4527-1395', 2, '783245442028732516', 'Room 18, CR Building, 881 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1992-07-09', 0, 0, 'chunyu305', '2009-11-17', 'cyts', '2010-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS355206786543', '渡辺陽菜', 0, '+81 3-1329-8775', 3, '374064906977182875', '37-kai, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1986-07-12', 0, 0, 'sato99', '2019-02-03', 'satohina', '2008-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS287554461767', '蒋宇宁', 0, '+86 10-7560-1699', 4, '281513601329984385', 'No.34 building, 828 68 Qinghe Middle St, Haidian District, Beijing, China', '1988-11-07', 0, 0, 'jiangyun', '2010-01-14', 'jyun', '2005-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS930515550420', '何梓軒', 1, '+1 312-682-7823', 1, '044222824270199229', '491 North Michigan Ave Apartment 34, Chicago, IL 60611, United States', '1998-10-09', 0, 0, 'ho1972', '2014-07-30', 'hotszhin', '2013-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS949205264381', '藤田一輝', 1, '+81 3-6055-1403', 1, '564556440736991585', '日本東京品川区東五反田五丁目2番1号29階', '1994-12-30', 0, 0, 'fujiikk214', '2009-08-19', 'ikkifu', '2014-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS200837271703', '福田桜', 0, '+44 5723 227024', 3, '210259213619891884', 'Flat 12, 539 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1990-01-28', 0, 0, 'sakurfukud9', '2000-04-10', 'fukusakura', '2000-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS317533522974', '郭晓明', 0, '+44 (161) 078 1621', 0, '145243058820955698', 'No.8 Main building, 740 Sackville St, Manchester, M1 3BB, United Kingdom', '1985-02-28', 0, 0, 'gux', '2002-10-18', 'xiaoming717', '2014-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS922509047278', 'Matthew Roberts', 0, '+86 20-6775-9355', 3, '651862196671124990', '27F, 668 Xiaoping E Rd, Baiyun , Guangzhou, China', '1990-01-15', 0, 0, 'romat', '2010-04-25', 'matthewroberts', '2003-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS678214566384', 'Harry Sanders', 1, '+86 10-757-8778', 4, '030003184518889565', '中国北京市海淀区清河中街68号510号12号楼', '1998-09-26', 0, 0, 'sandharry2', '2010-11-12', 'sanders1984', '2019-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS595231794925', '史宇宁', 1, '+86 760-491-2274', 3, '188248584756960368', '中国中山天河区大信商圈大信南路145号5栋', '1998-12-17', 0, 0, 'shiyunin1950', '2000-06-12', 'shiy', '2010-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS517698629143', '蔣力申', 1, '+1 330-787-6861', 1, '369336461617866085', '239 Collier Road Suite 42, Akron, OH 44320, United States', '1998-10-12', 0, 0, 'chianliksun59', '2014-08-10', 'chiang1201', '2014-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS081530191909', '江惠敏', 1, '+1 330-418-6287', 1, '095313892065604264', '605 West Market Street Apartment 20, Akron, OH 44333, United States', '1986-06-17', 0, 0, 'waimankong', '2019-03-31', 'wmk', '2021-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS892049641082', '房裕玲', 1, '+1 614-243-7738', 1, '495477786136109747', '39 East Cooke Road Apt 31, Columbus, GA 43214, United States', '1987-01-22', 0, 0, 'yulingfong', '2002-05-16', 'ylfon', '2007-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS736938487660', '陈安琪', 1, '+81 11-678-3619', 2, '910863279781881825', '46F, 13-3-17 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1993-05-15', 0, 0, 'anqich52', '2009-12-15', 'anqi1102', '2002-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS168286100747', '石田美羽', 0, '+86 28-0659-8998', 1, '816788641272161352', 'Room 6, CR Building, 431 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1992-02-14', 0, 0, 'miuishida', '2009-04-29', 'mishi4', '2017-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS433296395727', '姚杰宏', 1, '+86 144-0835-4506', 1, '020831575170909576', 'Room 6, 660 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1996-03-04', 0, 0, 'yjiehong', '2002-05-27', 'jiyao', '2019-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS833180926417', '曹曉彤', 0, '+81 70-6256-7097', 1, '477692668917290157', '日本おおさかし平野区加美東四丁目9番15号48号室', '1988-07-31', 0, 0, 'chiutung', '2007-07-08', 'choht', '2010-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS422636397708', '尹家文', 0, '+86 194-7827-3114', 2, '519326261819440350', 'No.50 building, 337 Dong Zhi Men, Dongcheng District, Beijing, China', '1992-09-27', 0, 0, 'kamanyin', '2020-04-24', 'kmyin', '2000-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS258953097864', 'Thelma Griffin', 1, '+81 11-429-8643', 2, '166712206469626850', '7-kai, 2-1-10 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1986-11-10', 0, 0, 'thelmagriff8', '2015-02-23', 'thelma2015', '2007-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS830639799437', 'Tiffany Romero', 1, '+81 66-087-6001', 3, '593356592317543500', '6-kai, 3-27-6 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-06-21', 0, 0, 'tiffanyrom', '2013-02-21', 'tromero7', '2020-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS084066624634', 'Judith Mills', 0, '+81 90-7416-0395', 3, '475708027396889232', 'Rm. 23, 1 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-12-18', 0, 0, 'juditmills', '2020-09-18', 'milljudith7', '2017-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS238855016197', '湯富城', 1, '+81 52-323-2832', 0, '966190213870021413', '日本なごやし守山区瀬古東二丁目171番10号41号室', '1996-02-01', 0, 0, 'tonfs', '2018-06-01', 'tong1120', '2003-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS793204449028', '山口美咲', 1, '+81 74-572-0275', 2, '393645923239181171', '22F, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-06-29', 0, 0, 'misayamaguchi', '2019-06-14', 'ym7', '2010-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS676653340855', '邱志遠', 0, '+86 20-576-2454', 2, '855786477299888272', 'No.3 building, 731 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1986-03-13', 0, 0, 'cyyau1945', '2017-12-10', 'chiyuenyau7', '2021-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS628238501970', '陈秀英', 0, '+81 90-2325-6865', 3, '270391349559330367', '日本なごやし瑞穂区河岸町四丁目20番9号41階', '1990-01-23', 0, 0, 'xiuyingc', '2020-08-15', 'chex3', '2009-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS533729599966', '崔安琪', 1, '+81 11-816-0141', 1, '362380607222030512', '日本札幌白石区菊水三条五丁目2番8号40階', '1989-08-09', 0, 0, 'acu', '2003-10-05', 'anqicu216', '2009-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS207220968672', 'Juan Garza', 0, '+81 3-5585-0832', 1, '650697280159751018', 'Rm. 20, 1-6-19, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1998-09-12', 0, 0, 'garza8', '2018-02-20', 'jug4', '2007-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS786702086475', '彭宇宁', 0, '+81 80-3846-9425', 0, '862616886945052188', '日本おおさかし近江堂一丁目7番19号36階', '1993-04-19', 0, 0, 'pengyuning', '2015-02-27', 'yupeng', '2010-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS054737696806', '钱晓明', 0, '+81 52-881-2055', 4, '388064963935897340', '日本なごやし北区清水三丁目19番3号32階', '1987-03-20', 0, 0, 'qianxiaom', '2009-08-02', 'xqian', '2004-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS619480018711', '上野葉月', 1, '+1 212-755-2016', 1, '956039645901869412', '889 Wooster Street Apt 32, New York, NY 10012, United States', '1985-10-27', 0, 0, 'hazukiueno', '2019-02-20', 'uhazuki625', '2012-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS894138991703', '马秀英', 1, '+86 142-9013-7955', 1, '983147084177370310', 'Room 35, CR Building, 461 Binchuan Rd, Minhang District, Shanghai, China', '1997-01-19', 0, 0, 'maxiuyi8', '2018-02-27', 'mxi4', '2022-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS932338802950', '高小慧', 0, '+81 11-498-6170', 4, '609588432874415114', '日本札幌清田区真栄四条五丁目19番10号28号室', '1986-12-19', 0, 0, 'swkao', '2002-01-28', 'swkao', '2015-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS177447388706', 'Ellen Nguyen', 0, '+44 5056 109301', 4, '074531547855561377', 'Unit 30, Oxford Eco Centre, 970 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1986-06-05', 0, 0, 'nguyee', '2013-03-03', 'ellennguy', '2021-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS451610129260', 'Clifford Sanders', 1, '+1 838-796-3636', 0, '526482257453222267', '584 State Street Suite 12, Albany, NY 12203, United States', '1994-09-24', 0, 0, 'clifford7', '2015-08-28', 'sacliff10', '2020-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS170433085253', '赵杰宏', 1, '+81 3-2728-4278', 4, '727602779683521955', '日本東京品川区東五反田五丁目2番13号27階', '1996-10-14', 0, 0, 'jiehong423', '2017-10-17', 'jiezhao', '2001-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS835777378873', '杉山蒼士', 1, '+81 70-4408-3449', 3, '867733668397653256', '日本東京千代田区丸の内一丁目6番2号20階', '1995-03-28', 0, 0, 'sugiyamaaoshi', '2015-05-16', 'saoshi1940', '2012-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS717384437124', '杜慧珊', 0, '+1 212-623-5269', 2, '301339508224099954', '76 Bank Street 3rd Floor, New York, NY 10014, United States', '1991-12-15', 0, 0, 'waisan5', '2012-03-02', 'waisan3', '2011-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS647643772073', 'Shawn Turner', 0, '+81 52-554-1808', 0, '036180313536756818', '日本なごやし瑞穂区河岸町四丁目20番12号38号室', '1990-01-22', 0, 0, 'turnershawn', '2011-12-07', 'turnes69', '2008-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS379904670160', '許慧嫻', 0, '+86 10-3715-7727', 1, '114682839084684315', 'Room 6, CR Building, 852 Sanlitun Road, Chaoyang District, Beijing, China', '1988-09-27', 0, 0, 'huiwh619', '2012-03-09', 'whh6', '2006-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS758292090408', '區榮發', 0, '+86 760-840-7817', 3, '658726633457705993', 'Room 16, CR Building, 697 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1998-08-23', 0, 0, 'wfau10', '2021-01-12', 'auwf', '2009-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS750568961404', '石井大輔', 0, '+44 5248 659174', 3, '717258113801195052', 'Block 34, 517 Mosley St, Manchester, M2 3AQ, United Kingdom', '1990-03-22', 0, 0, 'isdai', '2019-02-06', 'ishiida', '2001-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS802545798822', 'Victor Reed', 1, '+86 194-1658-5863', 4, '945171618451155579', 'No.28 building, 53 Sanlitun Road, Chaoyang District, Beijing, China', '1995-10-16', 0, 0, 'victorree', '2009-07-10', 'victor59', '2006-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS982282873292', '孟岚', 0, '+86 755-227-2068', 1, '256026854193136500', 'No.23 building, 696 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1991-08-15', 0, 0, 'lanm7', '2003-12-08', 'lan512', '2014-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS319099593811', '小川湊', 1, '+81 52-824-7165', 1, '904955687151298145', '日本なごやし北区楠味鋺三丁目80番2号21階', '1995-02-25', 0, 0, 'ogamina', '2001-06-14', 'ogawa2017', '2004-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS764337491518', '大野光', 1, '+1 330-945-3397', 3, '631679163303661030', '986 Fern Street Suite 2, Akron, OH 44307, United States', '1991-06-29', 0, 0, 'ono809', '2004-11-18', 'ho1203', '2012-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS610529193363', '汪杰倫', 1, '+81 70-0865-6832', 0, '053525055488434649', '日本なごやし北区楠味鋺三丁目80番13号16階', '1991-12-15', 0, 0, 'chwo', '2000-09-18', 'chiehlunwong1026', '2002-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS159957966134', '岡田七海', 0, '+81 70-6246-8590', 2, '391693282614619730', '日本東京品川区東五反田五丁目2番11号30階', '1996-02-23', 0, 0, 'nanami7', '2004-06-30', 'okadananami7', '2012-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS156978733495', '葉梓軒', 1, '+86 28-5670-1252', 1, '396642853141550700', '中国成都市成华区双庆路441号39号楼', '1986-02-16', 0, 0, 'tszhin9', '2009-08-11', 'thy919', '2015-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS044080502369', 'Judy Rice', 0, '+81 52-961-5477', 1, '349883918288785005', '9F, 12 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1991-10-05', 0, 0, 'juri', '2010-04-07', 'ricejud04', '2019-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS133679116663', '孙震南', 0, '+81 70-7747-4761', 3, '953901146848325529', '日本札幌豊平区豊平三条十三丁目3番12号50階', '1997-12-26', 0, 0, 'zsun', '2012-10-23', 'sunzhennan5', '2000-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS384119260394', '史詩涵', 1, '+44 5116 263273', 4, '030334275635480336', 'Block 27, 714 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1987-07-20', 0, 0, 'shihanshi14', '2000-11-20', 'shihan701', '2005-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS884398473942', 'Alan King', 1, '+44 5196 332424', 1, '870502402188106773', 'Flat 39, 773 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1990-03-10', 0, 0, 'king79', '2002-08-09', 'kina', '2019-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS725513521948', 'Paula Green', 1, '+86 760-593-5106', 2, '456494318636427122', '中国中山紫马岭商圈中山五路796号7楼', '1986-03-25', 0, 0, 'pag218', '2000-07-09', 'pgr', '2011-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS192600838694', 'Norma Jenkins', 1, '+1 614-124-3250', 1, '385877524379588329', '961 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1993-09-01', 0, 0, 'normajen', '2005-11-01', 'norma1', '2010-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS891992883685', '廖浩然', 1, '+44 (1865) 37 8926', 2, '932423843477823287', 'Block 15, 765 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1985-02-01', 0, 0, 'liaohoyin9', '2001-12-23', 'liaohoyin', '2015-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS109630174555', '陳惠妹', 1, '+86 164-3794-2805', 2, '466035851588567442', '中国深圳罗湖区田贝一路613号华润大厦30室', '1993-04-22', 0, 0, 'chhuimei409', '2007-09-27', 'chanhm', '2002-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS609307970655', '藤原美緒', 1, '+86 760-1456-2491', 0, '591648975463777712', 'No.11 building, 63 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1993-05-28', 0, 0, 'fumi', '2007-07-02', 'mifujiwara', '2019-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS366688012016', '熊睿', 0, '+1 330-578-4574', 4, '416364232391998798', '380 Collier Road Apt 12, Akron, OH 44320, United States', '1994-02-22', 0, 0, 'rx71', '2000-02-04', 'rui5', '2013-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS200842870602', '清水桜', 1, '+44 7894 814684', 3, '117880786162757936', 'No.22 Main building, 69 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1987-12-12', 0, 0, 'shimizusakura', '2008-01-23', 'sakurashimizu', '2018-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS388638128077', '钟子异', 0, '+44 (161) 900 0582', 1, '262157191586760637', 'Flat 42, 272 Portland St, Manchester, M1 3LA, United Kingdom', '1987-08-12', 0, 0, 'ziyizhon1970', '2007-08-19', 'ziyi9', '2010-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS555022711516', '田德華', 0, '+86 28-788-3640', 1, '123298251899915250', '中国成都市成华区玉双路6号109号华润大厦34室', '1985-08-06', 0, 0, 'takwahtin', '2017-03-18', 'tintw', '2007-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS793043108679', 'Louis Mitchell', 0, '+86 175-4856-6979', 3, '113846453674461826', '1F, 391 Kengmei 15th Alley, Dongguan, China', '1989-08-12', 0, 0, 'louismitchell1978', '2018-10-06', 'mloui', '2000-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS209280774984', 'Martha Rogers', 1, '+86 157-8486-8107', 3, '184972533795333587', '中国北京市东城区东单王府井东街104号6号楼', '1995-12-07', 0, 0, 'maro', '2012-12-13', 'mr59', '2019-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS086626530898', '尹致远', 0, '+81 74-122-9586', 0, '586921430462222948', '49F, 3-9-17 Gakuenminami, Nara, Japan', '1985-04-23', 0, 0, 'yizhiyuan', '2006-05-28', 'yinzhiyuan129', '2016-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS571734156848', 'Kathryn Rice', 1, '+81 90-3219-0585', 1, '099794894194700097', '日本東京港区東新橋一丁目5番3号13階', '1990-07-20', 0, 0, 'ricekathryn', '2020-05-11', 'ricekat', '2017-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS006817942124', '文國明', 1, '+81 52-322-0529', 4, '095877854819065884', 'Rm. 9, 3-19-12 Shimizu, Kita Ward, Nagoya, Japan', '1999-02-20', 0, 0, 'kmman', '2009-10-10', 'mkm114', '2019-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS771619654905', '徐玲玲', 0, '+86 187-9582-4005', 4, '066599035034476365', '中国中山天河区大信商圈大信南路816号9室', '1995-02-02', 0, 0, 'linglingtsui', '2020-07-23', 'tsui49', '2007-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS509376770432', '邓安琪', 0, '+1 614-683-1446', 1, '033053358659899889', '398 Diplomacy Drive Suite 25, Columbus, GA 43228, United States', '1996-08-31', 0, 0, 'anqdeng', '2011-06-27', 'deanqi', '2001-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS807921329785', '西村海斗', 1, '+86 194-2895-8266', 1, '415747092623940988', 'No.15 building, 903 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1985-02-09', 0, 0, 'nka318', '2001-04-21', 'nishimura77', '2000-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS462975326373', 'Kathleen Morales', 0, '+81 74-797-7221', 2, '367292833340637549', '日本ならし大和郡山市本庄町一丁目1番10号26階', '1991-09-16', 0, 0, 'morales92', '2020-01-10', 'kmor', '2010-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS764363002841', '叶云熙', 1, '+81 52-873-6731', 3, '900158028314177964', 'Rm. 4, 2 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-10-11', 0, 0, 'yy4', '2009-12-22', 'yeyunxi', '2007-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS231312298869', 'Julie Lewis', 1, '+1 213-191-3438', 0, '217744428509220153', '893 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1986-07-28', 0, 0, 'jl109', '2015-05-09', 'lewis513', '2021-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS244931978402', '苗裕玲', 1, '+81 80-8220-6475', 0, '891785956112643330', '27-kai, 2-1-19 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-05-23', 0, 0, 'miyuli', '2021-02-27', 'miu905', '2001-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS766312138944', '沈子韬', 0, '+86 139-2942-9621', 2, '785172807303732375', 'No.16 building, 673 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-03-12', 0, 0, 'zitaoshen02', '2002-01-30', 'shen707', '2009-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS499830935342', '何發', 0, '+81 66-046-3321', 1, '401080360239956705', '日本おおさかし近江堂一丁目7番6号47号室', '1988-06-07', 0, 0, 'hofat302', '2018-10-28', 'hofat', '2019-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS609033906018', 'Micheal Cruz', 1, '+81 52-197-0936', 1, '964443129575524558', '日本なごやし北区楠味鋺三丁目80番10号50号室', '1997-01-06', 0, 0, 'cruzmi', '2005-11-30', 'cruz9', '2013-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS970058413225', 'Marilyn Rose', 0, '+86 755-246-8179', 0, '120771188856279506', '中国深圳福田区景田东一街752号27栋', '1992-09-02', 0, 0, 'rose1', '2021-10-19', 'marilynrose', '2010-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS552424768643', 'Tracy Henry', 0, '+86 10-547-4562', 3, '702616044838570570', 'Room 23, CR Building, 648 Sanlitun Road, Chaoyang District, Beijing, China', '1994-11-29', 0, 0, 'henrytracy1', '2006-10-16', 'tracy6', '2004-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS186864590478', 'Edward Jordan', 1, '+81 90-6944-6435', 4, '050503797309276483', '22-kai, 1-6-4, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1991-07-01', 0, 0, 'jordae3', '2005-01-07', 'jordane', '2014-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS398895543963', 'Lillian Chavez', 1, '+81 80-2879-8973', 2, '454290769287904810', '日本札幌清田区真栄四条五丁目19番19号6階', '1996-11-07', 0, 0, 'cli90', '2017-05-07', 'lillchavez', '2009-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS071983603528', '谭晓明', 0, '+86 28-1150-6087', 3, '878492690954143293', '中国成都市成华区二仙桥东三路116号5栋', '1985-01-21', 0, 0, 'tanxiaoming422', '2011-08-25', 'xiaomingt96', '2005-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS952336413999', '高橋瑛太', 1, '+86 192-4238-4304', 2, '573825546339816995', 'Room 21, 747 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1992-11-18', 0, 0, 'taeit', '2012-10-08', 'eitatakah', '2007-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS799666307483', 'Bernard Hayes', 0, '+81 70-7995-1744', 1, '722892973004081091', '日本札幌白石区菊水三条五丁目2番3号1階', '1995-11-16', 0, 0, 'bernardh', '2018-01-19', 'hayesbe91', '2019-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS259647202737', '斎藤聖子', 1, '+1 614-281-9246', 3, '300785723885750719', '449 Wicklow Road Apartment 17, Columbus, GA 43204, United States', '1995-07-19', 0, 0, 'saitose', '2015-12-18', 'saito4', '2004-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS162021237331', '曹致远', 0, '+44 (1223) 61 9192', 3, '603212275446929862', 'Flat 48, 584 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1995-11-22', 0, 0, 'caozhiyuan1977', '2012-01-12', 'caozhiyuan309', '2019-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS202404461670', '钟子韬', 0, '+86 168-0477-8177', 1, '610577804817443831', '中国广州市越秀区中山二路970号37栋', '1995-01-23', 0, 0, 'zhonzita', '2015-05-10', 'zhongzit9', '2013-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS967139069276', '韓世榮', 0, '+44 (1223) 12 0673', 4, '421957509011818445', 'Unit 48, Oxford Eco Centre, 590 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1998-01-23', 0, 0, 'saiwinghan', '2005-01-19', 'han723', '2018-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS877387279550', '成德華', 0, '+86 142-1210-9878', 1, '076198247662337134', 'No.48 building, 423 Sanlitun Road, Chaoyang District, Beijing, China', '1996-04-25', 0, 0, 'twshi408', '2013-09-23', 'takwah7', '2008-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS309668012701', 'Grace Owens', 0, '+81 80-9274-1579', 0, '301256371280862521', '日本札幌豊平区豊平三条十三丁目3番6号49階', '1992-01-12', 0, 0, 'owgrace', '2000-10-09', 'graceowens', '2021-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS865103534616', '房青雲', 0, '+86 168-6480-6264', 1, '485195600889515252', '中国东莞东泰五街325号43栋', '1996-07-15', 0, 0, 'chingwan515', '2007-02-12', 'chingwan10', '2010-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS903008376672', '佐野美羽', 0, '+44 7196 105452', 2, '676470046057540294', 'Flat 11, 821 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1996-01-27', 0, 0, 'miusano', '2006-04-10', 'sanm', '2011-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS363543579721', '車俊宇', 0, '+81 66-650-4878', 3, '442764885829267971', '日本おおさかし東住吉区東田辺三丁目27番16号19階', '1987-04-14', 0, 0, 'chunyuch', '2001-06-19', 'ccy', '2010-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS790318165568', 'Clifford Vargas', 0, '+44 (1223) 17 8097', 1, '070085096288745972', 'Block 21, 28 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1994-05-16', 0, 0, 'cliffordv', '2005-12-17', 'vargas2', '2019-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS771839062279', 'Kim Cox', 0, '+81 11-577-2742', 0, '350567494370455471', '日本札幌白石区菊水三条五丁目4番7号14階', '1991-03-19', 0, 0, 'cox222', '2006-09-12', 'kimcox', '2007-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS863188735893', '原田陽菜', 0, '+1 213-391-5832', 2, '133528405063459205', '224 Alameda Street Apt 14, Los Angeles, CA 90002, United States', '1996-01-02', 0, 0, 'hharada', '2000-05-24', 'hinaharad', '2010-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS914992555144', '胡國榮', 0, '+44 7222 040640', 3, '854128014281239226', 'Flat 18, 535 Hanover St, Liverpool, L1 4AF, United Kingdom', '1997-01-04', 0, 0, 'kwokwing1947', '2009-09-27', 'wukwokw1001', '2006-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS706973314155', '黄秀英', 0, '+81 52-240-5724', 2, '017136344616674500', '7-kai, 16 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-03-09', 0, 0, 'huangx', '2017-10-19', 'hux', '2009-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS806170228602', '马安琪', 0, '+86 179-4330-8647', 1, '969950568101093210', '42F, 376 Xiaoping E Rd, Baiyun , Guangzhou, China', '1992-05-26', 0, 0, 'maanqi51', '2016-06-02', 'anqma', '2018-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS275138055001', '羅國榮', 1, '+1 614-275-4903', 2, '612100260563585827', '410 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1996-06-11', 0, 0, 'kwokwinglo', '2020-04-22', 'kwokwinglo', '2003-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS324504355421', '長谷川陽太', 1, '+86 187-1015-0865', 2, '182926747128683965', '中国成都市成华区玉双路6号106号21栋', '1985-06-14', 0, 0, 'yotahas', '2004-08-30', 'hasegawa1011', '2021-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS078061506940', 'Ellen Lee', 1, '+81 90-9085-5387', 3, '775651789749687190', '日本なごやし熱田区千年二丁目5番4号13階', '1987-08-05', 0, 0, 'lee64', '2008-01-11', 'leeellen1', '2008-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS946954380690', '中川美緒', 1, '+81 3-3306-0408', 2, '012786132634472200', '日本東京中央区銀座三丁目12番1号4階', '1988-02-16', 0, 0, 'miona', '2020-05-01', 'mio56', '2013-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS394384495930', '田中舞', 0, '+81 3-0992-7218', 2, '886149821693609371', '日本東京品川区東五反田五丁目2番17号35階', '1989-12-18', 0, 0, 'tmai86', '2010-04-28', 'maitanaka1', '2009-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS906330795876', 'Gladys Moreno', 0, '+44 (1223) 68 0238', 0, '202682047999358943', 'Block 8, 549 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1985-11-10', 0, 0, 'morenoglady', '2012-06-10', 'gladys906', '2018-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS895434312029', '姚杰宏', 1, '+1 718-811-1702', 2, '992242064373220530', '232 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1994-10-25', 0, 0, 'jiehongyao8', '2010-12-17', 'yjiehong215', '2006-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS768317591821', 'Christina Nelson', 1, '+44 7334 376236', 2, '369926922754128372', 'No.38 Main building, 717 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1995-02-06', 0, 0, 'chrisnelson86', '2017-01-18', 'nec1212', '2011-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS025112890442', 'Brenda Moore', 1, '+86 10-3319-2802', 0, '440906086000923358', '中国北京市海淀区清河中街68号642号38栋', '1995-03-10', 0, 0, 'mbrend', '2000-09-14', 'brenda10', '2014-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS096795668447', '盧慧儀', 1, '+86 177-2890-8970', 1, '703272631902701696', 'Room 18, CR Building, 599 Jiangnan West Road, Haizhu District, Guangzhou, China', '1994-08-20', 0, 0, 'lowy621', '2009-04-16', 'lowy', '2005-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS570819384578', '姜學友', 1, '+1 312-773-3920', 1, '267546535059956419', '374 Pedway Apartment 19, Chicago, IL 60601, United States', '1998-08-03', 0, 0, 'hychan', '2004-01-20', 'hyc127', '2019-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS104639532466', '蔣榮發', 1, '+86 760-183-5638', 2, '493788414538314980', '5F, 81 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1985-12-31', 0, 0, 'wingfatchia', '2003-09-23', 'chiangwingfat815', '2006-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS141887228775', '郭頴思', 1, '+81 90-9831-0567', 1, '731295211304904329', 'Rm. 28, 1-5-4, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1993-12-22', 0, 0, 'kwokws', '2001-03-27', 'wingszekwok', '2013-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS292379462248', 'April Taylor', 1, '+81 74-473-1181', 0, '338731344674094149', '33-kai, 3-9-19 Gakuenminami, Nara, Japan', '1987-12-04', 0, 0, 'tapril', '2016-11-28', 'taylorap', '2022-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS715865743877', '竹内蓮', 0, '+86 20-6160-3735', 3, '380440401727004972', 'No.41 building, 907 Jiangnan West Road, Haizhu District, Guangzhou, China', '1994-11-15', 0, 0, 'tren', '2020-01-24', 'takere1', '2020-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS833905226989', '千葉葵', 0, '+1 213-373-2784', 1, '064317026584303188', '228 Sky Way Suite 2, Los Angeles, CA 90043, United States', '1997-07-22', 0, 0, 'aochiba', '2007-05-13', 'chao83', '2011-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS711150682042', '田國明', 1, '+81 66-943-3673', 3, '782977520933437905', '日本おおさかし平野区加美東四丁目9番19号41号室', '1998-01-23', 0, 0, 'kwokming3', '2007-02-04', 'kwokmtin', '2008-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS795866812344', '千葉樹', 0, '+86 755-7587-7342', 3, '690539025932209579', '中国深圳罗湖区清水河一路897号13楼', '1993-05-31', 0, 0, 'chibaitsuk', '2003-03-04', 'chibaitsuki', '2018-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS120490056441', '甘梓晴', 1, '+44 (1223) 53 7918', 4, '959405990083992602', 'No.50 Main building, 522 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1993-09-30', 0, 0, 'katszching8', '2008-01-20', 'tckam', '2013-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS141742925018', '佐野陸', 1, '+1 212-257-5175', 1, '303809808490714255', '446 Wooster Street 3rd Floor, New York, NY 10012, United States', '1997-04-12', 0, 0, 'rikusano2', '2001-02-09', 'sano7', '2008-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS600177800803', '佐野明菜', 0, '+44 (151) 362 3631', 0, '364534274380530191', 'Flat 42, 855 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1994-11-21', 0, 0, 'akinas', '2008-09-25', 'akisan', '2002-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS086257918969', '廖俊宇', 0, '+86 143-4093-7290', 2, '483392870792285797', 'No.46 building, 36 028 County Rd, Yanqing District, Beijing, China', '1996-09-22', 0, 0, 'liaochu', '2008-10-31', 'cyliao', '2000-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS396267566750', '小島凛', 0, '+81 80-8358-5415', 4, '374299050261077876', '日本東京港区東新橋一丁目5番10号22階', '1990-10-20', 0, 0, 'rinkoj', '2001-01-14', 'rink', '2006-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS578682062689', 'Pauline Rose', 0, '+44 5643 261572', 2, '097159317738888105', 'Block 7, 638 Park End St, Oxford, OX1 1JD, United Kingdom', '1999-02-20', 0, 0, 'paulinerose3', '2009-08-10', 'pauline10', '2006-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS338964088202', '萬家明', 1, '+44 (151) 606 4685', 3, '873117457318115971', 'Block 33, 46 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1985-04-12', 0, 0, 'kmmeng', '2019-09-06', 'kaming65', '2004-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS197219531247', 'Rose Gardner', 0, '+81 74-916-6208', 0, '952946094551494988', '44F, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1997-08-29', 0, 0, 'rosegardner', '2001-06-08', 'rosegardner', '2002-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS709701262485', '吳國明', 1, '+44 (151) 988 3079', 0, '084878994137113790', 'Block 46, 543 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1998-04-15', 0, 0, 'kwokming1956', '2010-05-27', 'ngkwokming3', '2015-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS525400592772', 'Wanda Gomez', 1, '+86 755-474-5898', 1, '991984499217628570', 'No.14 building, 552 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1995-04-24', 0, 0, 'wgomez', '2004-10-12', 'gwanda', '2021-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS173570808331', '新井悠人', 0, '+86 132-1830-4686', 0, '367135391216068444', '中国广州市白云区机场路棠苑街五巷818号华润大厦28室', '1988-03-02', 0, 0, 'araiyut', '2013-06-03', 'aryuto', '2015-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS695377256167', '斎藤陸', 1, '+86 755-048-9983', 2, '782082777045867159', '中国深圳罗湖区蔡屋围深南东路238号14楼', '1993-12-06', 0, 0, 'riksaito', '2021-10-18', 'srik', '2002-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS674722966032', '田岚', 0, '+86 140-0303-1104', 4, '620407763401970305', '中国中山紫马岭商圈中山五路880号华润大厦42室', '1992-03-13', 0, 0, 'lantian812', '2012-02-14', 'tilan', '2004-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS025240869931', '廖璐', 0, '+81 80-7116-4216', 2, '246954043711221999', '22F, 9 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-10-17', 0, 0, 'liaolu', '2000-12-08', 'lialu', '2013-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS364673295036', '田曉彤', 0, '+1 718-949-2636', 4, '167372039681124159', '402 Flatbush Ave Apt 22, Brooklyn, NY 11225, United States', '1993-03-18', 0, 0, 'hiututin9', '2015-12-04', 'hiutungtin', '2000-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS374900226942', 'Jeremy Munoz', 1, '+86 160-2388-6453', 2, '760932696926446521', 'No.11 building, 143 Huanqu South Street 2nd Alley, Dongguan, China', '1996-08-13', 0, 0, 'munozjeremy', '2017-06-26', 'jeremym', '2017-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS257882940413', '野口葉月', 0, '+1 718-931-3611', 1, '152223133411447202', '695 Nostrand Ave Apartment 41, Brooklyn, NY 11216, United States', '1995-05-21', 0, 0, 'hazun', '2016-06-13', 'hazunoguchi', '2016-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS053246913866', '方麗欣', 0, '+86 143-5514-0773', 0, '380762189249483347', '中国北京市西城区复兴门内大街230号50室', '1993-03-11', 0, 0, 'folai717', '2019-10-04', 'laiyf1976', '2010-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS350047632196', '中島陽太', 1, '+86 20-975-9119', 2, '307788524594628474', '中国广州市海珠区江南西路521号32室', '1996-03-07', 0, 0, 'nakajimayota1222', '2014-05-01', 'nakyot', '2003-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS681230042195', 'Jeffery Kelly', 1, '+86 21-3284-6886', 4, '876108004484903543', 'No.25 building, 323 Ganlan Rd, Pudong, Shanghai, China', '1991-01-13', 0, 0, 'kellyjeffery604', '2020-07-24', 'kellyjeffery', '2014-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS221797630992', '曹秀英', 0, '+81 52-626-1614', 2, '945479559299620569', 'Rm. 22, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1996-03-03', 0, 0, 'xiuying506', '2016-07-27', 'xiuyingcao', '2016-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS468044550123', 'Irene Hall', 0, '+86 170-1732-0111', 1, '079265097285169351', 'Room 15, 166 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1998-09-06', 0, 0, 'irenhall', '2003-09-25', 'ihal', '2000-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS736188647047', 'Ricky Schmidt', 1, '+44 (1865) 01 7293', 0, '664983887930386275', 'Flat 10, 855 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1994-07-13', 0, 0, 'rischmidt4', '2011-12-24', 'schmidt1994', '2005-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS190933889401', '中島湊', 1, '+1 312-330-5019', 4, '144414338364582053', '597 North Michigan Ave Apt 42, Chicago, IL 60611, United States', '1990-10-16', 0, 0, 'nakajima5', '2008-04-06', 'nakajimam', '2003-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS079445359231', '中野瑛太', 1, '+86 769-1848-5460', 3, '785631987102362948', '中国东莞坑美十五巷305号38楼', '1989-10-11', 0, 0, 'eitanakano318', '2005-06-30', 'nakanoei', '2001-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS659603114668', '尹心穎', 0, '+81 66-937-0491', 1, '330856273989974247', '日本おおさかし西成区出城一丁目1番16号41階', '1989-07-12', 0, 0, 'yin9', '2011-08-20', 'swyin06', '2013-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS351271464354', 'Laura Hayes', 0, '+86 20-459-8519', 2, '291307257185861368', '中国广州市天河区天河路334号35栋', '1995-10-13', 0, 0, 'hayeslaura1031', '2010-06-10', 'hl6', '2001-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS410101129174', 'Katherine Robertson', 0, '+81 3-0448-8269', 3, '093968972712350711', '日本東京中央区銀座三丁目12番16号17階', '1992-10-30', 0, 0, 'robertson5', '2011-01-24', 'robkatherine08', '2019-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS314113775073', '劉安娜', 1, '+81 90-4739-4665', 3, '090945998935047344', '日本ならし大和郡山市本庄町一丁目1番1号39階', '1996-02-28', 0, 0, 'onna405', '2013-08-17', 'lauon', '2000-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS389431126532', '向梓軒', 1, '+86 136-0122-2671', 2, '375276449173929473', '49F, 825 Binchuan Rd, Minhang District, Shanghai, China', '1989-12-26', 0, 0, 'tszhinheung', '2013-07-03', 'heutszhin', '2018-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS082111348544', 'Cynthia Grant', 1, '+44 7651 413815', 1, '628605098042690007', 'Flat 14, 710 Sackville St, Manchester, M1 3BB, United Kingdom', '1989-07-05', 0, 0, 'cynthiagrant2', '2015-11-04', 'grancynt', '2008-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS495161975539', '何祖兒', 0, '+86 146-8026-1303', 1, '691010146233358034', '中国东莞坑美十五巷73号1室', '1996-06-18', 0, 0, 'choyeeho63', '2002-11-11', 'ho221', '2004-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS666093067393', '西村美月', 0, '+86 131-9516-5822', 1, '512561255372789412', '中国深圳福田区深南大道446号2楼', '1986-07-06', 0, 0, 'mitsukinishi408', '2003-10-04', 'nishimura906', '2013-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS834377505390', '陶秀英', 0, '+44 7952 663528', 4, '937164386236758828', 'Block 46, 863 Sackville St, Manchester, M1 3BB, United Kingdom', '1996-08-07', 0, 0, 'taoxiuying2', '2014-04-26', 'tao3', '2000-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS763770929807', '许秀英', 0, '+44 7126 895098', 4, '919018093941185973', 'Unit 47, Oxford Eco Centre, 116 Park End St, Oxford, OX1 1JD, United Kingdom', '1992-08-12', 0, 0, 'xiuyingxu', '2007-09-20', 'xiuying302', '2011-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS496231112250', 'Travis Hamilton', 1, '+86 21-1788-5648', 1, '818883259997127155', 'No.36 building, 284 Middle Huaihai Road, Huangpu District, Shanghai, China', '1992-07-31', 0, 0, 'hamiltontra', '2000-12-22', 'hamiltontravi67', '2001-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS191219485460', '阎致远', 1, '+44 (151) 442 0434', 4, '761884275100165567', 'Flat 48, 530 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1990-07-26', 0, 0, 'zhiyuan7', '2008-06-14', 'yazhi', '2019-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS241153119662', '野村陽太', 1, '+1 330-926-1147', 1, '027350824403243686', '377 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1997-01-18', 0, 0, 'nomura2', '2010-10-24', 'yota62', '2020-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS141526152680', 'Mike Evans', 0, '+81 11-994-7215', 1, '813326318217192963', '30-kai, 5-19-11 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1998-08-21', 0, 0, 'mikevan', '2002-10-13', 'mikeevans', '2013-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS207982841304', '田中蒼士', 0, '+81 90-6982-6302', 2, '062634794362772661', '日本東京千代田区丸の内一丁目6番14号47階', '1986-02-17', 0, 0, 'aoshitanaka', '2017-12-13', 'aoshitanaka828', '2010-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS563416478912', '魏璐', 1, '+1 330-264-0393', 3, '445229351011732020', '192 West Market Street Apartment 26, Akron, OH 44333, United States', '1997-05-22', 0, 0, 'luw', '2009-01-14', 'luw', '2009-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS682186884085', '應梓軒', 0, '+44 (1223) 90 0081', 1, '375166140360875410', 'Unit 3, Oxford Eco Centre, 839 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1986-06-10', 0, 0, 'ytszhin', '2014-08-14', 'tszhin1991', '2008-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS430039734900', '福田光', 0, '+81 11-073-5581', 3, '384093932270121839', 'Rm. 27, 5-19-15 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1985-09-01', 0, 0, 'fukudahikaru', '2013-06-07', 'fhi', '2000-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS631599155950', 'Eddie Griffin', 1, '+81 70-6022-8598', 2, '012277386201305646', '50-kai, 3-19-4 Shimizu, Kita Ward, Nagoya, Japan', '1995-10-06', 0, 0, 'griffineddie', '2020-07-01', 'eddiegri', '2020-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS372715567640', '徐詩君', 1, '+81 80-8835-7472', 3, '643757676578089439', '日本ならし学園南三丁目9番11号38階', '1997-07-27', 0, 0, 'tsuisk', '2017-02-16', 'szekwantsui', '2020-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS526922935243', '韩岚', 1, '+1 718-126-0369', 3, '501439702737592088', '417 Flatbush Ave Apartment 48, Brooklyn, NY 11225, United States', '1992-11-11', 0, 0, 'halan', '2020-07-04', 'lanhan116', '2003-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS762359130504', '宣麗欣', 1, '+44 7925 091339', 2, '193587151226069297', 'Unit 34, Oxford Eco Centre, 144 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-08-01', 0, 0, 'hsuanlaiyan', '2006-06-22', 'laiyanhsua', '2020-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS163755926345', 'Debra Murray', 1, '+86 188-9849-9538', 1, '421859888337919315', 'No.3 building, No. 372, Shuangqing Rd, Chenghua District, Chengdu, China', '1987-01-12', 0, 0, 'murdebra', '2018-08-30', 'murrd', '2012-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS295667719512', 'Heather Russell', 0, '+86 28-358-5766', 0, '864052017687636972', '中国成都市成华区玉双路6号271号48栋', '1985-08-02', 0, 0, 'russell413', '2002-08-30', 'heather10', '2012-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS290010757052', '夏晓明', 1, '+1 213-426-1333', 1, '334293634076190009', '775 Alameda Street Apartment 27, Los Angeles, CA 90002, United States', '1988-09-06', 0, 0, 'xia19', '2016-08-07', 'xiaxiaoming7', '2014-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS317878940778', '劉頴璇', 1, '+81 70-0917-0317', 2, '340424416178539998', '日本東京品川区東五反田五丁目2番2号5号室', '1991-07-25', 0, 0, 'wsl', '2000-05-30', 'lauws', '2004-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS722312666570', 'Florence Stephens', 0, '+1 330-412-9163', 2, '519462434026121370', '976 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1998-07-10', 0, 0, 'fstephens', '2017-09-05', 'sflorence', '2013-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS275977073679', '田淑怡', 1, '+86 20-2895-7697', 0, '734872367706074567', '中国广州市白云区小坪东路395号40楼', '1996-06-11', 0, 0, 'sukyeeti', '2006-05-07', 'sukyee531', '2012-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS294725972486', 'Lee Gutierrez', 1, '+81 70-4248-3217', 3, '488279253563634496', '18-kai, 2-5-9 Chitose, Atsuta Ward, Nagoya, Japan', '1998-06-30', 0, 0, 'leegutierrez', '2009-09-18', 'gutierrezlee3', '2006-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS391790200187', 'Alexander Martin', 1, '+44 (161) 670 6510', 3, '286220693295538119', 'Flat 28, 336 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1995-08-16', 0, 0, 'alm1996', '2019-09-29', 'martin62', '2022-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS905759319657', 'Andrew Allen', 0, '+44 5663 162535', 1, '243045527621590517', 'Block 32, 466 Portland St, Manchester, M1 3LA, United Kingdom', '1986-11-27', 0, 0, 'aallen4', '2014-05-15', 'allen1994', '2010-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS659602909105', 'Luis Taylor', 0, '+44 5906 494583', 3, '949404853559994314', 'No.43 Main building, 304 Pollen Street, London, W1S 1NG, United Kingdom', '1998-12-29', 0, 0, 'taylol4', '2006-01-04', 'taylor94', '2004-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS863731841923', 'Bryan Harris', 0, '+81 66-570-0738', 3, '802977628482838267', '46-kai, 1-1-6 Deshiro, Nishinari Ward, Osaka, Japan', '1993-10-04', 0, 0, 'harbr', '2015-06-15', 'brharris', '2014-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS986238476062', '長谷川詩乃', 0, '+81 90-6021-4334', 2, '525735688836687855', '29F, 13-3-10 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-08-07', 0, 0, 'hasegawa5', '2017-09-07', 'shinoha', '2000-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS502825230300', '汪玲玲', 0, '+1 718-051-4677', 1, '836152095193745043', '337 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1988-09-07', 0, 0, 'llwo1123', '2008-11-19', 'linglingwong5', '2002-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS592323944025', 'Ernest Meyer', 0, '+44 5823 261123', 2, '583898127099641187', 'Flat 26, 777 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1988-06-19', 0, 0, 'meyere225', '2015-02-09', 'meyeernest', '2004-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS847712191805', '鄧世榮', 1, '+81 3-9580-9602', 3, '971517115848117340', '30F, 5-2-15 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1997-04-10', 0, 0, 'tang118', '2020-06-04', 'tang10', '2011-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS868148681127', '中村詩乃', 1, '+86 769-227-4721', 1, '931441259812386807', 'No.30 building, 902 Shanhu Rd, Dongguan, China', '1992-04-09', 0, 0, 'shin518', '2000-09-06', 'nakamura2012', '2010-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS130319794743', '曾志遠', 1, '+1 614-069-9459', 1, '132451036635145031', '142 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1986-06-18', 0, 0, 'tsangchiyuen', '2020-07-22', 'tsang4', '2021-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS147989820511', '潘岚', 1, '+81 52-985-2702', 2, '661744681965095759', '日本なごやし守山区瀬古東二丁目171番11号49階', '1997-12-13', 0, 0, 'panla1967', '2018-02-26', 'pl226', '2014-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS074124165709', '田朝偉', 0, '+81 74-686-2677', 1, '545672908039803316', '日本ならし学園南三丁目9番20号30階', '1985-01-11', 0, 0, 'tcw04', '2006-10-11', 'cwt1207', '2018-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS782099280386', '西村絢斗', 0, '+81 52-564-4384', 2, '237527431875634174', '30F, 2-5-1 Chitose, Atsuta Ward, Nagoya, Japan', '1990-07-01', 0, 0, 'an9', '2001-06-03', 'ayatonishimura6', '2009-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS091927992879', '岡田陽菜', 0, '+86 131-4445-2399', 3, '706889430871217562', 'Room 31, 653 028 County Rd, Yanqing District, Beijing, China', '1991-06-19', 0, 0, 'ohi', '2017-03-19', 'ohina', '2018-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS225138167012', '容頴璇', 0, '+81 66-935-8759', 4, '752704411349839276', '22-kai, 4-9-8 Kamihigashi, Hirano Ward, Osaka, Japan', '1996-05-11', 0, 0, 'wsyung', '2016-01-31', 'yungwing518', '2009-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS063681315000', '野村陽菜', 0, '+1 718-158-6577', 0, '616544291780820533', '411 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1994-03-02', 0, 0, 'nhina57', '2014-12-17', 'nhin4', '2009-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS595242831151', '文國權', 1, '+86 146-0511-8004', 0, '768736010310376476', '38F, 431 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1993-04-27', 0, 0, 'mankk', '2015-08-02', 'kwokman', '2019-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS063077822137', '張永權', 1, '+86 142-1132-1143', 3, '538214723727496456', '中国中山乐丰六路38号24栋', '1988-09-05', 0, 0, 'cheungwingkuen', '2001-05-22', 'cheung3', '2002-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS348629904434', '戴榮發', 1, '+86 21-104-9720', 2, '344967705226490194', 'Room 16, 300 Ganlan Rd, Pudong, Shanghai, China', '1993-06-09', 0, 0, 'wingfatdai', '2012-03-15', 'dawingfat', '2019-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS396793451399', '袁惠妹', 0, '+81 11-814-5000', 1, '353792157839450710', '25-kai, 2-1-14 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-01-07', 0, 0, 'yuenhuimei1028', '2012-09-16', 'yuenhm', '2014-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS922375441206', '丁嘉伦', 0, '+86 760-4044-1217', 3, '231433380584299492', '中国中山紫马岭商圈中山五路321号17栋', '1995-01-09', 0, 0, 'ding9', '2000-02-05', 'jialund', '2001-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS777819676609', '大塚大輔', 1, '+1 213-199-1122', 1, '268652007694025947', '33 Wall Street Suite 46, Los Angeles, CA 90003, United States', '1989-11-14', 0, 0, 'otda2', '2003-05-02', 'otsdaisu', '2020-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS566761803386', 'Thelma Jones', 1, '+86 760-269-4829', 4, '547694470416080675', '中国中山天河区大信商圈大信南路118号39栋', '1988-05-21', 0, 0, 'thelmj10', '2011-06-01', 'jonesthelma', '2021-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS328799312671', '馮發', 1, '+81 70-1211-3363', 1, '260326687412771959', '日本おおさかし西成区天神ノ森二丁目1番4号24階', '1989-02-04', 0, 0, 'ff10', '2017-02-06', 'fung5', '2007-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS530922943159', '甘梓軒', 0, '+81 90-1146-3609', 4, '162227856689183882', '日本東京品川区東五反田五丁目2番9号34階', '1987-08-10', 0, 0, 'tszhkam', '2006-06-24', 'kamth', '2015-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS394308159643', '尹安娜', 1, '+86 21-311-5188', 3, '867247208845658923', '中国上海市浦东新区橄榄路538号14栋', '1994-07-07', 0, 0, 'yinonna', '2007-02-20', 'ony5', '2021-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS415155200214', '張慧儀', 0, '+1 330-374-6241', 3, '256272838076442918', '991 West Market Street Apartment 40, Akron, OH 44333, United States', '1997-09-20', 0, 0, 'wacheung', '2006-09-11', 'cheunwy', '2009-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS549743450867', '薛惠敏', 0, '+1 718-352-4203', 1, '392348065256866087', '740 Flatbush Ave Suite 7, Brooklyn, NY 11225, United States', '1998-08-10', 0, 0, 'wmsi1017', '2020-06-12', 'sitwaiman', '2000-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS088289191850', '赵安琪', 0, '+44 5615 772383', 3, '571309251869578915', 'No.43 Main building, 970 Hanover St, Liverpool, L1 4AF, United Kingdom', '1991-07-08', 0, 0, 'zanqi', '2021-10-06', 'zhaoanqi', '2013-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS975229996065', '長谷川瑛太', 1, '+81 52-617-1110', 2, '494315964945897871', '37F, 2-5-14 Chitose, Atsuta Ward, Nagoya, Japan', '1996-08-22', 0, 0, 'ehasegawa3', '2013-02-18', 'hasee', '2019-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS339873518261', 'Sara Diaz', 1, '+81 66-955-0805', 0, '846499393651128394', '36F, 2-1-20 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1998-05-17', 0, 0, 'saradiaz', '2000-08-17', 'diazsar', '2015-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS407685207306', '蔡子异', 1, '+86 190-8398-3039', 2, '216911243757215545', 'Room 30, CR Building, 20 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1987-03-23', 0, 0, 'ziyic', '2003-10-04', 'cai503', '2018-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS935429186555', '大野大輔', 1, '+86 149-9199-0903', 3, '502725786305533138', '中国北京市朝阳区三里屯路37号华润大厦26室', '1985-03-10', 0, 0, 'daison4', '2000-11-11', 'daono208', '2000-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS346048530297', 'Ernest Spencer', 0, '+81 70-1247-7192', 2, '208776864351426169', '19-kai, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-11-28', 0, 0, 'ernestspe', '2021-07-05', 'ernestspencer67', '2002-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS001755836241', '崔致远', 1, '+81 3-0555-4814', 2, '532595381299070533', 'Rm. 24, 3-15-6 Ginza, Chuo-ku, Tokyo, Japan', '1993-03-13', 0, 0, 'cui115', '2017-06-18', 'czhiyuan815', '2014-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS971486155479', '伍杰倫', 0, '+86 145-3064-5484', 2, '938291552145060127', '中国中山乐丰六路494号34楼', '1987-06-20', 0, 0, 'chiehlunng', '2001-01-27', 'clng', '2019-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS059791570588', '馮慧嫻', 0, '+44 (151) 010 5431', 3, '060448420816683914', 'Unit 24, Oxford Eco Centre, 796 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1989-02-25', 0, 0, 'wafung', '2003-04-03', 'whfung99', '2015-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS151102468893', '罗杰宏', 0, '+86 182-7718-1540', 4, '506751844877805804', '中国深圳龙岗区学园一巷78号35号楼', '1989-11-21', 0, 0, 'luo5', '2009-11-10', 'jiehong229', '2013-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS026265895608', '劉天榮', 1, '+44 7293 482380', 3, '233297501466768186', 'Block 41, 550 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1995-07-22', 0, 0, 'lautinwing', '2012-08-23', 'twla514', '2008-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS922576366625', 'Cheryl Snyder', 0, '+81 70-0974-3232', 3, '188832477590678659', '18-kai, 3-9-13 Gakuenminami, Nara, Japan', '1988-02-24', 0, 0, 'csnyder', '2009-04-28', 'cherysnyder', '2013-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS642414722936', '太田舞', 0, '+86 28-081-8907', 4, '040287492139897600', '3F, 539 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1987-12-14', 0, 0, 'mao1973', '2000-12-04', 'otmai', '2013-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS246268507042', '宮本愛梨', 1, '+86 159-4308-4331', 1, '583885690681116929', '中国成都市成华区双庆路734号30楼', '1988-04-18', 0, 0, 'mairi', '2005-01-26', 'airi02', '2021-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS394950635543', '袁惠妹', 0, '+44 (161) 613 7387', 3, '531158649424439386', 'No.19 Main building, 577 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1997-08-19', 0, 0, 'yuenhuimei4', '2017-03-30', 'yuehui', '2005-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS127753741154', '黄致远', 1, '+81 70-5881-1926', 1, '463172904494218508', '日本札幌豊平区豊平三条十三丁目3番11号14号室', '1992-08-18', 0, 0, 'huzhi9', '2006-11-22', 'hzhiyuan80', '2008-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS727362910815', '黃朝偉', 0, '+86 190-4446-7038', 1, '497079241286487170', '13F, 713 Dongtai 5th St, Dongguan, China', '1986-09-30', 0, 0, 'wongchiuwai', '2005-03-18', 'wchiuwai901', '2005-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS968750349497', '官朝偉', 0, '+81 11-167-1790', 2, '716219080408960146', '4-kai, 5-19-1 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1996-01-28', 0, 0, 'kchiuwai', '2017-04-13', 'koocw', '2020-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS386229621483', '柴田紗良', 0, '+44 5431 868519', 3, '627795807782223573', 'Unit 44, Oxford Eco Centre, 222 Redfern St, Liverpool, L20 8JB, United Kingdom', '1995-04-06', 0, 0, 'sarashibata', '2016-05-26', 'shibatasara', '2021-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS724385249863', '岩崎大地', 0, '+86 182-6332-1952', 1, '548002758695138651', '中国东莞珊瑚路832号31楼', '1988-07-19', 0, 0, 'daichi41', '2012-07-30', 'idaic', '2009-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS468231068020', '劉永權', 1, '+1 614-556-5815', 0, '354946107554577400', '569 Wicklow Road Apartment 45, Columbus, GA 43204, United States', '1996-07-30', 0, 0, 'lau00', '2015-08-09', 'wingkuenlau', '2005-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS040285293967', '苗淑怡', 0, '+81 66-638-6223', 3, '002789150733186602', '15-kai, 4-9-14 Kamihigashi, Hirano Ward, Osaka, Japan', '1988-11-20', 0, 0, 'miu201', '2000-05-18', 'sukyeem', '2012-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS998484411132', '顾震南', 0, '+81 11-251-7820', 1, '938964239312266843', '45F, 5-19-19 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-12-26', 0, 0, 'zhengu', '2012-11-06', 'gzhennan10', '2014-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS060841497645', '佐野美月', 0, '+81 3-4154-0087', 1, '035187757916900554', '日本東京中央区銀座三丁目12番9号42号室', '1985-02-06', 0, 0, 'mitsuki1942', '2001-04-29', 'mitsukisano', '2005-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS562866618996', 'Hazel Alvarez', 0, '+44 7984 437363', 1, '347580951502699826', 'No.39 Main building, 624 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1987-09-18', 0, 0, 'hazelal5', '2000-03-30', 'alvarez93', '2009-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS586819955605', '向安琪', 0, '+81 70-6606-5003', 1, '524096297530583399', '31-kai, 1-7-14 Saidaiji Akodacho, Nara, Japan', '1988-03-15', 0, 0, 'anqix', '2017-08-08', 'xia', '2019-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS505300215533', '郭睿', 1, '+1 718-158-8442', 1, '088978006938548923', '706 Nostrand Ave Apt 28, Brooklyn, NY 11216, United States', '1988-03-28', 0, 0, 'rgu', '2016-04-09', 'rui4', '2015-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS351368603547', '坂本光', 0, '+86 196-8781-5290', 2, '782605325346916133', '中国北京市海淀区清河中街68号461号41栋', '1985-03-31', 0, 0, 'shi', '2005-05-08', 'sakamotoh43', '2021-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS977357639520', '池田陽菜', 0, '+44 5987 255199', 2, '027748977260083089', 'Flat 4, 896 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1994-09-11', 0, 0, 'hinikeda1107', '2000-05-02', 'hikeda', '2013-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS897740525270', '蔡志明', 1, '+1 330-167-9347', 0, '238528176881579238', '440 Ridgewood Road Apartment 41, Akron, OH 44321, United States', '1996-11-30', 0, 0, 'chimichoi', '2018-10-03', 'ccm', '2000-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS410001073303', 'Rebecca Barnes', 0, '+1 614-010-5416', 3, '034508590876806192', '645 Tremont Road Apt 28, Columbus, GA 43212, United States', '1996-02-10', 0, 0, 'rebecca207', '2015-12-17', 'rebebarnes', '2006-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS385438376915', '田中美月', 1, '+44 (151) 572 9123', 4, '058591190556840019', 'Unit 31, Oxford Eco Centre, 324 Redfern St, Liverpool, L20 8JB, United Kingdom', '1985-10-12', 0, 0, 'mt6', '2000-01-20', 'tmitsuki3', '2005-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS511609300339', '陶詩涵', 1, '+86 21-8693-9095', 1, '945144511753654314', '中国上海市闵行区宾川路924号22楼', '1992-03-13', 0, 0, 'stao42', '2011-07-05', 'shihan2', '2018-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS468654502757', '邵秀英', 1, '+86 186-5971-2141', 0, '802910155201232316', '中国北京市西城区复兴门内大街982号21栋', '1993-02-09', 0, 0, 'shaoxi', '2020-10-05', 'sxiuy', '2010-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS158233150936', '徐德華', 1, '+81 11-130-5713', 3, '658870975115913017', '日本札幌清田区真栄四条五丁目19番9号11号室', '1986-09-12', 0, 0, 'twtsui', '2011-02-07', 'twtsui92', '2018-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS136949471998', 'Troy Grant', 0, '+1 312-168-5338', 3, '915011743593494366', '23 Pedway Apt 49, Chicago, IL 60601, United States', '1994-03-07', 0, 0, 'troy1985', '2009-06-24', 'troy9', '2018-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS561378532999', '原拓哉', 0, '+44 7055 211240', 4, '292456576795857159', 'Flat 41, 653 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1990-01-09', 0, 0, 'thara', '2002-04-15', 'haratakuya', '2008-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS211935019005', '任青雲', 0, '+86 755-745-9772', 2, '664363121973835149', '中国深圳罗湖区蔡屋围深南东路451号32楼', '1995-10-06', 0, 0, 'yamchingwan9', '2008-11-01', 'cwyam', '2016-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS802943900507', '郭家文', 1, '+81 11-290-8660', 3, '974202958475217789', '16-kai, 2-1-12 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1992-06-23', 0, 0, 'kamankwok1991', '2020-12-02', 'kwokkaman', '2002-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS154747412605', '钟致远', 1, '+1 312-307-0870', 2, '970399610321639457', '833 Rush Street Apt 8, Chicago, IL 60611, United States', '1985-12-09', 0, 0, 'zhong2007', '2016-04-28', 'zhiyuz', '2001-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS324731666043', '叶致远', 1, '+44 (1223) 54 5010', 3, '664130717240407393', 'Flat 7, 769 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1987-04-03', 0, 0, 'zye10', '2002-04-08', 'ye1971', '2006-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS462649524537', '斎藤涼太', 1, '+81 70-6636-9465', 3, '793378849150250819', '日本おおさかし平野区加美東四丁目9番19号44号室', '1985-04-04', 0, 0, 'ryotasaito1207', '2001-12-22', 'sryota1985', '2006-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS913433467631', '近藤明菜', 1, '+44 5262 047375', 1, '608961556574156914', 'Flat 13, 929 Mosley St, Manchester, M2 3AQ, United Kingdom', '1986-12-07', 0, 0, 'kondoa', '2020-09-02', 'akina63', '2017-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS738682094681', '池田悠人', 1, '+81 70-9712-7576', 1, '967827195805715697', '21F, 6-1-1, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-10-04', 0, 0, 'yutoike', '2004-09-23', 'yike', '2002-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS552798636908', '楊慧珊', 1, '+81 70-0190-0937', 1, '964041946226116569', 'Rm. 22, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1997-10-15', 0, 0, 'yeungwaisan', '2006-05-13', 'wsy', '2009-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS312353059334', 'Vincent Henderson', 0, '+86 760-921-3302', 3, '989636951231811019', 'Room 19, CR Building, 489 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1991-07-03', 0, 0, 'vhen', '2006-09-20', 'hendersonvince6', '2011-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS328771774846', '山田大地', 1, '+86 760-6857-4386', 1, '053261644066581494', '中国中山紫马岭商圈中山五路490号44室', '1993-12-17', 0, 0, 'yamadadaichi', '2004-08-25', 'dyamada', '2009-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS488245762713', '孙宇宁', 0, '+81 11-351-2534', 2, '930977155661230316', '日本札幌白石区菊水三条五丁目4番19号9階', '1996-10-10', 0, 0, 'yuningsu', '2010-01-30', 'yuning1997', '2018-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS325172525778', 'Bobby Stone', 1, '+81 70-2854-8949', 2, '340917538820050886', '3-kai, 3-15-16 Ginza, Chuo-ku, Tokyo, Japan', '1993-10-26', 0, 0, 'bst1', '2019-11-13', 'sbobby', '2001-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS829637591020', '谭睿', 1, '+86 20-016-7173', 0, '688430639408886285', '中国广州市白云区小坪东路26号华润大厦42室', '1985-03-28', 0, 0, 'tan620', '2014-07-05', 'tan2', '2018-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS443082646929', '蒋云熙', 0, '+86 132-8573-7255', 1, '693509294776816159', 'Room 28, 768 Kengmei 15th Alley, Dongguan, China', '1998-05-21', 0, 0, 'yunxijiang2', '2003-10-25', 'yunxijian', '2000-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS498835792341', 'Marilyn Ramirez', 1, '+81 90-3145-2542', 3, '819558654492729142', '37-kai, 2-3-19 Yoyogi, Shibuya-ku, Tokyo, Japan', '1988-03-16', 0, 0, 'ramirez45', '2020-04-30', 'marilramir1976', '2019-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS960016799504', '増田樹', 0, '+86 130-8378-5761', 3, '832843625470233482', '20F, No. 225, Shuangqing Rd, Chenghua District, Chengdu, China', '1993-03-12', 0, 0, 'itmasuda1103', '2005-06-24', 'itsuki803', '2012-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS553575570704', 'Michelle Olson', 0, '+81 80-7659-8766', 2, '352964636026341342', '日本なごやし熱田区千年二丁目5番20号41号室', '1992-10-07', 0, 0, 'micholson', '2000-04-04', 'olsonmiche', '2015-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS075290332661', 'Maria Mcdonald', 0, '+81 80-8266-8348', 3, '820534568609853518', '27F, 1-7-7 Omido, Higashiosaka, Osaka, Japan', '1988-11-14', 0, 0, 'mcdonaldmar13', '2006-12-14', 'mcdonald11', '2018-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS798080383352', 'Betty Spencer', 1, '+81 52-338-1481', 2, '196279030464717043', '34F, 3-19-5 Shimizu, Kita Ward, Nagoya, Japan', '1995-09-24', 0, 0, 'betty1013', '2010-10-14', 'betty1969', '2018-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS445333452530', '西村光莉', 1, '+86 769-980-8138', 0, '046641873532697122', 'Room 49, CR Building, 844 Shanhu Rd, Dongguan, China', '1998-03-04', 0, 0, 'nishimurah', '2005-06-08', 'hikari3', '2019-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS039748292624', 'Sarah Brooks', 1, '+86 143-1135-9280', 4, '550790893194501950', '中国上海市浦东新区健祥路704号38号楼', '1993-02-06', 0, 0, 'sarahbrooks', '2014-07-27', 'brookssarah9', '2015-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS412756370364', 'Lisa Alexander', 1, '+44 (1865) 13 9416', 1, '843020878807049447', 'Unit 17, Oxford Eco Centre, 79 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1991-12-21', 0, 0, 'lalexander5', '2002-10-23', 'alexanderlis', '2000-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS477001102233', '方世榮', 1, '+86 760-9222-7524', 3, '487785085257933103', '中国中山紫马岭商圈中山五路740号4栋', '1989-06-25', 0, 0, 'fsw49', '2008-06-04', 'fong602', '2018-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS490271938749', 'Chris Gardner', 1, '+81 11-759-7909', 1, '462022980914650764', '32-kai, 5-19-6 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1986-10-24', 0, 0, 'gardnerc708', '2010-09-09', 'garc', '2020-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS698517449527', '呂秀文', 1, '+86 28-7682-3682', 1, '461617965093615300', '中国成都市成华区玉双路6号838号华润大厦21室', '1992-03-21', 0, 0, 'saumanlui', '2008-10-28', 'smlu', '2008-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS211306330982', '郭永發', 1, '+81 90-4230-2671', 2, '524432970358618160', '45F, 1-5-12, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-10-18', 0, 0, 'kwok1998', '2003-10-06', 'kwwingfat', '2015-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS411642576508', '余宇宁', 0, '+81 80-4920-5586', 1, '800016653277783713', '42-kai, 12 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-04-18', 0, 0, 'yuningyu', '2018-05-09', 'yuyu', '2014-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS405356075527', '高木美月', 1, '+81 70-6229-5620', 2, '642899192583563376', '日本なごやし北区楠味鋺三丁目80番10号22階', '1992-05-12', 0, 0, 'mitsukit503', '2012-04-03', 'takmits', '2017-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS215803985119', '原美月', 1, '+86 21-693-6150', 1, '671528913844556194', 'Room 48, CR Building, 153 Middle Huaihai Road, Huangpu District, Shanghai, China', '1991-01-06', 0, 0, 'mh2', '2010-08-28', 'mihara', '2018-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS684807441052', '何子异', 0, '+1 838-604-4122', 4, '240957740473234729', '244 Central Avenue Apt 44, Albany, NY 12206, United States', '1995-03-06', 0, 0, 'hziyi51', '2008-12-18', 'he95', '2003-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS710572287982', 'Rebecca Stevens', 1, '+86 755-8541-4017', 2, '233297372072871856', 'No.10 building, 717 Shennan Ave, Futian District, Shenzhen, China', '1985-02-09', 0, 0, 'rebeccaste6', '2013-01-31', 'stevens03', '2013-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS120528697070', 'Marie Rogers', 0, '+86 195-8202-2875', 1, '589498595463587288', 'Room 2, 201 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1990-04-22', 0, 0, 'marie7', '2016-02-13', 'rogers7', '2003-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS281548360633', '桜井桜', 1, '+86 21-3595-9666', 1, '923847404015898083', '43F, 365 Binchuan Rd, Minhang District, Shanghai, China', '1988-10-31', 0, 0, 'ssakura', '2011-01-03', 'saks', '2017-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS029576489035', 'Kenneth Richardson', 0, '+81 80-5433-0244', 0, '464774941721525103', '日本ならし大和郡山市本庄町一丁目1番19号46階', '1988-07-03', 0, 0, 'richardson1001', '2014-10-17', 'richardsonkenn53', '2014-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS930277814432', '加藤大和', 0, '+1 213-496-0255', 3, '648627390737709992', '191 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1994-06-15', 0, 0, 'ykato1957', '2019-06-26', 'yk6', '2002-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS094993839012', '程杰宏', 0, '+81 52-571-2113', 0, '126993484052830770', '37F, 2-5-15 Chitose, Atsuta Ward, Nagoya, Japan', '1996-12-21', 0, 0, 'chengjieho97', '2001-07-15', 'chejieh', '2006-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS142501621520', 'Shirley Grant', 0, '+44 (151) 646 8305', 1, '187857856992729430', 'Block 15, 740 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-04-28', 0, 0, 'shigrant', '2019-01-31', 'shirleygra', '2008-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS771371281258', '钱震南', 1, '+81 70-9596-8008', 2, '967284025675110942', '日本東京千代田区丸の内一丁目6番5号42階', '1991-07-02', 0, 0, 'qizhennan', '2013-08-31', 'qian101', '2017-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS505034009682', 'Lois Hicks', 0, '+1 212-841-7342', 1, '966086050070251175', '863 Canal Street 3rd Floor, New York, NY 10013, United States', '1997-06-14', 0, 0, 'hicksl1101', '2017-09-16', 'lois5', '2000-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS270350364847', '于云熙', 1, '+1 330-309-6047', 0, '381459174347814552', '474 Collier Road Apartment 37, Akron, OH 44320, United States', '1991-08-07', 0, 0, 'yuyu', '2013-12-04', 'yu1', '2009-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS354610222910', '宋宇宁', 0, '+44 (151) 366 3016', 0, '872265588536058604', 'Block 50, 795 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1988-04-18', 0, 0, 'songyu102', '2012-06-04', 'songyun', '2001-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS185016791321', '村田葵', 0, '+86 10-173-0418', 3, '735690332943344135', '中国北京市西城区复兴门内大街17号31楼', '1987-10-06', 0, 0, 'ma55', '2004-07-28', 'aoim', '2000-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS949169476079', '罗詩涵', 0, '+81 74-530-0863', 0, '862978808700343388', '50F, 3-9-16 Gakuenminami, Nara, Japan', '1992-01-09', 0, 0, 'lshihan', '2017-03-14', 'luoshihan9', '2008-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS450364553451', '青木詩乃', 1, '+81 80-0882-6040', 0, '548385724479589395', '日本なごやし北区清水三丁目19番19号46階', '1987-10-03', 0, 0, 'shaoki6', '2009-10-01', 'shinoa', '2008-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS407079591673', 'Michael Munoz', 0, '+86 174-1555-9885', 3, '622218810308501676', '中国上海市闵行区宾川路254号38室', '1989-03-03', 0, 0, 'munomichael54', '2000-09-13', 'munozm', '2008-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS741603622238', '今井優奈', 0, '+86 141-4888-3907', 1, '732170360049892159', 'No.14 building, 979 Tianhe Road, Tianhe District, Guangzhou, China', '1986-10-12', 0, 0, 'yuna1212', '2002-07-14', 'imai56', '2013-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS409263372591', 'Stephanie Ryan', 0, '+86 769-743-9539', 3, '078092207053476180', '中国东莞环区南街二巷498号14室', '1989-02-02', 0, 0, 'stephaniery6', '2016-12-27', 'stephanier', '2010-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS594431545577', 'Tiffany Ruiz', 0, '+86 179-1047-3043', 2, '181170562486981229', 'Room 25, CR Building, 339 Middle Huaihai Road, Huangpu District, Shanghai, China', '1987-03-18', 0, 0, 'ruiztiffany', '2000-12-22', 'tr9', '2011-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS042679143050', '松田湊', 0, '+1 838-696-5351', 2, '702301436351391801', '43 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1999-01-09', 0, 0, 'minam118', '2001-04-29', 'mmatsu1952', '2012-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS911444523565', '和田紗良', 0, '+81 80-2356-5227', 2, '506976084813065691', '5F, 5-19-8 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1993-06-16', 0, 0, 'wadasar', '2003-11-21', 'sarwa', '2019-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS336433854518', '中山愛梨', 1, '+1 312-677-6612', 1, '057663398084965580', '433 North Michigan Ave Apt 41, Chicago, IL 60611, United States', '1990-10-01', 0, 0, 'nakayama1220', '2001-09-08', 'nairi10', '2021-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS437832060588', '武田凛', 1, '+81 66-500-9034', 2, '785649307912440247', '38F, 3-27-5 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-01-23', 0, 0, 'takedarin6', '2009-03-03', 'takedr', '2005-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS614204074059', '和田翼', 0, '+81 90-5998-9470', 2, '434617327564365319', '40-kai, 18 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-03-12', 0, 0, 'wtsubasa', '2012-09-18', 'tsubasawada', '2016-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS292678851319', '洪天樂', 0, '+81 66-396-2820', 2, '800235739350250799', '日本おおさかし近江堂一丁目7番7号27階', '1993-11-22', 0, 0, 'htl', '2000-10-11', 'huntinlok', '2015-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS580128961264', '野口美羽', 1, '+44 5319 647578', 2, '147689635653794603', 'Block 9, 694 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1990-08-29', 0, 0, 'miu3', '2016-11-08', 'noguchimi', '2014-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS013004793197', 'Joanne Soto', 1, '+44 (1223) 60 2911', 1, '318844650869165161', 'No.11 Main building, 31 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1987-12-16', 0, 0, 'josot', '2009-02-11', 'sj521', '2016-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS842878966858', 'Annie Rodriguez', 0, '+81 74-723-1615', 3, '848105304004613782', '45F, 19 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1992-10-19', 0, 0, 'roann5', '2020-09-08', 'annrodriguez', '2012-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS475003061536', 'Edna Silva', 1, '+86 198-3471-7462', 2, '029403570971287385', '中国北京市西城区西長安街562号39室', '1987-12-18', 0, 0, 'ednasilva712', '2017-12-02', 'esilva', '2003-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS684320250191', 'Bryan Hunt', 1, '+81 66-823-0307', 1, '534604365203374953', '14F, 4-9-1 Kamihigashi, Hirano Ward, Osaka, Japan', '1989-01-06', 0, 0, 'bryahunt', '2016-07-22', 'huntbryan1118', '2013-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS562799618385', '加藤七海', 1, '+81 3-2597-8534', 4, '550894882342184636', '49F, 1-6-15, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1993-04-18', 0, 0, 'nanamika', '2020-05-30', 'nkato', '2007-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS086840752585', '常秀英', 1, '+81 74-493-1539', 3, '669223766547576778', '31-kai, 3-9-6 Gakuenminami, Nara, Japan', '1988-10-20', 0, 0, 'chanxiu', '2012-05-25', 'xiuying7', '2004-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS280839520612', 'Ricky King', 0, '+44 (116) 546 9020', 1, '650248599355412261', 'No.29 Main building, 404 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1987-09-18', 0, 0, 'rickyk10', '2003-04-30', 'kingri', '2019-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS302896285718', '孟震南', 0, '+86 21-8119-3149', 2, '772768840143154430', '中国上海市浦东新区健祥路37号36号楼', '1987-08-12', 0, 0, 'zhennm1', '2007-03-02', 'mengzhennan76', '2011-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS784623991064', 'Susan Chavez', 0, '+86 179-5559-0936', 3, '708289709079836251', '中国北京市東城区東直門內大街116号华润大厦8室', '1986-12-12', 0, 0, 'suchavez', '2009-04-07', 'chavezs', '2020-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS631678847363', 'Jack Romero', 0, '+81 80-1936-3976', 3, '882561869866503794', '日本東京港区東新橋一丁目5番17号28階', '1998-01-09', 0, 0, 'jack6', '2007-04-19', 'jackrome', '2012-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS531063087591', '藤井百花', 1, '+86 170-3020-1053', 3, '074206570560945700', '中国东莞坑美十五巷160号华润大厦39室', '1996-02-25', 0, 0, 'momoka711', '2016-10-02', 'fujiimom', '2004-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS698676373226', '戚俊宇', 0, '+44 (20) 4365 8917', 2, '628806543500613717', 'No.47 Main building, 221 Pollen Street, London, W1S 1NG, United Kingdom', '1985-02-13', 0, 0, 'cychic727', '2001-05-24', 'chuch1', '2008-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS072252672029', '叶秀英', 1, '+1 213-051-0589', 2, '477261688086987901', '54 Grape Street Apartment 3, Los Angeles, CA 90002, United States', '1986-09-03', 0, 0, 'yexiuying', '2002-10-20', 'xiuyiye209', '2021-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS269573996935', 'Melissa Mcdonald', 0, '+86 143-9295-6111', 3, '829635048164231894', '中国北京市海淀区清河中街68号939号19栋', '1994-02-20', 0, 0, 'mcm1120', '2020-03-18', 'mcm2000', '2019-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS088181558314', 'Kyle James', 0, '+1 330-483-6231', 4, '863326246161117919', '650 Ridgewood Road Apartment 19, Akron, OH 44321, United States', '1991-02-03', 0, 0, 'kyle8', '2011-07-08', 'kyle68', '2015-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS608557948464', '萧秀英', 1, '+1 330-932-5816', 4, '152819696678468944', '622 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1993-07-17', 0, 0, 'xixiu10', '2011-12-12', 'xxiao13', '2021-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS243902540957', '于璐', 0, '+81 90-5094-9541', 1, '313729794885261904', 'Rm. 43, 5-19-20 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1998-07-05', 0, 0, 'lyu7', '2016-08-16', 'lu2', '2017-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS078947431427', '张杰宏', 0, '+86 188-6796-1621', 3, '840719479916224062', 'No.29 building, 799 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1985-08-01', 0, 0, 'jiehong49', '2008-07-24', 'zhajiehong5', '2007-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS558326646647', 'Lawrence Hughes', 0, '+81 74-831-6277', 4, '661252279039767154', 'Rm. 28, 6 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1990-05-30', 0, 0, 'hughes43', '2002-03-17', 'lawrencehu71', '2015-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS548216045519', '邹云熙', 0, '+86 21-150-8923', 3, '495971022057946877', '中国上海市浦东新区橄榄路522号26楼', '1986-11-14', 0, 0, 'zou7', '2009-06-13', 'yunxiz', '2019-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS976093213793', '严宇宁', 1, '+86 148-5028-6253', 0, '294140751925580147', 'Room 44, CR Building, 902 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1986-05-01', 0, 0, 'yuningyan', '2001-12-04', 'yyuni218', '2014-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS345237723637', '石井凛', 0, '+1 213-548-8585', 1, '680519160278840094', '431 S Broadway Suite 13, Los Angeles, CA 90015, United States', '1995-07-30', 0, 0, 'ishii9', '2000-01-04', 'rinishii', '2018-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS132055870607', 'Helen Phillips', 0, '+81 52-025-3751', 2, '086356613354189811', '日本なごやし北区清水三丁目19番8号32階', '1992-05-11', 0, 0, 'phillips1', '2018-08-06', 'heleph9', '2006-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS006793349408', 'Julia Foster', 1, '+44 5087 296606', 0, '482555224381039597', 'Unit 26, Oxford Eco Centre, 763 Hanover Street, London, W1S 1YD, United Kingdom', '1985-05-10', 0, 0, 'julia8', '2008-10-05', 'juliafo10', '2020-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS737244793934', '胡思妤', 1, '+86 10-198-2028', 1, '281159968012309969', '中国北京市西城区复兴门内大街377号12栋', '1994-08-13', 0, 0, 'szeyu117', '2007-11-03', 'wu306', '2018-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS494489722291', '武田瑛太', 1, '+1 213-329-9599', 1, '452889877066765511', '43 Figueroa Street Suite 40, Los Angeles, CA 90037, United States', '1995-08-01', 0, 0, 'taeit', '2008-02-13', 'teit', '2010-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS968675247221', 'Melissa Garcia', 1, '+81 74-355-9897', 2, '236364480925052826', '日本ならし西大寺赤田町一丁目7番12号41階', '1991-11-17', 0, 0, 'garciam', '2010-10-14', 'garmelis2008', '2004-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS885407244438', '藍曉彤', 1, '+81 90-5750-4655', 4, '651159857230624638', '5-kai, 1-6-20, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-03-30', 0, 0, 'htlam81', '2014-12-10', 'hiutungla302', '2008-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS698537174582', '罗秀英', 1, '+1 212-062-7505', 4, '682137169582641435', '429 Wooster Street Apt 28, New York, NY 10012, United States', '1989-04-16', 0, 0, 'luo61', '2021-05-18', 'luo4', '2007-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS171549881308', '邱嘉伦', 1, '+44 7064 006161', 3, '445809440973957510', 'Unit 11, Oxford Eco Centre, 850 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1993-09-06', 0, 0, 'jialun714', '2015-11-23', 'jialunq', '2006-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS255738754065', '苗力申', 1, '+81 74-362-4065', 2, '870536661703551081', '13F, 3-9-2 Gakuenminami, Nara, Japan', '1997-01-30', 0, 0, 'lsmiu4', '2008-05-10', 'lsmiu', '2020-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS854851303159', '陶頴璇', 1, '+86 10-740-2590', 4, '870265292678221040', '10F, 288 Sanlitun Road, Chaoyang District, Beijing, China', '1990-08-05', 0, 0, 'tws', '2019-12-27', 'taows', '2002-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS325467285270', '松本陽太', 1, '+44 (121) 876 3068', 0, '075420407177130114', 'Flat 25, 477 New Street, Birmingham, B2 4DB, United Kingdom', '1990-11-06', 0, 0, 'yotamatsumoto', '2011-10-01', 'matsyo2', '2013-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS059054420127', '麥惠妹', 1, '+81 90-7297-9503', 4, '812774029537444163', 'Rm. 38, 3-9-4 Gakuenminami, Nara, Japan', '1990-12-30', 0, 0, 'makhm6', '2010-04-22', 'makhm', '2004-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS640958400119', '袁梓晴', 0, '+81 3-2146-7922', 0, '464346241610841337', '日本東京品川区東五反田五丁目2番15号5階', '1991-02-26', 0, 0, 'yuetc', '2021-08-17', 'tszchingyu', '2021-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS496679952909', '安藤光', 0, '+44 (116) 534 4513', 4, '871362035222374308', 'Unit 20, Oxford Eco Centre, 242 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1998-10-18', 0, 0, 'hikarando', '2009-06-21', 'hikara10', '2016-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS074977858030', '吳梓晴', 0, '+86 760-498-6086', 2, '353627624444509340', 'Room 38, 504 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1997-03-02', 0, 0, 'tszchingng', '2000-04-29', 'ntc', '2000-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS124364134180', '藤井葵', 0, '+81 3-9843-8299', 3, '687387970141810131', '日本東京品川区東五反田五丁目2番19号24階', '1997-09-06', 0, 0, 'aoif', '2015-11-23', 'aoifuj', '2006-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS540449103931', '文慧儀', 0, '+86 10-7178-2999', 0, '326031997839148234', 'No.22 building, 790 FuXingMenNei Street, XiCheng District, Beijing, China', '1987-12-22', 0, 0, 'waiyee6', '2000-12-19', 'waiyee10', '2006-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS406319688986', '张子异', 0, '+86 169-0512-9176', 1, '426127972303683734', '中国北京市延庆区028县道738号42楼', '1998-08-01', 0, 0, 'zzhang', '2008-10-22', 'ziyizh6', '2005-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS367683490544', '山下拓哉', 0, '+1 718-818-3322', 3, '131631455195476432', '916 Nostrand Ave Suite 4, Brooklyn, NY 11216, United States', '1986-04-23', 0, 0, 'yamastaku', '2007-09-12', 'yamashitatakuya59', '2012-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS193712737959', '叶震南', 1, '+81 70-3768-9303', 1, '006139345317407400', 'Rm. 4, 3-27-11 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-03-23', 0, 0, 'zhennanye', '2002-04-10', 'zhennany9', '2018-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS204059114882', 'Linda Cooper', 0, '+86 138-4227-5171', 1, '149633468540336486', '中国成都市成华区玉双路6号968号华润大厦32室', '1993-07-07', 0, 0, 'linda7', '2005-12-25', 'cooperl', '2017-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS063712767602', '金子桜', 1, '+81 80-6717-3799', 1, '538946357458548332', '32-kai, 1-7-3 Saidaiji Akodacho, Nara, Japan', '1998-11-17', 0, 0, 'kansakura94', '2017-01-28', 'kans', '2017-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS946854827100', '毛詩涵', 1, '+86 769-559-2647', 2, '455637803904627369', 'Room 35, CR Building, 9 Dongtai 5th St, Dongguan, China', '1985-04-21', 0, 0, 'mao1', '2002-08-23', 'shihanmao', '2012-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS950494115807', '中村愛梨', 1, '+86 159-6724-0379', 4, '838599731815280188', '中国深圳罗湖区蔡屋围深南东路691号48号楼', '1988-01-10', 0, 0, 'nairi803', '2005-12-03', 'nairi', '2004-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS925847284416', '鈴木光莉', 1, '+81 80-3283-5101', 2, '473673243732789726', '32-kai, 2-5-12 Chitose, Atsuta Ward, Nagoya, Japan', '1994-01-21', 0, 0, 'hikarisuzuki', '2018-12-19', 'hikarsuzuki', '2016-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS577709837645', '高嘉欣', 0, '+44 5347 134694', 1, '006293621064762607', 'Unit 10, Oxford Eco Centre, 548 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1993-12-25', 0, 0, 'kykao', '2015-11-03', 'kaokaryan', '2012-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS361064641282', 'Carlos Bryant', 1, '+1 718-378-4568', 2, '997987826186320768', '992 Columbia St Apt 21, Brooklyn, NY 11231, United States', '1990-11-24', 0, 0, 'cbryant1104', '2018-11-29', 'bryant14', '2014-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS442009803730', '譚家玲', 0, '+81 80-2847-2886', 1, '615025387694404107', 'Rm. 13, 2-1-9 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1994-05-21', 0, 0, 'tam9', '2009-12-16', 'tam10', '2001-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS748650977955', '田中桜', 1, '+81 3-8270-6397', 4, '404660640468285191', '日本東京港区東新橋一丁目5番18号47号室', '1988-05-01', 0, 0, 'tasakura', '2007-01-08', 'sakuratan', '2000-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS665344355601', '王天樂', 1, '+81 90-4266-2482', 0, '101269401915812490', 'Rm. 29, 1-7-15 Omido, Higashiosaka, Osaka, Japan', '1990-08-02', 0, 0, 'tlwong', '2005-10-12', 'wongtinlok2003', '2010-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS371673891614', 'Anna Jenkins', 1, '+81 80-7049-7614', 1, '780165302978147633', '36-kai, 1-5-1, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1992-03-20', 0, 0, 'annjenkins84', '2017-08-08', 'jenkinsanna', '2004-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS219152023218', 'Amber Webb', 1, '+1 614-893-9964', 3, '796692884336749728', '435 Tremont Road Apt 28, Columbus, GA 43212, United States', '1994-01-17', 0, 0, 'webbam4', '2021-06-08', 'webb224', '2004-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS863817210192', '余子韬', 1, '+81 90-7132-0815', 1, '019282923605751507', '日本なごやし北区清水三丁目19番5号36階', '1991-03-15', 0, 0, 'zitaoyu', '2000-01-10', 'yz1209', '2010-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS001497602112', '邱致远', 0, '+44 5928 197120', 3, '642157964529513570', 'No.41 Main building, 596 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-03-13', 0, 0, 'zhiyqi', '2013-11-06', 'zqiu305', '2006-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS635658094881', '江璐', 1, '+1 212-460-7938', 0, '743975374450798610', '109 West Houston Street Apartment 15, New York, NY 10014, United States', '1987-07-06', 0, 0, 'jiangl', '2019-10-04', 'luji60', '2001-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS330086881291', 'Ruth Fernandez', 1, '+86 194-2241-5332', 2, '935394699611339119', '31F, 943 East Wangfujing Street, Dongcheng District , Beijing, China', '1990-08-06', 0, 0, 'ruthf', '2001-04-24', 'fernarut', '2010-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS200788530456', 'Anne Torres', 1, '+81 80-2059-6841', 1, '791749037761254921', '36-kai, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-04-01', 0, 0, 'torresann', '2012-06-10', 'toranne206', '2004-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS156944517165', 'Carlos Moreno', 1, '+86 760-653-0768', 2, '470019267767486967', '中国中山京华商圈华夏街644号49楼', '1992-08-30', 0, 0, 'morenocarlos', '2016-12-12', 'cm419', '2021-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS535564625689', 'Glenn Ford', 0, '+86 166-0728-8882', 0, '537691909345323648', '中国北京市朝阳区三里屯路97号40栋', '1990-01-04', 0, 0, 'fglenn4', '2002-03-03', 'gford5', '2005-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS546078275891', '李家明', 0, '+86 135-6774-9062', 2, '322640368313828749', 'No.1 building, 608 FuXingMenNei Street, XiCheng District, Beijing, China', '1990-08-07', 0, 0, 'leekm', '2018-07-10', 'kmlee', '2015-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS846235340503', '田云熙', 0, '+81 66-556-9949', 1, '588525603864533240', '21F, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1994-05-17', 0, 0, 'yunxi1203', '2014-04-19', 'yunxitia4', '2007-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS868030178736', '陆子异', 0, '+81 70-3647-5657', 2, '875066951529529609', '26-kai, 5-19-7 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1986-06-09', 0, 0, 'ziyilu', '2008-09-26', 'ziyilu1002', '2017-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS353301371419', '成霆鋒', 0, '+86 142-1176-6188', 1, '193967195321306224', 'No.9 building, 554 Huanqu South Street 2nd Alley, Dongguan, China', '1986-01-12', 0, 0, 'shitf', '2008-04-12', 'shing2', '2004-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS533233500695', '渡辺陽菜', 0, '+86 21-4553-8993', 2, '107091203787037071', 'No.40 building, 818 Middle Huaihai Road, Huangpu District, Shanghai, China', '1989-03-12', 0, 0, 'satoh910', '2005-08-09', 'satoh2', '2016-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS976359320355', 'Troy Gordon', 0, '+81 70-7003-6919', 2, '661509824954519200', '41-kai, 3-15-10 Ginza, Chuo-ku, Tokyo, Japan', '1992-12-25', 0, 0, 'tgordon522', '2020-02-17', 'troygordon2', '2004-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS408436410528', 'Josephine Holmes', 0, '+81 80-7542-1119', 0, '255260279933497030', '日本札幌清田区真栄四条五丁目19番20号11階', '1994-06-12', 0, 0, 'hojose', '2014-04-21', 'hjo', '2017-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS411594047171', '長谷川架純', 0, '+81 80-5349-5262', 4, '953210399205508779', 'Rm. 42, 5-4-5 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-03-04', 0, 0, 'kasumihase1021', '2015-02-22', 'kasumi1107', '2012-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS006245551159', '鄭惠妹', 0, '+86 755-506-4088', 1, '234026488648859526', 'No.7 building, 231 Jingtian East 1st St, Futian District, Shenzhen, China', '1996-10-12', 0, 0, 'chehuimei5', '2008-05-05', 'hmchen', '2013-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS817182276651', '文力申', 1, '+81 70-1736-9442', 3, '268451386930176558', '日本東京品川区東五反田五丁目2番20号3号室', '1994-03-14', 0, 0, 'liksunman2005', '2012-03-09', 'mals', '2021-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS310957159296', '苗家玲', 0, '+81 3-8345-3452', 3, '935547052865876344', '16F, 1-5-3, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1995-06-15', 0, 0, 'klmiu9', '2011-05-25', 'klmiu', '2012-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS250271187047', '莫子韬', 0, '+86 10-5111-0057', 4, '794098885329727231', 'No.6 building, 9 West Chang''an Avenue, Xicheng District, Beijing, China', '1992-01-22', 0, 0, 'zm1202', '2019-09-05', 'mozitao707', '2009-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS124464130499', '刘秀英', 0, '+81 52-953-1103', 3, '613687476180027669', '39-kai, 3-19-13 Shimizu, Kita Ward, Nagoya, Japan', '1986-06-25', 0, 0, 'xiuyingliu', '2006-11-23', 'xiuli1975', '2001-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS574241724678', 'Vincent Burns', 0, '+86 192-7443-1826', 3, '056811355944510736', 'Room 40, 962 Jiangnan West Road, Haizhu District, Guangzhou, China', '1994-05-20', 0, 0, 'burns514', '2011-05-04', 'buvince06', '2007-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS208877937685', '遠藤聖子', 1, '+81 74-208-8834', 3, '141017521704875365', 'Rm. 7, 4 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1990-02-03', 0, 0, 'seikoendo', '2021-10-25', 'seikoendo', '2017-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS187572838369', '野村瑛太', 1, '+1 212-084-5795', 4, '440575371163034617', '3 Fifth Avenue Apt 30, New York, NY 10017, United States', '1986-04-26', 0, 0, 'enomura', '2011-11-02', 'eitanomura', '2010-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS378325643309', '孙子异', 1, '+86 150-8936-4491', 3, '696725824659499519', 'No.48 building, 33 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1987-04-03', 0, 0, 'zisu', '2012-02-22', 'ziyisun', '2017-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS243065944624', '杨致远', 1, '+81 52-973-3971', 1, '461157735155761923', '34-kai, 2-5-14 Chitose, Atsuta Ward, Nagoya, Japan', '1985-10-20', 0, 0, 'yzhiyuan03', '2016-03-23', 'zyang', '2021-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS534520641814', 'Emma Freeman', 0, '+1 614-739-5373', 1, '134085769106579000', '180 Tremont Road Apt 18, Columbus, GA 43212, United States', '1992-07-29', 0, 0, 'emmafreeman56', '2002-02-10', 'fremma4', '2001-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS003476213067', '藍頴思', 0, '+86 755-9275-5340', 1, '628399222818454383', '中国深圳罗湖区蔡屋围深南东路846号11楼', '1987-09-23', 0, 0, 'wingsze1', '2000-10-09', 'wingszelam', '2012-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS437377840128', '谷家輝', 1, '+86 10-2625-7465', 4, '030418914349269663', '中国北京市西城区复兴门内大街339号36楼', '1990-11-25', 0, 0, 'kfko', '2021-06-27', 'kookf04', '2014-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS264354127927', '林大和', 1, '+81 80-4779-3823', 1, '455757122513017090', '48-kai, 3-19-12 Shimizu, Kita Ward, Nagoya, Japan', '1993-01-02', 0, 0, 'hy19', '2011-04-30', 'hayashiy', '2009-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS221456450585', '原涼太', 0, '+86 28-635-2665', 2, '766950845040743085', '7F, 476 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1987-04-25', 0, 0, 'ryotahara69', '2021-06-01', 'ryotah', '2006-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS953701349802', '邵浩然', 0, '+86 755-7050-7484', 3, '012603740483339227', 'Room 9, CR Building, 411 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1995-02-07', 0, 0, 'hoyinsiu10', '2011-08-11', 'sihoyin', '2006-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS958410213535', '許仲賢', 1, '+81 74-686-0627', 1, '512433539203366447', '日本ならし学園南三丁目9番14号6号室', '1990-05-06', 0, 0, 'chungyin702', '2021-03-22', 'chungyinhu', '2004-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS639049436386', '森瑛太', 0, '+86 130-8666-9728', 3, '236162480850191963', '中国广州市白云区小坪东路424号11栋', '1998-12-25', 0, 0, 'eitamor', '2017-07-15', 'eitamori326', '2021-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS439953211009', '田中大地', 1, '+86 132-2475-3876', 3, '318016768222873775', '中国北京市东城区东单王府井东街501号华润大厦5室', '1989-04-26', 0, 0, 'tanakadaich', '2019-05-29', 'tanakdaichi', '2016-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS799909461631', 'Roy Ramirez', 1, '+81 3-3103-6536', 2, '950490470685455401', '38-kai, 2-3-20 Yoyogi, Shibuya-ku, Tokyo, Japan', '1989-02-21', 0, 0, 'ramirezr', '2003-12-18', 'ramirr82', '2014-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS082062834415', '陈致远', 0, '+81 80-3432-7778', 2, '160008112465949112', '日本おおさかし平野区加美東四丁目9番15号50階', '1989-03-04', 0, 0, 'zhichen', '2011-07-09', 'chen10', '2012-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS367932062693', 'Anna Moreno', 0, '+44 5967 920165', 1, '152268262426720837', 'No.10 Main building, 262 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1994-08-19', 0, 0, 'morenoanna02', '2006-11-03', 'morenoann', '2014-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS075534551567', '郭安琪', 0, '+86 10-833-9522', 2, '108666867681304647', 'Room 35, 142 Dong Zhi Men, Dongcheng District, Beijing, China', '1987-12-21', 0, 0, 'guoanqi', '2008-03-13', 'guoanq', '2012-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS398169047522', '野村舞', 0, '+86 173-7252-8055', 2, '445524788667944732', 'Room 15, 690 Jiangnan West Road, Haizhu District, Guangzhou, China', '1999-01-17', 0, 0, 'nomuramai', '2007-10-27', 'nomuramai', '2001-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS899981124041', '葉志遠', 1, '+81 80-2522-8888', 2, '726163174017852696', '日本おおさかし西成区出城一丁目1番10号1階', '1994-06-12', 0, 0, 'yichiyu', '2003-06-24', 'cyyip', '2000-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS631587037314', '邹云熙', 0, '+86 28-3462-8415', 1, '644704750469793497', 'Room 1, 367 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1992-12-16', 0, 0, 'zouyunxi', '2013-10-04', 'yunxi2', '2015-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS079979769139', '高明詩', 0, '+86 20-0702-1329', 3, '484732620520805248', '中国广州市白云区小坪东路982号22室', '1990-11-12', 0, 0, 'kms', '2002-05-29', 'mingszekao', '2006-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS389556389787', '中島健太', 0, '+86 20-998-3460', 3, '970368531047936547', 'No.30 building, 569 Jiangnan West Road, Haizhu District, Guangzhou, China', '1997-03-27', 0, 0, 'kentan208', '2000-07-26', 'nakajima1120', '2017-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS369786109025', '蘇裕玲', 0, '+1 838-682-3852', 4, '544058394488839131', '157 Broadway Apt 28, Albany, NY 12207, United States', '1986-08-23', 0, 0, 'so1205', '2002-11-28', 'yulings', '2002-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS120496438057', 'Scott Marshall', 0, '+81 3-6006-2793', 2, '021468190401344214', '日本東京渋谷区代々木二丁目3番13号42階', '1995-04-22', 0, 0, 'msco302', '2011-07-24', 'marshall6', '2002-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS631619209165', 'Ashley Murphy', 1, '+44 7415 239767', 3, '586611124506317483', 'Unit 17, Oxford Eco Centre, 645 Portland St, Manchester, M1 3LA, United Kingdom', '1987-02-19', 0, 0, 'muash', '2005-05-10', 'ashlm', '2019-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS295253734904', '後藤詩乃', 0, '+81 74-120-7501', 4, '560233412483684234', '日本ならし学園南三丁目9番5号35号室', '1998-09-16', 0, 0, 'shinogo', '2001-02-09', 'shinogo', '2021-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS299990783874', '崔秀英', 1, '+86 169-0348-5581', 3, '669992324594698085', 'Room 7, 509 Jianxiang Rd, Pudong, Shanghai, China', '1990-09-03', 0, 0, 'cuixiu', '2002-10-06', 'cuixiuying7', '2015-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS102918810498', 'Patrick Gardner', 1, '+81 80-2256-1215', 0, '479758264297178985', 'Rm. 32, 2-1-16 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-09-15', 0, 0, 'gardp', '2021-11-27', 'garpatrick', '2004-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS947177844810', '戚杰倫', 0, '+81 74-843-2086', 0, '953808115163376543', '33F, 3-9-7 Gakuenminami, Nara, Japan', '1994-01-20', 0, 0, 'clchi', '2016-01-08', 'chchi', '2008-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS401909390150', '江秀英', 1, '+86 184-2170-0708', 0, '365184308297152743', '中国上海市黄浦区淮海中路994号华润大厦37室', '1998-12-09', 0, 0, 'xiuying220', '2003-02-17', 'xiuying2', '2018-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS198456532927', 'Janice Robinson', 0, '+86 21-7616-7746', 4, '849653542381894496', '35F, 107 Binchuan Rd, Minhang District, Shanghai, China', '1989-10-18', 0, 0, 'rjan4', '2014-06-16', 'janrob', '2003-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS179526372616', '蕭慧琳', 1, '+44 7359 967479', 1, '979541996319489006', 'Unit 11, Oxford Eco Centre, 485 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1996-01-28', 0, 0, 'siuwailam', '2020-05-23', 'wlsi', '2021-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS488872807127', '渡辺凛', 1, '+86 174-0506-6514', 1, '389992774516958020', 'Room 9, 570 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1996-11-28', 0, 0, 'sato10', '2007-06-03', 'satorin8', '2008-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS338209554814', '有村蒼士', 0, '+81 70-5777-6388', 1, '335933637988381537', '日本札幌清田区真栄四条五丁目19番18号45階', '1992-11-26', 0, 0, 'arimuraaoshi610', '2013-10-29', 'aosarimu1102', '2017-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS887045548898', '余杰宏', 1, '+86 769-569-3487', 3, '909083638882863139', '中国东莞坑美十五巷62号16室', '1987-04-28', 0, 0, 'yujiehong', '2018-11-05', 'yuj', '2012-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS662613028996', '斉藤百恵', 1, '+44 5956 227064', 3, '354060019763894762', 'Flat 30, 860 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1993-03-07', 0, 0, 'mosaito1942', '2015-06-22', 'ms5', '2001-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS638353875544', '岡田紗良', 0, '+1 330-949-9385', 0, '731185449599035656', '740 Riverview Road Apt 27, Akron, OH 44313, United States', '1995-02-15', 0, 0, 'okas', '2000-05-15', 'saraokad', '2018-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS642142721141', '姜岚', 0, '+86 154-8480-9886', 1, '158537895578111445', 'No.2 building, No.808, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1996-12-28', 0, 0, 'jianglan', '2014-04-27', 'ljia', '2012-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS007881389298', '向志遠', 1, '+81 70-7936-8335', 4, '102273180273918067', '日本東京渋谷区代々木二丁目3番18号3階', '1990-03-05', 0, 0, 'heung226', '2013-05-23', 'hechiy', '2003-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS574958326410', '胡家玲', 1, '+86 160-1801-0415', 3, '003980302834521221', '中国上海市徐汇区虹桥路431号28室', '1987-05-15', 0, 0, 'wukl4', '2004-05-01', 'kaling89', '2013-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS050763987164', '汤致远', 0, '+1 838-719-6676', 4, '512896798362797902', '734 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1994-03-08', 0, 0, 'zhiyuan4', '2014-01-15', 'tangzhiyu', '2018-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS244035781016', '丸山優奈', 1, '+1 212-907-8175', 1, '079172831054648889', '452 Wooster Street Suite 12, New York, NY 10012, United States', '1985-10-27', 0, 0, 'maruyuna7', '2013-08-13', 'yunamar12', '2000-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS257469117608', '鄭小慧', 0, '+81 11-643-3011', 3, '846656745222776682', '日本札幌豊平区豊平三条十三丁目3番5号28階', '1996-05-27', 0, 0, 'chsw', '2015-06-23', 'cheng801', '2005-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS168021233716', '杜慧敏', 0, '+1 213-721-9792', 2, '070740218870670448', '978 Grape Street Suite 14, Los Angeles, CA 90002, United States', '1996-07-14', 0, 0, 'to8', '2017-06-04', 'waimanto6', '2020-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS348374880638', '于宇宁', 1, '+81 66-173-8755', 4, '662345265377138927', '47-kai, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1991-02-28', 0, 0, 'yuy', '2019-09-13', 'yunyu', '2008-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS148544405433', 'Jean Davis', 1, '+81 11-433-7715', 2, '262488909258079456', '日本札幌白石区菊水三条五丁目2番11号47号室', '1985-08-19', 0, 0, 'davisjean214', '2013-03-08', 'jeandavi', '2018-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS624766874065', '洪安琪', 0, '+1 718-503-9817', 3, '168805871359248975', '602 Flatbush Ave Apt 22, Brooklyn, NY 11225, United States', '1994-02-27', 0, 0, 'hung131', '2016-09-16', 'hok8', '2012-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS962124384759', '何榮發', 0, '+81 90-8138-4058', 3, '166363139292660912', '40-kai, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1987-05-15', 0, 0, 'howf', '2019-08-16', 'hwf919', '2016-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS484108365930', 'Brenda Silva', 0, '+81 80-5286-2346', 2, '200029696915591196', '18F, 16 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1991-10-04', 0, 0, 'brenda4', '2019-03-08', 'sbrenda', '2013-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS186029838270', '菊地優奈', 0, '+1 838-018-5940', 0, '418326216425567141', '168 Central Avenue Suite 2, Albany, NY 12206, United States', '1995-03-02', 0, 0, 'ykikuchi', '2014-08-15', 'yunakiku8', '2013-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS214065789550', '松田悠人', 0, '+1 213-920-3847', 1, '528308640785427462', '35 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1997-01-31', 0, 0, 'myuto1014', '2009-03-14', 'matsuda8', '2020-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS263458548640', '田中蒼士', 0, '+86 180-2147-1923', 2, '277295631703873998', 'No.7 building, 988 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-08-30', 0, 0, 'tanaaoshi10', '2004-08-27', 'tanakaao', '2012-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS181022912897', '龚云熙', 1, '+81 80-5993-2246', 2, '163631381153012309', 'Rm. 21, 3-27-10 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1994-11-21', 0, 0, 'gyu', '2015-01-14', 'gony', '2019-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS340064720999', 'Edna Hunt', 0, '+81 70-3725-9049', 0, '602109194960201394', '日本札幌白石区菊水三条五丁目4番17号1階', '1996-07-15', 0, 0, 'ednahunt', '2002-07-30', 'edna9', '2010-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS541610299732', '郭震南', 0, '+81 70-8283-0794', 4, '484967115807465608', '日本なごやし瑞穂区河岸町四丁目20番7号15階', '1996-06-09', 0, 0, 'zhennang', '2007-10-02', 'zhennanguo', '2021-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS762907375094', '邓岚', 0, '+44 5779 709626', 2, '738426884568060861', 'Block 31, 641 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1994-08-22', 0, 0, 'deng6', '2017-08-04', 'denglan', '2003-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS120385512981', 'Laura Silva', 1, '+81 74-856-4559', 2, '023126439050020155', '11F, 1-7-3 Saidaiji Akodacho, Nara, Japan', '1994-06-12', 0, 0, 'silaura', '2010-05-27', 'lsilva', '2006-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS345893105427', '石川紗良', 0, '+81 52-718-1931', 3, '840372098244734960', '19F, 3-19-17 Shimizu, Kita Ward, Nagoya, Japan', '1996-05-26', 0, 0, 'sishi', '2004-09-02', 'ishisara2005', '2000-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS048951114224', '苏子韬', 0, '+1 212-751-9658', 0, '590841303862958964', '586 Wooster Street Apartment 38, New York, NY 10012, United States', '1986-05-20', 0, 0, 'szitao727', '2001-06-23', 'zitao15', '2008-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS847135983662', 'Monica Munoz', 1, '+81 70-1447-4756', 1, '745792965203339599', '日本なごやし瑞穂区河岸町四丁目20番17号29階', '1992-05-18', 0, 0, 'mmun', '2007-06-27', 'monmunoz4', '2001-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS482683658125', '伊藤海斗', 1, '+81 80-9694-2599', 0, '938175009624714706', '5-kai, 3-27-6 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-05-25', 0, 0, 'itok', '2001-01-11', 'itkaito', '2018-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS562173687404', '蒋嘉伦', 0, '+81 66-337-2134', 1, '575898337935110485', '日本おおさかし東住吉区東田辺三丁目27番11号16階', '1988-04-22', 0, 0, 'jialun9', '2016-11-12', 'jiajialu', '2010-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS981692934204', '郑致远', 0, '+86 173-2308-4558', 0, '909068443816742575', '中国北京市延庆区028县道761号18号楼', '1996-11-21', 0, 0, 'zhengzhiyuan', '2021-07-22', 'zhzheng', '2016-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS693162058302', '田詩涵', 1, '+44 (116) 617 3681', 4, '640452399663813989', 'Flat 4, 87 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1992-08-05', 0, 0, 'tianshih90', '2016-11-08', 'tianshih', '2002-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS799147574710', '増田優奈', 1, '+81 3-4675-4490', 1, '998226828084211467', '44-kai, 5-2-3 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-07-08', 0, 0, 'yunamasuda', '2008-10-14', 'yunam', '2008-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS629735480210', '宣世榮', 0, '+44 (1865) 28 5514', 1, '699100520637298291', 'Block 25, 780 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1986-03-27', 0, 0, 'saiwingh', '2005-10-10', 'hsusaiwing', '2015-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS824741153624', '鄧國賢', 0, '+86 151-4497-5047', 4, '446058727670190495', 'Room 43, CR Building, 934 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1995-01-07', 0, 0, 'kyta4', '2006-09-05', 'tang404', '2016-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS919837948542', '西村愛梨', 0, '+81 52-713-9434', 2, '033606650611018875', '46F, 3-19-4 Shimizu, Kita Ward, Nagoya, Japan', '1998-06-05', 0, 0, 'airinishimura', '2000-06-18', 'nairi', '2014-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS900833005754', '王惠妹', 1, '+86 760-3557-9582', 1, '136224418014897552', 'Room 16, 408 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1989-06-29', 0, 0, 'wong9', '2007-04-19', 'hmwong56', '2005-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS382590766803', '邓子韬', 0, '+81 66-543-0420', 2, '828964552416366206', '日本おおさかし平野区加美東四丁目9番7号2階', '1989-01-04', 0, 0, 'zitdeng', '2007-10-26', 'dengzitao81', '2014-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS016189568363', '前田美緒', 1, '+81 74-179-7426', 3, '373928588820787970', '37-kai, 3-9-19 Gakuenminami, Nara, Japan', '1993-01-05', 0, 0, 'mioma68', '2003-10-08', 'maedamio1956', '2000-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS206907258691', '朱慧嫻', 0, '+81 70-7741-3422', 2, '574263508021426253', 'Rm. 10, 2-1-18 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1996-09-08', 0, 0, 'cwh1945', '2006-02-20', 'chuwaihan', '2003-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS855100851411', 'Theodore Anderson', 0, '+81 11-815-7419', 2, '728988759839237283', '日本札幌白石区菊水三条五丁目2番10号43号室', '1992-10-30', 0, 0, 'tanderson1946', '2005-06-20', 'atheodore', '2006-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS212329398989', 'Kevin Butler', 1, '+81 66-567-1881', 1, '597188648611031082', '22F, 3-27-3 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1997-03-05', 0, 0, 'butlerkevin1001', '2000-03-30', 'kebutler', '2021-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS637002112788', '郝晓明', 0, '+1 312-442-9535', 2, '340347632046913143', '437 Pedway Apt 26, Chicago, IL 60601, United States', '1993-09-05', 0, 0, 'xih', '2006-05-30', 'xihao', '2001-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS659878188765', '平野玲奈', 1, '+44 5951 018773', 1, '131055638026356424', 'No.25 Main building, 454 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1990-09-22', 0, 0, 'hirena', '2020-03-24', 'hiranr1957', '2000-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS961175593775', '邱致远', 0, '+86 21-905-9644', 3, '483543842065486509', 'No.35 building, 657 Binchuan Rd, Minhang District, Shanghai, China', '1998-05-09', 0, 0, 'qzhiyuan', '2017-08-19', 'qizhiyu', '2000-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS258600439781', '梁發', 0, '+1 838-058-6987', 3, '175330359888051451', '569 Central Avenue Apartment 41, Albany, NY 12205, United States', '1989-12-03', 0, 0, 'fatleung', '2012-01-03', 'fatleung', '2006-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS706890068014', '洪心穎', 1, '+86 153-7995-0230', 2, '868431626519338364', '中国东莞坑美十五巷524号华润大厦44室', '1989-05-17', 0, 0, 'husumwing3', '2003-11-16', 'swhu10', '2017-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS312481256250', '山本花', 0, '+86 136-2669-1679', 2, '423050008379273688', '中国深圳罗湖区清水河一路935号华润大厦19室', '1986-03-26', 0, 0, 'hana9', '2016-10-31', 'hayamamoto13', '2010-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS225236216274', '梁岚', 0, '+86 28-529-3355', 3, '347978118476153498', '中国成都市成华区双庆路357号45栋', '1995-07-11', 0, 0, 'lan4', '2018-05-04', 'lanliang71', '2014-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS257729496334', '杜睿', 0, '+1 330-830-5033', 0, '322670531390760745', '97 Collier Road Apt 48, Akron, OH 44320, United States', '1992-05-31', 0, 0, 'rui4', '2010-08-28', 'du2', '2015-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS502269363615', '沈子韬', 0, '+86 10-5696-7468', 0, '107797592201075093', '46F, 491 Dong Zhi Men, Dongcheng District, Beijing, China', '1988-05-31', 0, 0, 'shezitao', '2020-12-25', 'zishen', '2003-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS575874212644', 'Alan Bell', 0, '+1 212-481-4777', 2, '363783017537565591', '434 Canal Street 3rd Floor, New York, NY 10013, United States', '1988-12-28', 0, 0, 'alanbel5', '2011-09-27', 'ba97', '2020-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS944665701973', '彭詩涵', 1, '+44 (1223) 75 6638', 2, '922570030352579622', 'Flat 40, 377 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1991-09-01', 0, 0, 'shihan00', '2008-05-28', 'shipeng', '2010-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS428393791306', '武云熙', 0, '+81 90-1825-2512', 3, '854985429817345184', '47F, 3-9-19 Gakuenminami, Nara, Japan', '1990-06-09', 0, 0, 'wuyun', '2000-12-26', 'yuwu89', '2012-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS506998557445', '高橋和真', 0, '+86 189-9203-3200', 3, '418569947825399068', 'No.33 building, No. 778, Shuangqing Rd, Chenghua District, Chengdu, China', '1996-03-17', 0, 0, 'takahashi70', '2015-11-08', 'kazumat', '2012-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS335879406364', '常安琪', 1, '+81 52-688-4654', 1, '834372081880310705', '37F, 3-19-3 Shimizu, Kita Ward, Nagoya, Japan', '1997-03-12', 0, 0, 'achang', '2020-11-13', 'changa', '2019-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS716753141672', '戴淑怡', 1, '+86 139-2886-8476', 0, '643988423301806121', '中国深圳龙岗区布吉镇西环路950号华润大厦27室', '1991-05-17', 0, 0, 'sydai', '2018-10-22', 'dai531', '2019-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS897136064649', '中森湊', 1, '+86 130-9939-6186', 2, '071614283741892197', '中国东莞珊瑚路945号21楼', '1989-12-07', 0, 0, 'minanakamori', '2008-07-09', 'minaton', '2002-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS071491408659', '段宇宁', 0, '+86 186-7332-1789', 1, '790685574097426071', '中国东莞环区南街二巷555号4楼', '1990-04-16', 0, 0, 'duan9', '2017-02-28', 'dyuni', '2005-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS533340911435', '葉發', 0, '+86 160-5186-6275', 2, '877252173288069966', '中国深圳福田区景田东一街886号17栋', '1990-12-03', 0, 0, 'yipfat1015', '2010-09-02', 'fyip', '2006-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS309335610699', '邵云熙', 0, '+81 11-434-9638', 3, '660961786355043907', '日本札幌白石区菊水三条五丁目2番14号28階', '1987-05-22', 0, 0, 'shao02', '2004-10-05', 'shao44', '2020-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS859262674836', '杉山絢斗', 1, '+86 163-4627-4929', 2, '080088953554301618', '中国广州市白云区机场路棠苑街五巷455号10楼', '1990-06-02', 0, 0, 'sugiyama1947', '2002-07-17', 'say', '2001-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS923704849620', '高詩涵', 0, '+81 90-3042-5214', 2, '126888854746739527', '日本札幌豊平区豊平三条十三丁目3番15号10号室', '1996-12-10', 0, 0, 'gshihan4', '2003-11-05', 'gs816', '2017-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS680330479277', 'Cheryl Palmer', 1, '+81 52-982-4072', 0, '971611160772820980', '日本なごやし熱田区千年二丁目5番15号4階', '1991-12-20', 0, 0, 'palmer1983', '2016-06-01', 'palmerch', '2002-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS505116621592', '成家文', 1, '+81 70-5387-7915', 3, '088217928081790695', '日本東京中央区銀座三丁目12番12号43階', '1993-04-22', 0, 0, 'skm', '2011-10-06', 'shinkaman731', '2020-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS499707812083', 'Jack Ryan', 0, '+81 80-4648-3029', 3, '874645073799941993', '日本ならし西大寺赤田町一丁目7番1号33階', '1992-03-09', 0, 0, 'ryanjac4', '2021-01-18', 'ryanj', '2015-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS999695135717', '刘晓明', 0, '+44 7306 180094', 0, '577550140618502634', 'Block 23, 104 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-09-13', 0, 0, 'xiaomingliu2012', '2000-04-24', 'xiaomingliu', '2006-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS190798849231', 'Cheryl Graham', 0, '+1 838-481-6141', 0, '945087825611880670', '771 State Street 3rd Floor, Albany, NY 12203, United States', '1989-12-17', 0, 0, 'grahamcheryl', '2009-09-15', 'cherylgra20', '2018-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS177562347392', '今井美咲', 1, '+86 191-1937-3139', 4, '638223338931002713', '中国深圳龙岗区学园一巷542号华润大厦45室', '1988-09-17', 0, 0, 'imai412', '2014-04-17', 'imaimis', '2019-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS682349794445', 'Bryan Martinez', 1, '+81 11-789-2235', 1, '147712081306375013', '38F, 5-2-16 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-11-28', 0, 0, 'bryanmartinez6', '2013-02-27', 'martinezb', '2018-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS839294060382', 'Jerry Freeman', 0, '+86 20-2561-3470', 4, '731654180328110743', 'No.34 building, 905 Jiangnan West Road, Haizhu District, Guangzhou, China', '1998-10-21', 0, 0, 'freemanje', '2016-09-02', 'jerryfree', '2002-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS492523550611', '沈致远', 1, '+81 3-9903-8069', 3, '527214314312125916', '11F, 2-3-8 Yoyogi, Shibuya-ku, Tokyo, Japan', '1995-12-17', 0, 0, 'zhiyuan92', '2010-12-17', 'zhiyuan205', '2010-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS284938072490', '陶子异', 1, '+86 10-6056-9924', 0, '176496639292799779', 'Room 3, CR Building, 711 Yueliu Rd, Fangshan District, Beijing, China', '1990-04-23', 0, 0, 'tziyi', '2008-01-04', 'tao9', '2015-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS883994668450', '董杰宏', 1, '+44 7325 952146', 3, '034674272427639938', 'No.27 Main building, 426 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1998-02-04', 0, 0, 'dongj', '2000-06-04', 'jiehongdon1001', '2007-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS292796741337', 'Jessica Martinez', 0, '+81 66-144-9180', 1, '764283484388593424', '44-kai, 2-1-15 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1986-07-19', 0, 0, 'martinezjessi', '2007-12-28', 'jessmar', '2015-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS435523132823', 'Pamela Perez', 0, '+81 74-049-4039', 4, '041672269861224817', '31F, 19 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-07-22', 0, 0, 'pap02', '2013-10-31', 'perezp', '2018-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS302888572320', '田子韬', 1, '+86 160-6274-7558', 3, '066911035195571165', 'No.41 building, 983 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1991-12-29', 0, 0, 'tzi801', '2007-04-10', 'ztian', '2003-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS534309173532', '伊藤大地', 1, '+86 755-4196-5166', 3, '568579526069813902', '中国深圳福田区景田东一街939号21栋', '1993-05-12', 0, 0, 'itdai', '2006-06-16', 'ito4', '2008-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS351785221074', 'Melissa Morgan', 0, '+1 718-839-2659', 1, '688356575161109796', '440 Columbia St Apartment 26, Brooklyn, NY 11231, United States', '1992-12-21', 0, 0, 'mmorg', '2010-06-08', 'melissamo67', '2012-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS116549175394', '孟晓明', 1, '+44 (116) 487 4185', 2, '067833810404323684', 'Unit 11, Oxford Eco Centre, 337 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1988-12-17', 0, 0, 'xm83', '2003-12-31', 'xm131', '2004-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS819539983145', 'Aaron Morris', 1, '+1 212-004-4759', 3, '644056954060148535', '637 Bank Street Apartment 8, New York, NY 10014, United States', '1996-01-11', 0, 0, 'aaron1952', '2002-04-04', 'aaronmorr', '2017-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS731403879293', '大野大和', 1, '+81 3-0204-3436', 2, '571644302198670647', '日本東京中央区銀座三丁目12番15号24階', '1998-04-18', 0, 0, 'oyamato', '2003-05-19', 'yamatoono', '2015-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS688907816467', '青木樹', 1, '+81 3-9791-5088', 0, '041302460711730840', '日本東京品川区東五反田五丁目2番10号7階', '1986-06-16', 0, 0, 'itsao47', '2002-09-18', 'aokiitsuki7', '2005-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS574078647345', 'Sara Mason', 0, '+1 838-912-6754', 3, '932119888093875729', '272 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1985-04-12', 0, 0, 'masonsara', '2005-06-20', 'mason5', '2017-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS108353533426', '刘子韬', 0, '+86 769-2044-6657', 3, '783005854078834663', '中国东莞东泰五街495号华润大厦19室', '1995-09-12', 0, 0, 'zitaliu', '2012-04-29', 'liuz10', '2019-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS451536463516', '車曉彤', 1, '+1 330-792-3685', 2, '452353713552908093', '389 Riverview Road Apt 28, Akron, OH 44313, United States', '1996-02-17', 0, 0, 'hiutungche8', '2008-10-31', 'hiutch', '2012-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS378025532178', '坂本優奈', 0, '+1 838-190-8514', 1, '114719077947821502', '56 Lark Street Apartment 13, Albany, NY 12210, United States', '1985-08-28', 0, 0, 'sayun', '2005-04-17', 'yuna10', '2013-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS540587024557', 'Louise Sullivan', 1, '+44 (151) 426 4103', 4, '898015414302293933', 'Unit 13, Oxford Eco Centre, 580 Hanover St, Liverpool, L1 4AF, United Kingdom', '1992-11-10', 0, 0, 'louisesu4', '2019-02-19', 'sullilo', '2021-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS241776371635', '尹璐', 1, '+81 52-122-5161', 4, '917702190463003778', '日本なごやし守山区瀬古東二丁目171番10号15号室', '1993-05-29', 0, 0, 'lu621', '2003-12-21', 'lu904', '2018-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS469120260710', '譚杰倫', 0, '+86 21-809-2267', 2, '826206392630967629', '中国上海市闵行区宾川路14号19室', '1990-02-04', 0, 0, 'chiehlunt2002', '2019-01-12', 'tacl1', '2005-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS703001372580', '馮志明', 1, '+86 755-511-3532', 1, '104028786678406888', '1F, 91 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1987-07-28', 0, 0, 'fungchiming', '2008-01-16', 'cmfung', '2005-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS852046982124', 'Linda Crawford', 0, '+81 3-2513-9864', 1, '477179015676420016', '日本東京渋谷区代々木二丁目3番5号33号室', '1992-10-06', 0, 0, 'licra10', '2001-12-08', 'lindacrawford', '2020-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS061045098614', '梁致远', 1, '+1 614-424-2538', 0, '494360423488443107', '702 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1985-06-22', 0, 0, 'liangzh709', '2020-09-30', 'liang1', '2017-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS367968594570', '龚致远', 1, '+44 5627 783292', 1, '252055769301061397', 'No.28 Main building, 211 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1997-11-18', 0, 0, 'zhiyuan6', '2018-04-17', 'gozhiyuan805', '2008-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS346477014879', '邱潤發', 0, '+1 330-901-7777', 0, '754023443432907430', '864 Ridgewood Road Suite 27, Akron, OH 44321, United States', '1990-05-31', 0, 0, 'yauyf', '2002-07-29', 'yunfatyau', '2012-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS205421657456', '崔安琪', 0, '+86 131-3329-2041', 3, '878123421321042119', '中国北京市朝阳区三里屯路890号25栋', '1987-11-15', 0, 0, 'cuia305', '2002-02-23', 'cuia2', '2006-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS194169216859', '竹内紗良', 1, '+44 (121) 171 6828', 1, '828314342920250807', 'Unit 25, Oxford Eco Centre, 834 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1997-03-09', 0, 0, 'takeus', '2006-01-03', 'taksara', '2019-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS652572511386', '酒井陽菜', 1, '+81 3-5521-9879', 3, '939155482006934101', '日本東京品川区東五反田五丁目2番7号26階', '1997-06-26', 0, 0, 'hinasa', '2022-02-10', 'sahina', '2005-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS473883376739', '三浦蓮', 1, '+81 74-512-8316', 3, '610750886970860665', '日本ならし大和郡山市本庄町一丁目1番16号30号室', '1996-12-01', 0, 0, 'rem8', '2016-06-19', 'miurren4', '2013-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS967378151860', 'Debbie Hernandez', 0, '+1 212-383-5866', 3, '439389671023630910', '849 Wooster Street Apt 16, New York, NY 10012, United States', '1986-06-29', 0, 0, 'debbie1024', '2018-01-20', 'debbiehernandez411', '2012-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS342536795492', '田睿', 0, '+1 838-234-1825', 1, '961298402933679638', '526 State Street 3rd Floor, Albany, NY 12203, United States', '1997-12-16', 0, 0, 'trui', '2006-06-07', 'ruit', '2007-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS866507069953', 'Carolyn Medina', 0, '+44 (116) 240 0760', 3, '248442862665706491', 'Flat 31, 961 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1985-07-25', 0, 0, 'medc', '2014-08-09', 'mcarolyn6', '2004-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS099740999193', '余詩涵', 1, '+1 718-983-9776', 2, '029859221074333961', '886 Columbia St Apt 16, Brooklyn, NY 11231, United States', '1985-07-21', 0, 0, 'shihanyu321', '2017-11-16', 'sy3', '2020-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS437245366048', '工藤優奈', 1, '+81 70-5989-2192', 1, '412751475156449900', '15F, 1-7-20 Omido, Higashiosaka, Osaka, Japan', '1985-10-26', 0, 0, 'yk1', '2006-06-17', 'yunakudo320', '2002-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS128028097397', '佐藤光莉', 1, '+81 90-2253-0912', 3, '899493643633765169', '日本なごやし北区清水三丁目19番1号2階', '1998-09-20', 0, 0, 'hikaris', '2020-08-17', 'hsato82', '2019-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS136890595273', 'Judith Brown', 0, '+86 10-918-2632', 2, '762801703332308134', '42F, 468 028 County Rd, Yanqing District, Beijing, China', '1987-04-02', 0, 0, 'judibrown5', '2005-04-30', 'judbr74', '2018-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS977100190492', '孫心穎', 0, '+81 11-848-0216', 0, '619217802255763196', '日本札幌中央区宮の森四条六丁目1番4号23階', '1992-01-20', 0, 0, 'hsuansw5', '2020-01-16', 'swhsuan', '2001-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS495543855873', '杜杰宏', 0, '+1 718-863-3678', 1, '086670155463791513', '735 Columbia St Suite 4, Brooklyn, NY 11231, United States', '1993-06-29', 0, 0, 'jiehongdu3', '2001-08-03', 'jiehong126', '2017-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS927536945875', '陶學友', 1, '+44 5871 440098', 0, '232404254902148971', 'Unit 30, Oxford Eco Centre, 792 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1986-10-22', 0, 0, 'thy8', '2004-01-09', 'hytao1956', '2008-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS335766914821', 'Douglas Jimenez', 0, '+44 (1865) 40 8477', 3, '665292380188275966', 'Block 19, 72 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1993-10-04', 0, 0, 'douglasj4', '2011-09-01', 'jimenez2008', '2020-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS791407707080', 'Herbert Vargas', 1, '+86 21-7631-9720', 3, '757569197582984322', 'Room 43, CR Building, 886 Ganlan Rd, Pudong, Shanghai, China', '1998-04-07', 0, 0, 'herbertv', '2016-07-15', 'hvargas', '2011-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS483148360399', '村田絢斗', 0, '+44 7927 367764', 2, '626882151825755567', 'Unit 9, Oxford Eco Centre, 506 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1986-07-07', 0, 0, 'ayamurata80', '2007-03-22', 'muratayato8', '2020-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS159779694250', 'Shawn Crawford', 0, '+86 769-323-8658', 4, '229383890377393110', '中国东莞坑美十五巷353号华润大厦47室', '1991-09-15', 0, 0, 'shawn50', '2006-09-25', 'shc820', '2012-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS158951887305', 'Francisco Long', 1, '+81 70-6465-7174', 2, '670865892366899492', '日本ならし学園南三丁目9番17号26階', '1985-12-16', 0, 0, 'francisco2', '2005-04-01', 'fralong', '2013-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS440243764149', '木下悠人', 0, '+86 755-0410-9940', 3, '236552443589622273', '中国深圳福田区深南大道678号16栋', '1989-01-26', 0, 0, 'kinoshitay618', '2009-08-15', 'yuto87', '2014-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS436231697604', '高田大輔', 0, '+44 7081 387604', 1, '728581668041612205', 'Block 10, 326 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1988-06-30', 0, 0, 'takdaisuke06', '2001-07-24', 'takadadaisuke10', '2007-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS675413569090', '钱子异', 1, '+1 838-499-7083', 1, '097536972392023787', '483 Broadway Apt 20, Albany, NY 12207, United States', '1991-02-27', 0, 0, 'ziyiqian97', '2005-06-13', 'ziyi10', '2021-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS928331920310', '戴杰宏', 1, '+44 5242 680665', 2, '520989678339097178', 'No.1 Main building, 934 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-01-20', 0, 0, 'daijiehong', '2021-09-30', 'djiehong1947', '2019-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS823330171054', '柴田舞', 1, '+86 755-628-5833', 1, '416045738218745618', '中国深圳福田区深南大道420号20号楼', '1985-09-30', 0, 0, 'smai', '2014-08-25', 'maishib', '2018-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS018100589445', '马嘉伦', 0, '+81 80-0400-7974', 1, '110275691780339596', '日本札幌清田区真栄四条五丁目19番5号26階', '1988-11-15', 0, 0, 'jialunma', '2008-12-25', 'maji1958', '2004-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS893027609205', '薛子异', 0, '+86 137-8729-9423', 1, '590087588716895137', '中国中山天河区大信商圈大信南路980号19室', '1995-03-22', 0, 0, 'ziyi4', '2012-05-09', 'ziyix', '2009-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS479448282572', 'Maria Burns', 1, '+1 718-645-3542', 3, '893390867310777215', '265 Flatbush Ave Suite 30, Brooklyn, NY 11225, United States', '1987-10-10', 0, 0, 'mab', '2013-01-24', 'mariab', '2020-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS014725092659', '梁青雲', 0, '+86 10-8506-6141', 0, '819085697294803573', '中国北京市东城区东单王府井东街421号24室', '1989-06-03', 0, 0, 'leunchingwan', '2016-09-29', 'leungching', '2020-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS967645817438', '上野悠人', 0, '+1 212-432-4457', 4, '489908741183877614', '498 Canal Street Suite 45, New York, NY 10013, United States', '1993-08-13', 0, 0, 'yuueno75', '2007-01-19', 'uenoyuto1', '2000-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS896069781660', '蔣嘉欣', 1, '+81 90-1584-5029', 2, '556326405151098143', '日本東京中央区銀座三丁目12番13号37号室', '1986-02-18', 0, 0, 'kyc4', '2010-08-01', 'karyanchiang718', '2003-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS927658346971', 'Patricia Cole', 0, '+81 52-997-5531', 2, '190216997169820320', '16-kai, 3-19-12 Shimizu, Kita Ward, Nagoya, Japan', '1998-11-18', 0, 0, 'patriciacole5', '2008-07-26', 'patricia6', '2008-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS514123333234', 'Timothy Brooks', 0, '+86 147-4833-3674', 2, '441817607934880779', '中国广州市白云区机场路棠苑街五巷240号华润大厦7室', '1986-04-08', 0, 0, 'broot', '2000-05-03', 'timothybrooks98', '2020-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS371267916949', '菅原彩乃', 0, '+86 186-1557-3238', 1, '254374551007220977', 'Room 5, CR Building, 853 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1985-02-05', 0, 0, 'sa80', '2005-02-10', 'sugawaraayan6', '2008-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS592200870371', '遠藤凛', 1, '+81 11-457-2995', 3, '793755891870508177', 'Rm. 12, 5-19-18 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-04-10', 0, 0, 'endorin', '2018-11-11', 'endorin319', '2015-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS421806396667', '佐藤陸', 1, '+86 160-5809-6129', 1, '861506143194995117', '中国上海市闵行区宾川路4号2室', '1996-05-04', 0, 0, 'sato15', '2012-11-20', 'satoriku90', '2005-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS110824095485', 'Nicholas Aguilar', 0, '+81 11-294-8917', 0, '579393655510254826', '6F, 5-2-11 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1996-10-04', 0, 0, 'nicholas80', '2008-05-30', 'aguilarnicholas', '2006-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS857602158557', 'Luis Shaw', 1, '+86 755-640-9479', 4, '988724186986290024', '中国深圳龙岗区布吉镇西环路685号华润大厦39室', '1995-05-29', 0, 0, 'luis10', '2019-02-27', 'shaw09', '2022-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS049894457598', '池田光莉', 1, '+1 718-180-8393', 2, '196910638654558348', '995 Nostrand Ave Apartment 2, Brooklyn, NY 11216, United States', '1987-11-01', 0, 0, 'hikariked', '2009-07-18', 'hii06', '2009-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS457535414100', '河野紗良', 1, '+1 838-407-8729', 4, '442767718490881257', '954 State Street Suite 2, Albany, NY 12203, United States', '1995-10-26', 0, 0, 'skono', '2022-01-04', 'ks912', '2017-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS355655550457', '高橋葵', 1, '+81 66-801-8163', 2, '580440483020446891', '日本おおさかし西成区出城一丁目1番7号37階', '1990-05-19', 0, 0, 'takaoi96', '2007-01-26', 'aoita', '2009-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS378413589427', 'Irene Clark', 0, '+1 212-048-1909', 1, '462945437689715067', '324 Wooster Street Suite 28, New York, NY 10012, United States', '1988-12-30', 0, 0, 'clark10', '2000-01-21', 'clir', '2010-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS397720755355', '廖安琪', 0, '+1 614-003-6135', 3, '714386564628877184', '13 Diplomacy Drive Suite 46, Columbus, GA 43228, United States', '1997-12-04', 0, 0, 'liaoan6', '2017-08-05', 'anqi616', '2012-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS194687362429', '蒋宇宁', 1, '+86 177-2330-4413', 2, '634441584072878475', '中国深圳福田区深南大道489号9室', '1988-03-17', 0, 0, 'yuj16', '2016-12-02', 'yjiang', '2001-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS873341822767', '高橋瑛太', 0, '+44 7331 673287', 3, '267717015841262491', 'Unit 18, Oxford Eco Centre, 159 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1987-06-03', 0, 0, 'takahashiei', '2000-09-28', 'eitatakahashi4', '2010-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS472163916919', '近藤美月', 0, '+81 90-2573-2241', 3, '072666517782405762', '日本札幌豊平区豊平三条十三丁目3番14号15階', '1988-10-09', 0, 0, 'mitskond', '2010-02-28', 'kondo49', '2005-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS357288515439', 'Amanda Reed', 0, '+86 162-4869-8545', 0, '237336468769317251', 'No.1 building, 614 East Wangfujing Street, Dongcheng District , Beijing, China', '1986-09-25', 0, 0, 'reedamanda1944', '2000-08-12', 'reamanda', '2008-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS834005441936', 'Jerry Jordan', 1, '+86 165-8788-0650', 3, '543094015184283856', 'Room 11, 23 Hongqiao Rd., Xu Hui District, Shanghai, China', '1986-03-04', 0, 0, 'jjerry1119', '2017-05-28', 'jordanjerry', '2021-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS162558772811', '松本玲奈', 1, '+81 70-0442-7939', 0, '952069644263447884', '日本東京品川区東五反田五丁目2番6号39号室', '1985-12-12', 0, 0, 'mrena', '2001-04-29', 'remat', '2005-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS276211338786', '黄晓明', 1, '+44 7772 077379', 2, '506261010084065989', 'Unit 23, Oxford Eco Centre, 192 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1997-01-14', 0, 0, 'huang58', '2013-06-06', 'xiaominghuang', '2018-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS179505774869', '鄭國榮', 1, '+44 (116) 549 0653', 1, '947788306092771654', 'Unit 30, Oxford Eco Centre, 709 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1985-08-24', 0, 0, 'kwokwingc2014', '2008-09-21', 'chengkw', '2021-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS127685772657', '鄧麗欣', 1, '+86 755-0192-7671', 3, '887305768531195661', '中国深圳龙岗区布吉镇西环路853号34室', '1994-09-26', 0, 0, 'lyta41', '2012-05-08', 'laiyant217', '2016-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS480016647418', '石川蒼士', 1, '+1 212-460-6851', 1, '636704342404451118', '811 Fifth Avenue Apartment 22, New York, NY 10017, United States', '1996-04-14', 0, 0, 'aoshishikawa', '2020-06-18', 'aishikawa7', '2015-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS466196768053', '山口愛梨', 1, '+86 769-532-3516', 2, '896392198151494319', '中国东莞珊瑚路567号10楼', '1995-03-22', 0, 0, 'airiy', '2006-02-07', 'yamaguchi7', '2009-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS402510303380', 'Lawrence Gonzalez', 0, '+1 614-929-5330', 0, '695146739601169587', '33 Diplomacy Drive Apartment 49, Columbus, GA 43228, United States', '1991-12-10', 0, 0, 'gonzalez3', '2009-08-09', 'lawrgon', '2019-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS075095409930', '橋本陸', 0, '+86 10-5795-6745', 2, '086574957941899163', 'Room 6, CR Building, 778 Sanlitun Road, Chaoyang District, Beijing, China', '1998-01-14', 0, 0, 'hriku', '2018-09-29', 'hriku6', '2017-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS800646848689', '史岚', 1, '+86 10-228-7387', 3, '771326121563841073', 'Room 6, 553 Sanlitun Road, Chaoyang District, Beijing, China', '1993-01-18', 0, 0, 'shilan48', '2016-04-07', 'lanshi', '2002-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS511710473424', '郭睿', 0, '+81 52-212-5275', 4, '643566636903200454', '日本なごやし北区清水三丁目19番12号31階', '1998-12-02', 0, 0, 'guo8', '2021-04-21', 'ruiguo', '2000-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS947209866541', '樊淑怡', 1, '+1 212-332-4644', 3, '835582817354306593', '53 Bank Street Apartment 36, New York, NY 10014, United States', '1986-08-07', 0, 0, 'fansy57', '2008-10-01', 'sukyee3', '2009-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS587612938895', '汪岚', 1, '+44 5923 449833', 4, '892633311948488067', 'Unit 33, Oxford Eco Centre, 515 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1998-01-27', 0, 0, 'wang6', '2005-08-31', 'wanglan303', '2007-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS899821110071', 'Barbara Robinson', 1, '+81 80-6982-5439', 4, '378698729075356885', '日本おおさかし西成区出城一丁目1番4号44号室', '1986-10-25', 0, 0, 'barr', '2017-12-22', 'br5', '2002-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS436161755629', '千葉悠人', 0, '+81 80-0473-8834', 1, '833376930151431548', 'Rm. 29, 13-3-10 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1994-04-26', 0, 0, 'yuch8', '2009-03-15', 'chibay', '2003-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS531884245533', 'Scott Hicks', 1, '+81 90-3507-8945', 1, '615974679577467047', '1-kai, 3-9-4 Gakuenminami, Nara, Japan', '1987-08-11', 0, 0, 'scohicks', '2010-01-26', 'hicksscot82', '2001-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS958590634572', '樊世榮', 1, '+86 10-065-2479', 4, '782787573129754276', '19F, 169 Sanlitun Road, Chaoyang District, Beijing, China', '1993-08-23', 0, 0, 'fasw', '2004-01-05', 'swfan', '2003-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS595105986990', '坂本海斗', 1, '+1 718-344-4085', 0, '232885015677960082', '204 Columbia St Apartment 13, Brooklyn, NY 11231, United States', '1987-12-20', 0, 0, 'kaisa', '2015-06-23', 'kaitos5', '2009-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS246586841059', '徐云熙', 1, '+81 90-7275-4360', 3, '709086111330874052', '日本札幌豊平区豊平三条十三丁目3番10号40階', '1989-01-10', 0, 0, 'yuxu', '2021-02-17', 'yunxi76', '2011-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS474417725032', '阿部七海', 1, '+86 21-4650-2067', 3, '851428914648225223', '中国上海市浦东新区健祥路818号华润大厦42室', '1995-04-10', 0, 0, 'nanami7', '2005-03-15', 'nabe', '2008-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS228794823173', '容國榮', 0, '+81 3-6477-3422', 3, '993123912968197870', '38-kai, 3-15-15 Ginza, Chuo-ku, Tokyo, Japan', '1985-06-30', 0, 0, 'yungkwokwing', '2013-02-04', 'kwokwingy5', '2000-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS453991322155', '阎震南', 1, '+81 80-6238-4554', 2, '046457547722524112', '日本札幌厚別区上野幌一条二丁目1番17号42階', '1994-11-13', 0, 0, 'zhennya14', '2007-11-24', 'zhenny', '2013-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS121878856633', '贺安琪', 0, '+86 151-4682-0189', 0, '017071728350795953', '中国广州市越秀区中山二路778号1楼', '1998-11-06', 0, 0, 'heanqi616', '2010-11-27', 'han', '2006-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS577740391714', '譚德華', 0, '+81 66-313-7978', 3, '936410693823470124', '日本おおさかし西成区出城一丁目1番10号47階', '1986-07-18', 0, 0, 'twtam', '2012-10-14', 'tamtakwah114', '2018-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS882859138620', '市川葵', 1, '+81 3-9034-2907', 0, '620221228083548954', '日本東京品川区東五反田五丁目2番7号33号室', '1995-12-18', 0, 0, 'ichikawaaoi', '2006-01-28', 'ichikawaaoi', '2010-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS845945003273', '田中架純', 1, '+86 760-843-7455', 3, '821086165075411153', 'Room 18, CR Building, 927 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1998-12-29', 0, 0, 'tanak', '2014-07-22', 'tanakakasu', '2002-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS681951148135', '岡本詩乃', 1, '+86 144-4271-4596', 2, '816879532243111000', 'No.26 building, 902 Jingtian East 1st St, Futian District, Shenzhen, China', '1999-01-17', 0, 0, 'okamotoshino99', '2017-08-21', 'oshino', '2017-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS733474929400', '蔡秀英', 0, '+81 70-3531-1157', 1, '713093409998312932', '25-kai, 1-1-12 Deshiro, Nishinari Ward, Osaka, Japan', '1986-03-25', 0, 0, 'xiuyca1', '2007-04-04', 'xic', '2016-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS319127140671', 'Virginia Rose', 0, '+86 131-1663-0510', 3, '928023406439928962', 'No.14 building, 22 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1988-05-16', 0, 0, 'virginiar', '2001-04-07', 'rvirginia', '2005-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS500063895812', '元家文', 0, '+1 838-879-1598', 1, '016329453288760892', '396 State Street Suite 16, Albany, NY 12203, United States', '1991-06-18', 0, 0, 'kmyuen', '2008-05-02', 'kamany', '2011-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS655504722605', 'Tammy Ramos', 1, '+81 80-7230-8946', 1, '832296684550161294', '日本ならし学園南三丁目9番19号33階', '1989-04-07', 0, 0, 'ramostammy', '2011-01-14', 'tammy8', '2011-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS685898037673', '郭詩涵', 0, '+81 90-5575-8340', 3, '691931775299836697', '日本なごやし北区楠味鋺三丁目80番9号34号室', '1985-03-29', 0, 0, 'gushi705', '2011-02-02', 'guoshihan', '2019-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS289979303468', '田杰倫', 1, '+81 52-803-9084', 2, '286655371267425118', '日本なごやし熱田区千年二丁目5番4号10階', '1995-03-10', 0, 0, 'tincl', '2007-01-31', 'chiehlunti', '2005-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS365573434058', '常晓明', 1, '+81 70-5252-8978', 3, '730694013170083680', '43F, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1997-02-21', 0, 0, 'chxiaoming820', '2013-08-18', 'chang416', '2005-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS460530321948', '何子异', 1, '+44 5810 111263', 2, '251695057593514437', 'Block 6, 551 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1987-07-14', 0, 0, 'ziyih', '2001-09-05', 'hziy', '2010-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS440340652485', '金子結翔', 1, '+86 20-0892-0956', 4, '401078511789691431', '中国广州市白云区小坪东路350号7室', '1988-12-04', 0, 0, 'kanekoyuit', '2021-04-11', 'yuitok', '2007-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS196877903953', 'Jerry Tucker', 1, '+44 7662 793364', 1, '739888155685081975', 'Block 21, 45 Regent Street, London, W1B 2LX, United Kingdom', '1992-12-20', 0, 0, 'jet201', '2015-01-26', 'jerrytuc', '2009-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS447590054637', '袁子异', 1, '+44 7068 366462', 1, '438596328457410327', 'Block 42, 263 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1988-01-04', 0, 0, 'ziyyuan', '2014-06-20', 'yuanziyi', '2006-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS038670262336', '邵世榮', 0, '+81 90-9128-2998', 3, '767324938329465318', '6F, 1-7-15 Omido, Higashiosaka, Osaka, Japan', '1998-09-19', 0, 0, 'saiwing1991', '2015-10-07', 'saiwingsiu7', '2012-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS936426916389', '萬曉彤', 0, '+81 70-4849-8800', 2, '730290617269748988', '日本札幌中央区宮の森四条六丁目1番6号21階', '1992-03-25', 0, 0, 'htmeng63', '2000-06-25', 'hiumeng', '2011-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS052897381484', '後藤百恵', 1, '+86 190-1072-0524', 0, '037090426232815515', 'No.18 building, 684 Dongtai 5th St, Dongguan, China', '1998-12-25', 0, 0, 'mgo', '2000-10-16', 'gomomo18', '2016-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS513374097783', '許麗欣', 0, '+44 (121) 741 8452', 0, '810736036048081615', 'Unit 12, Oxford Eco Centre, 347 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1993-11-16', 0, 0, 'huily', '2014-09-23', 'lyhui', '2008-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS291364974909', '許國權', 1, '+44 5053 349148', 1, '943681232312826613', 'Unit 38, Oxford Eco Centre, 61 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-05-16', 0, 0, 'hui3', '2006-06-21', 'kwokkuen71', '2020-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS068803847103', '董云熙', 1, '+81 90-7943-2952', 3, '717401461665703799', 'Rm. 35, 3-27-14 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1995-11-01', 0, 0, 'dong825', '2002-10-19', 'dong58', '2015-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS386037777154', '邹震南', 1, '+44 (20) 5613 9306', 3, '887344598800046460', 'Block 30, 27 Hanover Street, London, W1S 1YD, United Kingdom', '1988-02-17', 0, 0, 'zzo', '2007-04-05', 'zhenzou1963', '2002-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS398019768093', 'Louis Burns', 1, '+81 11-416-0856', 3, '118890859795259248', '日本札幌厚別区上野幌一条二丁目1番2号38号室', '1988-01-24', 0, 0, 'burnsl', '2003-01-29', 'burnlouis1967', '2017-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS963833882098', '翁朝偉', 0, '+44 7027 521922', 2, '109137968431370719', 'Unit 24, Oxford Eco Centre, 753 Mosley St, Manchester, M2 3AQ, United Kingdom', '1996-04-18', 0, 0, 'chiuwai10', '2002-11-14', 'yungcw', '2001-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS541586870528', '崔霆鋒', 1, '+81 11-037-3181', 1, '962837543739230911', '5-kai, 5-19-5 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1986-05-20', 0, 0, 'tingfung3', '2010-12-31', 'choitf', '2004-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS953889002575', '中川大輔', 1, '+86 10-098-3126', 0, '325604149738943469', '中国北京市延庆区028县道310号9楼', '1991-06-27', 0, 0, 'danak416', '2015-02-06', 'nakagawa203', '2021-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS004085750383', '工藤桜', 0, '+86 769-0277-3266', 1, '729342267430214270', 'Room 28, CR Building, 810 Huanqu South Street 2nd Alley, Dongguan, China', '1988-10-14', 0, 0, 'kudos', '2006-02-18', 'sakurakudo', '2016-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS797282254596', 'Frederick Cox', 0, '+81 70-0813-3306', 3, '589426074032389715', '36F, 3-19-1 Shimizu, Kita Ward, Nagoya, Japan', '1989-11-15', 0, 0, 'cof', '2019-10-23', 'cfred909', '2008-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS673175817885', '邵浩然', 1, '+86 149-9492-5704', 0, '399856935208648955', 'No.28 building, 55 Ganlan Rd, Pudong, Shanghai, China', '1994-08-26', 0, 0, 'hysiu1984', '2016-01-24', 'hoyins', '2020-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS653988556653', '罗震南', 0, '+81 80-7046-4731', 1, '352693418193740260', '日本なごやし北区清水三丁目19番5号39階', '1987-02-11', 0, 0, 'luozhen1949', '2003-06-29', 'zhennluo1942', '2010-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS963288636323', '石田詩乃', 0, '+86 185-6296-8006', 1, '061487225242281594', 'Room 7, CR Building, 852 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1989-06-13', 0, 0, 'ishida4', '2007-12-28', 'sishida', '2009-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS802442716273', '藤安琪', 1, '+1 614-284-3260', 0, '801288261017838322', '321 Wicklow Road Apt 33, Columbus, GA 43204, United States', '1990-10-18', 0, 0, 'tang1010', '2004-12-27', 'onkat', '2004-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS405770432665', '鄭朝偉', 1, '+44 5505 547528', 2, '828093008144590640', 'Block 7, 393 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1996-08-13', 0, 0, 'chengcw2', '2007-05-06', 'chiuwaicheng', '2013-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS922498140440', '李浩然', 0, '+81 3-4508-0240', 3, '704381704290716656', '35F, 5-2-11 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1993-10-08', 0, 0, 'hoyinl', '2008-04-27', 'hoyinlee', '2018-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS011797588440', '任云熙', 0, '+81 90-7487-7026', 0, '396883169005963529', '30-kai, 3-15-14 Ginza, Chuo-ku, Tokyo, Japan', '1986-10-20', 0, 0, 'renyunxi', '2019-01-04', 'reny', '2001-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS862520029200', '高子韬', 1, '+81 70-3962-5197', 2, '335004165569746259', 'Rm. 32, 12 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1991-02-14', 0, 0, 'zitaoga1029', '2000-10-23', 'zitaogao2011', '2014-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS628687912939', '黎惠敏', 0, '+1 614-688-5519', 3, '223544985856344118', '741 East Cooke Road Suite 47, Columbus, GA 43214, United States', '1991-12-02', 0, 0, 'laiwm6', '2021-12-08', 'wml', '2000-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS154014379534', 'Eva Woods', 1, '+1 330-464-9988', 1, '275599016779566908', '794 West Market Street Apartment 5, Akron, OH 44333, United States', '1997-07-15', 0, 0, 'ew53', '2017-08-12', 'woev', '2015-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS939146002801', '阎睿', 1, '+81 70-8360-7656', 2, '929039063706265052', '日本東京品川区東五反田五丁目2番19号38階', '1992-03-17', 0, 0, 'ruiyan', '2021-06-16', 'yanr', '2007-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS489915763719', '三浦架純', 1, '+44 (1223) 68 7476', 0, '690206925997894447', 'Unit 2, Oxford Eco Centre, 323 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1998-05-14', 0, 0, 'mika', '2018-03-28', 'miurkasumi', '2014-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS647784022341', 'Christina Williams', 1, '+81 90-7417-2319', 1, '463869619998168041', '日本なごやし北区清水三丁目19番3号18号室', '1998-12-04', 0, 0, 'chrwill', '2007-09-22', 'williamsch', '2021-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS423852870540', '白慧儀', 1, '+81 11-120-4873', 3, '628799760056289236', '47F, 5-2-7 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1992-05-04', 0, 0, 'pakwy', '2011-02-24', 'pakwy', '2012-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS037798858671', '劉青雲', 0, '+81 70-0804-1432', 2, '450626360285762038', '14-kai, 4-9-8 Kamihigashi, Hirano Ward, Osaka, Japan', '1991-07-01', 0, 0, 'laucw', '2021-02-09', 'lau00', '2004-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS053022286780', '渡部花', 1, '+86 175-1575-1570', 1, '137869319501186232', '3F, 96 68 Qinghe Middle St, Haidian District, Beijing, China', '1989-07-29', 0, 0, 'hanaw2', '2009-02-09', 'hanaw', '2014-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS308505684950', '廖天榮', 0, '+86 28-849-5706', 1, '763926211995916833', 'Room 49, CR Building, No.764, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1988-07-24', 0, 0, 'liaotw47', '2006-05-21', 'tinwingliao915', '2017-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS698163826980', 'Margaret Miller', 0, '+86 760-629-5248', 4, '393932435528112091', 'Room 14, CR Building, 592 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1987-04-09', 0, 0, 'marmiller44', '2007-04-15', 'millerm', '2003-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS298371339846', '胡晓明', 1, '+86 769-660-0923', 3, '229802439373664098', '中国东莞坑美十五巷244号华润大厦14室', '1988-03-11', 0, 0, 'huxiaoming5', '2021-04-03', 'hxiaoming', '2021-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS194430280110', 'Paul Aguilar', 1, '+1 718-872-7165', 2, '299136069476925583', '226 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1996-11-25', 0, 0, 'paul66', '2012-06-18', 'paulaguilar', '2011-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS151674937056', '狄天樂', 0, '+81 3-3292-7534', 3, '764773097973007911', '日本東京港区東新橋一丁目5番15号5号室', '1993-12-07', 0, 0, 'titinlok', '2002-05-14', 'tlt', '2013-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS517466235069', '韓志明', 1, '+1 614-472-6977', 2, '002309177865884491', '791 Wicklow Road Apartment 26, Columbus, GA 43204, United States', '1989-09-19', 0, 0, 'chiming5', '2008-03-03', 'cmhan68', '2007-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS150485546900', '今井一輝', 1, '+1 838-862-7154', 1, '112507087168701370', '663 Central Avenue Suite 30, Albany, NY 12205, United States', '1997-04-02', 0, 0, 'ikkiimai2001', '2003-12-13', 'ikki1', '2010-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS153330040262', '溫淑怡', 1, '+81 74-376-1051', 4, '898760446471333792', '44F, 13 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-02-17', 0, 0, 'sukyeewa', '2012-07-02', 'wansy', '2004-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS177502426912', 'Amy Long', 0, '+1 213-206-0210', 1, '087183762276606422', '214 S Broadway Suite 3, Los Angeles, CA 90015, United States', '1994-07-22', 0, 0, 'amy1', '2011-06-13', 'amyl', '2004-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS114778603969', 'Joseph Smith', 1, '+44 7627 563260', 1, '381680312854303139', 'Block 16, 292 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1992-11-15', 0, 0, 'smith86', '2012-08-28', 'jsmi', '2016-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS631944331445', '莫睿', 0, '+81 66-179-9100', 4, '440694053198433520', '26F, 3-27-4 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1990-03-28', 0, 0, 'ruim', '2018-11-15', 'morui', '2001-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS926992165137', '钟致远', 0, '+86 142-2895-0023', 1, '880432559842394162', 'No.16 building, 725 Dong Zhi Men, Dongcheng District, Beijing, China', '1986-07-12', 0, 0, 'zhonzhi', '2020-07-07', 'zhiyuanzhong', '2017-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS662825776285', '姚晓明', 1, '+44 5548 703559', 1, '196172180504481091', 'Unit 23, Oxford Eco Centre, 172 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1989-08-19', 0, 0, 'yaoxiao', '2001-04-06', 'yxi', '2014-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS817157760847', '増田詩乃', 0, '+44 5801 637422', 1, '398029861333842555', 'No.27 Main building, 175 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1997-11-04', 0, 0, 'masshi', '2007-06-01', 'shinoma1994', '2009-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS349235846501', '傅家明', 0, '+1 718-027-0013', 1, '992983857252141250', '10 Flatbush Ave Suite 27, Brooklyn, NY 11225, United States', '1996-05-11', 0, 0, 'kmfu', '2016-12-21', 'fukm', '2019-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS129931172151', '清水絢斗', 0, '+1 614-029-8496', 2, '206691676777582473', '858 East Alley Apartment 31, Columbus, GA 43201, United States', '1985-10-04', 0, 0, 'ayatos', '2010-07-19', 'shima', '2000-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS642456134502', 'Randall Vasquez', 1, '+44 (116) 522 5020', 1, '770070903686676776', 'Unit 48, Oxford Eco Centre, 620 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1996-04-23', 0, 0, 'vasquezr12', '2010-01-22', 'vran', '2006-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS931689957680', '田中大地', 0, '+86 10-1563-9825', 1, '832012310233194976', '中国北京市海淀区清河中街68号490号25号楼', '1994-07-17', 0, 0, 'daictana', '2008-02-19', 'daicht', '2020-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS801136987860', '阿部美月', 0, '+86 10-080-0800', 0, '327394362192476751', 'No.30 building, 794 FuXingMenNei Street, XiCheng District, Beijing, China', '1988-10-11', 0, 0, 'ami', '2005-11-15', 'mitsukiabe5', '2005-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS406692644833', '白力申', 0, '+1 330-898-9133', 3, '970794866578239829', '877 Collier Road 3rd Floor, Akron, OH 44320, United States', '1995-05-22', 0, 0, 'liksunp1973', '2001-05-08', 'pakliksun99', '2019-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS962800617812', '翁麗欣', 0, '+86 198-5610-4117', 2, '752740055507265578', 'No.28 building, 931 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1998-10-20', 0, 0, 'laiyany', '2009-01-21', 'yungly46', '2004-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS876970710724', '區仲賢', 0, '+1 330-085-1075', 1, '644678422188279303', '62 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1989-10-16', 0, 0, 'cyau1221', '2016-08-17', 'auchungyin9', '2013-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS418211260692', 'Rebecca Cox', 1, '+81 90-0616-0260', 2, '857053818290327779', '日本ならし西大寺赤田町一丁目7番18号23階', '1998-10-03', 0, 0, 'rc1981', '2006-02-12', 'rebecc', '2021-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS198555367831', 'Maria Foster', 1, '+44 (1223) 39 4311', 3, '948752672826797006', 'Unit 1, Oxford Eco Centre, 3 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1996-11-22', 0, 0, 'fostermaria', '2005-07-09', 'mfo6', '2011-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS895013296860', 'Russell Webb', 1, '+86 138-6106-0915', 4, '069773365542552373', 'No.38 building, 490 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1988-10-02', 0, 0, 'russell4', '2003-06-29', 'webbrussell', '2008-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS308291851450', '徐震南', 1, '+86 10-2451-9889', 1, '139132084297719742', 'No.35 building, 465 East Wangfujing Street, Dongcheng District , Beijing, China', '1988-01-20', 0, 0, 'zhennan6', '2008-08-17', 'zhennanxu10', '2015-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS939963632119', '宣志遠', 0, '+1 718-429-3541', 2, '054686346301970752', '528 Columbia St Apartment 37, Brooklyn, NY 11231, United States', '1998-08-23', 0, 0, 'hsuachiyuen', '2020-07-16', 'chiyuenhs', '2015-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS944063902708', 'Kenneth Webb', 0, '+44 5920 776226', 2, '633228521647446518', 'Flat 30, 886 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1990-02-08', 0, 0, 'kw10', '2010-05-13', 'kennethwebb99', '2020-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS803772213664', '谷口優奈', 1, '+81 90-3494-1146', 0, '770840420497161399', '6F, 2-1-12 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1989-05-08', 0, 0, 'taniguchiyu', '2007-02-26', 'yunta', '2018-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS657032417887', 'Charlotte Black', 1, '+86 10-017-6410', 4, '096255244051723889', '中国北京市西城区西長安街938号17栋', '1995-01-01', 0, 0, 'blaccharlotte', '2003-01-02', 'black723', '2018-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS632773466507', '上野美咲', 1, '+86 144-0180-1708', 2, '378509809337549953', '24F, 710 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1992-09-04', 0, 0, 'mu802', '2015-04-26', 'miueno15', '2008-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS199576135577', '野村美羽', 0, '+86 157-7377-3630', 4, '917407882719324807', '14F, 5 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1998-08-01', 0, 0, 'nmiu', '2011-07-24', 'miu86', '2007-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS815281634818', '李頴璇', 0, '+86 20-4415-5261', 1, '985240841166947232', 'Room 20, 63 Xiaoping E Rd, Baiyun , Guangzhou, China', '1995-08-30', 0, 0, 'wslee', '2005-05-03', 'wslee85', '2016-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS140539383912', '劉明', 1, '+86 20-3394-2972', 1, '352246788881050224', '中国广州市越秀区中山二路474号23楼', '1996-01-27', 0, 0, 'minglau', '2017-12-21', 'mlau305', '2006-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS958439623706', '前田海斗', 1, '+44 (116) 499 4506', 1, '565778386698957349', 'Unit 12, Oxford Eco Centre, 59 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1989-08-17', 0, 0, 'maeda5', '2006-09-10', 'km60', '2019-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS319520292571', '錢安娜', 0, '+81 90-5700-8515', 4, '129956527668924364', '日本おおさかし平野区加美東四丁目9番4号3階', '1986-07-11', 0, 0, 'onc65', '2008-07-22', 'conna', '2020-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS074925672123', '朱子异', 0, '+44 (151) 421 7846', 3, '528091679186723150', 'No.48 Main building, 609 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1985-04-07', 0, 0, 'zhuziyi2', '2000-01-14', 'zhz', '2018-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS583079401355', '孫俊宇', 0, '+1 212-421-5367', 1, '007760389894561533', '471 Wooster Street Apt 45, New York, NY 10012, United States', '1991-11-17', 0, 0, 'hcy', '2000-12-13', 'hsuan7', '2016-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS518963411505', 'Denise Rice', 1, '+44 5717 054160', 1, '019101175821859293', 'Unit 46, Oxford Eco Centre, 933 Hanover St, Liverpool, L1 4AF, United Kingdom', '1988-01-29', 0, 0, 'denisrice', '2010-02-23', 'ricden', '2018-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS753825732157', '毛天榮', 0, '+81 52-416-6654', 3, '667424627441777826', '日本なごやし北区清水三丁目19番19号36号室', '1993-07-31', 0, 0, 'mtw', '2013-08-26', 'mo41', '2012-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS990446511705', '尹嘉伦', 1, '+44 (116) 692 4204', 3, '002536481404695155', 'Unit 14, Oxford Eco Centre, 311 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1993-02-19', 0, 0, 'yinji5', '2019-06-28', 'jialun312', '2016-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS559148233941', '原悠人', 0, '+81 70-8010-6846', 0, '498914822364222200', '30-kai, 2-3-7 Yoyogi, Shibuya-ku, Tokyo, Japan', '1985-01-13', 0, 0, 'hara812', '2011-09-24', 'yutohara905', '2004-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS820462062488', 'Eva Fernandez', 1, '+86 184-6542-3489', 2, '836404750080826157', 'No.18 building, 457 Middle Huaihai Road, Huangpu District, Shanghai, China', '1988-06-17', 0, 0, 'eva7', '2021-10-29', 'eva13', '2014-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS165772935665', '向晓明', 1, '+81 66-402-5704', 0, '477240660203578069', '日本おおさかし東住吉区東田辺三丁目27番16号35階', '1993-07-02', 0, 0, 'xiang117', '2008-09-26', 'xx8', '2020-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS702787993929', '斉藤葉月', 0, '+44 7292 583203', 1, '753121020215012777', 'Unit 41, Oxford Eco Centre, 161 Regent Street, London, W1B 2LX, United Kingdom', '1993-12-31', 0, 0, 'saitoh', '2005-02-09', 'saito6', '2012-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS041923397089', '湯安娜', 1, '+1 213-089-9261', 0, '283447485306903014', '779 Wall Street Apartment 19, Los Angeles, CA 90003, United States', '1987-09-28', 0, 0, 'onton', '2021-02-23', 'ontong', '2004-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS093144116955', 'Sean Murphy', 1, '+44 5561 708910', 3, '047840303797332362', 'Unit 17, Oxford Eco Centre, 429 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1997-09-30', 0, 0, 'murphsean', '2001-08-30', 'ms4', '2019-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS950743549472', '千葉明菜', 0, '+1 838-435-5738', 3, '376199746418427177', '229 Lark Street Suite 12, Albany, NY 12210, United States', '1987-01-22', 0, 0, 'akinchiba', '2004-12-16', 'chiba5', '2001-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS509197892733', '宮本美緒', 0, '+81 3-0179-1989', 2, '763908501291638597', '日本東京品川区東五反田五丁目2番2号34階', '1985-02-18', 0, 0, 'mio1953', '2005-05-26', 'miymio', '2019-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS735410148104', '唐宇宁', 0, '+86 760-966-7571', 3, '023251926599961479', '中国中山京华商圈华夏街76号11号楼', '1986-04-21', 0, 0, 'yunitang', '2008-08-06', 'yunintang3', '2003-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS600279425166', 'Frederick Aguilar', 0, '+86 28-5844-8432', 4, '198846354166586209', '中国成都市成华区玉双路6号206号7室', '1986-06-18', 0, 0, 'aguilarfrederick', '2020-09-28', 'aguilar00', '2011-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS761544582533', '木下美月', 1, '+86 172-9949-6505', 0, '298170067041996189', '中国东莞环区南街二巷367号19号楼', '1994-01-13', 0, 0, 'mitsuki2', '2013-07-26', 'mitsuki708', '2001-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS012337081093', '谷口結翔', 0, '+44 (1865) 04 1728', 1, '134997615598548872', 'Unit 31, Oxford Eco Centre, 449 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-05-12', 0, 0, 'yuitotaniguchi', '2010-11-16', 'yuit', '2010-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS380496840124', '梁心穎', 1, '+81 70-2715-8573', 0, '397836761286786251', '31F, 4 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-12-14', 0, 0, 'sumwing1118', '2005-10-22', 'swleun', '2011-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS187395142918', '薛杰宏', 1, '+86 199-8449-4747', 2, '520437365686256223', 'Room 12, 149 Xiaoping E Rd, Baiyun , Guangzhou, China', '1992-11-17', 0, 0, 'jiehongx9', '2002-01-09', 'jxue', '2000-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS659740979440', '中山大地', 1, '+86 164-3782-0151', 2, '754841582940782092', 'Room 29, CR Building, 768 Jianxiang Rd, Pudong, Shanghai, China', '1993-08-26', 0, 0, 'nakayamadaichi', '2016-12-31', 'nakayd', '2006-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS020383268655', '上野紗良', 1, '+86 21-178-2591', 3, '841100813791350037', 'No.13 building, 265 Binchuan Rd, Minhang District, Shanghai, China', '1998-09-09', 0, 0, 'ues2', '2007-06-25', 'sarau', '2002-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS953148403204', '薛天榮', 1, '+81 70-2281-8512', 0, '120982646178563094', '17F, 5-19-17 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1990-07-22', 0, 0, 'sittw7', '2018-10-05', 'tinwings', '2021-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS802813711402', '戴岚', 0, '+86 192-4542-3282', 2, '843388139370609656', '中国中山紫马岭商圈中山五路83号华润大厦5室', '1986-02-16', 0, 0, 'dal', '2002-08-15', 'lan328', '2002-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS632115634471', '邵宇宁', 1, '+44 5355 610788', 1, '761308625706873669', 'Flat 37, 836 Hanover Street, London, W1S 1YD, United Kingdom', '1988-02-16', 0, 0, 'yuningshao630', '2009-08-16', 'yuning1', '2007-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS144161212211', '太田葵', 1, '+1 213-278-5840', 3, '727262458231307414', '409 Figueroa Street Suite 9, Los Angeles, CA 90037, United States', '1997-08-25', 0, 0, 'aoo1957', '2000-02-23', 'otaoi', '2007-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS832690159321', '馬國榮', 1, '+44 5853 539111', 3, '263792778242557849', 'Block 38, 501 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1987-06-29', 0, 0, 'ma320', '2005-12-24', 'kwma75', '2010-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS164597388166', '柴田玲奈', 1, '+86 10-985-6958', 2, '537684119353328036', '中国北京市東城区東直門內大街160号14楼', '1989-02-06', 0, 0, 'renashibata', '2004-12-28', 'rena79', '2018-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS649281772955', '李安娜', 0, '+81 80-8027-4472', 4, '041972629365954561', '日本東京港区東新橋一丁目5番2号11階', '1992-07-23', 0, 0, 'lee3', '2013-12-10', 'leeon1213', '2013-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS828792150310', '渡辺玲奈', 0, '+1 718-291-3563', 2, '538955344571582999', '333 Nostrand Ave Suite 12, Brooklyn, NY 11216, United States', '1998-11-14', 0, 0, 'satoren', '2011-09-10', 'satr', '2011-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS572564326425', '高永發', 0, '+1 213-058-8845', 3, '517365086095930641', '273 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1993-12-16', 0, 0, 'kaowingfat', '2015-05-08', 'kao2003', '2011-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS574364407388', '小島美羽', 0, '+86 10-3307-4750', 4, '195955940724152905', '4F, 65 Sanlitun Road, Chaoyang District, Beijing, China', '1994-07-19', 0, 0, 'kojimiu', '2020-02-24', 'kojima16', '2019-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS540901074363', 'Russell Dixon', 1, '+86 28-442-8521', 3, '529482839513382265', 'No.33 building, 633 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1985-08-09', 0, 0, 'rdixon1230', '2019-02-22', 'rdixon', '2014-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS072384878663', '张震南', 1, '+81 66-705-7627', 4, '314483437849026099', '日本おおさかし東住吉区東田辺三丁目27番1号44階', '1986-03-06', 0, 0, 'zhaz', '2002-08-20', 'zhang404', '2009-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS812939279588', '胡宇宁', 1, '+81 90-3566-4510', 1, '001980532464469116', '日本なごやし北区清水三丁目19番17号21号室', '1989-06-18', 0, 0, 'hu204', '2017-03-20', 'huyun1980', '2020-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS477760248865', 'Ricky Silva', 1, '+81 11-316-2750', 2, '763713817588522896', 'Rm. 35, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-08-13', 0, 0, 'ricky3', '2014-07-31', 'rickys7', '2001-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS196808325782', '吳潤發', 1, '+44 (161) 677 6856', 3, '167226866882108410', 'Flat 39, 211 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1993-03-03', 0, 0, 'yunfatng', '2001-06-01', 'ngyf1013', '2006-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS874932079054', '石子韬', 1, '+1 312-608-7780', 3, '847977053073201008', '178 Rush Street Apartment 17, Chicago, IL 60611, United States', '1993-08-16', 0, 0, 'zitaos', '2007-06-11', 'shizitao', '2020-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS629970601367', '向致远', 0, '+86 20-2571-8330', 2, '114158662373958521', 'No.23 building, 946 Jiangnan West Road, Haizhu District, Guangzhou, China', '1987-10-30', 0, 0, 'zhiyuanx418', '2008-06-26', 'zhiyuan7', '2011-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS118044478294', '黎家玲', 0, '+81 66-895-9641', 3, '911245362758208827', '日本おおさかし西成区天神ノ森二丁目1番5号38階', '1986-10-09', 0, 0, 'kll', '2019-10-27', 'kllai708', '2020-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS579272016563', '叶云熙', 1, '+86 755-674-0247', 4, '389638141864802635', 'Room 6, CR Building, 767 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1992-04-25', 0, 0, 'yyunxi', '2008-09-17', 'ye305', '2010-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS498679689072', '小林絢斗', 1, '+81 3-0710-6376', 1, '519625967689555178', '日本東京品川区東五反田五丁目2番4号23階', '1986-07-30', 0, 0, 'akobay312', '2012-09-18', 'kobayashiay705', '2012-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS218794249268', '村田桜', 1, '+1 312-535-6899', 3, '435603908617042970', '110 North Michigan Ave Apartment 18, Chicago, IL 60611, United States', '1998-11-28', 0, 0, 'sakurmurata', '2002-02-02', 'muras', '2019-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS305812844583', 'Nicole Payne', 1, '+81 90-5361-9533', 4, '258302234358222776', '日本おおさかし東住吉区東田辺三丁目27番4号22階', '1992-04-04', 0, 0, 'payne6', '2015-09-29', 'payne6', '2011-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS261417627011', '曾慧儀', 0, '+1 614-571-4384', 2, '522749927088349530', '189 East Cooke Road Apartment 23, Columbus, GA 43214, United States', '1992-01-22', 0, 0, 'wytsang', '2007-04-15', 'tsang1953', '2005-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS155957189992', 'Ryan Stephens', 1, '+86 28-0226-7436', 0, '052057616484778856', 'No.22 building, No. 222, Shuangqing Rd, Chenghua District, Chengdu, China', '1989-03-03', 0, 0, 'stephens5', '2016-05-07', 'sr10', '2002-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS067344725146', '藍世榮', 1, '+81 66-897-3334', 1, '659085978243856553', '19-kai, 4-9-12 Kamihigashi, Hirano Ward, Osaka, Japan', '1986-10-02', 0, 0, 'saiwingl85', '2009-10-04', 'swlam', '2003-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS653055372609', 'Lois Baker', 0, '+81 3-8603-8524', 2, '657814511826125737', 'Rm. 12, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1992-09-11', 0, 0, 'baklois', '2013-09-03', 'lbaker', '2021-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS964303201368', '尹詠詩', 0, '+86 191-6347-7176', 4, '026646846413092738', 'No.18 building, 690 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1997-10-11', 0, 0, 'wingszey1001', '2005-01-13', 'wingszeyi', '2010-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS874957188087', '遠藤美咲', 1, '+44 (1223) 74 8334', 1, '846450142566821444', 'Flat 23, 830 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1997-10-21', 0, 0, 'endomis', '2010-03-31', 'miend', '2008-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS767632361639', 'Luis Olson', 0, '+81 80-9899-3175', 2, '966251107281369083', '日本なごやし北区清水三丁目19番16号41階', '1995-05-10', 0, 0, 'oluis106', '2012-01-29', 'ol81', '2006-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS914070778635', '陶睿', 0, '+86 21-5967-6767', 0, '984930980316561370', '中国上海市浦东新区橄榄路841号20楼', '1988-07-09', 0, 0, 'taorui', '2011-11-02', 'taor5', '2004-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS382735256966', '菊地明菜', 0, '+81 11-389-4700', 1, '206066119037825981', 'Rm. 12, 13-3-5 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1993-04-09', 0, 0, 'kikuchi8', '2017-07-30', 'akinakiku6', '2011-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS780110135411', '井上光', 1, '+81 74-807-1855', 1, '949658363922276244', '12-kai, 1-7-6 Saidaiji Akodacho, Nara, Japan', '1987-06-06', 0, 0, 'inouhikaru1', '2005-08-17', 'hiinoue3', '2001-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS157691466625', '島田彩乃', 1, '+86 10-7903-4404', 1, '175210473398144796', '中国北京市海淀区清河中街68号678号35栋', '1995-11-12', 0, 0, 'shay', '2021-01-23', 'sa17', '2004-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS461577625633', '薛睿', 1, '+81 66-005-0934', 2, '722317417510902634', '日本おおさかし近江堂一丁目7番8号12階', '1990-03-17', 0, 0, 'ruixue1127', '2006-02-11', 'ruxu', '2008-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS053387211604', 'Nicole Tucker', 1, '+44 (20) 1186 4257', 1, '147260067024224804', 'Flat 19, 448 Maddox Street, London, W1S 1PU, United Kingdom', '1990-03-21', 0, 0, 'nicoletuck9', '2013-10-21', 'nicoletuc7', '2013-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS136313604336', '加藤百花', 1, '+81 11-371-7828', 2, '783385139105275504', '27F, 5-19-16 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1996-01-27', 0, 0, 'momokakato', '2005-09-08', 'mokato', '2011-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS657541129353', '島田玲奈', 1, '+1 330-041-6988', 2, '354387236819877293', '662 West Market Street Apt 25, Akron, OH 44333, United States', '1989-11-06', 0, 0, 'shimrena', '2013-06-10', 'shimada923', '2003-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS344248606707', 'Paul Harris', 1, '+86 166-7938-6379', 0, '010258919646436195', '中国广州市海珠区江南西路597号19室', '1994-01-28', 0, 0, 'hpaul97', '2004-04-21', 'harrispa907', '2017-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS025073766858', '李璐', 0, '+81 66-341-8812', 2, '881706695391431243', '日本おおさかし西成区出城一丁目1番9号9階', '1994-02-17', 0, 0, 'lilu502', '2001-10-26', 'lilu1', '2021-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS351992472692', 'Diane Kelley', 0, '+86 177-4993-6886', 0, '167999102324036923', '中国成都市锦江区人民南路四段991号28号楼', '1990-09-04', 0, 0, 'kelldiane1103', '2014-01-02', 'diakelle', '2003-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS902399706183', 'Harry Russell', 0, '+1 213-171-3402', 0, '188756704183334475', '394 Wall Street Apt 45, Los Angeles, CA 90003, United States', '1988-07-31', 0, 0, 'hrussell', '2002-02-23', 'rh59', '2005-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS783035221558', 'Willie Holmes', 0, '+86 136-0328-2210', 1, '206589115808444404', '中国深圳罗湖区蔡屋围深南东路390号1号楼', '1996-02-13', 0, 0, 'who', '2016-05-02', 'holmew916', '2001-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS875045062509', '楊家輝', 0, '+86 769-400-2346', 1, '573285244492438035', 'No.26 building, 972 Dongtai 5th St, Dongguan, China', '1987-05-16', 0, 0, 'yeung314', '2016-10-31', 'ykf6', '2000-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS912661308065', '麥志遠', 1, '+1 718-148-2579', 4, '779986138885590612', '146 Nostrand Ave Apartment 7, Brooklyn, NY 11216, United States', '1992-10-13', 0, 0, 'cyma3', '2008-07-14', 'makcy1', '2007-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS526234744576', '島田和真', 0, '+44 5850 018541', 1, '480234070246239172', 'Flat 11, 59 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1985-06-27', 0, 0, 'ks86', '2002-08-08', 'kazushimada', '2008-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS904146497045', '區仲賢', 1, '+1 213-351-1844', 2, '864899814098918762', '833 Alameda Street Apt 16, Los Angeles, CA 90002, United States', '1994-08-02', 0, 0, 'cyau', '2010-11-04', 'chungyinau2', '2018-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS644496266987', 'Christina Taylor', 0, '+1 330-006-4451', 1, '858045332587184086', '866 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1990-11-20', 0, 0, 'taylorch', '2003-12-02', 'taychri2', '2002-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS752174716823', '袁祖兒', 1, '+44 5652 339047', 0, '656961827553584051', 'Unit 21, Oxford Eco Centre, 352 Portland St, Manchester, M1 3LA, United Kingdom', '1994-07-08', 0, 0, 'cyyuen', '2006-09-07', 'yuency1964', '2002-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS859975600556', '卢杰宏', 1, '+86 199-8598-0236', 0, '340507540170917181', 'No.48 building, 150 Xiaoping E Rd, Baiyun , Guangzhou, China', '1986-03-02', 0, 0, 'jieholu', '2012-07-02', 'lujiehong55', '2012-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS231104850639', '河野玲奈', 1, '+86 755-911-5760', 0, '559052801709403864', '中国深圳罗湖区蔡屋围深南东路144号50室', '1991-01-14', 0, 0, 'kono2011', '2014-05-30', 'konorena', '2014-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS657853113200', '丸山悠人', 1, '+1 330-976-4582', 4, '952224751687998292', '141 West Market Street 3rd Floor, Akron, OH 44333, United States', '1993-03-06', 0, 0, 'yutomaruyama623', '2018-12-14', 'yutomaruyama2003', '2017-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS789455852267', '萧晓明', 0, '+44 (1223) 77 2973', 2, '405319600354866987', 'Block 1, 793 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1990-04-15', 0, 0, 'xixiao212', '2012-04-28', 'xiaox8', '2013-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS046654363773', 'Paul Rodriguez', 0, '+81 80-7010-8375', 3, '745393309986378773', 'Rm. 8, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1989-04-08', 0, 0, 'paulr', '2009-10-11', 'paurodriguez1', '2006-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS992491267273', '曹杰宏', 1, '+1 213-989-5112', 1, '300821528206237204', '692 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1998-08-12', 0, 0, 'jiehongcao', '2014-11-30', 'cji9', '2020-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS055461106433', 'Emma Ford', 0, '+86 153-6087-7945', 2, '954406257242779614', '中国深圳罗湖区蔡屋围深南东路941号华润大厦32室', '1988-10-19', 0, 0, 'ford07', '2007-02-03', 'eford94', '2009-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS764500079792', '井上愛梨', 0, '+86 10-1529-3788', 1, '191642458914554457', 'Room 2, CR Building, 188 FuXingMenNei Street, XiCheng District, Beijing, China', '1988-07-02', 0, 0, 'inoue53', '2019-08-18', 'airino', '2007-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS345988300459', 'Timothy West', 1, '+86 769-0870-9866', 4, '172704511041647909', 'Room 22, CR Building, 460 Kengmei 15th Alley, Dongguan, China', '1995-05-27', 0, 0, 'westtimothy', '2017-12-29', 'timothy44', '2017-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS293678368869', '曾明', 0, '+86 130-3668-2613', 3, '835793280956693704', 'Room 46, 438 68 Qinghe Middle St, Haidian District, Beijing, China', '1995-03-09', 0, 0, 'mingtsang', '2018-07-03', 'tsangming606', '2008-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS275209098071', '江子韬', 0, '+81 90-8077-9985', 3, '890790023881355158', '24F, 3-9-7 Gakuenminami, Nara, Japan', '1995-01-29', 0, 0, 'jiangzi', '2018-01-18', 'jiang1126', '2003-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS953338779744', '森陸', 1, '+81 80-4061-8444', 3, '458958060381695256', '17F, 1-6-10, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1997-05-26', 0, 0, 'rikum1', '2020-09-04', 'riku1016', '2022-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS801554924101', '岡田花', 1, '+44 (116) 550 8320', 1, '105719780784043053', 'Unit 30, Oxford Eco Centre, 983 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1991-06-07', 0, 0, 'okadahana', '2010-04-13', 'okadahana', '2011-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS466302905496', '金宇宁', 0, '+44 7057 856665', 3, '055391596166263670', 'Unit 12, Oxford Eco Centre, 57 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-04-27', 0, 0, 'jinyun', '2019-01-23', 'jinyuning', '2007-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS555449829986', '餘永權', 0, '+1 213-625-6269', 0, '416685593057497239', '227 Alameda Street Suite 38, Los Angeles, CA 90002, United States', '1998-05-07', 0, 0, 'yuewk', '2006-05-07', 'yuewk', '2002-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS823873892082', '池田蓮', 1, '+86 172-4649-8890', 4, '976598048542136144', '中国北京市朝阳区三里屯路575号15号楼', '1998-12-05', 0, 0, 'ren3', '2011-11-08', 'ikedaren', '2019-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS116567075429', '罗安琪', 0, '+44 7396 190931', 1, '209155628239839239', 'No.18 Main building, 511 Sackville St, Manchester, M1 3BB, United Kingdom', '1995-11-14', 0, 0, 'luo620', '2010-10-15', 'luanqi1947', '2003-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS957729401516', '青木紗良', 1, '+81 90-4931-1397', 2, '891132241731250684', '33F, 5-19-1 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-09-26', 0, 0, 'aokisara', '2009-09-01', 'aokisara', '2015-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS288847607561', '谢云熙', 1, '+86 193-8969-3186', 1, '760629069187845785', '中国北京市東城区東直門內大街31号25室', '1999-02-09', 0, 0, 'yxie4', '2001-07-20', 'xie722', '2011-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS121520985327', '渡部舞', 0, '+81 90-0737-8338', 2, '252818465610000886', 'Rm. 35, 17 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-03-10', 0, 0, 'watanabe1999', '2007-06-09', 'wmai', '2013-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS330154253339', '许子异', 1, '+1 330-563-2196', 0, '846765756307538295', '93 Riverview Road Apt 47, Akron, OH 44313, United States', '1989-07-10', 0, 0, 'ziyxu', '2013-02-21', 'ziyixu', '2018-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS003865898789', '何睿', 1, '+86 190-7904-4672', 0, '820855829360350650', 'Room 19, 590 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1998-07-10', 0, 0, 'rui618', '2007-06-06', 'rui825', '2009-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS597179638585', '謝惠敏', 0, '+81 52-694-0884', 1, '905784501926066485', '25-kai, 10 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1988-11-04', 0, 0, 'waimantse', '2022-01-14', 'waimantse4', '2015-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS180375948440', 'Johnny Ramirez', 0, '+44 (1865) 00 5786', 2, '129104310586384764', 'Block 46, 262 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1986-08-30', 0, 0, 'ramirez9', '2006-07-12', 'ramirez825', '2004-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS656002331840', '姚發', 1, '+86 160-6709-9783', 4, '897961517720260279', 'Room 16, 585 Yueliu Rd, Fangshan District, Beijing, China', '1990-12-31', 0, 0, 'yeowfat', '2002-01-07', 'yfa', '2013-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS255745278419', 'Jonathan Kelley', 0, '+1 212-824-2783', 3, '522996930633060222', '976 West Houston Street 3rd Floor, New York, NY 10014, United States', '1999-01-10', 0, 0, 'jonathan2', '2005-02-23', 'kelleyjon', '2012-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS276892397665', 'Jacob Rodriguez', 0, '+86 141-1550-3227', 2, '931710132281297728', 'Room 46, CR Building, 325 Kengmei 15th Alley, Dongguan, China', '1988-11-11', 0, 0, 'rodriguezjac1014', '2022-01-05', 'jacorodriguez88', '2000-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS338061802757', '樊詩君', 0, '+1 838-553-7393', 2, '460743114405073221', '886 State Street Suite 29, Albany, NY 12203, United States', '1994-03-01', 0, 0, 'fan2002', '2003-06-06', 'skfan7', '2015-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS772056526031', '雷家強', 0, '+86 21-568-5269', 3, '422651181006968728', '中国上海市浦东新区橄榄路78号42栋', '1998-09-03', 0, 0, 'kakel802', '2007-10-12', 'loui55', '2009-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS366561883121', 'Pamela Dixon', 0, '+81 66-295-5764', 2, '170991952696962558', '日本おおさかし西成区天神ノ森二丁目1番17号15階', '1994-09-26', 0, 0, 'pameladixon9', '2015-11-19', 'pamela10', '2019-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS616147699394', 'Virginia Robertson', 0, '+86 760-0337-1331', 2, '826053206831766490', 'No.22 building, 669 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1986-11-06', 0, 0, 'robvirginia19', '2015-10-26', 'virginia402', '2007-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS710276218869', '中野絢斗', 0, '+1 312-613-0586', 4, '500592518166294068', '772 Pedway 3rd Floor, Chicago, IL 60601, United States', '1986-06-15', 0, 0, 'anakano', '2010-05-29', 'ayaton65', '2013-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS609588248538', '邵玲玲', 0, '+44 (1865) 90 2468', 0, '681579145206908925', 'Unit 43, Oxford Eco Centre, 811 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-11-14', 0, 0, 'linglingsiu', '2017-08-16', 'lingling8', '2003-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS740617772376', '松井七海', 1, '+44 7983 788460', 3, '585007495061599467', 'Unit 43, Oxford Eco Centre, 500 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1986-07-26', 0, 0, 'nanamimatsui3', '2005-10-04', 'nanamatsui921', '2000-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS568294280250', 'Katherine Moreno', 1, '+1 614-510-0090', 4, '279184677450195712', '26 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1990-12-02', 0, 0, 'moreno905', '2006-09-25', 'kam', '2004-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS035949125076', 'Bryan Tran', 1, '+86 769-9799-9969', 2, '250579542164934626', '中国东莞环区南街二巷101号37号楼', '1997-10-21', 0, 0, 'bryantran81', '2007-10-28', 'trbryan', '2013-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS215502049225', '高橋陽菜', 0, '+44 (1865) 57 0016', 0, '068820293800543008', 'No.2 Main building, 418 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1990-01-17', 0, 0, 'hinatakahashi828', '2013-04-30', 'takahhina', '2008-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS167592282310', '葉嘉欣', 1, '+81 11-067-8736', 4, '903290934049727294', '日本札幌白石区菊水三条五丁目2番11号3階', '1987-01-01', 0, 0, 'yky', '2000-12-21', 'yipky1108', '2007-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS892407288150', '今井愛梨', 1, '+1 330-321-2708', 4, '734624942043261796', '871 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1991-04-08', 0, 0, 'airiimai', '2016-08-20', 'imaairi10', '2015-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS867616834463', '安藤海斗', 1, '+1 213-076-1899', 3, '881086002258393881', '404 Sky Way Apt 12, Los Angeles, CA 90043, United States', '1995-06-26', 0, 0, 'ando1', '2011-08-14', 'kando', '2016-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS188614715209', 'Gerald Meyer', 0, '+44 (121) 265 7592', 0, '094744086517442804', 'No.8 Main building, 369 New Street, Birmingham, B2 4DB, United Kingdom', '1993-12-25', 0, 0, 'geralm', '2017-09-10', 'gmeyer', '2013-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS682832392840', '唐秀英', 1, '+86 156-7891-1922', 3, '304154012669270244', '中国北京市海淀区清河中街68号788号3号楼', '1996-12-23', 0, 0, 'tangxiuying', '2013-05-30', 'xiuyingt', '2006-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS166127386013', 'Aaron Parker', 1, '+44 5534 211782', 4, '641414762051462412', 'Block 27, 272 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1997-07-30', 0, 0, 'aaparke110', '2011-06-07', 'paraaron', '2018-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS822177994154', '黃天榮', 0, '+81 80-7425-8689', 2, '372441471831189233', '日本札幌厚別区上野幌一条二丁目1番10号23号室', '1989-10-12', 0, 0, 'wtinwing415', '2014-08-16', 'wotw322', '2001-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS823342814897', '馬朝偉', 0, '+86 174-3173-5420', 1, '240010787847039456', 'Room 21, 949 Sanlitun Road, Chaoyang District, Beijing, China', '1994-07-22', 0, 0, 'ma8', '2007-04-08', 'machiuwai', '2017-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS400706630097', '顾子异', 0, '+81 3-7198-1359', 1, '970000270989022558', '日本東京品川区東五反田五丁目2番9号12号室', '1990-01-15', 0, 0, 'ziyigu55', '2021-02-03', 'ziyigu', '2019-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS304776476805', '三浦健太', 0, '+81 80-4976-6513', 0, '848958461106539918', '日本おおさかし近江堂一丁目7番11号14階', '1997-05-22', 0, 0, 'kenta1215', '2013-11-22', 'kentamiu', '2011-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS328638533739', 'Amber Vasquez', 1, '+1 838-801-5279', 2, '523750125555626024', '509 State Street 3rd Floor, Albany, NY 12203, United States', '1989-08-04', 0, 0, 'vasqamber', '2011-05-15', 'ambevasq', '2009-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS662725423282', 'Thelma Ellis', 1, '+1 718-317-4966', 3, '224448763897655819', '680 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1992-10-08', 0, 0, 'ellist', '2017-04-04', 'ellisthe815', '2011-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS310448098891', '钟詩涵', 0, '+1 330-535-4768', 3, '375390945634398551', '409 Fern Street 3rd Floor, Akron, OH 44307, United States', '1996-12-22', 0, 0, 'zhong06', '2021-11-07', 'sz9', '2002-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS149232324636', 'Todd Hall', 1, '+86 185-4317-3407', 1, '472449867038809137', '中国深圳福田区深南大道887号14楼', '1992-12-28', 0, 0, 'todd42', '2018-07-26', 'haltodd212', '2003-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS281240734263', '森優奈', 1, '+1 614-728-7292', 0, '585233408660104679', '556 Tremont Road Suite 20, Columbus, GA 43212, United States', '1993-10-28', 0, 0, 'myuna', '2000-10-27', 'yunamori1204', '2020-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS120029002737', '余嘉伦', 1, '+86 180-1711-5340', 2, '263425488630654165', '中国北京市朝阳区三里屯路89号10室', '1997-05-16', 0, 0, 'yu18', '2014-10-19', 'yujialun', '2007-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS215861313014', '林慧嫻', 1, '+81 3-0377-0750', 2, '497642456589906160', 'Rm. 16, 1-6-9, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1990-02-17', 0, 0, 'lam2', '2020-08-17', 'waihanlam', '2001-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS751245867858', '蒋子韬', 0, '+81 70-6463-1471', 1, '228038206845540920', '日本札幌清田区真栄四条五丁目19番4号27号室', '1987-11-05', 0, 0, 'jiangzit', '2019-10-28', 'zitaoji3', '2002-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS937670301151', '陈宇宁', 1, '+81 90-9879-8537', 1, '275984928455438434', '15-kai, 4 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-12-11', 0, 0, 'chenyun1107', '2018-05-04', 'chen2', '2005-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS390683535319', 'Craig King', 0, '+81 11-773-7367', 3, '763677099768318819', '49-kai, 5-4-15 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1985-07-12', 0, 0, 'craigking817', '2009-02-19', 'kingc', '2019-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS711153014706', '袁子韬', 1, '+44 (121) 230 5014', 2, '470206011231934041', 'Flat 47, 261 New Street, Birmingham, B2 4DB, United Kingdom', '1993-04-06', 0, 0, 'yuan514', '2019-06-08', 'zitaoyuan', '2017-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS630181892614', '文杰倫', 0, '+86 148-4942-0528', 2, '175016175452329474', 'No.26 building, 376 Ganlan Rd, Pudong, Shanghai, China', '1985-07-24', 0, 0, 'chiehlunman52', '2005-10-26', 'manchiehlun', '2000-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS848416608538', '清水絢斗', 0, '+86 769-193-2119', 3, '722628989855447420', 'Room 42, 661 Kengmei 15th Alley, Dongguan, China', '1986-01-24', 0, 0, 'shimizuayato6', '2006-09-17', 'ayatos9', '2015-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS612609322472', '任榮發', 1, '+86 28-8189-8088', 0, '073325732565700758', 'Room 24, No.631, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1987-12-29', 0, 0, 'wfyam10', '2019-08-19', 'wingfaty', '2015-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS743828823357', '袁仲賢', 0, '+1 212-497-9671', 1, '787673691387608199', '624 Wooster Street Apartment 10, New York, NY 10012, United States', '1988-01-20', 0, 0, 'yuency', '2017-11-13', 'chungyin916', '2003-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS225715636302', '江力申', 1, '+44 7730 354133', 2, '958252586341449120', 'Flat 24, 255 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1995-04-05', 0, 0, 'kongliksun', '2019-02-24', 'kols', '2009-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS405268545690', '清水陸', 0, '+44 (161) 986 8366', 3, '832607591039977469', 'No.2 Main building, 226 Portland St, Manchester, M1 3LA, United Kingdom', '1986-11-12', 0, 0, 'shimizuri7', '2021-10-31', 'rishimizu', '2015-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS603433657117', '鄧慧嫻', 1, '+81 74-118-5597', 2, '246123177011965787', '日本ならし西大寺赤田町一丁目7番18号4階', '1995-09-25', 0, 0, 'whtan3', '2015-02-21', 'tangwh', '2019-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS615263259721', '遠藤彩乃', 1, '+81 90-3067-5764', 1, '560750089402239082', '11-kai, 3-9-2 Gakuenminami, Nara, Japan', '1991-11-19', 0, 0, 'eayano', '2004-06-14', 'ayano4', '2011-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS243945241938', '苏璐', 0, '+81 52-242-5074', 3, '669559843604049819', '16F, 5 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-03-22', 0, 0, 'sulu83', '2006-09-14', 'su91', '2000-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS110573262564', '丁致远', 1, '+86 181-0100-7362', 3, '770415962690009153', '中国北京市朝阳区三里屯路488号华润大厦9室', '1988-06-15', 0, 0, 'zhiyuan7', '2015-04-13', 'diz', '2007-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS472733739253', 'Mario Johnson', 1, '+1 330-036-2435', 3, '726645089252336758', '502 West Market Street 3rd Floor, Akron, OH 44333, United States', '1993-12-17', 0, 0, 'johnson10', '2010-12-21', 'jom', '2004-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS425903929591', '罗睿', 0, '+86 182-4140-4081', 1, '576294883413241462', 'No.31 building, 935 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1991-07-18', 0, 0, 'luoru10', '2006-09-11', 'luor', '2003-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS163054383820', '斉藤瑛太', 0, '+86 141-7110-7016', 2, '457110087266632151', 'Room 28, 18 Lefeng 6th Rd, Zhongshan, China', '1990-09-05', 0, 0, 'eita4', '2020-08-15', 'eits52', '2019-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS617559916872', 'Rebecca Brown', 0, '+86 190-8084-7916', 0, '913020327526268112', '中国上海市浦东新区健祥路212号29室', '1990-03-26', 0, 0, 'brownrebec5', '2013-06-20', 'brownr1', '2010-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS664038816527', '新井花', 1, '+44 (1223) 19 8149', 2, '204562030215462788', 'No.22 Main building, 723 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1987-03-10', 0, 0, 'hara', '2003-11-03', 'arai77', '2005-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS493816015983', '薛杰宏', 1, '+44 5307 055107', 3, '096716794664049772', 'Unit 5, Oxford Eco Centre, 672 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1993-04-07', 0, 0, 'jixue58', '2014-09-21', 'xuej', '2019-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS487131045523', '桜井明菜', 0, '+81 70-0025-6450', 3, '104998481320258365', '47F, 8 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-09-03', 0, 0, 'sakurai723', '2004-06-06', 'sakurai7', '2003-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS432765764405', '蒋云熙', 1, '+81 70-1689-0008', 3, '337936589479551256', '47-kai, 3-15-11 Ginza, Chuo-ku, Tokyo, Japan', '1987-03-31', 0, 0, 'yjiang', '2020-12-19', 'yunxijiang', '2019-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS854732417918', '山本湊', 1, '+81 3-9935-9267', 3, '876131312689430547', '49-kai, 1-5-18, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-05-02', 0, 0, 'minayama', '2004-05-11', 'minatoyamamoto', '2013-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS563566924190', '狄裕玲', 0, '+81 90-5056-3247', 3, '997725942434118934', '日本なごやし北区清水三丁目19番10号45号室', '1989-08-19', 0, 0, 'tiyl1014', '2002-08-16', 'ylti', '2013-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS382530426388', 'Frederick Castro', 0, '+1 330-863-1166', 1, '306973922599457397', '750 Ridgewood Road Suite 35, Akron, OH 44321, United States', '1995-04-12', 0, 0, 'fc1948', '2010-08-18', 'cfred', '2014-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS838449059334', '阿部陽菜', 1, '+81 52-141-5695', 3, '449553332478331933', '30-kai, 3-19-1 Shimizu, Kita Ward, Nagoya, Japan', '1996-04-04', 0, 0, 'hinabe', '2015-09-04', 'habe', '2019-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS538382873349', '上田和真', 0, '+1 213-429-0830', 0, '567795801207611447', '885 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1991-03-19', 0, 0, 'uk89', '2017-05-21', 'kazumue8', '2002-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS686568584313', '雷明', 1, '+44 5623 430170', 2, '687948120261501060', 'Flat 2, 486 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1986-07-12', 0, 0, 'mingl', '2011-03-05', 'lomin79', '2011-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS030333309127', '程嘉伦', 0, '+81 90-1253-5613', 4, '734029901465771251', '日本なごやし北区楠味鋺三丁目80番9号46号室', '1998-12-30', 0, 0, 'jicheng9', '2003-07-29', 'chengjialun', '2003-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS948543302150', 'Monica Rose', 0, '+1 718-550-0617', 3, '428715194750569474', '500 Nostrand Ave Apt 9, Brooklyn, NY 11216, United States', '1995-10-31', 0, 0, 'monicar', '2008-10-22', 'monica214', '2002-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS313889874183', 'Paul Meyer', 0, '+81 70-5429-4309', 0, '229497371705074217', '日本札幌厚別区上野幌一条二丁目1番17号25階', '1986-06-20', 0, 0, 'meyerpau1224', '2002-08-22', 'meyerpaul4', '2010-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS556917535474', '山下百恵', 1, '+81 66-622-6145', 2, '736518060678731400', '日本おおさかし近江堂一丁目7番12号36階', '1992-11-05', 0, 0, 'yamashitamom', '2000-05-22', 'momoeya', '2020-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS680801924807', 'Larry Taylor', 1, '+86 180-7380-0846', 0, '487545990592593493', 'No.26 building, 990 68 Qinghe Middle St, Haidian District, Beijing, China', '1986-10-03', 0, 0, 'larry312', '2011-07-16', 'tlarry', '2020-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS875428264197', '森田葵', 0, '+81 70-0687-6776', 3, '532424834773660722', 'Rm. 36, 13 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1989-06-21', 0, 0, 'moritaaoi', '2012-07-31', 'moriao', '2009-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS046741269176', '孟致远', 0, '+81 80-2300-2902', 3, '771340978441439528', '日本おおさかし東住吉区東田辺三丁目27番8号11階', '1993-01-02', 0, 0, 'zhiymeng61', '2021-09-01', 'zhiyuan57', '2015-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS800697096652', '武田葵', 1, '+86 21-6509-5211', 1, '699165589388168879', 'No.48 building, 13 Hongqiao Rd., Xu Hui District, Shanghai, China', '1991-07-13', 0, 0, 'takedaaoi', '2014-01-03', 'takedaaoi', '2018-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS403927792824', 'Brian Chavez', 0, '+1 614-260-9954', 2, '052412350167898703', '590 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1994-07-16', 0, 0, 'chavez412', '2003-09-26', 'cbrian', '2010-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS154112042080', '邱嘉伦', 1, '+86 10-226-9809', 1, '613556595174612416', '33F, 617 East Wangfujing Street, Dongcheng District , Beijing, China', '1990-07-12', 0, 0, 'jialun217', '2003-06-02', 'jialunqiu810', '2021-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS407262168475', '山下結翔', 0, '+86 145-2502-9631', 3, '058111225488913379', '中国深圳龙岗区学园一巷382号47栋', '1989-12-09', 0, 0, 'yamashita724', '2001-04-07', 'yuyamas', '2019-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS438686084242', '新井愛梨', 1, '+81 90-2772-6186', 3, '861229827187212921', '32-kai, 16 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-01-01', 0, 0, 'araiairi', '2014-09-04', 'arai6', '2011-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS890061778305', '石川美月', 0, '+44 5987 815270', 4, '199534956187599074', 'No.3 Main building, 642 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1986-05-31', 0, 0, 'ishikawam1215', '2020-05-07', 'mitsuishikawa', '2004-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS276764701860', '何梓晴', 0, '+81 52-494-8092', 1, '576876149637222466', '日本なごやし熱田区千年二丁目5番20号45階', '1988-08-25', 0, 0, 'tcho422', '2008-07-29', 'hotszching', '2019-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS367225596353', '许宇宁', 1, '+44 (20) 3593 3604', 0, '258843206147836464', 'Unit 13, Oxford Eco Centre, 588 Hanover Street, London, W1S 1YD, United Kingdom', '1995-06-04', 0, 0, 'yuning103', '2010-01-24', 'xu42', '2021-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS213416832602', '何嘉伦', 1, '+44 (20) 3619 3880', 1, '428252811619395561', 'Unit 12, Oxford Eco Centre, 148 Maddox Street, London, W1S 1PU, United Kingdom', '1995-11-17', 0, 0, 'jiahe', '2002-12-24', 'jialun9', '2019-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS638836109250', '橋本百恵', 0, '+86 10-5385-5631', 1, '969717788674099762', '中国北京市西城区西長安街323号华润大厦48室', '1987-12-10', 0, 0, 'momoehas', '2020-01-23', 'momoehash1945', '2013-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS077442737722', 'Sarah Boyd', 0, '+86 10-327-9321', 2, '985276052139980331', '29F, 985 East Wangfujing Street, Dongcheng District , Beijing, China', '1997-06-01', 0, 0, 'sarah6', '2006-06-13', 'boydsarah1', '2012-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS442030404078', '袁慧儀', 0, '+44 (151) 178 3083', 1, '311707930223074148', 'Unit 12, Oxford Eco Centre, 343 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1986-08-20', 0, 0, 'waiyeeyuen1227', '2011-06-30', 'waiyeeyu41', '2006-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS959473344882', '孫裕玲', 1, '+81 74-727-7573', 3, '172221663903831233', '9F, 3-9-18 Gakuenminami, Nara, Japan', '1990-02-26', 0, 0, 'hsuan1989', '2009-10-25', 'hsuan65', '2002-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS756964854007', '西村健太', 1, '+86 178-3692-6832', 4, '485721164606892510', 'Room 26, CR Building, No.258, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1992-05-07', 0, 0, 'nishimura71', '2001-01-23', 'nishik', '2001-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS855751155083', '成梓軒', 1, '+86 135-6231-2760', 1, '388808078950862773', 'Room 21, 769 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1997-11-27', 0, 0, 'shingtszhin', '2021-01-15', 'shinth', '2020-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS561890812934', 'Dennis Burns', 1, '+86 21-2794-7588', 2, '104979681653197730', '中国上海市徐汇区虹桥路521号27室', '1985-04-03', 0, 0, 'burd53', '2010-03-12', 'dbu3', '2009-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS346698564555', '戴家明', 1, '+81 74-597-6289', 0, '647746721282125549', 'Rm. 22, 1-7-14 Saidaiji Akodacho, Nara, Japan', '1989-04-27', 0, 0, 'daikm719', '2008-10-31', 'kamingd5', '2015-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS418330932806', '薛志遠', 0, '+81 70-6152-1540', 2, '830660630530291035', '日本なごやし北区楠味鋺三丁目80番12号23号室', '1990-07-11', 0, 0, 'sitcy', '2015-12-17', 'sitchiyu2', '2010-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS784236032791', '陶榮發', 1, '+86 769-6644-0946', 3, '804824866506541054', 'Room 18, 952 Huanqu South Street 2nd Alley, Dongguan, China', '1986-11-04', 0, 0, 'wingfat2', '2005-07-18', 'tao7', '2000-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS163344206753', '邓宇宁', 1, '+86 20-871-2117', 0, '596653406794458616', '33F, 99 Jiangnan West Road, Haizhu District, Guangzhou, China', '1989-07-01', 0, 0, 'dengy', '2004-02-21', 'yuningde', '2019-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS476164597677', 'Gregory Bennett', 1, '+81 66-378-2508', 0, '353029702906973910', '日本おおさかし近江堂一丁目7番11号14号室', '1988-06-27', 0, 0, 'bennegregory1981', '2008-08-14', 'bennettg09', '2010-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS847258528804', '渡辺凛', 0, '+1 718-205-1419', 3, '061537017799221180', '478 Nostrand Ave Suite 28, Brooklyn, NY 11216, United States', '1993-08-23', 0, 0, 'rinsat', '2004-10-22', 'rinsato', '2000-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS191008559339', '市川一輝', 1, '+1 330-892-6030', 0, '768372402316867824', '188 Collier Road Apt 15, Akron, OH 44320, United States', '1986-11-01', 0, 0, 'ichikawaikki', '2020-06-27', 'iich', '2020-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS006957585451', '彭淑怡', 1, '+1 213-653-9327', 0, '402354401814653966', '981 Sky Way Suite 37, Los Angeles, CA 90043, United States', '1986-12-20', 0, 0, 'sypang', '2011-07-29', 'psukyee', '2016-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS863124741250', 'Antonio Myers', 1, '+81 11-899-6674', 3, '217413975632957865', 'Rm. 27, 5-19-2 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1993-11-21', 0, 0, 'antonio1955', '2012-08-24', 'antonio76', '2014-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS472634277462', '邵天榮', 0, '+44 (1865) 53 9788', 2, '630645617799758762', 'Unit 10, Oxford Eco Centre, 240 Park End St, Oxford, OX1 1JD, United Kingdom', '1990-03-27', 0, 0, 'siutw6', '2003-05-15', 'siutw', '2006-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS124205114854', '任國榮', 0, '+44 5500 882113', 1, '829063130505821379', 'No.31 Main building, 370 Redfern St, Liverpool, L20 8JB, United Kingdom', '1997-12-17', 0, 0, 'ykwokwing85', '2017-01-03', 'kwokwing94', '2000-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS158880109723', '房霆鋒', 0, '+1 330-024-8973', 2, '266292154210698289', '27 Collier Road Apartment 24, Akron, OH 44320, United States', '1988-05-03', 0, 0, 'tffon', '2011-11-07', 'tingfung10', '2001-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS129848473183', '彭詩涵', 0, '+81 70-6014-5385', 4, '927542013527233714', '2F, 5-2-7 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1992-04-19', 0, 0, 'pengshihan', '2020-02-27', 'pengshi', '2008-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS901195075297', '遠藤光', 1, '+86 198-5407-3388', 4, '509663996525693264', 'No.45 building, 310 Jiangnan West Road, Haizhu District, Guangzhou, China', '1998-06-02', 0, 0, 'hikaruendo1943', '2020-11-27', 'hikaruendo', '2012-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS129907188730', '斉藤一輝', 0, '+81 80-9255-9289', 3, '963102087588253491', '日本ならし学園南三丁目9番5号24階', '1994-04-14', 0, 0, 'ikksaito913', '2009-04-03', 'sikki103', '2016-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS312700675397', 'Margaret Coleman', 0, '+1 312-318-4349', 1, '803931068932762569', '52 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1990-03-11', 0, 0, 'comar', '2006-05-20', 'comargaret85', '2017-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS315851926694', '龙睿', 1, '+86 21-1414-2087', 1, '628970828955217343', 'Room 38, 909 Jianxiang Rd, Pudong, Shanghai, China', '1998-04-19', 0, 0, 'long7', '2001-01-19', 'longrui', '2005-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS495315756770', '方仲賢', 1, '+86 148-3474-6324', 1, '779984245749227189', '3F, 721 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1986-08-13', 0, 0, 'cyfong426', '2009-11-19', 'fong1026', '2001-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS255150883718', '原田光莉', 1, '+86 133-4427-7609', 2, '623981686355342901', '28F, 723 Yueliu Rd, Fangshan District, Beijing, China', '1997-04-05', 0, 0, 'haradhik', '2009-08-23', 'hikari508', '2001-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS792694121614', '阎秀英', 0, '+44 (116) 626 2199', 2, '999243538129875990', 'No.35 Main building, 540 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1993-08-04', 0, 0, 'xiuyiyan', '2006-01-16', 'xiuyan09', '2015-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS419261608522', '毛詠詩', 0, '+86 193-1227-0575', 1, '840191865020510802', '39F, 187 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1994-02-20', 0, 0, 'wingsze7', '2003-01-01', 'wingszemo', '2013-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS669108833416', 'Keith Griffin', 0, '+86 10-355-6559', 3, '020474809932229126', '中国北京市东城区东单王府井东街87号36楼', '1990-03-25', 0, 0, 'griffin829', '2002-07-14', 'griffin410', '2021-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS459828230871', '谢詩涵', 1, '+81 70-8911-0764', 3, '677311493454527721', '40F, 2-1-7 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1988-09-08', 0, 0, 'xshihan', '2001-02-09', 'shxie4', '2002-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS526219332449', 'Dennis Collins', 1, '+81 11-761-8448', 2, '575367949093730260', '33F, 5-4-3 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1993-03-17', 0, 0, 'dennic', '2019-08-03', 'collins411', '2003-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS072022234544', '田村湊', 0, '+81 66-193-8918', 3, '530233489129889840', 'Rm. 47, 2-1-1 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1997-07-17', 0, 0, 'tammina1120', '2000-04-08', 'minatota', '2021-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS140248537232', '譚杰倫', 1, '+86 149-3231-5955', 1, '795563398398958736', '中国北京市西城区西長安街761号40楼', '1989-06-03', 0, 0, 'chiehluntam', '2021-02-13', 'chiehluntam', '2004-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS099679021958', '鄭志遠', 0, '+81 74-759-4660', 2, '771372758850458644', '日本ならし大和郡山市本庄町一丁目1番6号38階', '1985-02-14', 0, 0, 'chiyuen3', '2011-11-15', 'chengchiyuen724', '2017-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS797312678201', 'Theresa Reed', 0, '+81 11-511-8337', 4, '953470264564813416', '日本札幌清田区真栄四条五丁目19番13号22階', '1990-03-10', 0, 0, 'rtheresa89', '2019-02-22', 'reetheresa223', '2011-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS609081078514', '雷秀文', 1, '+86 140-0452-2336', 1, '099902005645770444', 'No.47 building, 686 Binchuan Rd, Minhang District, Shanghai, China', '1995-03-22', 0, 0, 'losm', '2020-04-06', 'saumanloui', '2000-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS553644897564', '林杰宏', 0, '+1 212-507-0425', 2, '255070254516401093', '517 Fifth Avenue Apt 29, New York, NY 10017, United States', '1991-02-15', 0, 0, 'lijiehong10', '2012-01-19', 'jieli7', '2001-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS240504083130', '杉山光莉', 1, '+86 769-2952-3098', 2, '710740043622440104', '中国东莞东泰五街120号23栋', '1998-08-19', 0, 0, 'hikari6', '2004-08-07', 'hsugiyama', '2011-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS642156409047', '福田大輔', 1, '+86 167-7625-2493', 4, '988882680640352448', 'Room 3, No.196, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-04-28', 0, 0, 'fukudadai1969', '2021-06-01', 'fukuddaisuke', '2005-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS277198429231', '彭宇宁', 1, '+86 769-038-0965', 1, '514837872044543774', 'Room 31, CR Building, 465 Kengmei 15th Alley, Dongguan, China', '1985-03-24', 0, 0, 'ype', '2021-01-13', 'pengyunin', '2020-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS911637603847', 'Ronald Medina', 0, '+81 70-6897-2470', 1, '683936363931471837', '29-kai, 11 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-09-04', 0, 0, 'ronm', '2010-04-18', 'rme10', '2001-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS864528522517', 'Barbara Woods', 0, '+44 5468 316271', 3, '629237460662760387', 'No.7 Main building, 31 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1988-03-27', 0, 0, 'woba', '2009-09-28', 'woodbarbara97', '2017-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS633821753501', '姜詩涵', 0, '+81 66-308-7875', 3, '623034139175315090', '日本おおさかし東住吉区東田辺三丁目27番9号24階', '1998-12-03', 0, 0, 'shj4', '2013-12-15', 'shihan07', '2011-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS390940673146', '宮本結翔', 1, '+1 614-529-0833', 3, '813757978429177760', '459 Wicklow Road Apt 31, Columbus, GA 43204, United States', '1988-06-04', 0, 0, 'yuitomi', '2015-11-17', 'miyamotoyuito8', '2006-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS186650720820', '吕晓明', 0, '+44 (151) 970 7970', 2, '785175100450073560', 'Unit 10, Oxford Eco Centre, 492 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1985-01-11', 0, 0, 'xiaoming1', '2012-09-22', 'xiaominglu217', '2011-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS070365802550', '中島詩乃', 1, '+81 74-636-1476', 4, '440919993586391664', 'Rm. 9, 15 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-07-16', 0, 0, 'nshi', '2018-08-06', 'shnakajima', '2017-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS241637063317', '渡辺蒼士', 1, '+1 212-759-1010', 4, '149715915088249821', '13 Fifth Avenue Apt 14, New York, NY 10017, United States', '1996-08-16', 0, 0, 'satao', '2008-04-13', 'aoshisato', '2000-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS690880552891', '中島美緒', 0, '+44 (116) 467 6636', 0, '819638927369298503', 'No.6 Main building, 680 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1992-12-28', 0, 0, 'nakajmio1025', '2006-04-03', 'nakamio', '2000-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS531633656354', '竹内彩乃', 1, '+44 5526 857669', 2, '933019748680583391', 'Flat 11, 436 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1989-12-29', 0, 0, 'aytakeuchi', '2019-09-27', 'ayanotakeu', '2004-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS913692626915', 'Gerald Morgan', 0, '+81 11-988-5655', 3, '776494896703814302', '日本札幌厚別区上野幌一条二丁目1番16号27階', '1992-09-15', 0, 0, 'geraldmorgan', '2016-11-16', 'morgan1974', '2020-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS311922838115', '劉慧敏', 0, '+81 74-592-5190', 2, '516280330938787556', 'Rm. 39, 3-9-10 Gakuenminami, Nara, Japan', '1996-03-10', 0, 0, 'wmla', '2017-03-03', 'lauwm', '2007-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS051705892039', 'Nathan Jimenez', 1, '+81 80-6919-4639', 3, '560254577858271058', '日本札幌白石区菊水三条五丁目4番2号27階', '1988-11-05', 0, 0, 'nathanjimenez8', '2007-11-25', 'nathan216', '2005-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS785225874948', '王家文', 0, '+44 7461 218586', 1, '453552789807257439', 'No.42 Main building, 667 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-02-07', 0, 0, 'kmwon08', '2018-12-09', 'kamanwo87', '2003-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS018118219161', '顾致远', 1, '+86 10-295-1280', 1, '638533945077243694', 'Room 25, CR Building, 201 Sanlitun Road, Chaoyang District, Beijing, China', '1992-11-15', 0, 0, 'zhiyuangu6', '2017-11-16', 'guzhiyu', '2015-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS043109022097', '佘浩然', 0, '+81 11-036-0552', 3, '605573708538953633', 'Rm. 42, 6-1-6, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-03-26', 0, 0, 'hoyinsheh5', '2020-06-15', 'shehhoy7', '2013-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS676874864784', '森田蒼士', 1, '+81 70-9098-3194', 3, '049711037392820519', 'Rm. 33, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1992-11-14', 0, 0, 'morita2', '2001-09-05', 'moritaaoshi', '2002-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS990416697570', '石川悠人', 1, '+1 212-410-8465', 4, '845369553106125844', '174 West Houston Street Apt 30, New York, NY 10014, United States', '1990-10-28', 0, 0, 'ishiyuto215', '2008-02-12', 'yuto7', '2009-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS617738136495', '石田美緒', 0, '+81 80-2366-1318', 3, '515250015067468206', '日本東京渋谷区代々木二丁目3番6号21階', '1994-07-14', 0, 0, 'ishida9', '2020-08-03', 'ishida95', '2019-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS735382300940', '梅心穎', 0, '+81 80-0063-0267', 0, '493567470627837116', '日本おおさかし東住吉区東田辺三丁目27番11号49階', '1994-04-09', 0, 0, 'sumwingmui', '2011-03-20', 'muisu', '2008-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS288428202082', '杉山優奈', 0, '+86 143-5387-7530', 2, '301252577464389971', '中国中山紫马岭商圈中山五路761号14栋', '1987-06-28', 0, 0, 'yunasugiyama', '2010-02-27', 'yunasugiyama1121', '2004-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS533506199725', '中野舞', 1, '+1 718-938-3912', 1, '148328223500098517', '812 Flatbush Ave Apt 28, Brooklyn, NY 11225, United States', '1994-08-11', 0, 0, 'nakanomai1020', '2006-10-11', 'nakanomai123', '2021-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS315873255657', '藤家輝', 1, '+81 70-1485-1654', 3, '659262127110106472', 'Rm. 13, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1995-04-28', 0, 0, 'tkf5', '2019-12-24', 'kft', '2000-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS554962088078', 'Cheryl Taylor', 1, '+86 144-4022-7030', 0, '141125766163358726', 'Room 27, CR Building, 651 Dong Zhi Men, Dongcheng District, Beijing, China', '1985-11-27', 0, 0, 'taylorc', '2005-10-02', 'chtaylor', '2002-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS619173417350', 'Ruby Washington', 1, '+81 11-522-9434', 4, '937218973096677735', '23F, 5-4-6 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1990-12-27', 0, 0, 'rubywashington', '2019-09-02', 'washington6', '2013-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS095210489634', '木下聖子', 1, '+81 90-7130-6217', 4, '990901812406494383', '日本おおさかし西成区出城一丁目1番18号38階', '1989-02-02', 0, 0, 'seikokinoshita1', '2008-03-10', 'ski', '2004-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS556558261559', '陶安琪', 0, '+86 173-1278-8882', 2, '808559514009611491', '中国上海市浦东新区橄榄路43号华润大厦26室', '1996-04-04', 0, 0, 'taoanqi', '2005-08-02', 'tanq66', '2001-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS520769970872', '陈云熙', 1, '+86 139-0244-7491', 1, '237010661105270092', '中国东莞珊瑚路889号14栋', '1993-11-20', 0, 0, 'chyu', '2006-09-25', 'yche7', '2011-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS907666897575', 'Ralph Hawkins', 1, '+86 20-080-0906', 0, '460225176466311931', 'Room 45, 348 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1985-02-07', 0, 0, 'hawkinsr66', '2020-10-07', 'ralph8', '2002-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS381483998254', '甘永權', 0, '+81 70-1668-1037', 1, '179726531585487311', '日本ならし学園南三丁目9番18号33階', '1998-03-12', 0, 0, 'wingkuenkam2', '2000-12-14', 'wkkam', '2001-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS754221514900', '萧睿', 1, '+1 718-585-6425', 1, '017676167451576994', '883 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1994-02-15', 0, 0, 'ruxiao', '2013-09-13', 'xiaorui1971', '2002-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS413734765092', '錢朝偉', 0, '+81 74-355-6363', 2, '330859207916522193', '9-kai, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1994-10-14', 0, 0, 'chincw506', '2004-07-04', 'chiuwai1027', '2007-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS450574145299', '謝淑怡', 0, '+86 145-5121-0485', 0, '868276788689537290', '中国深圳福田区深南大道450号40号楼', '1999-02-08', 0, 0, 'sukyeets', '2018-06-07', 'tsukyee', '2012-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS494308560829', '原百恵', 0, '+81 90-4766-6570', 1, '452239155213946591', 'Rm. 44, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1989-11-29', 0, 0, 'mohara', '2018-03-06', 'haramomoe01', '2001-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS121368241291', '李梓晴', 0, '+81 11-559-2419', 3, '144078590923363444', '日本札幌中央区宮の森四条六丁目1番3号39号室', '1993-04-18', 0, 0, 'tszchinglee', '2010-08-16', 'tcle10', '2011-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS148117971553', '许云熙', 1, '+86 158-6789-3477', 3, '556086027503722051', '中国成都市成华区玉双路6号890号48室', '1990-09-24', 0, 0, 'xu1', '2011-05-24', 'yunxixu', '2020-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS623856759759', '關玲玲', 1, '+44 5452 929742', 4, '580865441518452669', 'Unit 50, Oxford Eco Centre, 667 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1990-03-05', 0, 0, 'kwanlingling', '2006-03-17', 'kwlingling', '2018-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS876364895008', 'Florence Holmes', 1, '+81 90-0639-0014', 4, '403719387297233094', 'Rm. 23, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-08-23', 0, 0, 'fholm', '2010-01-23', 'holmesflor', '2004-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS724986451591', '杉山愛梨', 0, '+44 5085 459276', 1, '723601923450043385', 'No.36 Main building, 75 Maddox Street, London, W1S 1PU, United Kingdom', '1995-01-14', 0, 0, 'airi10', '2017-05-28', 'aisugiyama220', '2001-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS192731866161', 'Mildred Long', 0, '+44 5283 919075', 1, '484013416832061013', 'No.7 Main building, 481 Regent Street, London, W1B 2LX, United Kingdom', '1994-12-28', 0, 0, 'longmild527', '2012-03-17', 'milong1', '2007-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS395142104336', 'Margaret Alexander', 1, '+81 52-855-5863', 1, '484142795392216217', 'Rm. 1, 10 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-03-08', 0, 0, 'margaretalexander88', '2001-12-27', 'margareta79', '2013-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS474742124033', 'Mary Gutierrez', 0, '+81 52-307-6078', 0, '259285481203248661', '日本なごやし北区清水三丁目19番11号26階', '1991-04-30', 0, 0, 'gutierrez6', '2009-04-08', 'gutierrezmary10', '2000-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS784917300622', 'Judy Mendez', 0, '+44 (1223) 76 9835', 3, '607444440937785011', 'Flat 39, 287 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1986-11-01', 0, 0, 'judy9', '2016-05-20', 'jumendez', '2016-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS288485879799', '何慧琳', 0, '+81 74-109-0444', 3, '982220876182701760', '39-kai, 4 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-06-03', 0, 0, 'ho6', '2018-03-06', 'hwailam218', '2015-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS662588340957', 'Clifford Stone', 0, '+81 70-5344-6309', 4, '849982636837497764', '日本ならし大和郡山市本庄町一丁目1番17号37階', '1989-11-06', 0, 0, 'stonecli', '2002-06-15', 'stoclifford9', '2011-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS512090430416', 'Marvin Mendez', 0, '+81 74-949-1221', 2, '044626826756155477', '日本ならし学園南三丁目9番12号31号室', '1994-08-30', 0, 0, 'marvinmendez', '2004-07-27', 'marvimend', '2003-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS726766857169', '宮本瑛太', 0, '+81 70-6969-8120', 2, '606855624640150653', '17-kai, 16 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-03-25', 0, 0, 'eim830', '2016-04-15', 'meit59', '2006-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS118602598799', '鈴木玲奈', 0, '+1 212-375-1812', 1, '793469193440438908', '488 Fifth Avenue Apartment 23, New York, NY 10017, United States', '1998-05-09', 0, 0, 'suzuki1993', '2016-02-19', 'renasuzuki1', '2018-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS005939826808', 'Amanda Jenkins', 1, '+81 80-1993-7742', 1, '208657403771733342', '33F, 5-4-6 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1989-12-03', 0, 0, 'amaj2004', '2022-01-05', 'ajen', '2014-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS442351075896', '湯國榮', 0, '+86 159-3681-5406', 3, '201528128506243732', 'No.13 building, 391 Ganlan Rd, Pudong, Shanghai, China', '1995-03-02', 0, 0, 'kwokwing9', '2014-12-29', 'tongkw', '2013-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS175172668811', 'Rosa Richardson', 0, '+1 213-072-3400', 3, '873333200602343694', '342 Sky Way Suite 44, Los Angeles, CA 90043, United States', '1997-02-05', 0, 0, 'richardsonrosa1995', '2005-08-16', 'rosarichardson', '2015-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS677864315965', '劉頴思', 0, '+86 21-262-2830', 2, '378561718007011924', '中国上海市徐汇区虹桥路962号45栋', '1989-06-20', 0, 0, 'wingszelau', '2002-08-19', 'lauwingsze2', '2003-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS519363270586', '孫慧敏', 1, '+1 213-282-6140', 2, '103236013588309492', '38 Grape Street Apt 26, Los Angeles, CA 90002, United States', '1987-11-17', 0, 0, 'hswaiman812', '2003-04-17', 'wmhsuan10', '2006-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS696354957597', '田中詩乃', 1, '+81 52-233-6419', 2, '848961279935254607', '日本なごやし瑞穂区河岸町四丁目20番12号9階', '1994-08-04', 0, 0, 'tanaka5', '2021-10-10', 'tanashin', '2006-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS010607346402', '朱國明', 0, '+86 146-2278-0618', 2, '147959299839466756', '中国北京市房山区岳琉路292号华润大厦25室', '1998-09-28', 0, 0, 'kwokmingc1', '2005-12-18', 'chukwokming19', '2007-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS074822155541', '松本美緒', 1, '+86 20-7302-3712', 4, '478175518403927660', 'Room 48, CR Building, 397 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1995-06-05', 0, 0, 'mioma5', '2021-04-24', 'matsumotomio4', '2000-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS954964357692', '雷慧珊', 1, '+81 52-759-8106', 0, '598007525630814934', '日本なごやし熱田区千年二丁目5番13号8階', '1989-01-05', 0, 0, 'wsloui', '2015-08-11', 'lowaisan1', '2009-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS322166312830', '山本百恵', 0, '+44 7722 967668', 3, '818210334112375890', 'Block 41, 670 Redfern St, Liverpool, L20 8JB, United Kingdom', '1989-09-24', 0, 0, 'ymo', '2014-06-20', 'yamamotomo', '2004-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS385622555531', '竹内美咲', 0, '+44 7275 792841', 2, '006739044079162714', 'Block 8, 540 Redfern St, Liverpool, L20 8JB, United Kingdom', '1995-08-06', 0, 0, 'takeuchi224', '2002-02-25', 'takeuchimisaki5', '2000-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS126960255639', '史云熙', 1, '+1 614-589-4537', 3, '496047436278101495', '472 East Cooke Road Apt 45, Columbus, GA 43214, United States', '1985-09-13', 0, 0, 'ys1983', '2014-10-31', 'yunxishi', '2014-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS051260347495', 'Glenn Perez', 0, '+1 718-844-3453', 2, '288437467755797917', '866 1st Ave Apartment 31, Brooklyn, NY 11220, United States', '1993-01-17', 0, 0, 'pglenn8', '2000-12-28', 'perg', '2007-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS017405858967', '鐘杰倫', 0, '+86 197-3023-6414', 3, '105648596361247631', 'No.25 building, 752 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1995-02-24', 0, 0, 'chucl923', '2007-12-11', 'chiehlun824', '2021-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS126142157534', '冯璐', 0, '+86 171-8768-8882', 1, '183590454667292306', '中国上海市闵行区宾川路691号34号楼', '1997-09-02', 0, 0, 'fenglu208', '2011-07-09', 'lu208', '2017-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS846924186762', '高木百花', 0, '+1 212-896-7312', 2, '231393398889566726', '461 Fifth Avenue Suite 28, New York, NY 10017, United States', '1996-10-26', 0, 0, 'mot57', '2021-04-24', 'tmomoka', '2006-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS995638782297', '黃青雲', 0, '+81 11-204-9579', 1, '985500895999013841', 'Rm. 2, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-08-01', 0, 0, 'chingwanw7', '2008-01-09', 'chingwanwong', '2017-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS271665960153', '胡岚', 0, '+81 3-3434-9412', 0, '178099149032942978', '日本東京港区東新橋一丁目5番15号8階', '1992-05-06', 0, 0, 'lanh', '2006-04-23', 'lanhu1129', '2002-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS541430205116', '宮本大輔', 0, '+86 191-8267-3723', 3, '363839940116276094', '中国广州市天河区天河路360号20号楼', '1986-11-03', 0, 0, 'daisuke804', '2002-02-28', 'daisuke602', '2006-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS859536684655', '伊藤陽菜', 1, '+86 193-1460-0997', 3, '928869797543506372', '中国上海市徐汇区虹桥路264号华润大厦10室', '1985-06-26', 0, 0, 'itohina2020', '2018-08-03', 'ith4', '2012-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS829396508940', '有村美緒', 0, '+81 66-539-9578', 0, '200598517342074900', '日本おおさかし近江堂一丁目7番19号8階', '1993-06-23', 0, 0, 'amio49', '2018-01-07', 'arimio', '2015-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS461932300227', '戚明', 0, '+81 90-0715-1229', 1, '964327384504054075', '日本なごやし瑞穂区河岸町四丁目20番20号39階', '1992-08-31', 0, 0, 'ming8', '2015-11-02', 'mingchic', '2002-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS900897715538', 'Grace Wilson', 1, '+81 70-3850-0284', 3, '819561167047601553', '日本おおさかし近江堂一丁目7番9号28階', '1986-05-16', 0, 0, 'wgra', '2017-06-29', 'gwilson', '2013-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS843127969284', 'Lillian Wright', 0, '+86 149-2566-8261', 1, '269261855094863182', 'No.14 building, 315 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1991-08-04', 0, 0, 'lillwr', '2009-05-11', 'wlill', '2016-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS006364412303', '史秀英', 1, '+81 52-883-8076', 0, '868560441419738325', 'Rm. 24, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1995-02-01', 0, 0, 'shixiu216', '2004-10-07', 'sxiuying', '2016-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS042008885922', '平野光莉', 1, '+81 80-5163-1427', 3, '261042926510559015', '日本おおさかし平野区加美東四丁目9番19号34階', '1987-11-28', 0, 0, 'hih320', '2019-11-19', 'hhikari208', '2003-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS399545430607', '渡部愛梨', 1, '+86 137-8275-3324', 3, '237714272032348675', '中国成都市成华区二仙桥东三路111号50楼', '1991-03-12', 0, 0, 'wata', '2005-01-14', 'airi702', '2002-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS084012837214', '徐安琪', 0, '+81 66-727-9902', 2, '003632528305473121', '日本おおさかし東住吉区東田辺三丁目27番15号11階', '1991-10-26', 0, 0, 'anqixu420', '2020-10-31', 'xuanqi', '2003-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS913682351592', 'Robert Stephens', 1, '+1 614-684-1460', 4, '519821006508942753', '44 Wicklow Road Apt 21, Columbus, GA 43204, United States', '1993-08-24', 0, 0, 'stephens4', '2018-04-04', 'robes9', '2013-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS176992236109', '官慧敏', 1, '+86 160-1717-9611', 4, '495947498823354871', '1F, 609 Middle Huaihai Road, Huangpu District, Shanghai, China', '1991-04-02', 0, 0, 'kowm', '2010-05-11', 'kwm', '2019-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS718823976500', '黄詩涵', 0, '+86 177-3789-1018', 0, '948679081442231635', '中国北京市朝阳区三里屯路646号20号楼', '1997-04-01', 0, 0, 'shihanh', '2014-10-09', 'hshihan', '2015-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS798070956382', 'Kathleen Hicks', 1, '+81 70-1000-9788', 0, '784412003141967927', 'Rm. 8, 5-4-3 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1998-12-10', 0, 0, 'hicks807', '2020-11-19', 'hicksk', '2002-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS128881794206', 'Philip Mason', 0, '+44 5803 199316', 3, '376276158314042435', 'Unit 28, Oxford Eco Centre, 808 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1990-06-30', 0, 0, 'masonphilip', '2015-03-26', 'mason7', '2019-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS654092189421', '藍國權', 1, '+81 52-344-5216', 3, '911398299504100791', 'Rm. 44, 9 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-05-16', 0, 0, 'kwol4', '2022-02-19', 'kklam1215', '2006-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS003161704640', 'Joshua Edwards', 1, '+1 614-588-9977', 2, '291393386564378400', '940 East Alley Suite 2, Columbus, GA 43201, United States', '1990-12-07', 0, 0, 'joshuedwards80', '2003-11-12', 'edwj', '2014-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS039249770990', '何家明', 0, '+86 177-3472-1462', 2, '009012502429869564', '中国中山京华商圈华夏街623号48室', '1993-01-02', 0, 0, 'hokm1', '2018-02-17', 'kamingho10', '2019-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS868360531014', '沈詩涵', 0, '+86 154-5370-3383', 3, '238301109653600226', 'Room 23, CR Building, 712 Jiangnan West Road, Haizhu District, Guangzhou, China', '1995-09-11', 0, 0, 'sheshih', '2001-06-10', 'shihan5', '2018-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS141424331666', '苗慧琳', 0, '+81 90-4200-3012', 1, '096464492141468079', '日本おおさかし西成区出城一丁目1番1号22階', '1990-09-22', 0, 0, 'miwl', '2020-12-30', 'wlm7', '2019-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS546941461468', 'Marcus Stewart', 1, '+81 90-4827-2503', 4, '110916078071623570', '35F, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-05-16', 0, 0, 'smar', '2019-06-28', 'mste', '2016-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS612080114849', 'Carmen Spencer', 0, '+86 186-9354-5855', 1, '533270255460619532', '中国东莞坑美十五巷211号17室', '1996-09-28', 0, 0, 'spencer10', '2006-06-27', 'sca1999', '2008-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS050431164281', '廖秀英', 0, '+81 90-2126-2893', 4, '135847659133775188', '日本札幌清田区真栄四条五丁目19番11号11階', '1995-03-07', 0, 0, 'xliao', '2001-07-03', 'xiuying92', '2007-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS451327166402', '和田玲奈', 0, '+44 5224 386959', 3, '669432633556027461', 'No.50 Main building, 462 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1992-10-25', 0, 0, 'warena', '2010-03-09', 'wadarena', '2016-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS409473406001', '朱頴璇', 0, '+81 66-312-7589', 1, '232139688331737032', '14F, 4-9-7 Kamihigashi, Hirano Ward, Osaka, Japan', '1999-01-22', 0, 0, 'wingsuench', '2001-04-25', 'wschu', '2009-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS056155157742', '方晓明', 1, '+44 5709 980071', 1, '933624303332496851', 'No.43 Main building, 80 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1999-01-19', 0, 0, 'fxiao', '2000-01-26', 'xiaomingfan1952', '2018-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS417669559779', 'Steve Carter', 0, '+81 11-686-1036', 1, '100740713804625503', '日本札幌白石区菊水三条五丁目2番15号31階', '1992-11-06', 0, 0, 'cst', '2020-03-12', 'stevecarter', '2007-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS333560215239', '黎麗欣', 1, '+81 66-588-9107', 3, '659353264894866495', '日本おおさかし西成区出城一丁目1番3号22号室', '1986-07-01', 0, 0, 'lyl123', '2016-01-14', 'laiyanlai1991', '2001-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS731953563288', '池田百花', 0, '+86 755-5481-6957', 2, '562891395368557379', '中国深圳龙岗区布吉镇西环路778号华润大厦42室', '1989-02-26', 0, 0, 'ikedamomoka', '2006-07-29', 'ikedamomoka90', '2017-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS567326386306', '王云熙', 1, '+86 10-0044-3759', 1, '462766610648938941', 'Room 6, 448 Dong Zhi Men, Dongcheng District, Beijing, China', '1991-10-11', 0, 0, 'ywan', '2007-05-19', 'yunxiwang', '2005-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS073146694906', '薛杰宏', 1, '+86 755-5168-1921', 3, '715893488211092667', 'No.16 building, 295 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1986-04-01', 0, 0, 'jiehongx', '2016-02-11', 'xuejieh1', '2019-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS301921258308', '近藤凛', 1, '+86 180-5862-5071', 4, '152146230938473821', '中国成都市锦江区红星路三段167号2楼', '1988-04-10', 0, 0, 'kondorin1122', '2020-02-29', 'rinkond', '2021-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS950279646471', '熊晓明', 1, '+81 70-3675-2448', 4, '360550066136393394', '日本東京千代田区丸の内一丁目6番15号5号室', '1995-07-14', 0, 0, 'xiaomingx1127', '2013-09-29', 'xixiong', '2019-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS602170534934', '梅曉彤', 1, '+44 5631 854446', 4, '745249762257490922', 'Unit 28, Oxford Eco Centre, 15 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1997-01-06', 0, 0, 'muihiutung', '2008-03-29', 'muihiutung1123', '2016-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS720759533663', 'Lisa King', 1, '+44 (1865) 92 4568', 0, '152767367572439867', 'No.31 Main building, 665 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1988-12-08', 0, 0, 'kilisa', '2018-01-11', 'king424', '2008-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS549100145942', '遠藤優奈', 1, '+1 212-578-1705', 1, '913462665994512048', '211 West Houston Street Apt 27, New York, NY 10014, United States', '1989-12-30', 0, 0, 'endyun', '2019-01-25', 'yuna2', '2015-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS678888242599', '文家文', 0, '+86 769-3109-2035', 1, '609046017517539662', 'No.21 building, 122 Shanhu Rd, Dongguan, China', '1989-11-14', 0, 0, 'kmman402', '2008-08-19', 'makm2', '2011-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS559494458647', '内田舞', 0, '+81 66-581-4958', 2, '894716237063008756', '日本おおさかし平野区加美東四丁目9番10号34号室', '1996-05-07', 0, 0, 'mai3', '2020-03-21', 'uchima', '2005-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS597493028761', '陳梓軒', 0, '+81 70-0377-0295', 4, '391313174349382644', '3F, 1-6-9, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1989-08-22', 0, 0, 'chanth1996', '2012-02-16', 'tszhinchan207', '2004-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS898734061938', 'Helen Jordan', 0, '+1 838-726-3007', 1, '422781251410969929', '590 State Street Apartment 37, Albany, NY 12203, United States', '1991-10-27', 0, 0, 'jordan6', '2004-01-08', 'johel', '2001-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS252369602472', '于子韬', 1, '+81 70-3821-0738', 2, '357312994278594065', '48F, 6 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1986-11-22', 0, 0, 'yuzitao', '2001-08-31', 'zitaoyu', '2007-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS032448381820', '徐榮發', 0, '+81 66-117-4998', 3, '002522520323359777', '日本おおさかし西成区天神ノ森二丁目1番15号9階', '1986-11-28', 0, 0, 'wingfat64', '2015-08-26', 'tsuiwf3', '2005-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS614720571627', '馬志明', 0, '+81 74-541-1954', 0, '774828624650561077', '日本ならし西大寺赤田町一丁目7番1号33階', '1993-05-30', 0, 0, 'cmm207', '2015-09-07', 'chm9', '2007-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS900884050188', '宮崎陸', 1, '+81 3-8959-1304', 3, '677327071836496240', 'Rm. 7, 2-3-13 Yoyogi, Shibuya-ku, Tokyo, Japan', '1992-10-31', 0, 0, 'rikumiyazaki7', '2021-12-01', 'rikumiya', '2012-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS778047404007', '陆安琪', 0, '+1 312-257-9212', 4, '061727766991233147', '556 Pedway Apartment 50, Chicago, IL 60601, United States', '1994-02-24', 0, 0, 'luanq10', '2008-04-08', 'luanqi', '2005-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS223357089247', 'Eddie Herrera', 0, '+81 52-090-2442', 3, '210144163284427677', 'Rm. 50, 16 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-12-25', 0, 0, 'eddieherrera1224', '2005-11-18', 'herreraeddi', '2020-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS401255901327', '麥惠敏', 0, '+81 3-1662-5208', 2, '647184741230156481', '日本東京千代田区丸の内一丁目6番19号3号室', '1997-07-24', 0, 0, 'mawaiman', '2007-02-21', 'mwm', '2008-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS075081206634', 'Frances Ford', 1, '+86 760-4781-8452', 3, '195961929008478212', 'No.9 building, 420 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1987-08-04', 0, 0, 'ffo', '2021-01-15', 'ffo', '2009-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS145373586588', '藤原葵', 0, '+1 213-539-6368', 0, '095057875128532834', '628 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1998-05-21', 0, 0, 'aoi6', '2017-07-30', 'fujiwara7', '2014-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS544064570890', '石川桜', 1, '+86 146-2256-7984', 0, '247601688348736323', 'Room 36, 78 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1992-09-06', 0, 0, 'ishikawasa222', '2019-08-27', 'ishikawasakura515', '2020-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS433467421179', '前田光', 0, '+44 (121) 801 3914', 3, '759247157540817407', 'Unit 17, Oxford Eco Centre, 458 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1997-01-20', 0, 0, 'mhi', '2019-11-14', 'maedahika', '2014-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS762241155481', '中島結翔', 0, '+86 178-8908-6492', 4, '936995793141414837', '中国北京市海淀区清河中街68号986号35号楼', '1996-05-02', 0, 0, 'yuitonakajima1957', '2015-04-04', 'yuitn', '2016-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS743423490689', 'Marie Warren', 1, '+1 213-435-7274', 3, '319979615396038869', '442 Grape Street Suite 16, Los Angeles, CA 90002, United States', '1996-09-22', 0, 0, 'wm805', '2008-08-16', 'wmarie227', '2012-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS576090395069', '梁家玲', 1, '+81 3-0867-7345', 0, '908246494644545678', '日本東京千代田区丸の内一丁目6番3号45号室', '1995-06-20', 0, 0, 'leungkaling9', '2014-12-18', 'kalingl06', '2017-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS305828444479', 'Billy Chen', 1, '+86 10-2948-3636', 3, '046570624056279348', 'Room 1, 426 68 Qinghe Middle St, Haidian District, Beijing, China', '1989-01-16', 0, 0, 'billychen703', '2011-05-24', 'cbill', '2011-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS464115260893', 'Kelly Flores', 1, '+86 199-5801-5751', 3, '755391290137243858', '中国上海市浦东新区橄榄路578号32栋', '1993-12-04', 0, 0, 'kellyflores7', '2014-12-08', 'floreske9', '2018-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS291606947933', '邓璐', 1, '+86 192-1678-6574', 2, '009480633265345025', 'No.29 building, 26 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-09-30', 0, 0, 'dengl', '2022-02-15', 'luden', '2003-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS603793197027', '藤原一輝', 1, '+86 155-0573-6833', 2, '314549767500193458', 'Room 14, 559 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1986-06-17', 0, 0, 'ikkifujiwara', '2012-03-11', 'fujiwaraikki929', '2003-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS052484036410', '沈晓明', 1, '+86 21-053-3422', 3, '081069747263321221', 'No.13 building, 190 Ganlan Rd, Pudong, Shanghai, China', '1988-10-20', 0, 0, 'shenxiaoming', '2010-06-25', 'xiaomingshe', '2005-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS174210616882', '秦岚', 1, '+86 20-7346-3289', 2, '014794191772677295', '中国广州市白云区机场路棠苑街五巷732号华润大厦22室', '1991-03-30', 0, 0, 'lanqi822', '2001-12-31', 'lanq', '2017-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS673092100878', '今井和真', 0, '+81 80-1475-7259', 3, '579943358690045657', '日本東京港区東新橋一丁目5番7号29階', '1989-01-16', 0, 0, 'kazuma1988', '2019-01-20', 'imakazuma611', '2012-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS397136932957', '毛安琪', 0, '+81 90-5525-8728', 1, '028960491200517243', '日本なごやし守山区瀬古東二丁目171番10号33階', '1992-03-26', 0, 0, 'anqima', '2003-11-04', 'maoan1', '2011-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS261559841395', 'Edith Rice', 0, '+44 7743 577902', 3, '527944480960879696', 'No.17 Main building, 247 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1987-11-25', 0, 0, 'rice2016', '2014-11-27', 'riceedit11', '2015-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS573264509747', 'Amber Patel', 0, '+81 70-8403-5847', 2, '850765575855326572', '41-kai, 1-6-15, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1998-02-22', 0, 0, 'patel1221', '2006-08-12', 'ap2', '2016-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS639638305906', '郝嘉伦', 1, '+1 330-579-1059', 4, '254639163434464835', '60 Collier Road 3rd Floor, Akron, OH 44320, United States', '1987-08-01', 0, 0, 'jialunhao', '2015-11-19', 'hao9', '2018-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS152847823017', '渡辺悠人', 1, '+86 10-3943-7485', 2, '728844459895040182', 'No.23 building, 498 68 Qinghe Middle St, Haidian District, Beijing, China', '1998-08-22', 0, 0, 'satoyuto9', '2015-09-30', 'ysato814', '2012-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS931255017811', '斉藤海斗', 0, '+86 28-8955-9174', 1, '077133274463996130', '中国成都市成华区玉双路6号32号18楼', '1998-03-27', 0, 0, 'kasa', '2002-10-02', 'kaitosaito317', '2019-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS045767394397', '松井百恵', 0, '+1 213-574-4856', 2, '915921303869053531', '504 Figueroa Street Apt 30, Los Angeles, CA 90037, United States', '1992-11-18', 0, 0, 'mmomoe', '2010-01-29', 'mmom', '2011-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS414741937687', 'Karen Harrison', 1, '+86 20-1675-8199', 3, '153726684926093471', 'Room 2, 669 Xiaoping E Rd, Baiyun , Guangzhou, China', '1994-05-07', 0, 0, 'harrisonkaren', '2004-06-23', 'harrisonk', '2002-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS591521593665', 'Christine Phillips', 1, '+44 (161) 873 5999', 3, '730347879795603278', 'Unit 16, Oxford Eco Centre, 479 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-11-18', 0, 0, 'cp5', '2021-12-26', 'pc9', '2017-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS991335932903', '孔璐', 0, '+86 174-2529-9884', 1, '346560259766989015', '中国东莞珊瑚路711号35室', '1996-02-21', 0, 0, 'kl99', '2000-02-19', 'konlu', '2014-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS986307829525', 'Harold Silva', 1, '+86 755-937-4746', 2, '816689508643610862', 'Room 7, 187 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1989-03-11', 0, 0, 'hasilva', '2001-08-29', 'silva703', '2010-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS136953120294', '孔詩涵', 1, '+86 178-0612-2865', 3, '923395601574596808', 'No.27 building, 44 Jingtian East 1st St, Futian District, Shenzhen, China', '1991-07-14', 0, 0, 'kongshi99', '2021-03-22', 'kongs79', '2005-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS432313789275', '廖志遠', 1, '+86 145-0334-6475', 2, '824993976564029415', '5F, 314 Hongqiao Rd., Xu Hui District, Shanghai, China', '1989-01-20', 0, 0, 'lichi', '2000-04-03', 'cyl', '2017-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS941710656160', '文霆鋒', 1, '+86 755-097-8342', 4, '424659991680471232', 'Room 27, 581 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1992-11-29', 0, 0, 'tingfungma', '2019-02-18', 'tingfungma1026', '2020-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS880007981396', '李安琪', 1, '+44 5327 875917', 4, '275379382848750678', 'Block 45, 236 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1993-08-05', 0, 0, 'anqili', '2022-02-05', 'lianqi', '2006-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS050110112588', 'Kyle Stewart', 0, '+81 52-639-3311', 0, '190115479962296111', 'Rm. 42, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-11-08', 0, 0, 'skyle507', '2014-09-07', 'stekyle15', '2009-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS999339058142', '金子韬', 1, '+86 10-742-1315', 4, '986710870728125594', 'Room 15, CR Building, 283 FuXingMenNei Street, XiCheng District, Beijing, China', '1997-12-15', 0, 0, 'jinzita', '2020-11-19', 'jinz82', '2004-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS539341473863', '姜慧琳', 0, '+44 5557 926193', 1, '834571054140467425', 'No.2 Main building, 438 Park End St, Oxford, OX1 1JD, United Kingdom', '1986-03-23', 0, 0, 'wailamchang', '2000-02-16', 'chang722', '2013-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS278729276606', '莫震南', 1, '+86 143-6965-1288', 0, '690786510492383124', '中国广州市越秀区中山二路811号华润大厦41室', '1997-06-15', 0, 0, 'moz', '2002-04-21', 'mo4', '2020-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS461355226224', 'Jeffery Diaz', 0, '+81 70-6664-2980', 3, '959859091673439080', '日本なごやし熱田区千年二丁目5番19号31階', '1986-02-03', 0, 0, 'jeffdia', '2006-12-15', 'diaz97', '2001-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS846349405959', '坂本玲奈', 1, '+81 3-6713-5610', 1, '103068067744943839', '29-kai, 3-15-19 Ginza, Chuo-ku, Tokyo, Japan', '1997-04-18', 0, 0, 'sr1108', '2010-04-21', 'sakamotorena', '2020-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS144582533830', '程子韬', 0, '+81 90-8894-5843', 3, '064745079693928896', '日本なごやし北区楠味鋺三丁目80番11号19階', '1998-09-27', 0, 0, 'zitao1024', '2018-03-24', 'zc727', '2014-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS753667934182', '彭秀英', 1, '+86 132-1445-7143', 4, '656912256436676412', '47F, 296 68 Qinghe Middle St, Haidian District, Beijing, China', '1998-12-10', 0, 0, 'xiuyingpen86', '2019-01-20', 'pengxiu', '2017-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS651812780232', '袁安琪', 0, '+1 838-066-9515', 1, '915110520794535342', '628 State Street Apartment 3, Albany, NY 12203, United States', '1989-08-30', 0, 0, 'yueok', '2018-10-25', 'yueok3', '2002-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS037314774200', 'Benjamin Wells', 0, '+1 718-231-4189', 2, '798192229699837908', '551 Columbia St Suite 12, Brooklyn, NY 11231, United States', '1985-11-05', 0, 0, 'benwe91', '2004-08-04', 'bw5', '2015-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS259494557520', '盧慧琳', 0, '+81 74-349-7755', 0, '903021023197596565', '5-kai, 3-9-2 Gakuenminami, Nara, Japan', '1992-04-19', 0, 0, 'wailam20', '2021-12-16', 'lwailam', '2004-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS263374570746', '房國賢', 1, '+86 143-5267-2038', 1, '325825491154468048', '中国东莞珊瑚路914号10楼', '1987-11-03', 0, 0, 'kwokyin5', '2001-08-15', 'fokwokyin6', '2020-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS286125786114', '應學友', 1, '+86 755-816-2166', 0, '199997684139898634', 'No.29 building, 590 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1988-12-12', 0, 0, 'hokyau2019', '2005-02-26', 'yinghy2019', '2015-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS802255604073', '梅明', 1, '+44 7839 468980', 4, '657998114574527504', 'Flat 34, 164 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1996-06-17', 0, 0, 'mmi1003', '2014-09-19', 'mum', '2001-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS593378444316', '羅霆鋒', 0, '+86 159-2155-3990', 1, '435490846948717863', '中国中山乐丰六路328号9室', '1993-02-08', 0, 0, 'lo57', '2020-03-19', 'lotf1961', '2018-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS985979124922', 'Catherine Herrera', 0, '+86 760-249-6258', 1, '248270556832379026', '34F, 918 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1993-07-25', 0, 0, 'herreracatherine', '2015-07-06', 'herrera5', '2004-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS080010143195', '汤睿', 0, '+86 161-7685-0587', 1, '096691034567327927', 'Room 19, CR Building, 224 Jingtian East 1st St, Futian District, Shenzhen, China', '1995-02-26', 0, 0, 'tangrui', '2020-11-22', 'tangru2', '2002-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS392444875504', '山田光莉', 0, '+1 838-845-8054', 3, '562605821735002732', '121 Lark Street 3rd Floor, Albany, NY 12210, United States', '1994-07-30', 0, 0, 'yamadahikari', '2001-06-22', 'yamadahikari219', '2013-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS851560637892', '樊小慧', 1, '+86 760-7026-0543', 1, '859094427988731792', '中国中山乐丰六路962号华润大厦36室', '1994-10-08', 0, 0, 'fansiuwai1977', '2011-09-30', 'siuwai1219', '2000-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS664721809796', 'Wayne Campbell', 0, '+81 3-2787-6506', 1, '292951345453814197', 'Rm. 26, 1-6-13, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-04-11', 0, 0, 'cwa', '2014-02-13', 'wacampbell4', '2006-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS019377511476', '余詩涵', 0, '+81 3-9717-9853', 0, '498803468842189252', '日本東京品川区東五反田五丁目2番8号17階', '1990-04-15', 0, 0, 'yushih', '2010-11-23', 'shihan1110', '2016-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS507997535277', '山下詩乃', 0, '+1 213-733-1900', 2, '951552724423372072', '827 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1996-02-04', 0, 0, 'shiy311', '2016-12-30', 'shyamashita', '2009-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS005536279963', '任詠詩', 1, '+44 7900 056113', 2, '428687123331312848', 'Block 50, 925 Redfern St, Liverpool, L20 8JB, United Kingdom', '1998-02-09', 0, 0, 'wsy', '2021-11-09', 'wingsze605', '2018-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS118045297611', 'Bobby Nichols', 0, '+1 614-370-6951', 1, '747974812562047546', '368 Tremont Road Suite 25, Columbus, GA 43212, United States', '1985-07-01', 0, 0, 'bobbynichols', '2005-06-05', 'nichbobby', '2009-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS154236868962', '孙秀英', 1, '+86 760-598-8359', 3, '966573530709512933', '4F, 551 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1988-11-30', 0, 0, 'xiuysun14', '2018-10-15', 'sunxiu13', '2007-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS490114172472', '邵朝偉', 1, '+81 74-744-0348', 3, '676774220661993910', '日本ならし大和郡山市本庄町一丁目1番11号29階', '1994-02-03', 0, 0, 'siuchiuwai', '2007-07-04', 'chiuwai8', '2017-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS391189260807', '郭安琪', 1, '+81 52-888-9745', 2, '815219231537238602', 'Rm. 20, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1998-12-23', 0, 0, 'guoa', '2005-03-02', 'anqi3', '2006-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS726951707678', 'Henry Edwards', 1, '+86 21-5751-5553', 1, '013361642199072591', '中国上海市徐汇区虹桥路642号14栋', '1986-12-08', 0, 0, 'edwards85', '2004-01-22', 'henryedwards1', '2016-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS358962632566', 'Curtis Myers', 1, '+44 (161) 750 4149', 2, '215014712906657906', 'Flat 40, 508 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1987-08-12', 0, 0, 'myers927', '2013-04-16', 'curtismy', '2016-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS621636697698', '尹國權', 0, '+86 21-0180-4903', 2, '169630390353316061', '24F, 797 Binchuan Rd, Minhang District, Shanghai, China', '1998-07-10', 0, 0, 'yinkk', '2017-08-14', 'ykk10', '2019-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS952132684606', '朱璐', 1, '+44 (20) 7124 6052', 2, '280253812855528755', 'Block 50, 400 Maddox Street, London, W1S 1PU, United Kingdom', '1993-05-25', 0, 0, 'lzh7', '2012-02-10', 'zhu102', '2002-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS491339002168', '吉田絢斗', 1, '+81 11-052-1580', 3, '592981481606897150', '49F, 13-3-4 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1994-12-14', 0, 0, 'ayo', '2017-12-25', 'ayaty307', '2021-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS198900711542', 'Jimmy Burns', 1, '+1 718-028-0743', 1, '170248570945692436', '994 Flatbush Ave Apt 9, Brooklyn, NY 11225, United States', '1994-04-25', 0, 0, 'burnjimmy8', '2001-07-31', 'jburns', '2013-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS692319057251', '莫安琪', 0, '+81 52-097-1102', 2, '761220747093400338', '日本なごやし守山区瀬古東二丁目171番16号43階', '1992-07-08', 0, 0, 'anqimo1', '2014-11-07', 'moa1', '2001-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS489166651215', '中森美緒', 1, '+1 330-007-6122', 2, '581329803563469334', '54 Ridgewood Road Apartment 1, Akron, OH 44321, United States', '1988-03-11', 0, 0, 'mionaka2015', '2006-06-14', 'mionak210', '2017-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS364284763351', 'Christopher Cruz', 1, '+81 90-0916-8844', 1, '128351733855738524', '37F, 3-27-18 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1996-11-08', 0, 0, 'christophercruz', '2014-06-10', 'cruz4', '2010-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS750866705646', 'Maria Spencer', 1, '+81 80-5696-3241', 1, '732768415521553389', '33-kai, 5-2-20 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-01-24', 0, 0, 'marspencer', '2001-07-09', 'maspencer', '2017-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS176719324999', '田村和真', 0, '+81 70-2292-1589', 0, '619338486944223264', '日本なごやし守山区瀬古東二丁目171番5号16階', '1995-08-28', 0, 0, 'kazumatamur8', '2011-08-04', 'tamurka', '2007-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS523228832113', '村田架純', 1, '+81 3-6030-8358', 4, '230803413394811769', '41F, 1-6-1, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1988-08-22', 0, 0, 'km604', '2015-01-17', 'kasumimura', '2013-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS383107842584', 'Melissa Cook', 0, '+44 7031 152782', 3, '702932958087869418', 'Block 23, 456 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-10-17', 0, 0, 'cookm', '2017-04-02', 'comelissa48', '2021-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS208648668686', '梅志遠', 1, '+81 80-3296-2186', 1, '540189770661348738', 'Rm. 34, 2-3-7 Yoyogi, Shibuya-ku, Tokyo, Japan', '1990-11-20', 0, 0, 'muicy', '2010-10-03', 'mucy', '2006-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS365958968851', 'Karen Henderson', 1, '+81 80-9315-5586', 3, '594994559023864475', 'Rm. 16, 1-5-2, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1991-09-21', 0, 0, 'henkaren10', '2014-06-13', 'hekaren622', '2014-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS613653313204', 'Michelle Cox', 0, '+86 10-221-8377', 3, '179500189783750221', '中国北京市海淀区清河中街68号237号42栋', '1985-10-26', 0, 0, 'coxm3', '2021-02-13', 'coxm', '2016-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS625086667630', 'Jean Davis', 1, '+81 52-941-3466', 2, '861639581298298761', 'Rm. 30, 3-19-3 Shimizu, Kita Ward, Nagoya, Japan', '1993-04-22', 0, 0, 'davis208', '2002-03-08', 'davjea', '2008-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS954685908253', '陳發', 0, '+86 145-1288-4262', 0, '052783578803206194', '中国广州市天河区天河路445号32号楼', '1987-07-27', 0, 0, 'chafa', '2011-07-31', 'fat89', '2014-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS993767908896', 'Jeremy Coleman', 0, '+81 74-329-2343', 3, '775111551302783025', '12F, 1-7-10 Saidaiji Akodacho, Nara, Japan', '1988-12-10', 0, 0, 'colemj', '2001-05-08', 'jerecole', '2019-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS060392288459', 'Juan Ruiz', 0, '+86 181-6115-7360', 3, '539341743286553764', '38F, 804 FuXingMenNei Street, XiCheng District, Beijing, China', '1997-07-27', 0, 0, 'rjuan', '2009-05-16', 'jruiz8', '2021-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS077139124860', '曹慧琳', 1, '+81 3-8952-9361', 0, '747401885677747084', '日本東京品川区東五反田五丁目2番5号1号室', '1992-10-26', 0, 0, 'wlcho9', '2011-06-11', 'chwl', '2002-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS271721520461', '田睿', 0, '+81 66-130-6743', 2, '385363914527005732', '31-kai, 4-9-4 Kamihigashi, Hirano Ward, Osaka, Japan', '1986-01-16', 0, 0, 'trui5', '2016-05-09', 'tianrui', '2018-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS969628556427', '斉藤大輔', 0, '+81 90-9132-0120', 3, '889850830915366521', '日本札幌中央区宮の森四条六丁目1番16号38号室', '1998-10-14', 0, 0, 'dasaito', '2019-02-06', 'daisuke615', '2012-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS421638611615', '中村大和', 0, '+81 80-7416-7092', 1, '834529930675508421', '32F, 8 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-04-21', 0, 0, 'nakamurayamato1206', '2018-12-10', 'nakamyamato', '2012-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS794794219089', '横山大和', 1, '+81 80-2545-7865', 0, '288526353327356107', '日本おおさかし東住吉区東田辺三丁目27番4号34階', '1993-01-09', 0, 0, 'yokoyama', '2010-04-19', 'yamato1967', '2009-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS433722441578', '顾睿', 0, '+1 838-315-8088', 1, '816249666821099316', '625 Central Avenue Suite 17, Albany, NY 12205, United States', '1992-04-08', 0, 0, 'gu6', '2017-03-06', 'gur87', '2020-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS027473372744', 'Louise Peterson', 1, '+86 175-5023-1011', 3, '399790021977396234', 'Room 34, CR Building, 18 Hongqiao Rd., Xu Hui District, Shanghai, China', '1996-10-18', 0, 0, 'louispeterson3', '2006-02-15', 'louipeterson', '2010-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS574473636514', 'Kathryn Lopez', 1, '+86 20-463-3276', 2, '315923397757032604', 'No.26 building, 884 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1999-03-02', 0, 0, 'lokathryn45', '2010-11-16', 'kathrynlop8', '2014-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS712477683571', 'Thomas Bennett', 1, '+1 718-397-1843', 1, '274294290987899215', '726 1st Ave Suite 27, Brooklyn, NY 11220, United States', '1993-06-24', 0, 0, 'bthom', '2016-03-14', 'bthomas', '2004-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS054930490687', 'Judith Gray', 0, '+81 80-1583-4414', 1, '320523416749981172', 'Rm. 10, 2-1-19 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1987-07-05', 0, 0, 'grayjudi', '2001-05-13', 'gray6', '2007-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS092183418576', '譚國榮', 0, '+86 755-6224-9482', 3, '112979605776374055', '6F, 515 Jingtian East 1st St, Futian District, Shenzhen, China', '1991-04-14', 0, 0, 'kwokwingtam', '2015-08-21', 'tam517', '2020-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS344592086107', '鐘天樂', 0, '+44 (151) 464 9790', 4, '181302687111860288', 'Flat 36, 753 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1994-05-19', 0, 0, 'tlch', '2017-11-29', 'chuntinlo313', '2016-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS219213262831', '謝梓軒', 0, '+86 199-9450-6245', 1, '005144747322832765', 'No.19 building, 264 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1987-01-11', 0, 0, 'tszhints', '2016-12-08', 'thtse4', '2006-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS475234973316', 'Clarence Moore', 1, '+44 7655 958265', 1, '055861189255059355', 'Flat 23, 266 New Street, Birmingham, B2 4DB, United Kingdom', '1991-12-03', 0, 0, 'clarencemoore812', '2000-05-20', 'clmoore01', '2000-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS292698983358', '清水悠人', 0, '+1 838-632-9624', 2, '509925225111820146', '422 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1992-06-09', 0, 0, 'shimiyuto528', '2004-03-01', 'yushimizu2', '2019-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS700580866866', '斎藤桜', 0, '+81 52-424-1432', 1, '764053395771885313', 'Rm. 22, 19 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1998-05-10', 0, 0, 'sakura3', '2011-11-01', 'sasa', '2002-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS674224219712', '孙秀英', 0, '+44 (151) 258 3691', 0, '241241100663972267', 'No.27 Main building, 7 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1996-08-08', 0, 0, 'xisun', '2012-02-14', 'xiuying417', '2007-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS530932417674', 'Anna Sanchez', 0, '+81 70-0873-8848', 2, '810754678278026837', '20-kai, 2-5-7 Chitose, Atsuta Ward, Nagoya, Japan', '1992-01-29', 0, 0, 'sananna4', '2015-11-10', 'sanchezanna1991', '2001-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS189403917801', '田村大輔', 0, '+86 133-9531-1830', 2, '667616254805867001', '中国成都市锦江区人民南路四段932号9栋', '1997-09-29', 0, 0, 'dt10', '2003-12-08', 'dait5', '2019-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS935693040157', 'Jesse Reyes', 0, '+81 66-654-8628', 0, '502063995048158575', '日本おおさかし東住吉区東田辺三丁目27番6号12階', '1988-12-18', 0, 0, 'rje', '2002-02-09', 'jesse6', '2002-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS999803601722', 'Susan Clark', 1, '+1 330-233-4600', 2, '727754220008177336', '693 Collier Road 3rd Floor, Akron, OH 44320, United States', '1998-12-19', 0, 0, 'susanclar', '2020-02-29', 'susan10', '2002-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS427545751964', 'Howard Silva', 0, '+81 11-119-3223', 3, '256519514120520027', '23F, 5-19-15 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1985-01-02', 0, 0, 'howsilva', '2011-09-10', 'silva2020', '2014-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS545682637757', '廖杰宏', 1, '+81 90-3234-5076', 0, '888129506133733460', 'Rm. 39, 5-2-15 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1989-06-26', 0, 0, 'jiehong63', '2015-09-09', 'liao1977', '2021-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS398068313990', '木下涼太', 1, '+81 90-0773-1575', 1, '888555899180200466', '日本なごやし北区清水三丁目19番4号26階', '1991-03-05', 0, 0, 'kinoryota329', '2015-12-29', 'kryota1945', '2005-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS747561013316', '小林樹', 1, '+44 (1223) 41 8415', 0, '233469332330036992', 'Unit 45, Oxford Eco Centre, 983 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1998-03-20', 0, 0, 'itsukkobayashi824', '2022-03-03', 'ikob1022', '2020-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS409669403519', '藤田百花', 0, '+44 5852 103084', 3, '263037006795810099', 'No.9 Main building, 280 Sackville St, Manchester, M1 3BB, United Kingdom', '1990-04-20', 0, 0, 'fujita409', '2013-02-24', 'fujitamom312', '2012-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS932420156766', '藤井大和', 1, '+81 80-1678-8084', 2, '900307519576485886', '日本札幌白石区菊水三条五丁目4番10号5階', '1991-10-27', 0, 0, 'fujiiyamato10', '2021-05-25', 'yamatofujii6', '2006-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS915898634654', '安藤美緒', 1, '+86 760-183-4663', 2, '353942129600133145', '中国中山天河区大信商圈大信南路568号48室', '1993-10-15', 0, 0, 'ma108', '2011-05-04', 'andm1231', '2015-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS821552716529', '韓麗欣', 1, '+81 11-890-3978', 1, '099426776915539688', '日本札幌白石区菊水三条五丁目4番13号32階', '1989-06-16', 0, 0, 'laiha720', '2006-09-20', 'lyha', '2002-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS450525398114', '段致远', 0, '+81 52-306-1528', 2, '178140640002286822', '日本なごやし瑞穂区河岸町四丁目20番11号38階', '1988-02-23', 0, 0, 'zduan95', '2012-02-01', 'zhiyuanduan913', '2004-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS129949251058', '石井光莉', 1, '+81 11-250-7268', 2, '152708939577539650', '日本札幌豊平区豊平三条十三丁目3番11号33階', '1992-06-09', 0, 0, 'ihika', '2009-08-05', 'ishiihikari727', '2019-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS770143680703', '高木葵', 1, '+81 3-5034-5957', 1, '410907856646410589', '日本東京港区東新橋一丁目5番6号33階', '1992-03-01', 0, 0, 'takagi7', '2005-02-09', 'takagi8', '2013-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS257846606631', '馮富城', 1, '+81 70-9144-5348', 1, '875655365633061024', '日本おおさかし東住吉区東田辺三丁目27番15号2階', '1992-03-25', 0, 0, 'fsf', '2010-02-09', 'fungfushi1952', '2002-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS452656177077', '李慧儀', 0, '+86 760-369-8935', 1, '290639711317431122', '中国中山紫马岭商圈中山五路229号2室', '1996-09-07', 0, 0, 'leewy98', '2017-02-13', 'wylee', '2019-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS625926910914', '胡德華', 0, '+81 90-9479-1787', 0, '708737653799274767', '日本ならし学園南三丁目9番7号46階', '1995-01-26', 0, 0, 'wuta', '2005-07-03', 'takwah2005', '2012-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS335082938276', '小川桜', 1, '+81 11-164-4711', 1, '618128102651453700', '日本札幌白石区菊水三条五丁目4番17号18号室', '1994-10-17', 0, 0, 'ogasa', '2016-01-29', 'osaku', '2021-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS568359498563', '邓睿', 1, '+44 5164 453598', 3, '119414636593382620', 'Flat 42, 658 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1998-09-01', 0, 0, 'ruid', '2011-06-03', 'dr7', '2001-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS935028349356', '馮頴思', 0, '+1 614-364-7374', 3, '851771995752557802', '740 East Alley Apartment 44, Columbus, GA 43201, United States', '1986-07-17', 0, 0, 'fungws', '2020-01-24', 'wingszefu', '2012-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS135351955084', '韦晓明', 1, '+44 (151) 940 0406', 3, '873469516634318605', 'Unit 47, Oxford Eco Centre, 87 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1992-04-20', 0, 0, 'xiwei67', '2001-10-15', 'weixi', '2019-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS090822971429', '曹宇宁', 0, '+86 769-4365-6001', 3, '560058969610565874', '中国东莞环区南街二巷317号46楼', '1989-06-17', 0, 0, 'caoy', '2018-12-10', 'yuning7', '2013-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS294726806922', '中山光', 0, '+86 10-5546-1564', 0, '852467952040309369', '中国北京市延庆区028县道365号31号楼', '1996-04-01', 0, 0, 'hn214', '2008-02-01', 'hikarnak', '2007-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS617960647532', '翁嘉欣', 0, '+44 5404 638437', 0, '015471492326715784', 'Unit 37, Oxford Eco Centre, 408 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1993-03-28', 0, 0, 'karyanyung', '2009-04-29', 'yky', '2018-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS186660559737', '湯力申', 0, '+81 52-298-3600', 0, '672595945737186047', '29-kai, 20 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-06-30', 0, 0, 'tongliksun01', '2020-07-30', 'liksunto5', '2002-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS111967698224', '邓安琪', 1, '+1 213-242-2003', 3, '079603381513543092', '916 S Broadway Apartment 12, Los Angeles, CA 90015, United States', '1996-01-25', 0, 0, 'danqi1', '2014-11-21', 'dengan808', '2003-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS060073076899', 'Laura Romero', 1, '+81 80-0479-6932', 3, '971895916914712209', '日本東京品川区東五反田五丁目2番12号5階', '1993-02-21', 0, 0, 'laura65', '2016-04-17', 'lauromer10', '2017-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS198373549823', 'Angela Allen', 1, '+86 28-468-2504', 2, '764073910515002580', '中国成都市锦江区红星路三段957号华润大厦46室', '1991-01-06', 0, 0, 'aangel7', '2014-12-25', 'allenangel', '2021-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS189351503190', '叶子韬', 1, '+81 11-468-4669', 2, '665007645852343571', '日本札幌白石区菊水三条五丁目2番6号15号室', '1990-09-06', 0, 0, 'yezit1969', '2002-06-13', 'yezita2012', '2003-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS365161714318', '钱震南', 1, '+86 21-2134-0937', 3, '981434418144638596', '中国上海市闵行区宾川路466号9栋', '1998-11-22', 0, 0, 'qiazhennan', '2003-02-20', 'qzhennan', '2019-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS742141208373', 'Brandon Freeman', 1, '+86 28-033-7618', 2, '331034599224802950', '中国成都市成华区玉双路6号105号43号楼', '1993-06-22', 0, 0, 'brandonfreem1009', '2016-03-02', 'freemanbr', '2014-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS380986239483', 'Deborah Kelley', 1, '+44 (20) 6237 0241', 2, '947821619039878743', 'Flat 9, 648 Hanover Street, London, W1S 1YD, United Kingdom', '1991-10-08', 0, 0, 'dkelle', '2001-02-08', 'kelleydeborah90', '2016-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS730830190462', '桜井蓮', 0, '+86 20-2240-4300', 1, '347690329747547585', '中国广州市海珠区江南西路935号16楼', '1993-04-27', 0, 0, 'rensakurai', '2013-08-05', 'rensaku', '2018-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS876436174481', 'Sarah Morales', 0, '+44 5179 730878', 1, '181770868581307919', 'Block 12, 98 Park End St, Oxford, OX1 1JD, United Kingdom', '1991-09-06', 0, 0, 'ms6', '2000-03-18', 'morales9', '2011-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS362270209740', '戚朝偉', 0, '+86 20-235-6187', 4, '425075985471965378', 'Room 27, 610 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1993-01-31', 0, 0, 'chicchiuwai', '2014-07-19', 'chiuwai20', '2017-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS817017601562', '常岚', 1, '+86 755-235-2892', 3, '171518060959349839', '38F, 587 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1989-01-16', 0, 0, 'changla', '2008-06-10', 'clan4', '2020-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS940035721666', '孙子异', 1, '+86 10-0212-3271', 3, '958316780556905627', '中国北京市东城区东单王府井东街228号18号楼', '1999-01-02', 0, 0, 'zsu1', '2011-05-03', 'sunz', '2012-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS698821071900', '鄭淑怡', 0, '+81 3-3435-0660', 4, '656855104615480837', '日本東京千代田区丸の内一丁目6番4号32号室', '1997-05-22', 0, 0, 'chengsy', '2013-12-28', 'cheng5', '2008-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS204853366991', '贺璐', 0, '+1 330-931-2268', 0, '863242868067278045', '790 Collier Road Apt 14, Akron, OH 44320, United States', '1998-01-19', 0, 0, 'luhe', '2002-02-19', 'helu417', '2014-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS763803911026', 'Wendy Perry', 1, '+1 838-061-6056', 3, '243062812954396026', '507 Broadway Apartment 28, Albany, NY 12207, United States', '1988-01-24', 0, 0, 'wendyp', '2015-02-14', 'perrywendy', '2007-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS338856605475', 'Alexander Jones', 1, '+81 52-050-5328', 4, '292698596974042096', '29F, 8 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-12-16', 0, 0, 'jonesalexander', '2014-06-02', 'jonesalexander69', '2005-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS481810183165', '黎詩君', 1, '+81 90-0539-6115', 0, '560972070847967504', '日本なごやし守山区瀬古東二丁目171番8号8号室', '1986-10-10', 0, 0, 'szekwan6', '2021-09-12', 'lasze', '2021-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS729876099541', '鄺曉彤', 0, '+44 (20) 6285 4382', 1, '918263662905372286', 'Flat 46, 105 Regent Street, London, W1B 2LX, United Kingdom', '1991-08-08', 0, 0, 'htkwong', '2010-02-23', 'kwong1', '2005-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS233539072489', 'Rose Morgan', 1, '+86 10-939-0841', 1, '195881077367349388', '23F, 816 Dong Zhi Men, Dongcheng District, Beijing, China', '1987-10-22', 0, 0, 'rose86', '2015-08-21', 'mrose', '2006-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS071995343354', '松本一輝', 0, '+81 90-8219-3690', 4, '229330736704892338', '日本東京中央区銀座三丁目12番6号30号室', '1986-05-31', 0, 0, 'matsumoto1', '2005-02-27', 'mikki8', '2018-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS938915682556', '贾璐', 1, '+44 (20) 1708 4245', 1, '981964470417724647', 'No.28 Main building, 716 Pollen Street, London, W1S 1NG, United Kingdom', '1990-07-10', 0, 0, 'jialu1992', '2012-03-26', 'lujia4', '2017-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS108214341559', 'Phillip Wagner', 1, '+44 5737 673775', 2, '900207280893350671', 'Unit 31, Oxford Eco Centre, 607 Hanover Street, London, W1S 1YD, United Kingdom', '1985-07-20', 0, 0, 'phillipwag', '2004-09-22', 'phillw', '2005-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS223472488713', 'Evelyn White', 0, '+44 (20) 7305 2059', 3, '139313090341109890', 'Block 6, 439 Maddox Street, London, W1S 1PU, United Kingdom', '1988-06-06', 0, 0, 'white2', '2017-06-29', 'evelywhite', '2009-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS779477039461', '崔杰倫', 0, '+86 145-8270-3146', 3, '540381194556335219', '中国北京市東城区東直門內大街645号46楼', '1988-06-09', 0, 0, 'clchoi306', '2009-04-28', 'cch', '2020-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS609869897983', '陈璐', 1, '+86 183-6192-5354', 1, '218720363380408252', '中国广州市白云区小坪东路268号6号楼', '1986-11-24', 0, 0, 'luch', '2016-06-22', 'chenlu', '2006-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS281920254720', '中山舞', 0, '+1 614-723-5347', 2, '512507376080342284', '101 Diplomacy Drive Suite 3, Columbus, GA 43228, United States', '1993-01-08', 0, 0, 'mai6', '2002-07-21', 'nmai212', '2000-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS210618485982', 'Barbara Perez', 1, '+81 3-2739-5960', 3, '769381171480687520', '日本東京渋谷区代々木二丁目3番5号50階', '1987-10-22', 0, 0, 'barbperez', '2009-10-08', 'bperez', '2017-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS321560339168', '蕭富城', 0, '+44 (20) 3244 7967', 0, '122559925813719364', 'Unit 23, Oxford Eco Centre, 668 Regent Street, London, W1B 2LX, United Kingdom', '1990-09-20', 0, 0, 'sifs617', '2017-03-12', 'siufushing72', '2009-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS912049108798', '渡部紗良', 0, '+81 52-154-5958', 1, '392533687444339939', 'Rm. 49, 11 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-03-13', 0, 0, 'watanabesar', '2010-04-18', 'watansara9', '2006-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS836253908229', '陶家強', 0, '+86 158-0549-1641', 2, '526580146028546499', 'Room 35, 259 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1985-09-17', 0, 0, 'taokakeung6', '2005-02-15', 'taokakeung', '2018-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS978000559079', 'Marilyn Robinson', 0, '+1 614-074-1468', 1, '135575987402215196', '267 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1990-12-15', 0, 0, 'rmarilyn6', '2003-09-23', 'mrobin', '2000-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS178355663963', '程云熙', 0, '+86 10-0819-5281', 2, '044408663033317640', 'No.43 building, 460 028 County Rd, Yanqing District, Beijing, China', '1985-06-03', 0, 0, 'cheng89', '2014-04-10', 'ycheng74', '2005-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS789700193666', '罗杰宏', 1, '+81 90-0444-9502', 3, '330453929688261673', '8F, 2-1-11 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1998-10-18', 0, 0, 'jlu104', '2017-11-17', 'jiehongluo', '2012-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS379067289848', '罗宇宁', 1, '+81 90-6309-7684', 1, '657255566702451551', '11F, 12 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1989-04-28', 0, 0, 'yuluo', '2020-03-25', 'yuningl', '2015-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS795698558771', '房學友', 0, '+81 11-360-2287', 1, '827671387213593438', '16F, 5-2-5 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1992-07-26', 0, 0, 'fhy', '2012-03-15', 'fong808', '2018-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS490983099815', '應玲玲', 0, '+81 80-5593-1827', 4, '804723381392826238', 'Rm. 21, 17 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1998-10-06', 0, 0, 'ying518', '2000-10-23', 'lly', '2001-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS025291753025', '袁嘉伦', 0, '+81 74-064-8732', 2, '341219787269974704', '16F, 3-9-9 Gakuenminami, Nara, Japan', '1986-05-10', 0, 0, 'jialunyu', '2009-12-05', 'yuanj', '2002-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS422702223418', 'Joyce Herrera', 1, '+81 70-6933-2278', 3, '530704719403812398', '日本札幌清田区真栄四条五丁目19番19号28階', '1997-12-07', 0, 0, 'hjoyc', '2017-06-04', 'herjoyce7', '2001-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS040391744823', '山崎陽太', 0, '+81 90-3377-4658', 4, '634673743016349296', '19-kai, 3-19-8 Shimizu, Kita Ward, Nagoya, Japan', '1991-10-01', 0, 0, 'yotayamaz923', '2001-09-23', 'yota10', '2018-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS516906216772', '钱子异', 0, '+86 760-5385-5095', 3, '977313164952958616', '中国中山京华商圈华夏街549号25室', '1999-01-02', 0, 0, 'qianz', '2019-07-20', 'qianziyi', '2022-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS469383525031', 'Michelle Gordon', 1, '+86 139-3507-2216', 1, '168105462137656211', 'Room 17, CR Building, 130 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1987-03-24', 0, 0, 'michellego', '2013-06-21', 'michellegordon', '2009-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS759104371331', '武田美月', 0, '+44 (1865) 93 1558', 1, '226924807568160797', 'No.34 Main building, 358 Park End St, Oxford, OX1 1JD, United Kingdom', '1994-08-01', 0, 0, 'mitsukita', '2011-09-30', 'tm109', '2014-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS219124063892', '贺秀英', 1, '+86 28-820-7220', 3, '125707276162597892', '42F, 523 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1985-05-13', 0, 0, 'xhe41', '2015-01-20', 'hxiu', '2021-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS504465681766', '元安琪', 1, '+86 20-900-0857', 2, '807643743443705703', '中国广州市海珠区江南西路826号华润大厦17室', '1994-05-10', 0, 0, 'onkayyu', '2009-07-21', 'oky', '2017-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS814193786228', '原田葵', 1, '+86 175-7309-1566', 1, '779121352244491155', '中国上海市徐汇区虹桥路575号6栋', '1991-01-01', 0, 0, 'ahara43', '2005-06-07', 'aharada426', '2020-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS783168241023', '佐々木光莉', 1, '+86 28-0943-3837', 1, '265419214610491966', '中国成都市锦江区人民南路四段984号10栋', '1991-12-29', 0, 0, 'sasakihikari', '2016-07-31', 'hiks85', '2015-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS709267696829', '雷家文', 1, '+1 614-433-7025', 1, '604154238243160878', '959 East Cooke Road Apt 32, Columbus, GA 43214, United States', '1986-06-01', 0, 0, 'lkaman4', '2010-03-25', 'louikm3', '2013-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS434273446802', '渡辺翼', 0, '+1 838-099-6661', 2, '072050380580716353', '769 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1988-01-13', 0, 0, 'sato1123', '2012-09-06', 'tsubasas', '2018-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS868413593941', 'Ray Gonzales', 0, '+44 (121) 880 2856', 3, '347628748263794492', 'Unit 11, Oxford Eco Centre, 784 New Street, Birmingham, B2 4DB, United Kingdom', '1990-12-26', 0, 0, 'gonray9', '2007-11-18', 'gra324', '2020-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS080150587318', 'Debra Johnson', 0, '+86 10-0407-3759', 1, '616254633625408524', 'No.25 building, 60 028 County Rd, Yanqing District, Beijing, China', '1994-01-24', 0, 0, 'johnsondebr', '2019-02-07', 'jd5', '2006-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS887509524025', 'Glenn Hall', 0, '+1 212-275-6639', 1, '059073561614070757', '233 Fifth Avenue Suite 44, New York, NY 10017, United States', '1991-10-13', 0, 0, 'glenn530', '2008-05-10', 'hglenn', '2016-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS454221849584', '韦秀英', 0, '+1 212-906-6297', 0, '458988282421497515', '879 Canal Street Apt 14, New York, NY 10013, United States', '1993-04-24', 0, 0, 'weix2020', '2001-12-08', 'xiuying4', '2017-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS792882517577', 'Carlos Holmes', 0, '+86 138-6700-6023', 1, '045867259118672863', '中国广州市白云区小坪东路823号华润大厦14室', '1997-12-11', 0, 0, 'hoc', '2019-05-04', 'holmes07', '2014-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS885440360829', '甘詠詩', 0, '+81 90-3190-3856', 2, '069041058210778479', '5F, 13-3-19 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1988-05-10', 0, 0, 'wingszeka601', '2011-12-24', 'wingszeka', '2009-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS344058016880', '増田樹', 1, '+81 3-7900-8054', 4, '936236407321256874', '日本東京品川区東五反田五丁目2番7号11階', '1998-11-04', 0, 0, 'maitsuki1015', '2006-03-26', 'masitsu817', '2021-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS183309191785', 'Stanley Coleman', 0, '+44 (161) 692 7083', 2, '854601668827435020', 'Unit 3, Oxford Eco Centre, 351 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1985-12-14', 0, 0, 'stanley4', '2018-07-21', 'stacolem825', '2015-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS308088890183', 'Jeremy Coleman', 0, '+81 52-443-3627', 3, '978870324079423866', '15F, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1987-02-14', 0, 0, 'jeremycoleman3', '2021-11-23', 'colemje', '2011-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS941552473036', 'Fred Grant', 1, '+1 718-169-7682', 2, '699100011069845194', '208 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1987-10-04', 0, 0, 'fg2', '2006-01-11', 'frgrant', '2004-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS224426338744', '中森蒼士', 0, '+81 70-2239-3498', 2, '964678070117672317', '36-kai, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1985-07-16', 0, 0, 'nakamori625', '2011-08-02', 'nakaa', '2007-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS578862257503', 'Jonathan Bailey', 1, '+44 (151) 931 7820', 0, '934598042395059961', 'Unit 2, Oxford Eco Centre, 814 Redfern St, Liverpool, L20 8JB, United Kingdom', '1987-02-13', 0, 0, 'baileyjonathan8', '2016-07-05', 'jonathan10', '2019-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS086797605345', '阎致远', 0, '+81 66-059-8436', 4, '541641833021193691', '日本おおさかし西成区天神ノ森二丁目1番4号10号室', '1993-08-20', 0, 0, 'zhiyuan107', '2004-10-08', 'zhiyuanyan', '2008-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS910908001079', '狄潤發', 0, '+86 191-8581-7547', 4, '891502108998919869', '1F, No.408, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1986-01-11', 0, 0, 'yfti', '2015-06-07', 'yfti926', '2008-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS749211124439', 'Norman Tucker', 1, '+81 70-1444-0022', 1, '936455481766330088', '日本札幌豊平区豊平三条十三丁目3番8号42号室', '1999-03-03', 0, 0, 'normantuc', '2014-01-11', 'normtuck', '2004-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS970895556761', '宮本光莉', 0, '+86 196-8420-2625', 3, '511365062164482780', 'Room 9, 103 FuXingMenNei Street, XiCheng District, Beijing, China', '1993-02-16', 0, 0, 'miyamotohikari', '2010-10-19', 'miyhika', '2011-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS256266889397', 'Amy Ferguson', 0, '+86 174-8294-3112', 0, '070353507083612939', 'No.27 building, No.993, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1996-12-04', 0, 0, 'amyfe123', '2013-02-02', 'amyf', '2003-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS563306921983', '曹子异', 1, '+1 330-668-4919', 3, '343665306373282525', '910 Collier Road Suite 40, Akron, OH 44320, United States', '1988-11-10', 0, 0, 'caoziyi5', '2000-08-12', 'cziyi', '2006-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS544072850343', 'Norman Reyes', 1, '+86 141-0988-8991', 2, '817645656076890862', '中国北京市东城区东单王府井东街511号11楼', '1997-04-09', 0, 0, 'norman9', '2007-09-04', 'normanreye', '2006-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS147970450568', '藤原葉月', 0, '+1 330-788-0728', 2, '860296914271173178', '776 Fern Street Apartment 10, Akron, OH 44307, United States', '1993-10-27', 0, 0, 'fujiwhazuki45', '2013-12-02', 'hazukifu', '2014-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS375601519836', 'Stanley Castillo', 1, '+86 28-8191-0490', 4, '041298589748633355', 'No.41 building, 221 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1993-01-12', 0, 0, 'stanley57', '2021-03-17', 'sca', '2016-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS020872595832', '白杰倫', 1, '+86 175-0846-3143', 1, '123367375219474652', 'No.24 building, 253 FuXingMenNei Street, XiCheng District, Beijing, China', '1989-06-25', 0, 0, 'clpak2003', '2001-08-18', 'pachiehlun', '2009-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS301546919459', '三浦翼', 1, '+44 7304 736339', 0, '391644106563150212', 'Unit 19, Oxford Eco Centre, 565 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-02-11', 0, 0, 'miura2', '2000-01-11', 'miuratsubasa', '2006-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS445370709741', '谷口健太', 0, '+86 21-489-5267', 0, '554231780460965902', 'Room 8, 428 Jianxiang Rd, Pudong, Shanghai, China', '1994-05-16', 0, 0, 'taniguchiken', '2021-07-07', 'kenta10', '2007-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS904958001220', 'Robert Guzman', 1, '+86 28-1386-1297', 0, '716221040271702305', 'Room 20, CR Building, No.203, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1988-03-31', 0, 0, 'robert10', '2008-06-18', 'guzman8', '2000-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS149445769072', '吴睿', 0, '+86 769-3992-8241', 0, '569396875695247380', 'Room 15, CR Building, 267 Dongtai 5th St, Dongguan, China', '1995-01-03', 0, 0, 'ruiwu', '2019-12-16', 'wu1014', '2006-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS065475146912', '和田一輝', 0, '+1 213-077-0832', 0, '985545851400204765', '329 Sky Way Suite 21, Los Angeles, CA 90043, United States', '1996-09-23', 0, 0, 'ikkiwad', '2016-07-06', 'waikki416', '2016-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS145265263631', '蔡嘉伦', 0, '+1 718-557-5813', 3, '796618148525474764', '935 Flatbush Ave Apartment 10, Brooklyn, NY 11225, United States', '1985-05-05', 0, 0, 'jialunca', '2017-11-17', 'jcai', '2002-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS151201390819', '武田大輔', 1, '+86 157-8451-1443', 0, '609958752560681427', 'Room 37, CR Building, 820 Jiangnan West Road, Haizhu District, Guangzhou, China', '1990-05-04', 0, 0, 'takedadaisuke7', '2013-09-06', 'daisuketakeda6', '2006-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS548337695243', '伍嘉欣', 1, '+44 (116) 847 9960', 3, '076034390893506926', 'No.18 Main building, 917 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-01-28', 0, 0, 'ngky93', '2018-03-02', 'ng1990', '2004-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS188028631405', '李詩君', 1, '+86 181-7827-0402', 2, '889406200985951653', '40F, 773 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1994-01-27', 0, 0, 'szekwanle7', '2016-06-03', 'leeszekwan', '2016-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS780079977869', 'George Black', 0, '+86 190-6663-5955', 1, '315963247256666600', '中国上海市浦东新区橄榄路770号3室', '1994-11-25', 0, 0, 'blgeor4', '2011-08-21', 'bgeo', '2002-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS249178336555', 'Glenn Gutierrez', 0, '+44 (20) 7334 7056', 3, '201432292950182721', 'Flat 21, 983 Maddox Street, London, W1S 1PU, United Kingdom', '1991-11-23', 0, 0, 'glennguti5', '2018-06-04', 'gutierrezg', '2014-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS984301413053', '孔岚', 0, '+86 135-3906-8338', 3, '755289957763491400', 'Room 17, 351 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1996-03-01', 0, 0, 'kongla', '2006-07-11', 'lako', '2004-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS253526447566', '胡慧琳', 1, '+81 90-3173-8743', 2, '005271593981738546', '日本おおさかし平野区加美東四丁目9番18号36階', '1986-08-16', 0, 0, 'wailamwu', '2015-01-18', 'wailamwu2', '2021-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS686538204894', '佐々木蓮', 0, '+44 (121) 474 6380', 3, '727930271246455686', 'No.43 Main building, 865 New Street, Birmingham, B2 4DB, United Kingdom', '1992-01-02', 0, 0, 'sasakire', '2014-07-04', 'rs2', '2018-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS698049644598', '龚子异', 0, '+44 7054 993293', 2, '226193606700182499', 'Block 9, 126 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1992-12-27', 0, 0, 'gongzi', '2011-01-30', 'gongziyi', '2018-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS158928291618', 'David Fernandez', 1, '+44 (20) 6046 5173', 2, '322412138419382505', 'Unit 40, Oxford Eco Centre, 576 Maddox Street, London, W1S 1PU, United Kingdom', '1987-04-05', 0, 0, 'fdavid', '2006-11-03', 'fernandez3', '2010-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS194462592378', '田慧敏', 0, '+81 52-567-2426', 3, '965802749079268973', '日本なごやし守山区瀬古東二丁目171番17号22階', '1993-04-25', 0, 0, 'tin1', '2021-04-15', 'wmtin3', '2005-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS134188340478', 'Lisa Gordon', 1, '+1 838-745-8154', 1, '007781434191975368', '834 State Street 3rd Floor, Albany, NY 12203, United States', '1991-04-07', 0, 0, 'lisa97', '2014-10-30', 'lgordon', '2007-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS628645031352', 'Richard Guzman', 0, '+81 80-8975-0595', 1, '197664740082178209', 'Rm. 49, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1993-12-19', 0, 0, 'richard9', '2019-02-06', 'ricguzma', '2007-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS980306268047', 'Shirley Gardner', 1, '+86 193-7997-9955', 2, '200829121229312311', '50F, 418 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1994-04-23', 0, 0, 'gardnershirley48', '2009-12-31', 'shgardner02', '2006-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS370000671214', '曾家玲', 1, '+81 11-634-6819', 3, '028325739768782401', '日本札幌清田区真栄四条五丁目19番11号25階', '1995-06-17', 0, 0, 'tkl', '2008-05-17', 'tska', '2020-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS196698068059', '谭晓明', 0, '+86 197-5924-7704', 2, '119841839772039959', 'No.14 building, 578 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1994-03-28', 0, 0, 'tanxiaoming', '2021-10-12', 'xiaomtan824', '2012-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS365280718601', '木村美羽', 1, '+86 20-9358-9649', 1, '575821613595854972', '中国广州市天河区天河路11号47栋', '1989-01-10', 0, 0, 'kimurmiu415', '2004-09-26', 'kimura1957', '2002-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS941707633481', '郭詩涵', 1, '+81 80-5890-3956', 1, '335205950269846403', '日本ならし大和郡山市本庄町一丁目1番10号6階', '1993-05-20', 0, 0, 'guoshi', '2005-03-11', 'guoshihan', '2003-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS258774605932', '田村湊', 1, '+1 212-571-6331', 1, '643681494532941172', '959 Bank Street 3rd Floor, New York, NY 10014, United States', '1989-04-09', 0, 0, 'tamuram', '2020-01-22', 'tamura53', '2017-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS506691962576', '姜國榮', 1, '+86 755-801-0421', 3, '932400623770489567', '中国深圳龙岗区学园一巷682号华润大厦8室', '1992-01-31', 0, 0, 'kwokwing80', '2009-05-31', 'kwokwing3', '2008-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS788867543125', '戴杰宏', 0, '+44 5556 922115', 2, '185117978485361694', 'Unit 10, Oxford Eco Centre, 407 Sackville St, Manchester, M1 3BB, United Kingdom', '1986-07-22', 0, 0, 'jiehongd', '2006-04-15', 'jiehong62', '2009-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS145920646980', '島田蒼士', 1, '+1 838-915-7863', 4, '442791221570226084', '190 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1985-03-03', 0, 0, 'aoshishimada1203', '2020-05-22', 'shimadaaoshi224', '2020-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS245235839208', '馮詩君', 0, '+1 838-220-8927', 3, '775833948076112989', '907 Lark Street Suite 19, Albany, NY 12210, United States', '1992-11-07', 0, 0, 'fung224', '2020-12-28', 'skfung', '2018-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS952020191337', '秦震南', 1, '+86 755-079-4217', 2, '082735871698677126', 'No.14 building, 431 Jingtian East 1st St, Futian District, Shenzhen, China', '1994-01-15', 0, 0, 'zhqin', '2011-10-10', 'qinzhe', '2019-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS580375701553', '葉國賢', 0, '+44 (116) 055 7907', 3, '613329838181115512', 'Unit 14, Oxford Eco Centre, 827 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1996-08-10', 0, 0, 'yip1988', '2011-08-26', 'kwokyinyip', '2000-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS414457249135', 'Raymond Fisher', 0, '+86 769-450-9146', 1, '885609989251252425', 'No.10 building, 455 Kengmei 15th Alley, Dongguan, China', '1998-04-08', 0, 0, 'fraym', '2012-10-27', 'fraymond', '2017-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS064175353077', 'Russell Holmes', 1, '+44 (151) 127 3681', 3, '712531187371976177', 'No.28 Main building, 641 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1989-08-06', 0, 0, 'holmesrussell1957', '2013-06-05', 'russell730', '2003-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS195505581345', '唐國明', 0, '+81 70-9618-4186', 2, '505882056544633292', '日本東京千代田区丸の内一丁目6番19号49階', '1985-10-15', 0, 0, 'tongkm', '2009-03-06', 'kwokmington', '2015-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS657035767500', '呂詠詩', 1, '+81 90-0296-9180', 2, '144741854913909380', 'Rm. 43, 12 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1989-05-24', 0, 0, 'wslu8', '2003-04-28', 'wingszelui1942', '2011-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS777435415281', '罗杰宏', 0, '+86 760-4975-1310', 3, '706085729709908560', '中国中山京华商圈华夏街765号华润大厦1室', '1990-07-04', 0, 0, 'jiehongluo829', '2010-11-14', 'jiehluo', '2004-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS776117587212', '酒井花', 1, '+81 90-3501-3570', 2, '019641960510039217', '11F, 2-5-13 Chitose, Atsuta Ward, Nagoya, Japan', '1995-02-04', 0, 0, 'sakh2', '2003-06-03', 'hana910', '2003-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS245515539169', 'Sharon Daniels', 1, '+81 52-154-9572', 4, '298837902507483461', '34F, 3 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1991-04-06', 0, 0, 'danielssh', '2006-01-21', 'dansh', '2018-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS728166065260', 'Francis Kelly', 0, '+44 5384 067446', 1, '617007569647492627', 'Unit 47, Oxford Eco Centre, 326 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1992-09-01', 0, 0, 'fk1', '2001-02-09', 'frkelly', '2007-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS369920241243', 'Todd Rice', 0, '+81 3-6389-5024', 1, '970107093569158477', '日本東京港区東新橋一丁目5番4号7階', '1998-05-09', 0, 0, 'toddrice', '2003-04-15', 'rice8', '2007-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS361930009055', '鄧詩君', 1, '+86 170-5971-1880', 4, '795935960617127666', 'No.3 building, 900 Kengmei 15th Alley, Dongguan, China', '1994-10-30', 0, 0, 'szekwantang', '2005-01-21', 'tanszekwan', '2008-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS726852050296', '顾震南', 0, '+81 70-5460-9007', 2, '669356195335296639', '日本おおさかし東住吉区東田辺三丁目27番5号28号室', '1987-10-14', 0, 0, 'zhennangu', '2020-08-23', 'guzhennan4', '2000-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS272305253740', '丁詩涵', 0, '+44 5631 466874', 4, '127155042429700836', 'Unit 31, Oxford Eco Centre, 586 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1987-12-18', 0, 0, 'dings', '2010-04-26', 'shiding', '2008-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS353411068467', '餘家玲', 0, '+81 90-4550-5539', 3, '395954070807475404', '日本札幌白石区菊水三条五丁目4番18号37階', '1987-07-18', 0, 0, 'yuekl', '2008-02-20', 'yuekl', '2013-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS347602382653', '吕云熙', 0, '+81 80-4493-4663', 3, '316824890310202539', 'Rm. 16, 5-2-1 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-06-04', 0, 0, 'ylu', '2003-11-29', 'ylu', '2010-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS754524244253', '松田架純', 0, '+1 212-163-1634', 2, '921134476934298054', '759 Wooster Street Apartment 21, New York, NY 10012, United States', '1987-10-08', 0, 0, 'kasummatsuda', '2018-10-20', 'kasumats904', '2011-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS075134916552', '柴田美月', 0, '+86 193-1785-4822', 2, '445937118633236536', '中国中山天河区大信商圈大信南路397号2号楼', '1998-05-12', 0, 0, 'shmitsu1971', '2007-06-11', 'mitsus127', '2012-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS646930856718', '渡辺大和', 1, '+81 90-8898-1020', 1, '406162054716823033', '45-kai, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1988-04-28', 0, 0, 'satoyam', '2015-10-01', 'sato9', '2011-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS233971127222', '翁力申', 0, '+44 5537 858394', 1, '707289871752003302', 'Block 30, 31 Hanover St, Liverpool, L1 4AF, United Kingdom', '1997-09-20', 0, 0, 'liksunyung1965', '2010-06-16', 'lsy1101', '2001-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS330366043366', '葉國賢', 0, '+81 90-7554-7293', 0, '776184735123796430', 'Rm. 11, 3-9-2 Gakuenminami, Nara, Japan', '1988-01-30', 0, 0, 'ykwokyin', '2015-10-24', 'kwokyiny', '2002-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS218012921543', '金詩涵', 0, '+81 90-8776-4478', 2, '495961744267163969', '日本おおさかし西成区出城一丁目1番6号12号室', '1994-06-27', 0, 0, 'shihanji', '2014-12-20', 'shihanjin', '2014-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS581951085155', 'Eleanor Ross', 0, '+86 164-1274-8897', 1, '903642177313691596', 'No.42 building, 65 Binchuan Rd, Minhang District, Shanghai, China', '1990-05-30', 0, 0, 'roselea', '2007-04-19', 'elross', '2021-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS032413710502', 'Anthony Ramirez', 0, '+81 80-2392-3514', 1, '168641729201108391', 'Rm. 33, 5-2-13 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-03-11', 0, 0, 'ramia', '2004-07-22', 'ramireza429', '2017-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS046266250967', 'Marilyn Miller', 1, '+1 718-076-0774', 2, '598950109361754110', '887 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1998-11-14', 0, 0, 'marilmiller927', '2015-06-02', 'millermarilyn5', '2002-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS149950308538', 'Wayne Miller', 0, '+81 11-496-1333', 3, '078458415403671510', '41-kai, 5-19-14 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1990-10-30', 0, 0, 'miller620', '2017-06-23', 'waynem2', '2017-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS666380838632', '千葉凛', 0, '+86 20-3374-1532', 3, '849471378684005523', '20F, 559 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1988-12-18', 0, 0, 'chibrin416', '2009-10-14', 'chiba1995', '2016-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS359204090094', '钱嘉伦', 0, '+1 838-154-0457', 3, '405464124450297593', '662 Lark Street Apt 45, Albany, NY 12210, United States', '1996-01-31', 0, 0, 'jiqi', '2001-04-13', 'qijialu', '2019-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS127756565868', '斉藤明菜', 0, '+81 52-664-4067', 4, '183359833052790447', '日本なごやし守山区瀬古東二丁目171番18号10階', '1997-10-15', 0, 0, 'akinasai', '2014-07-30', 'akinasai825', '2000-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS920787476648', '吴子异', 0, '+44 7936 207484', 2, '041942055229711866', 'Block 5, 489 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1997-09-25', 0, 0, 'wuzi', '2019-10-31', 'wu1112', '2004-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS906716098704', 'Christopher James', 0, '+81 66-857-1027', 1, '164118476101006726', '21-kai, 3-27-8 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1992-03-10', 0, 0, 'jameschristopher77', '2011-08-15', 'christopherjam', '2017-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS165379924964', 'Jose Simpson', 0, '+81 74-532-4561', 3, '891777869544256748', 'Rm. 14, 4 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-04-26', 0, 0, 'simpsjo', '2020-04-25', 'josesimpson', '2003-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS248574225521', '陈璐', 1, '+86 20-2210-9225', 4, '333802020499838496', 'Room 31, CR Building, 323 Xiaoping E Rd, Baiyun , Guangzhou, China', '1988-06-10', 0, 0, 'lu78', '2011-11-02', 'luch', '2004-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS462207601584', '文榮發', 0, '+81 80-1704-0318', 2, '383341444961397248', '日本札幌白石区菊水三条五丁目4番9号37号室', '1985-10-27', 0, 0, 'wingfm', '2001-11-21', 'manwingfat', '2013-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS744160116462', '盧力申', 1, '+81 3-0732-3918', 4, '392232824396990967', '45-kai, 2-3-18 Yoyogi, Shibuya-ku, Tokyo, Japan', '1998-05-05', 0, 0, 'lo4', '2016-03-01', 'liksun88', '2003-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS605701260641', '陶晓明', 1, '+81 11-458-7178', 2, '123264776899444568', '19-kai, 5-4-13 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1996-05-18', 0, 0, 'xt913', '2020-03-15', 'xitao', '2018-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS980477867212', '熊睿', 1, '+81 11-909-0937', 4, '372514476082167353', '44F, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1992-06-07', 0, 0, 'xiongru', '2013-01-22', 'rux', '2013-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS765921285769', '陆致远', 1, '+44 (1223) 11 3305', 3, '701751118310237966', 'Block 15, 93 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1996-01-27', 0, 0, 'luzhiyu', '2020-05-16', 'zhiyuan222', '2000-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS682592386396', '山本海斗', 0, '+1 614-345-3214', 3, '908887223276195792', '828 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1990-01-24', 0, 0, 'kaito515', '2019-07-24', 'yamamoto225', '2019-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS846138092627', '曹嘉伦', 0, '+81 70-8298-4439', 2, '421887283732908053', '50-kai, 3-27-17 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1997-08-02', 0, 0, 'caojialun', '2013-06-21', 'cao3', '2007-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS717634298694', '加藤愛梨', 0, '+1 718-335-6165', 0, '998064396213008672', '273 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1989-01-11', 0, 0, 'airikato1', '2012-06-09', 'airikato414', '2009-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS533254308373', '向致远', 1, '+86 10-517-0657', 2, '787828374224658758', '中国北京市海淀区清河中街68号769号18号楼', '1991-03-14', 0, 0, 'zhiyuanxiang', '2014-02-05', 'zhiyuan5', '2002-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS066254671384', 'Rose Crawford', 1, '+1 212-154-0667', 1, '018675383740141292', '591 Wooster Street Suite 27, New York, NY 10012, United States', '1997-09-22', 0, 0, 'craros1206', '2005-05-28', 'crose', '2007-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS618046534038', '许睿', 0, '+86 142-6164-8278', 2, '071861098707805057', '中国上海市浦东新区橄榄路536号29楼', '1991-05-14', 0, 0, 'ruixu', '2016-03-12', 'rx412', '2005-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS878153642044', '谷志明', 0, '+86 28-0967-4031', 3, '870894648430127974', 'No.5 building, 871 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1986-02-11', 0, 0, 'chiming721', '2001-06-16', 'cmk1972', '2001-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS187615823950', 'Scott West', 1, '+81 52-250-6319', 1, '195443762588686992', 'Rm. 38, 3-19-16 Shimizu, Kita Ward, Nagoya, Japan', '1990-08-17', 0, 0, 'scott7', '2011-11-09', 'scott53', '2012-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS550902883974', '元家輝', 0, '+1 212-768-9653', 0, '497572902573393987', '561 Fifth Avenue Suite 50, New York, NY 10017, United States', '1987-06-13', 0, 0, 'ykafai', '2022-01-16', 'yuen7', '2003-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS829919451707', '三浦架純', 1, '+44 (1865) 84 5347', 2, '905925827657178792', 'Unit 21, Oxford Eco Centre, 929 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1987-08-29', 0, 0, 'miurakasum57', '2016-04-26', 'kmiura', '2001-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS130344304266', '加藤蓮', 0, '+44 (1865) 79 0681', 0, '979698373319568182', 'No.25 Main building, 72 Park End St, Oxford, OX1 1JD, United Kingdom', '1998-08-11', 0, 0, 'karen1965', '2001-10-03', 'renkato13', '2000-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS858244720606', 'Pamela Soto', 0, '+81 11-799-9282', 3, '619126857527778922', '45F, 2-1-1 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1988-10-02', 0, 0, 'soto9', '2007-10-19', 'soto1969', '2021-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS530294611807', '汪子韬', 1, '+86 183-1322-8176', 2, '266842954840529245', 'No.4 building, 146 Ganlan Rd, Pudong, Shanghai, China', '1986-08-30', 0, 0, 'zitaowa', '2017-01-20', 'wanzitao', '2013-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS615473896766', 'Jack Patel', 1, '+44 (161) 122 5745', 1, '872701042975763244', 'Unit 12, Oxford Eco Centre, 26 Sackville St, Manchester, M1 3BB, United Kingdom', '1990-10-30', 0, 0, 'pja', '2018-08-24', 'jack118', '2012-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS295719503558', '林嘉欣', 0, '+81 11-434-0650', 1, '859949590040216728', '12F, 5-2-3 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1989-07-01', 0, 0, 'lky', '2019-08-05', 'karla807', '2010-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS379783849345', '戴岚', 0, '+1 614-183-2025', 0, '858410849946080963', '233 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1988-02-26', 0, 0, 'dai71', '2007-04-21', 'ladai', '2005-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS580705167913', '上田美緒', 0, '+44 5356 497756', 3, '051492333141733833', 'Block 35, 210 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1991-11-06', 0, 0, 'mio421', '2008-09-08', 'miueda7', '2019-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS983428903512', '甘世榮', 1, '+81 80-2178-5844', 1, '768917379535501929', '日本東京港区東新橋一丁目5番1号36号室', '1985-11-05', 0, 0, 'kam9', '2020-09-13', 'swkam', '2010-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS281274414067', '石云熙', 1, '+86 21-075-3690', 1, '863956010709409689', '中国上海市黄浦区淮海中路807号华润大厦4室', '1997-06-04', 0, 0, 'yunshi9', '2014-05-02', 'yunxishi5', '2014-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS974062967141', '翁小慧', 0, '+1 330-021-6450', 0, '080476946217095228', '238 West Market Street Apt 46, Akron, OH 44333, United States', '1991-12-01', 0, 0, 'ysw605', '2012-11-06', 'yungsw701', '2016-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS409008556841', '汤宇宁', 1, '+81 90-9182-2129', 1, '463106092349374377', 'Rm. 3, 13-3-19 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1990-12-04', 0, 0, 'tang116', '2007-06-01', 'yuningtang', '2010-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS653587987217', '高震南', 0, '+1 614-471-7259', 2, '255234667712676664', '916 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1993-07-13', 0, 0, 'gazhennan1102', '2000-11-30', 'zhennangao', '2002-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS679196064489', '葉家玲', 1, '+86 145-5630-7618', 1, '130206679776108611', '1F, 626 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1990-01-31', 0, 0, 'klyip', '2007-09-25', 'klyip', '2005-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS418144325734', 'Diana Taylor', 0, '+1 838-007-2270', 0, '463751870550641994', '439 Broadway 3rd Floor, Albany, NY 12207, United States', '1996-10-10', 0, 0, 'tdiana', '2010-10-10', 'taydiana', '2009-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS350033179344', '葉詠詩', 0, '+1 330-642-2302', 3, '891160317329819653', '549 Riverview Road Suite 3, Akron, OH 44313, United States', '1986-01-15', 0, 0, 'wingsze10', '2011-06-03', 'wingszeyip10', '2018-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS394367345905', '桜井瑛太', 0, '+81 11-448-8798', 3, '271121714562324553', '日本札幌中央区宮の森四条六丁目1番16号31階', '1985-12-01', 0, 0, 'eitasaku', '2018-02-04', 'eitasak9', '2012-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS141227367523', '孫志遠', 1, '+81 11-803-8392', 3, '576106241090159091', '9-kai, 13-3-9 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1997-06-12', 0, 0, 'cyhsuan', '2010-08-17', 'cyhsuan', '2005-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS827496397809', '池田桜', 1, '+86 148-5449-7203', 2, '128832999054657815', '中国广州市天河区天河路226号9楼', '1989-05-25', 0, 0, 'isakura', '2006-12-26', 'ikedasak', '2006-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS755541775893', '林詩涵', 0, '+86 20-3026-1299', 1, '960916967099692362', '中国广州市越秀区中山二路343号24栋', '1994-10-12', 0, 0, 'lin10', '2001-11-05', 'lin724', '2008-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS248848323994', '蔡裕玲', 1, '+86 10-2575-6919', 4, '258706376913853894', 'Room 39, CR Building, 575 68 Qinghe Middle St, Haidian District, Beijing, China', '1992-10-02', 0, 0, 'yuling1995', '2010-01-18', 'choiyl', '2020-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS938513713180', '甘秀文', 0, '+86 28-7133-8974', 4, '713375395363561923', 'Room 9, CR Building, 59 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1991-04-26', 0, 0, 'kamsm1026', '2003-09-04', 'saumkam', '2008-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS643313593305', '夏杰宏', 0, '+44 (116) 803 5043', 3, '918411703388351205', 'Flat 5, 867 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1988-05-23', 0, 0, 'jiehoxia', '2014-06-29', 'jiehong10', '2016-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS147822857677', 'Brenda Romero', 1, '+44 (151) 244 4400', 3, '526033521599470195', 'Block 28, 101 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1986-01-10', 0, 0, 'romeb', '2017-03-09', 'brenda212', '2014-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS460340803060', '原田詩乃', 0, '+86 20-3710-6697', 3, '873920805068546628', '中国广州市海珠区江南西路720号47楼', '1994-12-14', 0, 0, 'harshino4', '2018-09-21', 'harada912', '2014-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS015524365898', '橋本美咲', 1, '+81 80-4873-7286', 1, '028081846852639405', '日本ならし学園南三丁目9番19号31階', '1986-10-11', 0, 0, 'hashimotomis', '2007-05-11', 'hashimotomisaki', '2015-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS241413719284', '内田百花', 0, '+1 312-162-2160', 4, '090329685871398652', '15 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1994-04-29', 0, 0, 'uchida2', '2006-04-27', 'muchida', '2004-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS066150869503', '唐玲玲', 0, '+1 718-505-2778', 3, '573180463997171964', '772 Bergen St Suite 46, Brooklyn, NY 11217, United States', '1995-04-08', 0, 0, 'tong1997', '2006-03-20', 'llt917', '2014-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS573786998399', '汪嘉伦', 0, '+44 5159 880116', 3, '511579745308993814', 'Block 30, 50 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1993-02-12', 0, 0, 'wanjialun', '2013-03-31', 'wang2', '2007-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS401099715387', 'Larry Meyer', 1, '+81 90-9997-7703', 2, '946308942687289020', '日本札幌中央区宮の森四条六丁目1番1号19階', '1985-05-24', 0, 0, 'meyerl', '2009-12-19', 'meyerlar8', '2015-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS893025937658', 'Rodney Flores', 0, '+86 769-742-2895', 2, '558226542644202310', 'No.31 building, 32 Kengmei 15th Alley, Dongguan, China', '1993-03-08', 0, 0, 'flores619', '2004-02-01', 'frodney', '2013-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS202904465357', '佐野光莉', 0, '+86 177-5623-8676', 3, '064888850755726076', '中国深圳福田区深南大道822号18室', '1994-08-05', 0, 0, 'hsano65', '2009-01-03', 'sah', '2018-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS814953512636', '千葉翼', 1, '+81 80-9929-5935', 3, '571517125482796976', '日本札幌豊平区豊平三条十三丁目3番13号45階', '1985-12-18', 0, 0, 'chibat67', '2015-01-19', 'chiba76', '2016-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS717439465631', '董秀英', 1, '+1 312-672-6176', 3, '224288814700961920', '247 North Michigan Ave Apartment 13, Chicago, IL 60611, United States', '1992-05-13', 0, 0, 'xiuyingdong414', '2004-07-26', 'xiud', '2011-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS306626737471', '區國權', 1, '+81 66-340-8806', 1, '292322390815973424', 'Rm. 17, 1-7-7 Omido, Higashiosaka, Osaka, Japan', '1995-08-29', 0, 0, 'aukwokkuen', '2005-02-24', 'au708', '2019-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS449724542829', '小山樹', 1, '+81 80-4962-5244', 0, '972949295887668344', '日本なごやし瑞穂区河岸町四丁目20番14号24階', '1992-03-11', 0, 0, 'itskoyama2', '2009-07-12', 'itsukik71', '2020-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS608314482491', '甘潤發', 0, '+86 151-6017-4072', 2, '205339820731026401', 'No.5 building, 157 Huanqu South Street 2nd Alley, Dongguan, China', '1993-06-27', 0, 0, 'yunfatka623', '2016-01-19', 'yunfatkam08', '2014-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS378750756323', '任杰宏', 1, '+81 90-9588-3668', 1, '307521292730181979', '日本札幌中央区宮の森四条六丁目1番9号5号室', '1985-10-07', 0, 0, 'jiehongren', '2017-04-26', 'rji', '2015-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS200257310298', '原田美咲', 0, '+86 185-4455-7337', 3, '684582980914994949', 'Room 30, 690 Shennan Ave, Futian District, Shenzhen, China', '1998-08-15', 0, 0, 'harmisa3', '2005-10-10', 'mharada00', '2009-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS313114822592', '官俊宇', 1, '+86 197-7384-3038', 1, '450385005362117075', '中国北京市東城区東直門內大街697号华润大厦34室', '1993-07-18', 0, 0, 'koon1025', '2001-09-16', 'koonchunyu7', '2015-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS210818118075', '鈴木葵', 0, '+86 166-5478-5658', 3, '819949258358166475', '中国东莞环区南街二巷891号33室', '1992-02-18', 0, 0, 'saoi1', '2013-05-02', 'aosuzuki', '2005-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS690698597396', 'Ann Silva', 1, '+81 66-005-6718', 0, '972663651986589744', 'Rm. 15, 1-1-10 Deshiro, Nishinari Ward, Osaka, Japan', '1996-07-26', 0, 0, 'asilva', '2001-02-28', 'ann1213', '2015-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS269117420679', '高木蒼士', 0, '+86 178-8140-4908', 2, '332685761399796094', '中国上海市闵行区宾川路359号25栋', '1995-05-12', 0, 0, 'aoshita', '2006-06-04', 'takagiaos', '2000-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS308397455794', '千葉美月', 1, '+81 80-6663-7766', 2, '689045397502175582', 'Rm. 18, 2-1-20 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1996-08-02', 0, 0, 'chibmitsu4', '2011-12-24', 'mitsukichiba', '2018-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS958232445650', '小川七海', 0, '+1 312-471-0280', 1, '714516370323925872', '971 Pedway Apt 39, Chicago, IL 60601, United States', '1997-07-08', 0, 0, 'ogawa1', '2013-09-25', 'nanami9', '2014-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS605646146933', '原田美月', 0, '+44 (20) 0179 7510', 1, '467888099751841111', 'Block 18, 918 Hanover Street, London, W1S 1YD, United Kingdom', '1992-02-27', 0, 0, 'haradamitsuki425', '2004-08-28', 'mitsuki620', '2013-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS196107289740', 'Richard Wilson', 1, '+86 28-883-2524', 2, '171085450163928891', 'No.36 building, 402 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1994-04-18', 0, 0, 'richardwils', '2009-07-06', 'richard123', '2010-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS198437565443', 'Micheal Vargas', 0, '+81 3-5944-9138', 4, '987985318805564476', '27F, 1-6-6, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-03-03', 0, 0, 'vargas302', '2002-01-25', 'vmi', '2021-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS916319924507', '李秀英', 0, '+86 21-836-2502', 0, '407949894873122600', '中国上海市闵行区宾川路425号华润大厦26室', '1998-03-23', 0, 0, 'xiuyingli6', '2001-12-18', 'lixiuying', '2018-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS253642579950', 'Marjorie Robertson', 0, '+86 182-1925-9974', 2, '104358628363620390', 'No.22 building, 992 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1986-09-16', 0, 0, 'marrob', '2010-05-30', 'romarjorie', '2004-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS441104396003', '近藤涼太', 0, '+81 80-1912-2546', 2, '029034646079511896', '14-kai, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1993-03-28', 0, 0, 'ryotakond4', '2008-10-11', 'kondo327', '2018-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS820628110512', '田惠敏', 1, '+44 (151) 104 4385', 1, '294235527530068219', 'No.7 Main building, 942 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1993-01-18', 0, 0, 'tinwaiman78', '2012-11-21', 'waimantin4', '2009-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS229963095646', 'Sharon Porter', 1, '+81 11-039-9938', 2, '645821263080766453', 'Rm. 15, 5-19-13 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1988-11-02', 0, 0, 'sporter3', '2009-02-14', 'portes', '2016-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS803094498704', 'Dennis Burns', 0, '+86 135-3849-0562', 1, '466507897163531390', 'No.37 building, 748 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1998-12-04', 0, 0, 'dbu', '2001-09-06', 'burns1', '2003-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS609112362986', '岩崎和真', 1, '+44 (161) 477 4423', 1, '368401625427657710', 'Block 39, 942 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1995-04-13', 0, 0, 'iwasakik', '2014-09-26', 'iwasakikazuma', '2012-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS037629454947', '阿部桜', 0, '+81 3-0844-9539', 2, '532732891673576731', '1-kai, 2-3-6 Yoyogi, Shibuya-ku, Tokyo, Japan', '1994-12-27', 0, 0, 'abesakura302', '2000-09-26', 'sab604', '2004-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS674229344001', '平野悠人', 1, '+81 66-096-5731', 2, '435041193283321192', 'Rm. 33, 1-1-12 Deshiro, Nishinari Ward, Osaka, Japan', '1987-11-14', 0, 0, 'yutohirano1021', '2002-07-22', 'hiryu', '2014-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS504035609105', 'Lee Fernandez', 0, '+81 90-3306-7216', 3, '471614713562473175', 'Rm. 49, 1-6-13, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1989-02-11', 0, 0, 'fernale', '2015-09-25', 'lfer', '2013-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS942311938215', 'William Ford', 1, '+86 167-0466-8308', 1, '512016175754688607', 'No.9 building, 648 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1992-11-10', 0, 0, 'williford', '2020-09-15', 'william7', '2011-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS268247541193', '曹小慧', 0, '+86 20-939-6952', 3, '858969742227671115', 'Room 50, CR Building, 257 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-06-15', 0, 0, 'chosw', '2008-07-13', 'siuwacho8', '2007-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS165795409855', '唐天樂', 1, '+1 614-955-8973', 1, '963803269125620116', '673 East Cooke Road Suite 4, Columbus, GA 43214, United States', '1993-05-15', 0, 0, 'tinlok1105', '2006-03-04', 'ttl', '2020-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS053890074724', '麥明詩', 0, '+81 74-346-6590', 4, '586587395711685781', '41F, 3-9-2 Gakuenminami, Nara, Japan', '1989-08-14', 0, 0, 'msm', '2016-11-04', 'mms', '2015-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS932716526786', 'Anne Sanders', 1, '+86 187-8492-6272', 1, '032736982525630292', '中国广州市越秀区中山二路192号华润大厦2室', '1991-07-13', 0, 0, 'ansanders', '2015-04-29', 'annsand', '2005-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS985347700265', 'Christine Soto', 1, '+81 11-846-6611', 1, '661724522721217214', 'Rm. 34, 5-4-15 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1998-04-25', 0, 0, 'chrissoto75', '2011-12-13', 'sotochr', '2020-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS316256888161', 'Bonnie Ferguson', 1, '+86 21-011-1681', 3, '771948870306318422', '25F, 488 Hongqiao Rd., Xu Hui District, Shanghai, China', '1992-12-14', 0, 0, 'bonnieferguson', '2004-11-18', 'bonnief', '2020-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS338762891792', '西村悠人', 0, '+44 (1865) 85 7087', 2, '105143262796478126', 'No.32 Main building, 638 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1995-08-03', 0, 0, 'yutonish', '2011-04-09', 'nishimura1120', '2020-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS045845158315', '萧子韬', 1, '+86 148-5432-0428', 2, '330035389088204710', 'Room 33, 472 Shennan Ave, Futian District, Shenzhen, China', '1995-05-21', 0, 0, 'xiaozit', '2018-06-18', 'xizi8', '2004-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS327409509846', '山口海斗', 0, '+1 213-645-9993', 3, '009490293014830803', '819 Sky Way Apt 45, Los Angeles, CA 90043, United States', '1992-02-29', 0, 0, 'yamaguchi2011', '2011-08-13', 'kaito95', '2014-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS151724736160', 'Roger Mills', 1, '+86 180-0840-2144', 0, '294609626145710893', 'Room 11, 539 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1987-04-29', 0, 0, 'millsr', '2005-01-29', 'rogermills', '2015-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS581497279680', '小林瑛太', 1, '+81 3-0305-7149', 1, '396612144563744344', '25F, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1993-05-21', 0, 0, 'kobayashie', '2007-01-09', 'kobayei', '2022-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS185299194363', 'Jeffery Gordon', 0, '+1 614-068-3727', 3, '034626999370249834', '606 East Alley Suite 27, Columbus, GA 43201, United States', '1998-11-05', 0, 0, 'gorjef', '2009-02-10', 'gordonjeffery2013', '2015-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS576739870123', '佐藤光莉', 1, '+1 838-498-1033', 4, '023370009480576001', '932 State Street 3rd Floor, Albany, NY 12203, United States', '1996-02-04', 0, 0, 'sato228', '2000-11-04', 'hsato', '2004-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS623018818137', '丁晓明', 1, '+44 5718 280651', 1, '400968518322853327', 'Flat 22, 921 Park End St, Oxford, OX1 1JD, United Kingdom', '1998-11-18', 0, 0, 'xiaoming5', '2018-05-27', 'xiaoming8', '2002-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS823055038606', 'Ethel Palmer', 0, '+86 168-6745-7980', 0, '361089965483050826', 'No.42 building, 472 Yueliu Rd, Fangshan District, Beijing, China', '1993-07-25', 0, 0, 'epalmer5', '2017-06-13', 'palmeethel4', '2008-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS940926880184', '佐々木美咲', 1, '+1 212-968-4574', 4, '370272273508790758', '929 Fifth Avenue Apartment 13, New York, NY 10017, United States', '1996-05-17', 0, 0, 'sasmisaki', '2009-09-23', 'sasakmis', '2006-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS315699846325', '上田葵', 0, '+86 130-3435-6649', 3, '212571442284222880', 'Room 44, CR Building, 202 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1996-04-11', 0, 0, 'aoi1967', '2005-05-06', 'ueda6', '2004-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS531296921150', '吉田紗良', 0, '+81 70-2712-5684', 0, '688319662476301283', '日本東京品川区東五反田五丁目2番2号11階', '1986-06-15', 0, 0, 'sarayos', '2003-09-03', 'sarayos', '2005-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS660876358688', '罗云熙', 1, '+81 3-5022-8230', 1, '063315338359439605', '44-kai, 1-5-11, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1995-03-29', 0, 0, 'ylu', '2013-03-15', 'luyunx1944', '2014-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS596020154877', '贾詩涵', 0, '+81 11-307-9690', 2, '874956625113939528', '日本札幌豊平区豊平三条十三丁目3番15号5号室', '1996-11-13', 0, 0, 'shihji', '2004-06-01', 'jshihan', '2008-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS489137891213', 'Paul Dixon', 0, '+44 5380 134838', 3, '792088965130784421', 'No.33 Main building, 422 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1990-06-04', 0, 0, 'dpaul', '2019-06-12', 'pd78', '2020-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS402220490915', '清水陸', 1, '+81 80-1717-0867', 1, '290210368341838148', '日本札幌厚別区上野幌一条二丁目1番17号6階', '1992-05-11', 0, 0, 'shiriku', '2012-02-21', 'shimizu1', '2014-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS386987509990', '岡本大和', 0, '+44 (116) 860 6345', 3, '254270098438226641', 'No.12 Main building, 68 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1988-01-27', 0, 0, 'yamato1959', '2021-06-14', 'yamato70', '2014-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS274269453770', '遠藤紗良', 0, '+44 7801 124306', 4, '845246306562944813', 'No.50 Main building, 645 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1985-01-06', 0, 0, 'endosara', '2006-12-07', 'endosara', '2013-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS322197315118', 'Eva Meyer', 1, '+1 838-059-4236', 3, '164553046171136426', '874 Central Avenue Apartment 46, Albany, NY 12206, United States', '1995-04-12', 0, 0, 'meyer43', '2013-09-17', 'mev', '2009-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS827824617506', 'Sherry Nelson', 1, '+86 10-866-2081', 2, '174296395578369081', '中国北京市朝阳区三里屯路857号48室', '1995-12-06', 0, 0, 'sherry72', '2004-07-24', 'nelson4', '2008-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS773196297255', '魏宇宁', 1, '+86 168-0997-3996', 4, '368748036930978264', '中国中山天河区大信商圈大信南路151号23号楼', '1990-05-14', 0, 0, 'yuning53', '2021-01-01', 'ywei', '2004-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS925184467301', '袁安琪', 1, '+1 718-931-7261', 3, '140175195291752892', '934 Nostrand Ave Suite 41, Brooklyn, NY 11216, United States', '1995-02-11', 0, 0, 'anqyuan1204', '2000-01-03', 'anqi65', '2016-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS570013937223', 'Amanda Patel', 0, '+86 158-7636-3114', 0, '667618412455133593', 'Room 36, 13 Middle Huaihai Road, Huangpu District, Shanghai, China', '1986-07-21', 0, 0, 'patel68', '2003-02-08', 'patelam', '2016-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS146932626523', '小山桜', 1, '+81 3-4388-6078', 1, '153188870902302261', '日本東京中央区銀座三丁目12番16号49号室', '1989-04-18', 0, 0, 'koyama84', '2004-06-20', 'sakko', '2002-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS465377445742', '何安琪', 0, '+44 (151) 312 1416', 2, '961796745901090677', 'No.28 Main building, 324 Redfern St, Liverpool, L20 8JB, United Kingdom', '1986-10-11', 0, 0, 'hea', '2012-02-17', 'hean', '2012-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS858014264610', '杜小慧', 1, '+86 760-791-5772', 1, '173707779095914706', 'No.25 building, 200 Lefeng 6th Rd, Zhongshan, China', '1996-08-20', 0, 0, 'tosiuwai3', '2003-06-22', 'tosw', '2020-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS003209770999', '曹曉彤', 1, '+81 52-215-6044', 4, '856036319966748669', '21-kai, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-09-09', 0, 0, 'hiutungc6', '2002-10-12', 'hiutung1945', '2000-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS209047900812', '孔璐', 0, '+81 3-1094-9132', 3, '620535661577530712', '20F, 3-15-3 Ginza, Chuo-ku, Tokyo, Japan', '1999-01-30', 0, 0, 'kolu', '2012-06-26', 'kl3', '2001-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS970516308779', '溫國權', 1, '+86 145-3862-4310', 3, '824428397405927982', '中国北京市西城区复兴门内大街294号42室', '1991-12-07', 0, 0, 'wankk', '2014-02-23', 'kkwan', '2020-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS151745164057', '邱秀英', 0, '+81 70-7000-9922', 3, '839957855237297516', '22F, 5-2-3 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1999-02-13', 0, 0, 'xiuying7', '2011-11-23', 'xiuyingqiu', '2017-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS031621083766', 'Jeremy Myers', 0, '+81 90-9353-0400', 2, '676571163904957811', 'Rm. 39, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1989-08-18', 0, 0, 'myejeremy', '2005-02-19', 'myersjeremy68', '2005-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS752003910476', '葉仲賢', 1, '+81 11-518-4680', 1, '849454973554134130', 'Rm. 34, 2-1-13 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1991-03-24', 0, 0, 'ychungyin1956', '2008-11-03', 'chungyin64', '2021-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS259299832631', 'Benjamin Woods', 0, '+86 193-3097-7174', 1, '631768914527579642', 'No.19 building, 647 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1985-12-18', 0, 0, 'benjaminwoods', '2002-09-18', 'bewoo', '2008-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS445075951831', '唐云熙', 0, '+81 52-052-5290', 3, '237891616217364935', 'Rm. 48, 10 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-01-29', 0, 0, 'tangyunxi1130', '2019-09-20', 'tayunxi', '2019-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS001418683756', '山崎和真', 1, '+81 11-685-7187', 4, '973514767618864050', '日本札幌清田区真栄四条五丁目19番1号37号室', '1995-05-06', 0, 0, 'kazumayama', '2004-04-07', 'yamazakikazuma', '2010-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS005382259083', '松田葉月', 0, '+44 (1223) 65 3935', 2, '735255558331767810', 'No.9 Main building, 642 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1998-12-07', 0, 0, 'hazukimatsuda2005', '2019-03-14', 'matsudahazuki', '2001-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS852114401213', '關國榮', 0, '+81 90-2587-3147', 1, '026602948785077541', '日本札幌白石区菊水三条五丁目2番9号1号室', '1988-08-29', 0, 0, 'kwkw', '2017-03-16', 'kwkw', '2014-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS764036028493', '杜家文', 0, '+86 157-3208-1404', 2, '962896227662036718', 'No.7 building, No. 341, Shuangqing Rd, Chenghua District, Chengdu, China', '1998-07-14', 0, 0, 'kamant926', '2007-10-21', 'kamant', '2004-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS073738031741', '周朝偉', 1, '+86 10-040-2077', 4, '450631893860457172', '46F, 685 Sanlitun Road, Chaoyang District, Beijing, China', '1993-03-11', 0, 0, 'chowcw', '2016-07-27', 'chowcw', '2010-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS404707526271', '黎慧儀', 1, '+86 10-898-0040', 1, '682557089628057567', '中国北京市朝阳区三里屯路54号12栋', '1995-05-12', 0, 0, 'lwaiyee', '2017-12-13', 'lawaiyee', '2009-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS115479204360', 'Teresa Ward', 1, '+86 195-9970-5132', 1, '292564278681322431', 'No.24 building, 888 Kengmei 15th Alley, Dongguan, China', '1985-06-10', 0, 0, 'wardt9', '2019-10-27', 'wt51', '2021-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS325728765356', '宋子异', 0, '+86 180-3675-5049', 4, '771143740914276740', '中国北京市房山区岳琉路31号38室', '1997-10-16', 0, 0, 'ziyi8', '2021-06-02', 'ziysong207', '2021-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS667353719428', 'Michelle Lewis', 1, '+86 760-775-3658', 4, '691017684487535567', '中国中山紫马岭商圈中山五路173号17号楼', '1997-05-25', 0, 0, 'michellel620', '2009-09-11', 'lewism', '2014-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS021891794359', '李詩涵', 1, '+1 212-744-4895', 1, '277334138379808655', '535 Wooster Street Apt 9, New York, NY 10012, United States', '1988-03-09', 0, 0, 'lishiha5', '2008-07-21', 'shli', '2000-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS863527585568', '森蓮', 1, '+86 10-1212-5150', 0, '633166331221222389', 'No.34 building, 661 Yueliu Rd, Fangshan District, Beijing, China', '1991-10-08', 0, 0, 'remori105', '2002-01-14', 'mori03', '2018-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS728917940977', '阎岚', 1, '+81 11-316-9399', 0, '919952054115214365', 'Rm. 3, 5-4-11 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1992-09-20', 0, 0, 'yanlan', '2005-08-29', 'lanyan84', '2020-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS867247849022', '佐々木七海', 0, '+44 7779 488219', 0, '119715720862618473', 'Block 11, 952 Hanover Street, London, W1S 1YD, United Kingdom', '1993-01-29', 0, 0, 'nansasaki', '2000-02-12', 'sasakina1975', '2006-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS323627110174', '木下花', 1, '+86 755-0667-6108', 3, '034276669100686585', '中国深圳罗湖区田贝一路587号48栋', '1991-07-01', 0, 0, 'hk03', '2000-11-15', 'hanakin86', '2021-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS855332927226', '徐嘉欣', 1, '+1 212-464-4480', 1, '424755932403337924', '162 Wooster Street Apt 4, New York, NY 10012, United States', '1998-12-19', 0, 0, 'karyantsu', '2004-12-15', 'tsuikaryan', '2017-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS157700360023', '郝詩涵', 1, '+1 838-923-1563', 1, '688773607803478621', '314 Lark Street Suite 50, Albany, NY 12210, United States', '1990-08-12', 0, 0, 'shihanh', '2007-03-11', 'haoshihan', '2003-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS679259501010', 'Rita Mason', 0, '+86 191-7347-3091', 3, '636265154950997978', 'No.35 building, 462 Binchuan Rd, Minhang District, Shanghai, China', '1994-12-08', 0, 0, 'rima', '2010-10-20', 'masrita1987', '2005-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS429787640447', '王慧琳', 1, '+86 192-8982-9924', 3, '879024681038628670', 'No.28 building, 236 Shanhu Rd, Dongguan, China', '1986-09-03', 0, 0, 'wailamwon2020', '2002-06-20', 'wwailam', '2007-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS466631239939', '龚云熙', 1, '+86 755-839-7209', 3, '703213970001838101', 'Room 50, CR Building, 328 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1998-01-01', 0, 0, 'gyunxi', '2011-11-04', 'gonyunx', '2016-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS552942711127', '中川優奈', 1, '+81 70-2160-4221', 1, '626010019781783050', '10-kai, 18 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-09-18', 0, 0, 'yunakagawa1985', '2021-04-10', 'yna17', '2018-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS637163501459', 'Barry Henry', 1, '+81 80-6485-3860', 2, '001885003775495033', '1F, 5-19-19 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1992-09-04', 0, 0, 'barryh', '2005-10-28', 'henrybarry5', '2009-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS818636044777', '孟宇宁', 0, '+81 3-3173-4584', 2, '591171938689030689', '14-kai, 2-3-16 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-05-05', 0, 0, 'yuninmeng', '2010-03-07', 'yunimeng', '2012-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS912455368477', 'Theresa Hicks', 0, '+86 156-9814-9037', 1, '343885568804417997', 'No.15 building, 651 Ganlan Rd, Pudong, Shanghai, China', '1992-11-25', 0, 0, 'theresah3', '2016-03-25', 'therhicks409', '2004-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS508093278478', '黄岚', 1, '+1 212-302-5351', 2, '518032617642948257', '921 Canal Street Apartment 12, New York, NY 10013, United States', '1990-04-09', 0, 0, 'hualan', '2020-09-08', 'lahua', '2015-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS763833924169', '福田陸', 0, '+1 212-063-7734', 1, '409412893158806007', '344 Bank Street Apt 48, New York, NY 10014, United States', '1991-03-30', 0, 0, 'rikufuku', '2007-07-13', 'rikufukud1', '2008-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS555791773400', '太田百花', 0, '+44 7892 516820', 2, '010281718345969243', 'Unit 3, Oxford Eco Centre, 879 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1985-11-06', 0, 0, 'momokaota', '2008-08-05', 'otmo63', '2012-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS241491612568', '新井紗良', 0, '+81 70-4556-4819', 1, '341702255844690726', '日本おおさかし近江堂一丁目7番2号26階', '1993-05-07', 0, 0, 'arasar', '2012-11-30', 'saraarai2', '2007-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS103602405941', 'Jason Mason', 0, '+81 80-3843-8362', 2, '512015439045014306', '日本東京品川区東五反田五丁目2番13号4階', '1987-08-27', 0, 0, 'jasonmason', '2008-05-26', 'masonj', '2007-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS443859878537', '加藤大輔', 1, '+44 5456 481790', 2, '536369620721541436', 'No.12 Main building, 384 Park End St, Oxford, OX1 1JD, United Kingdom', '1996-03-21', 0, 0, 'daisukek2011', '2010-03-11', 'kato1206', '2021-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS744399874384', '文麗欣', 1, '+44 5798 924266', 4, '458576062789936162', 'Unit 14, Oxford Eco Centre, 563 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1994-12-31', 0, 0, 'laiyan2', '2019-09-28', 'laiyanma3', '2003-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS083300975446', '赵子韬', 1, '+81 70-3287-8116', 3, '473554084278570830', '日本おおさかし東住吉区東田辺三丁目27番9号12号室', '1997-08-06', 0, 0, 'zhaozitao', '2016-05-06', 'zhaozitao5', '2005-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS132974672191', 'Irene Ward', 0, '+1 212-316-3688', 3, '982760905964311249', '360 West Houston Street 3rd Floor, New York, NY 10014, United States', '1995-08-07', 0, 0, 'wardirene', '2015-08-14', 'irene6', '2013-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS867719084773', '戴子异', 0, '+86 197-0207-6401', 1, '598883292732802176', 'Room 36, CR Building, 792 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1992-11-18', 0, 0, 'ziyida5', '2002-09-14', 'daiziyi', '2013-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS885634088787', '雷志遠', 0, '+81 90-9116-1902', 3, '596576481242616298', '38-kai, 1-7-3 Saidaiji Akodacho, Nara, Japan', '1997-06-20', 0, 0, 'chiyuenlou', '2007-07-02', 'louichiyuen514', '2021-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS581067028597', '方詠詩', 1, '+1 614-702-9082', 4, '178220014375851903', '738 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1989-06-26', 0, 0, 'fws', '2013-09-10', 'fong4', '2000-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS301677310138', '姜朝偉', 0, '+1 212-840-2600', 2, '350296166959265758', '238 Canal Street Apartment 35, New York, NY 10013, United States', '1987-03-11', 0, 0, 'chancw', '2018-05-28', 'cwc', '2017-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS369951451855', '田慧嫻', 0, '+1 838-891-9234', 1, '954204184532326791', '337 Central Avenue Apt 40, Albany, NY 12206, United States', '1985-08-19', 0, 0, 'twaihan707', '2004-03-14', 'watin', '2011-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS013739886370', '葉麗欣', 0, '+1 614-809-2184', 2, '925267950375645571', '563 Diplomacy Drive Suite 48, Columbus, GA 43228, United States', '1994-12-15', 0, 0, 'yiplaiyan1017', '2002-03-09', 'laiyanyip', '2000-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS647126265025', 'Curtis Phillips', 0, '+86 186-8252-5547', 1, '755274000433860288', '5F, 514 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1995-05-31', 0, 0, 'curtisphillips', '2012-08-07', 'phillipscurtis4', '2010-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS450386106232', '元富城', 0, '+44 5235 476436', 1, '566384417096805887', 'No.21 Main building, 224 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1985-02-20', 0, 0, 'fsy', '2010-08-07', 'yuen76', '2015-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS531618293803', '傅頴璇', 1, '+1 213-139-5001', 3, '818643250242715103', '86 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1986-01-20', 0, 0, 'fuwingsuen1954', '2004-07-31', 'wifu1958', '2007-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS516226138310', '官惠妹', 1, '+86 192-6200-3165', 4, '389756149907481869', '中国北京市西城区复兴门内大街636号33室', '1989-05-08', 0, 0, 'kohuimei', '2007-09-26', 'hmk', '2012-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS459398891535', '彭明詩', 1, '+1 614-923-1637', 3, '146545660052081312', '835 East Cooke Road Apartment 4, Columbus, GA 43214, United States', '1985-04-20', 0, 0, 'pang8', '2003-11-08', 'msp4', '2001-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS190885217828', '罗璐', 0, '+44 7555 251579', 3, '371545507710985862', 'No.12 Main building, 435 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1995-02-08', 0, 0, 'luol', '2016-12-13', 'lul8', '2021-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS875542991032', 'Maria Ortiz', 0, '+1 838-687-6426', 4, '685196898310049496', '331 Central Avenue Suite 3, Albany, NY 12206, United States', '1995-03-03', 0, 0, 'ortmar43', '2017-10-17', 'mao', '2009-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS406715889056', 'Jennifer Rose', 0, '+86 199-6706-6402', 3, '576099984387949281', '中国成都市成华区玉双路6号682号22楼', '1990-06-07', 0, 0, 'jenniro80', '2002-12-14', 'jros', '2014-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS886732669601', 'Eugene Castillo', 1, '+86 20-681-7629', 2, '693277653759263766', '中国广州市越秀区中山二路549号44楼', '1994-08-31', 0, 0, 'caseugene', '2018-07-06', 'castillo509', '2013-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS655027319596', 'Gladys Wright', 1, '+44 (20) 8153 1024', 3, '587750136155604841', 'Flat 43, 551 Hanover Street, London, W1S 1YD, United Kingdom', '1986-05-14', 0, 0, 'gladys09', '2011-12-28', 'wrighgladys', '2010-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS698678895120', '酒井瑛太', 1, '+44 5020 999456', 4, '661126364997112043', 'Unit 24, Oxford Eco Centre, 96 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1988-11-11', 0, 0, 'sakai5', '2020-08-21', 'eita720', '2010-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS299773548261', 'Jacqueline Ruiz', 0, '+81 11-592-4786', 1, '831057607293682594', '19-kai, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1994-07-30', 0, 0, 'jr13', '2009-01-24', 'ruizjacqueline', '2004-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS796951221207', 'Henry Olson', 0, '+1 330-186-3042', 2, '354997415771318528', '336 Fern Street Apt 31, Akron, OH 44307, United States', '1989-01-23', 0, 0, 'holson', '2000-10-31', 'henry316', '2019-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS008714600387', '山本翼', 1, '+1 213-961-9795', 3, '000027559418660478', '110 S Broadway Suite 26, Los Angeles, CA 90015, United States', '1994-02-27', 0, 0, 'tsubyamam', '2019-03-09', 'yamamtsu10', '2009-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS205935027658', '野村百恵', 1, '+86 760-416-0724', 2, '192180403069460859', '中国中山京华商圈华夏街355号21楼', '1987-04-18', 0, 0, 'momonomura', '2013-06-09', 'nomuramom', '2016-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS006570876978', '森明菜', 0, '+44 (20) 0536 0007', 1, '278488015665446891', 'Flat 32, 497 Pollen Street, London, W1S 1NG, United Kingdom', '1991-12-29', 0, 0, 'moria', '2003-05-14', 'akinamori331', '2018-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS825365108906', '邹嘉伦', 0, '+44 7993 791830', 1, '943399267360447169', 'No.39 Main building, 900 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1996-05-15', 0, 0, 'zoujialun', '2021-03-31', 'jialun128', '2006-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS335427782343', '千葉翼', 1, '+81 90-6067-4642', 0, '168767014393291493', '40-kai, 2-1-20 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-11-11', 0, 0, 'tsubasach', '2020-03-26', 'chibatsuba830', '2014-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS589293419237', '曾宇宁', 1, '+86 760-5649-0079', 3, '449628860328631293', 'No.4 building, 318 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1996-12-24', 0, 0, 'yuningzeng', '2005-06-05', 'zengyun', '2000-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS273255726255', 'Jose Anderson', 1, '+86 175-9479-9768', 2, '465920066474039599', '中国深圳罗湖区清水河一路238号华润大厦41室', '1996-12-17', 0, 0, 'anjose', '2011-06-24', 'anderson901', '2002-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS301640158672', '魏晓明', 1, '+44 5970 254503', 0, '170237472891468559', 'No.19 Main building, 158 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-08-03', 0, 0, 'wex2', '2011-05-22', 'xiaoming42', '2000-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS424781841891', '田中美緒', 0, '+86 160-9126-9707', 4, '780553042984383599', '中国北京市延庆区028县道530号4楼', '1991-09-02', 0, 0, 'mt55', '2021-01-03', 'miot', '2010-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS095872197360', 'Francisco Stone', 1, '+81 70-5522-6696', 4, '511188519398853387', 'Rm. 15, 13-3-19 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-02-06', 0, 0, 'stone1978', '2002-09-16', 'stofr1', '2005-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS518815874008', '山下美咲', 1, '+86 179-4823-3407', 3, '238200721343760554', 'No.46 building, 415 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1993-11-30', 0, 0, 'misaki64', '2009-08-16', 'ymi', '2001-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS961112847079', '前田陸', 0, '+81 90-5290-6266', 2, '027959943405678318', '日本おおさかし近江堂一丁目7番6号45階', '1990-09-02', 0, 0, 'rikumaeda', '2010-09-03', 'rikumae4', '2007-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS820231656931', '溫梓晴', 0, '+1 213-639-2722', 4, '055035290364414869', '325 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1992-02-10', 0, 0, 'wantszching', '2012-03-14', 'wantszching', '2009-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS301308271142', '张致远', 1, '+81 3-7643-6861', 0, '797349656231705851', '日本東京渋谷区代々木二丁目3番6号50階', '1997-05-17', 0, 0, 'zhang4', '2011-12-07', 'zhiyuanzh91', '2006-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS322889255798', '區朝偉', 1, '+44 7100 638060', 0, '861098908912568576', 'No.49 Main building, 583 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1992-10-04', 0, 0, 'chiuwai6', '2007-09-27', 'achiuwai9', '2010-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS478827235502', 'Marjorie Aguilar', 0, '+81 52-634-5416', 1, '340878212451559571', '36F, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-12-02', 0, 0, 'aguilarmarjorie', '2011-11-08', 'amar', '2010-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS372584306623', '何國明', 0, '+86 28-702-0187', 3, '204920791863307404', '中国成都市成华区双庆路526号华润大厦13室', '1997-06-21', 0, 0, 'hkm7', '2006-12-25', 'ho41', '2009-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS053974998365', '郭嘉伦', 1, '+44 5218 450892', 1, '488226442478801074', 'Flat 49, 370 Regent Street, London, W1B 2LX, United Kingdom', '1997-09-29', 0, 0, 'guojial322', '2001-06-14', 'guojialun', '2000-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS276242708137', '野口絢斗', 1, '+81 90-7765-7530', 0, '171331027652071666', '11F, 3 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1993-04-18', 0, 0, 'nogayato', '2015-01-30', 'noguayato425', '2006-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS316706068742', 'Adam Woods', 1, '+81 52-927-5013', 0, '568104812447761998', '3-kai, 11 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1985-08-07', 0, 0, 'woodsadam4', '2005-12-25', 'adamw9', '2008-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS622440783672', '秦杰宏', 0, '+86 154-0256-3809', 4, '866279490539559516', '中国上海市闵行区宾川路518号19号楼', '1987-05-01', 0, 0, 'qin17', '2021-02-06', 'jiehong5', '2018-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS875297156399', '尹秀英', 1, '+81 80-8374-8210', 1, '296928050370181458', '27-kai, 3-9-5 Gakuenminami, Nara, Japan', '1992-07-31', 0, 0, 'yxiuying', '2015-03-10', 'yin2014', '2000-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS322992163884', 'Troy Hamilton', 0, '+81 3-2575-9858', 3, '445392282354393963', '35F, 5-2-13 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1987-03-09', 0, 0, 'troh901', '2006-01-17', 'troy4', '2017-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS026426537802', '周詩涵', 1, '+44 (121) 586 8679', 0, '755750063092925198', 'No.28 Main building, 567 New Street, Birmingham, B2 4DB, United Kingdom', '1995-08-12', 0, 0, 'shzhou4', '2008-08-21', 'zhou919', '2019-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS479172696683', '中野美緒', 1, '+44 (151) 021 7231', 0, '725241263027655833', 'Flat 39, 112 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1985-03-18', 0, 0, 'nm608', '2015-11-01', 'mionakan90', '2021-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS229854612284', '武田美羽', 1, '+81 70-5163-0493', 3, '513011978127972518', '7F, 3-15-11 Ginza, Chuo-ku, Tokyo, Japan', '1992-06-27', 0, 0, 'miutakeda', '2015-10-11', 'tmiu', '2007-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS316585562160', '许子韬', 0, '+86 28-279-6647', 2, '781681014706470815', '29F, 729 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1988-05-21', 0, 0, 'xuz905', '2008-12-17', 'xuzita', '2003-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS029034813860', '黎晓明', 0, '+1 312-946-1707', 2, '139704600346732881', '104 Pedway Apt 50, Chicago, IL 60601, United States', '1991-08-13', 0, 0, 'xiaomingli5', '2010-01-20', 'xili4', '2014-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS194991560518', '酒井湊', 0, '+86 760-3836-8714', 1, '705815535354540605', '中国中山乐丰六路203号47栋', '1991-09-14', 0, 0, 'sakaiminato', '2017-09-11', 'minatosakai15', '2006-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS912315068812', 'Herbert Powell', 1, '+1 838-547-7580', 3, '271433823989837527', '728 Broadway 3rd Floor, Albany, NY 12207, United States', '1987-12-08', 0, 0, 'herbertp6', '2007-04-25', 'powherbert', '2009-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS318012209096', 'Harry Wright', 1, '+86 148-8941-0740', 3, '980511932858251773', '中国北京市延庆区028县道776号20号楼', '1994-11-18', 0, 0, 'wrightharry', '2011-08-27', 'wright414', '2007-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS954856159650', 'Tammy Stewart', 0, '+81 11-629-6218', 1, '387897138611230387', 'Rm. 15, 6-1-3, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1997-09-18', 0, 0, 'tammystewa97', '2017-07-18', 'tammy53', '2016-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS023266031065', '溫祖兒', 1, '+44 (20) 6310 2099', 1, '983696495437428026', 'No.24 Main building, 909 Pollen Street, London, W1S 1NG, United Kingdom', '1997-03-30', 0, 0, 'choyee1969', '2007-11-11', 'wanchoyee17', '2002-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS503320874383', '曹國榮', 0, '+44 (1865) 69 3685', 2, '964437034801231912', 'Flat 2, 506 Park End St, Oxford, OX1 1JD, United Kingdom', '1992-11-10', 0, 0, 'kwcho', '2012-10-09', 'kwokwingcho', '2013-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS866292416037', 'Mike Medina', 1, '+44 (151) 033 4310', 1, '603127974787590081', 'Flat 27, 847 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1986-12-01', 0, 0, 'mikemedin', '2005-11-11', 'medinam', '2009-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS936702592079', '毛世榮', 0, '+86 755-8390-1071', 0, '733858710537794389', '中国深圳福田区景田东一街666号5室', '1987-11-13', 0, 0, 'swmo', '2009-09-20', 'swmo824', '2001-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS679785636071', 'Dennis Fernandez', 1, '+86 191-1107-2663', 1, '654256789939150757', '中国北京市房山区岳琉路70号39楼', '1998-02-24', 0, 0, 'dfernandez', '2021-04-20', 'dennisferna', '2007-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS484804423713', '清水美緒', 1, '+44 5628 766147', 1, '640769681899243604', 'No.50 Main building, 326 Sackville St, Manchester, M1 3BB, United Kingdom', '1986-08-15', 0, 0, 'mioshimi', '2012-09-28', 'smio', '2008-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS890960182140', '江頴璇', 1, '+81 74-347-1499', 1, '129081504781459381', '日本ならし西大寺赤田町一丁目7番8号20階', '1989-04-04', 0, 0, 'kong66', '2018-06-27', 'wingsuen5', '2018-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS045229733366', '原田蓮', 1, '+86 131-2839-6644', 2, '958311346516075612', 'Room 15, CR Building, 82 Lefeng 6th Rd, Zhongshan, China', '1994-03-13', 0, 0, 'ren64', '2000-09-27', 'haradren', '2002-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS717708380762', 'Billy Owens', 1, '+81 80-8215-2056', 4, '894841540238129933', '3F, 6-1-16, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1998-09-08', 0, 0, 'ob623', '2007-06-22', 'owens1112', '2008-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS056892189903', '鄺志明', 1, '+81 80-3983-6157', 3, '837581456239708795', '日本なごやし北区清水三丁目19番9号49階', '1992-11-13', 0, 0, 'chiming10', '2021-12-25', 'chimingkw', '2004-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS249223635097', '狄安娜', 0, '+44 (151) 380 6463', 4, '081301208004356556', 'No.5 Main building, 645 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1989-01-28', 0, 0, 'onnati', '2021-02-02', 'onti', '2018-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS368968455314', '郭子韬', 0, '+86 10-2348-1525', 0, '132434015004683983', '中国北京市東城区東直門內大街994号27栋', '1993-11-11', 0, 0, 'guozitao', '2001-02-13', 'guzitao8', '2010-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS009151839651', 'Leslie Dunn', 1, '+1 212-336-6260', 0, '179906754590049583', '67 Bank Street Apartment 5, New York, NY 10014, United States', '1993-06-11', 0, 0, 'dunnlesli', '2006-02-23', 'dunnles', '2013-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS102284928141', 'Willie Harrison', 0, '+44 (20) 9214 5498', 4, '007645422280306617', 'Block 3, 621 Hanover Street, London, W1S 1YD, United Kingdom', '1994-05-16', 0, 0, 'harrison2', '2010-05-30', 'willieharrison1130', '2015-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS287835741827', 'Francis Murphy', 0, '+1 330-852-8060', 1, '935520388115088710', '829 Collier Road Apt 29, Akron, OH 44320, United States', '1985-10-28', 0, 0, 'frm5', '2014-05-14', 'murpf1961', '2003-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS749689735396', '宣玲玲', 1, '+86 149-1310-1940', 1, '986061774709734259', '中国上海市浦东新区橄榄路67号华润大厦23室', '1990-04-09', 0, 0, 'hsualingling328', '2019-06-26', 'llhsuan', '2015-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS997238401859', '千葉悠人', 0, '+81 74-948-2764', 3, '592927871624295397', '日本ならし大和郡山市本庄町一丁目1番18号39階', '1994-04-01', 0, 0, 'chibayuto4', '2006-12-18', 'yuto17', '2005-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS857311667773', '张震南', 0, '+86 20-8777-4522', 3, '277045334326810043', 'Room 17, CR Building, 371 Xiaoping E Rd, Baiyun , Guangzhou, China', '1992-03-08', 0, 0, 'zhzhang', '2012-11-22', 'zhz', '2000-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS777907187415', 'Sheila Washington', 0, '+86 769-3707-1625', 1, '866446549517913153', '中国东莞环区南街二巷384号华润大厦8室', '1995-02-15', 0, 0, 'sheilawashi', '2017-05-07', 'washington6', '2002-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS888080121509', 'Victor Castillo', 0, '+86 10-3160-4271', 3, '347561317463950210', '43F, 642 68 Qinghe Middle St, Haidian District, Beijing, China', '1996-03-12', 0, 0, 'castillovictor6', '2020-07-11', 'casvictor4', '2004-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS375219401582', '楊國明', 0, '+86 168-7871-8942', 1, '119305208329624923', '32F, 862 Tianhe Road, Tianhe District, Guangzhou, China', '1992-10-01', 0, 0, 'yeunkm', '2012-02-12', 'kmyeung7', '2011-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS819706828232', '白安娜', 1, '+81 80-1075-6228', 2, '955276700623676081', '日本東京品川区東五反田五丁目2番18号50階', '1985-08-24', 0, 0, 'onna1018', '2011-04-20', 'pakon03', '2015-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS933151214796', '郭家明', 0, '+81 52-188-4339', 4, '362749848060269412', '36-kai, 2-5-17 Chitose, Atsuta Ward, Nagoya, Japan', '1986-11-18', 0, 0, 'kwokkm', '2002-10-13', 'kwok1966', '2019-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS262157900238', '任子韬', 0, '+81 3-4454-9343', 1, '842093321817676613', '日本東京中央区銀座三丁目12番10号14階', '1988-11-14', 0, 0, 'zitaoren', '2008-02-10', 'zren', '2010-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS042753879473', '姜惠妹', 0, '+1 838-009-0766', 2, '243271522090871654', '966 Lark Street 3rd Floor, Albany, NY 12210, United States', '1985-07-02', 0, 0, 'chahm5', '2009-08-02', 'chhm710', '2006-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS252711258895', 'Roy Ramirez', 0, '+1 838-240-2609', 4, '992218722762987661', '228 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1991-07-10', 0, 0, 'ramirez1987', '2017-01-30', 'ramirez9', '2014-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS812589317629', '郭小慧', 0, '+86 21-307-1594', 2, '606000857921806831', '中国上海市黄浦区淮海中路563号华润大厦27室', '1988-08-27', 0, 0, 'kwsi', '2003-09-05', 'swkw8', '2001-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS293629386853', '平野瑛太', 0, '+86 21-495-1965', 1, '368422933498330162', 'No.18 building, 134 Jianxiang Rd, Pudong, Shanghai, China', '1998-01-24', 0, 0, 'eh51', '2020-11-08', 'hirano70', '2003-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS690315534705', '成潤發', 0, '+86 755-204-6754', 4, '542188355737754808', '中国深圳罗湖区田贝一路433号20栋', '1991-02-17', 0, 0, 'yus6', '2000-01-07', 'yunfatsh7', '2019-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS641772576512', '大塚美羽', 1, '+86 760-394-5827', 2, '361390960616472581', '中国中山紫马岭商圈中山五路740号华润大厦43室', '1989-01-21', 0, 0, 'otsukam', '2015-12-31', 'otsuka522', '2000-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS460816902417', '野村陽菜', 1, '+81 70-0616-4246', 2, '574184821338391511', '35F, 3-19-6 Shimizu, Kita Ward, Nagoya, Japan', '1988-01-27', 0, 0, 'hn1967', '2013-10-05', 'nomuhina', '2003-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS616747167356', '向淑怡', 1, '+81 70-3678-7857', 3, '553456098435244269', '日本なごやし守山区瀬古東二丁目171番19号36階', '1985-04-26', 0, 0, 'heungsukyee', '2015-01-08', 'syheung2', '2020-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS140785577465', '薛家輝', 0, '+81 74-759-3081', 1, '514177032830634199', '40-kai, 6 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-03-26', 0, 0, 'kafaisit4', '2022-01-17', 'sikaf', '2018-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS924543984689', '藤田詩乃', 1, '+81 11-653-5953', 3, '179462821961085249', '16-kai, 5-2-6 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-12-24', 0, 0, 'shinofuji', '2010-01-08', 'sfu', '2000-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS518866465917', 'Vincent Moreno', 0, '+81 52-137-6129', 3, '309688695353895180', '日本なごやし瑞穂区河岸町四丁目20番13号43階', '1998-09-15', 0, 0, 'mvin730', '2014-09-02', 'vincemor', '2010-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS071036475313', 'Bobby Rice', 0, '+86 755-5788-0651', 0, '722502452862835806', '中国深圳罗湖区蔡屋围深南东路838号31楼', '1989-10-11', 0, 0, 'ricebobby', '2017-01-09', 'bobbyrice', '2002-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS347489681314', 'Sean Wood', 1, '+86 195-3167-0127', 3, '566630190233216207', '中国上海市浦东新区橄榄路92号华润大厦45室', '1996-06-02', 0, 0, 'wood40', '2006-07-14', 'wsean', '2000-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS620945002591', 'Nathan Alexander', 0, '+1 212-249-3869', 0, '765936135875392326', '201 Bank Street Apartment 6, New York, NY 10014, United States', '1997-07-22', 0, 0, 'alexander1968', '2018-04-01', 'alexander7', '2009-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS108876987475', '沈云熙', 0, '+81 74-897-4030', 0, '440431010429263666', '日本ならし西大寺赤田町一丁目7番20号39号室', '1998-12-01', 0, 0, 'yunxishen', '2005-10-10', 'sheny84', '2005-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS676733580164', '斉藤美羽', 1, '+1 718-456-7749', 3, '926824061654984502', '486 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1986-01-24', 0, 0, 'miu00', '2004-12-18', 'saitom1110', '2012-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS586449777652', '何富城', 1, '+44 (121) 925 1063', 2, '876547503325507678', 'Flat 48, 731 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1996-08-30', 0, 0, 'fushingho', '2010-02-13', 'fushingho525', '2018-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS129823502242', 'Michelle Young', 1, '+81 52-942-1367', 0, '373456791292753323', '38-kai, 9 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-12-16', 0, 0, 'youngmichelle', '2015-08-24', 'michelleyoun', '2012-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS090103649724', 'Anna Butler', 0, '+86 183-5574-0486', 1, '138129134144232049', '中国北京市东城区东单王府井东街225号46号楼', '1994-07-05', 0, 0, 'annabut', '2016-11-18', 'bua', '2001-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS819200762733', '邹秀英', 0, '+86 176-3010-7412', 2, '064716321796066351', 'No.20 building, No. 12, Shuangqing Rd, Chenghua District, Chengdu, China', '1997-07-16', 0, 0, 'zouxiuying4', '2009-12-02', 'zoxiuy1997', '2006-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS824215974149', 'Keith Webb', 0, '+44 5800 720458', 3, '548587075654173417', 'Block 8, 97 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1992-02-24', 0, 0, 'webb202', '2002-11-17', 'kweb', '2015-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS511737439330', '陶嘉伦', 1, '+1 718-011-5942', 3, '672620279451980265', '14 1st Ave Apt 21, Brooklyn, NY 11220, United States', '1985-02-05', 0, 0, 'tjial', '2012-04-04', 'taoj1031', '2016-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS743369526584', '馮仲賢', 0, '+81 3-4092-9115', 3, '594111302994815702', '日本東京港区東新橋一丁目5番2号33階', '1986-03-08', 0, 0, 'fungchungyin', '2002-10-09', 'cyf1110', '2003-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS664876942911', '武田葉月', 0, '+86 20-548-5350', 1, '683314566046242881', '中国广州市越秀区中山二路272号10室', '1991-02-19', 0, 0, 'hazutakeda', '2007-01-20', 'hazukitake', '2018-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS184740003091', '桜井優奈', 1, '+86 139-3981-2048', 1, '060026745192847079', '15F, No.707, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1996-05-08', 0, 0, 'yunasakurai1003', '2011-08-21', 'sakuraiyuna', '2005-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS562895290492', 'Bernard Freeman', 0, '+44 (116) 738 6860', 0, '613871879275790871', 'No.21 Main building, 233 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-10-07', 0, 0, 'bf1992', '2012-08-11', 'freemanbernard1104', '2016-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS448369964298', '橋本愛梨', 1, '+1 212-628-7078', 3, '771400959875252555', '958 Canal Street 3rd Floor, New York, NY 10013, United States', '1995-04-04', 0, 0, 'hashimoto1940', '2012-04-16', 'airh', '2005-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS776789657174', '新井紗良', 0, '+44 7122 669915', 3, '661613159802421802', 'Block 44, 950 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1990-06-10', 0, 0, 'sararai02', '2009-04-18', 'saraar', '2015-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS171273447557', '長谷川湊', 1, '+81 52-622-3992', 2, '649897571781648007', '42-kai, 12 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-09-09', 0, 0, 'mhasegawa8', '2004-07-30', 'haseminato', '2003-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS982274341600', '山田桜', 1, '+86 174-8055-5403', 3, '097247768287178289', '16F, No. 6, Shuangqing Rd, Chenghua District, Chengdu, China', '1991-04-28', 0, 0, 'sya', '2015-07-25', 'sakura1122', '2017-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS283936321678', '長谷川樹', 1, '+1 330-807-3427', 3, '844507154197282048', '937 West Market Street Apt 44, Akron, OH 44333, United States', '1987-10-08', 0, 0, 'hits', '2011-11-30', 'hasegawa4', '2021-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS960765590565', '韓詠詩', 0, '+44 7367 690690', 4, '915771612751694977', 'Block 43, 594 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1987-01-25', 0, 0, 'hanwing', '2019-12-19', 'hawingsze', '2001-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS405735032796', 'Carmen Freeman', 1, '+1 212-049-5500', 3, '475171704349692262', '431 Bank Street Apt 3, New York, NY 10014, United States', '1987-02-04', 0, 0, 'carmen69', '2014-10-16', 'freeman1229', '2004-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS983390502628', '平野美月', 1, '+81 80-8536-9686', 4, '506533998384717770', '日本東京中央区銀座三丁目12番10号7階', '1992-10-07', 0, 0, 'hirano14', '2014-11-15', 'mithirano7', '2014-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS875560222922', 'Emily Jackson', 1, '+1 838-329-3500', 0, '391974669285149034', '95 Central Avenue Suite 17, Albany, NY 12206, United States', '1991-06-29', 0, 0, 'jaemily', '2020-09-27', 'emilyja', '2001-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS664598874328', '山本葉月', 0, '+81 70-4850-5241', 2, '472236732901397911', '日本おおさかし西成区天神ノ森二丁目1番19号15号室', '1985-12-31', 0, 0, 'yamamoto6', '2009-10-03', 'hazuki418', '2017-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS126867342846', 'Vincent Ortiz', 0, '+1 838-556-4891', 1, '997196140723804161', '1 Central Avenue Suite 25, Albany, NY 12205, United States', '1992-05-11', 0, 0, 'vortiz', '2009-08-12', 'ortizv', '2002-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS323444161074', '何岚', 0, '+86 28-4221-6812', 0, '899165013252482588', 'No.20 building, 646 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1986-09-22', 0, 0, 'lan1994', '2014-06-16', 'hel', '2013-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS468573273117', '阎子异', 0, '+86 20-272-2734', 2, '653077639221154209', '中国广州市越秀区中山二路457号38栋', '1989-05-14', 0, 0, 'yaziyi825', '2011-02-24', 'zy6', '2008-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS199016951041', '何梓晴', 0, '+86 185-9206-8810', 2, '805843455077672475', '中国北京市西城区复兴门内大街656号33室', '1995-05-14', 0, 0, 'hotszching', '2014-02-03', 'tszching7', '2008-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS695551267471', '車國榮', 1, '+86 136-5670-2068', 0, '164659086185841650', 'No.26 building, 179 East Wangfujing Street, Dongcheng District , Beijing, China', '1996-09-15', 0, 0, 'kwokwingche903', '2005-03-27', 'ckwokwing', '2019-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS101674688584', 'Doris Henderson', 0, '+44 (116) 660 3418', 0, '187574174262674705', 'Block 33, 227 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-10-07', 0, 0, 'dorishenderson7', '2010-02-14', 'hendersond3', '2012-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS815621463809', 'Joshua Olson', 1, '+86 760-8770-8441', 3, '046217788800484461', '中国中山天河区大信商圈大信南路221号43室', '1989-09-09', 0, 0, 'joshua1991', '2007-03-17', 'olsoj', '2009-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS094849467313', '于子韬', 0, '+86 159-2753-6058', 1, '642888161397276942', '中国中山天河区大信商圈大信南路889号华润大厦22室', '1987-04-18', 0, 0, 'zitaoy', '2007-06-10', 'zitaoyu', '2011-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS754699883037', '徐慧珊', 0, '+81 80-4115-4844', 0, '334481215456102033', '2-kai, 1-5-12, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1998-05-22', 0, 0, 'twaisan929', '2012-01-13', 'waisan1974', '2010-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS268098441525', '任國權', 1, '+86 769-8678-3718', 4, '597012828534479628', 'No.7 building, 871 Dongtai 5th St, Dongguan, China', '1987-06-28', 0, 0, 'ykk', '2021-02-27', 'yam54', '2014-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS751491734445', '余岚', 1, '+86 755-1049-5544', 1, '429245964607338312', '中国深圳龙岗区布吉镇西环路443号30栋', '1995-02-26', 0, 0, 'yu715', '2002-06-12', 'yulan', '2006-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS714512500797', 'John Dixon', 0, '+81 52-965-6261', 0, '383312746993817544', '日本なごやし熱田区千年二丁目5番3号34階', '1992-03-16', 0, 0, 'johndix1977', '2014-01-20', 'jdix', '2007-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS978405796116', '佐野百花', 0, '+86 140-9248-4913', 3, '056758453519160031', 'Room 29, 201 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1987-04-08', 0, 0, 'momoksa', '2004-05-22', 'msano4', '2016-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS370313465591', '萧宇宁', 1, '+44 5895 803257', 1, '965328029895088370', 'No.2 Main building, 322 Maddox Street, London, W1S 1PU, United Kingdom', '1985-01-04', 0, 0, 'xiyuning', '2019-03-24', 'xiayuning', '2017-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS719073095957', 'Katherine Gibson', 0, '+86 755-822-7356', 4, '650985916864187659', '13F, 547 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1992-06-15', 0, 0, 'gik8', '2004-07-16', 'katherinegibso', '2005-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS861002146790', '佐藤陸', 0, '+1 330-315-9241', 1, '578648338221514900', '464 Fern Street Suite 17, Akron, OH 44307, United States', '1990-11-02', 0, 0, 'satori927', '2018-08-12', 'rikusato', '2017-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS679497431641', '周國榮', 1, '+81 66-598-7953', 1, '439063361100656599', '48-kai, 1-1-11 Deshiro, Nishinari Ward, Osaka, Japan', '1998-07-02', 0, 0, 'kwc', '2015-07-16', 'kwokwingchow', '2004-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS487199850523', '梁富城', 1, '+86 133-4547-7979', 3, '714087644897817453', 'No.20 building, 180 Kengmei 15th Alley, Dongguan, China', '1992-06-18', 0, 0, 'fushing229', '2012-12-23', 'leufs', '2020-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS122019195248', 'Gary Kelley', 0, '+81 70-5888-7521', 3, '441584082026393842', '日本東京渋谷区代々木二丁目3番8号7号室', '1988-11-12', 0, 0, 'kelley8', '2012-09-02', 'kelley51', '2009-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS192081256398', 'Raymond Brown', 1, '+81 3-5252-5136', 1, '345426473887921355', '34-kai, 1-6-15, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1986-05-19', 0, 0, 'raymondbr', '2017-05-17', 'brownra307', '2011-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS598401963308', '毛頴思', 0, '+86 755-4457-3321', 1, '500102070152214171', '中国深圳龙岗区布吉镇西环路133号36栋', '1990-10-31', 0, 0, 'wsmo', '2014-06-07', 'mo7', '2014-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS689735511634', '魏震南', 1, '+86 136-2967-4896', 1, '724824234087286947', 'Room 35, 887 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1996-02-03', 0, 0, 'zhennan1951', '2005-03-12', 'zhewe7', '2017-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS176049597748', '酒井陽太', 1, '+44 5965 345466', 3, '642520592482297265', 'Block 27, 904 Mosley St, Manchester, M2 3AQ, United Kingdom', '1995-08-12', 0, 0, 'yots66', '2012-04-18', 'yotsa1953', '2001-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS009461195942', '林子韬', 1, '+44 (20) 9386 6968', 4, '791346600667613485', 'Block 47, 331 Hanover Street, London, W1S 1YD, United Kingdom', '1987-10-25', 0, 0, 'lzi717', '2020-03-08', 'lizitao1026', '2006-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS691782410369', '鈴木百恵', 0, '+44 (116) 014 3806', 3, '864036643599358884', 'Block 28, 771 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1994-10-29', 0, 0, 'msuzu319', '2003-01-13', 'smomoe1995', '2020-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS708915374613', 'Nicholas Hamilton', 1, '+86 166-8861-1753', 2, '410405716349925331', '中国北京市西城区复兴门内大街960号37栋', '1995-06-16', 0, 0, 'hamiltonnic', '2009-11-15', 'nicholashamil', '2005-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS999257894123', 'Josephine Nelson', 0, '+44 5277 589858', 3, '845717795564604793', 'No.38 Main building, 829 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-11-24', 0, 0, 'nelsojose906', '2009-10-18', 'nej', '2002-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS888854683526', '贺云熙', 1, '+1 838-136-8092', 2, '542083333262295295', '974 Central Avenue Suite 14, Albany, NY 12206, United States', '1991-09-21', 0, 0, 'heyunxi1229', '2009-05-14', 'hyunx8', '2009-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS608678818494', '鄧梓軒', 0, '+81 11-054-2549', 0, '594077229590743989', '日本札幌中央区宮の森四条六丁目1番19号19階', '1991-09-29', 0, 0, 'tath', '2004-03-08', 'tszhint', '2019-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS363730488105', '佐々木美咲', 0, '+81 11-395-1422', 2, '539710392612170380', '日本札幌白石区菊水三条五丁目2番19号22階', '1999-03-03', 0, 0, 'sasakimisa', '2015-01-07', 'misakisasa131', '2007-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS327949206760', '西村健太', 0, '+86 160-7156-9266', 0, '198992007545764107', '中国北京市延庆区028县道753号华润大厦38室', '1987-07-08', 0, 0, 'nishkenta', '2018-06-17', 'nishimurake', '2015-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS074030043118', '菊地百恵', 1, '+86 28-5308-3036', 1, '150139363452300675', 'No.13 building, 933 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1985-11-30', 0, 0, 'momoekikuchi', '2017-07-04', 'kikuchi1969', '2001-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS115549536737', 'Clara Alexander', 1, '+86 28-740-6282', 1, '642149895353900081', 'No.46 building, 206 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1995-06-07', 0, 0, 'claraa', '2011-07-27', 'alexander5', '2020-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS864478844639', '湯梓軒', 1, '+86 140-0520-0810', 1, '598234424533515604', 'Room 27, 347 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1991-04-29', 0, 0, 'tth', '2004-09-22', 'tongtszhin', '2003-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS417956902168', '鄭朝偉', 1, '+44 (151) 520 8790', 2, '846142002039521394', 'Flat 2, 223 Hanover St, Liverpool, L1 4AF, United Kingdom', '1986-01-09', 0, 0, 'cwche', '2017-11-23', 'chiuwai9', '2003-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS594465880379', 'Joseph Baker', 0, '+86 10-963-5739', 2, '598714602467801236', 'No.1 building, 246 West Chang''an Avenue, Xicheng District, Beijing, China', '1989-08-05', 0, 0, 'jbaker6', '2001-05-03', 'baker10', '2019-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS179614636473', '江家明', 1, '+44 5241 815799', 4, '399414248720951201', 'Flat 6, 522 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1992-04-19', 0, 0, 'kamikong', '2000-02-17', 'kongkm', '2006-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS278657551297', '罗詩涵', 1, '+86 10-747-0627', 0, '222297823411140685', '中国北京市東城区東直門內大街301号34栋', '1986-12-29', 0, 0, 'shihan9', '2021-07-08', 'shihanluo', '2003-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS917279983160', 'Carrie Richardson', 1, '+81 11-086-3537', 3, '162215876987858022', '47F, 6-1-15, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1988-11-07', 0, 0, 'carrie9', '2005-12-06', 'carririchardson', '2009-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS956233965696', '姚安琪', 0, '+81 80-2866-9416', 2, '702037018009738369', '15-kai, 1-1-1 Deshiro, Nishinari Ward, Osaka, Japan', '1996-10-04', 0, 0, 'yaanqi1', '2014-05-27', 'anqi1', '2016-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS759582838959', '大塚瑛太', 0, '+86 179-8146-1551', 3, '118534612893141069', 'Room 24, 288 Dong Zhi Men, Dongcheng District, Beijing, China', '1986-05-01', 0, 0, 'eitaotsuk', '2008-03-09', 'oei', '2013-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS819726053447', '邵致远', 1, '+81 3-8437-2477', 1, '668269586012468545', '日本東京港区東新橋一丁目5番10号26階', '1990-05-01', 0, 0, 'zhishao', '2018-05-12', 'shazh', '2004-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS832379631623', '鄺小慧', 1, '+86 189-9740-2144', 1, '696126335177172902', '中国东莞东泰五街911号3栋', '1996-03-05', 0, 0, 'kwong88', '2019-10-05', 'siuwaikwon88', '2001-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS906979691187', '陳詩君', 0, '+81 70-7410-5948', 3, '955547009405224818', 'Rm. 30, 3-19-16 Shimizu, Kita Ward, Nagoya, Japan', '1986-08-04', 0, 0, 'szekwan5', '2009-04-25', 'szekwanchan', '2011-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS218594277673', '王惠妹', 1, '+81 90-0478-7073', 0, '793470375941682066', 'Rm. 1, 3 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-11-14', 0, 0, 'huimewong', '2004-09-16', 'hmwong', '2020-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS142067101977', 'Christopher Turner', 0, '+44 (20) 4962 4177', 1, '584853113311572923', 'No.24 Main building, 752 Maddox Street, London, W1S 1PU, United Kingdom', '1990-07-02', 0, 0, 'turchristopher08', '2006-08-06', 'christopherturner1002', '2005-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS357321147000', '小川聖子', 0, '+81 80-9449-9081', 3, '437912891089313889', 'Rm. 45, 1-6-8, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1990-09-20', 0, 0, 'seikoo', '2014-06-01', 'ogawas', '2000-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS587869876639', 'Justin Phillips', 0, '+86 166-2716-0862', 3, '973885529725747120', '46F, 75 Sanlitun Road, Chaoyang District, Beijing, China', '1989-06-10', 0, 0, 'phillj1029', '2012-05-18', 'philljustin930', '2009-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS333217689173', 'Betty Snyder', 1, '+1 213-145-2103', 2, '310634031588458323', '585 Sky Way Apartment 30, Los Angeles, CA 90043, United States', '1989-08-12', 0, 0, 'snyderbetty', '2012-06-23', 'sbetty911', '2014-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS403924860798', 'Amy Morris', 0, '+44 7788 554471', 3, '853130231882257888', 'Block 23, 846 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1997-02-14', 0, 0, 'morris42', '2008-02-28', 'mora', '2019-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS830030209012', 'Randy Bailey', 0, '+1 312-398-3319', 1, '460083771506351016', '343 Pedway Suite 1, Chicago, IL 60601, United States', '1992-08-07', 0, 0, 'bailerand03', '2015-06-10', 'baileyrandy107', '2011-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS034256826249', 'Tiffany Mcdonald', 0, '+86 181-4960-0114', 4, '850054415527140176', 'Room 44, 776 Tianhe Road, Tianhe District, Guangzhou, China', '1990-04-21', 0, 0, 'tiffany117', '2007-04-28', 'mcdonaldtiffany', '2009-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS519849696752', 'Gerald Phillips', 1, '+86 10-646-2633', 4, '116702886960349022', 'No.50 building, 399 028 County Rd, Yanqing District, Beijing, China', '1991-02-26', 0, 0, 'geraldph10', '2019-11-02', 'geraldp4', '2017-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS538664515630', '贺震南', 0, '+1 312-742-5911', 1, '236756049929271370', '605 Pedway Apartment 39, Chicago, IL 60601, United States', '1995-06-11', 0, 0, 'hezhennan', '2019-11-04', 'hezhennan', '2010-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS822947440482', '麥小慧', 0, '+81 80-7515-7120', 2, '605941324827980473', '日本ならし学園南三丁目9番10号39階', '1992-01-04', 0, 0, 'siuwaim3', '2001-05-25', 'siuwaima', '2022-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS682218993527', '金晓明', 1, '+81 90-5954-6799', 3, '427343382887055380', '日本おおさかし平野区加美東四丁目9番12号3階', '1994-11-06', 0, 0, 'xj7', '2005-05-04', 'jinx', '2011-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS719782440097', 'Andrew Hunter', 1, '+81 52-666-1402', 2, '318616099742755233', '日本なごやし守山区瀬古東二丁目171番7号29号室', '1985-07-03', 0, 0, 'hunterandr', '2012-07-04', 'hunteandrew', '2012-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS068489251757', 'Jason Brown', 1, '+44 5949 715751', 2, '148384324041863124', 'Block 30, 963 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1998-07-23', 0, 0, 'brown3', '2015-07-13', 'jbrown', '2012-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS968652378417', 'Leroy Gomez', 1, '+86 140-3839-1887', 1, '870736218673646152', 'Room 48, 446 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1998-02-06', 0, 0, 'lgo8', '2001-05-12', 'gleroy', '2011-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS971411122256', '宮崎紗良', 1, '+86 132-1374-4782', 2, '056558762647393078', '中国广州市白云区小坪东路815号32楼', '1991-03-28', 0, 0, 'misara', '2004-05-20', 'miyasa', '2014-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS190118892034', '王力申', 1, '+81 66-024-9551', 4, '163711011894352721', '日本おおさかし西成区天神ノ森二丁目1番15号7階', '1985-04-30', 0, 0, 'wonliksun9', '2000-06-13', 'liksunwong64', '2017-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS294362592149', 'Ruth Payne', 1, '+81 90-6615-1801', 1, '766473728793550883', '日本ならし西大寺赤田町一丁目7番13号41号室', '1997-06-17', 0, 0, 'payner1225', '2006-01-31', 'rpay', '2013-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS751928710673', '江志明', 0, '+44 (1223) 31 5373', 2, '694715154625616654', 'No.38 Main building, 554 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1993-10-29', 0, 0, 'cmk', '2018-09-29', 'cmkong', '2006-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS488921595147', '谷口愛梨', 0, '+81 66-060-6582', 2, '904665081156007149', '日本おおさかし近江堂一丁目7番11号43号室', '1985-02-28', 0, 0, 'taniguchia99', '2014-12-18', 'taniguchiairi610', '2011-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS098164938697', '孙宇宁', 0, '+86 10-8092-9232', 2, '304403727094417603', '中国北京市海淀区清河中街68号81号47室', '1998-01-23', 0, 0, 'ysun', '2009-09-10', 'yunsun', '2019-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS379658871387', '傅秀英', 1, '+86 21-7630-6627', 4, '929032243594512916', 'Room 14, 871 Middle Huaihai Road, Huangpu District, Shanghai, China', '1996-12-04', 0, 0, 'fuxiuying510', '2010-09-24', 'fux225', '2005-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS186921914606', '戴安琪', 0, '+81 52-041-4753', 2, '640001819729483447', '37-kai, 4 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1989-12-28', 0, 0, 'daia', '2018-06-15', 'anqida', '2018-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS296335733478', '羅德華', 0, '+1 718-641-1397', 3, '667925024148635068', '256 Columbia St Apartment 39, Brooklyn, NY 11231, United States', '1987-12-20', 0, 0, 'takwah4', '2010-07-14', 'lotakwah5', '2001-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS572013474050', '杜嘉欣', 1, '+86 10-0919-9870', 3, '989663606435891392', 'No.9 building, 174 Yueliu Rd, Fangshan District, Beijing, China', '1987-09-02', 0, 0, 'tokaryan', '2004-03-23', 'toky', '2014-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS798629768910', '山下桜', 1, '+86 143-6916-6384', 3, '595585662611841938', '中国深圳福田区景田东一街895号25楼', '1988-05-21', 0, 0, 'yamashitasakur', '2002-01-30', 'saky', '2010-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS766476698704', '餘慧儀', 0, '+81 52-040-2582', 4, '052013318726449662', 'Rm. 5, 3-19-20 Shimizu, Kita Ward, Nagoya, Japan', '1989-01-10', 0, 0, 'waiyeeyue7', '2021-04-24', 'waiyee914', '2014-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS964689967120', 'Jeremy Dunn', 1, '+81 11-633-5060', 1, '098742371920035485', '13F, 5-4-3 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-12-10', 0, 0, 'dunjer', '2021-05-21', 'dunjer1', '2014-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS401759791335', '姜岚', 0, '+81 70-7775-2224', 1, '722970159956708629', '19F, 2-1-14 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1992-11-28', 0, 0, 'lan119', '2013-11-16', 'lanjiang', '2018-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS788721733759', '史子异', 1, '+81 80-9452-3798', 0, '434866373993357567', '日本なごやし瑞穂区河岸町四丁目20番8号45階', '1993-04-07', 0, 0, 'ziyishi7', '2005-03-02', 'shiz5', '2016-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS108769645892', '傅富城', 1, '+1 838-870-9414', 2, '037495749371174902', '459 State Street 3rd Floor, Albany, NY 12203, United States', '1988-06-04', 0, 0, 'fushing1011', '2000-11-20', 'fufs', '2016-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS473122769261', 'Theresa Moore', 1, '+81 80-0256-1514', 1, '831167853896031966', '日本なごやし瑞穂区河岸町四丁目20番20号42号室', '1992-05-01', 0, 0, 'moortheresa', '2003-07-11', 'theresamoore', '2004-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS678307937744', '翁德華', 1, '+81 3-6704-8021', 3, '736851337783602419', '日本東京品川区東五反田五丁目2番8号17階', '1985-12-31', 0, 0, 'takwahyun1997', '2019-06-04', 'yungtakwah', '2017-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS652491078145', '魏睿', 0, '+1 718-636-5023', 1, '087196903783128869', '54 Flatbush Ave Apt 8, Brooklyn, NY 11225, United States', '1998-07-03', 0, 0, 'ruwe1', '2007-03-12', 'weir4', '2012-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS953526439339', '秦璐', 0, '+81 11-243-4480', 1, '893952386261310406', '日本札幌清田区真栄四条五丁目19番5号34階', '1988-12-05', 0, 0, 'luqin328', '2013-01-24', 'luqi713', '2009-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS045387829736', 'Debra Cole', 1, '+44 5729 553595', 3, '744376915238537134', 'Flat 26, 612 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1992-11-05', 0, 0, 'debraco', '2018-07-24', 'cole714', '2010-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS193696127623', '山崎光莉', 1, '+86 10-836-0312', 2, '220127098365611209', 'No.22 building, 434 Dong Zhi Men, Dongcheng District, Beijing, China', '1986-11-03', 0, 0, 'hikariyamazaki912', '2010-12-09', 'yahikari', '2018-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS619513294988', '陆宇宁', 1, '+86 182-9239-7856', 0, '124528782997015121', 'Room 6, CR Building, 10 Huanqu South Street 2nd Alley, Dongguan, China', '1994-10-28', 0, 0, 'yuninglu', '2012-01-23', 'yuninlu', '2019-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS955359087283', '伊藤和真', 1, '+81 70-8037-8745', 3, '940437661873863125', '日本なごやし北区清水三丁目19番5号28階', '1995-03-24', 0, 0, 'kazumaito', '2001-08-24', 'ito1', '2005-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS662644872338', '张嘉伦', 1, '+81 11-095-0473', 4, '605692338799482248', '日本札幌白石区菊水三条五丁目2番4号46号室', '1986-05-09', 0, 0, 'jialun823', '2006-05-09', 'jialun1952', '2010-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS193603748840', '胡安娜', 0, '+86 769-405-8413', 1, '254426114441319898', '中国东莞珊瑚路693号25室', '1995-05-21', 0, 0, 'wu47', '2012-02-17', 'wuonna3', '2010-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS552911700535', '徐嘉欣', 0, '+86 144-8247-7741', 3, '866966719162187595', '11F, 864 028 County Rd, Yanqing District, Beijing, China', '1993-01-17', 0, 0, 'karyan10', '2009-12-12', 'karyan9', '2012-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS509353365585', 'Gladys Garcia', 0, '+86 136-9157-2865', 1, '990262242414313774', '中国上海市闵行区宾川路807号华润大厦47室', '1998-07-10', 0, 0, 'ggladys', '2018-10-08', 'garcigladys1', '2016-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS058319346393', '伍霆鋒', 0, '+86 172-4258-1025', 2, '599868174485515083', '中国深圳罗湖区清水河一路317号华润大厦40室', '1997-07-07', 0, 0, 'tfng105', '2003-08-21', 'tfng811', '2018-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS900880194151', '成慧琳', 1, '+1 614-575-8135', 3, '699681465818217805', '633 East Alley Suite 20, Columbus, GA 43201, United States', '1997-12-28', 0, 0, 'shingwailam215', '2013-11-06', 'shing5', '2015-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS239749203072', '蔡秀英', 1, '+81 3-0555-4001', 2, '576780237974492987', '40F, 2-3-6 Yoyogi, Shibuya-ku, Tokyo, Japan', '1998-01-09', 0, 0, 'cxi6', '2013-08-14', 'cx1944', '2012-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS343385308670', '李玲玲', 0, '+44 5559 003393', 3, '111868912403015820', 'No.11 Main building, 355 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1997-01-23', 0, 0, 'leeli', '2007-07-11', 'lell', '2020-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS692403382801', '江秀英', 1, '+86 20-7805-8361', 1, '397527698118750829', 'Room 35, CR Building, 900 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1994-11-30', 0, 0, 'jiangxiuying', '2016-06-18', 'jiang614', '2017-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS313289520684', 'Nancy Hill', 0, '+86 755-6886-4510', 0, '469748992812115861', 'No.2 building, 997 Shennan Ave, Futian District, Shenzhen, China', '1992-03-01', 0, 0, 'nancyh6', '2018-07-11', 'nah8', '2014-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS474069129124', '袁潤發', 0, '+81 70-0848-1000', 4, '382750628123559769', 'Rm. 40, 6-1-5, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-11-05', 0, 0, 'yuenyf1983', '2009-03-06', 'yuen6', '2019-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS437806663208', '元青雲', 0, '+81 80-0025-9256', 0, '341796270875653263', '39F, 2-1-12 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-08-19', 0, 0, 'chingwan7', '2007-05-20', 'yuenchingwan10', '2005-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS157041435560', '村上一輝', 0, '+86 769-8520-9970', 0, '306758364840914970', 'Room 34, 650 Dongtai 5th St, Dongguan, China', '1989-05-30', 0, 0, 'mik', '2010-09-11', 'murakami1', '2003-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS251543575359', 'Mildred Salazar', 0, '+86 760-228-1699', 3, '082801297682151506', '中国中山天河区大信商圈大信南路329号华润大厦23室', '1994-08-02', 0, 0, 'salmildr07', '2018-08-09', 'salami', '2002-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS400727067651', 'Gladys Gonzales', 0, '+1 330-281-6834', 3, '929011280212737942', '319 Fern Street Suite 40, Akron, OH 44307, United States', '1988-08-08', 0, 0, 'gladys1225', '2018-05-07', 'gogla', '2011-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS123863685701', '韦云熙', 0, '+86 147-0370-9513', 0, '836513901011793859', '中国上海市闵行区宾川路32号25号楼', '1996-06-27', 0, 0, 'yunxiw', '2011-10-19', 'wei45', '2012-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS413351503694', '千葉陽菜', 0, '+1 330-345-8888', 4, '001065656843407976', '107 Collier Road Apartment 37, Akron, OH 44320, United States', '1990-10-02', 0, 0, 'chhina', '2013-08-28', 'chiba1', '2002-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS539607282769', '森田蒼士', 1, '+1 838-444-8510', 0, '440215519269495450', '997 Lark Street Apt 38, Albany, NY 12210, United States', '1993-01-22', 0, 0, 'aoshim', '2022-03-04', 'morita17', '2020-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS782005079498', 'Kyle Parker', 1, '+86 755-5125-1554', 0, '062429998266604545', '中国深圳福田区景田东一街739号18室', '1996-10-14', 0, 0, 'parker930', '2002-11-27', 'kylepar', '2020-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS180660842877', '苏宇宁', 1, '+86 161-8409-4114', 1, '774042041042288787', 'No.29 building, 796 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1997-09-15', 0, 0, 'ysu', '2017-01-02', 'suyuning1227', '2017-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS876038713544', 'Monica Mcdonald', 0, '+44 5386 014702', 2, '946967611990001216', 'No.19 Main building, 897 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1988-09-30', 0, 0, 'mcdonm', '2019-11-03', 'mm204', '2011-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS662676482257', 'Shirley Garza', 0, '+81 11-601-4581', 2, '729689721340399130', '25F, 2-1-6 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1998-07-19', 0, 0, 'garzas', '2018-03-09', 'sg1998', '2002-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS123425736982', '宣志遠', 1, '+81 90-5990-2701', 1, '060912077119791041', '日本おおさかし西成区天神ノ森二丁目1番16号10階', '1988-05-21', 0, 0, 'hsuanchiyuen', '2015-09-26', 'hsuan19', '2011-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS913161544968', '盧詩君', 0, '+81 66-976-3996', 3, '481022574156105773', '日本おおさかし東住吉区東田辺三丁目27番19号30号室', '1991-06-24', 0, 0, 'loszekwan', '2014-09-03', 'lo7', '2008-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS243364281706', 'Kathy Hunter', 1, '+81 80-9496-4580', 1, '658801102204768153', '30F, 1-7-19 Saidaiji Akodacho, Nara, Japan', '1986-02-24', 0, 0, 'hunter201', '2002-02-26', 'hunter8', '2000-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS911903194035', 'Michael King', 0, '+86 139-6549-3229', 1, '328173316737728927', '中国深圳福田区深南大道449号华润大厦47室', '1997-12-01', 0, 0, 'miking', '2020-02-01', 'micking', '2017-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS218920021402', '石田美咲', 0, '+1 312-369-3520', 2, '256578261170182754', '914 Rush Street Apt 14, Chicago, IL 60611, United States', '1995-06-24', 0, 0, 'imisa313', '2022-02-28', 'ishmi93', '2018-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS722643021792', '吕睿', 1, '+86 180-0616-9686', 3, '032488404087202245', 'No.11 building, 547 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1999-03-04', 0, 0, 'lrui10', '2020-06-16', 'ruilu', '2014-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS397612047067', '毛云熙', 0, '+44 7458 409831', 3, '155365180580898449', 'Unit 20, Oxford Eco Centre, 772 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1988-08-20', 0, 0, 'yunxi74', '2000-01-04', 'maoy', '2010-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS225709855103', '任安琪', 1, '+44 (1865) 69 5558', 0, '517323805863736866', 'Flat 4, 571 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1990-01-07', 0, 0, 'aren117', '2021-07-06', 'rena6', '2008-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS513288603194', '池田美羽', 0, '+86 181-2222-3248', 1, '597976494374893070', '中国深圳龙岗区布吉镇西环路723号17楼', '1990-09-22', 0, 0, 'mikeda', '2007-04-08', 'im127', '2003-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS670818235523', '許詠詩', 1, '+86 760-5170-1572', 1, '304048481338000439', '中国中山天河区大信商圈大信南路444号2室', '1988-02-15', 0, 0, 'huiwingsze', '2011-05-10', 'wingsze630', '2004-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS441431600576', '鄧發', 1, '+81 70-1934-2709', 1, '138517911511456539', '日本東京渋谷区代々木二丁目3番10号11階', '1993-02-11', 0, 0, 'fat2', '2001-05-20', 'fat41', '2021-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS208430604713', '白祖兒', 0, '+81 3-2056-4579', 1, '521833853408134599', '13-kai, 1-5-17, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1992-03-26', 0, 0, 'cyp1974', '2009-10-26', 'cypak927', '2002-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS301237636827', 'Dorothy Gutierrez', 0, '+81 80-5311-5003', 3, '452689997939097300', 'Rm. 4, 1-5-10, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1999-01-23', 0, 0, 'gdo', '2011-01-07', 'dorothygut76', '2019-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS559714170105', '中森葵', 1, '+1 330-165-7150', 0, '853538448524712168', '427 Collier Road Apartment 14, Akron, OH 44320, United States', '1993-02-19', 0, 0, 'nakamoriaoi', '2020-09-25', 'aoinakamori7', '2008-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS547506080809', '黎子韬', 0, '+86 10-730-1661', 0, '926031694501542679', 'Room 29, CR Building, 598 East Wangfujing Street, Dongcheng District , Beijing, China', '1990-05-09', 0, 0, 'zitaoli', '2013-02-24', 'zil', '2007-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS142588603348', '曾國明', 0, '+81 70-1434-0173', 0, '321376071107011696', '48-kai, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1987-06-27', 0, 0, 'tsang44', '2003-01-31', 'tkwokming97', '2007-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS291383448490', '胡德華', 1, '+86 755-7216-9877', 4, '802957995006114103', '中国深圳罗湖区蔡屋围深南东路428号24室', '1995-05-06', 0, 0, 'takwahwu6', '2018-07-21', 'wutakwah9', '2000-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS590929969591', '張富城', 1, '+86 152-7384-5458', 1, '374217016114018030', '中国中山京华商圈华夏街715号10室', '1990-03-03', 0, 0, 'cfs327', '2002-10-15', 'fscheung', '2018-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS366432417763', '樂國明', 0, '+81 66-560-0123', 3, '477735243627046281', '日本おおさかし近江堂一丁目7番17号26号室', '1991-11-16', 0, 0, 'kwoklok', '2005-10-01', 'kwokmingl', '2009-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS539317239565', '容德華', 1, '+86 154-1160-8067', 3, '957974555742158829', 'No.23 building, 852 Binchuan Rd, Minhang District, Shanghai, China', '1998-06-19', 0, 0, 'takwahyung', '2012-09-16', 'takwahyu6', '2003-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS470785843732', '丁云熙', 1, '+81 90-8286-0590', 2, '347758686117646521', '44F, 5-4-14 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1995-08-25', 0, 0, 'yunxiding120', '2001-01-18', 'yuding', '2015-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS745769185702', '谷口愛梨', 0, '+86 137-9668-8303', 3, '641226873839651367', '中国深圳罗湖区蔡屋围深南东路809号华润大厦8室', '1988-10-07', 0, 0, 'taniguchiairi81', '2001-11-01', 'taniairi', '2002-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS509261008230', '毛頴思', 1, '+81 70-8369-0980', 1, '114430767071488304', 'Rm. 48, 13-3-12 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1986-04-03', 0, 0, 'wingszem', '2015-01-04', 'mows2', '2014-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS211988768845', '文力申', 1, '+86 138-6813-6439', 1, '114650889247098464', 'Room 22, 521 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1986-05-18', 0, 0, 'maliksun', '2004-04-27', 'liksunman4', '2006-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS457846418980', '中山大輔', 0, '+1 614-042-1088', 0, '856147726893889694', '500 Tremont Road Apartment 5, Columbus, GA 43212, United States', '1996-06-04', 0, 0, 'nakad', '2002-11-21', 'dainakayama1', '2018-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS379692996014', '苗嘉欣', 1, '+86 10-9581-1719', 0, '177566868179934156', '中国北京市东城区东单王府井东街19号22栋', '1985-05-19', 0, 0, 'miky', '2019-10-01', 'karyanmiu1', '2016-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS383329128080', '韩睿', 1, '+86 157-9187-0290', 3, '262584813651357885', '中国深圳龙岗区布吉镇西环路339号49号楼', '1997-04-12', 0, 0, 'ruihan', '2014-09-02', 'ruihan19', '2008-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS475238889517', '苑小慧', 1, '+81 90-1286-7688', 0, '450575390367316967', 'Rm. 49, 5-2-17 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-01-23', 0, 0, 'yuensw', '2014-05-23', 'yuensiuwai', '2019-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS221378819667', '楊國權', 0, '+86 21-4777-0689', 3, '266226391673621035', 'No.22 building, 206 Ganlan Rd, Pudong, Shanghai, China', '1986-08-04', 0, 0, 'ykk', '2020-10-27', 'yekk912', '2001-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS936006962629', '金晓明', 1, '+44 5115 801826', 1, '878385447447552402', 'No.1 Main building, 470 Hanover Street, London, W1S 1YD, United Kingdom', '1986-03-18', 0, 0, 'jxiaoming2', '2018-11-01', 'xiaoming6', '2010-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS797504310960', '贾璐', 1, '+44 (151) 986 0495', 3, '876062746301419507', 'Block 16, 798 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-12-26', 0, 0, 'jia00', '2019-12-20', 'jialu', '2002-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS076051394360', '前田結翔', 1, '+44 5668 160744', 4, '588560275191095442', 'Unit 19, Oxford Eco Centre, 27 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1992-09-25', 0, 0, 'yumaeda920', '2018-01-17', 'maeyui1', '2008-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS761654603068', '姚潤發', 1, '+86 194-4643-4880', 1, '792074385012350499', 'No.13 building, 53 028 County Rd, Yanqing District, Beijing, China', '1994-10-05', 0, 0, 'yeow5', '2003-03-14', 'yyf50', '2000-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS776560695227', '吉田和真', 1, '+86 148-7007-6655', 1, '733957681600387348', '中国深圳福田区深南大道100号27楼', '1995-01-13', 0, 0, 'yoshida620', '2003-04-21', 'yoshidakazuma74', '2002-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS519975670796', 'Pauline Campbell', 1, '+81 70-2609-4245', 1, '564861285790648519', '1F, 5-19-7 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-08-05', 0, 0, 'campbell4', '2004-07-31', 'campbpauline', '2018-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS166051836548', '阎岚', 0, '+86 20-6366-9932', 4, '869323979626373574', '中国广州市白云区机场路棠苑街五巷551号41栋', '1988-06-26', 0, 0, 'lyan2', '2018-03-01', 'yanla', '2001-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS370838965914', '许睿', 0, '+81 66-131-1383', 1, '159263951263459239', 'Rm. 28, 4-9-1 Kamihigashi, Hirano Ward, Osaka, Japan', '1997-11-08', 0, 0, 'rui1231', '2001-09-21', 'xrui', '2000-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS424213015078', '曾嘉伦', 1, '+1 330-146-6321', 2, '486844059812936764', '726 Collier Road Suite 27, Akron, OH 44320, United States', '1996-07-27', 0, 0, 'zeng42', '2009-11-29', 'jz4', '2013-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS054069287641', '島田涼太', 1, '+44 7982 121896', 0, '470900987447335988', 'No.36 Main building, 916 Park End St, Oxford, OX1 1JD, United Kingdom', '1989-04-17', 0, 0, 'shimadary', '2016-01-14', 'shr1967', '2019-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS370769405235', '藤原聖子', 0, '+81 52-159-5784', 1, '229719673054811983', '36-kai, 2-5-11 Chitose, Atsuta Ward, Nagoya, Japan', '1985-06-27', 0, 0, 'seikofujiwara', '2012-04-29', 'fujiseiko2', '2003-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS002144330703', '藍心穎', 0, '+86 10-088-2221', 4, '277068540953372156', '中国北京市西城区西長安街393号华润大厦2室', '1997-10-21', 0, 0, 'sumwinglam', '2000-06-08', 'swla8', '2005-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS246120218069', 'Ethel Boyd', 1, '+86 180-5464-9411', 0, '429880606192315226', '中国深圳福田区深南大道430号1楼', '1998-02-22', 0, 0, 'etheb', '2016-07-16', 'etheboyd', '2010-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS862746443305', '梁永發', 0, '+81 90-3050-7243', 2, '270913102782067824', '50-kai, 7 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-03-10', 0, 0, 'leungwingf1', '2019-10-14', 'leungwingfat', '2014-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS794827364261', 'Larry Dunn', 1, '+86 20-8645-4535', 3, '166003285639129775', 'No.47 building, 687 Jiangnan West Road, Haizhu District, Guangzhou, China', '1999-02-09', 0, 0, 'larrydunn', '2021-05-30', 'dunn9', '2003-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS926642272121', '田云熙', 1, '+86 130-2335-0500', 3, '333373654854983227', '中国广州市天河区天河路502号华润大厦8室', '1985-03-11', 0, 0, 'tian2008', '2009-03-08', 'tyunxi10', '2010-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS113240006940', '杜梓軒', 0, '+1 213-124-4491', 1, '934393569746717785', '366 Sky Way Suite 36, Los Angeles, CA 90043, United States', '1991-10-03', 0, 0, 'totszhin1993', '2018-08-06', 'thto4', '2016-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS495978671439', '邓岚', 0, '+81 74-822-9922', 0, '044286941160079701', '29-kai, 3 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1992-11-18', 0, 0, 'deng8', '2003-05-21', 'land', '2007-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS985071060914', 'Edward Daniels', 1, '+81 11-114-0143', 1, '457453775120557376', 'Rm. 22, 5-19-3 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1989-12-01', 0, 0, 'eddaniels1940', '2010-11-21', 'eddaniels', '2009-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS821508914697', '姜家輝', 1, '+81 70-8550-2498', 3, '870929459418754015', '日本なごやし北区楠味鋺三丁目80番2号23号室', '1991-10-15', 0, 0, 'changkf', '2016-10-16', 'ckf7', '2011-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS060854791778', '菅原結翔', 0, '+81 70-5190-0010', 3, '141823433568046807', '45F, 5-2-3 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-10-03', 0, 0, 'sugawara123', '2007-12-03', 'yuito51', '2016-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS719387349896', '杜子异', 0, '+1 330-786-9062', 1, '132507440252066519', '44 Fern Street Suite 13, Akron, OH 44307, United States', '1991-09-01', 0, 0, 'duziyi1944', '2021-04-29', 'ziyi9', '2016-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS551226114002', 'Monica West', 0, '+1 838-761-0531', 2, '397736937245179272', '990 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1993-08-21', 0, 0, 'wem3', '2012-02-26', 'monwes', '2007-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS354696542194', 'Edith James', 1, '+44 (161) 295 4385', 4, '117930137754145623', 'No.20 Main building, 589 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1987-05-22', 0, 0, 'edithjam10', '2014-09-09', 'edithjames', '2011-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS979391010989', '斎藤蓮', 1, '+86 28-9389-4880', 2, '798922977525170102', 'Room 50, CR Building, No. 110, Shuangqing Rd, Chenghua District, Chengdu, China', '1989-04-02', 0, 0, 'rensaito106', '2010-04-14', 'saren429', '2005-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS261649497753', '邵慧琳', 1, '+86 162-8426-4459', 2, '372978114478145177', '32F, 171 Jingtian East 1st St, Futian District, Shenzhen, China', '1990-12-16', 0, 0, 'siuwl', '2019-04-03', 'wailam503', '2018-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS822811487182', '彭璐', 0, '+44 (151) 341 4246', 2, '096301992543191131', 'Block 44, 301 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1988-01-29', 0, 0, 'lupe69', '2019-10-12', 'pl1212', '2016-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS163276293771', 'Linda Mitchell', 1, '+44 7176 088803', 1, '828774615937328282', 'Block 32, 903 Mosley St, Manchester, M2 3AQ, United Kingdom', '1993-02-05', 0, 0, 'linmitc325', '2000-09-18', 'mitlinda', '2016-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS417634183883', '橋本美咲', 1, '+81 74-353-4876', 4, '848404326111774416', '26-kai, 1-7-11 Saidaiji Akodacho, Nara, Japan', '1985-12-19', 0, 0, 'hashmisa', '2008-10-28', 'hashimotomisa', '2019-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS684943766497', 'Justin Hill', 0, '+44 5496 588926', 2, '092339105854648375', 'No.11 Main building, 680 Hanover Street, London, W1S 1YD, United Kingdom', '1991-03-21', 0, 0, 'hill2013', '2019-05-04', 'hillj', '2020-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS230780932877', '黎家輝', 0, '+44 7959 843402', 1, '905204631031993778', 'Flat 10, 780 Park End St, Oxford, OX1 1JD, United Kingdom', '1986-09-29', 0, 0, 'laikf520', '2005-09-07', 'kafail49', '2010-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS489552895892', '溫志遠', 0, '+81 80-2062-0457', 1, '790386002914484307', '50-kai, 5-2-16 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1986-09-11', 0, 0, 'chiyuenwa', '2008-02-19', 'wacy', '2003-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS337802817564', '高家文', 1, '+44 (121) 480 6364', 2, '874483704669354928', 'Unit 30, Oxford Eco Centre, 910 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1992-12-26', 0, 0, 'kaokaman86', '2014-09-11', 'kkm1951', '2002-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS760541089215', '田村愛梨', 1, '+81 74-458-4095', 0, '060495899242999427', '日本ならし大和郡山市本庄町一丁目1番19号12階', '1991-12-19', 0, 0, 'airtamura', '2014-02-14', 'airi1', '2007-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS928637416391', '韩璐', 1, '+81 80-7576-4970', 0, '575339062138769465', '日本なごやし瑞穂区河岸町四丁目20番3号21階', '1986-03-20', 0, 0, 'lhan14', '2018-12-02', 'hanlu', '2007-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS771866301700', 'Carlos Kim', 0, '+44 (116) 990 1786', 1, '059027866935233728', 'Unit 3, Oxford Eco Centre, 732 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-11-11', 0, 0, 'carlokim322', '2017-01-22', 'cki1011', '2019-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS875497217943', '余安琪', 1, '+86 28-752-6433', 2, '501201149286512872', '中国成都市成华区双庆路564号华润大厦40室', '1995-12-29', 0, 0, 'anqiyu514', '2011-10-24', 'yuanqi', '2008-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS390048395170', '安藤大輔', 1, '+1 212-318-8037', 1, '044555809003303115', '893 Wooster Street 3rd Floor, New York, NY 10012, United States', '1992-02-09', 0, 0, 'andoda', '2011-01-06', 'daisuando', '2018-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS777211664620', '毛安琪', 1, '+81 3-2190-2382', 4, '822542473243767292', '日本東京中央区銀座三丁目12番9号6階', '1993-05-03', 0, 0, 'maoa418', '2008-08-10', 'anqimao', '2008-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS151620324953', '鐘慧琳', 0, '+81 70-7293-5521', 2, '095580307572899741', '日本ならし大和郡山市本庄町一丁目1番20号29階', '1986-07-23', 0, 0, 'chung10', '2007-09-16', 'wailam815', '2001-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS158277192135', 'Debbie Morris', 1, '+81 52-112-7249', 3, '174238221613390752', '日本なごやし北区楠味鋺三丁目80番13号49号室', '1986-01-07', 0, 0, 'morde', '2013-07-20', 'morris1209', '2005-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS069368153336', '李嘉伦', 0, '+86 161-7566-2930', 4, '066099156600517628', 'No.50 building, 162 Dongtai 5th St, Dongguan, China', '1994-10-07', 0, 0, 'jialunli1980', '2020-02-23', 'jialunli', '2015-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS745419434428', '許玲玲', 1, '+86 28-2564-9261', 2, '267864132603360589', 'No.34 building, No. 466, Shuangqing Rd, Chenghua District, Chengdu, China', '1999-03-04', 0, 0, 'huill329', '2001-02-26', 'huilingling517', '2013-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS891917529499', '中島悠人', 0, '+86 145-1159-0235', 2, '789974530614387662', '中国深圳罗湖区田贝一路475号32号楼', '1990-04-14', 0, 0, 'yutona', '2010-04-06', 'nakajima3', '2020-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS902155851356', 'Bradley Turner', 0, '+81 66-626-0254', 2, '198289508138274402', '日本おおさかし西成区出城一丁目1番9号7階', '1998-01-05', 0, 0, 'turnbradley928', '2018-04-10', 'turnerb', '2001-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS290916687582', '宮崎一輝', 0, '+86 769-7800-8864', 0, '867272727726711695', '47F, 962 Kengmei 15th Alley, Dongguan, China', '1993-03-31', 0, 0, 'miyazakiikki4', '2004-12-19', 'miyazaki1', '2013-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS089239710519', 'Howard King', 1, '+81 70-4022-0702', 2, '898073386166953131', '3F, 2-1-7 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-04-29', 0, 0, 'hkin', '2002-08-28', 'khoward5', '2003-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS894769899449', 'Jacob Thompson', 0, '+81 74-581-5955', 1, '158436691955693380', '日本ならし大和郡山市本庄町一丁目1番8号32階', '1995-03-27', 0, 0, 'jacob73', '2011-02-02', 'thompsonj', '2001-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS108605936798', '青木架純', 0, '+81 80-0059-7605', 1, '682460809839713777', '7F, 5-2-16 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1989-07-09', 0, 0, 'aokik60', '2010-08-10', 'aokikasumi', '2018-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS368170191048', '加藤葉月', 0, '+1 213-257-8347', 2, '471880880962305586', '384 S Broadway Apartment 2, Los Angeles, CA 90015, United States', '1991-06-30', 0, 0, 'hazukikato82', '2009-06-02', 'katohazuki', '2018-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS051785719987', '苗家明', 0, '+81 3-6770-7932', 0, '682346283294187490', '30F, 1-6-20, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-03-25', 0, 0, 'kmm218', '2013-01-22', 'miukm', '2011-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS415017280495', '彭國榮', 1, '+86 10-894-9736', 2, '775536447381774512', 'No.42 building, 815 East Wangfujing Street, Dongcheng District , Beijing, China', '1988-08-28', 0, 0, 'pankwokw', '2014-09-02', 'pkw', '2016-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS958377409207', '沈致远', 0, '+1 330-248-3324', 1, '453137487019701693', '488 Ridgewood Road Apartment 9, Akron, OH 44321, United States', '1999-01-29', 0, 0, 'zshen7', '2021-06-22', 'shen708', '2002-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS606762556907', '许嘉伦', 1, '+44 5663 248470', 2, '409226938429923801', 'No.22 Main building, 370 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1996-12-22', 0, 0, 'xjialu', '2008-01-02', 'xujialun41', '2007-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS999717442519', '萬頴璇', 0, '+86 198-6545-5807', 2, '470753795458419490', '中国广州市白云区小坪东路184号4栋', '1990-10-12', 0, 0, 'wsmeng', '2014-11-18', 'mengwingsuen13', '2012-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS137025381208', '江子异', 1, '+86 755-266-3822', 3, '819378889214134441', '中国深圳罗湖区田贝一路394号48栋', '1986-09-17', 0, 0, 'jiangz907', '2001-10-15', 'ziyiji', '2005-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS194945678755', '藍思妤', 1, '+86 28-9833-7226', 1, '317190608144616903', 'Room 1, No. 586, Shuangqing Rd, Chenghua District, Chengdu, China', '1987-05-12', 0, 0, 'szeyu1941', '2016-01-23', 'lam10', '2017-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS376929147520', '鈴木涼太', 1, '+81 80-1147-6053', 3, '966159802115323863', '日本なごやし北区楠味鋺三丁目80番14号39階', '1994-07-17', 0, 0, 'suzuki7', '2008-01-24', 'ryotsu', '2020-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS794447479713', '韩杰宏', 0, '+44 5352 439867', 4, '353922202460815533', 'Block 14, 215 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-03-19', 0, 0, 'hanjieho60', '2005-05-01', 'jiehonghan', '2003-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS573435136621', '岡田葉月', 0, '+86 185-0130-7473', 4, '712228013312511694', '中国北京市朝阳区三里屯路430号8号楼', '1998-01-03', 0, 0, 'okada918', '2015-08-29', 'hazok', '2013-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS583266990695', '潘詩涵', 0, '+81 11-020-0904', 1, '537671389235936316', 'Rm. 7, 6-1-9, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1995-05-12', 0, 0, 'shipan1216', '2000-07-17', 'shihanpan', '2015-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS284823293189', '錢思妤', 0, '+86 149-9615-3873', 1, '656044522182201313', '中国成都市成华区双庆路807号24栋', '1992-12-21', 0, 0, 'szeyu1947', '2017-03-21', 'cszeyu', '2014-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS865822812364', '龚云熙', 0, '+81 90-7391-2143', 1, '540373495115600205', '日本東京千代田区丸の内一丁目6番13号37号室', '1994-01-26', 0, 0, 'yunxigong6', '2021-08-22', 'gong4', '2004-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS271883783445', '范璐', 1, '+81 11-860-9736', 1, '407390145682884597', '3-kai, 5-2-15 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1998-11-28', 0, 0, 'flu', '2003-04-04', 'fanl', '2021-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS605365968122', '尹家輝', 1, '+81 3-1676-3575', 3, '323945197927475517', '25F, 1-5-13, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1989-09-18', 0, 0, 'yikafai', '2021-11-12', 'ykf', '2010-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS747949229012', '姚杰宏', 0, '+86 151-5686-6932', 0, '173339861308464689', '中国广州市越秀区中山二路488号28室', '1994-09-08', 0, 0, 'jiehyao3', '2000-10-16', 'jiehyao', '2016-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS359368555649', 'Frances Romero', 0, '+44 7603 452094', 4, '712522617620240115', 'Block 2, 470 Mosley St, Manchester, M2 3AQ, United Kingdom', '1994-12-19', 0, 0, 'franromero', '2016-02-22', 'rfrances', '2004-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS994363956079', '江小慧', 1, '+1 838-115-1233', 1, '812016329707528074', '259 Central Avenue Apt 36, Albany, NY 12205, United States', '1998-05-15', 0, 0, 'kong57', '2006-06-17', 'ksw', '2020-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS532505150363', 'Grace Mcdonald', 0, '+86 28-580-0859', 3, '243138611290656967', 'No.14 building, 773 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1989-08-31', 0, 0, 'gracemcdonald1966', '2008-10-11', 'mcdong', '2012-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS278474046662', 'Carolyn Soto', 0, '+81 80-3362-0076', 2, '998042220683863449', 'Rm. 21, 1-7-5 Omido, Higashiosaka, Osaka, Japan', '1985-06-06', 0, 0, 'soc1129', '2018-06-25', 'sotocarolyn1970', '2008-02-29'); +INSERT INTO "public"."userinfo" VALUES ('TS223599248345', '姚慧敏', 1, '+86 755-7430-8515', 2, '965373966287459973', '中国深圳福田区景田东一街726号15号楼', '1992-02-18', 0, 0, 'waimanyeow68', '2015-11-03', 'waimaye1227', '2010-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS287425349930', '杜仲賢', 1, '+81 11-357-9629', 3, '638614805526976216', '日本札幌中央区宮の森四条六丁目1番10号5階', '1994-04-09', 0, 0, 'chungyin101', '2010-05-15', 'cyto6', '2019-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS800190742006', 'Douglas Cox', 1, '+81 90-4390-7145', 1, '689205602899291669', '日本おおさかし西成区天神ノ森二丁目1番19号20階', '1995-08-30', 0, 0, 'coxdoug', '2011-10-16', 'dougc', '2009-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS203669512041', '顧詠詩', 0, '+86 10-355-1869', 4, '126852203474139239', '中国北京市海淀区清河中街68号587号45室', '1992-09-13', 0, 0, 'kuws1103', '2000-12-12', 'kws1', '2002-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS389046442831', '陆子异', 0, '+86 183-9685-7323', 1, '252675138717812788', '中国上海市闵行区宾川路587号30号楼', '1985-06-22', 0, 0, 'luziyi', '2021-06-01', 'ziyilu116', '2000-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS440702259887', 'Julia Hawkins', 1, '+81 70-8244-2572', 4, '694555827145301627', '49-kai, 5-2-9 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-04-23', 0, 0, 'hjuli7', '2012-02-26', 'julia2002', '2009-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS090052703740', '丁晓明', 1, '+81 74-582-8757', 0, '543724398579332866', '19F, 19 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-05-07', 0, 0, 'xiaoming2', '2010-05-01', 'xiaoming831', '2017-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS610896554340', '严璐', 0, '+86 28-482-9548', 3, '255080690027171344', '中国成都市成华区二仙桥东三路476号8室', '1985-01-19', 0, 0, 'ylu', '2001-10-01', 'yan5', '2003-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS306481504898', 'Christopher Rogers', 0, '+81 11-435-0874', 3, '499063580567244785', 'Rm. 30, 6-1-7, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1988-06-11', 0, 0, 'christopherrogers04', '2006-04-09', 'rch99', '2014-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS367066760222', '今井葉月', 1, '+81 3-9150-0254', 1, '324423434118189198', 'Rm. 45, 5-2-6 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-04-26', 0, 0, 'imaihazuki', '2018-08-02', 'ihaz79', '2005-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS451035802190', 'Julie Hamilton', 1, '+44 7504 094061', 3, '008995102974354617', 'Flat 39, 747 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1995-11-11', 0, 0, 'jhamilton1230', '2004-11-30', 'julie6', '2006-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS423866144754', '小山蓮', 1, '+81 74-388-0033', 3, '911502137137921200', '日本ならし大和郡山市本庄町一丁目1番14号8号室', '1989-04-18', 0, 0, 'renkoyama3', '2001-04-09', 'kre17', '2011-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS417800081663', '林紗良', 0, '+86 192-9129-5151', 2, '417576125701743744', 'Room 48, CR Building, 659 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1990-04-11', 0, 0, 'sara1948', '2012-10-07', 'hasa', '2000-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS070249439026', 'Hazel Coleman', 0, '+1 213-794-5803', 0, '006618819448765076', '194 Wall Street Apt 10, Los Angeles, CA 90003, United States', '1998-03-26', 0, 0, 'hazelcoleman', '2020-10-28', 'hazelcolem07', '2004-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS403235521461', '藤仲賢', 1, '+81 80-0014-7513', 1, '294886103786748165', 'Rm. 36, 6 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1995-05-09', 0, 0, 'tcy208', '2007-01-01', 'chta', '2021-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS768505445805', 'Joel Flores', 1, '+81 66-332-0671', 0, '660525815694438045', '日本おおさかし近江堂一丁目7番7号6階', '1998-05-08', 0, 0, 'fljoel', '2006-08-13', 'floj', '2015-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS582602991483', '周嘉欣', 0, '+44 (116) 862 4327', 0, '216563646322348334', 'Unit 1, Oxford Eco Centre, 812 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1985-03-03', 0, 0, 'karyan6', '2003-07-07', 'kycho7', '2012-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS469118729031', '王富城', 1, '+81 11-981-2400', 0, '603513074104962099', '日本札幌清田区真栄四条五丁目19番15号38階', '1988-12-02', 0, 0, 'fushingwong3', '2019-08-01', 'wong48', '2003-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS623409801736', '杨宇宁', 1, '+81 11-446-1973', 1, '247643603699200572', '日本札幌清田区真栄四条五丁目19番20号29号室', '1988-04-17', 0, 0, 'yyuning', '2017-10-09', 'yany', '2009-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS126249275766', '汪小慧', 0, '+81 66-906-9898', 2, '836968569242086209', '日本おおさかし西成区天神ノ森二丁目1番20号4号室', '1986-07-13', 0, 0, 'swwong926', '2014-11-28', 'siuwaiwong', '2002-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS683715095332', 'Nathan Russell', 0, '+86 760-9926-7845', 3, '762191339321238003', '中国中山乐丰六路337号33栋', '1995-09-28', 0, 0, 'nar2007', '2003-04-12', 'nathan53', '2002-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS276615485686', 'Diana Kim', 1, '+81 80-8773-9698', 2, '465048677932969617', '10-kai, 1-1-10 Deshiro, Nishinari Ward, Osaka, Japan', '1995-12-18', 0, 0, 'dianaki7', '2012-10-15', 'kidiana', '2004-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS334479368503', '丁宇宁', 1, '+86 28-2784-0850', 3, '893180214888287143', '中国成都市成华区二仙桥东三路380号华润大厦4室', '1986-02-14', 0, 0, 'dingyuning', '2003-01-09', 'yd223', '2015-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS300507533654', '菅原光莉', 0, '+1 330-601-2149', 4, '752521634074012946', '343 Ridgewood Road Apartment 40, Akron, OH 44321, United States', '1990-07-30', 0, 0, 'sugawarahikari10', '2004-03-13', 'suhikari', '2002-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS800896979467', 'Nancy Roberts', 0, '+86 28-200-7908', 2, '849552563925530341', '中国成都市成华区玉双路6号229号47栋', '1992-08-01', 0, 0, 'nancyro', '2012-03-28', 'robenanc', '2013-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS592834771881', '郭震南', 1, '+1 213-490-5558', 2, '378490951817037634', '553 Figueroa Street Apt 32, Los Angeles, CA 90037, United States', '1997-11-30', 0, 0, 'guzhennan', '2010-06-10', 'guozhen', '2005-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS282448768050', 'Doris Turner', 1, '+44 (151) 841 8576', 3, '799050232612844008', 'Flat 30, 696 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1986-12-17', 0, 0, 'turndoris2', '2001-12-23', 'tdoris', '2008-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS673297668565', '應思妤', 1, '+86 158-9782-6266', 3, '095156779381496917', 'Room 26, CR Building, 472 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1994-11-01', 0, 0, 'szeyuying', '2003-12-02', 'ying1230', '2004-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS648878219678', '王子韬', 1, '+44 7299 302745', 4, '114524688753187235', 'No.17 Main building, 768 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1987-11-16', 0, 0, 'wangzitao', '2020-04-20', 'wangzitao', '2003-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS608214871824', '蕭志明', 1, '+81 11-871-9778', 4, '908163497385842193', '日本札幌厚別区上野幌一条二丁目1番6号39階', '1998-02-23', 0, 0, 'siuchiming2', '2011-04-24', 'chimingsiu415', '2015-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS847478486236', '呂頴璇', 1, '+81 80-1720-8560', 1, '069463615427591222', '日本東京中央区銀座三丁目12番16号42階', '1990-07-17', 0, 0, 'wsl', '2002-11-02', 'wingsuenl', '2011-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS503981447782', '卢岚', 1, '+1 212-278-4322', 1, '624958404242839186', '447 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1993-07-14', 0, 0, 'lulan', '2003-01-08', 'lan1118', '2021-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS770022946663', 'Donald Sanders', 0, '+81 70-6244-3968', 3, '020341197939038502', '日本なごやし守山区瀬古東二丁目171番4号21階', '1990-10-07', 0, 0, 'donsanders1019', '2001-07-14', 'sanders913', '2014-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS082718325860', 'Nancy Mendez', 0, '+81 11-130-6263', 2, '521594038099118134', '日本札幌厚別区上野幌一条二丁目1番13号4号室', '1993-10-10', 0, 0, 'mendez6', '2008-06-03', 'mn413', '2016-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS625906599999', '傅裕玲', 0, '+81 90-8743-5530', 1, '464245683506724497', 'Rm. 42, 3-19-14 Shimizu, Kita Ward, Nagoya, Japan', '1987-11-04', 0, 0, 'fuyu', '2006-06-26', 'ylfu69', '2021-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS375569851141', '傅璐', 0, '+44 7954 850634', 1, '325163422579491175', 'Unit 12, Oxford Eco Centre, 307 Sackville St, Manchester, M1 3BB, United Kingdom', '1996-12-14', 0, 0, 'fulu', '2018-09-11', 'lfu', '2006-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS851496031785', '萧子异', 0, '+44 7055 953396', 1, '295380330639647445', 'Flat 8, 394 Hanover St, Liverpool, L1 4AF, United Kingdom', '1990-12-24', 0, 0, 'ziyix530', '2017-09-22', 'xiaoz', '2011-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS665171583317', 'Juanita Perry', 1, '+86 149-9393-9916', 2, '941436034407526901', 'No.23 building, 938 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1987-10-08', 0, 0, 'jperry', '2008-12-18', 'perryj', '2009-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS205542705415', 'Glenn Anderson', 1, '+1 312-216-1535', 1, '717237958794779889', '563 North Michigan Ave Apartment 28, Chicago, IL 60611, United States', '1986-06-23', 0, 0, 'andersonglen', '2012-11-26', 'andglenn', '2013-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS126603531474', 'Marilyn Wallace', 0, '+1 330-436-0489', 1, '004706578039181380', '186 Collier Road Suite 29, Akron, OH 44320, United States', '1992-12-02', 0, 0, 'marilynwa801', '2017-03-28', 'mawal1', '2007-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS783567798711', '岩崎大地', 0, '+86 178-4055-9073', 3, '941203125128630067', '8F, 522 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1991-02-17', 0, 0, 'daichii2019', '2019-03-07', 'iwasadaichi', '2003-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS005170753711', '韦震南', 1, '+86 182-2041-0747', 2, '550945188648876542', 'No.37 building, 162 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1998-04-08', 0, 0, 'wezh', '2004-06-08', 'zhenw', '2011-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS273687513558', '唐子异', 0, '+81 66-160-1533', 0, '177009992534773905', 'Rm. 31, 3-27-3 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1985-01-17', 0, 0, 'zta508', '2009-05-20', 'tangz', '2016-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS051745258837', '中山陽太', 1, '+44 (116) 306 4169', 4, '766563369751994731', 'Block 20, 626 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1995-10-03', 0, 0, 'nakayamay', '2001-10-21', 'ynakay', '2003-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS938031877924', '谷家明', 1, '+1 212-585-9334', 0, '683825021758623288', '521 Fifth Avenue Apartment 36, New York, NY 10017, United States', '1997-07-22', 0, 0, 'kookm', '2014-10-29', 'kkami102', '2009-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS170098282511', 'Joe Ross', 0, '+44 7124 719234', 2, '764446221363457082', 'Flat 36, 592 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1993-11-17', 0, 0, 'rossj1108', '2017-04-18', 'joeros', '2015-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS679867403130', '邹嘉伦', 0, '+81 11-856-0718', 2, '442376587925583062', '50-kai, 6-1-14, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1996-11-07', 0, 0, 'jzo1', '2007-07-08', 'jzou', '2019-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS907839983608', '井上湊', 1, '+86 20-205-4673', 2, '621632493798329548', '中国广州市越秀区中山二路493号华润大厦16室', '1992-08-15', 0, 0, 'minato8', '2015-08-26', 'inoueminato', '2019-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS752744043208', '池田桜', 1, '+86 141-2392-8554', 3, '078232950641998402', '中国广州市越秀区中山二路909号43室', '1985-02-13', 0, 0, 'sakuraik', '2001-05-13', 'sikeda', '2010-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS099153971118', 'Ethel Jordan', 0, '+81 52-260-3023', 1, '833633493771052716', '43-kai, 13 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1985-06-08', 0, 0, 'jordane', '2008-02-11', 'etjord', '2014-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS396101029675', '酒井一輝', 0, '+1 718-394-5599', 1, '372564310434259017', '658 Flatbush Ave Suite 22, Brooklyn, NY 11225, United States', '1988-07-27', 0, 0, 'ikkisakai', '2015-05-09', 'iksaka', '2001-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS405175349576', 'Jason Rose', 1, '+86 28-2251-1184', 4, '046630472573518825', '中国成都市成华区双庆路546号3栋', '1988-11-26', 0, 0, 'jasonr', '2001-07-04', 'rose9', '2011-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS312558886253', '高木陸', 1, '+86 132-6890-7633', 1, '834724019926603171', 'No.6 building, 66 Dong Zhi Men, Dongcheng District, Beijing, China', '1992-06-01', 0, 0, 'rtakagi', '2008-09-26', 'riku1', '2002-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS698374065114', '郑子韬', 0, '+86 179-4091-9142', 3, '454032253675626741', '中国北京市東城区東直門內大街806号41室', '1997-01-14', 0, 0, 'zizhe', '2012-02-09', 'zitaozhe96', '2013-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS324622320170', '松田美月', 1, '+86 146-6208-2854', 2, '927870083349330282', 'No.19 building, 433 Shanhu Rd, Dongguan, China', '1996-08-18', 0, 0, 'mitsuki9', '2001-08-29', 'mitsuki910', '2016-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS685137117334', '程嘉伦', 0, '+81 80-2378-8457', 3, '309113021571014495', '日本おおさかし平野区加美東四丁目9番10号19号室', '1987-09-22', 0, 0, 'jialuncheng', '2016-03-23', 'jialun310', '2019-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS015127292471', 'Steven Jordan', 1, '+86 20-4169-5127', 1, '905940796251635995', '8F, 199 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1993-07-25', 0, 0, 'stejordan1', '2016-04-03', 'stevenjordan918', '2019-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS420381451857', '上田健太', 0, '+1 330-035-6894', 1, '066771648473709380', '877 Fern Street Apt 48, Akron, OH 44307, United States', '1998-05-17', 0, 0, 'uedakent821', '2016-06-20', 'kentau', '2006-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS065767316980', 'Danielle Rogers', 1, '+86 755-678-4130', 1, '758349619005784134', '中国深圳龙岗区布吉镇西环路313号华润大厦13室', '1991-11-14', 0, 0, 'darogers', '2003-12-06', 'danielle2', '2012-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS636640873601', '孙詩涵', 1, '+86 146-8505-8292', 4, '721473620730161371', 'No.29 building, 807 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1993-03-19', 0, 0, 'shihansu71', '2007-01-16', 'sun605', '2012-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS576077560304', '钱晓明', 0, '+44 (151) 942 3404', 3, '917897016670343261', 'No.37 Main building, 742 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1993-12-21', 0, 0, 'qianx1943', '2015-07-15', 'xiaomingqia', '2002-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS264245664549', 'Peter Robertson', 0, '+1 838-044-1755', 4, '473356491437100674', '367 State Street Apt 22, Albany, NY 12203, United States', '1988-07-02', 0, 0, 'peterrobertson', '2016-01-06', 'rpe', '2013-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS508703675769', '木下凛', 0, '+44 (121) 614 5154', 3, '412815177624987556', 'Block 46, 9 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1987-09-09', 0, 0, 'kinoshita1101', '2008-10-28', 'rin5', '2016-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS206390981256', '徐家明', 0, '+81 70-7761-0896', 2, '545285054621285078', '日本東京品川区東五反田五丁目2番15号1階', '1996-03-05', 0, 0, 'kmts', '2016-02-22', 'tskm5', '2011-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS998737022266', '伍國賢', 1, '+1 213-241-6530', 2, '623750310200410717', '122 Figueroa Street Suite 30, Los Angeles, CA 90037, United States', '1995-08-09', 0, 0, 'kwokyin618', '2017-09-10', 'kwokyinng', '2012-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS019245793832', '秦嘉伦', 1, '+81 90-1888-6930', 1, '809927369757812989', '9-kai, 4-9-19 Kamihigashi, Hirano Ward, Osaka, Japan', '1987-01-30', 0, 0, 'jialun3', '2016-04-10', 'jqin', '2001-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS781839364622', '姜岚', 1, '+1 330-944-8810', 2, '371831729165133757', '774 West Market Street 3rd Floor, Akron, OH 44333, United States', '1996-09-03', 0, 0, 'jila1996', '2015-09-06', 'jiang1208', '2014-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS044405568219', '汪學友', 0, '+81 80-8840-3541', 0, '436971785415533062', 'Rm. 7, 1-7-7 Omido, Higashiosaka, Osaka, Japan', '1986-03-17', 0, 0, 'wong908', '2017-08-20', 'hokyauwong', '2003-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS283326169687', '罗震南', 1, '+81 66-620-0179', 4, '203764673094987870', 'Rm. 18, 1-1-2 Deshiro, Nishinari Ward, Osaka, Japan', '1995-01-22', 0, 0, 'luoz', '2002-07-24', 'luozhenn10', '2016-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS452682745185', 'Teresa Rose', 0, '+1 330-817-4660', 3, '908384479715519895', '960 Riverview Road Apartment 12, Akron, OH 44313, United States', '1989-12-11', 0, 0, 'rose44', '2017-10-21', 'roseteresa', '2007-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS990092515697', '橋本葉月', 1, '+86 134-2741-2478', 4, '423343439712311993', 'No.15 building, 116 East Wangfujing Street, Dongcheng District , Beijing, China', '1997-12-21', 0, 0, 'hashimotohazuki', '2008-04-22', 'hhaz', '2020-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS489625861531', '胡子韬', 1, '+81 70-4072-7186', 2, '296196494805465938', '日本おおさかし近江堂一丁目7番3号30階', '1987-05-06', 0, 0, 'hu1', '2008-05-28', 'zitaohu', '2005-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS360616739151', '伊藤悠人', 0, '+86 198-4793-9097', 3, '625251352030874031', 'No.49 building, 216 Jiangnan West Road, Haizhu District, Guangzhou, China', '1992-07-23', 0, 0, 'iy221', '2021-02-24', 'itoyuto', '2002-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS566220188360', '黄子异', 1, '+81 52-673-8303', 2, '597863350364171686', '日本なごやし守山区瀬古東二丁目171番7号17号室', '1997-01-21', 0, 0, 'ziyhuang2001', '2021-11-29', 'huangziyi18', '2011-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS262951351406', '安藤七海', 0, '+86 28-8325-9494', 1, '997977257084984924', 'No.3 building, 158 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1985-11-23', 0, 0, 'annanami1987', '2014-10-21', 'nanamia', '2009-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS152600152150', '鄺慧嫻', 0, '+1 838-766-2589', 4, '520908455493734924', '469 Lark Street Suite 45, Albany, NY 12210, United States', '1989-03-20', 0, 0, 'waihan805', '2010-03-03', 'whkwong5', '2014-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS627107426444', '楊惠妹', 0, '+1 718-726-8780', 3, '519814990684010404', '956 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1998-09-20', 0, 0, 'yeunghm703', '2002-02-14', 'hmyeung', '2010-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS081875957566', 'Howard Allen', 0, '+81 90-8968-8137', 3, '555113906831992272', '3-kai, 8 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1995-11-26', 0, 0, 'allen82', '2020-05-20', 'allenh40', '2017-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS298720596915', 'Thelma Barnes', 1, '+1 330-388-9070', 1, '740208800877579160', '86 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1996-11-05', 0, 0, 'thelma816', '2000-05-30', 'barnes10', '2020-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS242891909187', '小山美月', 0, '+81 74-113-5907', 3, '385463008428748384', '37F, 14 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1988-03-28', 0, 0, 'mitsukiko', '2014-07-19', 'mitsukikoyama425', '2000-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS199095579066', '孫俊宇', 1, '+81 80-9538-3698', 2, '305911203962224871', '1F, 5-19-9 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1989-03-24', 0, 0, 'cyh', '2010-04-11', 'hsuan3', '2013-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS295425440136', '罗震南', 1, '+81 11-988-6780', 0, '012895839057063155', '日本札幌清田区真栄四条五丁目19番6号22号室', '1986-05-08', 0, 0, 'zhennanluo', '2021-08-27', 'zhennan2', '2007-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS810349399340', '曾詩涵', 0, '+86 175-8674-7493', 4, '226577249994055909', 'Room 43, 219 Middle Huaihai Road, Huangpu District, Shanghai, China', '1988-08-13', 0, 0, 'zeng322', '2010-02-28', 'zengshiha', '2020-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS612568478829', '史岚', 1, '+86 140-9368-0260', 3, '974293332615809041', '中国成都市锦江区红星路三段744号12号楼', '1993-10-09', 0, 0, 'lanshi3', '2010-07-19', 'sl68', '2005-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS680069708919', '姜云熙', 0, '+81 80-6420-4537', 1, '331294896728796734', 'Rm. 24, 1 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1995-04-13', 0, 0, 'jiang1003', '2021-04-28', 'jyunxi', '2013-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS622222655926', '樂明', 1, '+86 28-515-2890', 3, '876498786274859818', '中国成都市成华区双庆路908号华润大厦45室', '1990-10-16', 0, 0, 'minglok', '2000-03-20', 'minlok01', '2011-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS501739517047', '阮麗欣', 1, '+81 11-886-3483', 1, '182883055972337099', '45-kai, 2-1-20 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1992-10-10', 0, 0, 'yuen1950', '2014-04-19', 'yuenlaiyan1', '2010-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS543050990263', 'Harry Spencer', 1, '+81 80-9966-2584', 3, '117607304511795881', '日本なごやし瑞穂区河岸町四丁目20番10号22階', '1993-04-17', 0, 0, 'sharry', '2008-03-06', 'sharry', '2017-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS019844895003', 'Bruce West', 0, '+81 70-2403-7951', 2, '667776939673965095', 'Rm. 49, 1-5-8, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1987-07-13', 0, 0, 'bruce714', '2015-02-19', 'westbru', '2001-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS352436982496', '邹云熙', 1, '+1 312-446-3280', 2, '801451301782137882', '60 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1997-01-28', 0, 0, 'yunxizou67', '2003-06-17', 'yunxizou', '2006-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS425025709700', 'Alan Gutierrez', 1, '+81 90-3574-0725', 3, '142422777778115662', 'Rm. 4, 16 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1994-06-22', 0, 0, 'agutierrez', '2008-03-14', 'guala', '2016-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS654856498411', '熊岚', 0, '+1 330-776-9869', 3, '925698075072897170', '934 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1985-07-06', 0, 0, 'lanxiong', '2007-02-22', 'xiongl', '2015-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS115661031124', '内田結翔', 1, '+44 7898 168611', 2, '387239459159132144', 'Unit 19, Oxford Eco Centre, 943 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1998-10-11', 0, 0, 'uchidayuito928', '2013-01-16', 'yuituchida', '2012-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS795752927344', '孔睿', 0, '+86 151-5365-6564', 4, '827139838436135411', 'No.48 building, 476 Jianxiang Rd, Pudong, Shanghai, China', '1985-04-09', 0, 0, 'ruikong', '2007-05-23', 'ruik', '2010-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS066584348558', '陈杰宏', 1, '+1 838-327-6164', 0, '342689636145395216', '484 Central Avenue Suite 28, Albany, NY 12206, United States', '1998-03-08', 0, 0, 'cjieho', '2007-05-24', 'chenjiehong', '2016-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS797341287484', '于子韬', 1, '+1 330-610-7790', 4, '426185830064592256', '655 West Market Street Suite 35, Akron, OH 44333, United States', '1991-07-14', 0, 0, 'yu08', '2020-07-10', 'yuzitao', '2016-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS442601091568', '李頴思', 0, '+1 718-429-5655', 2, '511487218253962113', '422 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1992-07-15', 0, 0, 'wingsze6', '2019-04-17', 'lws', '2017-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS065798924600', '鄭明詩', 1, '+81 74-939-6056', 2, '272403236788637763', '1F, 9 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-07-07', 0, 0, 'mingszec62', '2020-09-10', 'chengmingsze8', '2014-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS705942637281', '苏宇宁', 1, '+86 21-9442-2065', 3, '467594267373479342', '36F, 225 Binchuan Rd, Minhang District, Shanghai, China', '1985-06-22', 0, 0, 'syuning731', '2001-06-29', 'suyuning', '2017-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS884420483819', '叶岚', 1, '+44 (151) 152 3157', 1, '919005373380071314', 'Block 19, 244 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1996-10-23', 0, 0, 'ye64', '2006-04-24', 'lanye1', '2020-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS866199954885', '唐震南', 1, '+81 70-4174-8243', 2, '593914079776286093', '日本札幌白石区菊水三条五丁目2番5号20階', '1990-07-16', 0, 0, 'zhenntang321', '2012-08-31', 'tang11', '2019-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS319728067390', '梅霆鋒', 1, '+1 212-383-0196', 4, '667913813811459755', '236 Fifth Avenue Suite 44, New York, NY 10017, United States', '1988-04-20', 0, 0, 'timu10', '2009-08-21', 'tingfung00', '2020-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS977363441603', 'Juan Webb', 0, '+86 21-571-2187', 3, '512659391518964511', 'Room 5, CR Building, 17 Ganlan Rd, Pudong, Shanghai, China', '1998-06-28', 0, 0, 'juanwebb', '2006-02-09', 'wjuan', '2021-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS404254317753', '麥玲玲', 1, '+81 74-853-1363', 4, '631011420512383355', '日本ならし学園南三丁目9番9号7階', '1995-02-19', 0, 0, 'makll', '2011-06-06', 'llmak1120', '2001-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS507079529164', '小島光', 1, '+1 330-389-8989', 4, '383485915974136221', '396 West Market Street Apt 44, Akron, OH 44333, United States', '1986-11-22', 0, 0, 'hikarko', '2001-06-19', 'hkojim5', '2009-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS081811750073', '石田陽菜', 0, '+86 760-7197-4431', 0, '547836518306544765', '中国中山紫马岭商圈中山五路562号44室', '1992-05-04', 0, 0, 'hinais', '2004-03-19', 'ih01', '2017-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS529837994381', '钟睿', 0, '+44 5246 381804', 2, '625358580559684980', 'No.48 Main building, 433 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1986-05-14', 0, 0, 'zhongrui', '2014-02-11', 'ruiz1112', '2011-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS814654032505', 'Kathy Murray', 0, '+81 90-5271-6347', 1, '452744634479865654', '日本おおさかし平野区加美東四丁目9番12号46号室', '1994-12-25', 0, 0, 'kathym', '2017-06-02', 'murray3', '2007-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS213983030909', '坂本蓮', 0, '+81 80-1565-2514', 1, '693588697760416825', '日本東京千代田区丸の内一丁目6番13号1階', '1989-07-21', 0, 0, 'rsakamoto8', '2014-07-10', 'sakaren', '2000-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS342177637021', '向安琪', 1, '+81 90-6370-6560', 1, '932763247689098701', '日本なごやし守山区瀬古東二丁目171番16号17号室', '1993-09-30', 0, 0, 'xianganq9', '2005-09-12', 'anqi5', '2010-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS821848540457', '松田拓哉', 1, '+86 146-4709-9110', 2, '091774197338426478', '中国中山天河区大信商圈大信南路17号23号楼', '1994-02-07', 0, 0, 'tmatsuda707', '2007-05-07', 'takuya1', '2021-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS716248201627', '卢秀英', 1, '+86 132-4462-7296', 1, '297170345735785489', '中国广州市白云区小坪东路585号华润大厦12室', '1994-01-21', 0, 0, 'xiul', '2011-06-19', 'xiul', '2012-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS372642341441', '宣家輝', 0, '+1 718-464-0553', 3, '975085597161838607', '607 Flatbush Ave Suite 31, Brooklyn, NY 11225, United States', '1996-09-23', 0, 0, 'kafai608', '2010-06-12', 'kfhsuan505', '2008-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS853494759523', '後藤海斗', 0, '+1 614-444-7411', 4, '324420211520265749', '210 Tremont Road Apt 31, Columbus, GA 43212, United States', '1986-08-02', 0, 0, 'gotokaito5', '2010-08-27', 'gkaito', '2012-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS720239837371', 'Nicholas Daniels', 1, '+86 28-3444-4894', 3, '472776154061961604', '中国成都市锦江区人民南路四段201号华润大厦16室', '1990-09-12', 0, 0, 'nichda9', '2012-08-21', 'danielsnicholas1974', '2006-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS586926518180', '桜井海斗', 0, '+86 149-8071-9806', 1, '917640255229205109', '22F, 834 028 County Rd, Yanqing District, Beijing, China', '1993-10-03', 0, 0, 'sakuraikait', '2011-01-15', 'kaito1107', '2019-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS266780505996', '新井百恵', 0, '+86 139-9414-3004', 1, '980066778553976797', '中国北京市海淀区清河中街68号902号10栋', '1990-04-02', 0, 0, 'aramomoe', '2011-04-25', 'aramom', '2001-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS462708859435', '杜發', 0, '+81 70-0444-4423', 2, '120155112781215753', '45-kai, 2-1-12 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1990-03-28', 0, 0, 'tofat', '2003-03-14', 'tofa', '2010-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS776261303354', '韩嘉伦', 1, '+86 755-877-9440', 2, '943173500682329969', 'Room 46, 788 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1988-04-06', 0, 0, 'jialunhan', '2021-10-15', 'jialunhan9', '2018-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS338979769068', 'Ryan Guzman', 0, '+44 5639 652959', 2, '783828332509457992', 'Unit 28, Oxford Eco Centre, 690 Pollen Street, London, W1S 1NG, United Kingdom', '1992-05-26', 0, 0, 'ryan10', '2000-07-09', 'ryanguzman42', '2017-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS671040327757', '吕致远', 1, '+86 160-4792-8918', 2, '092596598786753077', '17F, 643 Jingtian East 1st St, Futian District, Shenzhen, China', '1989-02-13', 0, 0, 'luzhi1', '2008-04-29', 'lzhiyuan', '2006-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS026709950006', '谷國權', 0, '+81 70-8845-3581', 4, '814547423266480314', '日本ならし西大寺赤田町一丁目7番12号47号室', '1998-07-22', 0, 0, 'kookk1', '2017-02-10', 'koo618', '2003-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS408988602443', '任嘉伦', 1, '+44 (20) 5522 7298', 2, '735029413121570811', 'No.37 Main building, 339 Hanover Street, London, W1S 1YD, United Kingdom', '1998-01-04', 0, 0, 'renj4', '2010-03-10', 'jialun120', '2004-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS148069704162', '山口拓哉', 0, '+81 52-634-2662', 4, '224699246977986716', '日本なごやし守山区瀬古東二丁目171番12号21階', '1998-03-23', 0, 0, 'yamt75', '2010-09-20', 'tayamaguchi8', '2020-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS796848662189', '西村健太', 1, '+44 5021 661206', 0, '402101698994955125', 'No.40 Main building, 478 Hanover St, Liverpool, L1 4AF, United Kingdom', '1992-12-03', 0, 0, 'nishk10', '2002-04-17', 'nishik912', '2004-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS958205922732', '廖裕玲', 0, '+86 179-3162-6182', 3, '631494724609768264', '中国北京市延庆区028县道583号华润大厦32室', '1986-08-01', 0, 0, 'liao1981', '2015-12-17', 'liaoyl67', '2014-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS201118420381', '翁青雲', 1, '+86 20-767-2274', 2, '368988185596840449', '中国广州市白云区机场路棠苑街五巷825号华润大厦46室', '1993-02-15', 0, 0, 'cwyung75', '2010-08-04', 'yucw7', '2019-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS461441683903', '坂本拓哉', 0, '+81 11-853-1883', 2, '741825141960621643', '22-kai, 6-1-15, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1988-01-03', 0, 0, 'takusak3', '2005-06-02', 'sakamototaku', '2017-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS765884575142', 'Louise Tucker', 1, '+81 3-2551-7646', 3, '250388051824314990', '日本東京中央区銀座三丁目12番19号1号室', '1992-04-18', 0, 0, 'tucker02', '2009-09-26', 'tuckerlouise', '2020-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS443163843564', '菊地葵', 0, '+86 755-834-5825', 2, '833664985502507670', 'Room 46, CR Building, 82 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1991-01-31', 0, 0, 'kikua', '2014-07-28', 'kikuchiaoi2', '2010-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS438175295198', '韩璐', 1, '+81 70-7304-7556', 1, '150661062775084648', '日本東京港区東新橋一丁目5番1号32号室', '1988-09-23', 0, 0, 'luhan', '2012-01-25', 'luha64', '2006-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS497410023998', 'Nathan Kennedy', 0, '+86 28-735-0522', 0, '492230816875169731', '中国成都市成华区玉双路6号354号华润大厦40室', '1986-04-09', 0, 0, 'kennatha', '2008-10-22', 'kennenath', '2012-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS080959555420', '常杰宏', 1, '+86 755-679-8628', 1, '739228760764462020', 'Room 38, CR Building, 132 Shennan Ave, Futian District, Shenzhen, China', '1996-07-21', 0, 0, 'chang519', '2014-01-15', 'chajieh', '2010-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS091569854102', '冯岚', 1, '+44 (161) 920 4025', 1, '010253778310286199', 'Block 14, 171 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-08-04', 0, 0, 'lanfeng', '2006-05-08', 'lanfeng', '2006-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS855699661433', '方岚', 1, '+44 (151) 542 0861', 0, '152301924343440742', 'No.13 Main building, 693 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1994-02-17', 0, 0, 'lafang4', '2016-10-30', 'fangl', '2009-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS940652744562', '清水玲奈', 1, '+81 80-3191-1441', 0, '443056021695191029', 'Rm. 50, 17 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-12-06', 0, 0, 'rena59', '2003-02-03', 'rshimi', '2012-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS772755097621', 'Steven Crawford', 1, '+81 70-6048-2869', 4, '759845304374848304', 'Rm. 45, 3-19-12 Shimizu, Kita Ward, Nagoya, Japan', '1996-12-18', 0, 0, 'cste', '2009-02-28', 'steven8', '2006-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS928912253238', '任霆鋒', 0, '+86 755-816-9282', 3, '626604446860717012', 'Room 6, CR Building, 152 Shennan Ave, Futian District, Shenzhen, China', '1993-03-12', 0, 0, 'yamtingfung', '2013-09-01', 'tingfung407', '2011-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS642908268969', 'Dawn Henderson', 0, '+81 90-9795-1379', 1, '932836725954731671', 'Rm. 36, 2-3-5 Yoyogi, Shibuya-ku, Tokyo, Japan', '1993-11-27', 0, 0, 'dawn2', '2016-06-30', 'dawnhende', '2002-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS815608894305', '林秀英', 1, '+44 (151) 521 9041', 0, '294895507443919171', 'Unit 26, Oxford Eco Centre, 598 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1992-01-31', 0, 0, 'linxiuying', '2007-08-21', 'lin922', '2008-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS972392550544', '江梓晴', 1, '+86 21-1186-2923', 2, '602553017136391669', 'Room 16, CR Building, 123 Hongqiao Rd., Xu Hui District, Shanghai, China', '1995-11-25', 0, 0, 'kongtszch56', '2006-11-23', 'kotc', '2018-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS322519785321', 'Bradley Vasquez', 1, '+81 70-6207-0570', 2, '515005396483375208', '7F, 5-2-3 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1994-09-06', 0, 0, 'vasquez7', '2012-07-31', 'bravasq', '2011-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS497459099043', '駱志明', 1, '+1 213-205-5925', 1, '789032463225809886', '935 Wall Street Apartment 13, Los Angeles, CA 90003, United States', '1986-06-09', 0, 0, 'lokcm66', '2015-01-10', 'cml328', '2015-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS787199480034', 'Shannon Tucker', 1, '+81 52-198-9684', 3, '215701428122059622', '日本なごやし守山区瀬古東二丁目171番9号24号室', '1991-10-03', 0, 0, 'tuckershannon', '2007-12-01', 'st6', '2021-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS182021209980', '横山葵', 1, '+81 70-2632-8025', 2, '529692893600915655', '日本おおさかし西成区出城一丁目1番16号47号室', '1998-02-13', 0, 0, 'aoiyo901', '2018-01-23', 'aoiyo129', '2005-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS260463145860', '傅詩涵', 0, '+81 74-763-3518', 3, '351845916831536847', '日本ならし大和郡山市本庄町一丁目1番15号12階', '1996-11-19', 0, 0, 'sfu324', '2008-10-13', 'fushih', '2012-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS957308679217', 'Justin Bailey', 1, '+44 (121) 031 1782', 3, '606025036761813712', 'Unit 26, Oxford Eco Centre, 987 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1988-10-30', 0, 0, 'justinb9', '2017-03-03', 'justin8', '2013-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS759372800491', '方子韬', 0, '+86 755-7507-9965', 3, '539379267827831062', '中国深圳罗湖区清水河一路867号40栋', '1991-06-03', 0, 0, 'zitao53', '2021-09-10', 'zitao329', '2000-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS583291578840', '汪宇宁', 1, '+81 52-801-6276', 2, '877069296297224236', 'Rm. 44, 2-5-1 Chitose, Atsuta Ward, Nagoya, Japan', '1987-10-26', 0, 0, 'wang404', '2015-05-05', 'wang8', '2017-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS024699469998', '林秀英', 0, '+44 (151) 510 3479', 0, '690994573088278169', 'Flat 1, 994 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1992-09-21', 0, 0, 'xiuyinglin', '2009-01-05', 'xl8', '2017-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS778309327645', '盧安娜', 0, '+81 66-464-4874', 1, '175733161988055209', '日本おおさかし東住吉区東田辺三丁目27番14号42階', '1996-07-20', 0, 0, 'onlo8', '2009-05-04', 'lonn', '2015-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS828614171301', '戚天樂', 0, '+1 614-780-6203', 2, '345724246811938163', '76 East Alley 3rd Floor, Columbus, GA 43201, United States', '1998-10-02', 0, 0, 'chtinlok', '2007-08-23', 'tinlok1980', '2014-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS926729783081', '村上聖子', 0, '+86 10-5070-5680', 4, '072439005911463738', '4F, 993 028 County Rd, Yanqing District, Beijing, China', '1991-05-04', 0, 0, 'muraksei', '2014-03-05', 'murakamiseiko', '2013-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS898290435219', 'Anna Reyes', 1, '+44 7209 209300', 2, '352481381037247321', 'Flat 6, 779 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1992-10-17', 0, 0, 'reyesanna2', '2004-08-05', 'annare5', '2001-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS046230813924', '佐藤翼', 1, '+86 21-7657-4705', 0, '374833407284266411', '25F, 460 Ganlan Rd, Pudong, Shanghai, China', '1999-01-03', 0, 0, 'satotsubasa5', '2014-05-27', 'tsusato', '2002-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS619406283361', '姜晓明', 1, '+81 11-765-6671', 1, '025948488828976550', '10-kai, 5-2-11 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-09-20', 0, 0, 'jiangxiaoming10', '2013-10-16', 'jiaxiao63', '2019-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS035898958890', '劉秀文', 1, '+86 175-2131-1691', 3, '872402875568505210', 'Room 24, 483 FuXingMenNei Street, XiCheng District, Beijing, China', '1991-08-28', 0, 0, 'lausauman5', '2006-12-25', 'lausm1017', '2000-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS353167946655', '石井樹', 0, '+81 90-7708-0198', 1, '003046444922443451', '2-kai, 2-1-4 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-08-28', 0, 0, 'itsukiishii', '2002-03-30', 'isi4', '2001-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS784055931752', '宮崎花', 0, '+44 (1223) 36 9195', 2, '897375536245475366', 'Block 18, 407 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1991-04-30', 0, 0, 'miyahana9', '2003-10-23', 'miyazakihana', '2021-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS283438179894', '菅原紗良', 0, '+44 5076 070188', 3, '104781437157354005', 'Block 11, 779 Mosley St, Manchester, M2 3AQ, United Kingdom', '1987-06-24', 0, 0, 'sara40', '2005-02-16', 'sugawarasa1124', '2015-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS519963587082', '孔震南', 1, '+86 28-441-0027', 1, '934080137928981359', 'No.18 building, No. 816, Shuangqing Rd, Chenghua District, Chengdu, China', '1994-06-05', 0, 0, 'zhennan3', '2015-06-28', 'zhennan3', '2002-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS511229230432', '河野絢斗', 0, '+81 66-487-3990', 1, '968731622210064957', '47-kai, 1-1-16 Deshiro, Nishinari Ward, Osaka, Japan', '1993-05-27', 0, 0, 'ayatok', '2011-03-17', 'konoayat', '2000-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS169075093694', '薛子韬', 0, '+81 11-609-3877', 3, '857340412244371685', '日本札幌中央区宮の森四条六丁目1番1号19号室', '1997-12-08', 0, 0, 'xzit1022', '2006-02-27', 'xuzitao', '2011-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS468606142767', '林晓明', 1, '+86 197-2910-8734', 2, '994248465328571553', 'No.20 building, 624 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1990-08-26', 0, 0, 'xiaolin1974', '2005-01-22', 'xial', '2013-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS501474053329', '周俊宇', 1, '+81 90-4950-3194', 0, '076989264099494554', '日本ならし学園南三丁目9番14号2号室', '1985-01-19', 0, 0, 'chunyu9', '2009-05-06', 'chocy9', '2005-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS981233322322', '木村葵', 0, '+86 152-9155-8298', 1, '568297449004935186', '中国深圳龙岗区学园一巷741号华润大厦33室', '1990-11-06', 0, 0, 'aoik5', '2021-09-08', 'kimura2', '2000-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS644851094546', '宮崎絢斗', 1, '+86 167-6708-4648', 0, '453903821546123876', 'Room 21, CR Building, 169 Shanhu Rd, Dongguan, China', '1996-01-25', 0, 0, 'ayamiyazaki', '2007-08-08', 'miyazakiayat608', '2014-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS199367075950', '廖子异', 0, '+81 3-4667-9354', 3, '816663030170259081', 'Rm. 28, 1-5-6, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1986-08-30', 0, 0, 'zli', '2001-09-28', 'liaoz', '2017-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS194715773440', '戴國明', 1, '+81 3-6417-2697', 3, '537376106493776981', '日本東京渋谷区代々木二丁目3番8号39階', '1987-03-26', 0, 0, 'daikm', '2003-04-19', 'kmd2', '2011-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS167643977707', '廖致远', 0, '+1 718-901-3097', 1, '538152250442684332', '254 Nostrand Ave Apt 42, Brooklyn, NY 11216, United States', '1993-10-24', 0, 0, 'liaoz', '2012-06-24', 'lzhiyuan', '2003-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS041769378712', '三浦翼', 1, '+1 212-002-3728', 1, '624064432472634253', '662 Fifth Avenue Apt 16, New York, NY 10017, United States', '1996-08-30', 0, 0, 'tsubasamiura1129', '2017-11-06', 'tsubasa2', '2019-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS542199365575', '魏璐', 0, '+86 150-4838-6143', 2, '709040125455240034', '中国北京市西城区西長安街868号16楼', '1997-01-16', 0, 0, 'welu07', '2015-05-06', 'wei1123', '2006-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS938873420196', '蒋嘉伦', 1, '+44 (1223) 04 1357', 1, '423034944344398042', 'Block 12, 339 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1990-07-29', 0, 0, 'jiangj', '2009-08-25', 'jialunjiang819', '2010-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS887903095718', '薛裕玲', 1, '+1 838-923-3134', 4, '699141358950043273', '653 Central Avenue Apartment 24, Albany, NY 12205, United States', '1990-12-10', 0, 0, 'yls', '2013-03-20', 'sityuling2013', '2019-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS959258055337', '唐杰宏', 0, '+81 66-908-3515', 2, '334213802141057226', 'Rm. 13, 3-27-16 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1985-07-18', 0, 0, 'tangj1992', '2019-04-17', 'jiehong1', '2019-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS935430520650', '邱慧嫻', 0, '+81 90-8123-6376', 1, '029833543969007140', '48-kai, 4-9-4 Kamihigashi, Hirano Ward, Osaka, Japan', '1987-03-02', 0, 0, 'yauwh', '2007-09-25', 'waihayau223', '2018-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS804065607517', '韓惠敏', 0, '+81 52-606-5638', 2, '268153007677664571', '34F, 2-5-14 Chitose, Atsuta Ward, Nagoya, Japan', '1985-08-21', 0, 0, 'han8', '2008-03-16', 'hanwaiman44', '2010-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS043075151645', '島田蓮', 0, '+81 80-2880-4683', 4, '839300213179290032', '13-kai, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-10-25', 0, 0, 'resh', '2003-05-01', 'renshi', '2021-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS453561142871', '薛發', 0, '+81 66-615-3081', 0, '091761767636538231', '日本おおさかし西成区天神ノ森二丁目1番13号36号室', '1995-03-22', 0, 0, 'sit8', '2021-03-14', 'fsit', '2017-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS463680541732', '毛睿', 1, '+81 52-479-3415', 3, '434515384927393354', '30F, 2-5-2 Chitose, Atsuta Ward, Nagoya, Japan', '1988-07-29', 0, 0, 'ruimao', '2017-04-29', 'mao3', '2015-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS912242649915', '高田拓哉', 1, '+81 80-9629-6330', 4, '287080655407192622', 'Rm. 50, 2-3-11 Yoyogi, Shibuya-ku, Tokyo, Japan', '1987-11-11', 0, 0, 'ttakuya528', '2009-07-31', 'takadata1001', '2013-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS982515053245', 'Gary Mason', 1, '+86 20-8766-3735', 2, '360125674290856435', '中国广州市越秀区中山二路903号39室', '1987-05-22', 0, 0, 'garmason3', '2008-04-26', 'garmason70', '2004-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS641043029629', '顾云熙', 1, '+81 90-5042-9224', 4, '508546131376186506', '42F, 3-27-7 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1999-01-27', 0, 0, 'yunxi54', '2003-02-02', 'yunxigu5', '2013-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS255266081033', '千葉瑛太', 0, '+81 52-916-9007', 3, '954183022988153341', '日本なごやし瑞穂区河岸町四丁目20番12号14号室', '1992-09-28', 0, 0, 'eitachiba', '2000-04-13', 'eitchiba', '2009-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS012955573865', 'Thelma Chavez', 0, '+81 3-8207-7686', 3, '551405017213111734', '日本東京中央区銀座三丁目12番8号15階', '1989-07-17', 0, 0, 'thelmchave', '2010-10-25', 'chavez3', '2014-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS795894354953', '後藤海斗', 0, '+81 90-7621-4362', 3, '396971263268874538', 'Rm. 48, 3-9-8 Gakuenminami, Nara, Japan', '1985-01-03', 0, 0, 'gotokaito19', '2020-04-13', 'kaitg', '2015-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS697573451927', 'Paul Schmidt', 0, '+86 769-664-2493', 2, '752153625937416050', 'No.19 building, 893 Dongtai 5th St, Dongguan, China', '1988-04-12', 0, 0, 'schmidt925', '2018-11-15', 'schmidtpaul518', '2018-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS657601382217', 'Timothy Mills', 1, '+86 10-338-4678', 0, '790405394081085132', '36F, 729 Dong Zhi Men, Dongcheng District, Beijing, China', '1997-01-27', 0, 0, 'millstimothy', '2013-07-28', 'mt6', '2008-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS620064283317', '河野桜', 0, '+86 198-1323-5239', 1, '107755452763374860', '中国成都市成华区玉双路6号543号40楼', '1986-02-06', 0, 0, 'sakura2', '2013-06-29', 'sakono', '2000-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS502801980376', '竹内一輝', 0, '+81 70-8285-0221', 1, '151908708606748917', 'Rm. 18, 3-15-6 Ginza, Chuo-ku, Tokyo, Japan', '1993-08-31', 0, 0, 'takeuchii', '2009-07-29', 'takeuchiikki3', '2012-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS581227249555', '大塚紗良', 0, '+86 138-1906-6207', 0, '977818125003093087', '42F, 212 Dong Zhi Men, Dongcheng District, Beijing, China', '1995-01-08', 0, 0, 'sotsuka', '2008-12-24', 'otssa', '2010-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS462202769067', '江睿', 1, '+81 70-6235-5427', 3, '992114715652616083', '40-kai, 2-1-15 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1990-03-18', 0, 0, 'rujiang', '2007-04-10', 'rui6', '2007-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS419932785437', '毛云熙', 1, '+86 181-2879-3014', 4, '035181042201033888', 'Room 33, CR Building, 644 Kengmei 15th Alley, Dongguan, China', '1994-04-22', 0, 0, 'mao1997', '2015-02-21', 'yunxi5', '2010-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS156043748886', '安藤陽菜', 0, '+86 150-1443-8633', 3, '546502861556382421', '中国北京市东城区东单王府井东街338号29栋', '1996-12-02', 0, 0, 'hinaando', '2008-03-04', 'andoh2005', '2006-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS288541978477', '鄭浩然', 0, '+81 11-892-8021', 1, '822609341028563757', '日本札幌中央区宮の森四条六丁目1番18号13号室', '1988-05-23', 0, 0, 'hoyin10', '2002-08-04', 'hoyin86', '2008-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS473166172116', 'Alfred Gonzalez', 1, '+86 769-6946-2063', 2, '317496241413059852', '中国东莞东泰五街355号9室', '1998-11-10', 0, 0, 'alfred10', '2011-10-12', 'agon', '2004-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS496771531626', 'Leslie Watson', 0, '+81 74-119-7943', 1, '536988647782168491', '日本ならし大和郡山市本庄町一丁目1番7号2号室', '1986-11-26', 0, 0, 'watsonl1945', '2015-03-14', 'watsonleslie', '2005-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS713573189389', '葉慧琳', 1, '+86 10-1031-4050', 2, '985071486892899105', '中国北京市延庆区028县道167号32栋', '1993-11-19', 0, 0, 'yipwailam', '2014-08-27', 'wailamy5', '2021-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS758017104966', '山下翼', 0, '+1 213-475-3227', 0, '379283417113999595', '392 Figueroa Street Apt 50, Los Angeles, CA 90037, United States', '1994-12-27', 0, 0, 'tya', '2011-08-18', 'yamashitats', '2011-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS678101411108', '廖惠敏', 1, '+44 7569 559879', 1, '514893498128090472', 'No.6 Main building, 367 Maddox Street, London, W1S 1PU, United Kingdom', '1997-02-08', 0, 0, 'liaowm', '2015-01-10', 'wml', '2011-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS745271466442', '顾詩涵', 0, '+86 179-8517-1629', 2, '804163197260616602', 'Room 10, CR Building, 248 Ganlan Rd, Pudong, Shanghai, China', '1992-03-03', 0, 0, 'shigu729', '2001-08-05', 'shihgu120', '2011-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS031191025527', '馬慧嫻', 1, '+44 5941 751383', 2, '892524373737718539', 'Flat 21, 860 Regent Street, London, W1B 2LX, United Kingdom', '1986-12-24', 0, 0, 'mawaihan418', '2004-12-06', 'whma', '2018-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS154595888615', '武田凛', 0, '+44 (1223) 76 9121', 1, '566407053904568419', 'Block 31, 513 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1987-09-09', 0, 0, 'rintak', '2001-12-30', 'takri8', '2005-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS786738688938', '陆震南', 1, '+86 10-359-7237', 2, '320461571393957358', '中国北京市東城区東直門內大街471号华润大厦32室', '1999-03-01', 0, 0, 'lu1111', '2012-01-11', 'zhlu', '2000-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS325554567981', '戴俊宇', 0, '+86 755-7186-7462', 3, '196384413421037458', 'No.50 building, 456 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1986-05-03', 0, 0, 'daichunyu', '2017-02-07', 'daicy101', '2006-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS269234705349', 'Valerie Watson', 1, '+81 52-383-5220', 4, '714924321321391511', '日本なごやし熱田区千年二丁目5番10号24号室', '1989-08-17', 0, 0, 'vwa', '2010-09-13', 'valewats', '2004-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS821433216516', 'Lucille Campbell', 0, '+44 (116) 346 5542', 2, '055537149597740408', 'Block 22, 359 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1991-02-19', 0, 0, 'lucillecampbell', '2011-11-23', 'campbelllucille6', '2006-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS186569927445', 'Kyle Fisher', 0, '+44 5841 783361', 3, '500683258915248060', 'Block 43, 422 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1987-08-29', 0, 0, 'fisherk', '2021-07-21', 'kfi325', '2020-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS884881220281', '陶天榮', 0, '+81 52-704-3209', 3, '954673767059441727', '18F, 3-19-19 Shimizu, Kita Ward, Nagoya, Japan', '1993-11-22', 0, 0, 'twtao', '2010-05-03', 'twt', '2016-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS491033005621', 'Lucille Watson', 0, '+86 21-444-9065', 1, '003785842787910839', 'Room 43, 915 Hongqiao Rd., Xu Hui District, Shanghai, China', '1994-01-21', 0, 0, 'watsonluc2', '2006-11-21', 'wal', '2012-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS035743570623', '高田紗良', 0, '+44 5890 410275', 1, '481712914863290539', 'Block 49, 454 New Street, Birmingham, B2 4DB, United Kingdom', '1997-05-21', 0, 0, 'saratakada501', '2018-07-19', 'tsara', '2002-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS277372594304', '田致远', 0, '+44 (151) 651 4690', 3, '646863565311417804', 'No.48 Main building, 690 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1991-12-09', 0, 0, 'zhiyuti', '2005-04-13', 'ztian', '2002-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS589647351503', 'Henry Price', 1, '+81 70-0701-9746', 1, '713738057267152316', '日本ならし学園南三丁目9番9号28階', '1989-06-21', 0, 0, 'prih', '2018-05-26', 'henry506', '2002-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS856610780792', 'Kenneth Reynolds', 0, '+44 5867 364053', 3, '689033251036934424', 'No.42 Main building, 941 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1985-08-15', 0, 0, 'reynkenneth', '2007-03-15', 'reynoldskenneth', '2014-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS851569443247', '井上大地', 1, '+1 718-838-4961', 2, '841440690322620100', '907 Flatbush Ave Apartment 39, Brooklyn, NY 11225, United States', '1994-04-23', 0, 0, 'daiinoue', '2015-09-21', 'daichi10', '2020-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS513417993803', '戴子异', 0, '+81 52-227-9054', 4, '129765347269093672', '19F, 5 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-08-08', 0, 0, 'ziyidai', '2008-01-16', 'daiziyi1213', '2003-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS155323235341', 'Ashley Kim', 0, '+86 769-9984-4034', 0, '563240062564813623', '中国东莞坑美十五巷881号华润大厦39室', '1998-09-22', 0, 0, 'kiashley', '2020-04-20', 'ask', '2004-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS174296820318', '邹睿', 0, '+81 70-9482-0571', 4, '868745337103124695', '22-kai, 1-5-18, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1986-07-16', 0, 0, 'rui2', '2014-05-11', 'ruizou', '2000-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS479632382441', '小山百花', 0, '+86 10-2148-8394', 2, '931363240644493044', 'No.42 building, 448 Sanlitun Road, Chaoyang District, Beijing, China', '1996-08-05', 0, 0, 'momokakoyama', '2011-08-05', 'momokakoyam71', '2018-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS818014868563', '平野葵', 0, '+86 197-4129-3940', 1, '788314256650382625', '中国成都市成华区二仙桥东三路752号华润大厦19室', '1998-10-07', 0, 0, 'hiraoi00', '2002-03-26', 'hirano1940', '2014-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS985971236722', '今井百花', 1, '+44 5763 186537', 1, '347589906340224999', 'No.26 Main building, 342 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1995-07-10', 0, 0, 'imaimomoka1989', '2018-09-22', 'imamom1', '2008-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS914174973277', 'Miguel Howard', 1, '+86 181-7004-5383', 2, '172099054092612854', '中国中山紫马岭商圈中山五路105号28楼', '1987-02-16', 0, 0, 'mihoward', '2004-01-23', 'mihowa6', '2017-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS231947390127', '高家玲', 1, '+81 80-3828-7500', 3, '879109874023225557', '20F, 1-7-2 Saidaiji Akodacho, Nara, Japan', '1993-06-06', 0, 0, 'kakaling', '2016-10-05', 'kkl63', '2010-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS375289317233', '梁慧嫻', 0, '+86 755-3281-7695', 2, '276479685568024142', '中国深圳福田区深南大道215号19室', '1990-01-20', 0, 0, 'waihan70', '2010-06-02', 'whl1001', '2012-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS571718560937', '鈴木光', 1, '+81 66-339-7389', 0, '254121837402049560', '40-kai, 1-7-12 Omido, Higashiosaka, Osaka, Japan', '1990-06-27', 0, 0, 'hikarsu', '2019-03-07', 'hsuzu', '2008-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS454438247595', '吕詩涵', 1, '+81 70-5763-5297', 4, '574982973390175374', '日本なごやし北区清水三丁目19番16号47号室', '1995-09-17', 0, 0, 'shihan8', '2005-02-23', 'lus', '2008-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS044302035080', '罗安琪', 0, '+81 66-112-1885', 1, '343824136908947276', '日本おおさかし西成区出城一丁目1番12号45階', '1997-06-27', 0, 0, 'anqluo', '2011-10-24', 'aluo', '2017-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS973257884044', 'Joan Barnes', 0, '+86 176-4073-3836', 2, '271478155904223180', '中国广州市越秀区中山二路235号40楼', '1987-08-30', 0, 0, 'bajo', '2014-02-03', 'joabarn52', '2020-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS923825694136', '胡俊宇', 1, '+86 10-3755-7610', 0, '765577137065797738', '中国北京市東城区東直門內大街683号华润大厦14室', '1989-02-10', 0, 0, 'wuchunyu', '2014-04-19', 'chunyu412', '2012-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS950203746008', '罗晓明', 0, '+86 755-109-4902', 4, '802374336617471945', 'Room 39, 125 Shennan Ave, Futian District, Shenzhen, China', '1999-01-19', 0, 0, 'lxiaoming', '2007-01-05', 'luxiaom3', '2008-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS864369787101', '市川紗良', 0, '+86 189-8163-0168', 2, '208950130345646240', 'Room 5, CR Building, 76 68 Qinghe Middle St, Haidian District, Beijing, China', '1995-08-12', 0, 0, 'saraichik9', '2011-06-24', 'ichiksara1982', '2000-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS554623696780', '丁安琪', 0, '+44 (116) 343 2655', 0, '719986266853563142', 'Flat 2, 207 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1988-11-07', 0, 0, 'ding503', '2002-09-05', 'dinganq626', '2007-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS107855498445', 'Pauline Gonzales', 1, '+86 769-015-6738', 1, '973861887925409220', 'Room 26, CR Building, 623 Shanhu Rd, Dongguan, China', '1994-09-14', 0, 0, 'pauline1120', '2010-12-07', 'pagonz1215', '2020-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS917280468368', 'Edith Fisher', 0, '+81 66-958-6340', 2, '819378505852484716', '29-kai, 1-1-6 Deshiro, Nishinari Ward, Osaka, Japan', '1986-02-15', 0, 0, 'edithfi3', '2007-11-26', 'fisher1010', '2013-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS663766971896', '蘇潤發', 1, '+86 175-2139-8224', 3, '039556689505840687', 'Room 13, 843 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1992-06-30', 0, 0, 'yunfat331', '2011-07-21', 'yunfatso', '2021-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS721630906559', '蕭小慧', 0, '+1 718-309-5017', 2, '472570483043366242', '380 Columbia St Suite 50, Brooklyn, NY 11231, United States', '1995-06-03', 0, 0, 'siuwai1970', '2012-09-08', 'siu306', '2003-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS212156933556', '任朝偉', 0, '+44 (116) 671 3653', 0, '385519612827046559', 'Flat 13, 26 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-11-04', 0, 0, 'cwyam', '2015-03-28', 'yamchiuw404', '2005-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS350107209642', '余致远', 1, '+81 66-620-7119', 4, '664859023723532771', '48-kai, 1-1-15 Deshiro, Nishinari Ward, Osaka, Japan', '1986-09-07', 0, 0, 'yz112', '2005-10-13', 'yu9', '2001-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS597822426056', '苗慧儀', 1, '+81 70-5594-9149', 4, '613591626737251115', '日本東京千代田区丸の内一丁目6番16号29階', '1991-10-13', 0, 0, 'mwy1227', '2004-03-23', 'waiyeemiu8', '2009-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS114047337949', 'Harry Moreno', 1, '+1 838-450-3250', 2, '375128705890290953', '742 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1991-01-20', 0, 0, 'harrymoreno', '2017-01-08', 'harrymoreno929', '2012-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS829046175408', '成國賢', 0, '+86 132-0215-6120', 3, '022329179116360161', '中国北京市延庆区028县道792号14楼', '1997-08-28', 0, 0, 'shingky912', '2010-04-17', 'shiky55', '2017-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS922763676018', 'Hazel Hicks', 1, '+81 70-5687-0727', 2, '680933990743193948', '日本なごやし北区楠味鋺三丁目80番2号25号室', '1990-08-18', 0, 0, 'hihazel', '2021-06-14', 'hicks95', '2017-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS359941372709', 'Jacob Howard', 1, '+81 52-436-5231', 3, '019953327247042061', '日本なごやし北区楠味鋺三丁目80番12号39階', '1998-10-23', 0, 0, 'hjacob', '2014-06-10', 'jahoward', '2005-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS746308181730', '西村一輝', 0, '+81 90-6671-2188', 1, '155391019110754507', '日本札幌白石区菊水三条五丁目2番4号10階', '1992-11-01', 0, 0, 'ikkn', '2021-12-29', 'nishimura59', '2011-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS921611330594', '小島湊', 0, '+44 (1223) 68 3365', 0, '212081189263424589', 'Unit 22, Oxford Eco Centre, 504 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1990-11-14', 0, 0, 'minato1006', '2019-09-16', 'km93', '2018-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS075479860792', '太田明菜', 1, '+81 90-5671-7177', 3, '641926902782323660', '日本札幌中央区宮の森四条六丁目1番12号48階', '1991-07-06', 0, 0, 'akina70', '2008-12-11', 'akinaot5', '2013-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS608163154202', 'Gregory Murray', 1, '+44 7020 139548', 3, '682021460873434518', 'Block 21, 1 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1987-01-22', 0, 0, 'gregmurray', '2011-11-07', 'mugrego72', '2012-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS035106648631', '戚詩君', 1, '+81 90-6617-1916', 4, '987940827887826834', '4F, 3-9-13 Gakuenminami, Nara, Japan', '1998-02-14', 0, 0, 'chicsk', '2022-01-25', 'chicszekwan', '2011-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS406704663581', 'Emma Russell', 0, '+44 5240 134054', 1, '063853678896827172', 'Block 35, 951 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1987-04-08', 0, 0, 'russellemma', '2003-06-25', 'russeemma6', '2007-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS971173770640', '薛宇宁', 1, '+86 130-1019-6391', 1, '095205565389246947', '中国成都市成华区玉双路6号56号华润大厦47室', '1992-02-15', 0, 0, 'xyunin13', '2006-11-28', 'xuey1002', '2001-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS056897659196', 'Rosa Ramirez', 0, '+81 66-643-4599', 1, '076332725174484315', '日本おおさかし平野区加美東四丁目9番14号15号室', '1999-01-23', 0, 0, 'rosaram', '2019-06-06', 'ramirezrosa', '2004-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS223778465648', '太田光莉', 0, '+86 760-8900-5319', 2, '790682729906496887', 'Room 9, 813 Lefeng 6th Rd, Zhongshan, China', '1987-07-08', 0, 0, 'otahikar', '2004-08-18', 'ota422', '2019-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS140448639945', '谷國權', 0, '+1 614-020-4487', 0, '333476451681502714', '342 East Alley Apartment 7, Columbus, GA 43201, United States', '1985-05-23', 0, 0, 'kkk3', '2019-08-05', 'kkwokkuen69', '2000-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS480438586219', '吉田瑛太', 0, '+86 196-8964-6217', 2, '231113347291623902', 'No.40 building, 151 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1992-12-17', 0, 0, 'yoshidaei', '2001-05-13', 'eiyoshida', '2013-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS482997601906', '杜志遠', 0, '+86 10-266-3490', 2, '343236313407374192', 'Room 25, CR Building, 787 Yueliu Rd, Fangshan District, Beijing, China', '1987-07-16', 0, 0, 'cyto903', '2018-01-22', 'chiyuento', '2016-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS100046908481', 'Marcus Stewart', 1, '+86 20-659-4748', 3, '327398888400624749', 'No.43 building, 935 Tianhe Road, Tianhe District, Guangzhou, China', '1993-12-21', 0, 0, 'mastewa', '2010-12-09', 'marcusst', '2007-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS808524655382', '黎安琪', 0, '+86 10-6464-0127', 3, '946268400352774529', '中国北京市西城区复兴门内大街647号17栋', '1990-08-16', 0, 0, 'anqli', '2019-03-16', 'lanqi', '2019-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS854761207022', '萧嘉伦', 1, '+81 80-8829-7032', 2, '296102695985057012', '日本なごやし守山区瀬古東二丁目171番10号47階', '1990-03-24', 0, 0, 'jx6', '2001-09-29', 'xj1122', '2021-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS688024845626', '廖淑怡', 0, '+1 213-999-6816', 3, '902726733028206937', '505 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1985-12-03', 0, 0, 'syliao', '2002-12-18', 'syli', '2000-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS308487031496', '譚榮發', 1, '+81 3-8021-2469', 1, '683654633898356870', '日本東京渋谷区代々木二丁目3番18号33階', '1988-04-30', 0, 0, 'tam64', '2006-11-05', 'wft1964', '2007-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS319925946551', '區杰倫', 1, '+86 142-0402-7680', 1, '888979087802235603', 'No.45 building, 392 Dong Zhi Men, Dongcheng District, Beijing, China', '1987-11-05', 0, 0, 'chiehlunau', '2008-02-01', 'clau6', '2017-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS464873159395', 'Jerry Crawford', 0, '+86 755-739-4069', 3, '621620910421255667', '8F, 811 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1996-10-07', 0, 0, 'crawfordjerry', '2020-10-09', 'crawfordje', '2017-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS196049454409', 'Chad Garcia', 1, '+1 312-601-8017', 2, '610261533495646855', '72 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1998-05-30', 0, 0, 'garciach2', '2010-07-04', 'garciacha6', '2003-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS646746147742', '青木明菜', 0, '+44 (1223) 85 7106', 2, '415602371034069469', 'Flat 43, 853 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-06-27', 0, 0, 'aokiakina', '2000-11-13', 'aakina', '2015-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS203450882227', '竹内詩乃', 0, '+86 159-7119-4435', 3, '075210960694531651', '38F, 637 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1998-10-31', 0, 0, 'takeuchi4', '2013-08-11', 'takeuchishino', '2018-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS908303168231', 'Lori Coleman', 1, '+81 11-877-5051', 1, '518431783698064756', 'Rm. 36, 6-1-4, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1995-09-30', 0, 0, 'lorcolem127', '2021-10-25', 'coleman1224', '2000-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS339135400572', '橋本美緒', 1, '+44 (1223) 26 9048', 2, '000955895395148844', 'Flat 7, 837 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1991-06-23', 0, 0, 'miohashimoto', '2011-02-04', 'miohashimoto9', '2021-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS104804349896', '汪嘉伦', 0, '+86 28-971-1794', 4, '403413766547967787', '中国成都市成华区玉双路6号335号32楼', '1985-09-05', 0, 0, 'jialuwang', '2015-01-14', 'wangji', '2011-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS608730483761', '夏岚', 1, '+1 330-012-5434', 1, '860152532321662412', '507 West Market Street 3rd Floor, Akron, OH 44333, United States', '1986-10-22', 0, 0, 'lanxia', '2001-03-31', 'lax', '2019-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS040346691698', '鈴木凛', 1, '+81 80-9064-0317', 2, '821950056513124882', '日本なごやし瑞穂区河岸町四丁目20番10号33階', '1994-06-29', 0, 0, 'suzukirin301', '2001-04-17', 'rinsuzuki1', '2014-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS631400627889', '梁慧嫻', 0, '+1 312-911-5596', 0, '763265842895461699', '610 North Michigan Ave Apartment 20, Chicago, IL 60611, United States', '1986-11-27', 0, 0, 'leunwh924', '2003-07-31', 'whleung', '2019-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS997042050725', '安藤光莉', 1, '+1 213-225-2837', 2, '692268812774127927', '711 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1993-10-01', 0, 0, 'andhikari03', '2007-12-13', 'hikariando', '2014-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS809309055057', '罗宇宁', 1, '+86 755-453-0715', 2, '529206372207939619', 'Room 39, CR Building, 941 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1994-06-02', 0, 0, 'luoyuning', '2002-12-20', 'yuning5', '2012-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS480261421015', '上野湊', 0, '+44 (151) 165 4181', 3, '909683580484145869', 'Unit 25, Oxford Eco Centre, 739 Hanover St, Liverpool, L1 4AF, United Kingdom', '1995-04-21', 0, 0, 'minue9', '2021-04-07', 'uem', '2004-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS607044963116', '黃裕玲', 0, '+81 11-622-3318', 3, '089934770401369928', '日本札幌白石区菊水三条五丁目4番12号8階', '1988-03-06', 0, 0, 'yuling75', '2009-09-19', 'ylwong', '2000-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS967737134274', '今井美緒', 0, '+86 197-1618-6870', 0, '154819839794711725', '中国北京市延庆区028县道778号2号楼', '1993-08-13', 0, 0, 'imio', '2004-08-14', 'imai5', '2000-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS582652898097', '小林百花', 0, '+81 70-4562-7414', 3, '180022824465107854', '39-kai, 3-9-3 Gakuenminami, Nara, Japan', '1992-02-25', 0, 0, 'momokako', '2020-11-22', 'momoka10', '2018-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS687404437007', '谭睿', 0, '+86 134-9124-6887', 2, '941066820235160581', '中国上海市徐汇区虹桥路2号25号楼', '1985-04-20', 0, 0, 'rt1', '2009-11-12', 'rutan', '2017-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS739921005040', '田村詩乃', 1, '+86 28-708-3902', 1, '738674782874925907', '中国成都市锦江区红星路三段793号7栋', '1995-06-09', 0, 0, 'shinotamura', '2008-09-02', 'shintam312', '2019-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS805093129638', '山口拓哉', 0, '+86 139-8676-9399', 1, '048675205608734836', '11F, 599 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1987-12-02', 0, 0, 'takuyayamaguchi', '2008-01-09', 'takuyay', '2016-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS542182271726', 'John Bailey', 0, '+86 186-5829-9424', 0, '353631141464495885', 'Room 10, CR Building, 444 FuXingMenNei Street, XiCheng District, Beijing, China', '1997-11-12', 0, 0, 'baileyjohn1', '2001-12-30', 'bjohn6', '2007-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS724733530071', '袁俊宇', 1, '+44 7994 123403', 0, '006534200386831287', 'No.26 Main building, 54 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1988-08-28', 0, 0, 'cyyuen', '2013-06-30', 'cyy', '2002-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS361055280596', '蔡致远', 0, '+86 21-7547-1751', 2, '748171236264116025', 'No.7 building, 979 Middle Huaihai Road, Huangpu District, Shanghai, China', '1995-10-17', 0, 0, 'zhiyc9', '2016-06-09', 'zhiyuan67', '2001-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS304589999506', '佐藤瑛太', 1, '+44 (161) 472 0451', 3, '479796954566879611', 'Flat 22, 557 Portland St, Manchester, M1 3LA, United Kingdom', '1992-12-21', 0, 0, 'se1986', '2005-10-22', 'satoei1204', '2018-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS031526467544', '大塚葉月', 1, '+81 90-8105-1486', 3, '504250451538517717', '日本東京千代田区丸の内一丁目6番2号7階', '1994-01-25', 0, 0, 'hazotsuka', '2016-08-14', 'otsukhazuk', '2003-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS572521808554', 'Howard Fernandez', 1, '+86 194-3039-7304', 1, '549288914229966990', 'Room 27, CR Building, 385 Kengmei 15th Alley, Dongguan, China', '1992-03-25', 0, 0, 'fernandezho17', '2016-07-06', 'fhoward', '2002-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS509037330000', '姜榮發', 1, '+1 312-594-7983', 1, '857138957382001234', '8 Pedway Apartment 21, Chicago, IL 60601, United States', '1997-01-27', 0, 0, 'wingfatcha4', '2016-04-21', 'wfchang', '2003-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS511285490104', '藤學友', 0, '+86 20-6016-3752', 4, '574857107023893786', 'No.9 building, 823 Tianhe Road, Tianhe District, Guangzhou, China', '1997-05-06', 0, 0, 'tang7', '2001-01-22', 'tanghokyau903', '2014-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS488185892579', '藤原百恵', 0, '+1 213-754-8399', 4, '492066600383292270', '870 Sky Way Apt 10, Los Angeles, CA 90043, United States', '1991-07-04', 0, 0, 'mfujiwara4', '2002-04-29', 'fujiwaram', '2004-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS633263110478', '蕭梓軒', 0, '+86 181-8950-6730', 3, '287716220238713749', '中国上海市闵行区宾川路159号华润大厦45室', '1990-06-25', 0, 0, 'sith', '2013-04-10', 'siu1', '2002-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS232021814922', '戚志遠', 1, '+44 (20) 9974 6728', 1, '057656901555823850', 'Block 47, 555 Regent Street, London, W1B 2LX, United Kingdom', '1995-11-30', 0, 0, 'chiyuenchic7', '2019-06-08', 'chiyuenchi', '2003-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS961045747206', '古嘉欣', 1, '+1 838-793-9793', 2, '571397693759541976', '157 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1994-07-02', 0, 0, 'karyanku', '2007-04-27', 'ku42', '2007-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS180326719500', 'Amanda Mason', 0, '+44 7188 065865', 2, '899483858085174925', 'No.20 Main building, 431 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1986-10-29', 0, 0, 'amandmason', '2017-11-14', 'maamand921', '2020-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS639854834076', 'George Foster', 0, '+86 20-8709-7252', 2, '163990950150698267', '中国广州市白云区小坪东路620号36楼', '1985-12-14', 0, 0, 'fostergeorge8', '2007-10-10', 'foster9', '2019-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS003573073901', '汪富城', 0, '+86 10-388-2012', 2, '963337282323044450', '中国北京市东城区东单王府井东街4号30室', '1985-09-29', 0, 0, 'wfs7', '2006-10-19', 'fushiwong217', '2010-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS849199298632', '曾宇宁', 1, '+86 769-333-1572', 0, '666059530809953043', '中国东莞坑美十五巷606号35栋', '1996-02-25', 0, 0, 'yzeng1971', '2021-08-22', 'zyuning', '2016-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS933102640202', '雷家文', 1, '+44 5108 400186', 2, '817070288595314355', 'Unit 48, Oxford Eco Centre, 263 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1996-07-20', 0, 0, 'kmloui2019', '2021-01-17', 'kamanloui', '2005-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS111743257773', '金云熙', 0, '+44 5486 204108', 1, '167589577245366862', 'No.20 Main building, 71 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1993-08-28', 0, 0, 'yunxi6', '2013-01-02', 'jinyunxi', '2001-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS990581530701', '渡部葵', 1, '+44 (1223) 96 9967', 0, '195046033945204579', 'No.33 Main building, 663 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1990-02-11', 0, 0, 'watanabeaoi', '2021-03-05', 'aoiwa1982', '2011-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS259393704765', '斎藤明菜', 1, '+1 213-990-3368', 0, '952539479866273314', '339 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1988-09-13', 0, 0, 'akina2012', '2014-02-12', 'saakin', '2018-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS260548211359', 'Brenda Cook', 0, '+81 74-291-9027', 3, '189451357531431254', '日本ならし大和郡山市本庄町一丁目1番3号32階', '1987-07-26', 0, 0, 'coobrenda', '2018-11-09', 'cook1008', '2014-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS125986570625', '山田花', 0, '+86 175-8228-7148', 1, '076638511157084493', 'Room 34, CR Building, 444 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1988-07-05', 0, 0, 'hanayam523', '2001-05-01', 'yamada2012', '2007-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS634306226022', '池田愛梨', 1, '+86 160-7398-9098', 2, '068311621228245867', '中国深圳罗湖区田贝一路733号6室', '1995-04-05', 0, 0, 'ikeda1016', '2020-01-14', 'airiike3', '2019-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS106895266670', '譚慧敏', 0, '+1 718-273-2030', 1, '228759990533053747', '728 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1996-05-21', 0, 0, 'wmt3', '2011-08-17', 'tamwm', '2018-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS646431286617', '岡本美月', 1, '+81 70-1657-1154', 2, '709791134313204966', '日本ならし学園南三丁目9番14号30号室', '1998-02-01', 0, 0, 'okamoto327', '2019-09-14', 'mitsuki225', '2001-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS357131881004', '文德華', 0, '+1 312-937-6577', 4, '114283356044596981', '815 North Michigan Ave Suite 13, Chicago, IL 60611, United States', '1990-08-12', 0, 0, 'takwahm2', '2000-07-15', 'matw2', '2012-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS542348198817', 'Daniel Jackson', 1, '+81 70-0914-5113', 4, '798841783296883199', '日本東京港区東新橋一丁目5番6号28階', '1991-10-14', 0, 0, 'daja', '2012-04-13', 'jacksond', '2004-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS701049288246', '後藤湊', 0, '+86 10-090-6300', 2, '376131570230944344', 'Room 18, CR Building, 288 68 Qinghe Middle St, Haidian District, Beijing, China', '1987-11-21', 0, 0, 'gotomi', '2010-01-01', 'mig9', '2007-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS308638441599', '鐘朝偉', 1, '+44 (121) 211 5929', 0, '690438930409029013', 'No.50 Main building, 774 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1988-12-01', 0, 0, 'chcw', '2012-07-06', 'chungcw930', '2014-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS885425007739', 'Douglas Kelly', 0, '+81 80-5921-4761', 2, '149332434142600344', '24-kai, 4-9-1 Kamihigashi, Hirano Ward, Osaka, Japan', '1993-04-03', 0, 0, 'kelly9', '2021-10-28', 'dougkell831', '2003-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS353015921895', '廖安琪', 1, '+86 139-5612-4774', 1, '697952700847608097', '31F, 733 Sanlitun Road, Chaoyang District, Beijing, China', '1989-11-18', 0, 0, 'lia207', '2018-10-27', 'liaoanq', '2018-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS315006606384', '姜頴思', 0, '+1 838-908-2151', 0, '607484536629820920', '975 Lark Street Apartment 30, Albany, NY 12210, United States', '1993-10-24', 0, 0, 'wsc', '2009-01-08', 'wingszec1998', '2016-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS249482298055', '阿部美月', 1, '+86 21-4613-2778', 1, '881757815244310083', '中国上海市浦东新区健祥路842号28楼', '1998-02-03', 0, 0, 'abemit', '2001-02-19', 'abmitsuki', '2005-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS670889424230', 'Pamela Mitchell', 0, '+81 70-8390-5256', 1, '110733302404351847', '33F, 11 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1991-05-19', 0, 0, 'pmitc', '2004-02-23', 'pamela5', '2013-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS398567739487', '劉富城', 0, '+86 769-8552-9004', 3, '438676906973536526', 'No.24 building, 106 Huanqu South Street 2nd Alley, Dongguan, China', '1985-05-05', 0, 0, 'fushing10', '2010-01-27', 'fushing10', '2008-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS289735018570', '蕭浩然', 1, '+1 213-217-5890', 3, '557478431222521102', '236 S Broadway Apartment 43, Los Angeles, CA 90015, United States', '1995-04-15', 0, 0, 'siuhoyin', '2018-06-27', 'siuhoyin42', '2012-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS673247489342', '武睿', 1, '+81 3-6699-9298', 2, '082281106323966466', '日本東京品川区東五反田五丁目2番7号31階', '1995-02-25', 0, 0, 'rui4', '2002-09-02', 'ruiwu', '2021-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS950650801341', '官永權', 0, '+1 212-671-7177', 3, '462949635954541535', '440 West Houston Street Apt 46, New York, NY 10014, United States', '1990-03-14', 0, 0, 'koon6', '2004-03-18', 'wingkuen89', '2006-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS811040003207', '罗安琪', 1, '+81 90-1517-6374', 2, '746601925221743204', 'Rm. 31, 2-1-14 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1997-10-18', 0, 0, 'luo9', '2008-10-29', 'anqiluo', '2008-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS218617740763', 'Travis Morgan', 1, '+81 80-4412-5250', 4, '547666365899203204', '日本おおさかし東住吉区東田辺三丁目27番20号21号室', '1989-10-21', 0, 0, 'motravi', '2018-06-07', 'morgantravi', '2015-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS205448674936', 'Ryan Herrera', 1, '+1 838-194-3072', 0, '105540479362724225', '218 Central Avenue Apt 14, Albany, NY 12206, United States', '1986-04-23', 0, 0, 'herrryan', '2012-06-21', 'hryan531', '2003-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS076103002010', '容國榮', 0, '+81 90-4454-7978', 2, '056828643934264745', '日本札幌白石区菊水三条五丁目4番14号46号室', '1986-06-25', 0, 0, 'yungkw', '2018-03-25', 'yungkw719', '2008-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS603396487466', '韓思妤', 1, '+81 66-348-5075', 1, '134028816596492092', '31-kai, 1-1-11 Deshiro, Nishinari Ward, Osaka, Japan', '1998-01-16', 0, 0, 'syhan1979', '2013-01-26', 'hansy', '2002-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS661132513174', 'Mike Torres', 0, '+81 52-977-9225', 3, '990814573461303429', '日本なごやし瑞穂区河岸町四丁目20番5号49階', '1993-03-25', 0, 0, 'mikt', '2011-02-14', 'mt420', '2012-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS628887474379', 'Arthur Kelley', 0, '+81 70-6877-6354', 3, '213544746670879594', 'Rm. 27, 1-7-17 Omido, Higashiosaka, Osaka, Japan', '1989-10-26', 0, 0, 'arthk', '2009-03-17', 'arkel', '2001-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS558708507961', '田中優奈', 0, '+86 10-1554-5830', 0, '507782186908401055', '中国北京市朝阳区三里屯路638号华润大厦47室', '1990-01-14', 0, 0, 'tayu', '2011-11-27', 'yunatan2', '2007-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS151169460987', '野村舞', 1, '+86 161-4380-4806', 2, '001421133353827477', '中国广州市越秀区中山二路946号2室', '1990-12-09', 0, 0, 'mainomura65', '2014-05-26', 'mainomura', '2004-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS497114409908', '薛俊宇', 1, '+1 718-308-9458', 1, '641448688929234756', '289 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1993-04-22', 0, 0, 'sitcy', '2010-11-08', 'schunyu', '2004-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS002582578411', '福田花', 0, '+81 11-883-0107', 2, '073390008651255862', '日本札幌豊平区豊平三条十三丁目3番10号3号室', '1985-11-22', 0, 0, 'fukudha', '2003-12-30', 'hanafukuda', '2006-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS463908952740', '藤玲玲', 1, '+86 769-8845-8363', 2, '735590482264460406', '中国东莞东泰五街195号28室', '1994-06-24', 0, 0, 'lltang89', '2018-12-06', 'tanglingling12', '2002-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS763874187898', '唐明', 1, '+81 66-179-1236', 2, '948918127025510479', '31-kai, 1-1-20 Deshiro, Nishinari Ward, Osaka, Japan', '1992-11-06', 0, 0, 'tmi', '2000-09-04', 'tming', '2011-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS243018906018', '曾宇宁', 0, '+81 80-4577-7638', 2, '631471252277124931', '日本おおさかし近江堂一丁目7番4号29階', '1987-07-09', 0, 0, 'yuningz', '2002-01-29', 'zeny', '2013-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS968561064447', '區志明', 0, '+86 170-1581-2591', 3, '456689927619512754', 'Room 16, CR Building, 914 Jingtian East 1st St, Futian District, Shenzhen, China', '1995-11-29', 0, 0, 'auch504', '2004-09-26', 'chimingau6', '2009-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS103069242992', 'Edna Jenkins', 1, '+81 70-2238-3509', 1, '208936353176140259', 'Rm. 33, 1-7-2 Saidaiji Akodacho, Nara, Japan', '1991-03-01', 0, 0, 'ednajenkins2', '2008-05-26', 'ednjen10', '2017-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS810712705535', '沈詩涵', 1, '+86 755-7086-2360', 3, '112503959512857476', 'No.21 building, 207 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1986-01-17', 0, 0, 'sheshihan02', '2005-09-05', 'sshih321', '2011-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS034502706550', '羅明', 0, '+44 (161) 322 9512', 4, '998570062544745253', 'No.25 Main building, 435 Mosley St, Manchester, M2 3AQ, United Kingdom', '1992-09-22', 0, 0, 'lomi02', '2020-05-30', 'loming', '2001-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS154788791797', '池田葵', 0, '+1 330-793-3890', 1, '394581104309065520', '512 Riverview Road Apt 24, Akron, OH 44313, United States', '1995-11-26', 0, 0, 'aoiikeda7', '2017-12-15', 'aoii74', '2009-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS711853201764', '關國榮', 1, '+86 184-6395-4988', 1, '339333912418621018', 'Room 44, 684 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1996-05-30', 0, 0, 'kkwokwing3', '2014-05-02', 'kwkwan1103', '2021-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS914618790723', 'Wendy Kelley', 1, '+44 (1223) 98 1636', 3, '532564386803059134', 'Unit 19, Oxford Eco Centre, 168 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1991-06-05', 0, 0, 'wk412', '2009-10-14', 'kellwend', '2006-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS276401525559', '高橋花', 1, '+1 213-740-0152', 1, '382439250865582126', '398 Grape Street Apt 27, Los Angeles, CA 90002, United States', '1988-01-13', 0, 0, 'takahashihana', '2021-08-26', 'takahha', '2011-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS600335756813', 'William Crawford', 1, '+81 11-009-0558', 2, '909982748586984504', '日本札幌中央区宮の森四条六丁目1番9号13階', '1998-12-05', 0, 0, 'crawfordw', '2017-02-13', 'cwilliam805', '2003-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS188035250370', 'Eddie Ross', 0, '+81 90-8999-3025', 2, '980505225666726411', '日本札幌豊平区豊平三条十三丁目3番10号39号室', '1990-11-01', 0, 0, 'rosseddie', '2010-08-05', 'eross6', '2022-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS127830072096', '和田玲奈', 1, '+86 28-151-1927', 3, '223151136528725503', '中国成都市成华区二仙桥东三路37号4楼', '1991-09-09', 0, 0, 'rena1998', '2000-04-16', 'ware7', '2017-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS877723972555', '曾梓晴', 0, '+81 74-699-5368', 2, '346749305707314165', '日本ならし大和郡山市本庄町一丁目1番19号18階', '1991-01-18', 0, 0, 'tszching228', '2007-11-13', 'tszching4', '2005-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS293624521219', '田曉彤', 0, '+81 3-6328-0184', 2, '705957988240510514', '日本東京中央区銀座三丁目12番4号2号室', '1991-05-03', 0, 0, 'tinht725', '2007-03-09', 'tihiutung825', '2018-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS872575045934', 'Harry Jordan', 0, '+81 90-7754-2589', 4, '942030255617113761', '日本おおさかし西成区出城一丁目1番17号48階', '1996-03-28', 0, 0, 'jorharry', '2014-08-10', 'hjordan', '2021-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS523767424170', '杉山美月', 0, '+86 150-8941-7988', 3, '729846231697482778', '中国广州市越秀区中山二路136号44栋', '1995-09-24', 0, 0, 'sugiyama1117', '2007-11-30', 'mitsuki8', '2018-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS620898819215', 'Lori Weaver', 1, '+81 52-763-0543', 1, '874440020063891266', '日本なごやし守山区瀬古東二丁目171番3号21階', '1997-06-01', 0, 0, 'loweaver', '2011-03-30', 'weaver2', '2014-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS809174284627', 'Clara Gordon', 1, '+1 718-653-3625', 0, '850640215619473070', '668 1st Ave Apt 41, Brooklyn, NY 11220, United States', '1989-08-20', 0, 0, 'clara44', '2000-07-06', 'gordon87', '2000-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS006926192483', '吕子韬', 0, '+86 760-014-7055', 3, '958978016608979862', 'No.32 building, 426 Lefeng 6th Rd, Zhongshan, China', '1997-01-30', 0, 0, 'zitl', '2007-08-21', 'luzita7', '2021-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS790984913559', '丁璐', 1, '+86 177-2249-3855', 1, '408666694980334137', 'Room 48, CR Building, 856 Hongqiao Rd., Xu Hui District, Shanghai, China', '1994-07-14', 0, 0, 'luding1113', '2003-12-29', 'dil', '2000-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS222153110946', 'Wayne Wells', 1, '+86 192-8236-0840', 1, '829384686251370418', 'No.27 building, 403 West Chang''an Avenue, Xicheng District, Beijing, China', '1988-03-05', 0, 0, 'waywells', '2007-05-11', 'wellswa', '2002-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS442604723643', '葉浩然', 0, '+44 7646 446143', 2, '223703422469084030', 'No.42 Main building, 741 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1985-04-07', 0, 0, 'hoyiny', '2015-07-05', 'yiphy', '2019-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS925832216540', '中山詩乃', 1, '+81 90-6852-5120', 3, '753999788729037703', '日本札幌豊平区豊平三条十三丁目3番18号1階', '1998-03-02', 0, 0, 'shino9', '2016-02-18', 'nashino', '2018-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS531232536785', '福田七海', 1, '+86 158-1870-7693', 2, '647233185530816163', '中国深圳龙岗区布吉镇西环路506号华润大厦8室', '1987-09-01', 0, 0, 'fukudanana3', '2019-12-31', 'fnanami04', '2017-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS199539007940', 'Kelly Wallace', 1, '+86 153-8968-7743', 2, '915096804387682009', 'Room 32, 402 Hongqiao Rd., Xu Hui District, Shanghai, China', '1992-06-22', 0, 0, 'wallace109', '2004-07-04', 'wallace522', '2019-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS163914190341', '夏岚', 1, '+1 330-824-4719', 2, '884362873206992399', '554 Ridgewood Road Apartment 6, Akron, OH 44321, United States', '1995-08-04', 0, 0, 'xial', '2018-08-20', 'lanxia10', '2018-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS679517298721', 'Theodore Lee', 1, '+86 755-5226-0500', 1, '911622401761980089', '中国深圳龙岗区布吉镇西环路432号13楼', '1995-02-27', 0, 0, 'letheodore4', '2000-10-28', 'theodore64', '2017-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS855239328357', '房永發', 1, '+44 5076 663892', 1, '930824909304062697', 'Unit 48, Oxford Eco Centre, 568 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1986-04-14', 0, 0, 'fongwi', '2019-08-27', 'wingffon', '2006-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS547603858939', '王曉彤', 1, '+86 192-8134-0443', 4, '834771030311926302', '中国上海市浦东新区橄榄路822号13栋', '1985-07-29', 0, 0, 'wong03', '2012-04-22', 'htwong', '2009-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS267348879484', '呂學友', 0, '+86 196-8670-8647', 4, '836829982351907694', '中国东莞东泰五街375号25栋', '1994-12-10', 0, 0, 'luihokyau', '2012-12-17', 'hokyau707', '2000-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS818068850402', '中島悠人', 0, '+44 7967 472699', 1, '323807926596517197', 'Flat 22, 70 Pollen Street, London, W1S 1NG, United Kingdom', '1990-09-21', 0, 0, 'yuton', '2004-03-10', 'yutnak', '2002-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS808206939943', 'Kevin Sanders', 0, '+1 614-675-3004', 0, '991580868577258771', '756 Diplomacy Drive Apt 31, Columbus, GA 43228, United States', '1993-09-05', 0, 0, 'kevin1984', '2006-08-21', 'kevinsanders', '2005-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS404642107453', 'Joan Patel', 1, '+1 330-616-8001', 3, '806623606528087388', '784 West Market Street 3rd Floor, Akron, OH 44333, United States', '1992-01-13', 0, 0, 'pateljoan', '2013-10-30', 'joapa8', '2016-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS077666167423', '邵小慧', 1, '+44 (161) 324 6219', 0, '816592831569746181', 'Block 50, 999 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-02-08', 0, 0, 'ssw', '2022-01-21', 'siusiu', '2020-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS271159826001', '戴慧儀', 0, '+81 80-0281-2495', 1, '154843426955661312', '日本東京中央区銀座三丁目12番20号10階', '1986-08-29', 0, 0, 'daiwy', '2014-02-08', 'daiwaiyee', '2000-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS728412932590', '周致远', 1, '+44 (121) 895 5015', 3, '111372732200982105', 'Block 16, 370 New Street, Birmingham, B2 4DB, United Kingdom', '1995-09-20', 0, 0, 'zzhiy', '2013-07-10', 'zhouzhiyuan830', '2002-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS417230039974', '孙晓明', 0, '+86 161-6212-4909', 2, '361470559381803155', 'No.10 building, 100 FuXingMenNei Street, XiCheng District, Beijing, China', '1989-04-08', 0, 0, 'xiaoming6', '2003-09-11', 'xiaosu', '2000-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS381385482731', 'Frederick James', 0, '+81 90-5356-0054', 3, '048429718410760106', '日本おおさかし平野区加美東四丁目9番14号31階', '1990-03-20', 0, 0, 'frederick708', '2005-09-25', 'frjames', '2018-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS801446519561', 'Clarence Young', 0, '+44 (116) 999 4368', 0, '706970972809603267', 'No.40 Main building, 803 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1992-07-22', 0, 0, 'youngclare1231', '2015-09-04', 'clayoung2018', '2018-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS201157289224', 'Timothy Black', 1, '+81 11-142-3291', 2, '443919892284569540', '35-kai, 13-3-8 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1985-03-11', 0, 0, 'tblack3', '2015-04-19', 'bltimothy', '2005-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS772128608695', '高木陽菜', 1, '+81 90-2494-7586', 2, '961803286756857335', '18F, 5-19-14 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1992-10-08', 0, 0, 'takagihina', '2014-11-04', 'hitakagi1012', '2004-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS195770014184', '福田和真', 0, '+86 177-0800-7692', 3, '630769074851940651', '中国中山紫马岭商圈中山五路242号6号楼', '1994-05-04', 0, 0, 'fukuda2', '2016-11-19', 'kazumafukuda1', '2013-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS572918662914', 'Jonathan Flores', 1, '+81 70-9937-5994', 2, '676829331439498682', 'Rm. 1, 1-7-9 Omido, Higashiosaka, Osaka, Japan', '1989-05-04', 0, 0, 'jonathan1004', '2020-04-12', 'floresjo', '2003-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS810180662936', '余子异', 0, '+44 (151) 407 5408', 1, '433657637920693071', 'Block 37, 686 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1995-04-08', 0, 0, 'yuziyi', '2014-12-23', 'zy10', '2006-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS170068488190', '韦詩涵', 1, '+81 11-973-1055', 2, '571959021922592573', '日本札幌白石区菊水三条五丁目2番16号18階', '1993-09-16', 0, 0, 'wshi', '2016-09-28', 'shihwe', '2018-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS152454969650', '曹小慧', 1, '+81 11-939-9023', 2, '043876990984359062', '22F, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1987-05-22', 0, 0, 'swcho93', '2022-01-20', 'siuwaicho', '2016-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS846667525508', 'Rhonda Murphy', 1, '+81 66-679-6743', 1, '504809392053064506', '日本おおさかし近江堂一丁目7番9号23階', '1998-10-18', 0, 0, 'murhonda', '2012-03-30', 'murpr9', '2005-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS579900221342', '邓子韬', 1, '+86 146-8244-6437', 1, '100788700523722939', 'No.10 building, 142 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1990-08-02', 0, 0, 'zitao4', '2022-02-23', 'deng5', '2014-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS703572123614', '徐杰宏', 0, '+81 90-9600-6017', 1, '267479667637343297', '日本ならし西大寺赤田町一丁目7番7号3号室', '1998-10-05', 0, 0, 'xjieho', '2010-03-25', 'xujiehong', '2014-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS661209670300', 'Jonathan Burns', 0, '+1 312-566-7668', 0, '748088487650723417', '252 Rush Street Apt 17, Chicago, IL 60611, United States', '1997-07-22', 0, 0, 'jburn', '2002-08-31', 'jbur', '2016-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS555094204779', '李詠詩', 0, '+81 70-8994-0454', 3, '287760123475417429', '日本ならし学園南三丁目9番19号19階', '1996-06-19', 0, 0, 'wsl', '2009-05-01', 'wsle6', '2020-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS532395336213', '胡國賢', 0, '+81 90-2064-3886', 1, '546205084763658571', '日本おおさかし西成区天神ノ森二丁目1番15号10階', '1985-05-27', 0, 0, 'kwokyin7', '2012-10-13', 'wuky1212', '2017-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS073373931065', '戴思妤', 0, '+86 183-9760-2593', 2, '817303355963995270', '46F, 419 Dong Zhi Men, Dongcheng District, Beijing, China', '1986-10-20', 0, 0, 'dasz', '2022-01-13', 'daiszeyu', '2002-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS716513857330', '有村大地', 0, '+44 (20) 2500 3482', 1, '946751920797499458', 'Block 36, 339 Pollen Street, London, W1S 1NG, United Kingdom', '1989-08-31', 0, 0, 'daichiarimura', '2019-04-13', 'arimura203', '2019-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS955167094813', 'Theodore Turner', 1, '+81 66-663-1402', 4, '217361902014031046', '日本おおさかし近江堂一丁目7番4号44号室', '1991-05-04', 0, 0, 'theturner62', '2018-03-04', 'tut1', '2022-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS403534492523', '加藤美緒', 0, '+81 11-252-4935', 4, '979037722410334929', '27F, 6-1-14, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1990-02-09', 0, 0, 'mioka', '2016-12-10', 'mkato710', '2010-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS344144588050', '井上花', 1, '+81 70-4591-3695', 4, '299068984259612243', 'Rm. 44, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-07-26', 0, 0, 'inhana', '2015-04-24', 'ih819', '2004-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS494119497267', '渡辺海斗', 1, '+86 769-0722-6058', 4, '602172616436471554', 'No.2 building, 120 Dongtai 5th St, Dongguan, China', '1985-12-25', 0, 0, 'sato44', '2014-01-10', 'kaitosato', '2007-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS903420035241', '樂慧敏', 0, '+86 170-8568-7716', 1, '861901408018718846', 'Room 39, CR Building, 33 68 Qinghe Middle St, Haidian District, Beijing, China', '1995-03-01', 0, 0, 'wmlok', '2011-07-28', 'waimanlok', '2008-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS867325358795', '高橋明菜', 1, '+44 (116) 349 3596', 0, '078685182037108893', 'No.10 Main building, 962 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1997-06-12', 0, 0, 'taakin520', '2009-02-15', 'akinta3', '2010-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS091984813759', '高子异', 1, '+81 74-415-6036', 3, '413174272783549325', '日本ならし大和郡山市本庄町一丁目1番17号47階', '1991-06-25', 0, 0, 'gao10', '2006-10-14', 'ziyiga', '2002-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS024194994455', '原田明菜', 0, '+86 10-885-8416', 2, '705150864554260009', 'Room 35, CR Building, 905 68 Qinghe Middle St, Haidian District, Beijing, China', '1996-07-22', 0, 0, 'ha1222', '2014-12-02', 'akina96', '2009-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS441676960610', '龙杰宏', 1, '+81 70-9037-8736', 4, '538243595697884707', '36-kai, 3-27-1 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1998-10-19', 0, 0, 'longjieh2', '2003-09-01', 'jiehong719', '2021-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS640548422770', '藤原聖子', 0, '+44 7251 226998', 2, '093159321661910113', 'Unit 10, Oxford Eco Centre, 146 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1985-09-20', 0, 0, 'sfujiwara', '2014-09-13', 'seikofu', '2006-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS266239361963', 'Laura Watson', 0, '+81 11-084-0377', 4, '762061891034637893', '日本札幌豊平区豊平三条十三丁目3番8号47号室', '1994-04-17', 0, 0, 'watsla', '2016-11-08', 'walaura74', '2019-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS434865516398', '武宇宁', 0, '+1 213-804-0893', 0, '376297340235012926', '550 Wall Street Apartment 15, Los Angeles, CA 90003, United States', '1989-05-07', 0, 0, 'yuningwu16', '2013-08-04', 'wuyuning', '2003-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS766244729359', '馬淑怡', 0, '+44 (121) 942 2210', 0, '858814125324163727', 'Flat 8, 108 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1995-10-21', 0, 0, 'sukyeema', '2000-07-08', 'sukyeema', '2008-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS300163281872', 'Louis Henderson', 1, '+86 755-290-6012', 3, '054081142642306253', '中国深圳龙岗区布吉镇西环路163号华润大厦42室', '1997-12-03', 0, 0, 'louis1995', '2011-12-03', 'henderson5', '2012-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS384045980993', '周德華', 1, '+1 213-810-2630', 0, '680329041414846375', '296 Figueroa Street Apartment 26, Los Angeles, CA 90037, United States', '1992-06-11', 0, 0, 'tachow', '2021-12-22', 'takwah20', '2012-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS888996444267', '崔頴璇', 0, '+1 213-027-8894', 0, '624080850969324063', '934 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1997-11-06', 0, 0, 'wingsuenchoi918', '2014-12-01', 'wingsuenc', '2006-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS829860620720', 'Shirley Anderson', 0, '+86 155-4300-5404', 1, '234674531799225578', 'No.9 building, 201 Shennan Ave, Futian District, Shenzhen, China', '1994-05-18', 0, 0, 'andeshirl', '2000-08-26', 'shirleyanderson', '2021-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS859454612498', '任仲賢', 0, '+1 212-972-3876', 4, '783324606608174484', '637 Bank Street Apt 11, New York, NY 10014, United States', '1985-09-22', 0, 0, 'yamcy220', '2003-03-09', 'chungyinyam', '2005-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS143293758710', '顾震南', 0, '+44 (121) 680 0522', 0, '436285066009477056', 'Flat 41, 95 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1989-07-31', 0, 0, 'guzhennan3', '2000-11-23', 'zhennan15', '2010-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS593549289526', '柴田凛', 1, '+86 169-3395-6643', 2, '477612818368521064', '中国北京市房山区岳琉路786号37室', '1993-08-21', 0, 0, 'shibatarin61', '2008-05-28', 'shibarin8', '2013-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS378495892175', '石田陸', 0, '+86 21-3605-8287', 2, '455473320069124477', '32F, 930 Middle Huaihai Road, Huangpu District, Shanghai, China', '1997-09-10', 0, 0, 'rikish', '2004-03-25', 'riku6', '2001-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS164356957000', '杜霆鋒', 1, '+81 70-6242-3073', 1, '302225840408697610', '日本おおさかし西成区天神ノ森二丁目1番12号32階', '1997-09-14', 0, 0, 'totf', '2013-08-08', 'tingfungto', '2008-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS744446545235', '河野光', 1, '+86 191-8176-9262', 3, '102230118759535683', 'No.41 building, 984 Lefeng 6th Rd, Zhongshan, China', '1991-02-10', 0, 0, 'konohikaru', '2021-08-09', 'hikaru2', '2018-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS445559427520', 'Lee Ward', 1, '+81 80-6696-3226', 1, '230082137853637555', '36-kai, 14 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-02-01', 0, 0, 'walee', '2011-01-12', 'wardlee', '2012-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS135170045786', '林舞', 0, '+81 3-3122-3848', 1, '075653828248377474', '日本東京港区東新橋一丁目5番5号36階', '1993-07-14', 0, 0, 'maihay', '2004-11-03', 'mha67', '2015-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS678804001273', '中島樹', 1, '+86 21-813-7753', 3, '650630640547842522', 'No.13 building, 135 Hongqiao Rd., Xu Hui District, Shanghai, China', '1986-02-10', 0, 0, 'itsukinakajima', '2016-08-11', 'itsuki706', '2012-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS214850995171', '陶秀英', 0, '+86 146-9829-0032', 0, '938326445192888067', 'Room 3, CR Building, 684 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1992-12-25', 0, 0, 'xiuyit1101', '2019-12-20', 'taoxiuying', '2017-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS440157439817', '木下結翔', 0, '+1 838-008-5538', 2, '684174285723781203', '600 Lark Street 3rd Floor, Albany, NY 12210, United States', '1989-03-26', 0, 0, 'yuitkinoshita60', '2007-09-24', 'yuitokinoshita97', '2020-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS613770935787', '市川玲奈', 1, '+1 213-640-4769', 2, '675190689457794363', '716 S Broadway Apt 13, Los Angeles, CA 90015, United States', '1987-03-19', 0, 0, 'rena1204', '2001-05-05', 'ichikawa520', '2014-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS122461082186', '石井彩乃', 0, '+86 10-176-2913', 2, '056109873766378231', '中国北京市房山区岳琉路70号34号楼', '1988-05-23', 0, 0, 'ishii330', '2010-01-08', 'ayanoishii', '2010-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS356270519572', 'Alfred Spencer', 1, '+81 3-8243-0667', 2, '024960213066307690', '日本東京渋谷区代々木二丁目3番10号32号室', '1987-07-31', 0, 0, 'alfs', '2017-12-07', 'alfredsp', '2004-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS537290928807', 'Kelly Diaz', 1, '+86 169-2056-3579', 0, '554250044353787610', 'Room 48, 703 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1993-01-13', 0, 0, 'dik51', '2009-08-12', 'kdiaz1992', '2004-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS862071713016', 'Diana Stewart', 1, '+44 (1865) 11 5959', 3, '812136903837592721', 'No.2 Main building, 747 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1994-12-30', 0, 0, 'stewadiana41', '2013-01-10', 'stewart4', '2004-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS068245554243', '邵梓晴', 1, '+81 52-173-1502', 2, '106739215094001366', '日本なごやし瑞穂区河岸町四丁目20番13号5階', '1997-08-12', 0, 0, 'sts6', '2005-12-31', 'tcs1119', '2015-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS509788083124', '汪震南', 0, '+1 718-304-4690', 1, '660908343873747452', '166 1st Ave Suite 15, Brooklyn, NY 11220, United States', '1988-03-12', 0, 0, 'wangzhennan9', '2019-04-20', 'wangzhe', '2001-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS564900980484', 'Kimberly Ferguson', 1, '+86 148-9242-4170', 2, '042426319295896322', '中国深圳罗湖区清水河一路383号14栋', '1988-11-02', 0, 0, 'kimberlyfe76', '2002-01-18', 'kimberlyferg', '2009-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS248490701218', '元家輝', 1, '+86 182-9842-0505', 2, '397333703519537270', 'Room 44, CR Building, 22 Shanhu Rd, Dongguan, China', '1991-05-06', 0, 0, 'yuen6', '2020-02-22', 'ykf618', '2006-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS025739869681', '邱安琪', 1, '+86 132-1802-3874', 1, '572924922078607264', '中国深圳龙岗区学园一巷923号28栋', '1995-09-19', 0, 0, 'onkayyau', '2003-05-11', 'onkayya', '2020-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS625181495038', '陆詩涵', 1, '+81 3-5352-7133', 2, '195203419017031386', '30F, 3-15-6 Ginza, Chuo-ku, Tokyo, Japan', '1989-01-06', 0, 0, 'shihan42', '2002-03-23', 'shihan7', '2000-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS917127226239', 'Laura Mason', 1, '+86 167-6443-3924', 2, '596827280182846225', '中国上海市浦东新区健祥路16号华润大厦45室', '1987-06-04', 0, 0, 'laura52', '2000-04-25', 'masonlaura1212', '2016-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS499822272524', '鄺安琪', 0, '+81 74-567-7664', 4, '293374820105374013', '11-kai, 1-7-15 Saidaiji Akodacho, Nara, Japan', '1990-06-15', 0, 0, 'onkay74', '2011-08-31', 'kwong6', '2013-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS871973429114', 'Antonio Williams', 1, '+86 755-776-2539', 3, '830749383327121587', 'Room 1, 904 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1990-01-31', 0, 0, 'williamsantonio520', '2017-01-02', 'aw2000', '2012-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS190573365018', '今井悠人', 1, '+81 90-9552-0509', 2, '304614322346868709', '日本なごやし守山区瀬古東二丁目171番14号34階', '1997-07-13', 0, 0, 'iyuto10', '2004-07-03', 'iyuto18', '2002-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS925524321069', '韦岚', 0, '+44 (20) 3215 0422', 3, '606616718616470696', 'No.8 Main building, 955 Maddox Street, London, W1S 1PU, United Kingdom', '1993-02-01', 0, 0, 'lan6', '2012-02-02', 'lawei', '2001-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS829347880584', '方睿', 1, '+81 3-2414-6417', 4, '283262209259186407', '46-kai, 1-6-9, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1991-11-28', 0, 0, 'ruifa', '2010-11-11', 'fangrui', '2000-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS453186280167', '伍安娜', 0, '+81 80-4891-4013', 3, '852321081845023960', 'Rm. 38, 5-4-2 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1995-03-10', 0, 0, 'ngon', '2011-04-03', 'onng1129', '2006-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS017479642387', '翁惠敏', 1, '+1 312-018-5370', 0, '128560351944962354', '564 North Michigan Ave Apartment 1, Chicago, IL 60611, United States', '1996-12-11', 0, 0, 'yungwm78', '2003-11-28', 'yuwai', '2003-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS770511323959', '孫安娜', 1, '+86 143-2729-5133', 3, '833287802011497966', 'Room 20, CR Building, 805 Hongqiao Rd., Xu Hui District, Shanghai, China', '1990-11-20', 0, 0, 'hsuanon3', '2005-12-13', 'onnah', '2011-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS914867111963', '韓秀文', 0, '+86 130-8924-8048', 0, '131349794980767817', '中国北京市海淀区清河中街68号190号5号楼', '1999-01-19', 0, 0, 'hansm', '2014-05-26', 'sauman5', '2012-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS375259605208', 'Jimmy Kelly', 1, '+86 178-0077-6003', 3, '429261712230048589', '中国广州市白云区小坪东路293号44楼', '1997-06-21', 0, 0, 'jimmyk610', '2009-03-31', 'kelly8', '2004-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS594584448706', '孔杰宏', 0, '+81 70-5488-7000', 0, '907403581481308159', '23-kai, 5-2-6 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1993-08-08', 0, 0, 'kong406', '2001-12-30', 'jik74', '2017-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS524234733012', '岡田葉月', 0, '+44 7016 700074', 2, '889327893276181946', 'Flat 40, 198 Redfern St, Liverpool, L20 8JB, United Kingdom', '1989-07-12', 0, 0, 'okadahaz1119', '2000-06-17', 'hazukiokada3', '2007-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS137326672713', '邱梓軒', 0, '+86 755-9108-7439', 1, '718310976496037611', '中国深圳龙岗区布吉镇西环路150号30栋', '1998-10-30', 0, 0, 'yautszhin', '2007-11-15', 'thya', '2003-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS335124878523', 'Herbert Brown', 1, '+44 (1223) 56 8286', 0, '084266779826637898', 'No.36 Main building, 328 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1993-06-18', 0, 0, 'herbertb', '2009-05-17', 'hbro', '2010-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS669696915785', '曹裕玲', 0, '+81 66-428-9680', 1, '374395681073593139', '17-kai, 3-27-15 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1986-08-07', 0, 0, 'choyuling', '2021-01-04', 'yuling2', '2006-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS453605116683', 'Diane Coleman', 1, '+44 (1865) 81 5833', 2, '122194344907754451', 'Block 50, 930 Park End St, Oxford, OX1 1JD, United Kingdom', '1991-09-24', 0, 0, 'dianecoleman', '2011-09-17', 'cdiane', '2019-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS722304857941', '熊云熙', 1, '+1 614-770-3581', 1, '021245919719924189', '236 East Alley 3rd Floor, Columbus, GA 43201, United States', '1986-02-14', 0, 0, 'xionyu', '2012-10-31', 'xyunxi', '2010-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS294190241377', 'Carmen Baker', 1, '+86 180-8653-4604', 3, '313609067196142306', '中国广州市越秀区中山二路343号华润大厦13室', '1986-08-09', 0, 0, 'carbake506', '2002-02-23', 'bakerc', '2015-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS354961468533', '馬國明', 1, '+81 11-687-6522', 1, '001146550342667489', '39F, 2-1-10 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-08-31', 0, 0, 'makwokming', '2018-02-27', 'ma6', '2015-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS055658493319', '高田光莉', 0, '+81 70-5015-0321', 0, '463055864624265723', '49-kai, 6-1-7, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-10-29', 0, 0, 'th5', '2010-08-19', 'hikari10', '2008-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS791422136897', 'Mike Brown', 0, '+86 191-9015-8888', 0, '336147025647870877', 'Room 29, CR Building, 995 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1985-03-07', 0, 0, 'mikebro', '2006-11-02', 'mikbrown', '2004-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS417989654060', '吉田拓哉', 1, '+1 330-975-9617', 3, '035481335918455923', '841 West Market Street Apt 17, Akron, OH 44333, United States', '1996-10-06', 0, 0, 'yoshidata', '2016-03-14', 'yoshida6', '2017-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS002136533960', '邵秀英', 1, '+81 70-6448-0261', 0, '162149970168388886', '日本ならし大和郡山市本庄町一丁目1番15号28号室', '1988-07-10', 0, 0, 'xiuying8', '2007-09-18', 'shao618', '2020-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS550600271558', '中川聖子', 0, '+81 80-6550-3149', 1, '043352327970122891', 'Rm. 6, 15 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1992-03-31', 0, 0, 'nakseiko17', '2016-07-25', 'seina', '2018-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS758389440962', 'Matthew Woods', 0, '+86 182-0127-5664', 2, '770603334063176941', '中国中山紫马岭商圈中山五路145号6号楼', '1996-04-19', 0, 0, 'matthew1027', '2008-05-15', 'mw7', '2011-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS983915462313', '岩崎玲奈', 0, '+86 171-4812-7144', 1, '770752455521087260', '中国深圳福田区景田东一街155号华润大厦47室', '1986-07-20', 0, 0, 'renaiwasaki', '2011-07-05', 'renaiwas10', '2005-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS238166088135', '戴詩涵', 0, '+81 70-9358-1862', 4, '638942724236796987', 'Rm. 25, 8 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-11-25', 0, 0, 'dais', '2012-02-18', 'dai1954', '2004-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS604275308384', '何詠詩', 0, '+86 181-7765-4110', 1, '273175762773094422', '中国深圳福田区深南大道145号13号楼', '1988-03-21', 0, 0, 'howingsze', '2001-03-27', 'ho1', '2011-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS899081928818', '高木光莉', 0, '+86 10-598-9660', 1, '628917315507496910', 'No.45 building, 965 East Wangfujing Street, Dongcheng District , Beijing, China', '1986-03-13', 0, 0, 'takhika', '2015-05-05', 'takaghi', '2017-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS230729001001', 'Norma Hernandez', 1, '+86 168-6722-4514', 3, '542636751826628580', 'Room 35, CR Building, 792 Lefeng 6th Rd, Zhongshan, China', '1990-07-10', 0, 0, 'normah', '2010-12-07', 'hernandez9', '2018-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS117321444135', 'Raymond Reyes', 1, '+81 80-1339-6022', 2, '768735447509248076', '日本東京千代田区丸の内一丁目6番17号17号室', '1989-05-23', 0, 0, 'reyraymo', '2001-10-07', 'reyraymond', '2011-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS760656235396', 'Pamela Griffin', 0, '+81 52-430-5950', 1, '608748317436609813', '日本なごやし北区楠味鋺三丁目80番11号29階', '1988-04-25', 0, 0, 'pamelagriff', '2015-01-10', 'grp', '2010-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS463499152053', '邵晓明', 0, '+86 178-4333-6074', 2, '572980951118623090', '中国深圳福田区深南大道48号6室', '1992-06-07', 0, 0, 'xiaomingshao', '2021-07-23', 'xiaoming13', '2017-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS364450207477', '胡璐', 0, '+86 160-2736-8528', 4, '743234178025207320', '中国广州市海珠区江南西路111号25室', '1990-07-22', 0, 0, 'hulu', '2000-01-08', 'hu608', '2017-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS369520692207', '方子异', 0, '+81 74-879-2942', 0, '297367671432778732', '日本ならし西大寺赤田町一丁目7番5号13階', '1991-01-11', 0, 0, 'ziyfang', '2013-01-08', 'ziyifang', '2016-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS904687500116', '苑浩然', 0, '+81 80-8504-6960', 2, '363045270670164317', '日本東京品川区東五反田五丁目2番1号19号室', '1989-05-26', 0, 0, 'hyyuen911', '2013-03-16', 'hoyin7', '2000-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS079500579794', '常岚', 0, '+81 80-5538-7882', 2, '632982965641685091', '日本札幌白石区菊水三条五丁目2番12号7階', '1987-09-28', 0, 0, 'cla', '2013-09-07', 'changlan', '2012-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS543158641602', 'Kyle Ferguson', 0, '+81 3-2202-0955', 0, '856137139943688215', 'Rm. 50, 1-6-5, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1993-04-04', 0, 0, 'kyle9', '2020-08-05', 'ferkyle', '2000-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS255955027983', '姚家強', 0, '+1 213-513-7908', 4, '779442528944673000', '365 Figueroa Street Apartment 41, Los Angeles, CA 90037, United States', '1997-07-26', 0, 0, 'kkye817', '2008-11-21', 'yeokk', '2001-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS227634251037', '邱安琪', 0, '+86 20-2822-1101', 0, '088417779966207046', '中国广州市白云区小坪东路805号6号楼', '1994-07-04', 0, 0, 'qiuanq', '2022-02-14', 'anqiqiu9', '2017-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS997785161712', '曹霆鋒', 1, '+1 614-965-4691', 3, '887468828105657454', '715 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1993-03-01', 0, 0, 'chotf', '2000-01-19', 'tfcho', '2000-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS925168430159', 'Irene Palmer', 0, '+44 (20) 3996 3623', 3, '586352451223625672', 'Flat 28, 772 Pollen Street, London, W1S 1NG, United Kingdom', '1987-12-30', 0, 0, 'pirene', '2014-01-30', 'palmerirene86', '2005-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS252517129919', 'Ashley Dunn', 1, '+81 90-1504-2095', 2, '285645307805572567', 'Rm. 12, 2-1-5 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1989-03-19', 0, 0, 'dunnashley', '2016-03-20', 'dunn13', '2007-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS638122632183', '范致远', 1, '+86 10-5348-3972', 0, '045316891836027661', 'Room 19, CR Building, 536 028 County Rd, Yanqing District, Beijing, China', '1990-06-17', 0, 0, 'fzhiy', '2008-09-08', 'zhiyfan504', '2006-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS841067263378', '范杰宏', 0, '+86 192-6662-2787', 1, '993317778385625266', 'Room 10, CR Building, 781 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1985-10-22', 0, 0, 'fanjiehong', '2016-05-12', 'fanj8', '2002-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS466025771654', '任榮發', 1, '+86 133-3626-3895', 0, '821762937030330276', '中国东莞珊瑚路442号华润大厦31室', '1997-03-16', 0, 0, 'wingfatya', '2019-04-28', 'wiy', '2015-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS011112134883', '宣志明', 1, '+81 90-3778-1249', 2, '245188111675771068', '日本札幌白石区菊水三条五丁目2番13号41号室', '1998-09-12', 0, 0, 'chimingh', '2012-11-29', 'hcm4', '2020-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS418180317090', '菊地陽太', 0, '+1 838-845-0714', 2, '498000859105569916', '73 State Street Suite 48, Albany, NY 12203, United States', '1996-08-13', 0, 0, 'kyota', '2008-09-07', 'kikuyota', '2011-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS624143330233', '朱致远', 1, '+81 80-0368-7346', 4, '667852746611279421', '日本おおさかし東住吉区東田辺三丁目27番3号2階', '1992-06-01', 0, 0, 'zzh', '2016-04-06', 'zhuzhiyuan18', '2014-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS673085957895', '石井凛', 0, '+81 90-1666-6860', 3, '193278788351948861', '日本なごやし守山区瀬古東二丁目171番9号22階', '1992-01-17', 0, 0, 'rishii', '2007-05-19', 'ishiirin', '2009-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS483617466074', '鈴木玲奈', 0, '+81 11-515-6132', 1, '474879880251546014', 'Rm. 22, 2-1-14 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1986-06-06', 0, 0, 'renasuzuki', '2005-01-26', 'suzukirena', '2018-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS210023221104', '千葉明菜', 0, '+44 7950 275977', 1, '655343043002788879', 'Block 50, 727 Sackville St, Manchester, M1 3BB, United Kingdom', '1994-06-20', 0, 0, 'akina46', '2006-06-16', 'chakin', '2006-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS730479397017', 'Harold Rogers', 1, '+1 330-136-4109', 1, '677672921893056637', '587 West Market Street Apt 37, Akron, OH 44333, United States', '1994-02-18', 0, 0, 'harogers', '2007-08-06', 'rharol9', '2007-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS846481762696', '斉藤架純', 1, '+44 7183 575989', 1, '762372919268648287', 'Unit 48, Oxford Eco Centre, 494 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1985-10-19', 0, 0, 'kasusaito', '2014-12-27', 'kassaito52', '2002-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS180135966699', '井上一輝', 0, '+81 80-0297-6954', 1, '157060419152374849', '日本札幌厚別区上野幌一条二丁目1番12号16号室', '1996-11-23', 0, 0, 'ikkin', '2015-05-05', 'inoueikk929', '2020-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS583736738161', 'Nicholas Garza', 0, '+44 7221 367094', 4, '152446984643679712', 'Flat 27, 642 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-12-23', 0, 0, 'gnicholas', '2005-10-17', 'gnicholas', '2004-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS996587922848', '丸山紗良', 1, '+1 838-814-9871', 0, '472875659594132128', '272 Lark Street Apartment 22, Albany, NY 12210, United States', '1993-05-03', 0, 0, 'marusa523', '2019-06-21', 'sarama', '2013-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS669202224540', '余宇宁', 0, '+81 70-1146-8847', 1, '348103941879443858', '8-kai, 2-1-8 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1985-10-31', 0, 0, 'yuyuning1980', '2001-12-28', 'yuy', '2000-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS743179265337', 'Norman Ortiz', 0, '+44 5615 643181', 2, '043321122997607089', 'Unit 38, Oxford Eco Centre, 109 New Street, Birmingham, B2 4DB, United Kingdom', '1985-06-08', 0, 0, 'ortiz702', '2021-08-11', 'normanortiz', '2014-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS065393702333', '朱子韬', 1, '+86 21-864-7661', 1, '465491548727310152', 'Room 16, CR Building, 278 Hongqiao Rd., Xu Hui District, Shanghai, China', '1997-02-14', 0, 0, 'zz48', '2009-06-15', 'zitao1978', '2000-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS266401087761', '大野一輝', 1, '+81 80-6445-9313', 1, '186691772174224322', '日本札幌豊平区豊平三条十三丁目3番18号50階', '1989-07-06', 0, 0, 'ikkon503', '2000-06-01', 'ikkion', '2013-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS733916810818', '萧晓明', 1, '+81 70-7293-9404', 1, '160479080962647331', '19F, 1-5-13, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1992-04-09', 0, 0, 'xx9', '2002-07-01', 'xiaomingxiao', '2018-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS547877335533', '邱睿', 0, '+86 10-899-0586', 0, '450671511454995519', '中国北京市延庆区028县道300号华润大厦25室', '1989-10-11', 0, 0, 'ruiqi', '2006-03-14', 'rqi8', '2008-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS959205985129', 'Cindy Gibson', 0, '+86 194-0309-0666', 3, '910598225960546903', 'Room 32, No.757, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1985-08-27', 0, 0, 'gibsonci', '2007-03-17', 'cindy1129', '2003-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS776262155642', '石詩涵', 0, '+81 90-3084-1118', 0, '472825974424023571', '日本東京中央区銀座三丁目12番9号38階', '1989-03-21', 0, 0, 'shishihan', '2018-06-21', 'shihan50', '2000-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS857031863331', '井上架純', 0, '+86 755-501-3464', 0, '603214699434187688', '39F, 204 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1988-08-21', 0, 0, 'kasumi1945', '2006-12-03', 'inoukasumi', '2005-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS962312545317', '大塚大地', 0, '+81 90-8172-2198', 2, '027666968049502686', '日本札幌中央区宮の森四条六丁目1番9号30号室', '1989-04-08', 0, 0, 'dotsu10', '2013-08-11', 'daichiotsuka', '2006-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS296838219101', '錢朝偉', 1, '+81 66-706-9787', 1, '202275703612893192', '31-kai, 4-9-8 Kamihigashi, Hirano Ward, Osaka, Japan', '1991-02-09', 0, 0, 'cchiuwai2001', '2020-07-08', 'chin8', '2016-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS894314165035', '山口拓哉', 1, '+81 70-2151-0887', 4, '536264504888238007', 'Rm. 45, 1-7-14 Omido, Higashiosaka, Osaka, Japan', '1992-08-15', 0, 0, 'taky10', '2007-10-04', 'ytakuya3', '2006-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS558348935927', 'Sylvia Ramos', 0, '+1 718-681-0213', 2, '597575335742461838', '276 Flatbush Ave Suite 34, Brooklyn, NY 11225, United States', '1994-10-17', 0, 0, 'sylviaramos', '2014-06-12', 'sylviaramos14', '2001-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS642205077078', 'Mark Hill', 1, '+1 718-638-9368', 4, '550323308023838534', '801 Nostrand Ave Apartment 46, Brooklyn, NY 11216, United States', '1996-07-22', 0, 0, 'mhill9', '2011-04-01', 'mhi3', '2004-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS571641389766', 'Denise Lee', 1, '+86 755-5354-1853', 3, '654389490937449502', 'Room 2, 894 Shennan Ave, Futian District, Shenzhen, China', '1995-03-30', 0, 0, 'dele', '2020-04-13', 'leed', '2008-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS608323353767', '伊藤光', 1, '+86 161-2259-3079', 0, '023892724874089872', '中国北京市延庆区028县道977号28楼', '1986-09-17', 0, 0, 'itohika106', '2020-06-22', 'hikarito', '2009-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS617598499470', '岩崎舞', 1, '+44 5174 883694', 2, '973869401801884323', 'Flat 4, 917 Sackville St, Manchester, M1 3BB, United Kingdom', '1987-11-01', 0, 0, 'iwama', '2017-11-04', 'mai4', '2017-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS698900011037', '谷口凛', 1, '+86 193-1774-3512', 4, '240083708976473514', '中国北京市东城区东单王府井东街23号华润大厦24室', '1991-02-15', 0, 0, 'tanigri', '2000-04-02', 'trin', '2009-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS038005579667', '田中悠人', 1, '+1 212-796-3017', 0, '376929383518505327', '105 Wooster Street Suite 31, New York, NY 10012, United States', '1989-09-17', 0, 0, 'tanaka64', '2009-08-21', 'yuto728', '2002-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS458634711741', '阎震南', 1, '+81 52-615-9608', 3, '374246185709372015', '日本なごやし北区清水三丁目19番20号49階', '1991-11-19', 0, 0, 'yanz911', '2007-01-30', 'yanzhennan', '2004-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS462215782665', 'Rebecca Clark', 1, '+81 90-6033-8200', 1, '260570828960473833', '47F, 5 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-10-22', 0, 0, 'rebeccaclark1205', '2003-04-02', 'rebeccaclark', '2010-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS128679620495', '丁云熙', 1, '+81 52-604-7576', 1, '321199370118963578', 'Rm. 5, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-01-29', 0, 0, 'yunxdi917', '2014-08-06', 'dingy1028', '2020-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS943565315592', '石田彩乃', 1, '+81 70-7342-9503', 1, '700912507136327263', '35-kai, 9 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1985-09-09', 0, 0, 'ishayano92', '2015-10-09', 'ishiayan', '2015-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS347911451574', '蘇安琪', 1, '+86 185-1138-8760', 1, '042048053386863561', '中国深圳罗湖区田贝一路720号华润大厦4室', '1986-10-22', 0, 0, 'oks20', '2022-02-07', 'soonkay', '2009-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS975281940812', '甘玲玲', 1, '+44 7986 222687', 1, '763757324160211361', 'Block 14, 953 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1995-05-15', 0, 0, 'linglingka2', '2005-05-05', 'klingling05', '2005-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS017543445996', '孟璐', 1, '+1 213-930-6001', 3, '077680502402755346', '195 Sky Way Apt 48, Los Angeles, CA 90043, United States', '1990-04-10', 0, 0, 'mlu', '2016-03-22', 'lmen509', '2007-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS581783785120', 'Roger Spencer', 1, '+44 5414 592959', 1, '989524310966725512', 'Flat 27, 982 New Street, Birmingham, B2 4DB, United Kingdom', '1988-11-26', 0, 0, 'spr', '2015-01-21', 'roger6', '2005-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS015962842722', 'Jacob Mendez', 0, '+44 (20) 3439 4607', 0, '929453187701855226', 'No.30 Main building, 613 Pollen Street, London, W1S 1NG, United Kingdom', '1994-12-04', 0, 0, 'jacobmendez', '2005-08-15', 'jmendez', '2015-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS251627177638', 'Thomas Meyer', 0, '+44 5035 105418', 2, '016839170843510170', 'Unit 23, Oxford Eco Centre, 968 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1986-05-18', 0, 0, 'thomasm', '2010-11-07', 'meyer1968', '2021-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS294114467481', '蔡惠敏', 1, '+86 10-266-1063', 2, '157055995162057713', '中国北京市朝阳区三里屯路743号21楼', '1986-08-21', 0, 0, 'choiwa', '2008-06-14', 'wmchoi', '2010-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS505379898955', '陶杰宏', 0, '+86 154-5585-7219', 2, '207190521927840071', 'No.45 building, 91 Xiaoping E Rd, Baiyun , Guangzhou, China', '1991-12-14', 0, 0, 'jiehong1', '2005-06-02', 'taji', '2010-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS651816029485', '張天樂', 0, '+81 70-9541-7015', 0, '959539250278434014', '35F, 5-2-9 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1989-03-19', 0, 0, 'cheungtl', '2017-05-11', 'chetinlok58', '2014-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS976405853733', '胡秀文', 0, '+86 143-5294-9893', 2, '589874678153488604', '中国上海市浦东新区健祥路957号9栋', '1989-12-02', 0, 0, 'wusm', '2017-06-20', 'wsauman623', '2009-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS673865702648', '有村彩乃', 0, '+86 146-8203-2377', 1, '383833996442945471', '中国北京市海淀区清河中街68号836号10室', '1997-11-13', 0, 0, 'aayano', '2015-12-13', 'ayano62', '2021-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS771573216621', '顾睿', 0, '+44 (1223) 07 1528', 3, '007863874835056155', 'Unit 11, Oxford Eco Centre, 504 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-09-26', 0, 0, 'rgu', '2012-12-07', 'gurui', '2010-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS312632167237', '谭云熙', 1, '+86 133-4106-9870', 1, '310034520388841448', '中国北京市房山区岳琉路42号13室', '1998-03-05', 0, 0, 'yut1944', '2009-03-22', 'ytan525', '2009-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS891026995457', 'Karen Carter', 0, '+81 90-9812-6443', 2, '386958099834634445', '34-kai, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-06-30', 0, 0, 'karcar', '2003-01-09', 'kc3', '2017-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS070711058318', 'Mary Long', 0, '+86 755-8341-0304', 3, '819807938398463253', 'Room 24, CR Building, 425 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1992-04-29', 0, 0, 'longmar921', '2014-12-07', 'marylong', '2009-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS256965021130', '上野美咲', 0, '+86 153-8508-8747', 1, '895595337835829816', '中国成都市成华区双庆路549号24号楼', '1995-09-18', 0, 0, 'uenomisaki', '2021-07-07', 'umisaki625', '2018-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS971085075603', '阮國權', 0, '+44 5836 033789', 1, '491783894796150121', 'No.32 Main building, 285 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1995-05-18', 0, 0, 'ykwokkuen44', '2017-03-21', 'kkyuen7', '2021-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS936529225864', '太田舞', 0, '+86 184-0284-3024', 3, '487555753900719298', 'No.14 building, No.852, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1993-09-07', 0, 0, 'otma11', '2017-07-18', 'mai54', '2010-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS976814767060', '木下光莉', 1, '+86 153-1074-4460', 3, '295500261477245538', '中国广州市白云区机场路棠苑街五巷892号48室', '1985-03-27', 0, 0, 'kinoshik10', '2021-10-10', 'hkinoshita', '2010-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS495305208987', '邵睿', 1, '+81 90-5633-8158', 0, '022642397547505446', '日本東京中央区銀座三丁目12番12号18階', '1987-04-17', 0, 0, 'ruishao', '2018-05-15', 'rui2', '2014-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS403513170695', '清水大輔', 1, '+81 11-528-3166', 2, '922473676260118905', '日本札幌中央区宮の森四条六丁目1番12号8階', '1992-10-20', 0, 0, 'daish', '2013-02-07', 'sdaisuke10', '2000-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS948429981321', '平野陽太', 0, '+44 (161) 138 5223', 4, '648372882444692315', 'No.36 Main building, 538 Portland St, Manchester, M1 3LA, United Kingdom', '1995-02-03', 0, 0, 'hyota', '2011-01-10', 'hirano6', '2015-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS351617628882', 'Brandon Gordon', 1, '+81 11-643-4874', 3, '860834900117482543', '17-kai, 13-3-8 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1988-02-08', 0, 0, 'gordbran', '2010-08-03', 'gordonbrandon2', '2016-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS270593001592', '谢子异', 1, '+44 5530 314238', 0, '796609523895918782', 'Block 8, 730 Maddox Street, London, W1S 1PU, United Kingdom', '1997-05-05', 0, 0, 'xizi212', '2003-08-18', 'ziyixie', '2003-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS371413570135', '前田蓮', 0, '+1 213-831-0179', 4, '684134326064386138', '961 Grape Street Apt 5, Los Angeles, CA 90002, United States', '1985-06-02', 0, 0, 'mr92', '2011-01-06', 'remaeda712', '2000-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS294906886443', '青木玲奈', 1, '+44 (121) 128 9697', 3, '052437927320792447', 'Unit 45, Oxford Eco Centre, 292 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1985-07-03', 0, 0, 'aokirena', '2019-07-06', 'renaoki', '2018-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS245300563964', 'Phyllis Freeman', 1, '+44 (121) 758 0815', 3, '041604697997159647', 'Flat 16, 227 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1998-12-15', 0, 0, 'phyllfr', '2003-02-12', 'freeman6', '2014-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS788699722458', '姜志遠', 1, '+86 28-5071-1200', 2, '887347338650216542', '中国成都市成华区二仙桥东三路412号19栋', '1996-06-03', 0, 0, 'changcy10', '2007-11-28', 'chang53', '2020-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS491182112987', 'Jennifer Bailey', 0, '+1 718-005-0478', 1, '978571428061525356', '544 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1993-04-21', 0, 0, 'bajenni', '2009-05-31', 'baileyje226', '2021-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS584815489002', '陳慧敏', 1, '+1 312-694-2870', 1, '488051845480775924', '781 Pedway 3rd Floor, Chicago, IL 60601, United States', '1993-12-14', 0, 0, 'chan411', '2020-12-01', 'chanwm', '2012-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS313034165029', '莫岚', 0, '+81 90-9485-4606', 1, '401971206881234333', 'Rm. 5, 17 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1996-07-19', 0, 0, 'molan52', '2004-01-07', 'molan917', '2016-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS749157095838', '葉嘉欣', 1, '+86 28-5928-1200', 1, '952820337311791029', '中国成都市锦江区红星路三段909号30号楼', '1985-12-26', 0, 0, 'yip508', '2016-02-05', 'karyanyip', '2008-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS487068581842', '柴田愛梨', 0, '+44 5108 410385', 3, '770035576780991921', 'Flat 27, 481 Maddox Street, London, W1S 1PU, United Kingdom', '1992-09-17', 0, 0, 'shibataairi', '2013-10-15', 'shibataai', '2005-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS592980899392', 'Bobby Gordon', 1, '+1 212-186-7385', 1, '001538110266587536', '328 West Houston Street 3rd Floor, New York, NY 10014, United States', '1987-11-19', 0, 0, 'gordonbo', '2010-08-18', 'gordb', '2014-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS587321790093', '雷詩涵', 1, '+86 158-7983-0437', 2, '794567217422676521', '中国北京市房山区岳琉路554号42楼', '1986-01-08', 0, 0, 'shihan70', '2006-12-11', 'leishihan', '2004-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS666857353827', '長谷川凛', 1, '+86 140-8975-1903', 3, '338429688088300408', 'No.18 building, 956 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1990-11-25', 0, 0, 'rinhasegawa1119', '2008-11-04', 'hasegawari', '2000-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS119402551865', 'Lillian Mitchell', 0, '+86 142-4163-9556', 1, '091654177928103706', 'Room 43, 685 Shanhu Rd, Dongguan, China', '1993-10-28', 0, 0, 'mitchell7', '2009-07-02', 'mitchelllilli', '2003-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS577873424006', '謝浩然', 0, '+1 213-586-9850', 1, '367957960213585870', '193 S Broadway Suite 28, Los Angeles, CA 90015, United States', '1985-02-28', 0, 0, 'thoyin06', '2020-01-23', 'hoyintse', '2005-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS473142413638', 'Rhonda Gray', 0, '+44 (116) 541 0447', 3, '226672275783971991', 'No.31 Main building, 717 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1996-11-22', 0, 0, 'gray8', '2003-09-29', 'rhondag', '2012-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS155999742595', '湯慧嫻', 0, '+1 312-829-5028', 2, '471363086189485948', '269 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1994-11-08', 0, 0, 'towaihan506', '2009-05-24', 'whto5', '2013-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS495884141069', 'Jose Jimenez', 1, '+1 718-105-7024', 2, '292792313923013417', '409 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1996-06-30', 0, 0, 'jimenez2', '2006-02-23', 'joseji', '2008-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS686960338324', '容秀文', 0, '+86 10-1805-8022', 2, '920220264823631888', 'Room 1, 713 028 County Rd, Yanqing District, Beijing, China', '1997-10-29', 0, 0, 'smyun5', '2003-08-09', 'smyung', '2011-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS488528408428', 'Rebecca Young', 0, '+44 (20) 5457 1392', 1, '364773254930427534', 'Block 36, 466 Hanover Street, London, W1S 1YD, United Kingdom', '1997-02-12', 0, 0, 'ryoun1119', '2013-08-12', 'young04', '2003-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS671694255554', '高橋樹', 0, '+86 10-210-9208', 2, '873790287345188718', '中国北京市西城区西長安街667号28号楼', '1986-12-03', 0, 0, 'taki', '2017-02-03', 'takaitsuki', '2021-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS569815979241', '龙致远', 0, '+1 614-520-5846', 3, '739644634849104712', '400 East Cooke Road Suite 3, Columbus, GA 43214, United States', '1989-11-14', 0, 0, 'long1965', '2005-02-15', 'longz', '2014-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS629375498257', '谢子异', 0, '+44 (1223) 04 5524', 3, '570494916844599551', 'Unit 4, Oxford Eco Centre, 622 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1990-06-28', 0, 0, 'ziyi5', '2001-04-28', 'xieziy4', '2000-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS170202641632', 'Kathy Bailey', 0, '+1 213-279-3552', 2, '462199427703186209', '723 Figueroa Street Suite 24, Los Angeles, CA 90037, United States', '1996-06-05', 0, 0, 'kathy10', '2012-10-19', 'bailka', '2019-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS227951885412', '藤田涼太', 1, '+86 186-8982-8066', 1, '702645473383231786', 'No.24 building, 273 028 County Rd, Yanqing District, Beijing, China', '1997-09-02', 0, 0, 'ryfujita', '2001-05-07', 'ryotafu10', '2020-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS965146411411', 'Teresa Payne', 0, '+44 (151) 831 0194', 2, '782777969408387960', 'Block 8, 446 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1994-10-18', 0, 0, 'tepayne', '2004-08-30', 'teresapayn', '2020-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS119471792910', '程詩涵', 1, '+86 193-7987-7903', 2, '466098614926513144', '42F, 468 Dong Zhi Men, Dongcheng District, Beijing, China', '1993-01-04', 0, 0, 'chengshiha', '2013-04-19', 'chengs', '2006-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS363835155289', '駱國明', 1, '+86 194-8483-7408', 1, '049250352700239671', '中国北京市東城区東直門內大街736号1楼', '1987-11-13', 0, 0, 'lokwokming', '2002-10-29', 'lokkwokming', '2006-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS833814735684', '田中光', 0, '+86 20-810-9498', 0, '566637595051424464', '中国广州市越秀区中山二路398号41栋', '1997-12-14', 0, 0, 'hikaru98', '2019-05-23', 'hikarutanak8', '2016-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS364425421835', '島田百花', 1, '+1 213-422-9674', 2, '824511500962211751', '863 Alameda Street Apartment 30, Los Angeles, CA 90002, United States', '1997-01-28', 0, 0, 'shimada2', '2003-09-26', 'shm', '2003-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS636609018153', '林致远', 0, '+81 80-5353-9955', 2, '479630706388424210', '28F, 2-1-7 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1998-02-13', 0, 0, 'lizhi421', '2015-06-13', 'lin45', '2014-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS491871766989', '袁岚', 0, '+44 (151) 901 7604', 4, '049535329068917772', 'No.5 Main building, 7 Hanover St, Liverpool, L1 4AF, United Kingdom', '1998-11-27', 0, 0, 'lanyua1030', '2018-05-14', 'lanyuan6', '2017-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS212754340100', '毛子韬', 1, '+1 718-397-9782', 0, '180932786255811585', '11 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1985-05-31', 0, 0, 'zitaomao', '2000-05-26', 'zitmao', '2006-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS394218429024', '内田拓哉', 1, '+86 191-4387-2886', 1, '512859463207843741', 'Room 19, CR Building, 497 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1991-03-13', 0, 0, 'takuya1207', '2004-02-20', 'takuyuchida', '2016-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS613929440120', '田宇宁', 1, '+44 7682 172990', 4, '521698241312260142', 'Flat 40, 29 Maddox Street, London, W1S 1PU, United Kingdom', '1993-07-26', 0, 0, 'tianyuning', '2015-10-17', 'yuningt', '2020-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS938876217053', '武云熙', 0, '+81 3-9197-4086', 0, '795281115874003820', '12-kai, 1-6-15, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-01-06', 0, 0, 'ywu95', '2012-02-21', 'yunxiwu5', '2001-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS400253328654', '孟晓明', 1, '+44 (121) 007 0368', 3, '860835619691326436', 'Block 38, 157 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1987-10-20', 0, 0, 'xiaommeng', '2018-07-24', 'mengxiaoming8', '2002-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS011193766461', '容家玲', 0, '+1 718-180-1687', 3, '337329798373503566', '542 Columbia St Apt 7, Brooklyn, NY 11231, United States', '1989-10-22', 0, 0, 'kly', '2004-04-02', 'yung92', '2013-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS471417084349', '藤世榮', 0, '+86 10-309-8820', 1, '583922962582004416', 'No.15 building, 885 Dong Zhi Men, Dongcheng District, Beijing, China', '1994-12-29', 0, 0, 'tang8', '2004-06-28', 'tansaiwing916', '2002-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS037570133400', 'Francis Watson', 1, '+81 66-805-8160', 0, '411474301788349561', '日本おおさかし近江堂一丁目7番15号4号室', '1993-09-17', 0, 0, 'watsonfr123', '2014-05-23', 'watsonfra323', '2010-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS318718323009', 'Bruce Hamilton', 1, '+86 151-8191-4274', 4, '469787923008744935', '中国北京市西城区复兴门内大街759号30室', '1989-01-30', 0, 0, 'hamiltonb', '2018-12-27', 'bruceh', '2002-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS547316986819', '薛璐', 1, '+86 10-2335-2324', 4, '919570277065294326', '中国北京市西城区复兴门内大街790号19楼', '1986-06-01', 0, 0, 'luxue8', '2000-06-11', 'xl3', '2012-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS083822088898', '宮崎健太', 1, '+86 10-519-8046', 2, '765094089377825205', '中国北京市海淀区清河中街68号459号20栋', '1985-11-02', 0, 0, 'kentamiyazaki', '2007-07-26', 'miyazakikenta', '2012-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS173517598091', '朱小慧', 0, '+86 194-0881-3935', 3, '997768396538270088', '中国上海市浦东新区健祥路463号10室', '1987-06-26', 0, 0, 'chu63', '2003-04-25', 'csiuwai10', '2019-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS249772568030', '孟秀英', 1, '+81 11-957-9131', 1, '462467735285252787', '46-kai, 5-19-5 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1989-01-18', 0, 0, 'mengx', '2013-01-24', 'xiuying1961', '2010-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS322362488158', '石田樹', 1, '+86 170-1931-6293', 2, '775160571201401169', 'Room 9, 748 FuXingMenNei Street, XiCheng District, Beijing, China', '1997-02-11', 0, 0, 'iit', '2010-11-19', 'iitsuki', '2008-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS363293200102', '韓詩君', 1, '+86 21-166-9474', 0, '490861810685688775', '中国上海市浦东新区橄榄路205号27号楼', '1989-11-27', 0, 0, 'hsk', '2013-04-01', 'skhan', '2003-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS529892490790', '孔安琪', 0, '+86 769-9184-8087', 2, '541091831780788689', '中国东莞珊瑚路139号17号楼', '1989-01-05', 0, 0, 'kong716', '2001-01-03', 'konganq', '2005-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS660662841275', '横山樹', 1, '+86 161-6298-3160', 4, '852051428947996662', '中国北京市房山区岳琉路87号46栋', '1991-01-11', 0, 0, 'itsukiyokoyama', '2007-02-05', 'yoit', '2002-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS623209746664', 'Esther Soto', 0, '+44 5765 582089', 3, '345639054939874465', 'Unit 42, Oxford Eco Centre, 329 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1987-02-12', 0, 0, 'sote4', '2011-05-11', 'esot7', '2005-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS829018739577', 'Rose Ellis', 0, '+86 10-630-2074', 3, '523930864653829199', 'No.48 building, 218 Yueliu Rd, Fangshan District, Beijing, China', '1994-01-05', 0, 0, 'rose1', '2018-03-23', 'ellrose', '2001-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS166019253101', 'John Crawford', 0, '+81 74-364-2873', 2, '656411731906116981', '日本ならし西大寺赤田町一丁目7番12号3号室', '1996-02-06', 0, 0, 'crawfordjoh', '2012-08-10', 'crawfordjohn8', '2015-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS198094490998', 'Arthur Wagner', 0, '+86 162-5397-1054', 3, '049717871833296714', '中国东莞珊瑚路592号15室', '1998-04-02', 0, 0, 'wagnarthur517', '2005-06-02', 'arthur6', '2021-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS337263201384', 'Teresa Myers', 1, '+81 66-890-4377', 1, '720571354385859855', '日本おおさかし西成区天神ノ森二丁目1番20号6号室', '1993-08-09', 0, 0, 'mteres', '2004-05-09', 'teresamyers1127', '2013-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS892896529130', '石田一輝', 0, '+86 755-211-6086', 1, '165824176422563379', 'No.15 building, 561 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1989-12-11', 0, 0, 'iishi418', '2007-05-03', 'ikkiishida44', '2019-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS491786154081', '唐睿', 0, '+86 10-1370-6180', 4, '839908667007486368', '中国北京市西城区复兴门内大街209号46室', '1989-02-10', 0, 0, 'trui608', '2016-08-08', 'tangrui', '2021-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS983302368518', '高橋光', 1, '+86 195-5225-1867', 4, '637313839421513623', 'Room 16, CR Building, 942 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1997-09-19', 0, 0, 'hikarutak', '2005-10-26', 'hikaru1114', '2005-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS645214219328', '吉田和真', 0, '+86 150-9069-6866', 3, '157826921487308574', 'Room 30, CR Building, 754 68 Qinghe Middle St, Haidian District, Beijing, China', '1993-06-21', 0, 0, 'yok', '2010-06-18', 'yoshidakazuma6', '2003-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS342523705675', 'Chris Reed', 0, '+86 755-4553-1044', 4, '561424445307525518', '中国深圳福田区深南大道689号华润大厦47室', '1997-12-29', 0, 0, 'chrisreed9', '2005-05-06', 'chreed', '2005-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS580524754665', 'Elaine Porter', 1, '+44 5460 094638', 3, '412904901884597890', 'Block 45, 689 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1992-01-21', 0, 0, 'elaineporter', '2003-10-16', 'porter801', '2001-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS479546071495', '伊藤彩乃', 0, '+44 (20) 4092 0339', 1, '098460944460338972', 'No.49 Main building, 171 Pollen Street, London, W1S 1NG, United Kingdom', '1988-04-16', 0, 0, 'ayanoito702', '2007-10-08', 'ita1', '2005-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS761239468554', '朱睿', 0, '+81 66-594-3359', 2, '443889769707961754', '50-kai, 1-7-14 Omido, Higashiosaka, Osaka, Japan', '1988-02-23', 0, 0, 'zhu1002', '2006-04-20', 'zhurui517', '2012-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS615007513958', '朱杰宏', 1, '+81 74-062-7980', 1, '067047425440333793', '13F, 1-7-2 Saidaiji Akodacho, Nara, Japan', '1989-01-08', 0, 0, 'jiehongz67', '2020-06-11', 'jiehozh', '2008-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS657795566712', 'Bernard Martin', 1, '+86 755-7825-1789', 2, '212947596105238593', '中国深圳罗湖区蔡屋围深南东路502号华润大厦9室', '1985-08-18', 0, 0, 'martin7', '2018-01-24', 'martiber10', '2017-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS907877751492', '市川百花', 0, '+86 20-1552-5498', 1, '293502766850043089', '47F, 988 Xiaoping E Rd, Baiyun , Guangzhou, China', '1997-04-01', 0, 0, 'ichim', '2008-01-02', 'momokai', '2003-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS559866007815', '張頴璇', 1, '+86 10-201-1614', 3, '440606288781454050', '中国北京市房山区岳琉路802号30室', '1997-09-14', 0, 0, 'wingsuencheung', '2019-07-07', 'cheuws52', '2018-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS694038081366', '何安琪', 0, '+81 70-0722-8582', 4, '827996363746485456', '日本なごやし北区楠味鋺三丁目80番14号45号室', '1997-12-06', 0, 0, 'anqi7', '2011-04-04', 'hean', '2005-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS761884926843', '韩嘉伦', 0, '+44 (20) 7445 2400', 3, '421677467047737484', 'No.26 Main building, 187 Pollen Street, London, W1S 1NG, United Kingdom', '1993-06-15', 0, 0, 'hanjial506', '2013-05-06', 'han10', '2013-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS532705976832', '常詩涵', 0, '+81 70-1496-2088', 3, '799744072255272433', '日本東京中央区銀座三丁目12番18号22階', '1997-07-11', 0, 0, 'shchang', '2003-09-19', 'shihanchang2010', '2017-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS881824885113', 'Edith Peterson', 1, '+81 80-3422-3767', 4, '568190049612067853', '21F, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1986-03-10', 0, 0, 'petersoned94', '2020-12-03', 'edith9', '2007-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS291307224096', 'Charles Black', 0, '+81 3-5897-2148', 3, '759662611494495753', '日本東京渋谷区代々木二丁目3番6号50号室', '1999-01-15', 0, 0, 'blackc401', '2005-07-10', 'charles3', '2007-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS939809348441', '方宇宁', 1, '+81 52-977-8661', 4, '511256687901832850', '日本なごやし熱田区千年二丁目5番3号13階', '1987-06-02', 0, 0, 'fyunin', '2009-03-13', 'yuningfang', '2003-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS322609332735', '高木結翔', 1, '+1 838-830-8388', 1, '539660616000873103', '601 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1993-01-11', 0, 0, 'yuitotakagi9', '2005-03-19', 'takayui1965', '2013-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS025221272448', '馬朝偉', 1, '+44 (1223) 62 5387', 2, '234422224345147349', 'Unit 7, Oxford Eco Centre, 410 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1991-06-05', 0, 0, 'cwm', '2018-07-28', 'machiuwai1978', '2018-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS183908499761', '魏云熙', 0, '+44 (1223) 41 9777', 1, '179920866480360208', 'Flat 42, 998 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1989-03-23', 0, 0, 'weiyunx', '2014-06-09', 'weiy19', '2010-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS796093751304', 'Brandon Price', 1, '+86 188-1901-8469', 3, '749388643929241798', '中国成都市成华区二仙桥东三路699号23栋', '1994-08-02', 0, 0, 'brandon3', '2013-04-23', 'brandonprice', '2021-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS848172744708', '菅原蓮', 0, '+44 (161) 203 3113', 3, '067183820288322056', 'Unit 1, Oxford Eco Centre, 415 Sackville St, Manchester, M1 3BB, United Kingdom', '1995-01-05', 0, 0, 'rsugawara', '2002-07-05', 'sugawararen', '2019-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS993899523656', '潘睿', 1, '+44 7015 039762', 4, '104115866233719215', 'Block 48, 736 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1991-04-04', 0, 0, 'pan813', '2000-08-10', 'pan10', '2003-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS964703947503', '汤子异', 1, '+44 5328 673769', 2, '984232162685205899', 'Block 4, 626 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1995-12-13', 0, 0, 'ziyitang', '2013-05-17', 'taziyi', '2013-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS398770797852', 'James Evans', 1, '+81 11-042-7502', 1, '696423878351112833', '日本札幌厚別区上野幌一条二丁目1番19号4階', '1994-03-10', 0, 0, 'evansja10', '2000-02-12', 'ejames10', '2012-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS583828668759', '松田明菜', 0, '+44 7163 379525', 1, '279841431912901940', 'Unit 40, Oxford Eco Centre, 833 Redfern St, Liverpool, L20 8JB, United Kingdom', '1997-02-16', 0, 0, 'amatsuda312', '2013-07-15', 'makina4', '2007-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS586650264229', '内田桜', 0, '+81 11-760-4037', 2, '830131548489692267', 'Rm. 47, 5-4-12 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-08-08', 0, 0, 'sakura2019', '2020-02-23', 'uchis', '2013-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS841251895012', '李家文', 1, '+86 167-2433-4301', 3, '727486630080479969', 'No.47 building, 947 Ganlan Rd, Pudong, Shanghai, China', '1989-01-05', 0, 0, 'leekaman', '2003-03-22', 'leekm', '2003-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS943555300209', '熊詩涵', 0, '+44 (121) 888 1046', 1, '462468565924104277', 'Block 43, 556 New Street, Birmingham, B2 4DB, United Kingdom', '1994-04-25', 0, 0, 'sxiong1', '2004-08-14', 'shihxi2007', '2003-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS724292754911', '吉田大和', 1, '+86 769-172-3616', 3, '730174024614246690', '中国东莞珊瑚路642号20楼', '1990-01-07', 0, 0, 'yoshiday', '2013-05-09', 'yyo', '2014-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS359499823641', '岡田凛', 1, '+81 70-9312-5431', 1, '876172993363124916', '日本東京港区東新橋一丁目5番15号48号室', '1994-02-23', 0, 0, 'okadarin4', '2006-03-06', 'okari', '2012-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS284259774254', '葉志遠', 0, '+86 167-1961-0202', 3, '539860535792491657', 'No.33 building, No. 482, Shuangqing Rd, Chenghua District, Chengdu, China', '1992-07-10', 0, 0, 'yip108', '2009-08-27', 'chiyy', '2012-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS707863529863', '田杰宏', 1, '+81 70-4935-4700', 1, '421115120363695984', '日本なごやし瑞穂区河岸町四丁目20番5号15号室', '1992-03-22', 0, 0, 'tian51', '2021-08-26', 'jiehongtian6', '2000-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS594713982134', '小林湊', 0, '+1 614-385-6931', 4, '433113202594684362', '210 East Alley 3rd Floor, Columbus, GA 43201, United States', '1998-08-16', 0, 0, 'kobayashimin207', '2007-06-02', 'mk1', '2018-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS461812864303', '龚璐', 1, '+86 154-4122-7634', 4, '832712967333560652', 'Room 13, CR Building, 189 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1996-02-04', 0, 0, 'lugo', '2021-04-03', 'lugong00', '2009-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS505008890366', '森田明菜', 0, '+81 3-4711-7795', 1, '172549304308159527', 'Rm. 19, 3-15-4 Ginza, Chuo-ku, Tokyo, Japan', '1997-01-14', 0, 0, 'akimori1', '2008-01-03', 'maki204', '2004-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS151080204349', '董宇宁', 1, '+1 213-588-8884', 4, '421462896916123017', '509 Wall Street Apartment 23, Los Angeles, CA 90003, United States', '1985-11-26', 0, 0, 'dongyuning', '2008-10-16', 'yuning3', '2003-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS753420539107', '中村光莉', 1, '+86 163-1333-4743', 2, '774853838791557801', '中国成都市成华区玉双路6号190号34室', '1996-02-15', 0, 0, 'hikari1943', '2009-05-31', 'nakamurahika', '2021-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS877804839895', '田中百花', 1, '+86 140-5022-3739', 2, '256775611840965363', '中国北京市延庆区028县道131号华润大厦11室', '1995-09-10', 0, 0, 'tanmom', '2018-08-23', 'motanaka57', '2012-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS391362466698', '贺嘉伦', 0, '+86 174-4094-8880', 0, '420558596127666196', 'No.46 building, 640 Dongtai 5th St, Dongguan, China', '1989-10-02', 0, 0, 'jhe', '2016-11-04', 'hejialun', '2014-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS132433759934', 'Ray Jordan', 1, '+86 130-8971-7320', 1, '621363232987834094', '中国东莞珊瑚路614号11号楼', '1994-06-06', 0, 0, 'rjord726', '2008-11-26', 'jordray76', '2006-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS994107291190', '郭浩然', 0, '+86 131-9420-0776', 1, '896499759497151341', '13F, 890 028 County Rd, Yanqing District, Beijing, China', '1989-03-10', 0, 0, 'hoyinkwok', '2015-04-03', 'hykwo', '2000-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS943992009900', '有村陸', 0, '+81 80-0512-6491', 1, '530937272423168607', '50-kai, 3-27-4 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1991-06-15', 0, 0, 'arimura724', '2001-06-28', 'riku1', '2000-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS644961372145', 'Wendy Ford', 0, '+86 28-797-2095', 2, '622046068953470379', 'No.5 building, 817 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1997-02-04', 0, 0, 'wef', '2006-10-13', 'wendfor4', '2007-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS203926733505', '赵子异', 1, '+86 193-8912-3997', 3, '928739518891314411', '8F, 856 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1990-06-25', 0, 0, 'zhziy1229', '2005-02-19', 'ziyi5', '2009-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS941746145030', 'Randall Anderson', 1, '+86 199-3222-0108', 3, '146507867162606757', 'No.43 building, 151 Shanhu Rd, Dongguan, China', '1997-05-08', 0, 0, 'randallande', '2014-01-03', 'ar1991', '2004-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS909036066816', '刘杰宏', 1, '+81 70-9893-8806', 4, '750815524964328492', '日本札幌厚別区上野幌一条二丁目1番15号36号室', '1996-04-08', 0, 0, 'jiehongli', '2008-05-28', 'jiehong8', '2006-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS789202212773', 'Todd Guzman', 0, '+86 10-288-9979', 2, '151822161049011429', '中国北京市延庆区028县道489号14号楼', '1996-08-29', 0, 0, 'guzmantodd78', '2015-07-25', 'gutodd67', '2002-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS336834706216', '罗睿', 1, '+81 66-659-3993', 3, '947057231586450802', '26F, 1-1-19 Deshiro, Nishinari Ward, Osaka, Japan', '1994-10-11', 0, 0, 'ruiluo', '2002-05-04', 'luorui10', '2013-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS824411467838', '余岚', 1, '+44 (20) 9137 0794', 4, '673724302569491094', 'Flat 30, 994 Pollen Street, London, W1S 1NG, United Kingdom', '1989-02-26', 0, 0, 'ly6', '2017-01-25', 'lan7', '2008-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS844109067880', '林詩涵', 1, '+86 755-627-8772', 1, '253372940860891003', 'No.21 building, 648 Jingtian East 1st St, Futian District, Shenzhen, China', '1995-11-21', 0, 0, 'shihanlin615', '2020-07-04', 'lis', '2006-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS580373035116', 'Carlos Hernandez', 1, '+81 3-1163-2786', 2, '139863435234723114', '日本東京渋谷区代々木二丁目3番16号34階', '1995-09-10', 0, 0, 'hernc824', '2004-10-18', 'carloshern', '2003-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS125597392142', 'Sherry Mcdonald', 0, '+81 90-9239-7672', 1, '636590896245638495', '22-kai, 5-2-2 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1997-12-05', 0, 0, 'smcdonald', '2016-12-18', 'mshe', '2011-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS175874622825', '和田陸', 1, '+86 150-2011-7775', 2, '401372523847836875', 'Room 39, CR Building, 526 East Wangfujing Street, Dongcheng District , Beijing, China', '1995-05-19', 0, 0, 'wadariku1970', '2004-05-24', 'wadari', '2014-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS739469117214', '小林優奈', 0, '+44 (161) 501 0327', 3, '778479861654208312', 'No.5 Main building, 174 Mosley St, Manchester, M2 3AQ, United Kingdom', '1996-10-08', 0, 0, 'kyu6', '2012-03-23', 'kobayyun', '2010-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS396971626630', '安藤蒼士', 1, '+1 212-452-5512', 2, '055651338473327128', '908 Bank Street 3rd Floor, New York, NY 10014, United States', '1989-09-20', 0, 0, 'aosha', '2010-04-08', 'aoshia', '2020-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS697360574855', '高田光莉', 0, '+44 5899 502702', 2, '527180172503480845', 'Block 11, 366 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1994-02-07', 0, 0, 'takahikari', '2010-12-27', 'takadhik5', '2005-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS872972097413', '武秀英', 1, '+81 80-5537-8871', 4, '490968987675853435', '8F, 11 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-11-08', 0, 0, 'xwu', '2011-04-03', 'wux', '2004-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS099018668197', '蔡秀文', 1, '+86 21-187-7134', 3, '534550915839646089', '40F, 637 Hongqiao Rd., Xu Hui District, Shanghai, China', '1995-05-01', 0, 0, 'chosm', '2012-05-27', 'chosm', '2003-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS961093102377', '雷玲玲', 0, '+81 52-079-8284', 3, '561657283920447997', '日本なごやし瑞穂区河岸町四丁目20番14号17号室', '1985-04-13', 0, 0, 'lingling829', '2002-12-26', 'louill', '2021-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS853170724871', '汪致远', 1, '+44 (1223) 87 0948', 1, '923373157159224838', 'Unit 38, Oxford Eco Centre, 950 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1986-03-17', 0, 0, 'wazhiyuan', '2014-04-14', 'wang1121', '2010-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS612821409168', '鄺心穎', 1, '+81 52-832-2106', 2, '814569315025304881', '27F, 3-19-10 Shimizu, Kita Ward, Nagoya, Japan', '1994-02-07', 0, 0, 'swk8', '2008-03-21', 'kwongsw', '2016-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS621242552729', 'Stephanie Gardner', 0, '+1 718-760-7263', 2, '553329455614123524', '978 Columbia St Suite 13, Brooklyn, NY 11231, United States', '1993-02-07', 0, 0, 'stephanieg', '2017-09-14', 'gardnstephanie71', '2010-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS962460638218', '島田優奈', 1, '+44 (20) 2319 3912', 0, '786177445769783822', 'Unit 44, Oxford Eco Centre, 436 Regent Street, London, W1B 2LX, United Kingdom', '1992-06-29', 0, 0, 'shimadayuna10', '2007-07-26', 'shimyu', '2014-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS471900893213', '郝杰宏', 1, '+81 66-073-4732', 1, '762548042819105294', '6F, 4-9-6 Kamihigashi, Hirano Ward, Osaka, Japan', '1988-03-30', 0, 0, 'haojieho', '2019-01-14', 'hao6', '2012-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS559453506285', '陆致远', 0, '+1 330-107-3487', 3, '142986648945585956', '987 Fern Street Suite 24, Akron, OH 44307, United States', '1992-04-15', 0, 0, 'lu1976', '2009-06-14', 'lu3', '2019-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS336743661737', '孫嘉欣', 0, '+1 838-327-4275', 4, '412473083092664618', '409 Lark Street 3rd Floor, Albany, NY 12210, United States', '1992-06-21', 0, 0, 'hsuankaryan', '2008-08-20', 'karyanhsuan', '2016-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS503609493056', '于璐', 1, '+86 28-922-3007', 2, '223833107523686502', 'No.7 building, No. 688, Shuangqing Rd, Chenghua District, Chengdu, China', '1990-08-16', 0, 0, 'yul', '2002-07-30', 'lu1954', '2021-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS615699703557', 'Gloria Roberts', 1, '+81 80-7846-0865', 2, '310321967279943796', '30F, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1994-03-03', 0, 0, 'rg7', '2000-07-19', 'robertsgloria3', '2017-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS507909031831', '孟云熙', 1, '+81 11-611-6146', 2, '610272273225074796', '35-kai, 2-1-4 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1991-01-04', 0, 0, 'yunxi210', '2021-08-27', 'yumeng114', '2009-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS264860334163', 'Joanne Washington', 0, '+86 192-1607-8760', 3, '581010148627160847', 'No.28 building, 671 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1986-09-10', 0, 0, 'washingtonjoanne', '2017-08-06', 'jwashington', '2016-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS694344983700', '加藤一輝', 1, '+81 80-1687-7189', 2, '401232548005585318', 'Rm. 33, 1-6-2, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1997-10-23', 0, 0, 'kikki', '2001-11-12', 'katikki', '2013-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS156935795930', '冯秀英', 1, '+81 11-975-0197', 1, '934050144776731925', '日本札幌中央区宮の森四条六丁目1番5号35階', '1992-08-18', 0, 0, 'xiuying1115', '2002-04-24', 'xiuyingf15', '2020-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS723556335738', '平野光莉', 0, '+81 80-0946-6196', 1, '181604584142247982', '日本東京渋谷区代々木二丁目3番6号3階', '1998-01-11', 0, 0, 'hhirano76', '2001-08-11', 'hikarih03', '2010-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS293200274571', '森翼', 1, '+44 (121) 279 1302', 2, '688978274375117591', 'No.36 Main building, 131 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1986-10-24', 0, 0, 'mtsubasa', '2011-11-18', 'tsubam', '2007-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS466423415306', '谷梓晴', 1, '+1 213-982-8331', 0, '261943773148921030', '126 Grape Street Apt 26, Los Angeles, CA 90002, United States', '1994-10-16', 0, 0, 'kootc', '2003-05-13', 'tszching1957', '2014-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS376523998515', 'Cynthia Martin', 1, '+44 (20) 1658 9744', 0, '620077868049692921', 'Unit 30, Oxford Eco Centre, 797 Regent Street, London, W1B 2LX, United Kingdom', '1988-11-17', 0, 0, 'macynth318', '2000-12-30', 'cynthia120', '2010-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS525127065586', '鈴木湊', 1, '+81 66-735-2332', 0, '338789337935120518', '40F, 2-1-3 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1993-01-17', 0, 0, 'sminato', '2019-02-21', 'minato10', '2005-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS177842057324', '刘云熙', 1, '+1 330-955-3042', 1, '091115288939008368', '902 Riverview Road Suite 24, Akron, OH 44313, United States', '1992-03-04', 0, 0, 'liuyunxi', '2015-01-01', 'yunxiliu', '2013-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS865661355494', '小川紗良', 0, '+81 74-320-6983', 2, '286400254058922830', '日本ならし学園南三丁目9番19号33階', '1987-08-10', 0, 0, 'ogawasa', '2003-10-18', 'ogawas54', '2017-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS751083428882', '夏震南', 1, '+44 5024 740930', 1, '920439978964267092', 'Unit 32, Oxford Eco Centre, 428 New Street, Birmingham, B2 4DB, United Kingdom', '1986-01-01', 0, 0, 'xiazhenn104', '2017-05-17', 'xiazh', '2020-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS114379854543', '渡部愛梨', 1, '+1 838-902-7585', 4, '949722329936829101', '806 Central Avenue Apartment 3, Albany, NY 12206, United States', '1989-06-17', 0, 0, 'watanabeairi3', '2017-05-18', 'airwatanabe', '2017-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS683292405733', 'Anita Daniels', 0, '+1 718-632-8027', 2, '914434031566374143', '580 Columbia St Apt 11, Brooklyn, NY 11231, United States', '1996-05-25', 0, 0, 'anitadaniels49', '2001-02-04', 'daniels1002', '2014-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS248432749602', '杨子韬', 0, '+1 838-926-1486', 2, '473558210081536806', '98 Broadway Apartment 11, Albany, NY 12207, United States', '1991-11-09', 0, 0, 'zyang4', '2017-03-15', 'zitao709', '2003-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS405703879738', 'Clarence Griffin', 0, '+86 10-8934-4247', 1, '536259655940184596', 'Room 15, CR Building, 797 Yueliu Rd, Fangshan District, Beijing, China', '1994-11-13', 0, 0, 'claregriffin', '2019-09-16', 'clargriffin', '2021-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS343093598340', '中野結翔', 1, '+86 141-1486-6118', 3, '632769735017670070', 'No.8 building, 416 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1990-03-30', 0, 0, 'yuito13', '2019-01-12', 'yuito302', '2019-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS968927576815', '夏致远', 0, '+86 769-0128-5763', 2, '467178904614264412', '中国东莞东泰五街371号38室', '1997-01-18', 0, 0, 'zhiyuan626', '2012-07-18', 'xiazhiyuan1', '2000-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS378374443299', '遠藤明菜', 0, '+81 80-4409-1307', 2, '510015233767240623', '日本札幌白石区菊水三条五丁目4番18号3号室', '1987-06-28', 0, 0, 'akinaendo', '2012-12-03', 'endak', '2004-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS472545921255', '崔岚', 1, '+81 70-9967-9885', 3, '955281087167803451', '日本なごやし熱田区千年二丁目5番9号19階', '1986-08-09', 0, 0, 'cuila', '2003-07-26', 'cui1972', '2017-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS609577878068', '毛宇宁', 0, '+81 3-0283-7257', 2, '096716493766157486', '日本東京港区東新橋一丁目5番3号44階', '1997-11-06', 0, 0, 'ymao', '2001-05-11', 'mao88', '2010-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS787949633104', 'Jonathan Edwards', 0, '+86 187-9806-0804', 2, '396203772415461793', 'No.49 building, 794 Jiangnan West Road, Haizhu District, Guangzhou, China', '1997-10-04', 0, 0, 'jonathaned', '2011-06-05', 'edwjon', '2014-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS438573117778', 'Wanda Cole', 0, '+1 614-001-6753', 3, '506828358088998078', '679 East Alley 3rd Floor, Columbus, GA 43201, United States', '1996-03-19', 0, 0, 'wandacole1221', '2019-02-21', 'cwa', '2021-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS492873663775', '藤原百花', 0, '+81 74-006-4953', 4, '015962849663450288', '4F, 8 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-02-11', 0, 0, 'momoka2', '2020-09-04', 'fujm', '2018-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS260853314709', '孙秀英', 0, '+81 80-5874-2213', 3, '119988349212086708', '日本なごやし瑞穂区河岸町四丁目20番11号12階', '1989-02-10', 0, 0, 'xiuying2', '2004-11-19', 'xiuys', '2018-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS580243453204', '高木光莉', 0, '+86 10-889-5011', 3, '568422467752928315', '中国北京市房山区岳琉路630号20号楼', '1995-06-15', 0, 0, 'hikarita', '2015-10-17', 'takagihikari', '2006-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS624131504915', '邓晓明', 1, '+1 330-307-6260', 0, '548466562678315208', '48 Collier Road Apt 2, Akron, OH 44320, United States', '1991-09-27', 0, 0, 'xden704', '2001-08-14', 'xiaomingdeng', '2001-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS582285276669', '李子异', 1, '+81 74-890-2019', 1, '520432362536739063', '22-kai, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1985-04-23', 0, 0, 'lziyi', '2005-01-15', 'ziyi3', '2012-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS964046544480', '後藤優奈', 0, '+86 10-2928-3509', 2, '168648338063330549', 'No.38 building, 390 Sanlitun Road, Chaoyang District, Beijing, China', '1993-05-11', 0, 0, 'yuna903', '2004-05-02', 'gotoyuna', '2010-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS657053551079', '蕭永權', 1, '+81 70-0801-7860', 1, '137660087606101210', '日本東京千代田区丸の内一丁目6番12号17号室', '1991-03-06', 0, 0, 'wksiu', '2020-05-15', 'wingkuensiu98', '2014-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS127963432026', '李璐', 1, '+44 (1865) 04 4907', 0, '770509856980046804', 'No.12 Main building, 865 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1997-05-27', 0, 0, 'luli', '2012-07-30', 'lil', '2017-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS551948088817', '岩崎百恵', 1, '+81 66-022-6179', 0, '369454248312441437', '46-kai, 1-1-6 Deshiro, Nishinari Ward, Osaka, Japan', '1988-12-08', 0, 0, 'momi', '2011-03-24', 'iwasakim6', '2014-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS912929283581', '呂家明', 1, '+86 155-6097-9225', 2, '189149812774883407', 'Room 10, 400 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1987-03-16', 0, 0, 'kaming5', '2001-10-31', 'luikam315', '2006-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS356517018697', '崔心穎', 1, '+86 182-9316-6378', 4, '716231821464110341', '中国中山乐丰六路201号16楼', '1996-03-20', 0, 0, 'swchoi720', '2004-05-16', 'choi1989', '2015-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS237623995033', '宋詩涵', 0, '+86 143-4773-6953', 4, '968158197926597913', '中国成都市成华区双庆路112号华润大厦43室', '1991-02-24', 0, 0, 'sonshihan4', '2005-08-14', 'shihanson', '2020-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS803435901447', '許祖兒', 1, '+86 10-7582-1209', 2, '411467293599162970', '36F, 661 68 Qinghe Middle St, Haidian District, Beijing, China', '1998-01-04', 0, 0, 'cyhu80', '2017-02-16', 'choyeehui3', '2019-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS927212948019', '毛子韬', 1, '+86 194-1993-9911', 3, '754367554622817978', '中国上海市徐汇区虹桥路169号27室', '1990-02-01', 0, 0, 'maozitao58', '2022-02-06', 'zitaomao', '2014-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS649322449733', 'Vincent Richardson', 1, '+81 52-803-0976', 2, '778670097924939033', '43F, 3-19-14 Shimizu, Kita Ward, Nagoya, Japan', '1997-03-15', 0, 0, 'rv6', '2008-03-27', 'vincr', '2010-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS812027304354', 'Susan Burns', 1, '+1 312-421-8516', 2, '039032471141043930', '423 North Michigan Ave Suite 4, Chicago, IL 60611, United States', '1998-03-14', 0, 0, 'burnsusan2', '2009-02-06', 'burns1', '2009-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS370680541830', 'Nicole Bryant', 1, '+86 188-9658-9855', 3, '197050675742540385', '28F, No.91, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1989-07-31', 0, 0, 'bryantn2', '2002-11-29', 'bryannicole', '2018-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS396229179429', 'David Stone', 0, '+81 11-118-8327', 2, '691213108645638904', '日本札幌白石区菊水三条五丁目2番6号27階', '1995-05-15', 0, 0, 'stonedavid1', '2013-12-03', 'david74', '2008-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS968114302249', '吳永發', 1, '+81 11-198-9066', 0, '345928766644050481', '日本札幌清田区真栄四条五丁目19番1号43階', '1994-07-17', 0, 0, 'nwingfat', '2017-11-25', 'wingfat6', '2010-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS626596504826', '韩岚', 0, '+86 760-677-4895', 1, '838231703757437656', '中国中山紫马岭商圈中山五路292号28栋', '1997-02-25', 0, 0, 'laha527', '2007-04-11', 'lanhan', '2021-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS394337054614', '鐘秀文', 0, '+1 614-760-5698', 1, '206034255105113630', '889 Wicklow Road Apt 3, Columbus, GA 43204, United States', '1985-01-29', 0, 0, 'smchun', '2001-07-15', 'smchung', '2007-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS475739459734', 'Irene Ramos', 1, '+86 147-1679-8737', 4, '022079221677911371', '中国东莞环区南街二巷536号32楼', '1996-10-30', 0, 0, 'ramosi', '2010-01-28', 'ir4', '2018-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS691537442652', '冯致远', 1, '+86 199-2957-4266', 1, '110872857275334041', '27F, 941 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1991-08-01', 0, 0, 'zhiyuanfeng815', '2012-06-03', 'fz1968', '2009-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS563714391479', '范安琪', 1, '+86 176-0578-4039', 4, '209967240860646983', 'Room 34, 378 East Wangfujing Street, Dongcheng District , Beijing, China', '1991-06-18', 0, 0, 'anqifan', '2001-10-17', 'anqifa', '2002-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS185880470270', '區志明', 0, '+86 171-5859-3828', 3, '830112640892446702', '中国北京市西城区复兴门内大街864号4楼', '1995-11-04', 0, 0, 'achimi', '2019-04-30', 'cmau', '2022-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS064899530436', 'Sharon Mendez', 1, '+1 213-731-3725', 3, '916992362630485285', '833 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1990-08-28', 0, 0, 'sharon119', '2015-11-01', 'mendsharon', '2000-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS698053338232', 'Carl Perry', 0, '+86 755-658-1924', 1, '568882237233477344', 'Room 4, CR Building, 876 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1985-03-13', 0, 0, 'caperry1007', '2018-10-13', 'perrca9', '2005-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS134428327948', 'Francis Gibson', 0, '+81 74-850-7215', 3, '560892692058839284', '日本ならし学園南三丁目9番17号23号室', '1985-05-04', 0, 0, 'francisgibso03', '2019-02-09', 'francisgibson5', '2001-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS911130483477', 'Eugene Roberts', 0, '+44 7675 969549', 3, '856410299132119519', 'Unit 24, Oxford Eco Centre, 375 Hanover Street, London, W1S 1YD, United Kingdom', '1986-07-21', 0, 0, 'robeeugene', '2000-11-18', 'robertseugen', '2010-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS214790180792', '江國明', 1, '+81 3-9626-1391', 1, '945058667759200737', '日本東京品川区東五反田五丁目2番17号32号室', '1993-09-20', 0, 0, 'kwokmingkon', '2004-06-15', 'kong8', '2000-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS290531534858', 'Gerald Clark', 1, '+86 197-2622-0637', 2, '544485412589639756', 'No.7 building, 510 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1994-06-14', 0, 0, 'geraldcla804', '2001-07-15', 'gerclar2', '2009-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS894078615103', 'Edwin Henry', 1, '+86 157-5270-1607', 2, '191042553465203421', '中国成都市锦江区红星路三段446号7室', '1987-02-20', 0, 0, 'henryedwin1', '2021-03-17', 'edwinhenry8', '2016-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS327233009659', '莫秀英', 1, '+86 196-4962-5621', 2, '992990653318758385', 'No.41 building, 96 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1989-08-08', 0, 0, 'moxiuying', '2014-07-16', 'mox', '2009-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS600954156360', '高木聖子', 1, '+44 5709 844032', 2, '083618317224096285', 'Flat 44, 731 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1989-07-24', 0, 0, 'takags2', '2016-09-10', 'takagise', '2006-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS022778162933', '田安琪', 0, '+81 80-0204-1761', 2, '286399441095532904', '28F, 16 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1989-01-13', 0, 0, 'tonkay', '2020-09-03', 'onkay56', '2015-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS475518508665', 'Mark Dixon', 0, '+44 (1223) 92 0771', 0, '342592325667797322', 'Unit 14, Oxford Eco Centre, 876 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1992-12-27', 0, 0, 'dixonmar', '2021-03-28', 'markdix925', '2010-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS418778544305', '蘇志遠', 1, '+1 838-236-6651', 1, '097336972223995225', '344 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1989-09-04', 0, 0, 'sochiyuen', '2000-12-11', 'cyso', '2010-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS885471131128', '严嘉伦', 0, '+81 11-184-4153', 3, '667729891840479690', '日本札幌白石区菊水三条五丁目2番11号33号室', '1992-07-11', 0, 0, 'jiayan', '2001-07-20', 'jiaya', '2021-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS405161796418', 'Craig Robinson', 1, '+81 52-048-7918', 3, '361857272170151720', 'Rm. 38, 7 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1995-09-16', 0, 0, 'robinsoncraig8', '2014-01-29', 'craig6', '2019-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS051211677635', 'Jean Phillips', 1, '+81 52-096-3202', 3, '615836253852557497', '日本なごやし守山区瀬古東二丁目171番8号2階', '1986-04-17', 0, 0, 'jeanphil', '2021-05-05', 'philljean', '2006-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS158582761914', '彭宇宁', 1, '+44 (20) 1157 4607', 1, '024341860587603662', 'Flat 11, 921 Maddox Street, London, W1S 1PU, United Kingdom', '1996-12-13', 0, 0, 'yunipen', '2007-11-12', 'yunpeng', '2020-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS760997577796', 'Edward Gray', 0, '+81 3-3322-8165', 0, '683779165321495634', '12F, 1-5-17, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1991-02-16', 0, 0, 'gray329', '2015-05-17', 'graedward', '2003-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS267990578954', '任云熙', 0, '+44 (116) 414 2004', 3, '840453228729267560', 'No.28 Main building, 877 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1995-11-06', 0, 0, 'yunxire', '2000-04-29', 'yren1', '2017-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS302708192322', '汪岚', 1, '+1 838-510-5712', 3, '747424795891356108', '514 Broadway Apartment 19, Albany, NY 12207, United States', '1991-07-07', 0, 0, 'lwang', '2004-10-29', 'lanwang8', '2016-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS943681991934', '杜岚', 0, '+81 70-6209-0779', 3, '834190504681342434', 'Rm. 9, 2 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-05-29', 0, 0, 'dlan', '2017-05-04', 'dulan', '2020-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS449474531794', 'Louis Parker', 0, '+86 20-157-6666', 0, '137918198300889061', '中国广州市海珠区江南西路817号43室', '1987-07-02', 0, 0, 'louis501', '2013-07-14', 'louipa6', '2012-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS973497148976', '萧云熙', 0, '+44 5987 726592', 1, '929927143453095286', 'Unit 1, Oxford Eco Centre, 213 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1987-02-09', 0, 0, 'yunxi2', '2000-06-19', 'yunx', '2008-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS561156019400', '彭安琪', 1, '+44 (121) 601 4999', 0, '416691614965633336', 'Flat 11, 69 New Street, Birmingham, B2 4DB, United Kingdom', '1998-02-17', 0, 0, 'anqi51', '2014-03-09', 'penga', '2010-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS720482544856', '許詩君', 1, '+86 28-2112-5570', 2, '304178449803269900', 'Room 50, No. 375, Shuangqing Rd, Chenghua District, Chengdu, China', '1998-07-20', 0, 0, 'szekwan10', '2001-04-14', 'skh1', '2010-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS622945489425', '區明詩', 0, '+86 165-7790-5071', 3, '294498035822893685', '中国上海市徐汇区虹桥路934号42栋', '1986-03-21', 0, 0, 'aumingsze', '2000-09-27', 'msau', '2000-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS324269287322', '阿部翼', 0, '+1 312-349-3270', 4, '728596976303335084', '538 Rush Street Apartment 15, Chicago, IL 60611, United States', '1985-03-13', 0, 0, 'abtsu1', '2016-02-27', 'abet', '2004-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS285876306435', '原田紗良', 0, '+86 170-1615-8071', 1, '194092066747896713', '中国中山紫马岭商圈中山五路412号34号楼', '1998-09-20', 0, 0, 'sarah', '2012-11-01', 'has10', '2021-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS315806962759', '秦杰宏', 0, '+81 80-9718-9850', 2, '765796762890764059', '日本おおさかし西成区出城一丁目1番16号2号室', '1992-04-04', 0, 0, 'qjiehong', '2015-03-16', 'jiehongqin', '2021-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS745275200419', '姜梓晴', 1, '+86 760-794-7083', 2, '989763084861268708', '中国中山天河区大信商圈大信南路880号20室', '1990-10-25', 0, 0, 'changtszching2', '2012-05-03', 'tszching7', '2020-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS756645227930', '呂慧珊', 1, '+86 760-991-7803', 2, '569690466081804331', '中国中山乐丰六路326号43栋', '1997-07-30', 0, 0, 'luiwaisan7', '2005-10-26', 'luiwai', '2011-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS808290192342', '餘發', 1, '+44 5085 935638', 2, '362596453182279407', 'Unit 15, Oxford Eco Centre, 621 New Street, Birmingham, B2 4DB, United Kingdom', '1985-09-27', 0, 0, 'yue4', '2006-06-17', 'yue210', '2004-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS343458923133', 'Patrick Hicks', 0, '+81 66-498-5256', 1, '241907844116016197', '日本おおさかし近江堂一丁目7番13号35階', '1992-01-21', 0, 0, 'hp303', '2013-03-14', 'hicks1214', '2019-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS422539245861', '盧惠敏', 1, '+86 197-6033-3565', 3, '999006407290706766', 'Room 14, 270 Yueliu Rd, Fangshan District, Beijing, China', '1996-04-05', 0, 0, 'waimanlo', '2018-10-09', 'lowm', '2010-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS217182003463', '朱璐', 0, '+81 90-0489-7372', 1, '676478943449164950', 'Rm. 43, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-10-20', 0, 0, 'zhulu717', '2009-05-31', 'lu82', '2000-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS658026484798', 'Albert Lopez', 1, '+81 80-7052-9373', 3, '513476310104576701', 'Rm. 28, 1-7-8 Saidaiji Akodacho, Nara, Japan', '1998-08-20', 0, 0, 'lalbert14', '2002-02-15', 'lopeza', '2005-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS689525513688', '韦子异', 0, '+86 755-225-6499', 3, '033109304516799845', 'Room 9, CR Building, 163 Shennan Ave, Futian District, Shenzhen, China', '1998-06-12', 0, 0, 'weiziyi', '2015-04-02', 'ziyiwei', '2009-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS065805453338', '翁發', 0, '+81 66-895-8969', 1, '307460788322639697', '21-kai, 1-7-10 Omido, Higashiosaka, Osaka, Japan', '1998-04-21', 0, 0, 'faty', '2009-12-18', 'faty8', '2016-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS963887965325', '大野大地', 1, '+44 7152 954975', 1, '727036965830636466', 'Block 10, 66 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1997-03-26', 0, 0, 'daichiono', '2005-04-11', 'daichi9', '2006-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS316476542591', '彭慧珊', 1, '+86 10-2502-0884', 4, '397868060889006995', '中国北京市东城区东单王府井东街288号29室', '1997-08-11', 0, 0, 'wspang', '2014-02-07', 'waisanp', '2016-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS671003763227', '中島玲奈', 1, '+86 179-0189-5854', 4, '576207310253276679', '中国深圳福田区景田东一街836号华润大厦42室', '1993-01-16', 0, 0, 'nakajimare', '2010-11-01', 'nakaren', '2013-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS977663720155', '田晓明', 0, '+86 21-0575-0329', 3, '784282590863494519', '中国上海市徐汇区虹桥路923号27室', '1998-09-04', 0, 0, 'tiaxiaoming1986', '2014-09-01', 'xtian8', '2006-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS014365971446', 'Carrie Alvarez', 0, '+81 80-9804-7035', 2, '521521606383419960', 'Rm. 4, 13-3-7 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1993-12-02', 0, 0, 'carrieal', '2010-01-08', 'alvarezca', '2001-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS808507664664', '许詩涵', 0, '+81 52-156-5264', 0, '952670989117157344', 'Rm. 19, 10 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1998-10-08', 0, 0, 'shihaxu6', '2018-06-29', 'xushi47', '2003-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS349899784962', '廖安琪', 1, '+86 160-3929-8007', 1, '135149146955604177', 'Room 10, No. 602, Shuangqing Rd, Chenghua District, Chengdu, China', '1994-02-27', 0, 0, 'anqi1', '2002-07-04', 'anqiliao', '2021-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS759167573944', '邵惠妹', 1, '+86 155-0761-5904', 2, '227096460996608736', '中国北京市東城区東直門內大街397号33栋', '1996-01-11', 0, 0, 'shui', '2004-01-03', 'sihuimei2', '2001-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS386678821229', '莫震南', 1, '+44 5372 859325', 0, '600377702067051376', 'No.27 Main building, 786 Maddox Street, London, W1S 1PU, United Kingdom', '1997-03-01', 0, 0, 'zhennan810', '2006-08-12', 'zhennan809', '2020-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS347745294170', 'Tina Munoz', 0, '+86 20-459-1137', 1, '746874504598354972', '中国广州市海珠区江南西路815号13楼', '1993-06-05', 0, 0, 'munozt', '2018-11-30', 'munot', '2008-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS868783966058', '徐睿', 0, '+44 5098 339139', 0, '018347848734486447', 'Block 16, 404 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1986-07-17', 0, 0, 'xru1942', '2021-02-10', 'xur', '2019-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS609375399906', 'Lori Kelley', 0, '+86 28-8102-9140', 3, '999865840436774965', '22F, No.239, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1985-07-21', 0, 0, 'lori93', '2018-05-29', 'kelley1', '2017-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS972244697769', 'Pamela Tucker', 0, '+81 90-2883-7267', 1, '148381408938466001', '日本ならし西大寺赤田町一丁目7番6号15階', '1996-09-10', 0, 0, 'patucker', '2000-03-12', 'tuckerpamela', '2007-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS006155582809', '王致远', 0, '+81 74-652-5039', 3, '718875191460190262', 'Rm. 25, 1-7-18 Saidaiji Akodacho, Nara, Japan', '1990-10-19', 0, 0, 'wang305', '2015-01-26', 'wangzhiyuan', '2000-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS873260148608', '林宇宁', 0, '+1 838-024-7870', 2, '530689050112325540', '140 Central Avenue Suite 14, Albany, NY 12206, United States', '1994-08-24', 0, 0, 'yuninglin', '2008-03-01', 'liny', '2014-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS637919040598', 'Don Warren', 1, '+86 190-4253-3491', 2, '483523947839472157', 'Room 13, CR Building, 802 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1995-01-10', 0, 0, 'wd15', '2006-02-15', 'donw', '2006-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS843611716244', 'Stanley Cooper', 0, '+44 (151) 099 3611', 3, '872078364479078607', 'Unit 27, Oxford Eco Centre, 527 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1989-01-13', 0, 0, 'costanley', '2022-02-06', 'coopers', '2010-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS309934912266', '刘杰宏', 1, '+86 769-2348-3655', 1, '654354121285652788', 'No.31 building, 666 Huanqu South Street 2nd Alley, Dongguan, China', '1988-06-11', 0, 0, 'liujiehong', '2019-07-16', 'liujiehong609', '2019-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS243510398150', 'Roger Gardner', 0, '+81 52-313-4640', 2, '332382770492883441', '21F, 3-19-15 Shimizu, Kita Ward, Nagoya, Japan', '1996-06-19', 0, 0, 'grog6', '2005-10-11', 'rogg', '2005-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS902769650710', '三浦百花', 0, '+1 213-390-1602', 1, '536994593529958974', '713 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1995-10-24', 0, 0, 'momokamiura108', '2020-03-18', 'mmomo', '2012-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS685066355231', 'Ryan Parker', 1, '+81 66-297-6272', 2, '024235453824698244', 'Rm. 23, 3-27-6 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1990-10-30', 0, 0, 'rparker', '2000-02-06', 'parkerr', '2012-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS838370198689', '叶璐', 1, '+44 7858 496462', 0, '651317943783987340', 'Flat 26, 727 Hanover St, Liverpool, L1 4AF, United Kingdom', '1986-06-16', 0, 0, 'luy', '2002-05-02', 'lye90', '2012-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS221700545352', 'Evelyn Diaz', 0, '+81 74-611-0851', 3, '822770300238266688', '日本ならし西大寺赤田町一丁目7番12号7号室', '1992-12-14', 0, 0, 'evelyn109', '2006-12-11', 'evelyd1971', '2021-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS639670203246', '池田大地', 0, '+44 (151) 172 3182', 2, '463166908531052486', 'Unit 29, Oxford Eco Centre, 202 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1993-09-06', 0, 0, 'daichiikeda2', '2020-08-12', 'ida8', '2017-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS973310859921', '方明詩', 1, '+44 (20) 8883 6382', 3, '945526331724744311', 'Unit 10, Oxford Eco Centre, 208 Maddox Street, London, W1S 1PU, United Kingdom', '1989-05-18', 0, 0, 'mingsze7', '2002-04-22', 'mingsze20', '2011-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS752708633252', '安藤蒼士', 0, '+81 66-929-3167', 1, '406228199209614987', '日本おおさかし平野区加美東四丁目9番20号19階', '1991-02-24', 0, 0, 'aoshiando105', '2018-05-20', 'aoshia', '2007-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS122314118592', 'Sharon Grant', 1, '+81 74-112-1940', 3, '196370303205539579', '日本ならし大和郡山市本庄町一丁目1番1号4号室', '1994-04-14', 0, 0, 'sharon8', '2006-07-12', 'sharongra2017', '2014-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS917786308378', '何睿', 1, '+86 769-108-2036', 0, '605698314987939825', '中国东莞环区南街二巷917号19栋', '1995-06-06', 0, 0, 'rui7', '2003-10-14', 'ruih', '2013-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS475483314025', '石井葵', 0, '+81 90-1240-6939', 0, '711380841862117422', '日本札幌清田区真栄四条五丁目19番10号20階', '1996-12-14', 0, 0, 'aoiishi', '2000-07-22', 'ishiao', '2007-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS729424548461', 'Cheryl Mitchell', 0, '+1 212-632-2143', 2, '795229802072492337', '882 Fifth Avenue Apartment 11, New York, NY 10017, United States', '1986-11-17', 0, 0, 'mitchellc', '2017-09-27', 'cmitchell', '2009-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS886928303047', '太田葵', 1, '+86 10-111-1005', 3, '461660914821803884', 'No.28 building, 445 East Wangfujing Street, Dongcheng District , Beijing, China', '1990-05-15', 0, 0, 'otaa', '2014-05-10', 'otaao', '2012-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS489028801076', '後藤詩乃', 0, '+81 66-265-1084', 2, '636983291374803900', '43-kai, 2-1-19 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1986-12-31', 0, 0, 'goto4', '2020-07-08', 'shinogot', '2010-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS412166414648', '苑國權', 1, '+86 769-2142-3784', 0, '925880898415653326', 'No.21 building, 459 Huanqu South Street 2nd Alley, Dongguan, China', '1990-12-22', 0, 0, 'yuenkk16', '2016-04-24', 'yuen10', '2005-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS125124747248', 'Tina Moore', 1, '+86 10-950-1432', 1, '961841094291648328', '中国北京市東城区東直門內大街938号47栋', '1994-04-25', 0, 0, 'mtina9', '2001-09-19', 'tinmoore2', '2004-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS804778676752', '萬力申', 1, '+81 90-2646-9369', 2, '652482382801891926', '日本ならし西大寺赤田町一丁目7番20号19階', '1990-03-13', 0, 0, 'mengliksun1207', '2013-04-13', 'menliksun', '2011-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS481586266577', '竹内美咲', 1, '+81 70-4236-3732', 1, '373577319078308951', '46-kai, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1986-11-03', 0, 0, 'misatakeuchi', '2009-09-15', 'misaki1015', '2019-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS483329454930', '藤頴璇', 1, '+81 66-681-9926', 2, '639788431901915756', '38-kai, 2-1-13 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1994-08-24', 0, 0, 'wingsuen6', '2003-03-08', 'tang1', '2014-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS452838774743', '伊藤光莉', 0, '+86 21-372-5188', 3, '975168941436591609', 'Room 38, CR Building, 84 Jianxiang Rd, Pudong, Shanghai, China', '1992-12-27', 0, 0, 'hikari74', '2008-09-20', 'itohikari', '2007-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS892483154006', 'Louis Harris', 0, '+44 (20) 3023 2284', 2, '493468031361391384', 'Unit 11, Oxford Eco Centre, 633 Regent Street, London, W1B 2LX, United Kingdom', '1987-09-05', 0, 0, 'harrilouis', '2002-04-03', 'harloui', '2010-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS213127389568', '武田結翔', 0, '+1 312-278-2841', 3, '304393457967339623', '22 Rush Street Suite 46, Chicago, IL 60611, United States', '1985-03-14', 0, 0, 'yuitotakeda', '2000-03-06', 'takyuito', '2004-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS336339098102', '馮國明', 1, '+86 160-2631-8075', 0, '382968512272873232', '中国中山京华商圈华夏街849号华润大厦32室', '1988-09-05', 0, 0, 'fung2', '2008-11-30', 'kmfun', '2012-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS710194761871', '高田桜', 1, '+1 718-067-7114', 1, '481659419972203844', '796 Bergen St Apartment 36, Brooklyn, NY 11217, United States', '1990-12-23', 0, 0, 'satakada5', '2004-06-14', 'takadas10', '2010-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS286602035679', 'Sandra Allen', 0, '+86 134-7509-7460', 3, '491733108805583344', 'Room 25, CR Building, 938 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1995-02-12', 0, 0, 'sandra829', '2008-08-07', 'allesandra', '2020-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS815135051216', '朱致远', 0, '+44 (151) 636 3490', 2, '355192678309147221', 'No.7 Main building, 193 Hanover St, Liverpool, L1 4AF, United Kingdom', '1995-03-21', 0, 0, 'zhuzhiyuan', '2006-08-24', 'zhuzhiyuan', '2014-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS407361383483', '何德華', 1, '+1 213-829-1792', 1, '585721865199385781', '384 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1985-03-07', 0, 0, 'htw', '2006-10-27', 'hotw', '2010-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS262481233462', '梁子异', 1, '+86 755-006-9785', 2, '742413016774317759', '中国深圳罗湖区田贝一路709号34楼', '1994-01-08', 0, 0, 'liangziyi1979', '2020-03-27', 'zl213', '2004-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS978386222342', 'Jeffery Silva', 0, '+86 138-7115-6685', 1, '186236959145861469', 'Room 45, No.124, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1998-11-13', 0, 0, 'silvajeffe', '2008-11-23', 'jefferysilva408', '2001-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS087059278556', '呂志明', 1, '+44 5199 854034', 4, '539117083247843622', 'No.18 Main building, 802 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1991-01-24', 0, 0, 'luichiming', '2005-03-13', 'luichim', '2016-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS089930412483', '湯富城', 0, '+81 11-793-7042', 1, '769048191258637081', '32F, 5-4-19 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-12-05', 0, 0, 'fushingtong', '2007-01-19', 'tonfs6', '2007-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS461513988427', '薛子异', 1, '+86 188-5630-3582', 2, '992229617324703012', '16F, 677 Jingtian East 1st St, Futian District, Shenzhen, China', '1986-03-24', 0, 0, 'ziyix904', '2012-02-08', 'xziyi', '2002-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS423610694215', '叶嘉伦', 1, '+86 161-3368-6547', 2, '135686820999596349', '中国上海市黄浦区淮海中路28号华润大厦36室', '1997-07-11', 0, 0, 'yejialu617', '2012-12-05', 'ye430', '2004-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS539711432401', '贺宇宁', 0, '+1 312-777-0430', 4, '445997839493460819', '434 North Michigan Ave Apartment 45, Chicago, IL 60611, United States', '1985-05-17', 0, 0, 'heyunin', '2014-07-06', 'yunih1966', '2006-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS207683848505', '蔣安娜', 0, '+81 70-7851-2174', 3, '826320013149145223', '24F, 5-2-16 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-01-20', 0, 0, 'chiaonna', '2005-11-11', 'chianon69', '2016-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS412935000734', '常秀英', 0, '+81 66-858-5399', 3, '224134258316098409', '7-kai, 2-1-9 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-07-18', 0, 0, 'xiuying527', '2014-09-10', 'chx', '2018-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS491248670390', '區裕玲', 0, '+81 74-190-0091', 3, '551370399712493492', '日本ならし大和郡山市本庄町一丁目1番17号23階', '1998-01-01', 0, 0, 'auyu', '2021-03-06', 'yulingau9', '2001-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS684200612618', '雷睿', 0, '+81 80-1663-3346', 3, '955236123513547211', '19F, 2-1-5 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-02-02', 0, 0, 'rul', '2014-04-08', 'rui309', '2013-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS871078635281', '佐藤美緒', 1, '+81 70-8545-9957', 4, '944998190672037804', '日本おおさかし平野区加美東四丁目9番20号44階', '1991-11-24', 0, 0, 'misato', '2002-04-15', 'mios', '2014-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS459130887302', 'Judith Alvarez', 1, '+81 80-0285-2112', 3, '864181654774453030', 'Rm. 25, 3-19-14 Shimizu, Kita Ward, Nagoya, Japan', '1993-06-26', 0, 0, 'alvarezj5', '2013-11-24', 'alvarezjud903', '2006-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS378129871692', '岩崎花', 1, '+86 760-8925-6573', 1, '121831637081616676', '中国中山紫马岭商圈中山五路556号华润大厦1室', '1985-04-01', 0, 0, 'hanaiw', '2019-02-03', 'iwasakihan', '2006-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS172649645204', '崔嘉伦', 0, '+86 755-185-8791', 2, '383360767053817997', '15F, 970 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1993-03-15', 0, 0, 'jialun629', '2004-11-30', 'jialcui', '2007-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS862416234753', '贾晓明', 0, '+44 (161) 621 6323', 1, '224492768252242416', 'Unit 4, Oxford Eco Centre, 282 Portland St, Manchester, M1 3LA, United Kingdom', '1990-07-23', 0, 0, 'jiaxia1960', '2012-05-01', 'jiaxiaoming1108', '2016-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS632565595873', '内田一輝', 1, '+81 11-559-7309', 2, '395664163650233865', '日本札幌中央区宮の森四条六丁目1番5号31階', '1998-01-14', 0, 0, 'uchida3', '2006-10-30', 'ikkuc730', '2014-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS068733513573', '石田絢斗', 1, '+86 760-5642-8418', 1, '273467309002934292', '中国中山紫马岭商圈中山五路25号4楼', '1997-08-22', 0, 0, 'ai48', '2011-06-20', 'ayaish10', '2014-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS333497730653', '太田樹', 0, '+81 80-9858-4287', 0, '422042804137219944', 'Rm. 47, 6-1-20, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1995-03-17', 0, 0, 'oitsuki5', '2009-04-13', 'iota', '2009-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS529729377267', 'Herbert Vargas', 1, '+86 144-1346-8833', 3, '226172610677684554', '中国东莞坑美十五巷59号华润大厦27室', '1987-04-18', 0, 0, 'hvargas', '2018-06-06', 'hv95', '2015-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS781543917517', 'Edward West', 1, '+81 70-5856-9844', 2, '388141140216511135', '日本なごやし北区清水三丁目19番15号6号室', '1988-02-14', 0, 0, 'edwardwest1', '2015-08-19', 'wedwar', '2014-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS353930867770', '島田美咲', 1, '+44 (20) 0470 5215', 2, '448450822813511191', 'No.43 Main building, 949 Hanover Street, London, W1S 1YD, United Kingdom', '1985-01-31', 0, 0, 'shimmisaki8', '2014-08-27', 'shimada9', '2020-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS119398335906', '古明', 0, '+44 7751 581014', 3, '630639029186555595', 'No.15 Main building, 275 Hanover Street, London, W1S 1YD, United Kingdom', '1998-07-16', 0, 0, 'km407', '2012-04-10', 'kuming', '2003-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS997603488447', '菅原大輔', 0, '+1 212-762-0859', 1, '101386163825435046', '607 Bank Street Apt 48, New York, NY 10014, United States', '1986-05-03', 0, 0, 'dsu', '2014-10-02', 'sugawaradaisuke', '2016-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS250649911327', '小川桜', 1, '+44 (1223) 08 7607', 4, '030936734579613432', 'Flat 2, 305 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1987-11-30', 0, 0, 'osakura', '2008-06-17', 'ogawa98', '2008-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS178918547132', 'Steve Flores', 1, '+81 90-4968-1448', 4, '349660602219790499', '24F, 1 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1997-05-12', 0, 0, 'florsteve', '2009-09-21', 'flores1', '2010-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS807065811915', 'Thelma Robinson', 1, '+81 52-174-8455', 0, '456677217698795729', '日本なごやし守山区瀬古東二丁目171番5号27号室', '1990-12-06', 0, 0, 'thelmarobinson8', '2016-12-30', 'robinsonth', '2021-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS572724008489', '高橋蓮', 0, '+81 70-7463-6389', 1, '617080410421082164', '日本ならし学園南三丁目9番5号20階', '1994-02-07', 0, 0, 'rentakah', '2008-08-11', 'ren87', '2011-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS902632613812', 'Carol Watson', 1, '+86 197-8191-4411', 2, '921951504085258652', 'No.50 building, 688 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1989-03-14', 0, 0, 'watsc', '2013-12-30', 'carolw', '2010-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS357000835468', '中川翼', 1, '+44 5517 685427', 2, '973096804427130024', 'Flat 33, 808 Park End St, Oxford, OX1 1JD, United Kingdom', '1998-04-09', 0, 0, 'nakagawatsub', '2003-10-19', 'tnakagawa9', '2000-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS553314672742', '山崎蓮', 1, '+81 70-4856-1948', 1, '142499012052015042', '11F, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1995-05-26', 0, 0, 'reny', '2010-06-18', 'reyamazaki', '2020-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS027904794329', '翁俊宇', 1, '+86 145-4848-7289', 2, '868767714526458562', 'No.29 building, 300 Jianxiang Rd, Pudong, Shanghai, China', '1990-10-25', 0, 0, 'chunyuy', '2008-09-17', 'yungcy', '2018-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS348424751363', 'Robert Brown', 1, '+86 130-3621-7862', 2, '249277277031672946', '中国北京市西城区西長安街981号华润大厦10室', '1997-08-27', 0, 0, 'robertbrown', '2011-02-04', 'robbrown1', '2013-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS805563285906', '高詠詩', 0, '+86 28-691-5228', 3, '909869094433931958', '中国成都市锦江区红星路三段446号48号楼', '1996-03-14', 0, 0, 'wskao66', '2020-03-02', 'kao67', '2008-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS110818788201', 'Justin Brooks', 0, '+81 74-432-4493', 4, '886250298017578874', '日本ならし大和郡山市本庄町一丁目1番10号48階', '1990-11-24', 0, 0, 'bjustin', '2006-01-20', 'brooks6', '2002-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS295547792132', 'Philip Cooper', 1, '+86 164-5678-8749', 3, '124534575349228265', '49F, 635 Huanqu South Street 2nd Alley, Dongguan, China', '1994-05-18', 0, 0, 'coophilip', '2016-10-02', 'philipcoop1985', '2010-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS591579405402', '文安娜', 0, '+81 70-5523-7987', 1, '057457054041730607', '1-kai, 4-9-9 Kamihigashi, Hirano Ward, Osaka, Japan', '1986-04-20', 0, 0, 'onna1997', '2013-06-14', 'manon', '2001-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS216088609586', 'Ryan Gonzalez', 0, '+86 163-0732-5409', 1, '200396939823189725', 'Room 12, No. 166, Shuangqing Rd, Chenghua District, Chengdu, China', '1990-07-05', 0, 0, 'rgon4', '2009-06-19', 'gryan', '2016-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS642791035620', 'Jesse Howard', 1, '+81 74-479-3163', 3, '279554727265940713', '日本ならし西大寺赤田町一丁目7番10号27階', '1991-03-22', 0, 0, 'jesseh', '2021-01-29', 'hjesse1994', '2004-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS485980932454', '董秀英', 0, '+81 66-871-3655', 3, '351326458479162172', '34-kai, 2-1-2 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1986-09-07', 0, 0, 'xiuyingdon1129', '2013-12-28', 'dx1', '2000-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS741469135701', '斎藤樹', 0, '+81 66-818-7908', 1, '454227262675324865', 'Rm. 30, 2-1-2 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1994-04-22', 0, 0, 'itsaito919', '2019-11-17', 'itsuki9', '2003-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS954689374325', 'Joanne Stephens', 1, '+81 90-5298-9205', 1, '682260604122177381', 'Rm. 8, 2-1-6 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1987-09-01', 0, 0, 'stephens66', '2017-06-29', 'stephensjoann10', '2012-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS184720208990', '毛震南', 1, '+44 (161) 213 8387', 2, '715390634021651160', 'Block 14, 472 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-06-21', 0, 0, 'zhennm', '2017-09-27', 'zhennanmao', '2004-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS370740001228', 'Katherine Woods', 1, '+86 769-6450-3122', 3, '862501097774065926', '中国东莞东泰五街565号37栋', '1990-10-03', 0, 0, 'wk2001', '2020-01-05', 'woodk10', '2008-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS497664805757', '藤原結翔', 0, '+81 52-435-4286', 3, '031311229969159712', '43F, 2 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-02-03', 0, 0, 'yuito1986', '2003-02-02', 'yuitf7', '2018-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS753288015412', '車國榮', 0, '+1 330-088-7901', 4, '499026162165301381', '405 Collier Road Apartment 37, Akron, OH 44320, United States', '1989-12-10', 0, 0, 'kwokwingch7', '2015-01-17', 'kwche10', '2004-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS843617676564', 'Charlotte Boyd', 0, '+44 (121) 957 3139', 4, '783926957151892525', 'Unit 26, Oxford Eco Centre, 998 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1986-05-04', 0, 0, 'boydcharl69', '2001-07-15', 'boyd1', '2018-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS051514001544', '成詠詩', 0, '+1 330-404-4271', 2, '461315085267999576', '270 West Market Street 3rd Floor, Akron, OH 44333, United States', '1997-05-09', 0, 0, 'shingws', '2001-07-02', 'shingwing20', '2017-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS447225668826', '羅慧琳', 0, '+1 614-975-3131', 1, '611226298829557740', '500 East Alley Apt 25, Columbus, GA 43201, United States', '1985-06-13', 0, 0, 'wailamlo', '2012-10-02', 'wailam6', '2017-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS880874600290', 'Ray Freeman', 1, '+86 10-9642-4045', 4, '730075196950959974', 'No.21 building, 637 Dong Zhi Men, Dongcheng District, Beijing, China', '1989-02-17', 0, 0, 'freemanray7', '2019-08-23', 'rayfree', '2006-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS023792628701', '邹璐', 1, '+44 (161) 740 5581', 3, '600724284635123160', 'No.5 Main building, 269 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-12-11', 0, 0, 'zolu228', '2013-01-28', 'luzou11', '2021-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS820773484366', '梁致远', 0, '+81 80-5911-0316', 3, '835386060407966680', 'Rm. 43, 13-3-16 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1988-10-29', 0, 0, 'liang10', '2012-05-03', 'zliang42', '2001-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS463090832382', 'Frank Hall', 1, '+86 166-0324-4066', 3, '163807221532572267', '中国成都市锦江区人民南路四段129号华润大厦1室', '1998-05-18', 0, 0, 'hall7', '2007-09-07', 'hall6', '2005-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS448495818981', '井上花', 1, '+81 90-4181-2477', 1, '765014702128460486', '日本札幌白石区菊水三条五丁目2番8号5階', '1989-04-29', 0, 0, 'haino1982', '2013-05-23', 'hinoue', '2015-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS083139494616', 'Brenda Smith', 1, '+86 181-7007-5995', 1, '192541011246378361', '7F, 165 Dongtai 5th St, Dongguan, China', '1999-01-29', 0, 0, 'brensmith', '2001-11-08', 'smitb', '2015-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS904672313027', '容浩然', 1, '+81 80-8602-4782', 0, '725982571869118366', '31-kai, 1-7-4 Omido, Higashiosaka, Osaka, Japan', '1991-09-07', 0, 0, 'hyy', '2016-12-19', 'yhy', '2002-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS572310538905', '高嘉伦', 0, '+81 70-3339-7339', 2, '428495147402980089', '1-kai, 6-1-16, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-11-14', 0, 0, 'gaoj', '2009-11-03', 'jialg1', '2012-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS568581980251', 'Carmen Murphy', 1, '+81 66-046-3465', 1, '830885448501868952', '日本おおさかし西成区出城一丁目1番19号39号室', '1988-04-06', 0, 0, 'murphy1962', '2011-05-08', 'murphyc', '2008-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS424975141204', 'Daniel Stevens', 1, '+81 70-8752-3508', 2, '358319400495407530', '日本ならし大和郡山市本庄町一丁目1番20号46階', '1987-10-02', 0, 0, 'sdan', '2020-12-25', 'daniel6', '2005-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS315048655487', 'Anita Miller', 1, '+81 3-6490-4909', 3, '880635732958837863', '14F, 3-15-12 Ginza, Chuo-ku, Tokyo, Japan', '1987-12-16', 0, 0, 'millera', '2006-06-22', 'milleranit', '2006-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS909442228135', '袁裕玲', 0, '+44 5138 341994', 1, '909147832147024985', 'Flat 19, 636 Portland St, Manchester, M1 3LA, United Kingdom', '1989-02-10', 0, 0, 'ylyuen', '2019-08-07', 'yulingyuen', '2013-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS776192098829', '郭詩涵', 1, '+81 90-7854-0016', 3, '296377441811919576', '日本東京中央区銀座三丁目12番11号5階', '1988-03-27', 0, 0, 'shihanguo', '2016-07-02', 'guo7', '2012-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS271082353284', '文力申', 0, '+81 80-8813-0065', 1, '860202798181765128', '7-kai, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1993-07-26', 0, 0, 'mals', '2000-11-19', 'liksunman', '2001-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS174876261805', '谢晓明', 1, '+86 188-3841-8130', 3, '533586949162446776', '中国北京市东城区东单王府井东街534号46室', '1988-07-13', 0, 0, 'xiaomxie56', '2015-12-25', 'xie711', '2003-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS904899980352', '平野架純', 0, '+86 760-7513-7383', 2, '775231440967165805', '中国中山乐丰六路456号22楼', '1990-04-20', 0, 0, 'hiranokasu', '2010-03-14', 'hik', '2002-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS262157637649', '蘇嘉欣', 1, '+86 133-8856-4587', 4, '628160604331302796', 'Room 3, 986 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1989-12-28', 0, 0, 'kyso2001', '2005-04-25', 'soky44', '2013-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS017695689740', '姚晓明', 0, '+81 11-410-2587', 4, '047768017002383133', '3-kai, 13-3-10 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1997-08-18', 0, 0, 'yaxiaoming', '2003-01-19', 'xiaomingyao74', '2015-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS960757195675', '菊地湊', 0, '+86 174-1286-9779', 1, '900121143127236188', 'Room 9, 726 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1989-03-10', 0, 0, 'kikuchi908', '2018-09-19', 'kikuchimi', '2020-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS012832200601', 'Clarence Robinson', 0, '+1 718-898-9096', 2, '285958452206634054', '703 1st Ave Apt 43, Brooklyn, NY 11220, United States', '1998-06-17', 0, 0, 'robinclar', '2020-02-09', 'robinson3', '2012-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS434422195148', '菊地明菜', 0, '+81 11-181-1689', 2, '154711437003210029', '日本札幌白石区菊水三条五丁目2番10号32階', '1987-01-27', 0, 0, 'aki6', '2018-10-10', 'kikua', '2017-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS286719015481', '孙璐', 1, '+1 718-566-5012', 1, '386374029787525245', '66 Columbia St Apartment 14, Brooklyn, NY 11231, United States', '1987-08-26', 0, 0, 'slu', '2016-04-20', 'sunl904', '2019-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS829908968134', '鈴木葉月', 1, '+81 66-641-4473', 1, '199306143783890426', '4F, 3-27-15 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1994-09-28', 0, 0, 'suzukihazuki', '2014-11-19', 'suzuhazuk1031', '2018-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS754702985337', '于秀英', 0, '+1 838-826-3051', 2, '958571171016042549', '470 Broadway 3rd Floor, Albany, NY 12207, United States', '1991-07-14', 0, 0, 'xiuying2', '2010-12-28', 'yuxiuyi', '2002-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS513823254665', '邹致远', 1, '+1 213-866-4307', 4, '585593449940779702', '6 Grape Street Suite 38, Los Angeles, CA 90002, United States', '1998-09-23', 0, 0, 'zzhiyuan727', '2001-04-01', 'zhiyuan803', '2016-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS690011551444', '清水美月', 0, '+1 213-571-9340', 3, '028983349003403507', '978 Alameda Street Suite 16, Los Angeles, CA 90002, United States', '1986-12-05', 0, 0, 'mitsuki73', '2002-01-02', 'shimizumitsuki', '2012-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS009913887837', '向詠詩', 0, '+44 5464 944512', 2, '546359206498158066', 'Unit 17, Oxford Eco Centre, 118 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1989-05-30', 0, 0, 'heungws218', '2017-07-20', 'heungws', '2003-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS385584287711', '前田凛', 1, '+81 52-891-8048', 4, '314568137093207760', '47-kai, 6 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1998-10-28', 0, 0, 'rin528', '2020-12-10', 'maedarin111', '2021-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS815555904243', '白安娜', 0, '+81 3-1983-0833', 1, '119971378313447683', '日本東京港区東新橋一丁目5番11号28階', '1992-02-16', 0, 0, 'onnapak8', '2005-07-06', 'onnpak1025', '2001-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS925873322462', '中森陽菜', 1, '+81 11-075-5211', 3, '798015426718568747', '日本札幌豊平区豊平三条十三丁目3番10号19号室', '1991-04-20', 0, 0, 'hinanakamori610', '2014-06-24', 'nhi', '2010-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS871034096789', 'Jamie Ward', 1, '+1 614-555-8560', 1, '868318149373740400', '586 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1994-10-17', 0, 0, 'wardjamie1103', '2006-06-09', 'ward8', '2004-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS509658584271', '宋杰宏', 1, '+1 838-951-1265', 3, '432670665488357061', '548 Broadway Apt 8, Albany, NY 12207, United States', '1997-09-30', 0, 0, 'song313', '2010-08-10', 'jiehong627', '2015-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS299598594290', '萬明', 1, '+44 5905 817440', 4, '458051725320068264', 'No.23 Main building, 389 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1995-09-15', 0, 0, 'minmen', '2021-11-08', 'mime', '2020-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS927485742404', '田致远', 1, '+86 10-2049-0875', 3, '199152617624167011', '14F, 287 028 County Rd, Yanqing District, Beijing, China', '1987-02-18', 0, 0, 'tian1114', '2021-10-20', 'zhiyuant', '2001-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS044074312924', 'Brandon Roberts', 0, '+44 (161) 940 9370', 2, '902926872925766919', 'Unit 13, Oxford Eco Centre, 101 Portland St, Manchester, M1 3LA, United Kingdom', '1987-11-08', 0, 0, 'rbrandon1115', '2003-11-08', 'roberts627', '2011-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS892366006147', '韦秀英', 1, '+81 90-8300-4539', 2, '372508235497657734', '23F, 1-1-4 Deshiro, Nishinari Ward, Osaka, Japan', '1988-04-04', 0, 0, 'xiuywei', '2011-07-01', 'weixiu', '2017-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS507972999060', 'Ethel Long', 0, '+86 167-5598-8335', 3, '689336069566386432', '中国上海市黄浦区淮海中路970号19楼', '1997-11-11', 0, 0, 'ethellong802', '2012-09-13', 'lethe', '2017-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS178038636344', '周永發', 0, '+81 90-8958-3573', 1, '302681630879721668', 'Rm. 25, 2-5-15 Chitose, Atsuta Ward, Nagoya, Japan', '1999-01-19', 0, 0, 'chowwf', '2006-11-27', 'chowwingfat', '2006-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS363070389119', 'Cindy Griffin', 0, '+86 191-1817-0344', 4, '626710697496584825', 'No.6 building, 102 FuXingMenNei Street, XiCheng District, Beijing, China', '1991-04-14', 0, 0, 'griffincind', '2011-04-17', 'cindygriffin09', '2017-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS282238857637', 'Terry Jackson', 0, '+86 755-368-6032', 2, '856647779283410119', 'Room 29, CR Building, 178 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1993-07-15', 0, 0, 'jackson319', '2007-02-19', 'jacksonterry', '2007-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS780016833991', '戚德華', 0, '+86 28-1262-9741', 1, '951417065496472380', 'No.48 building, 925 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1998-03-23', 0, 0, 'takchic', '2006-10-17', 'chictw', '2017-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS088177643514', '田中大輔', 1, '+86 28-3090-1259', 0, '860836809118258019', '中国成都市锦江区红星路三段574号华润大厦35室', '1987-09-02', 0, 0, 'tanaka8', '2009-02-11', 'daisuketanaka15', '2009-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS389553481558', 'Juan Garcia', 1, '+44 7053 895393', 3, '558753771437008628', 'Block 33, 409 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1988-01-25', 0, 0, 'garcia1947', '2004-08-20', 'garj8', '2018-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS275331531465', '竹内百花', 0, '+1 718-857-9917', 2, '976733051504086788', '213 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1986-01-20', 0, 0, 'mtakeuchi', '2005-11-11', 'takeuchimomok', '2011-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS135143519514', 'Kathryn Stone', 0, '+81 74-957-6998', 2, '049753657240484090', '21F, 3-9-11 Gakuenminami, Nara, Japan', '1993-10-10', 0, 0, 'stonekathryn1997', '2007-01-27', 'kathrynst46', '2002-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS059604479585', '岡田光莉', 1, '+86 769-8735-3040', 1, '270844820737088947', 'Room 29, CR Building, 474 Huanqu South Street 2nd Alley, Dongguan, China', '1995-11-01', 0, 0, 'okah', '2012-04-16', 'hikaokada', '2020-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS378367358134', '小林翼', 0, '+86 186-4970-7805', 1, '640824936977517562', '中国上海市闵行区宾川路526号华润大厦24室', '1990-03-30', 0, 0, 'tsubasakobayashi', '2011-08-18', 'kobtsubasa', '2000-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS523002877486', 'Tina Stone', 0, '+81 90-6384-1553', 2, '323069715553033060', '日本札幌豊平区豊平三条十三丁目3番11号35階', '1989-02-01', 0, 0, 'stotina3', '2012-11-14', 'tinas', '2005-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS257734200507', '鄧家明', 0, '+81 3-4362-4379', 0, '660189753902430391', '日本東京渋谷区代々木二丁目3番11号38階', '1998-12-14', 0, 0, 'kmtang10', '2019-01-14', 'tkami', '2000-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS219857251715', '小山大地', 1, '+86 760-194-1631', 0, '913058164049028064', 'Room 15, CR Building, 827 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1993-06-14', 0, 0, 'daick', '2009-11-12', 'koydaichi1020', '2004-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS010976269758', 'Elaine Patterson', 0, '+1 213-332-2746', 2, '612225663234009265', '151 Wall Street Suite 41, Los Angeles, CA 90003, United States', '1985-09-20', 0, 0, 'elainepatt', '2006-09-03', 'patteelaine', '2019-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS316761182116', '馬國明', 1, '+81 70-5018-3456', 3, '997997554206400542', 'Rm. 30, 4-9-17 Kamihigashi, Hirano Ward, Osaka, Japan', '1996-02-20', 0, 0, 'makm', '2004-01-10', 'kmma208', '2009-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS130329387241', '譚德華', 0, '+1 614-942-1383', 0, '586666545570014485', '164 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1988-02-01', 0, 0, 'ttw', '2003-10-27', 'takwahta', '2008-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS236098572886', '市川百花', 0, '+44 7766 885931', 2, '519017253487745138', 'Flat 20, 565 Portland St, Manchester, M1 3LA, United Kingdom', '1992-04-03', 0, 0, 'michikawa205', '2018-04-24', 'im408', '2013-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS989113860574', '黎詩君', 0, '+86 176-2043-6692', 1, '323930414116431263', 'No.45 building, 217 Tianhe Road, Tianhe District, Guangzhou, China', '1995-04-04', 0, 0, 'sklai49', '2021-08-19', 'lsk', '2006-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS598336360401', '徐永發', 1, '+1 614-672-6603', 2, '621457949652408254', '263 East Alley Apartment 19, Columbus, GA 43201, United States', '1991-07-25', 0, 0, 'wftsui', '2019-11-06', 'tsui2', '2021-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS622858289994', '鄧小慧', 0, '+44 (161) 533 5379', 1, '654674012336293772', 'Block 7, 855 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-04-10', 0, 0, 'siuwai8', '2013-12-13', 'tangsiuwai', '2018-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS005324084122', '駱世榮', 1, '+81 66-530-4477', 0, '588814008799391531', '日本おおさかし西成区出城一丁目1番5号27号室', '1995-01-29', 0, 0, 'losw', '2013-04-13', 'swlok', '2000-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS495515241017', 'Eva Baker', 0, '+81 52-522-8444', 1, '692528686616926791', 'Rm. 36, 2-5-15 Chitose, Atsuta Ward, Nagoya, Japan', '1993-06-20', 0, 0, 'evabaker', '2003-07-21', 'eva3', '2013-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS151312469710', '松田大輔', 1, '+44 5538 931917', 2, '675551556556883501', 'Block 7, 931 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1995-11-21', 0, 0, 'daisukematsu107', '2018-06-30', 'matsuda1972', '2009-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS543771123589', '區志遠', 1, '+86 769-892-1462', 2, '495314099046018564', '中国东莞环区南街二巷149号49楼', '1998-11-29', 0, 0, 'aucy', '2004-07-22', 'chiyuen1997', '2011-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS542051352547', '楊梓軒', 0, '+81 52-741-2669', 0, '495943580247356188', '日本なごやし守山区瀬古東二丁目171番8号27階', '1990-05-18', 0, 0, 'yeungtszhin', '2014-05-13', 'tszhinyeu4', '2012-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS699207922730', '任梓軒', 1, '+81 80-4996-5119', 4, '162841302577169640', '日本おおさかし近江堂一丁目7番9号24階', '1986-03-22', 0, 0, 'yam18', '2001-08-13', 'yam2', '2001-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS518187357850', '張志遠', 0, '+44 5668 304182', 1, '792508781654494228', 'Block 44, 410 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1988-01-03', 0, 0, 'chiyuenche', '2013-05-21', 'cheung1', '2019-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS898392667618', '戚學友', 1, '+86 10-610-4938', 3, '210593168042624417', 'No.39 building, 947 Sanlitun Road, Chaoyang District, Beijing, China', '1996-02-18', 0, 0, 'chy1984', '2001-03-25', 'chichokyau', '2006-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS762707114457', '姜詩涵', 1, '+86 154-0896-0605', 3, '770290995772386251', 'Room 38, 527 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1991-06-16', 0, 0, 'jianshihan04', '2016-05-22', 'shihanjiang', '2002-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS510610957142', 'Edwin Schmidt', 1, '+1 213-797-4142', 2, '381078310360146101', '443 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1993-05-04', 0, 0, 'edwin1', '2009-06-17', 'edsch', '2019-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS389751275115', '薛震南', 1, '+44 (121) 091 0868', 2, '497665921582261854', 'Flat 40, 483 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1997-11-18', 0, 0, 'zhennan10', '2001-09-13', 'xuezhe', '2009-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS993149558453', '尹梓晴', 1, '+86 10-5469-6380', 3, '681053630359511906', '中国北京市西城区复兴门内大街170号42号楼', '1995-01-04', 0, 0, 'yintszching128', '2008-09-07', 'yintc8', '2007-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS702937701506', '武睿', 0, '+86 10-487-8065', 3, '453473928887583325', '中国北京市西城区复兴门内大街90号9号楼', '1992-11-25', 0, 0, 'ruiwu', '2004-11-02', 'rui3', '2004-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS507752421112', '石嘉伦', 0, '+86 755-2017-2929', 3, '562473491016387023', '中国深圳罗湖区蔡屋围深南东路743号华润大厦48室', '1986-08-06', 0, 0, 'js46', '2003-09-05', 'shijialun', '2010-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS840209583297', '許國榮', 1, '+86 10-374-5783', 0, '997813116470493947', '中国北京市延庆区028县道9号44号楼', '1991-03-16', 0, 0, 'hkwokwing55', '2020-08-13', 'huikwokwing6', '2000-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS757861447052', 'Robin Watson', 0, '+81 11-270-2209', 3, '575333625970724373', '日本札幌中央区宮の森四条六丁目1番12号3号室', '1995-01-11', 0, 0, 'robinwa', '2004-02-11', 'watsor10', '2011-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS530056297298', '段子韬', 0, '+86 146-7827-5178', 1, '310670424875334661', '中国成都市锦江区红星路三段159号华润大厦21室', '1989-02-12', 0, 0, 'dzitao', '2003-05-16', 'duanzitao', '2014-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS414511626291', '曹嘉伦', 0, '+86 28-7409-6340', 3, '565567069349379918', '中国成都市锦江区红星路三段157号华润大厦45室', '1985-01-28', 0, 0, 'jialun9', '2011-07-15', 'caoj615', '2016-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS082404135310', '文富城', 1, '+86 181-0520-2937', 3, '993822639917006191', '22F, 140 West Chang''an Avenue, Xicheng District, Beijing, China', '1988-01-18', 0, 0, 'mfu', '2019-05-23', 'manfushing7', '2011-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS374181225817', 'Gregory Chen', 0, '+81 52-394-0419', 0, '520456406773538930', '3F, 2-5-16 Chitose, Atsuta Ward, Nagoya, Japan', '1990-05-12', 0, 0, 'gregorychen', '2020-08-10', 'gregorych', '2002-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS987487560858', '武秀英', 0, '+81 11-005-3704', 3, '219744965134358709', '日本札幌白石区菊水三条五丁目2番6号3階', '1996-07-02', 0, 0, 'wuxiuyi', '2011-07-30', 'xiuyingwu15', '2020-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS347236485330', '丁詩涵', 0, '+81 70-7906-2052', 4, '931580789794979956', '13F, 3-19-4 Shimizu, Kita Ward, Nagoya, Japan', '1997-12-25', 0, 0, 'shihanding312', '2001-09-04', 'dshihan', '2013-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS418303294199', '狄慧嫻', 0, '+1 312-339-7049', 0, '572949548867325341', '813 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1991-03-26', 0, 0, 'tiwaihan4', '2016-01-23', 'tiwaih10', '2016-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS236812693670', 'Charles Bennett', 1, '+81 70-0909-4378', 1, '740892424363653950', '日本おおさかし近江堂一丁目7番3号15階', '1991-12-04', 0, 0, 'charles7', '2003-05-23', 'cbennett', '2011-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS926012903100', '木村和真', 0, '+44 7434 189021', 1, '121500688256402006', 'Unit 40, Oxford Eco Centre, 573 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1994-11-21', 0, 0, 'kimura1', '2016-05-21', 'kimura811', '2001-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS309310499236', '楊安娜', 0, '+81 74-430-7026', 2, '033929610986012171', '日本ならし大和郡山市本庄町一丁目1番19号49階', '1992-12-30', 0, 0, 'yon92', '2016-03-09', 'onyeung2', '2021-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS838639010599', '酒井架純', 1, '+81 90-3588-6105', 1, '807208523349752376', 'Rm. 35, 1-7-14 Omido, Higashiosaka, Osaka, Japan', '1987-09-09', 0, 0, 'sakaika05', '2008-11-05', 'saka', '2008-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS747488710102', 'Lillian Scott', 0, '+86 28-6285-6334', 1, '528470379182216978', 'No.42 building, No. 884, Shuangqing Rd, Chenghua District, Chengdu, China', '1985-06-17', 0, 0, 'scolillian48', '2010-11-16', 'lillians6', '2020-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS685569715698', '梁詩涵', 0, '+1 212-506-2589', 4, '193276895530769055', '220 Wooster Street 3rd Floor, New York, NY 10012, United States', '1990-03-07', 0, 0, 'liashih', '2019-07-01', 'liang203', '2010-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS319178517947', 'Nathan Hall', 1, '+44 (151) 731 1592', 1, '355395907350161572', 'Flat 32, 213 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1989-11-03', 0, 0, 'nathhall907', '2017-01-08', 'nathanhall1115', '2016-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS708557260995', '韓志明', 0, '+81 3-2072-5673', 3, '407644925527558002', '25F, 3-15-8 Ginza, Chuo-ku, Tokyo, Japan', '1990-12-18', 0, 0, 'hcm', '2014-10-23', 'chiming81', '2010-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS644167699897', '高橋葉月', 1, '+81 90-7656-4792', 0, '326343550168353887', '6-kai, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1993-10-27', 0, 0, 'takahaz', '2007-07-14', 'takahashihaz46', '2021-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS784090349165', '大塚美緒', 0, '+86 190-3139-8442', 1, '817376561656082547', '中国东莞东泰五街283号1楼', '1988-08-15', 0, 0, 'mio619', '2004-02-01', 'miots', '2009-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS249247971611', '中村陽太', 1, '+1 213-942-8548', 2, '408534812292115847', '217 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1998-03-24', 0, 0, 'nakamura4', '2019-07-25', 'yotna', '2007-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS705355161130', '黃小慧', 0, '+81 11-217-9785', 3, '057803460732636941', '日本札幌白石区菊水三条五丁目2番2号33階', '1985-03-22', 0, 0, 'wongsiuwai', '2012-07-19', 'siuwwon9', '2016-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS233545621360', '周璐', 0, '+44 (1865) 13 4938', 1, '222630948132769634', 'Unit 38, Oxford Eco Centre, 106 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1998-07-21', 0, 0, 'luzhou', '2001-12-12', 'zhoulu', '2013-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS999461199582', '谭云熙', 0, '+81 70-5976-4250', 1, '209163039892814468', '日本札幌中央区宮の森四条六丁目1番15号19号室', '1997-02-07', 0, 0, 'tanyunxi', '2021-01-18', 'yunxitan', '2012-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS976438170277', '岡本美月', 0, '+81 80-8203-3859', 4, '836981628372662820', '日本ならし学園南三丁目9番20号8階', '1999-01-13', 0, 0, 'okamoto706', '2012-10-30', 'okamomitsuki', '2001-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS102171431900', '沈嘉伦', 0, '+81 11-828-8670', 2, '308656636184263408', '41F, 5-2-20 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-01-17', 0, 0, 'jialunshen', '2004-12-27', 'shenjialun', '2004-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS928465953894', 'Randall Diaz', 0, '+81 11-127-4944', 1, '119093738666440394', 'Rm. 25, 5-4-11 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1994-07-21', 0, 0, 'dran', '2004-05-17', 'randall6', '2020-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS870199815069', '洪國權', 1, '+86 755-146-4521', 2, '864567949362669061', '中国深圳罗湖区田贝一路242号50栋', '1995-01-16', 0, 0, 'hunkwo02', '2001-06-13', 'kkhung8', '2004-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS493976971578', '島田凛', 0, '+86 769-7918-8868', 2, '545365231451042894', 'No.30 building, 93 Shanhu Rd, Dongguan, China', '1990-08-03', 0, 0, 'rins10', '2021-11-20', 'rinshima9', '2011-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS640467122052', '木下百花', 0, '+81 70-6103-4398', 2, '649129312560666455', '日本なごやし瑞穂区河岸町四丁目20番18号16号室', '1989-07-20', 0, 0, 'momokkinoshita', '2006-03-10', 'momkinoshita', '2004-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS064581693873', '谷口美月', 1, '+86 20-9083-6071', 2, '442925523499943131', '中国广州市白云区机场路棠苑街五巷673号5楼', '1994-06-06', 0, 0, 'taniguchi516', '2010-07-28', 'mitta4', '2001-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS127386927808', '小林葉月', 0, '+1 838-757-1452', 3, '181415659014293949', '151 Central Avenue Apartment 13, Albany, NY 12206, United States', '1987-04-01', 0, 0, 'khazuki', '2007-07-20', 'hazuki9', '2000-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS647027988304', '姚云熙', 0, '+44 5049 193512', 4, '011711222206135018', 'No.15 Main building, 192 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1990-09-26', 0, 0, 'yaoyunxi', '2021-06-16', 'yaoyunxi', '2016-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS714178626010', '有村大輔', 1, '+81 80-9609-2747', 3, '700401038500411251', '24F, 5-2-19 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-02-20', 0, 0, 'daisuke1020', '2008-12-25', 'daia1965', '2009-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS503243573496', '孟璐', 1, '+1 213-915-6462', 4, '712401247196945041', '174 Sky Way Suite 36, Los Angeles, CA 90043, United States', '1988-01-04', 0, 0, 'lume65', '2003-06-19', 'lumeng909', '2004-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS460574298195', '青木聖子', 1, '+44 7226 167574', 3, '488341759490205290', 'Block 14, 785 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1994-08-23', 0, 0, 'seikao', '2009-10-25', 'aos1943', '2018-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS559053084248', '酒井七海', 0, '+81 3-1565-3297', 0, '017135947322683884', '日本東京千代田区丸の内一丁目6番14号11階', '1996-12-28', 0, 0, 'sakainanami228', '2013-12-20', 'snanami', '2006-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS413159016529', 'Douglas Griffin', 1, '+86 769-9596-5541', 2, '090642242313153958', 'Room 39, 604 Huanqu South Street 2nd Alley, Dongguan, China', '1994-02-07', 0, 0, 'gdouglas', '2015-08-14', 'griffindouglas5', '2001-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS577833916399', '加藤桜', 1, '+81 70-2033-4094', 3, '457815360766380576', '日本おおさかし平野区加美東四丁目9番14号48階', '1990-09-30', 0, 0, 'sakurak8', '2008-04-24', 'kasak', '2017-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS583155614181', 'Janice Morales', 1, '+1 838-181-7373', 2, '902391374792311590', '853 Broadway Apt 46, Albany, NY 12207, United States', '1987-12-03', 0, 0, 'janmora516', '2002-05-04', 'jmorales', '2003-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS049884396238', '傅永發', 0, '+1 838-349-8082', 3, '348340613548428884', '910 Central Avenue Apt 31, Albany, NY 12206, United States', '1985-12-28', 0, 0, 'fwingfat', '2017-08-22', 'fu117', '2021-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS943195078686', '大塚詩乃', 0, '+44 7866 909602', 1, '214483489603771618', 'Flat 38, 150 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1987-04-02', 0, 0, 'so1950', '2010-07-17', 'shino4', '2003-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS038522670541', '曹家玲', 0, '+86 20-712-5256', 1, '076200448540260161', 'No.16 building, 45 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1987-08-29', 0, 0, 'klc43', '2020-12-15', 'cho1', '2019-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS741257081070', 'Brian Olson', 1, '+86 755-1904-5554', 1, '656325715185614062', '中国深圳罗湖区清水河一路274号48室', '1990-11-02', 0, 0, 'olsobrian', '2001-11-01', 'brianols621', '2011-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS547279914216', 'Mike Herrera', 0, '+44 (1865) 57 8092', 2, '893703908265126153', 'No.23 Main building, 688 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1989-04-20', 0, 0, 'mikhe', '2006-08-19', 'herrera523', '2005-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS284647588190', '菊地美咲', 1, '+81 52-425-7075', 2, '222678682454733180', 'Rm. 36, 2-5-13 Chitose, Atsuta Ward, Nagoya, Japan', '1988-03-30', 0, 0, 'misakikiku', '2016-08-21', 'kikuchimisak', '2013-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS257078963216', 'Julia Nichols', 1, '+81 74-936-2431', 3, '128876063657915108', '日本ならし西大寺赤田町一丁目7番9号45階', '1989-04-25', 0, 0, 'njulia', '2020-12-30', 'junichols', '2011-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS749781780243', '段子异', 1, '+44 (161) 781 0140', 2, '448307418348261371', 'Unit 29, Oxford Eco Centre, 734 Portland St, Manchester, M1 3LA, United Kingdom', '1988-02-24', 0, 0, 'duanzi04', '2021-08-07', 'duaziy', '2015-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS511455253145', '顧發', 1, '+44 (161) 594 7967', 1, '250568192271559495', 'No.33 Main building, 2 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-06-15', 0, 0, 'fatku', '2008-01-05', 'fat71', '2009-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS984967648681', '馬力申', 1, '+81 90-8293-4040', 4, '005147816009342230', 'Rm. 38, 2 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1985-06-30', 0, 0, 'ma2', '2000-01-25', 'liksunma', '2002-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS022028385568', 'Randy Long', 0, '+81 90-1101-0386', 1, '537135332000612785', '45-kai, 1-7-8 Saidaiji Akodacho, Nara, Japan', '1994-10-25', 0, 0, 'longrandy', '2009-12-26', 'rlong718', '2014-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS688859816642', 'Ashley Foster', 1, '+81 70-2779-7905', 1, '483240135211184252', '日本札幌白石区菊水三条五丁目4番20号1階', '1988-11-11', 0, 0, 'fosterashley', '2007-04-07', 'asf', '2015-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS347683599512', 'Debra Morales', 0, '+86 28-263-8946', 3, '644005414808083616', '中国成都市锦江区红星路三段731号44楼', '1986-04-10', 0, 0, 'moraldebra', '2016-03-08', 'mdebra806', '2000-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS148550360517', 'Miguel Davis', 1, '+1 330-365-7244', 4, '917709339976567229', '850 Ridgewood Road Suite 25, Akron, OH 44321, United States', '1995-12-01', 0, 0, 'davmiguel', '2004-07-04', 'davismiguel', '2004-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS593834947496', '毛梓晴', 1, '+1 212-743-2554', 3, '077110480916941357', '193 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1985-05-31', 0, 0, 'mo92', '2018-08-05', 'tszching8', '2006-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS101193174810', '馬家強', 0, '+81 52-643-7775', 1, '544236796684388448', '日本なごやし守山区瀬古東二丁目171番10号8階', '1999-02-15', 0, 0, 'ma1122', '2009-09-14', 'kkma508', '2007-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS282205098689', '伊藤絢斗', 0, '+1 614-992-2400', 3, '385833223598083724', '303 Tremont Road Suite 46, Columbus, GA 43212, United States', '1986-04-03', 0, 0, 'itoaya802', '2000-08-01', 'itoay', '2010-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS821027557638', '郑子异', 0, '+86 28-7067-0237', 1, '771592631081920464', '45F, No. 250, Shuangqing Rd, Chenghua District, Chengdu, China', '1997-03-19', 0, 0, 'zhengziy903', '2006-08-09', 'zziyi', '2017-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS816805527808', '李天榮', 1, '+86 157-0288-4451', 0, '711087977331588379', 'Room 20, 379 Dong Zhi Men, Dongcheng District, Beijing, China', '1988-08-10', 0, 0, 'lee2', '2022-02-17', 'twlee', '2000-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS709632044116', '野口美羽', 0, '+44 (161) 113 9923', 3, '513521533531916784', 'No.18 Main building, 699 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-10-01', 0, 0, 'nogm', '2000-12-18', 'miunogu619', '2017-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS282714678344', '吕岚', 0, '+44 (1223) 47 2907', 2, '781991195356325745', 'No.21 Main building, 715 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1994-09-13', 0, 0, 'lul', '2015-05-18', 'lanlu', '2014-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS195853799384', '佘家輝', 0, '+81 70-0722-3290', 3, '445068319843475803', '日本札幌厚別区上野幌一条二丁目1番13号40階', '1995-09-27', 0, 0, 'shekf53', '2008-02-23', 'shehkafai', '2018-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS107469706759', '阿部翼', 1, '+81 11-360-3731', 1, '007152820799917497', '日本札幌中央区宮の森四条六丁目1番20号9階', '1987-11-06', 0, 0, 'abe3', '2011-12-14', 'abetsubasa2', '2006-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS845106361251', '内田愛梨', 0, '+44 (1865) 98 5699', 2, '327012442650487078', 'Unit 47, Oxford Eco Centre, 660 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1994-02-16', 0, 0, 'airi8', '2002-12-02', 'uchida8', '2010-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS385638442683', '山下拓哉', 1, '+81 74-355-6552', 1, '747984029536103013', '日本ならし西大寺赤田町一丁目7番10号40階', '1989-04-18', 0, 0, 'ty826', '2004-10-20', 'yat02', '2021-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS867095690045', '石宇宁', 1, '+86 769-057-2144', 2, '060906374539821816', 'Room 2, CR Building, 19 Kengmei 15th Alley, Dongguan, China', '1990-05-28', 0, 0, 'shiyunin', '2018-09-06', 'syuning6', '2020-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS628434332162', 'Dennis Mendez', 1, '+86 20-7203-1136', 1, '542668400713976952', 'Room 16, CR Building, 247 Jiangnan West Road, Haizhu District, Guangzhou, China', '1989-01-15', 0, 0, 'mendez07', '2015-10-01', 'dmen', '2014-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS365398237756', '陶安琪', 1, '+86 168-5199-3776', 2, '066900170642785736', '中国中山乐丰六路616号27栋', '1988-08-31', 0, 0, 'anqi2', '2004-10-16', 'anqita', '2008-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS896483174569', '野村陸', 1, '+44 (116) 785 8486', 0, '923318527228874436', 'No.7 Main building, 696 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-07-31', 0, 0, 'nomurariku814', '2006-08-09', 'rikunomura', '2001-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS226793318712', 'Alice Harrison', 0, '+86 168-7262-7228', 2, '573370051782484703', 'Room 49, CR Building, 296 Huanqu South Street 2nd Alley, Dongguan, China', '1991-06-11', 0, 0, 'alih', '2006-08-04', 'ahar2', '2001-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS353657641711', '駱詩君', 1, '+81 52-448-7996', 2, '590357288393886721', '36-kai, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-08-20', 0, 0, 'szekwanlok4', '2010-07-06', 'sklok9', '2008-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS643878351101', '元朝偉', 0, '+81 80-6668-8534', 1, '704755988257900494', '日本なごやし北区清水三丁目19番7号37階', '1990-02-17', 0, 0, 'yuen1948', '2015-01-25', 'ychiuwai', '2002-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS625973426956', '横山陽太', 0, '+86 191-3315-2294', 0, '238561833963116560', '中国广州市白云区小坪东路96号4栋', '1997-12-13', 0, 0, 'yotayokoyama', '2013-04-29', 'yokoyamayo1979', '2004-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS705998919137', '陈嘉伦', 0, '+44 7648 212355', 2, '286740448015007293', 'No.10 Main building, 486 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1992-11-20', 0, 0, 'chenj', '2006-01-31', 'chenjial', '2001-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS477001970523', '于子异', 1, '+44 (116) 686 1320', 1, '435142262114437524', 'Flat 50, 78 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1992-03-25', 0, 0, 'yuz', '2015-04-28', 'yuzi', '2000-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS207955484124', '陳永權', 0, '+81 11-728-0252', 3, '902147638611731177', '12-kai, 5-19-17 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1997-07-14', 0, 0, 'chanwingkuen', '2007-10-19', 'wingkuench1945', '2020-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS015245500581', '溫梓軒', 1, '+86 136-1195-0415', 3, '513057335272646048', 'No.30 building, 164 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1994-07-02', 0, 0, 'wantszhin', '2018-08-18', 'tszhinwan', '2013-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS459848591766', 'Walter Mcdonald', 0, '+81 70-3377-7066', 4, '354372604558659037', '日本札幌白石区菊水三条五丁目2番17号37階', '1988-09-04', 0, 0, 'mcdonwalte', '2017-04-16', 'mwalter', '2007-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS256102564643', 'Samuel Black', 0, '+86 28-516-0411', 3, '864582493296709595', '中国成都市成华区玉双路6号28号3号楼', '1988-04-28', 0, 0, 'blacs', '2019-04-24', 'sablack', '2019-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS197636859469', 'Mike Stewart', 0, '+1 212-068-5764', 4, '687017968806009841', '442 West Houston Street Suite 20, New York, NY 10014, United States', '1998-10-19', 0, 0, 'stewamik', '2018-10-31', 'stewart109', '2014-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS053826808024', '秦嘉伦', 0, '+1 718-881-7526', 3, '761287892705318254', '260 Columbia St Suite 4, Brooklyn, NY 11231, United States', '1994-12-22', 0, 0, 'qj6', '2002-12-09', 'qin9', '2021-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS191749119776', '叶云熙', 1, '+81 90-4474-2154', 2, '617182333643791328', '50-kai, 3 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-09-15', 0, 0, 'yeyunxi1122', '2001-11-29', 'yunxi6', '2002-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS667391143565', 'Edith Palmer', 1, '+81 11-984-2859', 0, '707185222215559910', 'Rm. 14, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1986-05-15', 0, 0, 'edith40', '2021-10-09', 'paedi', '2015-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS209501039265', '山口紗良', 1, '+81 11-791-8336', 2, '116209865604415160', '36-kai, 6-1-19, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1992-04-03', 0, 0, 'sarayamaguchi82', '2017-08-26', 'saray60', '2021-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS348040227200', 'Virginia Scott', 1, '+86 142-6421-3862', 1, '323847012164913525', '中国北京市延庆区028县道385号23楼', '1996-10-19', 0, 0, 'virginia5', '2005-12-12', 'virginias816', '2000-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS037225598856', 'Gary Hawkins', 0, '+86 134-1743-3486', 2, '710745388578645120', '中国中山天河区大信商圈大信南路448号20楼', '1989-01-25', 0, 0, 'gh1', '2020-02-09', 'ghawki', '2009-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS206947434794', '千葉美羽', 0, '+81 52-487-5158', 2, '125148785289493330', 'Rm. 28, 3-19-8 Shimizu, Kita Ward, Nagoya, Japan', '1991-12-27', 0, 0, 'chibamiu809', '2012-06-20', 'chiba5', '2010-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS378325694970', '崔霆鋒', 1, '+81 80-1870-7121', 3, '621657832576097679', '日本札幌豊平区豊平三条十三丁目3番2号8号室', '1987-05-19', 0, 0, 'tingfungchoi47', '2004-07-04', 'choitingfung78', '2005-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS943305816845', '方家文', 1, '+1 838-819-0711', 1, '874746596673183221', '475 Broadway Apt 49, Albany, NY 12207, United States', '1988-01-01', 0, 0, 'kmfong509', '2014-02-20', 'fongkm', '2003-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS364886743687', '小山蓮', 1, '+81 90-6519-6119', 3, '706224176938525152', '日本札幌中央区宮の森四条六丁目1番1号37階', '1986-11-18', 0, 0, 'rekoy', '2011-09-27', 'koyren98', '2001-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS706362247965', '石子韬', 1, '+81 70-7411-7989', 3, '994547364228466867', '日本なごやし北区清水三丁目19番16号13階', '1996-04-30', 0, 0, 'sz76', '2018-07-09', 'zitao118', '2013-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS654677912104', '戴璐', 1, '+81 11-068-2960', 4, '998738988768005443', '日本札幌白石区菊水三条五丁目4番12号23階', '1990-04-17', 0, 0, 'dailu7', '2011-05-13', 'ludai4', '2004-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS509266129872', '邵睿', 0, '+81 80-6468-1873', 1, '806408275471692459', '40-kai, 3-9-8 Gakuenminami, Nara, Japan', '1997-12-26', 0, 0, 'sru', '2003-01-19', 'shrui', '2001-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS762112637446', '高橋蓮', 0, '+1 838-042-3243', 2, '924696501842374094', '451 Central Avenue Apt 19, Albany, NY 12205, United States', '1985-09-26', 0, 0, 'rentakah10', '2012-06-01', 'retakahashi', '2018-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS162814180252', 'Deborah Daniels', 1, '+86 196-5198-4346', 3, '707514874843863966', 'No.18 building, 112 028 County Rd, Yanqing District, Beijing, China', '1992-09-13', 0, 0, 'debd1984', '2017-03-27', 'danielsdeborah530', '2008-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS244875702276', '有村大和', 0, '+86 140-2629-1953', 0, '322964115530992855', '中国广州市白云区机场路棠苑街五巷209号28号楼', '1986-11-21', 0, 0, 'ariyamat228', '2000-12-08', 'yamatoar', '2012-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS637823768400', '徐永權', 0, '+1 838-900-6085', 1, '341862227451336676', '4 Broadway Apt 38, Albany, NY 12207, United States', '1998-11-13', 0, 0, 'twingkuen1101', '2001-09-08', 'tswingkuen6', '2008-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS670165651797', 'Mike Kelly', 1, '+1 838-956-0397', 1, '507721254383354799', '330 Central Avenue Apt 50, Albany, NY 12205, United States', '1992-04-05', 0, 0, 'kellmike', '2002-09-27', 'kellymi65', '2002-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS281170467696', 'Clifford Morales', 1, '+81 52-606-9530', 0, '244809948813481430', '日本なごやし北区楠味鋺三丁目80番9号9階', '1992-06-05', 0, 0, 'moralesclifford', '2005-12-13', 'mclifford', '2003-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS780252221112', '譚永權', 1, '+44 7628 016746', 4, '684412891509878311', 'Block 29, 274 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1989-11-22', 0, 0, 'twk', '2010-12-04', 'wingkuent10', '2019-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS112117783068', '田安娜', 1, '+44 (161) 541 5236', 1, '973222604580457902', 'Unit 21, Oxford Eco Centre, 381 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-07-11', 0, 0, 'onna1962', '2007-04-26', 'tin10', '2008-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS327940456780', 'Lori Garcia', 0, '+86 755-0930-7956', 3, '679581318920400783', '中国深圳罗湖区田贝一路9号1号楼', '1991-03-29', 0, 0, 'lorigarcia', '2016-01-25', 'lorigarc', '2013-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS972034601442', '村田紗良', 0, '+81 70-8924-3603', 1, '039627154631128000', 'Rm. 15, 6-1-15, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1992-05-09', 0, 0, 'saramu63', '2017-07-15', 'muratsara618', '2013-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS938734034753', '馬天榮', 1, '+44 5698 229485', 4, '215447840222187740', 'No.4 Main building, 859 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1988-12-20', 0, 0, 'matw', '2015-06-07', 'matinwing', '2021-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS447645585395', '孟秀英', 1, '+86 21-973-3874', 3, '660990400092600895', '中国上海市闵行区宾川路27号11栋', '1986-07-02', 0, 0, 'meng42', '2016-07-13', 'mxiu122', '2011-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS817743620182', '小川海斗', 0, '+44 7902 173812', 1, '576331506041289472', 'No.19 Main building, 212 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-04-25', 0, 0, 'ogawkait', '2002-11-09', 'kaitog', '2000-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS293861867991', 'Dawn Ward', 0, '+81 90-9654-5218', 1, '915988896112979749', '19F, 17 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1985-01-05', 0, 0, 'dw84', '2018-01-20', 'dawnw1', '2014-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS483588684995', 'Arthur Romero', 1, '+44 5037 893927', 4, '647279245303335504', 'Block 40, 14 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1990-11-23', 0, 0, 'arthurome', '2019-08-29', 'romeroarthur', '2010-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS616447971393', '中村彩乃', 1, '+86 161-5737-9267', 0, '372689118185519532', '中国东莞珊瑚路53号华润大厦23室', '1988-01-04', 0, 0, 'nakamura00', '2020-06-22', 'nakamura1', '2010-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS473256807175', '胡震南', 1, '+81 80-9832-0099', 1, '029244251150950772', '日本札幌中央区宮の森四条六丁目1番12号8号室', '1996-06-22', 0, 0, 'huzhe', '2013-09-06', 'huzhennan', '2021-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS170816451112', '内田陽菜', 0, '+86 182-2234-8352', 4, '680042357714245296', 'Room 10, 65 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1985-02-16', 0, 0, 'uchhi214', '2002-12-19', 'hina5', '2016-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS275414343618', '鄺世榮', 1, '+81 90-7405-2516', 2, '278483709503435190', '日本札幌中央区宮の森四条六丁目1番14号47階', '1988-11-30', 0, 0, 'swkwong', '2016-06-25', 'swkwong7', '2018-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS241668110236', '姜家輝', 1, '+44 (151) 022 9108', 2, '940539232898562494', 'No.2 Main building, 161 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1997-02-24', 0, 0, 'kfchang324', '2014-07-28', 'chang2018', '2017-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS505402111949', 'Jeffrey Fox', 0, '+44 (1865) 13 2644', 0, '593488908800604300', 'No.16 Main building, 97 Park End St, Oxford, OX1 1JD, United Kingdom', '1994-07-16', 0, 0, 'fojeffrey', '2009-07-26', 'fox1115', '2008-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS556633551036', '大野葉月', 1, '+1 614-859-2391', 3, '512430453377991638', '26 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1987-09-07', 0, 0, 'hazukio9', '2000-10-29', 'ohazuk89', '2008-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS063396588289', '應杰倫', 1, '+1 614-714-3268', 3, '553109506864436798', '974 East Alley Suite 26, Columbus, GA 43201, United States', '1985-09-20', 0, 0, 'chiehlunying', '2004-09-11', 'chiehlun2', '2016-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS837094476814', 'Alexander Patel', 0, '+81 90-8468-4168', 0, '070719764354273308', '日本なごやし熱田区千年二丁目5番6号37階', '1987-01-15', 0, 0, 'alexanderp918', '2021-07-10', 'patale7', '2020-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS757714099156', '郝宇宁', 0, '+44 (161) 261 8975', 2, '196562292875003924', 'Block 28, 871 Mosley St, Manchester, M2 3AQ, United Kingdom', '1987-09-15', 0, 0, 'hao4', '2019-05-09', 'yuninghao', '2001-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS203402674237', '上野翼', 0, '+1 213-149-5794', 2, '972214027732428226', '606 Figueroa Street Apt 29, Los Angeles, CA 90037, United States', '1990-06-20', 0, 0, 'tsubasaueno', '2012-11-16', 'tsubasau', '2020-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS570552757027', '森陽菜', 1, '+81 66-724-7777', 1, '591384820144442110', '日本おおさかし東住吉区東田辺三丁目27番13号11階', '1988-07-18', 0, 0, 'morihina', '2001-11-09', 'mhina601', '2010-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS195215295931', 'Irene Mills', 0, '+81 74-945-2142', 3, '692523937929345419', '21-kai, 18 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1988-08-19', 0, 0, 'millsirene', '2010-12-17', 'im711', '2009-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS430437555648', '大野玲奈', 1, '+81 80-8641-0565', 1, '269338452278002042', '49F, 1-1-16 Deshiro, Nishinari Ward, Osaka, Japan', '1996-08-14', 0, 0, 'onoren', '2013-01-15', 'orena', '2010-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS050738241737', 'Theresa Green', 0, '+86 28-6763-5847', 0, '780381162133782828', 'No.37 building, No. 539, Shuangqing Rd, Chenghua District, Chengdu, China', '1997-01-01', 0, 0, 'therg10', '2021-10-01', 'thergreen', '2003-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS031329275565', '酒井愛梨', 0, '+1 330-102-3346', 3, '683745355498826332', '291 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1992-07-24', 0, 0, 'sakaiair7', '2003-01-29', 'sakai5', '2017-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS674385565647', '薛子异', 1, '+86 144-9807-6592', 2, '974221745822538846', '中国上海市徐汇区虹桥路213号17号楼', '1990-01-10', 0, 0, 'xue9', '2021-04-30', 'ziyixu', '2002-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS689977409943', '井上絢斗', 1, '+81 52-614-0552', 4, '511293994278322583', 'Rm. 46, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1986-09-13', 0, 0, 'inoueayato', '2020-11-10', 'ayatoinoue', '2018-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS956045118335', 'Patricia Barnes', 1, '+1 718-937-8376', 2, '702014106495320795', '553 Bergen St Apt 5, Brooklyn, NY 11217, United States', '1995-10-12', 0, 0, 'patrbarnes1997', '2001-04-26', 'patriciabarn', '2005-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS747178260293', 'Marie Morris', 0, '+86 28-561-3569', 2, '537985831596647595', 'No.45 building, No. 482, Shuangqing Rd, Chenghua District, Chengdu, China', '1995-06-12', 0, 0, 'morrim', '2019-06-10', 'morrim3', '2014-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS083100729011', '邵永權', 0, '+86 164-3204-4397', 3, '204126371321567728', '中国北京市东城区东单王府井东街456号40楼', '1996-07-11', 0, 0, 'wingkuensiu821', '2015-03-05', 'wingkuens', '2003-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS573350786630', '毛秀文', 1, '+81 3-1066-9911', 1, '076886265802122839', '18-kai, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1998-06-28', 0, 0, 'smmo', '2001-05-27', 'mosm', '2015-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS777305004377', '石川一輝', 1, '+86 20-0680-4918', 2, '791328778681316074', 'No.2 building, 314 Xiaoping E Rd, Baiyun , Guangzhou, China', '1999-01-04', 0, 0, 'iishik1950', '2012-08-23', 'ikkiishikawa', '2022-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS895613986254', '王詩涵', 1, '+86 152-1863-2652', 4, '071027470297875585', '25F, 387 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1992-11-04', 0, 0, 'shihan7', '2017-01-13', 'shihanwa8', '2015-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS827668362661', '坂本瑛太', 1, '+81 52-653-9772', 1, '935715785534228735', '44-kai, 3-19-15 Shimizu, Kita Ward, Nagoya, Japan', '1991-08-09', 0, 0, 'eitsakam', '2022-03-01', 'sakaeita', '2021-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS392020979922', '宣力申', 0, '+86 132-7780-3983', 3, '145288667701611747', '中国成都市锦江区红星路三段308号华润大厦24室', '1997-07-01', 0, 0, 'lsh3', '2003-08-18', 'hliksun', '2000-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS680759522427', '斉藤七海', 0, '+81 11-571-5618', 1, '577755173216925162', '日本札幌清田区真栄四条五丁目19番6号7号室', '1990-08-14', 0, 0, 'nanasaito4', '2001-08-26', 'saito97', '2018-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS840606636077', '唐裕玲', 0, '+81 66-660-0900', 0, '755111965418228238', 'Rm. 5, 2-1-12 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1998-06-23', 0, 0, 'tonyuling1105', '2015-07-22', 'yltong1001', '2016-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS159837356108', 'Christopher Thompson', 1, '+1 213-422-7792', 3, '792500533236128524', '383 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1987-03-07', 0, 0, 'chrthomp', '2019-02-13', 'thompsonchr429', '2010-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS454726217665', '江詩涵', 1, '+81 90-5891-2248', 2, '579832558499157618', '3-kai, 2-1-19 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1999-02-23', 0, 0, 'shihanjiang', '2007-11-19', 'jianshihan', '2018-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS780710696016', '張青雲', 1, '+44 (116) 089 7318', 4, '069927364650395311', 'Block 3, 173 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1985-07-19', 0, 0, 'cheungcw109', '2007-09-02', 'cwcheung1', '2017-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS160128940333', 'Clifford Green', 1, '+44 (1865) 42 8316', 3, '707958665320495449', 'Block 24, 506 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1998-07-08', 0, 0, 'greenc', '2015-04-26', 'clifford122', '2003-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS615936843679', '阿部聖子', 0, '+86 10-841-5874', 0, '849901877895690396', '31F, 537 FuXingMenNei Street, XiCheng District, Beijing, China', '1994-02-02', 0, 0, 'seikoa', '2008-11-30', 'sa1205', '2009-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS983914884271', '孙秀英', 1, '+44 (161) 680 3185', 2, '480404354636261514', 'No.9 Main building, 724 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1987-04-10', 0, 0, 'xiuying48', '2000-05-02', 'sun01', '2021-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS212800038063', '佐々木花', 1, '+86 760-0388-0567', 0, '241989707598683188', '中国中山天河区大信商圈大信南路748号4楼', '1993-09-27', 0, 0, 'sasakha', '2006-08-17', 'hsasaki', '2011-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS419437760990', '關力申', 0, '+44 5260 901670', 4, '429428945794750922', 'Flat 30, 783 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1996-07-16', 0, 0, 'liksunkw', '2017-09-05', 'kwanliksun224', '2008-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS511722534171', '严云熙', 1, '+1 212-362-3653', 4, '985666421550730726', '739 Wooster Street Apt 45, New York, NY 10012, United States', '1996-09-07', 0, 0, 'yuy', '2015-03-26', 'yunxiya629', '2005-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS710500660517', 'Jesse Thomas', 1, '+86 21-9454-1389', 0, '229634804356070279', '中国上海市浦东新区橄榄路595号47栋', '1990-10-05', 0, 0, 'thomjesse8', '2006-08-09', 'jesse1210', '2020-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS129795152400', '彭國明', 1, '+86 171-0448-4522', 3, '530510624434593390', 'Room 44, No.857, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1986-06-07', 0, 0, 'kmpang', '2009-05-28', 'pangkm', '2013-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS496131355263', '傅璐', 0, '+81 90-1461-3683', 1, '591911582291263955', '日本ならし学園南三丁目9番15号4階', '1985-09-26', 0, 0, 'ful1114', '2006-04-21', 'flu3', '2013-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS473368020314', '钱嘉伦', 0, '+44 5445 058271', 0, '430803443582942621', 'Unit 38, Oxford Eco Centre, 404 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1985-06-30', 0, 0, 'qianj6', '2003-10-07', 'qijialun', '2008-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS343413079003', 'Bobby Henry', 0, '+81 3-4430-2940', 3, '386353870287397766', '16F, 3-15-6 Ginza, Chuo-ku, Tokyo, Japan', '1997-01-23', 0, 0, 'bobh', '2021-07-30', 'bhenry', '2002-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS829083970644', '竹内絢斗', 1, '+86 769-0232-7615', 3, '779166055007397850', '中国东莞环区南街二巷631号华润大厦45室', '1992-08-18', 0, 0, 'takeuchi604', '2011-02-11', 'ayato3', '2001-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS499723301948', '清水大地', 0, '+86 175-0876-9576', 2, '871163577751795358', '中国成都市成华区二仙桥东三路94号29栋', '1991-05-04', 0, 0, 'dshimizu7', '2001-09-29', 'daichis82', '2004-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS148305078302', '薛青雲', 0, '+1 212-923-9586', 1, '665301830203630380', '303 Bank Street Apt 30, New York, NY 10014, United States', '1994-08-30', 0, 0, 'chis', '2022-02-19', 'sitchingwan', '2021-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS794296645579', 'Pauline Washington', 1, '+81 70-8384-8652', 4, '951518221996540253', 'Rm. 27, 5-4-14 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1989-03-12', 0, 0, 'washingtonpa', '2007-07-08', 'wapauli', '2006-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS905402695262', '胡嘉伦', 0, '+86 186-2721-9287', 2, '680190999575962272', '中国深圳罗湖区蔡屋围深南东路304号14号楼', '1992-04-24', 0, 0, 'jiah1957', '2018-01-21', 'hujia', '2002-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS588534005005', '橋本百花', 1, '+44 (1865) 62 4100', 1, '534589410168879512', 'Unit 29, Oxford Eco Centre, 650 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1992-12-19', 0, 0, 'hashmomoka20', '2017-09-04', 'hashimotom', '2004-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS224365211501', '任安琪', 1, '+81 70-0501-8490', 4, '648426886353582980', '日本おおさかし西成区天神ノ森二丁目1番14号12号室', '1996-12-04', 0, 0, 'ren48', '2013-10-12', 'anqire67', '2020-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS262516216025', '内田蒼士', 1, '+44 (20) 4497 4639', 3, '383773712197422651', 'Unit 11, Oxford Eco Centre, 22 Hanover Street, London, W1S 1YD, United Kingdom', '1991-01-25', 0, 0, 'uchidaaoshi5', '2021-01-22', 'aosu626', '2017-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS395645057617', '白志明', 1, '+86 172-7339-7697', 3, '515954417179353897', '中国成都市成华区二仙桥东三路153号36栋', '1993-10-07', 0, 0, 'pcm1', '2003-09-27', 'chiming10', '2001-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS094922215576', '楊明詩', 0, '+86 191-8745-4539', 3, '830542288210012877', '中国深圳福田区景田东一街541号23栋', '1993-02-02', 0, 0, 'yeungms', '2019-04-16', 'msyeu1215', '2014-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS760407870535', 'James Castro', 0, '+81 74-716-0509', 1, '928938681608795854', '日本ならし西大寺赤田町一丁目7番16号3階', '1997-10-22', 0, 0, 'jcast', '2007-04-17', 'casjames7', '2003-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS738933160829', '向云熙', 0, '+1 212-313-8347', 2, '275056071113663273', '637 Fifth Avenue Suite 8, New York, NY 10017, United States', '1992-04-30', 0, 0, 'yxiang919', '2004-11-02', 'xiyunxi', '2021-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS384324091691', 'Ruby Rodriguez', 1, '+86 20-1451-8528', 1, '284490989515500442', '中国广州市越秀区中山二路470号48栋', '1990-01-19', 0, 0, 'rodrruby523', '2008-12-05', 'rodrruby', '2018-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS117252711779', '菊地一輝', 1, '+44 5203 792598', 1, '150415973430694762', 'Flat 4, 764 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-09-13', 0, 0, 'ikkikikuchi', '2010-08-07', 'ikkikikuchi', '2016-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS700760479217', '曹學友', 1, '+86 10-3749-2332', 3, '406351835474960316', 'No.6 building, 954 West Chang''an Avenue, Xicheng District, Beijing, China', '1989-04-30', 0, 0, 'chohy610', '2000-03-21', 'cho19', '2021-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS724983660296', '宮崎結翔', 1, '+86 10-3489-6455', 2, '980431991374536715', 'Room 39, 378 68 Qinghe Middle St, Haidian District, Beijing, China', '1989-05-16', 0, 0, 'yuito55', '2012-01-19', 'myuito', '2013-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS022348068558', '毛嘉伦', 1, '+81 74-617-3894', 3, '791568617806581051', '日本ならし学園南三丁目9番10号43号室', '1987-02-12', 0, 0, 'jimao', '2017-04-26', 'jmao', '2010-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS447464045193', '中森光', 0, '+1 312-574-4993', 2, '971553472949044702', '503 North Michigan Ave Suite 17, Chicago, IL 60611, United States', '1997-07-11', 0, 0, 'hikarnakamori', '2007-09-15', 'hn208', '2014-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS841184377365', '苗慧嫻', 1, '+81 66-749-0256', 4, '125101490600618887', '日本おおさかし東住吉区東田辺三丁目27番3号36階', '1998-11-14', 0, 0, 'miu10', '2000-08-24', 'miuwh', '2016-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS766593937659', 'Kenneth Grant', 0, '+86 10-0429-0618', 1, '346332254621874357', 'Room 27, CR Building, 267 Dong Zhi Men, Dongcheng District, Beijing, China', '1991-10-14', 0, 0, 'kennethg707', '2005-07-29', 'grant2009', '2014-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS470419867768', '譚國賢', 1, '+86 132-2901-9029', 2, '586675532028254097', 'Room 39, 814 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1987-06-21', 0, 0, 'tkwokyin1957', '2014-04-18', 'taky', '2021-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS763893164160', '官天樂', 0, '+81 52-718-7670', 3, '263253428050719561', 'Rm. 9, 11 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-12-19', 0, 0, 'tlko1991', '2018-07-15', 'tinlok1996', '2009-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS208037621503', 'Jerry Vargas', 0, '+44 (161) 209 3734', 2, '127156200736604493', 'Flat 29, 141 Portland St, Manchester, M1 3LA, United Kingdom', '1998-01-05', 0, 0, 'vargasjerry', '2008-10-27', 'jerrvarg', '2006-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS539428468652', '小川美緒', 0, '+1 213-997-6539', 1, '854277369340963237', '237 Grape Street Apartment 12, Los Angeles, CA 90002, United States', '1992-10-18', 0, 0, 'mio229', '2022-01-22', 'ogawami', '2004-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS518902199495', '陶宇宁', 1, '+86 10-552-9116', 3, '930950652826721736', '中国北京市房山区岳琉路175号41室', '1996-08-26', 0, 0, 'tyuning', '2015-04-20', 'yuninta', '2009-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS323738861031', '周睿', 1, '+86 20-296-4460', 4, '175305131910901618', '中国广州市海珠区江南西路780号3栋', '1990-07-01', 0, 0, 'zhourui1026', '2018-08-17', 'zhou08', '2015-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS336836851135', '小川愛梨', 1, '+86 196-5134-9051', 0, '780273035932334853', 'No.19 building, 932 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1994-07-18', 0, 0, 'airiogawa76', '2018-06-26', 'airi8', '2020-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS094909635195', 'Irene Burns', 1, '+86 28-5945-9832', 1, '240781722100720860', 'Room 8, CR Building, No.749, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1994-04-22', 0, 0, 'irene69', '2013-09-08', 'irenebu', '2002-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS142602873372', '汤晓明', 0, '+81 80-2389-6681', 2, '625091319614067835', '13-kai, 1-1-20 Deshiro, Nishinari Ward, Osaka, Japan', '1989-08-29', 0, 0, 'xiaomingtang', '2015-02-06', 'xiaomingt', '2018-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS276367473071', '梁杰宏', 0, '+81 11-530-5963', 2, '333957042020479476', '26-kai, 5-2-17 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1993-05-10', 0, 0, 'jiliang9', '2008-07-25', 'jiehongl3', '2000-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS841712255472', 'Rose Reed', 1, '+1 213-980-5417', 3, '959726595828311254', '774 Figueroa Street Apt 25, Los Angeles, CA 90037, United States', '1991-07-23', 0, 0, 'roseree10', '2000-02-07', 'reed725', '2015-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS662028749397', '唐杰宏', 0, '+81 52-115-2735', 1, '071661798052856265', '35-kai, 12 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1994-10-09', 0, 0, 'tangjiehong1225', '2008-12-09', 'jiehongtang7', '2005-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS415152857189', '孔詩涵', 0, '+86 188-1810-9374', 1, '635101908835737598', '中国中山乐丰六路80号36楼', '1985-05-26', 0, 0, 'kong117', '2001-03-22', 'kongsh20', '2001-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS571611786413', 'Francisco Ward', 0, '+1 614-228-7427', 0, '390926403011489144', '850 Diplomacy Drive Apartment 1, Columbus, GA 43228, United States', '1995-03-04', 0, 0, 'ward1125', '2016-11-10', 'warfrancisco526', '2021-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS520296885425', '侯致远', 1, '+86 186-1103-8539', 4, '522279480643973568', 'Room 22, CR Building, 142 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1996-07-30', 0, 0, 'zhiyuanh2', '2002-06-20', 'zhiyuan715', '2001-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS541880423554', 'Philip Payne', 0, '+86 760-896-4949', 4, '772976315782860391', '中国中山京华商圈华夏街308号18栋', '1989-01-30', 0, 0, 'philp', '2010-02-22', 'paynephilip', '2013-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS927589224397', '翁力申', 1, '+86 28-2972-5979', 3, '832119981337999891', 'No.10 building, 1 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1989-06-06', 0, 0, 'yung9', '2020-10-05', 'yuliksun2', '2017-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS361424292931', '沈杰宏', 1, '+86 154-8403-8415', 1, '544805210149907163', 'No.18 building, 179 Jiangnan West Road, Haizhu District, Guangzhou, China', '1995-08-20', 0, 0, 'shenjieho', '2013-04-04', 'sji', '2000-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS263286990255', '小林湊', 1, '+86 755-029-6527', 2, '124374424232451304', 'Room 18, 743 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1994-07-17', 0, 0, 'mikob', '2004-02-06', 'kobayashiminato', '2016-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS831481925096', 'Wendy Tucker', 1, '+1 718-258-5586', 3, '153928954333610694', '548 1st Ave Suite 14, Brooklyn, NY 11220, United States', '1985-10-02', 0, 0, 'tuckwendy', '2009-01-04', 'wtucke', '2011-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS191008525930', '田睿', 1, '+86 161-1764-3926', 4, '640984609108823042', 'No.16 building, No. 147, Shuangqing Rd, Chenghua District, Chengdu, China', '1987-04-15', 0, 0, 'rtia', '2020-12-17', 'ruiti', '2009-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS041942750535', '邹秀英', 1, '+81 74-873-1565', 4, '021208224287005729', '日本ならし西大寺赤田町一丁目7番10号12号室', '1990-04-03', 0, 0, 'xiuying418', '2007-12-14', 'xizou66', '2008-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS402727042840', 'Kathleen Robinson', 0, '+44 7226 752086', 0, '622540867551551724', 'Block 17, 230 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1991-09-11', 0, 0, 'kathleenrobinson', '2015-02-13', 'katrobin82', '2006-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS250731587228', '杉山涼太', 0, '+86 20-803-2048', 0, '446418810704382405', '中国广州市白云区小坪东路945号华润大厦34室', '1988-12-24', 0, 0, 'sugiyama3', '2014-10-09', 'sryota', '2005-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS145432562723', '孟杰宏', 1, '+1 212-513-5554', 4, '100460247183995154', '126 Wooster Street Suite 30, New York, NY 10012, United States', '1997-01-25', 0, 0, 'jmeng', '2002-11-27', 'menji94', '2008-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS686837359604', 'Jamie Daniels', 1, '+86 170-5123-2594', 1, '682595887850170397', '中国中山乐丰六路258号14号楼', '1992-01-12', 0, 0, 'danija', '2021-04-14', 'danielsjamie', '2007-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS702345240432', '蔡國榮', 0, '+81 52-141-3794', 0, '766741046020299243', '日本なごやし熱田区千年二丁目5番17号12階', '1998-01-25', 0, 0, 'choi1986', '2010-11-20', 'ckw', '2015-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS905665749406', '前田樹', 0, '+44 5494 181233', 1, '825429651716658821', 'Flat 7, 791 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1997-12-10', 0, 0, 'maedait', '2001-11-27', 'itsuki819', '2007-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS612306536079', 'Jesus Bennett', 0, '+86 180-0641-6894', 2, '438233010059909089', '21F, 829 Kengmei 15th Alley, Dongguan, China', '1992-04-13', 0, 0, 'jesus6', '2015-05-16', 'benjesus56', '2018-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS855458729131', '藤發', 1, '+1 213-187-6442', 3, '097686375643658698', '461 Wall Street Apt 42, Los Angeles, CA 90003, United States', '1996-06-20', 0, 0, 'ftang2009', '2019-07-13', 'ftan', '2014-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS593039578146', '周秀英', 0, '+86 179-5286-1007', 2, '229810150722520099', 'No.44 building, 596 Middle Huaihai Road, Huangpu District, Shanghai, China', '1988-10-04', 0, 0, 'xiuying9', '2017-08-22', 'xiuyingzhou1', '2008-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS127136615734', '陆子异', 1, '+81 70-6424-4530', 3, '683169631102608340', 'Rm. 14, 2-1-3 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-12-21', 0, 0, 'ziyilu904', '2001-10-23', 'luziyi', '2003-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS405629881967', '田中健太', 0, '+44 5112 009779', 3, '683080845667587248', 'Block 46, 303 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1989-08-05', 0, 0, 'tanaka79', '2012-12-09', 'tanakenta', '2004-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS425470604716', '邵霆鋒', 0, '+44 5753 000292', 0, '112276584869131367', 'Flat 45, 907 Hanover Street, London, W1S 1YD, United Kingdom', '1988-04-16', 0, 0, 'siutf', '2008-04-08', 'tfsiu', '2018-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS642032238854', '増田美咲', 1, '+81 66-663-1585', 3, '142020750486071281', '日本おおさかし西成区天神ノ森二丁目1番16号28階', '1987-05-21', 0, 0, 'mamisaki6', '2021-05-11', 'mmisaki', '2005-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS959725043555', '樂學友', 0, '+86 199-7165-1482', 3, '643008093564920955', '40F, 684 Xiaoping E Rd, Baiyun , Guangzhou, China', '1996-02-28', 0, 0, 'hylok', '2019-07-01', 'hokyaulok3', '2000-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS867108091845', 'Heather Russell', 1, '+86 167-1090-8082', 4, '951793330888711369', 'Room 40, CR Building, 479 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1995-04-01', 0, 0, 'hrus', '2014-07-06', 'hearuss', '2015-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS593250279160', 'Susan Hernandez', 1, '+81 80-8053-2437', 2, '439492607321895660', '33F, 5 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1992-04-24', 0, 0, 'susanh2008', '2016-07-12', 'suhernandez', '2014-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS012067472930', '方淑怡', 0, '+81 3-3550-4513', 4, '796414282725832972', '日本東京千代田区丸の内一丁目6番20号21階', '1992-06-28', 0, 0, 'fsukyee8', '2003-04-21', 'sukyee926', '2014-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS999078322176', '叶致远', 0, '+81 90-0082-6716', 2, '160956287938523145', '日本おおさかし西成区出城一丁目1番4号2階', '1997-10-26', 0, 0, 'zhiyuan8', '2019-10-17', 'yezhiyuan', '2016-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS760351008348', '何宇宁', 1, '+1 212-185-9457', 1, '190378313503759367', '403 Canal Street Suite 38, New York, NY 10013, United States', '1987-05-20', 0, 0, 'yuninghe', '2001-11-18', 'heyuning830', '2008-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS522743674930', '長谷川百花', 0, '+86 21-2478-3329', 4, '383071519610732329', '13F, 873 Binchuan Rd, Minhang District, Shanghai, China', '1996-04-20', 0, 0, 'mha', '2020-01-15', 'momokahasegawa', '2008-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS059899570772', '安藤結翔', 0, '+81 52-382-2402', 2, '309685303260258372', '日本なごやし北区楠味鋺三丁目80番20号37号室', '1987-07-08', 0, 0, 'yuando', '2003-09-17', 'ando10', '2003-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS250507513483', '宮崎美咲', 0, '+81 74-124-2340', 1, '504875861756838846', '26F, 2 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-02-02', 0, 0, 'miyazakimisaki', '2001-08-06', 'miyazaki97', '2006-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS157391449210', '陶子异', 0, '+1 614-487-7892', 1, '235299074200271327', '333 East Cooke Road Apt 44, Columbus, GA 43214, United States', '1990-11-07', 0, 0, 'ziyit709', '2016-12-29', 'tao8', '2021-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS148125055529', '贺安琪', 1, '+86 168-3756-5710', 4, '622863513732358396', '中国成都市锦江区红星路三段66号44室', '1991-09-20', 0, 0, 'anqi823', '2017-07-29', 'heanqi', '2003-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS274604379564', '苑思妤', 0, '+1 614-736-6687', 1, '025790358883100643', '953 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1994-05-23', 0, 0, 'yuen16', '2003-08-16', 'yuesz2', '2018-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS236867255529', '渡部大和', 1, '+81 52-309-2690', 2, '907246320541242296', '日本なごやし北区清水三丁目19番7号20階', '1988-10-20', 0, 0, 'watanabeyamato96', '2002-10-31', 'watayamato', '2014-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS812301200311', '周睿', 0, '+86 760-8532-0735', 0, '256092259152079380', 'Room 41, CR Building, 413 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1996-10-20', 0, 0, 'zhou1112', '2021-02-01', 'ruizh6', '2021-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS520273150917', '池田樹', 1, '+1 213-658-3653', 1, '360393431367864587', '757 Sky Way Apt 10, Los Angeles, CA 90043, United States', '1994-10-10', 0, 0, 'ikeda527', '2021-05-20', 'ii85', '2014-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS800287543498', '彭慧珊', 0, '+81 90-6006-7437', 3, '395364863818510069', '日本札幌中央区宮の森四条六丁目1番7号26階', '1990-03-16', 0, 0, 'waisan51', '2014-05-01', 'pang43', '2020-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS213760657476', '任杰倫', 0, '+44 7133 400166', 3, '061901336786081343', 'No.9 Main building, 631 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1993-06-08', 0, 0, 'yamcl', '2012-11-28', 'yamcl', '2004-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS782233440118', 'Edward Tucker', 1, '+86 10-5303-1163', 1, '295848399570527610', 'No.26 building, 367 East Wangfujing Street, Dongcheng District , Beijing, China', '1997-03-02', 0, 0, 'edwtucker', '2015-02-21', 'tucker2', '2017-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS746631983160', 'Betty Dunn', 0, '+44 5330 183340', 2, '502363811838372705', 'Flat 25, 871 Mosley St, Manchester, M2 3AQ, United Kingdom', '1991-05-20', 0, 0, 'dunnbetty601', '2015-06-10', 'dbetty7', '2000-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS968958359725', '森優奈', 1, '+81 11-526-6269', 3, '024116115469177288', '日本札幌中央区宮の森四条六丁目1番7号19階', '1991-01-05', 0, 0, 'moriyuna', '2009-05-18', 'myuna10', '2008-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS094375228177', 'Larry Kelley', 1, '+1 614-836-7654', 2, '026086121759000712', '396 East Cooke Road Apt 8, Columbus, GA 43214, United States', '1991-05-24', 0, 0, 'larrykelley', '2007-08-06', 'lak', '2013-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS579132282883', '渡部美咲', 0, '+81 52-120-2816', 1, '102191462981562938', 'Rm. 17, 10 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1992-12-30', 0, 0, 'watanabemisaki109', '2013-07-18', 'watanabemisaki903', '2007-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS655202404613', '常岚', 1, '+1 212-293-5121', 2, '287341045430856583', '177 Canal Street Apt 7, New York, NY 10013, United States', '1998-09-09', 0, 0, 'changlan', '2015-09-22', 'lachang', '2019-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS755814967143', '方家輝', 1, '+1 213-672-4835', 1, '871154286457848448', '678 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1985-11-26', 0, 0, 'fongkafai', '2002-09-26', 'fong9', '2018-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS402258551957', '佐野樹', 1, '+81 80-7036-3332', 1, '947567996671541887', 'Rm. 26, 3-15-14 Ginza, Chuo-ku, Tokyo, Japan', '1996-07-23', 0, 0, 'sano1110', '2000-07-02', 'itsuksano1967', '2021-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS501724211701', '蔡心穎', 1, '+1 838-415-0623', 3, '804065110556966239', '173 Lark Street 3rd Floor, Albany, NY 12210, United States', '1985-09-24', 0, 0, 'choisum', '2014-09-18', 'swc', '2010-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS933260379761', 'Barbara Alexander', 0, '+81 11-499-6412', 2, '658935007887710105', 'Rm. 45, 5-4-8 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-08-26', 0, 0, 'alexabar', '2018-11-25', 'alexanderbarbara79', '2009-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS857016990567', '韦睿', 0, '+86 185-0068-1334', 3, '597136201582119614', 'No.43 building, 123 FuXingMenNei Street, XiCheng District, Beijing, China', '1996-09-06', 0, 0, 'ruwei', '2003-06-20', 'weirui1', '2007-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS709099494986', '斉藤玲奈', 0, '+86 199-5061-3194', 3, '573774110018361168', '中国中山天河区大信商圈大信南路493号49楼', '1985-01-03', 0, 0, 'rena77', '2010-11-19', 'sr43', '2000-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS132034035372', '盧詠詩', 1, '+81 80-6373-9397', 3, '811675541211853884', '日本ならし西大寺赤田町一丁目7番1号23号室', '1996-02-14', 0, 0, 'lo5', '2018-05-07', 'wslo', '2004-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS336469644454', 'Patrick Powell', 0, '+86 10-3783-0809', 3, '584647116057493789', '中国北京市海淀区清河中街68号229号3号楼', '1990-08-13', 0, 0, 'patrickp2', '2008-02-21', 'powell6', '2010-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS382562383379', '袁志遠', 1, '+81 90-6392-0230', 2, '567115917485801742', '日本おおさかし西成区出城一丁目1番16号1階', '1998-03-27', 0, 0, 'chiyuen814', '2019-06-10', 'yuchiyuen', '2000-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS801219229471', '彭慧敏', 0, '+86 166-2671-5781', 1, '482586145628054630', '中国中山京华商圈华夏街2号华润大厦12室', '1986-07-22', 0, 0, 'wmpang', '2016-09-11', 'wmpang', '2007-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS925810473327', '官發', 0, '+44 5854 639845', 0, '522143502167868658', 'Unit 42, Oxford Eco Centre, 294 New Street, Birmingham, B2 4DB, United Kingdom', '1995-06-07', 0, 0, 'koonfa7', '2020-04-04', 'kofat', '2022-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS740345895170', '贺云熙', 1, '+81 66-446-2446', 3, '882660929470011002', '37F, 2-1-8 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1986-09-02', 0, 0, 'hy7', '2017-05-02', 'heyunxi7', '2016-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS371366112437', '沈嘉伦', 1, '+81 3-1239-5747', 3, '170354840741313040', '9-kai, 3-15-20 Ginza, Chuo-ku, Tokyo, Japan', '1988-08-06', 0, 0, 'shenjialun', '2009-01-20', 'sjialun', '2017-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS212992397019', 'Sheila Edwards', 0, '+44 (121) 798 8811', 2, '262719227886684409', 'No.7 Main building, 220 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1990-11-21', 0, 0, 'sheilaedwards', '2009-10-28', 'edwards325', '2006-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS388535271854', '岡本百恵', 0, '+86 10-8926-4228', 1, '219167248988278363', 'No.33 building, 847 Dong Zhi Men, Dongcheng District, Beijing, China', '1994-11-22', 0, 0, 'momoeokam7', '2001-08-16', 'omomoe', '2019-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS094326489172', '孫秀文', 1, '+86 168-6297-0401', 1, '133022903302684252', 'No.42 building, 967 Jianxiang Rd, Pudong, Shanghai, China', '1992-08-26', 0, 0, 'sauhsuan', '2012-08-22', 'saumanhsu74', '2006-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS048027988439', '翁惠敏', 0, '+81 52-881-4379', 4, '996707087327596914', '10-kai, 3 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-06-29', 0, 0, 'waiman6', '2006-03-23', 'wmyung', '2009-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS060742603305', '曹睿', 0, '+44 7101 855672', 2, '711554791023011720', 'Flat 48, 818 Regent Street, London, W1B 2LX, United Kingdom', '1995-08-01', 0, 0, 'cao810', '2018-12-17', 'cao10', '2007-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS489770751117', '森田蓮', 1, '+81 70-3477-4934', 0, '602656272655438731', '日本ならし学園南三丁目9番2号38階', '1991-01-06', 0, 0, 'morita97', '2005-12-14', 'remor', '2010-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS211773773507', '钟震南', 0, '+86 760-0582-4454', 4, '022281737173203872', 'Room 28, 270 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1988-04-24', 0, 0, 'zhongzh', '2002-03-01', 'zhennanz', '2019-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS011483663660', '田子韬', 0, '+81 90-1105-0296', 4, '567668089495024347', '日本札幌白石区菊水三条五丁目2番4号1号室', '1985-01-07', 0, 0, 'zitaotia2', '2019-12-22', 'tianzitao7', '2020-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS147805382654', '林岚', 1, '+1 213-566-5368', 2, '296588093712188195', '448 S Broadway Apt 40, Los Angeles, CA 90015, United States', '1999-01-14', 0, 0, 'linl', '2003-09-25', 'linl2', '2001-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS738457653521', '溫惠敏', 1, '+86 159-6442-4024', 2, '755035524306867000', '中国深圳罗湖区田贝一路457号14室', '1997-05-24', 0, 0, 'wwa86', '2003-04-18', 'wwm', '2006-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS105084917706', '有村聖子', 0, '+81 11-204-3537', 3, '589107607416792312', '日本札幌白石区菊水三条五丁目2番13号31号室', '1997-09-07', 0, 0, 'aseiko1962', '2004-01-26', 'seikoarimura', '2014-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS602151639471', '斉藤詩乃', 1, '+86 21-5769-2118', 3, '878278521667997214', '16F, 339 Binchuan Rd, Minhang District, Shanghai, China', '1988-07-23', 0, 0, 'saitoshino89', '2020-12-09', 'saitoshino', '2002-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS060802355805', 'Eddie Carter', 1, '+86 150-9461-8829', 2, '063900910967052965', '中国成都市成华区玉双路6号934号华润大厦48室', '1985-07-20', 0, 0, 'eddiecarter3', '2019-01-12', 'cartere1968', '2011-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS677310510947', 'Benjamin Payne', 1, '+86 146-4948-9849', 3, '236309175541298189', '中国北京市西城区复兴门内大街528号华润大厦14室', '1997-03-14', 0, 0, 'paynebenjamin', '2000-02-26', 'pabenjamin', '2016-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS405322944708', '顾晓明', 0, '+81 52-558-7451', 2, '833053023667990329', '日本なごやし北区清水三丁目19番1号49階', '1996-01-18', 0, 0, 'guxiao', '2002-09-14', 'xiagu', '2017-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS725375658882', '鈴木樹', 1, '+1 213-250-0356', 2, '871134604084280376', '16 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1997-02-02', 0, 0, 'suzukitsuk623', '2007-04-18', 'suzuki99', '2010-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS708974025936', '尹杰宏', 0, '+1 838-476-0474', 2, '344368582906809472', '91 Central Avenue Apartment 50, Albany, NY 12205, United States', '1992-08-11', 0, 0, 'jiehoyin13', '2003-07-18', 'jiehongyin', '2014-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS478960138651', '严秀英', 1, '+81 80-0093-2848', 2, '390522777442310279', '日本東京港区東新橋一丁目5番17号7階', '1996-03-27', 0, 0, 'xiuyan3', '2004-09-12', 'yanxi6', '2006-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS909988903625', '林梓軒', 0, '+81 66-049-8755', 3, '638205142325737458', '日本おおさかし平野区加美東四丁目9番4号17号室', '1987-12-03', 0, 0, 'lth613', '2017-12-09', 'tszhlam4', '2002-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS315782121028', '岡田瑛太', 1, '+86 140-5218-2303', 3, '808863564705195768', '2F, 49 Jianxiang Rd, Pudong, Shanghai, China', '1992-06-25', 0, 0, 'okadaeit', '2009-09-19', 'eita00', '2007-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS514129493053', '宣國權', 1, '+86 181-9479-8325', 3, '480246136224550181', '中国上海市黄浦区淮海中路603号35室', '1989-11-22', 0, 0, 'kwokkuenhsu429', '2011-06-06', 'hsuankk831', '2001-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS786188519422', '黄睿', 1, '+81 90-9249-1843', 0, '837335422958387065', 'Rm. 35, 3-15-7 Ginza, Chuo-ku, Tokyo, Japan', '1997-03-21', 0, 0, 'hr56', '2008-10-02', 'huangrui', '2003-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS680184049285', 'Norman White', 1, '+86 769-0370-2256', 2, '464822211915221252', '中国东莞东泰五街604号39号楼', '1986-07-04', 0, 0, 'normawhite', '2006-03-30', 'whiteno8', '2019-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS818727193426', 'Joseph Green', 0, '+81 70-9403-5282', 2, '605646959666600440', '日本おおさかし西成区天神ノ森二丁目1番12号4号室', '1997-07-26', 0, 0, 'jogreen', '2022-02-13', 'josephg', '2009-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS958887979973', '小川優奈', 1, '+86 769-873-7862', 3, '607089365556072262', '中国东莞环区南街二巷25号50栋', '1993-06-01', 0, 0, 'ogawa04', '2016-04-14', 'yuna4', '2021-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS598127791256', 'Jacqueline Stephens', 0, '+81 3-9190-2828', 4, '977247351318195463', '日本東京品川区東五反田五丁目2番13号14階', '1993-11-14', 0, 0, 'jstephens', '2000-10-18', 'jacquelinesteph', '2013-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS739348936502', '姜霆鋒', 0, '+81 52-547-9593', 3, '299703867619808873', '日本なごやし北区楠味鋺三丁目80番2号26階', '1992-08-26', 0, 0, 'changtingfung', '2021-04-15', 'changtingfung', '2009-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS748450851615', '曹云熙', 1, '+1 838-408-7476', 3, '387083451863361677', '293 Lark Street Apt 2, Albany, NY 12210, United States', '1993-10-18', 0, 0, 'yunxicao52', '2018-12-15', 'yucao', '2004-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS436595684533', '翁家強', 0, '+86 139-9096-7448', 3, '421106241076697277', 'No.11 building, 93 Kengmei 15th Alley, Dongguan, China', '1987-11-23', 0, 0, 'yunkakeung', '2014-07-16', 'ykk', '2014-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS441270997604', '李富城', 1, '+81 11-438-4350', 3, '347115797118595379', '日本札幌白石区菊水三条五丁目4番7号43階', '1987-04-09', 0, 0, 'fushing425', '2010-01-03', 'fushing1951', '2017-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS391312583573', '汪永發', 1, '+44 (161) 436 4193', 2, '262323302748117038', 'Flat 36, 618 Portland St, Manchester, M1 3LA, United Kingdom', '1990-03-01', 0, 0, 'wong82', '2016-08-23', 'wingfat92', '2001-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS040343453870', '桜井聖子', 1, '+44 (1865) 55 8746', 2, '398014598765683187', 'Flat 12, 754 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1991-05-02', 0, 0, 'sseiko5', '2017-07-07', 'sakurai5', '2002-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS501833936752', '鈴木一輝', 1, '+86 163-4307-1834', 3, '548255974370758399', '18F, 738 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1998-07-28', 0, 0, 'isuz', '2009-06-28', 'ikkisuz501', '2011-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS263962500322', '青木花', 0, '+86 181-6849-0065', 2, '228453028162340951', '中国中山紫马岭商圈中山五路777号23室', '1989-12-30', 0, 0, 'hanaaoki422', '2018-04-19', 'aokihana40', '2010-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS162027503626', '曹國賢', 1, '+81 90-3395-5129', 4, '367848650123607566', '日本ならし西大寺赤田町一丁目7番18号10号室', '1993-10-06', 0, 0, 'kycho', '2012-12-07', 'kwokyin8', '2004-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS579201379469', '薛震南', 0, '+81 80-5948-2873', 1, '501637224107510187', '50-kai, 4-9-20 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-03-05', 0, 0, 'xue14', '2012-02-27', 'zhennanxu', '2020-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS435549353132', '井上葉月', 1, '+81 80-5236-0568', 2, '232294503172148701', '日本おおさかし西成区天神ノ森二丁目1番12号5階', '1998-09-13', 0, 0, 'hinoue', '2004-01-26', 'hazuki40', '2004-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS775394258789', '朱睿', 1, '+81 52-191-6755', 4, '548612629392138500', '日本なごやし守山区瀬古東二丁目171番17号45号室', '1987-06-13', 0, 0, 'ruizhu', '2016-11-02', 'rui4', '2017-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS277226908758', '向宇宁', 0, '+44 (20) 4573 2862', 2, '309046917047048377', 'No.43 Main building, 295 Regent Street, London, W1B 2LX, United Kingdom', '1996-07-23', 0, 0, 'xiang1016', '2015-08-28', 'yxi1225', '2014-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS274628965258', '譚秀文', 0, '+81 70-4498-5036', 3, '661246372139939111', 'Rm. 22, 18 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1990-04-27', 0, 0, 'tamsauman724', '2014-11-06', 'tam7', '2008-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS184430450535', 'Alice Snyder', 1, '+44 7418 922396', 4, '948611087919436006', 'Block 47, 777 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1986-06-29', 0, 0, 'salice', '2016-09-04', 'snyderalice623', '2008-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS990628103272', '白曉彤', 0, '+44 (161) 133 9348', 2, '103475325901709655', 'Block 35, 248 Portland St, Manchester, M1 3LA, United Kingdom', '1993-12-05', 0, 0, 'paht604', '2002-02-26', 'htpa', '2001-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS593195843939', 'Gregory Stone', 0, '+81 70-5417-6783', 1, '505553689123314224', '日本おおさかし平野区加美東四丁目9番1号47号室', '1987-05-04', 0, 0, 'stone06', '2008-02-18', 'gregory813', '2012-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS940018682766', '杜嘉伦', 0, '+86 769-710-2707', 3, '783765870926358241', '19F, 270 Shanhu Rd, Dongguan, China', '1997-11-14', 0, 0, 'dujialun', '2019-05-31', 'djia', '2001-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS613385211424', '梁安琪', 0, '+81 90-7608-3858', 1, '733850346803330960', '日本東京中央区銀座三丁目12番11号47号室', '1987-10-12', 0, 0, 'okleung', '2011-06-07', 'onkayleun1', '2012-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS245154256575', 'Bryan Dixon', 0, '+86 160-9905-7311', 1, '482803043561693351', '中国深圳福田区深南大道359号10栋', '1995-11-27', 0, 0, 'bryan316', '2011-01-02', 'dixonb', '2021-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS951043329767', '石詩涵', 0, '+81 66-573-3095', 1, '021739117857870017', '日本おおさかし東住吉区東田辺三丁目27番14号12階', '1989-05-04', 0, 0, 'shihanshi', '2017-10-10', 'shihansh', '2008-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS266806225980', '野村陸', 0, '+81 70-7050-6295', 2, '810511568579057013', 'Rm. 41, 16 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1985-12-30', 0, 0, 'nomurar', '2008-08-28', 'nrik', '2000-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS207981088098', '吳國榮', 1, '+1 614-102-0401', 2, '843984480388561464', '664 Wicklow Road Suite 13, Columbus, GA 43204, United States', '1991-09-04', 0, 0, 'nkwokwing829', '2002-11-19', 'kwokwingng', '2006-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS636467977272', '杜嘉伦', 0, '+1 213-107-0758', 1, '424065400152933821', '486 Alameda Street Apartment 16, Los Angeles, CA 90002, United States', '1991-01-27', 0, 0, 'jialun612', '2000-02-27', 'jialun614', '2008-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS426724596197', '邓杰宏', 0, '+1 212-720-4324', 1, '879564478706307513', '717 Bank Street Apartment 27, New York, NY 10014, United States', '1991-11-25', 0, 0, 'jiehongde4', '2010-12-11', 'denj6', '2015-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS561519881842', '梁杰宏', 1, '+86 170-6520-6226', 2, '342125809485566036', '中国北京市延庆区028县道750号12号楼', '1989-08-29', 0, 0, 'liang52', '2008-12-16', 'jiehong314', '2010-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS341586001651', '郭子韬', 1, '+1 213-506-9935', 1, '107876653167436436', '964 Figueroa Street Apartment 4, Los Angeles, CA 90037, United States', '1995-03-07', 0, 0, 'guzit48', '2008-02-23', 'zitguo', '2005-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS993727124682', 'Leonard Hughes', 1, '+44 7873 622385', 2, '730117317056199217', 'Flat 50, 329 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1988-05-29', 0, 0, 'leonahu', '2007-12-25', 'hleona50', '2012-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS388805009329', '伊藤大和', 0, '+44 (1223) 28 3389', 0, '408014351805056070', 'Block 1, 473 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1989-07-22', 0, 0, 'yamito726', '2002-04-07', 'yamato4', '2020-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS290978373551', '陈宇宁', 0, '+86 21-278-8832', 3, '821575995042980295', 'No.7 building, 645 Jianxiang Rd, Pudong, Shanghai, China', '1986-06-09', 0, 0, 'yuning5', '2014-01-25', 'yuningchen', '2003-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS053925377781', '中村健太', 0, '+86 760-999-6564', 0, '702656861381580107', '中国中山乐丰六路830号9号楼', '1997-03-28', 0, 0, 'knakamura', '2010-01-17', 'nakamurakenta', '2001-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS224985162181', '樊霆鋒', 0, '+86 21-950-8077', 0, '618106781505851141', 'Room 35, 755 Binchuan Rd, Minhang District, Shanghai, China', '1989-10-31', 0, 0, 'tff', '2000-02-19', 'fantf', '2013-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS134658916970', '吴詩涵', 1, '+81 11-398-0528', 2, '463379744261900838', 'Rm. 16, 13-3-5 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1995-06-19', 0, 0, 'shihanwu', '2019-09-24', 'shihanwu', '2005-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS021355690224', '常秀英', 0, '+86 157-1309-4179', 2, '357380726380304270', 'No.49 building, 286 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1992-08-23', 0, 0, 'xiuyingc916', '2015-05-16', 'chanxiuying9', '2013-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS564096947192', '廖云熙', 1, '+44 (116) 399 3286', 2, '469659950251386759', 'Unit 50, Oxford Eco Centre, 339 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1998-11-15', 0, 0, 'liaoy1', '2004-12-12', 'liaoy', '2005-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS481532058624', 'Jeremy Wright', 1, '+81 52-393-5008', 2, '234908044283800530', '日本なごやし守山区瀬古東二丁目171番8号30階', '1985-01-22', 0, 0, 'wjerem119', '2021-08-13', 'wrightjeremy117', '2010-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS982616134181', '钟秀英', 0, '+44 7123 371475', 3, '632039893331116244', 'Unit 27, Oxford Eco Centre, 883 Redfern St, Liverpool, L20 8JB, United Kingdom', '1990-05-18', 0, 0, 'zhongxiu', '2004-03-19', 'zxiuyi420', '2015-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS746916772260', '姚岚', 0, '+1 838-777-7052', 0, '459675160371527242', '27 Broadway Suite 20, Albany, NY 12207, United States', '1991-06-07', 0, 0, 'lyao7', '2000-06-25', 'layao5', '2002-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS573104601594', '岡本涼太', 1, '+81 70-6036-2450', 3, '773276765848350560', '日本おおさかし近江堂一丁目7番10号11号室', '1987-12-19', 0, 0, 'ryota56', '2001-06-28', 'ryookam51', '2003-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS897985093341', '楊慧儀', 0, '+81 3-8476-8127', 1, '594836761185315803', 'Rm. 22, 5-2-11 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1987-08-08', 0, 0, 'wyyeung1108', '2003-11-17', 'yeung1957', '2007-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS833859109994', '吴詩涵', 0, '+44 (121) 589 9524', 3, '339285520146098270', 'Unit 47, Oxford Eco Centre, 275 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1985-11-16', 0, 0, 'shihan87', '2018-08-25', 'shihan328', '2006-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS451412540556', '松本聖子', 0, '+81 70-4638-8551', 2, '409834413949504659', 'Rm. 19, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1997-08-16', 0, 0, 'matsuseiko', '2011-08-13', 'matsumoto95', '2005-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS102909469409', '關詩君', 1, '+81 3-6073-2254', 1, '890965606607715258', '日本東京品川区東五反田五丁目2番13号37階', '1998-08-01', 0, 0, 'szekwankwan', '2018-06-10', 'kwask', '2016-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS329180407278', 'Barbara Stewart', 0, '+86 176-0211-6067', 2, '874569476552571767', '47F, 28 Dongtai 5th St, Dongguan, China', '1991-03-30', 0, 0, 'bst', '2000-08-04', 'barbarastew', '2018-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS914259244639', '丸山明菜', 0, '+86 10-202-2845', 1, '954447318255257023', 'Room 28, CR Building, 776 FuXingMenNei Street, XiCheng District, Beijing, China', '1992-08-20', 0, 0, 'akina130', '2021-05-28', 'maruyamaakina1980', '2003-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS015609981166', '侯杰宏', 0, '+81 74-071-7216', 0, '202952055760194710', '日本ならし学園南三丁目9番1号45階', '1987-09-05', 0, 0, 'hou1982', '2012-09-25', 'jih87', '2021-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS819313516778', 'Ethel Perry', 1, '+81 70-2032-5963', 4, '453958062995640039', '44-kai, 2-1-4 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-05-01', 0, 0, 'etper1124', '2009-11-22', 'etperr1214', '2018-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS881010119280', '傅詩涵', 0, '+86 28-997-1168', 1, '298722299172058179', 'Room 49, CR Building, 376 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1997-04-01', 0, 0, 'shihan4', '2016-06-02', 'shihanfu50', '2018-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS447054534100', '陶秀英', 1, '+81 3-6643-5170', 4, '160826644489438059', '日本東京中央区銀座三丁目12番4号41号室', '1997-05-29', 0, 0, 'taoxiuying', '2017-07-26', 'taoxiuying3', '2021-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS713604816889', '顾子韬', 1, '+81 11-265-0401', 0, '674045826903288211', '6-kai, 5-19-14 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1993-04-23', 0, 0, 'zgu406', '2009-10-14', 'zitaog', '2022-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS070045535545', '赵子韬', 0, '+44 (151) 133 0978', 3, '983736920880963756', 'No.46 Main building, 2 Hanover St, Liverpool, L1 4AF, United Kingdom', '1998-05-14', 0, 0, 'zitaozhao', '2001-09-14', 'zz9', '2007-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS796827865301', 'Josephine Gonzales', 0, '+81 3-6833-3450', 0, '664319476927353756', '日本東京港区東新橋一丁目5番2号23階', '1992-06-03', 0, 0, 'jgonz', '2012-12-21', 'josephine53', '2008-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS774020632794', '呂家文', 1, '+86 154-2145-3407', 1, '363778620612776383', 'No.29 building, 196 Middle Huaihai Road, Huangpu District, Shanghai, China', '1985-11-06', 0, 0, 'lui00', '2009-02-26', 'kmlu40', '2021-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS147775230473', '蔣曉彤', 0, '+44 7093 999492', 3, '934082402776103257', 'Unit 44, Oxford Eco Centre, 758 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1999-02-19', 0, 0, 'chianghiutung', '2019-03-29', 'hiutchia', '2012-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS216798002582', '河野架純', 1, '+44 7928 899236', 2, '348433517468524577', 'No.40 Main building, 642 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1991-12-18', 0, 0, 'konok', '2003-05-02', 'kasumi3', '2010-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS885427985275', '高致远', 0, '+44 (20) 0194 5465', 1, '343320940849245009', 'Unit 18, Oxford Eco Centre, 27 Hanover Street, London, W1S 1YD, United Kingdom', '1987-06-28', 0, 0, 'gaozhiy', '2001-07-13', 'zhiyga4', '2005-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS870075359026', '崔岚', 0, '+86 10-666-0082', 1, '563302536609025937', '24F, 78 FuXingMenNei Street, XiCheng District, Beijing, China', '1998-08-08', 0, 0, 'cui9', '2021-06-13', 'lancu1108', '2014-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS555021972153', '唐睿', 0, '+81 90-7585-8719', 2, '748977446848814087', '日本ならし西大寺赤田町一丁目7番9号33階', '1996-01-14', 0, 0, 'ruit', '2016-07-04', 'rui528', '2011-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS087545432357', '菅原陽菜', 1, '+1 212-628-6487', 1, '346590924896562258', '490 Fifth Avenue Apartment 20, New York, NY 10017, United States', '1991-05-10', 0, 0, 'hina7', '2018-03-29', 'hinas', '2012-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS027423606507', '樊浩然', 1, '+86 760-4773-3119', 1, '377832491102730151', 'No.38 building, 117 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1997-04-04', 0, 0, 'fanhy', '2020-01-31', 'fanhoyin1216', '2008-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS665145696325', '金子彩乃', 0, '+44 5692 073385', 4, '498506202704135642', 'Block 10, 959 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1993-12-09', 0, 0, 'ayk', '2010-10-16', 'kanekoay', '2010-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS615018703834', '渡辺玲奈', 0, '+1 838-621-0355', 4, '366230202310687180', '98 Lark Street Suite 37, Albany, NY 12210, United States', '1992-10-14', 0, 0, 'satorena', '2018-05-30', 'satorena1', '2018-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS939374697739', 'Francisco Gonzales', 0, '+44 7037 728184', 2, '768604227539443524', 'Unit 14, Oxford Eco Centre, 475 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1995-04-07', 0, 0, 'gfrancisco', '2004-11-02', 'fgonza', '2017-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS030088443027', '丁璐', 1, '+86 28-888-8648', 2, '684017022025535201', 'No.35 building, 417 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1988-07-25', 0, 0, 'luding', '2004-09-23', 'dlu75', '2010-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS318147748207', 'Edward Munoz', 0, '+44 5680 060434', 1, '215254725447998816', 'No.46 Main building, 945 Mosley St, Manchester, M2 3AQ, United Kingdom', '1996-02-09', 0, 0, 'munoze92', '2003-04-13', 'edwardmunoz1971', '2016-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS035694089445', '山本翼', 0, '+1 614-729-7544', 4, '079991351113449319', '823 East Alley Apt 39, Columbus, GA 43201, United States', '1994-05-19', 0, 0, 'tsubasay2016', '2012-02-22', 'ytsub', '2009-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS097823619701', '汪致远', 1, '+86 131-2002-0685', 1, '389314355736670189', '中国上海市徐汇区虹桥路408号46楼', '1998-02-05', 0, 0, 'zhiyuan69', '2012-08-02', 'wang75', '2010-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS829728204027', '林安琪', 1, '+81 80-5956-7703', 2, '018594428587881737', '5F, 2-1-8 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1995-10-26', 0, 0, 'lanqi9', '2013-02-09', 'anqil66', '2017-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS372343235118', '韦璐', 0, '+86 197-3870-5905', 4, '194958161462778513', '中国成都市锦江区红星路三段560号18栋', '1993-10-15', 0, 0, 'lw6', '2018-05-18', 'luwei130', '2006-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS733442016409', '江安琪', 1, '+81 3-6661-4552', 3, '093288799077058934', 'Rm. 43, 1-5-13, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1991-04-04', 0, 0, 'anqijiang', '2018-02-25', 'jiananqi', '2011-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS119582252783', 'Kenneth Washington', 0, '+1 718-192-0857', 4, '749932323024747252', '530 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1997-04-29', 0, 0, 'kenneth220', '2016-04-22', 'washingtonkenneth', '2015-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS624824156580', '刘嘉伦', 1, '+81 80-5735-9018', 4, '763097410121334221', '29-kai, 2-5-2 Chitose, Atsuta Ward, Nagoya, Japan', '1989-01-03', 0, 0, 'liujialun2', '2008-08-29', 'jial76', '2019-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS588615954172', '清水陽太', 1, '+1 312-042-0176', 1, '657174153372451599', '476 North Michigan Ave Apartment 41, Chicago, IL 60611, United States', '1993-03-19', 0, 0, 'yoshimi', '2001-09-24', 'yotshi', '2021-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS566860951662', '胡嘉伦', 1, '+81 3-5481-3878', 2, '148766331858741378', '38-kai, 5-2-8 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1991-07-16', 0, 0, 'jialunh', '2011-10-16', 'jialunhu', '2015-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS795855449681', '朱杰宏', 1, '+44 7464 709554', 1, '237098510110970720', 'Flat 11, 267 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1987-05-10', 0, 0, 'jiehozhu', '2000-10-10', 'jiz', '2005-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS280565679613', '和田大地', 0, '+44 (161) 045 3760', 2, '259223707503433205', 'Unit 24, Oxford Eco Centre, 136 Portland St, Manchester, M1 3LA, United Kingdom', '1992-08-30', 0, 0, 'wadadaich95', '2018-06-05', 'daichiwa10', '2014-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS012468622895', '戴杰宏', 1, '+86 20-8323-7915', 3, '639687852099759711', '中国广州市白云区机场路棠苑街五巷599号38栋', '1991-12-26', 0, 0, 'jdai1', '2017-05-20', 'daijieh', '2006-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS172061261305', '吉田蒼士', 0, '+81 52-682-5502', 3, '379686553763590027', '日本なごやし北区楠味鋺三丁目80番5号35号室', '1994-09-02', 0, 0, 'yoshidaao56', '2013-01-04', 'yoshiaoshi5', '2022-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS824704228022', '西村大和', 1, '+81 66-880-9318', 3, '935045665119455091', '19-kai, 3-27-8 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-07-27', 0, 0, 'nisyamato10', '2010-09-01', 'nyam', '2017-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS349954216471', 'Jack Mendoza', 1, '+44 (121) 412 0939', 2, '194450429618390943', 'Block 34, 274 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1991-09-16', 0, 0, 'jackm4', '2019-01-06', 'mendojack5', '2003-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS251560006982', '曹云熙', 1, '+86 20-5444-8605', 2, '284736629306047550', '32F, 739 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1996-07-04', 0, 0, 'cyunxi7', '2020-10-09', 'cay', '2007-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS206962049978', '中山優奈', 1, '+86 195-8842-0216', 3, '470787391758547335', 'Room 10, CR Building, No. 362, Shuangqing Rd, Chenghua District, Chengdu, China', '1989-09-28', 0, 0, 'yunakay3', '2016-06-27', 'ynak', '2013-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS524638765503', '木村百花', 1, '+44 (121) 105 2949', 2, '668218881904691236', 'Flat 25, 514 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1990-08-18', 0, 0, 'kimura1973', '2018-01-30', 'momok60', '2000-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS322977903623', '邱致远', 0, '+86 135-3942-6700', 2, '144238088753648178', '中国深圳龙岗区布吉镇西环路204号华润大厦36室', '1990-05-27', 0, 0, 'qzhiyuan', '2009-01-25', 'zhiyuanqiu', '2021-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS864747607652', 'Dawn Butler', 0, '+81 70-3180-5485', 2, '030422990974491572', '日本札幌白石区菊水三条五丁目4番19号11号室', '1998-08-07', 0, 0, 'dawnbutle4', '2011-09-11', 'dawn321', '2014-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS479559754193', 'Joseph Garcia', 1, '+1 212-466-9738', 4, '417990582734146574', '493 Canal Street Apartment 50, New York, NY 10013, United States', '1996-05-26', 0, 0, 'josephga', '2000-05-01', 'gjoseph7', '2005-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS129599374832', '石秀英', 1, '+86 760-1610-4360', 1, '806982517245035215', '中国中山紫马岭商圈中山五路57号49栋', '1986-06-09', 0, 0, 'shix', '2008-04-16', 'shxiuy1117', '2003-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS380524814616', '刘子韬', 0, '+81 3-7649-3231', 4, '850316851918950652', '日本東京中央区銀座三丁目12番8号17階', '1994-10-14', 0, 0, 'zli', '2001-04-17', 'zitaol', '2004-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS124344406280', 'Anita Patterson', 1, '+44 (1223) 12 4178', 1, '859515815214570762', 'Flat 27, 613 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1997-02-23', 0, 0, 'ap54', '2017-12-05', 'anita128', '2004-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS432928342997', '薛子异', 0, '+86 21-394-4360', 1, '186735799475904529', 'Room 32, CR Building, 135 Jianxiang Rd, Pudong, Shanghai, China', '1991-01-30', 0, 0, 'zx1947', '2013-05-21', 'ziyi1', '2020-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS186531964101', 'Eddie Alexander', 0, '+81 74-057-0690', 0, '371943772917364898', '9-kai, 3-9-12 Gakuenminami, Nara, Japan', '1990-02-09', 0, 0, 'eddieal812', '2015-12-29', 'eddieal', '2004-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS989225251897', '渡部葵', 0, '+86 21-180-3650', 1, '669020949387041461', '16F, 901 Middle Huaihai Road, Huangpu District, Shanghai, China', '1997-04-04', 0, 0, 'watanabe717', '2010-11-03', 'watanabeaoi', '2013-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS983076058887', 'Barry Kennedy', 1, '+86 769-7414-7011', 1, '563114710248721819', 'No.25 building, 993 Huanqu South Street 2nd Alley, Dongguan, China', '1988-11-21', 0, 0, 'barrykennedy', '2000-02-29', 'barry77', '2011-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS149611925160', '姜晓明', 0, '+86 132-4740-0669', 3, '994000715184605633', 'No.45 building, 792 Shanhu Rd, Dongguan, China', '1999-02-27', 0, 0, 'jxia1122', '2004-11-05', 'xiaomingjiang9', '2006-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS070858279997', '钱秀英', 1, '+81 52-904-7983', 1, '156721587392376241', 'Rm. 6, 2-5-16 Chitose, Atsuta Ward, Nagoya, Japan', '1985-03-03', 0, 0, 'qianx', '2017-08-19', 'qianxiuy', '2011-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS747568787746', '许詩涵', 0, '+1 213-466-7662', 0, '661876992897222565', '557 S Broadway Apartment 30, Los Angeles, CA 90015, United States', '1995-05-26', 0, 0, 'shihxu', '2015-09-30', 'xushihan19', '2021-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS408747065928', '林家強', 0, '+86 760-7018-8157', 3, '509499428233712657', '中国中山京华商圈华夏街663号29室', '1985-07-04', 0, 0, 'lamkak', '2011-07-07', 'lkak', '2013-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS956744859822', '鈴木結翔', 0, '+86 20-729-2992', 1, '779759223738845540', '45F, 680 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1997-07-18', 0, 0, 'suzukiyuito', '2006-09-22', 'suzyu', '2012-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS953431559739', '黎裕玲', 1, '+86 21-988-3624', 4, '173035842336534612', 'No.35 building, 978 Jianxiang Rd, Pudong, Shanghai, China', '1994-04-18', 0, 0, 'yulinglai', '2000-12-25', 'yuling4', '2011-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS155754018561', '韦睿', 0, '+81 11-670-7069', 4, '064786301617196396', '20-kai, 13-3-11 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-05-08', 0, 0, 'weirui726', '2009-12-20', 'rwei83', '2001-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS965959143210', 'Larry Patel', 0, '+1 330-382-8345', 1, '244922779010249265', '856 Fern Street Apartment 26, Akron, OH 44307, United States', '1990-08-25', 0, 0, 'lapatel02', '2020-01-03', 'patellarr10', '2013-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS261192528893', '于子异', 1, '+86 21-475-5205', 2, '031464094476411735', 'Room 32, CR Building, 817 Binchuan Rd, Minhang District, Shanghai, China', '1996-07-11', 0, 0, 'ziyiy', '2007-06-01', 'ziyi1980', '2021-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS404767280167', '張麗欣', 1, '+86 158-0536-1062', 3, '158483335780351794', '中国北京市朝阳区三里屯路203号27栋', '1996-03-22', 0, 0, 'cheung6', '2015-04-16', 'cheung8', '2000-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS729057215923', '森田架純', 0, '+81 70-4311-2609', 3, '938282395840596776', '日本ならし学園南三丁目9番18号9階', '1995-05-30', 0, 0, 'kasumimorita56', '2001-01-07', 'kasumi8', '2016-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS366746276690', '楊俊宇', 1, '+81 80-2549-0540', 3, '622421730332962380', '38-kai, 9 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-11-29', 0, 0, 'yeung9', '2002-06-01', 'cyyeun518', '2010-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS377843000944', '任永權', 1, '+86 132-6161-8658', 4, '901570439506746445', '19F, 959 Tianhe Road, Tianhe District, Guangzhou, China', '1993-05-29', 0, 0, 'yam528', '2012-11-21', 'yam502', '2013-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS513169807056', '汤云熙', 1, '+86 199-4163-7163', 0, '157355315875528004', '中国成都市成华区二仙桥东三路642号12栋', '1985-07-26', 0, 0, 'yunxi7', '2009-12-10', 'tangyunxi929', '2020-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS208436119862', 'Robert Gomez', 1, '+86 193-8073-6500', 3, '004986595693527161', 'Room 46, CR Building, 168 68 Qinghe Middle St, Haidian District, Beijing, China', '1993-08-15', 0, 0, 'robgomez', '2022-01-11', 'robertgomez1971', '2003-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS760622904406', '黎安琪', 0, '+81 52-878-7020', 1, '145091544305887296', '26F, 7 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-10-21', 0, 0, 'li1984', '2021-02-25', 'lan', '2019-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS310354028547', '松本大輔', 1, '+86 144-6664-8361', 1, '970378357699557420', '中国中山乐丰六路634号6楼', '1996-02-03', 0, 0, 'daisukemats', '2017-05-14', 'daism1952', '2020-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS853012486384', '近藤美緒', 0, '+81 66-835-6349', 3, '465159670602784954', '20F, 2-1-20 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1992-02-21', 0, 0, 'konmio', '2016-12-29', 'miokondo', '2018-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS606605374589', '韓俊宇', 1, '+1 718-257-0725', 0, '465805745190766395', '707 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1987-04-20', 0, 0, 'cyha917', '2021-02-23', 'cyhan', '2016-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS005093150362', 'Martin Kelley', 1, '+86 10-3700-1903', 2, '199311711914873149', '中国北京市东城区东单王府井东街269号19栋', '1991-12-14', 0, 0, 'mkelley', '2009-07-27', 'kelley6', '2010-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS033034150538', '楊發', 0, '+86 134-7077-7629', 2, '379215740625701107', '25F, 69 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-06-30', 0, 0, 'yeungfat8', '2017-03-20', 'yeung202', '2001-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS503503665535', '周璐', 1, '+1 212-312-4365', 1, '479411468959645820', '582 Bank Street 3rd Floor, New York, NY 10014, United States', '1995-10-22', 0, 0, 'luzho', '2012-07-15', 'zhlu', '2006-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS458333110170', '千葉光莉', 1, '+81 52-974-7130', 3, '780243450573773858', '日本なごやし守山区瀬古東二丁目171番3号3号室', '1988-12-27', 0, 0, 'chikari', '2003-10-18', 'chibahikari', '2021-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS506178954670', '武田結翔', 0, '+86 28-962-3588', 1, '946484891883925154', '中国成都市锦江区红星路三段739号13室', '1986-06-17', 0, 0, 'takyuito', '2017-10-29', 'takedyuito1994', '2007-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS912574910295', 'Maria Fisher', 0, '+1 838-237-1369', 0, '730141214431651524', '981 State Street Apartment 34, Albany, NY 12203, United States', '1993-05-24', 0, 0, 'fishermar2', '2010-01-31', 'fishm', '2003-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS871870960687', '桜井美月', 1, '+86 755-111-8273', 3, '237062265522659386', 'Room 31, 169 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1985-12-06', 0, 0, 'mitsusaku', '2009-03-14', 'sakumitsuki1', '2007-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS597488583300', '秦嘉伦', 0, '+81 70-0043-3941', 2, '649871384322603097', '31-kai, 14 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1991-09-24', 0, 0, 'qijialun', '2014-09-07', 'qijial', '2002-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS697726532957', 'Doris Diaz', 0, '+86 141-3418-1497', 4, '573775187577619421', 'No.31 building, 103 Binchuan Rd, Minhang District, Shanghai, China', '1991-09-25', 0, 0, 'ddiaz8', '2008-06-19', 'ddoris914', '2012-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS258068859528', '孙秀英', 1, '+81 80-0070-0102', 3, '472647047176581819', '日本東京品川区東五反田五丁目2番20号14階', '1991-01-23', 0, 0, 'sun1992', '2018-05-03', 'xiuyingsun912', '2009-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS816144216850', 'William Gonzales', 1, '+86 28-7034-8090', 2, '540951231866306327', 'No.40 building, No. 13, Shuangqing Rd, Chenghua District, Chengdu, China', '1986-03-08', 0, 0, 'gonzales6', '2015-01-24', 'gonzales9', '2006-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS102643569220', '常秀英', 1, '+86 10-3127-6031', 2, '937112099627721518', '中国北京市海淀区清河中街68号447号3号楼', '1990-08-11', 0, 0, 'xiuychang', '2011-03-17', 'cxiuying', '2018-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS897192724204', '孫小慧', 0, '+86 10-9765-7201', 2, '227663230958293028', '中国北京市延庆区028县道886号华润大厦31室', '1995-03-30', 0, 0, 'hsuansw3', '2012-04-19', 'hsuan6', '2018-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS925832180323', '高璐', 1, '+1 838-683-9996', 1, '005483413339259123', '912 Broadway Apartment 42, Albany, NY 12207, United States', '1985-11-19', 0, 0, 'lugao3', '2017-04-21', 'gaolu', '2007-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS543854155216', '吴睿', 1, '+86 21-2493-8115', 4, '502676857534683900', '中国上海市徐汇区虹桥路588号38室', '1989-10-10', 0, 0, 'ruiwu1984', '2010-08-22', 'rwu', '2012-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS307936329233', '上田彩乃', 0, '+86 10-5684-1523', 2, '557173136777591175', 'No.21 building, 468 Dong Zhi Men, Dongcheng District, Beijing, China', '1992-05-29', 0, 0, 'uayan1101', '2000-07-08', 'uedaayan', '2016-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS516808479979', '今井涼太', 1, '+86 190-5037-2477', 1, '850044188193873339', 'Room 33, 278 Ganlan Rd, Pudong, Shanghai, China', '1988-11-03', 0, 0, 'iry', '2014-01-24', 'ryotaim', '2004-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS092956289249', 'Patricia Porter', 1, '+1 718-852-1036', 2, '899156023318347359', '833 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1998-11-16', 0, 0, 'porter517', '2020-10-05', 'porterpat', '2000-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS271435349110', '杉山葵', 1, '+81 11-619-4341', 3, '544818606975726703', 'Rm. 12, 5-4-12 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1996-11-18', 0, 0, 'asugi', '2011-05-19', 'sugiaoi', '2010-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS913462399975', '江子韬', 1, '+81 80-4436-2318', 3, '988383244035291502', 'Rm. 27, 1-7-11 Omido, Higashiosaka, Osaka, Japan', '1985-06-09', 0, 0, 'jianzita127', '2016-04-27', 'jiangz', '2019-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS959453678613', 'Vincent Reyes', 1, '+44 7733 615576', 4, '860113761075727092', 'Block 17, 930 Regent Street, London, W1B 2LX, United Kingdom', '1987-12-28', 0, 0, 'reyes829', '2021-09-18', 'vincent10', '2020-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS780874379438', '罗璐', 0, '+81 3-2677-3552', 3, '473512905010110287', 'Rm. 11, 5-2-12 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1992-11-24', 0, 0, 'luol63', '2006-01-03', 'lulu', '2014-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS478513586101', '山口涼太', 0, '+86 755-198-4989', 3, '614608342505139655', 'No.36 building, 593 Jingtian East 1st St, Futian District, Shenzhen, China', '1995-04-22', 0, 0, 'yamaguchiryot315', '2007-11-15', 'yamryota63', '2001-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS408073960947', '任嘉欣', 0, '+81 70-5567-7191', 2, '063942590146151454', '26F, 2-1-4 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1987-05-20', 0, 0, 'yam1983', '2012-01-16', 'kyy', '2009-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS884892301718', '横山玲奈', 1, '+86 21-1475-0740', 0, '675942514292915945', 'No.9 building, 176 Ganlan Rd, Pudong, Shanghai, China', '1998-03-04', 0, 0, 'renyokoyama09', '2008-05-06', 'reyok', '2008-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS636907711628', '雷詩涵', 0, '+81 11-999-9668', 2, '386965054998939431', '日本札幌豊平区豊平三条十三丁目3番5号10号室', '1997-11-30', 0, 0, 'lei5', '2012-04-09', 'shihanlei2', '2013-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS345629577426', 'Raymond Kennedy', 0, '+81 66-063-5557', 1, '269455417382115653', 'Rm. 26, 1-1-5 Deshiro, Nishinari Ward, Osaka, Japan', '1990-10-03', 0, 0, 'kennedyraymond8', '2005-09-08', 'kennedyraymond', '2004-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS726277929887', '福田百恵', 1, '+1 838-393-1596', 1, '789054438029126693', '229 Lark Street Apartment 5, Albany, NY 12210, United States', '1998-08-09', 0, 0, 'momofukuda', '2002-07-27', 'fukumomo', '2018-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS090429488675', '遠藤優奈', 1, '+81 70-1085-0124', 3, '933779918540224159', '日本おおさかし平野区加美東四丁目9番6号48階', '1985-12-02', 0, 0, 'yunaendo', '2011-01-16', 'endoyuna4', '2003-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS681597590810', '邱小慧', 0, '+81 11-402-2827', 1, '389523805427809642', '日本札幌白石区菊水三条五丁目4番17号43階', '1995-07-16', 0, 0, 'swy3', '2011-11-24', 'yausiuwai8', '2006-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS111701724156', 'Ralph Morris', 1, '+81 90-5306-5530', 2, '666032127394434249', '23F, 3-9-11 Gakuenminami, Nara, Japan', '1992-10-08', 0, 0, 'ralmorris', '2018-10-26', 'morris707', '2006-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS438110663835', '董睿', 0, '+81 80-1831-0651', 1, '346377632543795991', '日本東京千代田区丸の内一丁目6番12号13階', '1993-08-30', 0, 0, 'dongrui9', '2000-05-12', 'dongrui726', '2020-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS730128630789', '赵震南', 1, '+86 185-7940-4575', 4, '651388313341779829', '9F, 463 Shanhu Rd, Dongguan, China', '1998-06-24', 0, 0, 'zzhennan', '2020-06-08', 'zhazhen5', '2010-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS560175686707', 'Susan Castro', 1, '+44 5573 556560', 1, '351389679378467650', 'Block 46, 428 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1994-10-19', 0, 0, 'susanc2', '2014-12-31', 'castro1010', '2003-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS721533639056', '加藤優奈', 1, '+86 21-4238-3147', 0, '877948509412152129', '中国上海市浦东新区橄榄路379号26楼', '1998-12-31', 0, 0, 'yunakato', '2009-07-09', 'yuna425', '2009-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS859882087644', 'Amber Morales', 1, '+1 212-843-7304', 0, '440998620206206792', '507 Wooster Street Apartment 47, New York, NY 10012, United States', '1985-04-27', 0, 0, 'moralesamber312', '2002-03-23', 'ambmorales', '2003-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS104474387574', '秦子韬', 1, '+44 7309 688573', 0, '394482903869984237', 'Block 43, 456 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1988-02-11', 0, 0, 'qzitao', '2001-04-27', 'qin1029', '2002-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS365070186309', '藍慧珊', 0, '+1 838-983-3645', 2, '680143154535420520', '609 Broadway Apartment 14, Albany, NY 12207, United States', '1994-09-21', 0, 0, 'waisanlam', '2015-09-11', 'waisan1984', '2020-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS047251193660', '高木海斗', 0, '+44 (1223) 11 3386', 0, '284648966625071070', 'No.1 Main building, 782 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1995-04-03', 0, 0, 'takagkaito43', '2008-02-10', 'kaitotaka9', '2019-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS758663959907', '村上翼', 0, '+86 192-3441-5092', 1, '302786872467108841', '中国中山天河区大信商圈大信南路807号26楼', '1994-02-17', 0, 0, 'mtsuba', '2001-03-27', 'tmurakami1971', '2014-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS374508492328', 'Theresa Washington', 1, '+81 3-2782-6323', 1, '034996901635126682', '日本東京千代田区丸の内一丁目6番11号39階', '1991-06-17', 0, 0, 'washingtont', '2005-05-22', 'therewashington', '2009-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS090927872167', '上田優奈', 0, '+86 141-1480-7956', 3, '152383443100806878', '中国东莞坑美十五巷372号23室', '1989-07-28', 0, 0, 'yunau9', '2008-08-03', 'uedyuna19', '2002-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS441185450440', '段嘉伦', 1, '+86 10-718-1140', 1, '536816259317732380', 'Room 4, 928 Dong Zhi Men, Dongcheng District, Beijing, China', '1992-08-17', 0, 0, 'jialun73', '2015-05-02', 'jidua', '2004-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS740532970188', '駱淑怡', 1, '+44 5334 389426', 3, '637148565499575170', 'No.7 Main building, 397 Hanover Street, London, W1S 1YD, United Kingdom', '1998-11-08', 0, 0, 'lok00', '2002-03-17', 'syl8', '2011-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS730493077526', '桜井湊', 1, '+86 154-3601-4655', 3, '733710434599669082', 'No.1 building, No.968, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1985-02-12', 0, 0, 'sakuraiminato', '2021-05-06', 'sakuraimin', '2003-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS217201449938', '錢淑怡', 0, '+81 66-684-5136', 0, '403500926111122864', '8F, 4-9-1 Kamihigashi, Hirano Ward, Osaka, Japan', '1991-03-31', 0, 0, 'chinsy', '2011-04-03', 'sukyee930', '2016-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS723481862402', '岡田拓哉', 1, '+44 (151) 439 5179', 1, '216848776172043853', 'Flat 42, 163 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1998-07-31', 0, 0, 'okadatakuy', '2014-01-30', 'takokada', '2016-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS954650318707', '橋本美緒', 1, '+81 3-2164-5059', 1, '474142960768322168', '37F, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1989-07-07', 0, 0, 'hashim', '2013-08-22', 'mio52', '2020-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS346151184762', '山田葉月', 1, '+44 5454 425032', 3, '161864857416440413', 'Unit 45, Oxford Eco Centre, 374 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1992-06-18', 0, 0, 'yamadahazuki76', '2006-12-11', 'yamadhazuki', '2001-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS159200522300', '伍秀文', 0, '+86 151-4741-6500', 1, '021033704134518391', 'Room 22, CR Building, 103 Tianhe Road, Tianhe District, Guangzhou, China', '1994-02-04', 0, 0, 'sauman5', '2003-09-11', 'smng704', '2019-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS846016121894', '田發', 0, '+81 90-1703-9883', 4, '103279944295297854', 'Rm. 11, 3-15-10 Ginza, Chuo-ku, Tokyo, Japan', '1997-10-13', 0, 0, 'tin629', '2015-03-22', 'ftin10', '2008-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS217579063568', '菊地樹', 1, '+86 769-690-1506', 4, '175730957131602397', '中国东莞环区南街二巷205号3栋', '1989-04-26', 0, 0, 'kikuchiitsu', '2009-03-15', 'ikik', '2004-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS860095686319', 'Lawrence Reed', 0, '+86 755-000-0017', 1, '567908258333432855', 'No.26 building, 544 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1996-06-21', 0, 0, 'reed9', '2003-03-26', 'reedlawre', '2000-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS407914371913', 'John Wagner', 0, '+81 66-511-5448', 0, '509030801592041539', 'Rm. 18, 1-1-12 Deshiro, Nishinari Ward, Osaka, Japan', '1994-03-21', 0, 0, 'wagnerjohn', '2018-08-31', 'jwagner64', '2019-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS326937263817', 'Jeffrey Rose', 0, '+86 760-4035-4005', 1, '951516493816040778', 'No.14 building, 411 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1986-11-06', 0, 0, 'jeffreyr', '2002-03-13', 'rje', '2021-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS727007890261', '錢慧珊', 0, '+81 90-8288-4546', 2, '456370452261310799', '30-kai, 5-19-15 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1987-07-31', 0, 0, 'waisan6', '2006-08-29', 'chinwaisan', '2019-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS262189397396', '阿部玲奈', 0, '+86 170-2344-4590', 4, '650268124742567638', '中国北京市海淀区清河中街68号771号华润大厦32室', '1990-08-22', 0, 0, 'rab', '2000-01-27', 'abr', '2003-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS338596092180', '汤睿', 0, '+1 614-563-0121', 0, '532735033321024492', '380 Diplomacy Drive Suite 39, Columbus, GA 43228, United States', '1997-04-10', 0, 0, 'rutang', '2005-05-01', 'tanrui', '2000-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS283899459287', '贺詩涵', 1, '+1 213-310-7182', 4, '566879275839502464', '70 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1995-07-12', 0, 0, 'shihan1116', '2020-11-26', 'shihanhe', '2016-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS848428037005', '武睿', 1, '+81 90-6900-6168', 4, '015988638301466522', '日本おおさかし西成区出城一丁目1番8号31階', '1997-04-23', 0, 0, 'ruiwu3', '2008-10-10', 'wurui', '2019-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS136589585905', 'Manuel Chavez', 1, '+44 5593 325548', 1, '407601033809099467', 'Unit 13, Oxford Eco Centre, 975 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1985-08-22', 0, 0, 'chavezmanuel', '2022-02-08', 'chama930', '2017-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS657904919892', 'Nicole Gutierrez', 0, '+81 3-1624-3517', 0, '243215367230732126', '11-kai, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-09-18', 0, 0, 'gutienico331', '2002-07-16', 'gnicole', '2021-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS681505427496', '苗家文', 1, '+86 760-9723-2709', 3, '286796541420592640', 'Room 49, 170 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1988-06-25', 0, 0, 'kamanmi128', '2007-06-29', 'kmmi1962', '2008-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS703159408854', '苗潤發', 1, '+81 80-0423-0941', 1, '125606006627456715', 'Rm. 36, 5-2-3 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-05-21', 0, 0, 'yfmiu3', '2004-01-27', 'miu72', '2016-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS378148558150', 'Arthur Scott', 0, '+1 213-525-1790', 2, '122119672768616903', '102 Grape Street Apartment 15, Los Angeles, CA 90002, United States', '1987-09-08', 0, 0, 'arthurs', '2000-08-17', 'sarthur831', '2007-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS156799933597', '前田絢斗', 0, '+81 74-035-7341', 4, '357873920094107430', '日本ならし西大寺赤田町一丁目7番19号15号室', '1986-04-15', 0, 0, 'maedaayat55', '2020-04-26', 'maeda904', '2000-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS400703704460', '余安琪', 1, '+44 7155 907334', 1, '832012750550538741', 'Flat 16, 53 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1987-10-29', 0, 0, 'anyu1029', '2001-06-26', 'anqiyu43', '2001-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS750320182505', '徐杰倫', 1, '+1 212-478-6680', 3, '679853080883042773', '792 Bank Street Apartment 7, New York, NY 10014, United States', '1991-05-06', 0, 0, 'cltsui6', '2012-11-08', 'tscl', '2010-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS353848856970', '叶杰宏', 0, '+86 10-0778-8524', 1, '166626402133136249', 'Room 5, CR Building, 615 028 County Rd, Yanqing District, Beijing, China', '1996-03-16', 0, 0, 'jiehong1', '2021-12-05', 'jiehong58', '2017-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS033493203453', '吴璐', 1, '+86 10-8987-1563', 0, '163713725891865074', 'No.42 building, 893 Dong Zhi Men, Dongcheng District, Beijing, China', '1989-02-03', 0, 0, 'lu8', '2014-02-11', 'luwu3', '2004-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS364635570784', '林杰宏', 1, '+81 90-6782-4013', 2, '385829516300676869', '日本東京品川区東五反田五丁目2番3号1階', '1998-08-14', 0, 0, 'jiehongl', '2004-10-13', 'jieholin', '2005-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS352195569981', '餘慧敏', 0, '+1 614-497-3790', 3, '317770100381938483', '955 East Cooke Road Suite 1, Columbus, GA 43214, United States', '1986-10-23', 0, 0, 'yuewm', '2008-06-02', 'waimany', '2012-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS737163502349', '小川桜', 1, '+44 (1223) 81 1994', 1, '006891911931296604', 'Block 20, 917 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1997-10-11', 0, 0, 'ogsakura9', '2017-12-23', 'ogawsakur5', '2003-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS771049220393', 'Benjamin Wood', 1, '+81 90-1473-6509', 2, '719565294203794377', '日本札幌白石区菊水三条五丁目2番19号24階', '1995-05-04', 0, 0, 'woodbenj4', '2011-11-24', 'benwood01', '2012-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS252335569095', '元麗欣', 0, '+81 90-0496-5532', 3, '482893131812738744', '日本ならし大和郡山市本庄町一丁目1番2号30号室', '1998-04-06', 0, 0, 'yly404', '2011-10-17', 'lyy', '2018-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS089996212925', '谷天樂', 0, '+86 20-3960-9927', 2, '819718064691184831', 'No.10 building, 691 Xiaoping E Rd, Baiyun , Guangzhou, China', '1985-06-16', 0, 0, 'koo430', '2006-07-04', 'kootinl', '2002-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS881067799063', 'Francis Thompson', 0, '+86 168-5657-4986', 3, '180460647378156116', '中国深圳罗湖区田贝一路898号15室', '1997-06-25', 0, 0, 'thompsonfrancis1', '2008-04-29', 'francisthompson330', '2016-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS773229382974', '關頴思', 0, '+44 (121) 562 0486', 3, '974249041564546029', 'No.36 Main building, 565 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1986-01-28', 0, 0, 'wingszekwan105', '2005-06-15', 'kwaws', '2010-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS781049226775', '彭云熙', 0, '+86 20-383-2973', 1, '342939635940161276', 'No.3 building, 107 Tianhe Road, Tianhe District, Guangzhou, China', '1988-11-29', 0, 0, 'yunp5', '2000-07-26', 'ype', '2004-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS322360992038', '汪曉彤', 1, '+1 213-635-4899', 2, '891538655027159810', '529 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1991-12-17', 0, 0, 'hiutungwong', '2003-12-15', 'hiutung8', '2009-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS519937236811', 'Doris Mcdonald', 0, '+81 52-787-0608', 4, '167835480644982674', '4F, 13 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1986-11-27', 0, 0, 'domcd', '2006-04-28', 'mcdonalddor', '2008-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS041598133351', '木村涼太', 0, '+1 718-903-3966', 2, '627790544668302959', '772 Bergen St Apt 9, Brooklyn, NY 11217, United States', '1997-09-12', 0, 0, 'kimurar', '2016-01-22', 'rkimura97', '2008-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS976204796111', 'Robin Boyd', 1, '+86 175-1460-1885', 0, '330811889681717905', 'No.33 building, 905 Binchuan Rd, Minhang District, Shanghai, China', '1993-09-26', 0, 0, 'boydrobin9', '2010-07-18', 'boydrobin', '2018-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS614077626625', '蘇梓軒', 0, '+81 52-333-8177', 3, '962998928994530363', '日本なごやし瑞穂区河岸町四丁目20番3号21階', '1988-04-17', 0, 0, 'tszhin1951', '2011-01-14', 'so224', '2014-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS075622184600', '许岚', 0, '+81 3-6397-8288', 3, '461757779486998078', '15-kai, 1-6-15, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-04-13', 0, 0, 'lanxu', '2000-02-25', 'xul14', '2010-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS546992141780', 'Nathan Lee', 1, '+1 213-631-6636', 1, '616203993579220526', '773 Alameda Street Apt 29, Los Angeles, CA 90002, United States', '1995-10-31', 0, 0, 'lee3', '2011-07-14', 'nathanlee93', '2013-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS734410321325', 'Elaine Ford', 0, '+1 838-823-5582', 1, '060409513214687637', '886 Central Avenue Apt 15, Albany, NY 12206, United States', '1994-03-04', 0, 0, 'elainef', '2013-08-12', 'forde1996', '2004-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS346425176277', '李睿', 0, '+81 52-822-1459', 1, '372381329554391535', 'Rm. 47, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-05-31', 0, 0, 'li4', '2018-05-14', 'lr6', '2003-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS797308735505', '何云熙', 0, '+86 760-555-5756', 4, '135301004989298587', '23F, 331 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1992-04-16', 0, 0, 'yunxi5', '2010-01-18', 'yunxi6', '2003-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS112710209943', '韦云熙', 1, '+1 212-802-0553', 1, '338187220589882849', '310 Wooster Street Apt 31, New York, NY 10012, United States', '1986-10-12', 0, 0, 'wei6', '2018-09-16', 'ywe8', '2017-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS704481665359', '蒋安琪', 1, '+86 760-832-8238', 3, '538439720532976318', 'No.4 building, 875 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1985-05-20', 0, 0, 'anqi814', '2015-04-27', 'anjiang', '2011-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS543451976067', '近藤悠人', 0, '+1 330-300-4722', 3, '622826965975919904', '967 Collier Road 3rd Floor, Akron, OH 44320, United States', '1991-09-30', 0, 0, 'yutokondo72', '2008-03-23', 'kondy', '2005-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS646325977795', '武田光莉', 1, '+81 70-8207-7166', 2, '568585743604733051', '日本なごやし守山区瀬古東二丁目171番12号15号室', '1994-01-26', 0, 0, 'htakeda', '2004-07-20', 'hikari6', '2015-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS614193918435', '盧朝偉', 1, '+1 213-612-3440', 4, '398307412507732670', '731 Grape Street Apt 26, Los Angeles, CA 90002, United States', '1995-02-01', 0, 0, 'locw', '2007-07-19', 'locw', '2006-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS866204031378', '小野蓮', 0, '+81 90-5865-1950', 0, '223105158356810998', '日本札幌清田区真栄四条五丁目19番8号2号室', '1992-12-24', 0, 0, 'onoren', '2008-10-15', 'renono815', '2001-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS714529932039', '严晓明', 0, '+81 3-6237-0202', 2, '929857781674960262', '日本東京港区東新橋一丁目5番12号29階', '1992-04-17', 0, 0, 'xiay', '2016-04-04', 'xiaoming13', '2013-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS733069403527', 'Kevin Wilson', 1, '+86 150-7426-5809', 0, '188128255445208868', 'No.27 building, 867 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1992-06-24', 0, 0, 'wilson4', '2016-04-22', 'wilkevin', '2013-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS480580619916', '黄杰宏', 1, '+86 190-6041-5475', 1, '992835524646784591', '中国北京市西城区西長安街37号23栋', '1995-03-10', 0, 0, 'huanjiehong', '2019-03-24', 'huajieh', '2015-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS224413407859', '谷口絢斗', 1, '+44 5604 481139', 1, '958775625313238871', 'No.6 Main building, 915 New Street, Birmingham, B2 4DB, United Kingdom', '1987-10-18', 0, 0, 'ayatt', '2000-07-23', 'taniguchiayato407', '2005-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS201240788020', '孫慧嫻', 1, '+86 10-502-9935', 0, '309343845161625026', 'Room 34, CR Building, 158 FuXingMenNei Street, XiCheng District, Beijing, China', '1993-02-19', 0, 0, 'hwaihan', '2014-02-02', 'hsuanwaihan725', '2019-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS773182748812', 'Alfred Burns', 1, '+81 52-142-6419', 3, '955265683471216427', '47-kai, 4 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-11-08', 0, 0, 'alfred421', '2004-03-12', 'alfrebur9', '2012-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS407234955892', '王國榮', 0, '+81 80-1010-9381', 1, '158508360602608791', '日本札幌中央区宮の森四条六丁目1番4号30階', '1989-08-01', 0, 0, 'wongkwokwing', '2016-12-22', 'kwokwing1987', '2015-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS588216642571', '新井大和', 0, '+44 (161) 686 2375', 3, '125218571283001624', 'Block 39, 946 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1991-10-06', 0, 0, 'yamato85', '2005-02-07', 'araiya', '2011-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS857385817734', '丁子异', 1, '+81 70-3480-0824', 0, '516693193645955650', '日本おおさかし西成区天神ノ森二丁目1番12号42階', '1985-04-14', 0, 0, 'dingziyi', '2015-09-03', 'zd5', '2000-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS429628361536', '石晓明', 1, '+86 755-1895-7771', 1, '618074193488682962', 'Room 34, 181 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1988-09-14', 0, 0, 'sx1996', '2016-02-03', 'xiaomingshi', '2018-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS492409495014', '熊杰宏', 0, '+86 136-1997-9368', 0, '170210917118901522', '43F, 328 Kengmei 15th Alley, Dongguan, China', '1987-08-24', 0, 0, 'jiehongxi', '2010-09-09', 'jiehong1014', '2007-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS393143039055', '伍志明', 0, '+1 614-771-0332', 2, '614859547253412254', '875 East Alley 3rd Floor, Columbus, GA 43201, United States', '1996-08-06', 0, 0, 'chimng', '2013-02-14', 'ncm430', '2002-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS765445198266', '卢云熙', 0, '+86 10-2357-6020', 3, '728208002775615824', 'Room 40, 179 68 Qinghe Middle St, Haidian District, Beijing, China', '1988-09-09', 0, 0, 'yunxil', '2020-10-07', 'yunxilu', '2012-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS450484862618', 'Francis Washington', 1, '+1 838-562-7381', 2, '230042745357507654', '480 State Street 3rd Floor, Albany, NY 12203, United States', '1992-01-29', 0, 0, 'wfrancis9', '2007-07-21', 'washfr719', '2002-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS196103977911', '横山美咲', 0, '+44 7420 954535', 1, '975156190482120853', 'Flat 28, 978 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1991-11-30', 0, 0, 'yokm89', '2011-11-11', 'yokmisa', '2001-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS905022416827', 'Jane Stone', 0, '+44 (121) 725 3396', 0, '314486352366042973', 'Flat 29, 599 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1993-03-18', 0, 0, 'jastone', '2003-04-28', 'stonejane1989', '2005-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS987543233929', 'Carolyn Brown', 0, '+86 199-5370-2951', 3, '262979247750480625', 'Room 4, 53 Huanqu South Street 2nd Alley, Dongguan, China', '1986-12-10', 0, 0, 'carolynbrown', '2006-06-10', 'cabrown', '2019-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS609561221843', '佐野瑛太', 1, '+86 20-555-1904', 4, '056619964985867519', '中国广州市白云区机场路棠苑街五巷581号华润大厦34室', '1994-06-24', 0, 0, 'eitasano', '2008-07-29', 'seita', '2016-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS514476666953', '邓云熙', 1, '+81 11-522-1884', 1, '274051840790364986', 'Rm. 30, 5-2-6 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1993-07-17', 0, 0, 'yunden', '2010-11-12', 'dyunxi', '2007-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS891587469251', '丁詩涵', 0, '+81 52-767-9301', 3, '808688926851775271', '16-kai, 3-19-15 Shimizu, Kita Ward, Nagoya, Japan', '1998-11-25', 0, 0, 'shihan2', '2013-09-06', 'dings9', '2019-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS648019915818', 'Aaron Taylor', 1, '+86 195-8592-6345', 2, '933372448711510089', '中国成都市锦江区人民南路四段599号16楼', '1990-06-10', 0, 0, 'taya', '2012-11-02', 'aaron1946', '2010-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS799330665273', '常岚', 1, '+1 212-042-1856', 1, '411824768382662369', '971 Bank Street 3rd Floor, New York, NY 10014, United States', '1995-04-19', 0, 0, 'lanchang', '2006-12-24', 'chang1947', '2011-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS554033961740', '房惠妹', 1, '+81 66-038-3662', 3, '201777387559558893', '日本おおさかし西成区天神ノ森二丁目1番7号41階', '1993-09-16', 0, 0, 'huimeif', '2009-03-14', 'fong2001', '2016-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS357405271704', '罗子异', 1, '+81 52-191-2970', 4, '446369234030991261', '日本なごやし守山区瀬古東二丁目171番8号46階', '1985-07-16', 0, 0, 'luozi3', '2012-11-01', 'luoziy', '2010-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS198196790204', '郭國明', 0, '+81 11-926-7855', 0, '613599559832175972', '35F, 5-2-5 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-02-23', 0, 0, 'kwkwokming', '2014-02-24', 'kwokmingk', '2015-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS895727512248', '中村架純', 0, '+81 90-9019-6673', 2, '046752002562663399', '日本おおさかし東住吉区東田辺三丁目27番19号9階', '1995-11-16', 0, 0, 'kasnakam', '2018-02-15', 'nkasumi', '2008-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS434908340174', '范子异', 1, '+81 74-273-1651', 4, '627687663824153038', '日本ならし西大寺赤田町一丁目7番10号10号室', '1988-09-21', 0, 0, 'ziyfan', '2013-03-09', 'zfan6', '2006-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS113366172548', '贾子韬', 1, '+86 138-1221-9275', 0, '444252111554231716', '中国深圳罗湖区蔡屋围深南东路681号华润大厦24室', '1991-09-10', 0, 0, 'jizi1', '2021-07-12', 'zitaojia9', '2001-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS240194290055', '岡田舞', 0, '+81 3-9454-6020', 3, '743236870419045408', '日本東京中央区銀座三丁目12番13号47階', '1996-12-26', 0, 0, 'maioka1008', '2018-07-10', 'mai8', '2021-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS961097494956', 'Lucille Henderson', 0, '+44 (20) 4788 7583', 1, '238066852582139832', 'Unit 47, Oxford Eco Centre, 751 Hanover Street, London, W1S 1YD, United Kingdom', '1990-09-02', 0, 0, 'luh716', '2016-08-24', 'lhende', '2016-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS448600139214', '古梓軒', 1, '+81 3-4020-6503', 3, '642590968199134957', '23F, 3-15-17 Ginza, Chuo-ku, Tokyo, Japan', '1998-08-23', 0, 0, 'kutszhin', '2007-03-20', 'thku', '2020-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS896553663470', 'Cindy Mendoza', 0, '+1 614-371-9682', 0, '844122910260145731', '51 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1991-09-20', 0, 0, 'cmend2014', '2013-06-24', 'mcindy2', '2012-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS404439099741', '青木美咲', 0, '+86 140-3673-0573', 0, '897509029872175307', '中国成都市锦江区人民南路四段656号2号楼', '1991-07-27', 0, 0, 'misakiaoki', '2013-04-27', 'misakia', '2007-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS057569024174', '中村樹', 1, '+81 3-0635-8228', 1, '964544881088481156', '38-kai, 1-6-5, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1996-03-11', 0, 0, 'nakamuraitsuki', '2000-01-08', 'nitsuki', '2012-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS552510236473', '唐家文', 1, '+81 3-5808-0130', 3, '302353116921052515', '6-kai, 1-5-20, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1993-06-01', 0, 0, 'tkaman8', '2014-11-28', 'tkm', '2004-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS230981799124', '杜家強', 0, '+81 90-3475-3783', 1, '356733224580401863', '日本札幌白石区菊水三条五丁目4番17号42号室', '1991-12-06', 0, 0, 'kkto', '2018-09-29', 'kkto7', '2017-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS521871625455', '近藤蓮', 1, '+86 193-2324-9453', 4, '531859938577588969', 'Room 30, CR Building, 797 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1996-10-19', 0, 0, 'rkondo', '2022-03-02', 'kondo40', '2020-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS946142519155', 'Willie Gomez', 1, '+81 74-572-0414', 1, '811849972500430098', '17F, 1-7-4 Saidaiji Akodacho, Nara, Japan', '1991-01-31', 0, 0, 'gomezwilli', '2020-09-23', 'gomezwillie', '2021-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS639095616548', 'Micheal Patel', 1, '+86 755-777-7747', 3, '243423527444110134', 'Room 50, 423 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1993-01-28', 0, 0, 'mipat', '2007-07-23', 'michealpatel', '2010-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS942849425711', '姚明', 1, '+81 66-460-5562', 2, '763225591641754924', '3F, 2-1-3 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1986-06-14', 0, 0, 'mingyeow', '2007-06-07', 'yeowm', '2004-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS646708748567', 'Harold Patel', 0, '+81 11-252-9309', 1, '479520229700668679', '日本札幌中央区宮の森四条六丁目1番2号2号室', '1996-09-13', 0, 0, 'harolpate10', '2000-01-03', 'haroldp', '2021-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS020011170923', 'Rosa Clark', 0, '+81 80-5186-9548', 0, '680630441171302619', 'Rm. 36, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1995-12-22', 0, 0, 'clarrosa', '2004-10-02', 'clark90', '2003-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS830095394758', '應惠敏', 1, '+44 (20) 2262 5457', 3, '851639024500411348', 'Flat 32, 551 Regent Street, London, W1B 2LX, United Kingdom', '1988-05-11', 0, 0, 'ying1998', '2002-09-28', 'ying3', '2020-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS794501321529', '史致远', 1, '+86 755-185-7907', 0, '814784595660428425', 'Room 13, CR Building, 452 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1996-09-02', 0, 0, 'zhiys', '2000-11-07', 'shzhiyu', '2011-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS972527138764', '斉藤明菜', 1, '+86 145-6647-7627', 3, '211307993738740141', '中国成都市锦江区人民南路四段428号华润大厦28室', '1994-07-22', 0, 0, 'akina57', '2007-08-01', 'saitoakina81', '2002-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS718255982712', '森美緒', 0, '+86 151-3624-8938', 0, '784963446242918028', 'No.20 building, 767 Jiangnan West Road, Haizhu District, Guangzhou, China', '1985-09-06', 0, 0, 'mio107', '2020-04-17', 'miomori1012', '2009-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS915527257798', '谷口陽太', 0, '+44 7314 870631', 0, '731284068248291104', 'Flat 7, 574 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1995-10-22', 0, 0, 'taniguchiy6', '2018-02-06', 'yotataniguchi79', '2000-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS535300819481', 'Mark Martin', 1, '+81 90-7658-8387', 2, '531557619730755518', '日本ならし学園南三丁目9番2号31階', '1992-08-24', 0, 0, 'marmark9', '2006-12-23', 'markmar', '2011-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS791770150526', '姜云熙', 1, '+44 7223 853848', 3, '195572835124579430', 'No.3 Main building, 223 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1990-02-27', 0, 0, 'yunxi49', '2013-02-08', 'jiangyunxi', '2012-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS862324135331', '文小慧', 1, '+44 (1865) 11 4697', 2, '846627101037020048', 'Unit 34, Oxford Eco Centre, 229 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1997-06-06', 0, 0, 'swman', '2003-12-07', 'masw521', '2002-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS478121561228', 'Tiffany Lee', 0, '+86 196-6233-0015', 0, '581053894434494043', '中国北京市延庆区028县道558号18栋', '1989-01-01', 0, 0, 'leetiffany5', '2006-06-17', 'lee1946', '2008-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS395948842792', '任心穎', 0, '+1 614-848-6365', 3, '144515693088812454', '853 East Cooke Road Suite 40, Columbus, GA 43214, United States', '1997-08-03', 0, 0, 'yamsumwing1', '2009-09-20', 'ysw', '2007-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS145674524194', '千葉美咲', 0, '+81 90-7258-2068', 3, '444546817056186652', '日本札幌中央区宮の森四条六丁目1番10号6号室', '1992-01-13', 0, 0, 'chmisaki', '2013-08-12', 'chibami118', '2008-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS856914389493', '魏安琪', 1, '+1 312-080-8233', 4, '514572571113648815', '854 North Michigan Ave Suite 42, Chicago, IL 60611, United States', '1995-12-13', 0, 0, 'weianqi', '2004-02-24', 'weianqi', '2018-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS073595446319', '戴祖兒', 1, '+44 (1865) 99 3666', 0, '262835041165146714', 'No.12 Main building, 679 Park End St, Oxford, OX1 1JD, United Kingdom', '1994-10-11', 0, 0, 'dcy', '2010-05-02', 'cydai20', '2001-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS678590114486', 'Carlos Sanders', 1, '+81 80-4026-2439', 0, '227876336391316012', '日本札幌白石区菊水三条五丁目4番20号42階', '1997-01-18', 0, 0, 'sanderscarlos9', '2015-01-24', 'cs3', '2011-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS285865810125', '田村悠人', 0, '+1 312-819-0324', 3, '208848901768583279', '179 Rush Street Apt 44, Chicago, IL 60611, United States', '1994-05-18', 0, 0, 'ytamur', '2019-05-21', 'tamurayu405', '2017-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS398869667065', '工藤美羽', 1, '+81 52-551-2710', 2, '257773113903202555', '日本なごやし守山区瀬古東二丁目171番3号30階', '1990-03-22', 0, 0, 'miukudo', '2011-02-11', 'kudm', '2007-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS869259999240', '工藤明菜', 0, '+86 20-628-3734', 3, '989507610622370038', 'No.26 building, 197 Tianhe Road, Tianhe District, Guangzhou, China', '1997-11-10', 0, 0, 'aku2001', '2015-05-06', 'akina406', '2005-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS194278563187', 'Edwin Rodriguez', 1, '+44 (121) 960 2102', 2, '568645393990135820', 'Flat 8, 324 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1989-06-07', 0, 0, 'edwin5', '2001-04-10', 'edwinrodriguez', '2011-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS318790925907', '佐野健太', 0, '+1 614-757-8256', 2, '352868718937484558', '921 East Alley Apt 50, Columbus, GA 43201, United States', '1997-06-30', 0, 0, 'sanokent904', '2001-01-13', 'kentasano', '2010-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS783209174089', '谷天樂', 1, '+81 74-730-8669', 0, '460255145195569821', 'Rm. 44, 1-7-14 Saidaiji Akodacho, Nara, Japan', '1985-10-18', 0, 0, 'tinlokkoo', '2005-01-27', 'koo5', '2010-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS884455852197', '今井陽菜', 1, '+86 177-1899-2987', 3, '591500265420104835', '中国北京市海淀区清河中街68号54号39栋', '1997-06-30', 0, 0, 'ihi127', '2017-05-05', 'ihina', '2005-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS667178389767', '黎玲玲', 0, '+81 80-7009-8464', 4, '485010791126717259', '日本ならし学園南三丁目9番6号47号室', '1990-04-23', 0, 0, 'laill415', '2009-01-12', 'lalingling', '2011-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS760868814451', '熊秀英', 0, '+44 5948 203376', 2, '987522726018620661', 'Unit 36, Oxford Eco Centre, 911 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-12-02', 0, 0, 'xiuying717', '2010-11-09', 'xiongx', '2011-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS139326196486', '莫梓晴', 1, '+86 178-3443-9726', 1, '289081940007746633', '中国东莞坑美十五巷181号17室', '1997-01-26', 0, 0, 'tcmok6', '2017-03-14', 'tsmo', '2017-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS841425608136', '常子韬', 1, '+81 11-773-1418', 3, '610747141176975642', '日本札幌白石区菊水三条五丁目2番5号47階', '1989-08-29', 0, 0, 'zitchang03', '2019-11-10', 'changzitao5', '2000-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS340963449450', '前田陽菜', 0, '+86 131-7550-8003', 0, '108658578665644239', '中国深圳龙岗区学园一巷799号43号楼', '1995-03-28', 0, 0, 'hinama2', '2015-10-03', 'hinamaeda812', '2021-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS733790467305', '何頴璇', 1, '+86 21-6539-1208', 2, '314230472446964748', '中国上海市闵行区宾川路425号50室', '1987-04-09', 0, 0, 'wsho', '2008-04-22', 'hows', '2016-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS907677091102', '吉田海斗', 0, '+86 168-1952-6042', 4, '965622436869890370', 'Room 3, 853 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1999-03-05', 0, 0, 'yoka1029', '2001-04-13', 'kay77', '2007-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS309864523558', '小野玲奈', 0, '+44 (1865) 31 2755', 2, '590362738922829236', 'Unit 5, Oxford Eco Centre, 316 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1997-06-08', 0, 0, 'onrena', '2011-07-09', 'renaono', '2004-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS495727665416', 'Margaret Miller', 1, '+44 7929 409590', 2, '260656541670856524', 'No.13 Main building, 175 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1986-12-10', 0, 0, 'mimarga1987', '2009-02-26', 'mmargaret', '2008-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS847791653121', '張永發', 1, '+81 90-5220-8703', 1, '581237575646778474', '32F, 6-1-17, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1992-06-17', 0, 0, 'wfcheun', '2019-02-14', 'wingfatch2', '2021-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS980806005429', '森葵', 1, '+86 10-122-1832', 3, '758486176101874205', 'No.26 building, 256 FuXingMenNei Street, XiCheng District, Beijing, China', '1994-09-22', 0, 0, 'moaoi', '2001-09-19', 'aoimori', '2009-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS817689225981', '青木美緒', 0, '+86 151-8369-0240', 3, '610307856685820186', 'No.50 building, 297 East Wangfujing Street, Dongcheng District , Beijing, China', '1995-05-13', 0, 0, 'mioaoki', '2004-07-02', 'aokimio', '2001-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS040079177098', '曹震南', 1, '+86 184-4070-6558', 2, '304118725058925693', '46F, 486 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1995-07-18', 0, 0, 'cazhennan20', '2002-05-05', 'zhec', '2001-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS701788167213', 'Roy Flores', 0, '+44 (151) 740 8819', 0, '364642474939722235', 'Flat 38, 853 Redfern St, Liverpool, L20 8JB, United Kingdom', '1992-06-30', 0, 0, 'florroy9', '2004-02-25', 'royflo', '2004-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS009729151104', 'Brenda Green', 0, '+81 66-708-6694', 0, '288420035979295439', '日本おおさかし西成区天神ノ森二丁目1番15号20号室', '1997-07-29', 0, 0, 'greenb', '2017-02-07', 'grbrenda', '2016-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS799498220454', 'David Jordan', 0, '+86 755-040-3039', 0, '331616467121176950', 'Room 42, CR Building, 20 Jingtian East 1st St, Futian District, Shenzhen, China', '1988-12-14', 0, 0, 'jodavid1', '2011-08-13', 'jordan8', '2009-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS502477994912', 'Edward Reyes', 0, '+86 760-072-7668', 0, '309642985124427957', 'Room 31, 17 Lefeng 6th Rd, Zhongshan, China', '1988-05-11', 0, 0, 'edwreye1', '2005-03-26', 'edwarreye1106', '2015-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS825778180946', '陳慧敏', 0, '+44 5604 388469', 0, '306531439710949044', 'Unit 16, Oxford Eco Centre, 67 Redfern St, Liverpool, L20 8JB, United Kingdom', '1985-01-20', 0, 0, 'waiman3', '2008-01-11', 'chanwm', '2010-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS204784351501', '石井玲奈', 1, '+86 197-0498-8040', 0, '667792909548939366', '中国广州市天河区天河路456号19栋', '1988-08-06', 0, 0, 'ishii716', '2004-07-31', 'renaishii', '2004-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS560658818039', '駱俊宇', 0, '+81 3-9628-5707', 4, '639292345148795046', '39-kai, 1-5-10, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-01-25', 0, 0, 'lokchunyu7', '2009-06-11', 'lokchu', '2019-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS185497351867', '大野優奈', 1, '+81 90-8689-5207', 3, '815502794512945856', '日本なごやし北区楠味鋺三丁目80番16号39号室', '1994-03-27', 0, 0, 'yuna220', '2007-10-02', 'oyuna64', '2011-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS999064059758', '马杰宏', 0, '+1 330-730-3350', 3, '389945244563185462', '234 Fern Street Suite 24, Akron, OH 44307, United States', '1988-07-24', 0, 0, 'ma48', '2014-09-12', 'majieho', '2013-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS146022285062', 'Nicholas Evans', 0, '+81 52-290-5820', 1, '644924562384627561', '日本なごやし熱田区千年二丁目5番7号10階', '1997-12-15', 0, 0, 'nicholasevans', '2020-07-25', 'evansnich', '2018-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS313492592903', '郭慧敏', 1, '+81 66-306-8472', 1, '381641035180399285', '31-kai, 1-7-4 Omido, Higashiosaka, Osaka, Japan', '1986-04-19', 0, 0, 'kwokwm', '2014-12-27', 'kwowm', '2010-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS511465779185', 'Diana Gardner', 0, '+44 (151) 979 9581', 1, '181613643052518803', 'Flat 29, 105 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1997-09-02', 0, 0, 'digardner622', '2004-03-25', 'gard', '2008-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS307960029050', '村田花', 1, '+81 80-1766-4304', 1, '917768808944567015', '日本ならし学園南三丁目9番18号34階', '1997-05-01', 0, 0, 'murata2', '2002-02-24', 'hana831', '2008-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS771953636346', '馬嘉欣', 1, '+44 (1223) 54 1859', 3, '928570583695564700', 'No.34 Main building, 912 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1992-11-12', 0, 0, 'ma8', '2003-12-24', 'mkaryan501', '2019-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS282646978277', '橋本大地', 1, '+1 838-441-7990', 1, '164134343245505534', '990 Central Avenue Suite 49, Albany, NY 12205, United States', '1997-03-19', 0, 0, 'daichhashimoto', '2014-03-05', 'daicha', '2016-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS700065949656', '林安琪', 1, '+86 755-622-2449', 3, '821067645732337597', '中国深圳龙岗区学园一巷873号32楼', '1997-10-17', 0, 0, 'oklam', '2017-11-13', 'lamok1121', '2015-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS015677933040', 'Dennis Ross', 0, '+1 614-960-5510', 2, '997174558336441183', '784 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1988-07-25', 0, 0, 'dennisr', '2013-08-04', 'denniross729', '2003-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS382782580283', '沈致远', 1, '+86 28-1188-9898', 1, '138309742442751162', '中国成都市成华区二仙桥东三路655号7楼', '1988-12-30', 0, 0, 'zhiyuan58', '2014-03-02', 'zhiyuans80', '2013-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS934993997480', 'Rosa Harris', 1, '+44 7402 195594', 3, '836765081959252889', 'Flat 3, 97 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1991-04-12', 0, 0, 'harrisr', '2010-07-01', 'roharris', '2008-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS649007424020', '金子聖子', 0, '+86 10-576-6976', 2, '040915547103238815', '中国北京市海淀区清河中街68号920号16栋', '1987-04-06', 0, 0, 'kanekos602', '2018-10-22', 'seikokaneko', '2007-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS747478321809', '安藤百恵', 0, '+44 5900 785465', 0, '869936787797309117', 'Unit 43, Oxford Eco Centre, 415 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1998-10-04', 0, 0, 'ma1103', '2013-03-21', 'ma1', '2004-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS251457063305', 'Joshua Rogers', 0, '+81 90-8232-9535', 1, '819375889274976823', '21F, 19 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1992-11-30', 0, 0, 'jrogers', '2010-12-25', 'joshua3', '2016-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS161384620812', '餘思妤', 0, '+44 5660 913338', 2, '609009638846638921', 'Flat 26, 396 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1986-03-11', 0, 0, 'syyu', '2012-11-16', 'syyue2007', '2009-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS377940379851', '程致远', 0, '+86 158-6587-5935', 3, '441621292844174030', '中国东莞坑美十五巷416号9楼', '1986-03-17', 0, 0, 'czhiyuan', '2006-12-12', 'cz7', '2012-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS139964439925', '史秀英', 0, '+81 52-324-2643', 0, '727346354909788631', '5-kai, 12 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1992-09-29', 0, 0, 'xiuyings4', '2007-08-07', 'xiuyshi', '2000-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS234579295667', '阮曉彤', 1, '+81 66-897-1459', 2, '318320309246907775', '16F, 2-1-18 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1997-12-29', 0, 0, 'htyuen628', '2017-01-02', 'hiutung79', '2004-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS699813691811', '有村光', 1, '+86 179-1979-6293', 3, '709995770883624955', '中国深圳罗湖区蔡屋围深南东路831号35楼', '1986-06-29', 0, 0, 'hikaru8', '2009-11-07', 'arimura01', '2011-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS390793718066', '岡田陸', 0, '+86 755-1201-7229', 3, '329058791784479346', '中国深圳罗湖区田贝一路414号13楼', '1998-05-28', 0, 0, 'okada9', '2013-05-21', 'riokada', '2009-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS761053968114', '侯璐', 0, '+81 70-8987-8071', 1, '730132111866822671', '日本なごやし守山区瀬古東二丁目171番18号42階', '1991-08-18', 0, 0, 'lu4', '2008-03-23', 'hou2006', '2021-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS665618838980', '金杰宏', 1, '+1 614-523-5850', 4, '412588072883616684', '230 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1998-05-04', 0, 0, 'jiehojin4', '2005-03-14', 'jjiehong', '2000-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS347564829692', '武秀英', 0, '+81 80-9520-5157', 2, '230699825541822079', '日本札幌中央区宮の森四条六丁目1番2号5号室', '1989-11-23', 0, 0, 'xwu1963', '2015-07-16', 'wxiuying', '2010-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS752060513922', '中山大輔', 0, '+81 70-9841-1661', 4, '355342410793653161', '日本おおさかし東住吉区東田辺三丁目27番2号12号室', '1997-04-12', 0, 0, 'dnak1', '2001-02-05', 'daisnakayama', '2008-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS869073957496', '青木百恵', 1, '+44 5217 072871', 2, '853901651120218207', 'No.6 Main building, 314 Hanover Street, London, W1S 1YD, United Kingdom', '1995-06-09', 0, 0, 'aokmo', '2019-09-27', 'aoki8', '2018-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS516686329292', '陶子异', 1, '+81 66-665-7538', 2, '887907037773543794', '日本おおさかし西成区天神ノ森二丁目1番16号13階', '1988-10-06', 0, 0, 'tao94', '2007-02-01', 'ziytao', '2012-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS331992015600', '黎榮發', 0, '+86 184-2664-8622', 3, '352617219594878799', '中国北京市東城区東直門內大街625号48室', '1994-02-08', 0, 0, 'lawf', '2001-10-14', 'lwingfat', '2008-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS499977759625', 'Kathy Scott', 0, '+1 213-943-7121', 2, '950117027084490906', '980 Sky Way Suite 15, Los Angeles, CA 90043, United States', '1993-04-20', 0, 0, 'scottkathy', '2011-01-21', 'kathysco', '2018-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS969449759105', '王慧儀', 1, '+1 614-166-6415', 4, '938439292629629957', '543 East Alley Suite 13, Columbus, GA 43201, United States', '1991-04-29', 0, 0, 'wongwaiy8', '2022-01-05', 'wongwy1126', '2017-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS843078301894', '中野百恵', 0, '+86 755-328-8300', 2, '599805984027142625', 'No.35 building, 31 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1993-01-09', 0, 0, 'nakanomomoe408', '2017-12-13', 'nakanomomoe6', '2008-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS579824845009', '苗慧敏', 1, '+86 21-404-0660', 0, '903238238318485677', '中国上海市浦东新区健祥路70号华润大厦34室', '1990-04-26', 0, 0, 'miuwaiman', '2018-07-19', 'miuwaiman', '2003-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS520712988197', 'Norman Dunn', 1, '+86 132-7896-2028', 4, '699095175742104439', '中国北京市延庆区028县道909号24楼', '1990-04-01', 0, 0, 'ndun5', '2005-11-03', 'dunnnor', '2000-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS701502544980', '村田七海', 1, '+81 80-1907-2707', 2, '917129419761804875', '日本札幌中央区宮の森四条六丁目1番3号9階', '1987-10-29', 0, 0, 'muratananami5', '2001-07-10', 'nanammurata', '2021-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS999458734487', '金子一輝', 0, '+1 212-283-4365', 0, '443707531114926832', '894 Fifth Avenue Apt 16, New York, NY 10017, United States', '1990-06-15', 0, 0, 'kaneko506', '2016-09-21', 'ikkka', '2008-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS043494363678', '马杰宏', 0, '+81 80-6157-3462', 2, '684715482100778298', 'Rm. 30, 3-19-2 Shimizu, Kita Ward, Nagoya, Japan', '1992-08-22', 0, 0, 'jiehong901', '2010-08-05', 'jiehongm8', '2002-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS345168679281', '沈云熙', 1, '+44 7444 339231', 1, '223153214004524433', 'Block 43, 683 Sackville St, Manchester, M1 3BB, United Kingdom', '1989-12-13', 0, 0, 'yunxishen', '2008-10-04', 'yunxi229', '2011-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS707672854464', 'Stephanie Jenkins', 1, '+86 140-6689-4417', 2, '372178672123697406', '中国北京市西城区复兴门内大街789号2栋', '1995-09-01', 0, 0, 'jenkins201', '2019-08-21', 'jenkstephanie6', '2015-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS226418978212', '韦晓明', 1, '+81 80-8018-7188', 2, '085801119615717787', '24F, 5-2-1 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1989-09-25', 0, 0, 'xwe', '2021-02-11', 'xiaomingwe8', '2000-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS428435668034', '麥國榮', 0, '+81 66-572-6001', 1, '583083410606619742', '2-kai, 3-27-10 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1998-01-08', 0, 0, 'makkw', '2012-12-13', 'kwokwing9', '2013-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS045585585920', '田中陽菜', 0, '+86 10-9901-6719', 2, '488174800098266992', '33F, 148 Sanlitun Road, Chaoyang District, Beijing, China', '1992-01-16', 0, 0, 'hinatanaka', '2011-05-14', 'hitanaka', '2004-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS449543047188', 'Tammy Hayes', 1, '+81 52-335-5703', 1, '117578861087173797', '10F, 1 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1993-10-19', 0, 0, 'htam', '2004-06-21', 'htammy', '2003-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS609350361367', '中森紗良', 1, '+81 70-0264-9655', 1, '447418455258191471', '27F, 2-1-12 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1991-11-15', 0, 0, 'nakamsara', '2001-08-18', 'saranaka', '2002-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS195847937314', 'Lee Morgan', 0, '+44 5873 783596', 2, '348184772819128010', 'No.50 Main building, 940 Hanover St, Liverpool, L1 4AF, United Kingdom', '1988-03-19', 0, 0, 'ml6', '2008-06-28', 'morlee', '2013-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS815866533943', 'Cheryl Torres', 1, '+86 197-4971-6612', 1, '614765058500424710', 'Room 39, 230 028 County Rd, Yanqing District, Beijing, China', '1994-08-25', 0, 0, 'torres85', '2006-08-07', 'cht222', '2005-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS410735826993', 'Catherine Ruiz', 1, '+86 760-9224-6403', 2, '625532785099506002', '36F, 857 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1998-09-29', 0, 0, 'cr909', '2000-12-14', 'ruizca', '2003-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS432521697830', '廖安琪', 0, '+81 3-0137-6205', 1, '512464991337758872', '日本東京渋谷区代々木二丁目3番1号15号室', '1990-03-16', 0, 0, 'anqli98', '2016-09-16', 'lanqi', '2001-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS511931661794', '龚秀英', 1, '+81 66-648-6205', 3, '815892716518758029', '日本おおさかし東住吉区東田辺三丁目27番15号3階', '1994-04-24', 0, 0, 'xiugo', '2019-10-09', 'xgon3', '2020-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS018391678739', 'Randy Salazar', 0, '+86 769-2012-5962', 3, '046025490018401188', '中国东莞珊瑚路172号华润大厦6室', '1998-01-09', 0, 0, 'randysalazar9', '2003-05-31', 'ras', '2017-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS533038213137', '葉詠詩', 0, '+81 11-152-0930', 1, '460153776452071907', '日本札幌中央区宮の森四条六丁目1番3号4階', '1989-11-04', 0, 0, 'wsyip1949', '2015-02-26', 'wingsze2010', '2020-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS377230575921', '蒋致远', 1, '+81 52-758-3947', 3, '276318419168289004', 'Rm. 26, 17 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-07-22', 0, 0, 'zhiyuanji', '2011-09-04', 'jiang10', '2018-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS607501266545', '原田桜', 0, '+86 755-922-2510', 3, '908007700672180095', 'No.35 building, 782 Jingtian East 1st St, Futian District, Shenzhen, China', '1990-05-25', 0, 0, 'sakh1', '2002-10-23', 'harada5', '2003-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS924188405300', '蕭德華', 0, '+81 70-4108-1918', 3, '300188994320022594', '39-kai, 3-15-14 Ginza, Chuo-ku, Tokyo, Japan', '1991-12-28', 0, 0, 'twsi', '2014-05-28', 'takwah1111', '2021-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS354418187964', 'Anna Martinez', 1, '+86 147-3604-4734', 0, '220513506056370409', '中国中山京华商圈华夏街423号29室', '1991-09-24', 0, 0, 'annamart', '2008-11-14', 'martinez2007', '2013-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS380425655788', '曹思妤', 0, '+86 155-6781-7200', 0, '564821312064670481', '中国上海市黄浦区淮海中路811号36室', '1996-06-13', 0, 0, 'sycho', '2020-11-23', 'chosy', '2007-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS623923160488', '陆云熙', 1, '+81 11-876-8398', 1, '456278924410634686', '27-kai, 5-2-9 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1995-03-30', 0, 0, 'luy', '2005-05-05', 'yunxilu', '2007-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS331042382430', '石致远', 1, '+81 74-801-9609', 4, '887822294187210509', '日本ならし西大寺赤田町一丁目7番5号22号室', '1986-03-10', 0, 0, 'shizhiyuan', '2011-08-09', 'shi1', '2003-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS550681550330', '増田美緒', 0, '+81 11-899-1899', 4, '336246518034897432', 'Rm. 22, 5-4-12 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1995-10-28', 0, 0, 'masumio214', '2021-06-19', 'mio109', '2018-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS719894711222', 'Stanley Flores', 0, '+44 7146 931983', 3, '578644987917895700', 'No.2 Main building, 437 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-02-06', 0, 0, 'florstan704', '2020-01-03', 'floress86', '2003-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS974182467483', '姚秀英', 1, '+81 80-1993-1700', 0, '279346184572930691', '日本ならし西大寺赤田町一丁目7番3号1号室', '1996-02-28', 0, 0, 'xiuyingya13', '2010-04-02', 'yaoxiuying', '2014-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS084250351593', '梅麗欣', 0, '+1 212-816-1030', 2, '920805705246014865', '879 Canal Street 3rd Floor, New York, NY 10013, United States', '1995-01-25', 0, 0, 'muilaiyan', '2005-04-30', 'lymui9', '2000-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS633828873791', '村田七海', 0, '+86 760-590-3096', 2, '454800371834442578', 'Room 37, CR Building, 581 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1996-04-04', 0, 0, 'nmura', '2006-06-11', 'muratananami628', '2018-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS430544653488', '白詩君', 0, '+81 52-041-6685', 0, '421524169698905399', '日本なごやし北区楠味鋺三丁目80番4号29階', '1986-05-10', 0, 0, 'skpa', '2005-11-14', 'pak7', '2019-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS577821490335', '金致远', 1, '+44 7949 465738', 1, '927631538874803672', 'Block 21, 903 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1990-02-13', 0, 0, 'jizhiyuan11', '2006-05-09', 'jzhiyu01', '2005-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS731570650841', 'Peggy Kelley', 0, '+1 213-006-5270', 3, '720465496439103518', '922 Figueroa Street Apartment 10, Los Angeles, CA 90037, United States', '1993-06-01', 0, 0, 'peggkelle', '2020-08-18', 'kelleypeg', '2007-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS605022092479', '福田百恵', 0, '+1 312-538-5959', 0, '983778596984758323', '820 North Michigan Ave Apt 24, Chicago, IL 60611, United States', '1988-03-10', 0, 0, 'momoefukuda302', '2003-04-02', 'fukudam618', '2015-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS255106893315', '市川優奈', 1, '+86 769-863-7137', 4, '712499955045495499', '中国东莞东泰五街955号40号楼', '1989-09-20', 0, 0, 'yichikawa', '2021-03-08', 'yunaichikawa5', '2014-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS574731326806', '邵曉彤', 0, '+81 70-0018-7362', 3, '951261918879041115', '41-kai, 1-1-1 Deshiro, Nishinari Ward, Osaka, Japan', '1987-08-28', 0, 0, 'htsiu', '2005-10-08', 'hiutungs', '2018-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS935026310069', '丁晓明', 0, '+86 769-864-7140', 2, '164075665865289842', 'No.1 building, 961 Kengmei 15th Alley, Dongguan, China', '1992-11-14', 0, 0, 'xiaoming6', '2019-05-05', 'xiaoming3', '2004-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS307176037512', '馬永權', 1, '+86 147-1773-2319', 1, '296035113018631026', '中国北京市東城区東直門內大街149号华润大厦8室', '1995-04-16', 0, 0, 'mawk', '2008-06-03', 'wingkuenm', '2000-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS273993404563', '高岚', 1, '+81 80-2769-2329', 2, '727609104098391709', '日本ならし学園南三丁目9番19号7階', '1994-10-11', 0, 0, 'gao1956', '2002-02-15', 'langao2', '2005-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS285143686223', '羅思妤', 1, '+1 212-902-8421', 2, '166756326955737257', '37 Fifth Avenue Apartment 8, New York, NY 10017, United States', '1991-04-06', 0, 0, 'lo324', '2015-10-31', 'lsy', '2004-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS181198087763', 'Bryan Sullivan', 0, '+1 614-749-7815', 2, '845215756352633795', '622 East Cooke Road Apt 15, Columbus, GA 43214, United States', '1990-12-25', 0, 0, 'bryansul', '2004-08-26', 'bryasullivan', '2004-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS750053406864', '新井詩乃', 0, '+44 (151) 868 8057', 1, '411989922337417085', 'No.3 Main building, 609 Redfern St, Liverpool, L20 8JB, United Kingdom', '1988-06-30', 0, 0, 'arais10', '2010-08-26', 'shinarai88', '2007-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS703423784635', 'Josephine Turner', 0, '+81 66-418-0991', 3, '005538595067790405', '日本おおさかし近江堂一丁目7番14号18号室', '1996-10-25', 0, 0, 'josephine9', '2016-05-01', 'jost13', '2020-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS705832231503', '駱潤發', 1, '+86 755-5764-4698', 2, '449784228298748951', '中国深圳罗湖区蔡屋围深南东路921号12室', '1991-08-20', 0, 0, 'yflo', '2017-09-13', 'yunfatlok', '2003-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS004594271133', '吴岚', 1, '+86 10-895-3503', 0, '480469167057658243', '49F, 73 East Wangfujing Street, Dongcheng District , Beijing, China', '1993-11-05', 0, 0, 'lanwu6', '2000-05-22', 'wula1009', '2015-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS673701584526', 'Ronald Perez', 1, '+81 52-423-0237', 1, '460368903449994383', 'Rm. 31, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-12-24', 0, 0, 'ronperez', '2018-12-07', 'perezron', '2005-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS188395446550', '森田陸', 1, '+81 66-196-3082', 2, '706493958853585240', '2F, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1999-01-21', 0, 0, 'mri531', '2008-05-19', 'mriku', '2002-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS905751508599', 'Joan Herrera', 1, '+86 21-3223-9180', 2, '450603736337881996', '中国上海市闵行区宾川路821号21号楼', '1991-07-25', 0, 0, 'hjoa05', '2014-08-22', 'joher', '2017-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS797441106856', '贺晓明', 1, '+44 5827 315997', 4, '301344669163577537', 'No.15 Main building, 356 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1988-06-08', 0, 0, 'hexiaoming', '2008-12-13', 'hex1017', '2018-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS006978467659', '渡辺結翔', 1, '+86 154-2148-2766', 3, '713088862706555349', '中国北京市西城区西長安街539号2栋', '1997-05-08', 0, 0, 'ys926', '2013-05-13', 'yuisato116', '2004-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS170341914685', '江玲玲', 1, '+86 28-617-4861', 0, '564312029973686257', '中国成都市成华区玉双路6号895号华润大厦46室', '1993-01-17', 0, 0, 'konglingling', '2003-03-02', 'linglingkong', '2010-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS946869536596', '姜杰宏', 1, '+86 769-471-8387', 2, '139633049448982284', '中国东莞坑美十五巷192号华润大厦34室', '1992-07-08', 0, 0, 'jiangj1224', '2007-08-20', 'jiehong3', '2021-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS361508527297', '唐安琪', 0, '+1 838-140-8797', 0, '741830904497969781', '102 State Street 3rd Floor, Albany, NY 12203, United States', '1993-07-24', 0, 0, 'tang1110', '2019-01-01', 'tang521', '2000-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS937202783740', '宮本彩乃', 1, '+81 90-3572-1142', 3, '720072903948711657', '日本東京港区東新橋一丁目5番3号46階', '1987-10-08', 0, 0, 'ayam', '2008-02-01', 'miyaa', '2000-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS495759322190', '上野美咲', 0, '+44 (1223) 42 1936', 1, '222856458481844939', 'Unit 35, Oxford Eco Centre, 216 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1994-02-26', 0, 0, 'umisaki1', '2014-04-27', 'misau', '2015-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS585473493746', '周仲賢', 0, '+1 330-754-8424', 3, '019987399736677213', '624 West Market Street Apt 44, Akron, OH 44333, United States', '1992-09-18', 0, 0, 'chow7', '2018-01-10', 'cychow', '2007-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS409092698296', '曹震南', 1, '+86 185-9636-6498', 1, '886806913164138787', '中国上海市浦东新区橄榄路100号7号楼', '1987-09-29', 0, 0, 'zheca7', '2012-02-01', 'caozhennan', '2016-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS609861160912', '陈杰宏', 1, '+86 10-304-8966', 1, '620965255546879602', 'No.5 building, 964 028 County Rd, Yanqing District, Beijing, China', '1997-01-31', 0, 0, 'jch', '2003-01-22', 'jiehongchen6', '2006-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS283765821836', '斎藤樹', 1, '+44 7459 294616', 2, '501270353359604604', 'Flat 21, 445 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1995-12-07', 0, 0, 'itsuki6', '2001-10-24', 'saititsu53', '2000-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS743116973061', 'Victor Marshall', 1, '+86 187-9176-0896', 2, '594197388733259451', '中国北京市延庆区028县道561号41号楼', '1997-02-14', 0, 0, 'victor72', '2018-09-12', 'marsvictor', '2008-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS219200043673', '朱致远', 0, '+81 90-4496-9236', 1, '196020589101156195', 'Rm. 4, 2-1-9 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-04-11', 0, 0, 'zhzhiyuan1', '2017-10-16', 'zhiyzhu112', '2009-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS041311329682', '郝安琪', 0, '+81 70-4413-0897', 4, '424047556998942076', 'Rm. 41, 1-7-11 Omido, Higashiosaka, Osaka, Japan', '1994-08-23', 0, 0, 'haoanqi', '2008-09-05', 'ahao', '2012-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS084410331923', '木下蓮', 0, '+81 70-7615-1727', 4, '216249455367168387', '日本おおさかし近江堂一丁目7番1号33階', '1996-05-28', 0, 0, 'rkinoshita', '2022-02-07', 'kren', '2009-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS294862833527', 'Theodore Watson', 0, '+81 3-7174-9382', 3, '592186489724391971', 'Rm. 29, 1-5-3, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1987-09-14', 0, 0, 'watsontheodore', '2002-02-05', 'watsontheodore', '2006-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS288186688825', '森光莉', 1, '+81 70-6652-2735', 0, '208545276357960845', '日本ならし学園南三丁目9番4号44階', '1995-10-29', 0, 0, 'mhika91', '2003-03-27', 'morihikari', '2013-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS287606180516', '袁嘉伦', 0, '+86 21-6174-4493', 2, '933187515358541655', 'Room 33, 998 Middle Huaihai Road, Huangpu District, Shanghai, China', '1990-07-31', 0, 0, 'yuanj', '2014-12-11', 'yjia', '2019-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS218846418812', '馮青雲', 0, '+81 66-501-4677', 1, '710821327105003056', '日本おおさかし西成区天神ノ森二丁目1番17号10階', '1998-07-18', 0, 0, 'chingwan1978', '2008-09-18', 'chingwanfu', '2013-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS384190467542', '河野光莉', 0, '+81 3-2611-7247', 3, '059063871727997294', '22F, 5-2-9 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-06-07', 0, 0, 'kono75', '2014-11-25', 'hk1209', '2021-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS790708575839', 'Eddie Medina', 0, '+1 213-845-0311', 2, '930429734989682390', '508 Sky Way Apt 29, Los Angeles, CA 90043, United States', '1999-01-10', 0, 0, 'medinedd', '2018-11-12', 'eddie1948', '2015-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS037682636984', '石田大地', 1, '+86 20-398-4787', 3, '355179664198345118', 'No.47 building, 957 Xiaoping E Rd, Baiyun , Guangzhou, China', '1999-01-18', 0, 0, 'daichiishida510', '2018-12-26', 'id3', '2007-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS785107160380', '姜學友', 1, '+86 21-8934-0623', 3, '909426257622950578', '中国上海市闵行区宾川路715号华润大厦40室', '1988-01-09', 0, 0, 'hokyachang', '2005-02-18', 'hokyauc1944', '2013-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS745559092656', '斉藤玲奈', 0, '+81 90-9896-6190', 3, '604759528753286686', '49-kai, 1-5-20, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1992-06-04', 0, 0, 'saitrena', '2019-04-18', 'saitorena1', '2010-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS796420992703', '車德華', 1, '+86 21-9735-3191', 1, '636792053247085907', '中国上海市闵行区宾川路668号华润大厦34室', '1989-09-29', 0, 0, 'twch1987', '2019-05-26', 'che104', '2004-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS971798306509', '方杰宏', 1, '+86 769-749-3837', 2, '697278972311539884', 'Room 13, 221 Kengmei 15th Alley, Dongguan, China', '1985-02-25', 0, 0, 'fangjiehong', '2000-06-16', 'jiehongfang', '2017-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS705913521076', '藤田優奈', 0, '+81 66-529-5040', 2, '712914125350639508', '日本おおさかし平野区加美東四丁目9番10号27号室', '1988-05-03', 0, 0, 'fujyuna', '2004-05-22', 'yunfuj', '2011-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS252852762357', '侯岚', 0, '+81 80-8106-4666', 2, '989003823399394689', '日本東京中央区銀座三丁目12番3号33号室', '1998-04-08', 0, 0, 'hol4', '2007-04-24', 'lanhou', '2002-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS190269732820', '曹天榮', 1, '+86 133-0136-7961', 0, '012355982696315128', '中国成都市锦江区红星路三段278号14号楼', '1987-09-23', 0, 0, 'chotinwing', '2000-06-23', 'tinwing10', '2019-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS484987972630', 'Elaine Boyd', 1, '+44 (161) 937 6847', 0, '487202563808239737', 'Unit 18, Oxford Eco Centre, 943 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1988-09-26', 0, 0, 'boydela', '2015-08-06', 'elaine902', '2003-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS118277276719', '林詠詩', 1, '+1 213-052-3996', 2, '774596344656877252', '717 Grape Street Apartment 27, Los Angeles, CA 90002, United States', '1994-09-11', 0, 0, 'laws1102', '2014-01-28', 'wslam731', '2016-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS467409354190', '汪梓晴', 0, '+1 312-952-4646', 2, '009245923063423882', '503 North Michigan Ave Suite 12, Chicago, IL 60611, United States', '1996-02-08', 0, 0, 'tszchingwo', '2012-01-29', 'tcwong1012', '2016-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS583236802483', '菊地樹', 0, '+44 5057 773406', 2, '261668902415455554', 'No.3 Main building, 254 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1990-11-13', 0, 0, 'kikuchii09', '2013-07-15', 'ikikuc118', '2017-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS717663295910', '丸山聖子', 1, '+81 80-2822-6484', 1, '414920855636504764', 'Rm. 31, 6 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1998-04-29', 0, 0, 'seikomaruy518', '2004-03-10', 'maruyama909', '2019-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS211731598220', '湯國明', 0, '+1 718-688-4602', 1, '119943626792882535', '729 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1988-01-25', 0, 0, 'kmtong', '2016-03-12', 'tkm', '2006-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS229234828288', '萬家玲', 0, '+44 5186 709471', 3, '634471037410997811', 'No.28 Main building, 834 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1989-05-13', 0, 0, 'mengkaling', '2003-09-15', 'klmeng', '2014-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS896609967199', '谷慧珊', 0, '+1 213-707-7759', 2, '542470831206583489', '734 S Broadway Apartment 28, Los Angeles, CA 90015, United States', '1986-11-06', 0, 0, 'koowaisan', '2002-11-23', 'wskoo', '2014-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS536914503720', '狄淑怡', 1, '+86 191-7211-5864', 1, '359640002493453142', 'Room 23, CR Building, 912 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1987-03-02', 0, 0, 'syti4', '2010-01-14', 'syti208', '2003-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS804309591665', '吉田光莉', 1, '+44 5654 096074', 4, '142817559295154108', 'No.42 Main building, 461 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1995-06-27', 0, 0, 'hiky', '2011-10-20', 'hikari1002', '2017-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS670044564490', 'Rachel Snyder', 1, '+44 7016 854234', 3, '348647187528927607', 'No.20 Main building, 881 New Street, Birmingham, B2 4DB, United Kingdom', '1988-04-10', 0, 0, 'srache', '2011-12-30', 'rachsnyd', '2020-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS805890683261', 'Martha Torres', 1, '+81 11-345-2866', 2, '819022438784145109', '日本札幌清田区真栄四条五丁目19番8号49号室', '1993-11-19', 0, 0, 'torremart6', '2006-06-04', 'martha104', '2013-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS486466910776', '張心穎', 1, '+81 80-7575-8862', 1, '780957333146472626', '37F, 1-1-6 Deshiro, Nishinari Ward, Osaka, Japan', '1986-10-02', 0, 0, 'sumwing1959', '2006-09-19', 'cheungsumwing310', '2010-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS511590847937', '吕子韬', 0, '+81 52-294-5511', 2, '809164526116999116', '50-kai, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-11-03', 0, 0, 'zitalu', '2006-08-14', 'zitalu', '2005-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS180776609537', '福田美緒', 1, '+86 172-6024-1142', 1, '118049324277747441', 'Room 26, 680 Kengmei 15th Alley, Dongguan, China', '1998-08-17', 0, 0, 'miofukuda', '2004-04-13', 'mfuku', '2010-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS814738666448', '原田桜', 1, '+81 3-5819-4588', 2, '969287474150397440', '日本東京港区東新橋一丁目5番13号37号室', '1986-02-28', 0, 0, 'sakurah', '2011-06-24', 'sha', '2012-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS305917416227', '宮本翼', 1, '+81 66-960-2188', 3, '236679241274749014', '2-kai, 4-9-16 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-01-22', 0, 0, 'tsubasamiya', '2012-09-01', 'tsubasa1981', '2004-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS864042696141', '菊地湊', 1, '+81 90-6171-6044', 4, '447433445060957720', '日本おおさかし平野区加美東四丁目9番1号12階', '1987-12-13', 0, 0, 'minatkik', '2018-07-05', 'kikuchi1961', '2018-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS181608366522', 'Ellen Smith', 1, '+1 330-363-2023', 2, '875545068959495187', '587 Ridgewood Road Apartment 4, Akron, OH 44321, United States', '1990-03-12', 0, 0, 'sel', '2007-09-01', 'esmi55', '2013-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS433079168658', '曾惠妹', 1, '+1 330-458-4324', 3, '170925071135854748', '814 Collier Road 3rd Floor, Akron, OH 44320, United States', '1991-04-13', 0, 0, 'tsahuimei1204', '2004-01-06', 'huimeitsang', '2005-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS353659245891', 'Amy Evans', 0, '+44 (20) 6800 6667', 2, '335421245183887225', 'Block 25, 908 Pollen Street, London, W1S 1NG, United Kingdom', '1985-03-03', 0, 0, 'aevans129', '2006-01-29', 'amyevans304', '2003-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS286799361871', 'Janet Nichols', 0, '+86 28-754-8563', 3, '843970991268141996', '中国成都市锦江区红星路三段226号华润大厦43室', '1986-01-02', 0, 0, 'janetnicho', '2018-12-24', 'janen', '2005-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS656543591193', '蕭天榮', 1, '+81 80-6771-0582', 4, '238300605722070591', '日本札幌白石区菊水三条五丁目2番11号34階', '1994-01-24', 0, 0, 'siutinwing', '2017-10-06', 'twsiu', '2016-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS634449057874', '應國榮', 0, '+81 70-7677-3771', 0, '909324066955514021', 'Rm. 1, 5-2-19 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1991-08-29', 0, 0, 'ykwokwing1227', '2009-05-07', 'yinkw', '2016-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS025890462703', '林安琪', 1, '+1 614-546-1866', 2, '353298013565132634', '805 East Cooke Road Apt 5, Columbus, GA 43214, United States', '1998-09-19', 0, 0, 'lamonkay', '2016-11-18', 'okla124', '2002-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS726863265706', 'Don Woods', 1, '+1 838-831-8237', 2, '447818679501070621', '674 Central Avenue Apartment 20, Albany, NY 12205, United States', '1993-07-05', 0, 0, 'wdo', '2000-10-31', 'donwood', '2014-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS070487815263', '袁惠敏', 0, '+1 838-107-8651', 2, '098480801828734750', '771 Lark Street Suite 40, Albany, NY 12210, United States', '1987-01-03', 0, 0, 'waimanyuen', '2008-05-19', 'yuewaiman10', '2021-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS334937233614', '坂本絢斗', 0, '+81 74-073-4616', 4, '547527762618280341', '27-kai, 18 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-05-10', 0, 0, 'sa1959', '2003-08-27', 'sakamotoayat', '2010-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS163846353940', '唐永權', 1, '+1 718-388-1663', 2, '063778865312746489', '753 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1992-01-20', 0, 0, 'towi', '2017-06-20', 'wingkuentong', '2011-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS417503226447', '尹嘉伦', 0, '+81 80-7904-7572', 1, '331423772789405062', '日本東京千代田区丸の内一丁目6番17号23階', '1997-12-04', 0, 0, 'jiy', '2019-05-15', 'yinjialun4', '2016-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS146034398738', '夏子异', 0, '+1 213-032-9163', 1, '615287265512442174', '203 Wall Street Apt 37, Los Angeles, CA 90003, United States', '1993-11-24', 0, 0, 'ziyixia', '2010-02-19', 'zx630', '2021-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS749180662736', '田村優奈', 1, '+1 614-658-0166', 0, '305191232168512498', '373 East Cooke Road Apartment 25, Columbus, GA 43214, United States', '1994-07-05', 0, 0, 'yuntamur7', '2003-05-21', 'yunatamura', '2003-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS805916384073', '许秀英', 1, '+81 3-7319-9637', 2, '499213926345037208', 'Rm. 36, 1-5-8, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1988-02-01', 0, 0, 'xiuyxu', '2015-07-05', 'xuxiuy', '2021-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS339095372912', 'Christine Palmer', 0, '+86 179-1090-3729', 3, '887467543964705987', 'No.11 building, 99 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1986-05-06', 0, 0, 'christinep502', '2005-05-29', 'pachristine', '2018-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS137259624501', 'Randy Gutierrez', 1, '+81 80-6891-6794', 2, '377573895556673933', '日本おおさかし東住吉区東田辺三丁目27番13号35階', '1997-02-27', 0, 0, 'randyguti', '2018-12-20', 'grandy', '2013-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS034658467195', '林杰宏', 1, '+86 755-989-1568', 0, '709344967985107610', '中国深圳罗湖区田贝一路669号华润大厦7室', '1995-04-27', 0, 0, 'lin1946', '2009-05-29', 'jlin', '2021-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS529663262536', '樂頴璇', 0, '+44 7748 159732', 2, '876033551659727801', 'Block 10, 540 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1997-07-30', 0, 0, 'wingsl', '2019-06-16', 'wingsuenlok71', '2020-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS999863355202', '史云熙', 1, '+81 52-416-5188', 4, '732878887585747347', '日本なごやし守山区瀬古東二丁目171番1号15階', '1990-08-24', 0, 0, 'shi1220', '2022-01-26', 'shyun928', '2019-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS673093245708', 'Deborah White', 1, '+86 163-8074-5463', 4, '817252219797585417', 'Room 17, 989 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1995-07-30', 0, 0, 'white19', '2001-11-15', 'whdeb59', '2021-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS440274305555', 'Rebecca Moreno', 0, '+1 213-205-6774', 1, '482227331073248658', '389 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1996-03-06', 0, 0, 'rebecca03', '2008-10-13', 'rebecca47', '2006-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS038985092124', '钱杰宏', 1, '+86 176-2466-8230', 0, '201855966550955133', 'Room 19, 814 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1988-01-09', 0, 0, 'qianjiehong', '2012-09-15', 'qian5', '2011-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS936230549836', '戚國賢', 0, '+86 140-4744-6921', 3, '215230209235865166', 'Room 8, 228 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1985-08-05', 0, 0, 'kwokyin8', '2009-03-08', 'kwokyin74', '2012-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS853227748082', '關志明', 1, '+86 10-5259-0378', 1, '366694259122610390', 'No.20 building, 965 West Chang''an Avenue, Xicheng District, Beijing, China', '1994-01-04', 0, 0, 'chimingk', '2016-02-04', 'kwancm', '2001-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS036914437046', '斎藤七海', 1, '+81 3-6722-6873', 1, '990243277028094181', 'Rm. 40, 3-15-2 Ginza, Chuo-ku, Tokyo, Japan', '1988-11-02', 0, 0, 'saitonanami1003', '2001-05-04', 'nansaito825', '2017-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS805682482537', '關梓軒', 0, '+81 90-5766-4679', 3, '169863332601224718', 'Rm. 39, 2-5-13 Chitose, Atsuta Ward, Nagoya, Japan', '1989-07-25', 0, 0, 'kwanth', '2005-09-21', 'kwan01', '2011-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS514149902077', '王國明', 1, '+86 28-7255-5233', 2, '835365865359955808', '中国成都市成华区双庆路875号40栋', '1994-12-04', 0, 0, 'kmwong', '2006-11-06', 'wong109', '2021-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS526025989077', '村田陽菜', 1, '+86 160-2812-6890', 3, '432944064904574759', '中国广州市白云区小坪东路979号45栋', '1994-12-11', 0, 0, 'muratahina', '2002-01-08', 'hinamurata', '2015-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS300549446568', '斉藤百花', 0, '+44 5834 647609', 2, '615016456026308762', 'Flat 38, 509 Mosley St, Manchester, M2 3AQ, United Kingdom', '1993-07-14', 0, 0, 'momsai', '2013-03-12', 'momokasaito1981', '2016-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS784016843427', 'Kelly Roberts', 0, '+81 52-671-1528', 4, '070522291683364510', '日本なごやし守山区瀬古東二丁目171番19号18号室', '1994-02-11', 0, 0, 'rokelly', '2006-04-23', 'kelly9', '2013-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS425640745869', '方安琪', 1, '+1 838-310-5278', 0, '541833112034651730', '145 Broadway Apartment 48, Albany, NY 12207, United States', '1992-11-14', 0, 0, 'fananqi', '2002-06-09', 'fanganqi', '2012-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS592795651230', '侯安琪', 1, '+44 (116) 889 4910', 2, '194884669594614877', 'Block 20, 70 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1992-08-15', 0, 0, 'hou205', '2016-09-03', 'anqh1208', '2016-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS427268476500', '千葉詩乃', 1, '+86 10-9799-7787', 1, '773700236019472785', 'No.31 building, 19 028 County Rd, Yanqing District, Beijing, China', '1988-09-16', 0, 0, 'shino4', '2013-07-20', 'cshino', '2007-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS934969058088', '谢云熙', 1, '+81 80-8658-6009', 3, '998159846897124949', '44F, 5-2-2 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1994-07-20', 0, 0, 'yunxi121', '2020-09-02', 'xiyunxi510', '2016-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS824225908419', '松井拓哉', 0, '+81 52-180-1550', 4, '573362575680781043', '日本なごやし北区清水三丁目19番20号8階', '1992-01-16', 0, 0, 'tmatsui5', '2021-09-22', 'takuyama', '2000-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS767337094393', '容裕玲', 0, '+86 769-599-2703', 0, '332490406795573895', 'Room 15, 469 Huanqu South Street 2nd Alley, Dongguan, China', '1991-07-13', 0, 0, 'yly', '2003-03-14', 'yulingyun807', '2012-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS692545537158', '韦嘉伦', 0, '+86 135-4712-9827', 0, '967435457344852444', '中国广州市海珠区江南西路85号13室', '1986-02-04', 0, 0, 'jialunw', '2010-03-07', 'jialunw76', '2000-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS226737857477', 'Ashley Taylor', 0, '+44 (161) 222 9318', 3, '733022090029467696', 'Block 15, 64 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1986-11-02', 0, 0, 'ast222', '2010-02-16', 'ashleyt8', '2021-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS923872845195', '钱震南', 1, '+81 66-586-9526', 3, '561906595089179276', '日本おおさかし西成区天神ノ森二丁目1番9号47号室', '1998-02-19', 0, 0, 'qizhennan4', '2010-06-20', 'zheqian', '2008-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS977290190290', 'Rosa Hawkins', 0, '+86 10-034-0136', 2, '422205774988344108', '中国北京市西城区西長安街192号华润大厦2室', '1996-05-12', 0, 0, 'hawkinsros', '2019-08-27', 'hawkins2', '2019-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS668239762282', 'Mario Richardson', 1, '+86 130-1565-6884', 1, '417007839228855809', '中国北京市西城区西長安街557号18室', '1987-04-15', 0, 0, 'mr2003', '2008-05-14', 'mariorichardson426', '2021-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS002932444853', '任頴璇', 1, '+86 769-9007-9508', 2, '421487439446513230', '中国东莞东泰五街389号33楼', '1985-06-05', 0, 0, 'wsyam1969', '2012-05-17', 'yam8', '2005-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS216480936216', '何明', 0, '+86 10-016-1391', 1, '391309814414780188', '39F, 321 028 County Rd, Yanqing District, Beijing, China', '1992-05-30', 0, 0, 'minho509', '2017-02-18', 'homi121', '2006-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS378640542243', '何子韬', 0, '+81 52-951-1536', 2, '042688372085573163', 'Rm. 44, 1 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-10-07', 0, 0, 'hez217', '2012-10-15', 'hezitao', '2005-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS176765315986', '藤井七海', 0, '+44 7464 714497', 3, '314671241365951071', 'Unit 34, Oxford Eco Centre, 990 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1986-11-21', 0, 0, 'nanami1', '2014-04-07', 'nanafujii', '2012-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS721746662945', '陶子异', 1, '+1 838-999-7341', 1, '536832570884399980', '851 Broadway 3rd Floor, Albany, NY 12207, United States', '1993-02-01', 0, 0, 'ziyi2', '2007-08-04', 'taoziyi4', '2014-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS483144633509', '島田紗良', 1, '+81 3-5479-4649', 2, '146473978577235573', '日本東京中央区銀座三丁目12番13号10階', '1986-12-08', 0, 0, 'sshim6', '2008-03-13', 'shsa', '2010-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS403437527726', 'Pauline Moreno', 0, '+81 80-6847-6796', 1, '847644896672440632', '31F, 3-19-13 Shimizu, Kita Ward, Nagoya, Japan', '1997-04-15', 0, 0, 'mopaul63', '2014-07-29', 'morenopau8', '2018-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS644726045168', 'Edward Stevens', 1, '+86 178-5401-6469', 4, '712314816524976097', 'No.35 building, 622 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-08-13', 0, 0, 'edwardstevens', '2006-08-30', 'edwards9', '2004-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS543888280478', '松田翼', 1, '+1 312-937-8702', 1, '745541363775011230', '395 Pedway Suite 16, Chicago, IL 60601, United States', '1996-10-13', 0, 0, 'matsubasa', '2007-02-07', 'tsubasamatsuda1107', '2016-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS565231643914', 'Bonnie Rivera', 0, '+44 7533 656183', 4, '301675552648492710', 'No.7 Main building, 340 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1994-05-30', 0, 0, 'riverabonn', '2016-05-24', 'riverab', '2008-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS310200753716', '林大和', 0, '+86 760-8764-8334', 3, '968385521820708599', '中国中山天河区大信商圈大信南路314号华润大厦32室', '1993-01-14', 0, 0, 'yamathayashi6', '2019-02-13', 'yamatoh11', '2010-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS416312725680', 'Albert Evans', 0, '+1 614-237-9225', 4, '947956754450835639', '645 Wicklow Road Apt 1, Columbus, GA 43204, United States', '1986-10-17', 0, 0, 'albert97', '2003-09-29', 'ealbert', '2007-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS274878460943', 'Jimmy Collins', 0, '+81 3-5224-5002', 1, '893532167386724433', '日本東京港区東新橋一丁目5番19号13階', '1987-08-27', 0, 0, 'jcoll8', '2001-08-15', 'jimmycoll', '2015-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS766865290778', '駱國榮', 1, '+81 11-006-5938', 2, '294077191984525968', '41F, 6-1-9, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-03-02', 0, 0, 'lok1', '2002-08-08', 'kwlok', '2013-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS801428663126', '遠藤健太', 1, '+81 80-8731-4569', 3, '481487315874465981', '27F, 5-2-10 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-01-20', 0, 0, 'endo525', '2014-03-30', 'endo98', '2017-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS288099843698', '梅思妤', 1, '+86 149-1730-4865', 3, '541810210936483645', 'Room 25, CR Building, 636 Yueliu Rd, Fangshan District, Beijing, China', '1989-02-04', 0, 0, 'sym6', '2009-05-04', 'szeyumui', '2018-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS752501098534', '中村明菜', 0, '+86 10-874-8826', 3, '170901858508937795', '中国北京市朝阳区三里屯路903号华润大厦4室', '1997-07-17', 0, 0, 'akinnaka928', '2002-02-25', 'akinanakamura1966', '2002-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS391929048613', '金子一輝', 0, '+81 11-130-1564', 0, '277427519999166708', '日本札幌白石区菊水三条五丁目4番1号25号室', '1988-08-25', 0, 0, 'kaneko6', '2015-05-28', 'kanekoikki2', '2007-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS188399544810', '谷國賢', 1, '+86 139-1480-8252', 2, '128202271731343395', '中国中山天河区大信商圈大信南路737号49栋', '1992-07-13', 0, 0, 'kky', '2003-11-26', 'koky', '2020-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS117835656867', 'Kyle Wilson', 0, '+86 10-4829-7474', 0, '192869071109032041', 'Room 26, CR Building, 404 FuXingMenNei Street, XiCheng District, Beijing, China', '1998-12-01', 0, 0, 'kyle79', '2021-08-15', 'kylewilso', '2018-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS576355585312', 'Nicholas Murphy', 0, '+81 80-6012-7679', 2, '966239805378394755', '日本札幌豊平区豊平三条十三丁目3番18号36号室', '1994-09-29', 0, 0, 'murphynic', '2013-09-24', 'nmurphy43', '2019-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS957519901911', 'Janice Jones', 0, '+86 769-7810-0806', 3, '495619348698922784', '中国东莞环区南街二巷487号33栋', '1985-12-15', 0, 0, 'jjanice', '2010-08-13', 'janijones', '2005-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS415083216986', '石川結翔', 0, '+86 138-2381-7866', 1, '290569853909940259', '41F, 649 Jingtian East 1st St, Futian District, Shenzhen, China', '1995-11-25', 0, 0, 'yuitoishikawa', '2003-07-23', 'ishikawa6', '2014-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS214859050465', '清水翼', 1, '+86 199-1337-7031', 4, '971637818009220378', '中国东莞坑美十五巷560号华润大厦44室', '1988-01-05', 0, 0, 'shitsubasa116', '2000-12-31', 'tsubasa629', '2019-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS104430676556', '黎岚', 1, '+81 70-4222-0031', 4, '578881987758684786', '日本札幌豊平区豊平三条十三丁目3番4号6階', '1987-04-01', 0, 0, 'lilan', '2008-12-26', 'lilan', '2020-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS814074708095', '苗心穎', 1, '+1 212-707-6345', 2, '463442756340510069', '682 Wooster Street 3rd Floor, New York, NY 10012, United States', '1990-08-18', 0, 0, 'misw106', '2007-06-29', 'miu703', '2007-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS739377645257', '萧子韬', 1, '+81 80-6667-1614', 1, '806861139387176101', '13F, 2-1-10 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1987-06-27', 0, 0, 'zixi609', '2015-07-09', 'xiao03', '2000-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS403452445738', 'Josephine Rose', 1, '+1 312-788-9193', 3, '848045888428984453', '726 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1995-07-07', 0, 0, 'rjosephine', '2018-08-08', 'rose04', '2017-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS756081896695', '尹子韬', 0, '+86 769-6067-3910', 2, '746431472176292632', 'Room 39, CR Building, 580 Huanqu South Street 2nd Alley, Dongguan, China', '1990-04-18', 0, 0, 'zitao203', '2021-06-12', 'yin1124', '2003-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS818165649499', '森田陸', 0, '+86 760-5418-8253', 2, '951229719535866871', '30F, 51 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1986-09-04', 0, 0, 'moritariku', '2020-10-25', 'moritariku1005', '2001-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS040287482632', '斎藤大地', 0, '+81 11-880-3235', 4, '441115670818485053', 'Rm. 41, 5-2-10 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1994-07-04', 0, 0, 'saitodaichi', '2005-03-17', 'saitodaich3', '2000-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS195505563199', '曹青雲', 1, '+44 (161) 640 1000', 1, '566628247257383502', 'No.12 Main building, 108 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-11-21', 0, 0, 'ccw625', '2010-08-25', 'chocw5', '2013-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS155999393656', '江頴璇', 1, '+1 213-610-0816', 1, '109469057836754127', '800 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1988-07-06', 0, 0, 'wingsk', '2000-12-31', 'wingsuenk', '2005-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS371321600882', 'Jeremy Snyder', 0, '+81 70-1621-3437', 2, '081016999043097880', 'Rm. 21, 1-7-19 Omido, Higashiosaka, Osaka, Japan', '1997-02-01', 0, 0, 'jsnyder3', '2002-12-08', 'snyderjeremy', '2014-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS862202441097', '顾致远', 0, '+86 196-0806-0480', 2, '694905641441668550', 'No.26 building, 810 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1997-01-20', 0, 0, 'zhiyuangu', '2006-10-23', 'guzhiyuan', '2000-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS821066389652', 'Vincent Lee', 0, '+81 70-3364-4894', 2, '064134308394347029', '日本札幌中央区宮の森四条六丁目1番3号28階', '1992-01-23', 0, 0, 'lvincent53', '2007-12-25', 'vincentlee', '2005-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS399311607666', '任浩然', 1, '+86 180-7484-2651', 3, '127943114481816477', '中国北京市房山区岳琉路103号47号楼', '1995-05-03', 0, 0, 'hyy1225', '2011-08-12', 'hoyy9', '2010-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS493908122267', '池田大地', 0, '+86 136-5230-7631', 3, '057109312126692330', '中国深圳龙岗区布吉镇西环路179号6栋', '1989-02-27', 0, 0, 'ikedadaichi', '2010-10-18', 'ikedadaic1974', '2014-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS972621248440', 'Michael Garcia', 1, '+1 212-241-1736', 0, '745284309212735228', '351 Wooster Street Suite 16, New York, NY 10012, United States', '1997-08-18', 0, 0, 'garcimichael', '2021-09-19', 'garciami9', '2012-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS730476257484', '佘潤發', 0, '+81 3-3736-7764', 2, '063131900988500146', '13-kai, 3-15-17 Ginza, Chuo-ku, Tokyo, Japan', '1987-03-01', 0, 0, 'yfsh', '2000-08-18', 'syunfat923', '2009-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS499514010646', '韩岚', 1, '+86 28-7838-2259', 3, '332563606209207170', '中国成都市成华区二仙桥东三路464号13号楼', '1995-03-12', 0, 0, 'hanlan', '2019-01-20', 'lanhan', '2004-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS160646134204', '安藤光', 1, '+86 158-8399-7368', 0, '825318732355903361', '5F, 558 Sanlitun Road, Chaoyang District, Beijing, China', '1993-02-08', 0, 0, 'andoh', '2015-12-26', 'andohikaru', '2002-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS683457802144', '姜家玲', 0, '+1 614-539-7386', 0, '974370847527314513', '580 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1990-03-18', 0, 0, 'changkaling10', '2000-08-06', 'chakl79', '2001-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS741092418665', 'Rodney James', 1, '+81 80-7921-0423', 2, '258663421394437447', '日本東京千代田区丸の内一丁目6番4号43階', '1986-03-19', 0, 0, 'rodjam74', '2013-07-05', 'rodney5', '2005-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS146243302987', '阿部愛梨', 1, '+44 (121) 057 5879', 0, '660576795887453463', 'No.31 Main building, 818 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1997-12-17', 0, 0, 'airia', '2009-07-19', 'abe204', '2009-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS738055449763', 'Carrie Castro', 1, '+1 614-502-5755', 0, '777502226044098745', '220 East Alley 3rd Floor, Columbus, GA 43201, United States', '1991-02-26', 0, 0, 'carcast709', '2012-06-09', 'castrocarri', '2021-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS497603339863', 'Norma Gardner', 1, '+86 163-9105-2870', 3, '136106277238337442', '18F, 323 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1995-12-14', 0, 0, 'gardnernorma222', '2001-11-07', 'normagardn', '2007-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS112210277941', '坂本結翔', 0, '+86 769-833-5749', 3, '495771240806519515', '中国东莞珊瑚路693号5楼', '1988-10-08', 0, 0, 'sakyuito', '2003-06-05', 'yuisakamoto914', '2000-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS028855144220', 'Chad Gibson', 0, '+81 70-6519-6792', 3, '706842439294538205', 'Rm. 24, 2-1-13 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1986-03-17', 0, 0, 'chadgibson', '2009-06-26', 'gibchad', '2009-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS827544637885', '官安娜', 0, '+81 70-9462-4455', 2, '111230767304018744', '日本札幌清田区真栄四条五丁目19番10号18階', '1991-07-27', 0, 0, 'onnakoon', '2007-12-23', 'onkoon4', '2010-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS039511882961', '有村七海', 1, '+86 769-7914-5966', 1, '411548121892060040', 'Room 34, 752 Kengmei 15th Alley, Dongguan, China', '1986-08-05', 0, 0, 'nanamiarimura1230', '2005-03-26', 'arimurananam7', '2002-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS265076040549', '朱國榮', 1, '+81 80-3820-7765', 1, '839062993350005580', '29F, 1-1-2 Deshiro, Nishinari Ward, Osaka, Japan', '1985-03-05', 0, 0, 'chukw', '2013-09-18', 'kwokwingchu06', '2018-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS261804264371', '村上陸', 0, '+81 11-359-7814', 3, '685066677510508123', 'Rm. 25, 13-3-5 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1988-09-25', 0, 0, 'murakamirik106', '2007-01-04', 'rikumurakami', '2011-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS864698663755', 'Arthur Rose', 1, '+86 10-7014-2876', 0, '017668314034650895', 'Room 7, CR Building, 969 East Wangfujing Street, Dongcheng District , Beijing, China', '1985-04-26', 0, 0, 'arose1947', '2016-12-17', 'arthur5', '2003-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS679505560050', '孟震南', 1, '+81 11-592-5776', 3, '680050344131002186', '日本札幌豊平区豊平三条十三丁目3番17号9号室', '1987-08-12', 0, 0, 'menz', '2008-03-17', 'meng323', '2001-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS484380639634', '武秀英', 0, '+86 21-9361-9626', 0, '704334844129976836', '中国上海市徐汇区虹桥路366号5号楼', '1988-04-18', 0, 0, 'wuxiuy', '2016-07-11', 'wu10', '2016-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS204412066769', 'Amber Diaz', 1, '+81 80-5388-7761', 1, '582863528015588800', '日本なごやし熱田区千年二丁目5番1号36号室', '1986-03-25', 0, 0, 'amberdiaz09', '2021-03-22', 'ambd', '2008-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS015500411239', '梅裕玲', 0, '+81 11-373-8324', 1, '158849880967895212', '日本札幌厚別区上野幌一条二丁目1番14号46階', '1995-08-23', 0, 0, 'ylm67', '2019-03-30', 'ylmui', '2006-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS601963819053', '谭晓明', 1, '+86 10-9593-4552', 1, '907090894217370984', 'No.34 building, 463 Sanlitun Road, Chaoyang District, Beijing, China', '1994-09-24', 0, 0, 'xiaomingtan101', '2014-07-09', 'tanxiao', '2007-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS075559077157', '向致远', 0, '+86 176-3576-6314', 0, '239979106831869540', '中国广州市越秀区中山二路226号30号楼', '1987-04-06', 0, 0, 'zhiyuan4', '2009-04-01', 'zhiyuanxiang3', '2021-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS052103238257', '唐慧嫻', 1, '+86 151-7995-2943', 3, '884261506638114850', '中国广州市白云区小坪东路585号12楼', '1994-03-11', 0, 0, 'tonwa4', '2003-10-17', 'whto', '2018-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS442093919880', '溫世榮', 1, '+86 28-426-9247', 3, '444761607259167693', '32F, 994 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1985-02-26', 0, 0, 'saiwing72', '2010-05-18', 'saiwingwan1230', '2011-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS350324594822', 'George Henry', 1, '+44 (20) 1939 7022', 1, '590300458849639714', 'Flat 40, 548 Pollen Street, London, W1S 1NG, United Kingdom', '1991-09-03', 0, 0, 'henry3', '2002-12-20', 'hgeorge', '2004-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS192524103502', '後藤葉月', 1, '+81 66-918-8130', 1, '687276667812005250', '日本おおさかし近江堂一丁目7番19号12階', '1986-06-10', 0, 0, 'hagoto', '2009-03-20', 'gotohazuki', '2008-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS841048727061', '竹内百花', 1, '+1 718-106-7562', 3, '097201779470826626', '730 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1993-05-12', 0, 0, 'momoka5', '2014-03-27', 'tam', '2011-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS592005134769', 'Mark Alvarez', 0, '+86 755-282-6809', 2, '337669062478436977', 'No.6 building, 521 Jingtian East 1st St, Futian District, Shenzhen, China', '1986-07-01', 0, 0, 'am76', '2001-09-11', 'markalvarez', '2006-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS137401260837', 'Donna Cooper', 0, '+86 20-1776-3781', 1, '052735249596486783', '中国广州市白云区机场路棠苑街五巷276号25号楼', '1992-12-03', 0, 0, 'dcooper2005', '2019-10-04', 'cood', '2018-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS874634518743', '汤子异', 1, '+81 74-105-0406', 4, '545854848167102208', 'Rm. 43, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1989-04-07', 0, 0, 'ziyit', '2017-02-27', 'tangz403', '2002-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS540321935697', '官安娜', 1, '+86 160-1554-7610', 3, '139162215727356042', 'No.35 building, 250 Tianhe Road, Tianhe District, Guangzhou, China', '1997-03-29', 0, 0, 'kon531', '2012-11-27', 'koon5', '2007-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS927198560832', '陳力申', 1, '+86 755-0037-5302', 1, '613275481190447460', '中国深圳福田区景田东一街195号16号楼', '1996-06-09', 0, 0, 'chanliksun', '2005-04-01', 'liksunchan', '2015-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS920611732759', '中村美咲', 0, '+81 52-691-4577', 1, '207043085813137606', '日本なごやし守山区瀬古東二丁目171番1号47号室', '1986-05-26', 0, 0, 'nakamura2014', '2010-12-11', 'misaki9', '2000-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS412181344944', '新井陸', 0, '+86 20-176-7264', 1, '583399798150430762', '中国广州市白云区小坪东路955号46号楼', '1988-07-06', 0, 0, 'rikarai213', '2013-08-18', 'rikuara', '2013-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS947336801807', '内田優奈', 1, '+1 212-239-0498', 3, '012330704702187674', '189 Bank Street 3rd Floor, New York, NY 10014, United States', '1994-01-03', 0, 0, 'yuna6', '2007-10-07', 'uchidayuna10', '2000-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS843484209532', '潘云熙', 1, '+86 177-7822-8666', 2, '663901745480080332', '中国深圳罗湖区蔡屋围深南东路130号30栋', '1986-03-29', 0, 0, 'yunxip71', '2007-11-02', 'ypan', '2022-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS227402146128', '桜井百花', 1, '+86 196-5842-4160', 3, '245339179388757064', '中国中山乐丰六路804号1号楼', '1986-05-15', 0, 0, 'momoka325', '2006-02-22', 'momoks1963', '2016-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS255435107671', '郑云熙', 0, '+81 11-970-6603', 3, '265733011409699160', '43-kai, 5-2-13 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-05-25', 0, 0, 'zhenyunxi', '2018-05-19', 'yunxi5', '2014-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS541324197817', '孟子韬', 0, '+1 838-018-2455', 3, '525020119812121303', '649 Central Avenue Suite 35, Albany, NY 12205, United States', '1995-12-12', 0, 0, 'zitao1953', '2005-10-14', 'mengzita', '2016-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS953244036438', '甘榮發', 1, '+1 838-761-3383', 3, '298605512125593731', '4 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1988-12-11', 0, 0, 'kwingfat', '2015-07-01', 'kwf10', '2012-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS151036006241', 'Kim Dixon', 1, '+1 212-983-5005', 3, '595663810248755633', '2 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1989-01-22', 0, 0, 'dixki', '2013-08-15', 'kidixon', '2016-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS635830245026', '横山和真', 1, '+44 7023 094260', 1, '981732708332279943', 'No.47 Main building, 788 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1993-08-18', 0, 0, 'kyokoy10', '2009-11-08', 'yokoyama617', '2015-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS617706133913', '高安娜', 1, '+81 70-7383-9651', 2, '961379955206503284', '32F, 2-1-9 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1987-06-04', 0, 0, 'kaonna', '2001-12-07', 'kaoonna5', '2000-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS399261760699', 'Scott Morgan', 0, '+81 11-062-3269', 1, '878654116207331227', '日本札幌中央区宮の森四条六丁目1番10号33号室', '1996-12-06', 0, 0, 'smorgan', '2006-04-19', 'moscott', '2014-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS468106813786', '田青雲', 0, '+86 133-3697-1260', 1, '959969808629298577', '中国东莞坑美十五巷387号6栋', '1995-12-30', 0, 0, 'chingwantin', '2013-10-26', 'cwtin', '2002-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS114903039545', '石井光莉', 0, '+86 187-4444-8014', 0, '204490872573494407', 'No.33 building, 363 Ganlan Rd, Pudong, Shanghai, China', '1990-11-01', 0, 0, 'hikariishii1', '2008-08-09', 'ish', '2016-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS596159567298', '青木拓哉', 0, '+81 52-019-8014', 0, '683720523363249975', '43-kai, 3-19-14 Shimizu, Kita Ward, Nagoya, Japan', '1987-06-12', 0, 0, 'takuyaaoki1113', '2014-07-23', 'takuyaok2', '2005-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS338624681036', '楊明詩', 1, '+1 838-906-9848', 3, '999572387237291154', '596 State Street Suite 37, Albany, NY 12203, United States', '1985-11-15', 0, 0, 'yeungmings', '2021-12-05', 'mingsze17', '2004-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS923774694938', 'Juan Weaver', 1, '+81 90-8057-1279', 1, '374082589092213763', 'Rm. 43, 5-2-4 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1994-12-19', 0, 0, 'weaverjuan', '2011-12-08', 'wejuan2', '2004-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS471876088766', '徐震南', 1, '+1 330-334-7658', 4, '584718551967385057', '434 Collier Road Suite 7, Akron, OH 44320, United States', '1991-03-30', 0, 0, 'xu229', '2014-01-24', 'zhennanx', '2001-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS359866851330', '傅浩然', 1, '+81 70-0773-5182', 1, '933638233933002004', '11-kai, 5-4-4 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1994-02-12', 0, 0, 'fuhy', '2016-10-13', 'fuhy', '2001-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS147382481320', '余璐', 1, '+44 (1865) 68 7795', 3, '978847682046417510', 'Block 5, 76 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1988-10-18', 0, 0, 'luyu96', '2000-05-22', 'luy', '2011-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS389414514243', '安藤絢斗', 1, '+86 162-5163-2855', 2, '851857463486672680', '中国东莞环区南街二巷808号37室', '1997-07-25', 0, 0, 'andoayato', '2016-12-01', 'ayaando4', '2014-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS283790860900', 'Victor Stewart', 1, '+1 312-084-7676', 0, '324798301707848496', '838 Pedway Apt 19, Chicago, IL 60601, United States', '1989-05-02', 0, 0, 'victor1980', '2008-11-04', 'vicstewa', '2010-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS646558630308', '田詩涵', 1, '+86 143-8917-0216', 2, '575088825399550028', 'No.35 building, 409 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1991-09-19', 0, 0, 'ts1', '2000-11-15', 'shihantian', '2012-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS513513148929', '曹安琪', 0, '+86 151-9118-9363', 3, '212011977107030788', '6F, 58 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1985-12-17', 0, 0, 'caoanqi', '2002-10-10', 'anqicao', '2011-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS978193261080', 'Stephanie Stevens', 1, '+86 28-7716-4442', 1, '740442264002114229', '中国成都市成华区双庆路310号华润大厦23室', '1995-10-15', 0, 0, 'stephanie502', '2014-10-04', 'stephaniestevens', '2021-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS765818421537', '河野美咲', 1, '+86 21-355-8928', 3, '202820675457589645', '中国上海市浦东新区健祥路873号华润大厦47室', '1995-05-27', 0, 0, 'mkono64', '2016-01-21', 'misakikono4', '2008-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS203418046591', '邵秀英', 1, '+86 137-3615-3682', 1, '333830526083620796', 'No.18 building, 80 Ganlan Rd, Pudong, Shanghai, China', '1996-04-09', 0, 0, 'shxiuy48', '2000-06-01', 'sxiu', '2021-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS798173739331', '阿部紗良', 0, '+1 718-748-0936', 3, '935950730318723411', '515 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1998-05-29', 0, 0, 'asara7', '2007-08-12', 'sabe', '2000-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS689731155357', '曹慧琳', 1, '+86 21-847-8653', 3, '524636350299142428', '中国上海市黄浦区淮海中路129号华润大厦10室', '1986-02-03', 0, 0, 'wailam422', '2006-08-16', 'cwl', '2012-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS682970295677', 'Monica Fox', 1, '+44 (151) 679 7862', 0, '462556252235482586', 'No.11 Main building, 206 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1993-05-28', 0, 0, 'fox331', '2013-09-04', 'monicaf', '2014-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS194785489380', '曹睿', 0, '+81 66-624-1784', 1, '862091198931672673', '日本おおさかし平野区加美東四丁目9番16号1階', '1989-09-03', 0, 0, 'rcao03', '2001-05-03', 'caru', '2010-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS804976423204', '田村悠人', 0, '+86 20-648-4094', 4, '242410897595411608', 'Room 40, 23 Jiangnan West Road, Haizhu District, Guangzhou, China', '1995-03-19', 0, 0, 'yuto7', '2003-03-13', 'tamyuto', '2010-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS356564187787', '福田紗良', 0, '+1 614-609-6316', 0, '251427855468085537', '636 East Cooke Road Suite 44, Columbus, GA 43214, United States', '1995-06-20', 0, 0, 'fukusa', '2013-10-02', 'sarafuk1944', '2002-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS537290140661', '卢璐', 0, '+81 70-7143-3923', 3, '629363085983921085', '8-kai, 5 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-01-27', 0, 0, 'lulu', '2021-07-14', 'lulu', '2005-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS280559603175', '李世榮', 1, '+86 755-188-9388', 4, '851015948182231361', '中国深圳福田区景田东一街398号华润大厦37室', '1985-01-25', 0, 0, 'saiwinglee1031', '2006-06-09', 'lee514', '2015-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS082029103356', 'Clarence Mcdonald', 1, '+44 (121) 845 2582', 2, '273383978082327195', 'No.1 Main building, 386 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1993-10-18', 0, 0, 'clarencemcdonald92', '2020-10-19', 'clarencemcd', '2010-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS388953855829', '馮淑怡', 0, '+1 614-494-7975', 1, '399920954595738008', '861 Wicklow Road Apt 28, Columbus, GA 43204, United States', '1989-09-14', 0, 0, 'fungsy1007', '2004-06-22', 'sukyefung', '2014-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS096859311227', '伍永發', 1, '+81 3-1653-1439', 3, '221212005031778021', '日本東京品川区東五反田五丁目2番5号2号室', '1991-11-22', 0, 0, 'wingfat706', '2011-03-09', 'ngwf', '2008-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS679149762665', '大野明菜', 1, '+81 52-561-4161', 2, '696965921215339995', '日本なごやし北区清水三丁目19番8号4階', '1994-11-02', 0, 0, 'oakina8', '2009-10-27', 'onoakina2016', '2001-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS842972172126', 'Emily Rice', 0, '+86 139-2034-3378', 3, '021320040195811695', 'Room 32, CR Building, No.942, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-08-08', 0, 0, 'eri', '2014-09-10', 'emir', '2010-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS884086134012', '坂本詩乃', 0, '+86 10-704-6831', 1, '380202289449738158', 'Room 33, 455 Sanlitun Road, Chaoyang District, Beijing, China', '1993-07-15', 0, 0, 'shinosaka84', '2011-05-03', 'shinosakamoto', '2017-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS792091954416', '山崎美月', 1, '+44 (121) 704 5962', 0, '135842357430832373', 'Flat 30, 633 New Street, Birmingham, B2 4DB, United Kingdom', '1985-11-28', 0, 0, 'yamazakimits716', '2009-10-12', 'yamazmi', '2017-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS408412945123', 'Crystal Martinez', 0, '+86 20-332-3008', 1, '646112032629197383', '中国广州市白云区机场路棠苑街五巷166号华润大厦38室', '1988-01-31', 0, 0, 'crystalmartinez', '2015-09-25', 'martic', '2022-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS549794665642', '青木美羽', 0, '+44 (121) 361 6487', 2, '952464475534235606', 'Block 33, 297 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1994-06-26', 0, 0, 'miaoki1', '2006-03-04', 'miua1995', '2008-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS504585245749', '文頴思', 1, '+86 28-8037-5426', 1, '641866164781876943', 'Room 34, CR Building, 848 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1998-10-24', 0, 0, 'wingszeman1', '2022-01-07', 'wingszeman9', '2009-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS300701530803', '小林優奈', 1, '+81 80-5904-9934', 3, '676158468478394995', '日本ならし大和郡山市本庄町一丁目1番5号12階', '1985-02-16', 0, 0, 'kobayyuna1960', '2001-08-26', 'koby', '2004-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS931773537925', '黃玲玲', 1, '+44 (161) 678 0290', 3, '896610953873287154', 'Flat 48, 462 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1993-09-28', 0, 0, 'wongll', '2020-08-19', 'wongll', '2019-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS368034682413', '黎詩涵', 1, '+86 28-470-3367', 4, '376443104697433391', '中国成都市成华区玉双路6号228号17栋', '1998-05-16', 0, 0, 'shihali48', '2003-07-30', 'shihan7', '2012-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS910568435421', 'Roger Moreno', 1, '+86 197-2772-3474', 2, '690512038296033230', '中国深圳罗湖区清水河一路378号50室', '1986-03-12', 0, 0, 'rogermoreno9', '2006-03-13', 'moreroger15', '2001-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS036488168429', '孫志明', 1, '+86 755-384-7806', 1, '002124537500846672', '中国深圳龙岗区学园一巷638号2号楼', '1985-07-13', 0, 0, 'chiming1', '2012-02-17', 'hsuanchiming', '2016-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS065767385776', 'Norma Robertson', 0, '+81 11-017-7814', 1, '174242562240669434', '日本札幌白石区菊水三条五丁目2番4号29号室', '1992-04-30', 0, 0, 'robertson1952', '2000-02-08', 'robernor', '2006-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS257608132360', '崔仲賢', 1, '+81 74-164-8680', 4, '729793762913247631', '41F, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1992-09-12', 0, 0, 'cchungyin4', '2003-04-10', 'chchungyin86', '2001-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS684863874996', '邱杰宏', 1, '+86 134-4709-6327', 4, '306809205282276187', '中国北京市西城区复兴门内大街87号7室', '1994-11-17', 0, 0, 'qiujieh', '2004-09-08', 'jiehong6', '2020-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS203042568792', '狄玲玲', 0, '+1 213-765-4438', 1, '004103529497695906', '244 Grape Street Suite 41, Los Angeles, CA 90002, United States', '1991-06-19', 0, 0, 'llti', '2006-05-11', 'llt', '2015-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS894100483346', 'Leonard Campbell', 1, '+86 184-0683-4962', 2, '806171852296737127', 'Room 44, CR Building, 530 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1994-07-14', 0, 0, 'lecamp', '2015-02-17', 'leonardcam', '2009-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS279466839068', 'Heather Williams', 1, '+86 133-1163-8550', 0, '565692284815194779', '中国深圳龙岗区布吉镇西环路857号华润大厦33室', '1993-07-07', 0, 0, 'heawilliams', '2012-02-09', 'williamsh6', '2003-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS582444166636', '三浦架純', 0, '+1 213-896-5752', 2, '817264841574702746', '608 Sky Way Apartment 30, Los Angeles, CA 90043, United States', '1995-02-16', 0, 0, 'mkasu', '2019-05-28', 'miura99', '2013-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS474959242577', 'Billy Ramos', 1, '+81 90-3828-3363', 2, '017732223774261716', '23-kai, 5-19-18 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1999-02-07', 0, 0, 'ramosbilly88', '2011-07-09', 'billyramos', '2011-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS844037399338', '武秀英', 0, '+81 66-594-6050', 2, '803835387862390107', '日本おおさかし近江堂一丁目7番5号35階', '1985-07-18', 0, 0, 'wuxiuying', '2000-05-09', 'xiuywu', '2001-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS494914970840', '姚國明', 0, '+81 11-275-3988', 1, '061813395145503202', '10F, 5-2-3 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1998-07-10', 0, 0, 'yeowkwokming', '2003-07-06', 'yeow6', '2020-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS185533222615', '田岚', 0, '+86 755-7177-8746', 2, '850953428324088048', 'Room 19, 922 Shennan Ave, Futian District, Shenzhen, China', '1996-06-19', 0, 0, 'lanti1986', '2001-07-24', 'lantian', '2013-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS731586682024', 'John Scott', 0, '+86 760-029-1205', 3, '886555026813209252', '中国中山乐丰六路931号47栋', '1996-09-04', 0, 0, 'johnscott72', '2021-02-05', 'scottjo', '2006-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS048050869465', '熊秀英', 1, '+81 70-0424-0177', 1, '260931667421209257', '日本札幌中央区宮の森四条六丁目1番2号2階', '1991-01-10', 0, 0, 'xiongxiuying', '2016-04-28', 'xiuyx9', '2005-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS917402640131', '向宇宁', 0, '+86 197-7665-1750', 4, '296387347491236532', 'No.38 building, 526 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1996-09-23', 0, 0, 'yuninxiang', '2003-11-13', 'yuning89', '2016-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS110287684576', '三浦拓哉', 1, '+81 70-1792-1858', 4, '292652299696036488', '6-kai, 5-4-13 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-05-12', 0, 0, 'miuratakuya', '2008-10-06', 'miurata56', '2021-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS890941219608', '叶子异', 0, '+81 52-810-0544', 2, '256208917124303719', '日本なごやし北区楠味鋺三丁目80番20号25階', '1998-03-21', 0, 0, 'yez', '2013-02-03', 'yeziyi', '2000-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS380083861809', '上田結翔', 0, '+44 7855 117246', 1, '192171570791953738', 'Unit 5, Oxford Eco Centre, 41 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1993-06-02', 0, 0, 'yueda', '2000-11-18', 'ueda3', '2018-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS633159028353', '郭嘉伦', 0, '+81 3-2287-5766', 1, '950504537101408884', '39F, 1-5-11, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-01-03', 0, 0, 'guo1110', '2002-02-01', 'jg4', '2007-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS999218709113', 'Aaron Kim', 1, '+44 5270 835273', 2, '623563134525241723', 'Unit 22, Oxford Eco Centre, 802 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1988-11-18', 0, 0, 'aaronk10', '2008-01-11', 'aarkim114', '2010-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS434089790803', '小野拓哉', 0, '+44 7157 411216', 4, '846799607941529672', 'Block 20, 718 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1996-11-04', 0, 0, 'onotakuya', '2019-03-16', 'tono18', '2008-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS972586005220', '黃國賢', 1, '+81 52-416-0246', 3, '234377432340679030', 'Rm. 12, 20 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-07-30', 0, 0, 'wongky', '2009-08-15', 'wong1206', '2014-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS378290626040', 'Tina Miller', 0, '+81 3-0584-4163', 1, '427349675840191104', '日本東京港区東新橋一丁目5番10号41階', '1985-05-04', 0, 0, 'millertina51', '2011-05-10', 'miltina73', '2000-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS712961359998', 'Gloria Watson', 1, '+81 70-9488-4351', 4, '142607604074509620', 'Rm. 26, 1-5-3, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1993-07-26', 0, 0, 'watsong806', '2002-07-31', 'watsgloria3', '2014-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS479125053878', '橋本翼', 0, '+44 7238 396750', 2, '556943347761991386', 'No.5 Main building, 78 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1989-12-08', 0, 0, 'hashimototsuba', '2008-04-19', 'htsubasa', '2016-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS551717317552', 'Linda Ford', 0, '+86 160-4237-1469', 2, '611771282755366946', '中国上海市徐汇区虹桥路523号华润大厦36室', '1998-09-03', 0, 0, 'forlinda', '2012-04-17', 'lf10', '2011-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS211805420921', '卢宇宁', 0, '+86 177-0831-4335', 2, '553630832484277900', '中国成都市成华区双庆路935号44室', '1991-06-10', 0, 0, 'luyuni', '2005-03-01', 'yulu1220', '2002-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS497032500330', '樊榮發', 0, '+81 80-9035-9623', 1, '210550530037179106', '27-kai, 17 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1985-11-01', 0, 0, 'fan930', '2021-09-25', 'wffan', '2008-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS703954176049', '向俊宇', 1, '+81 80-1400-8473', 0, '542126149809260405', 'Rm. 9, 9 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-09-02', 0, 0, 'heung7', '2001-02-10', 'chunheu', '2022-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS464378340905', '石井美緒', 1, '+86 148-9593-6873', 4, '851656831348472490', 'Room 29, 218 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1990-02-04', 0, 0, 'ismio8', '2012-10-24', 'ishii07', '2008-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS456408793401', '森拓哉', 0, '+44 7512 320190', 0, '392788894033387293', 'Unit 18, Oxford Eco Centre, 919 Maddox Street, London, W1S 1PU, United Kingdom', '1998-04-21', 0, 0, 'takuya12', '2000-12-25', 'mtakuya9', '2003-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS526851337264', 'Victoria Richardson', 0, '+81 52-435-0494', 4, '206401448062016931', '1F, 17 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1994-07-04', 0, 0, 'richardsonv6', '2008-06-16', 'victoric313', '2018-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS812817655027', '鐘學友', 1, '+81 70-4805-4490', 0, '020734858122043618', '5F, 2-1-1 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1996-05-20', 0, 0, 'chunghokyau', '2008-04-26', 'hokyauchun', '2010-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS662073413089', 'Jack Reyes', 1, '+1 212-483-3425', 4, '333959972541507506', '122 Wooster Street Suite 12, New York, NY 10012, United States', '1995-04-21', 0, 0, 'reyesj', '2007-04-04', 'jr817', '2019-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS588071849212', '陆睿', 1, '+81 90-7296-9119', 1, '649815644114827410', '25F, 1 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-03-30', 0, 0, 'rui803', '2008-05-29', 'rulu', '2013-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS853748564414', '雷云熙', 1, '+1 212-861-5744', 1, '806485592302342474', '732 Bank Street Apt 40, New York, NY 10014, United States', '1985-05-22', 0, 0, 'yunxilei', '2008-07-13', 'leiyunxi', '2013-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS763810301683', '薛頴思', 0, '+81 70-5739-1887', 0, '474216493808594494', '日本おおさかし東住吉区東田辺三丁目27番5号41階', '1986-06-01', 0, 0, 'wssi', '2006-01-03', 'wingsze89', '2003-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS653328081949', 'Jennifer Adams', 1, '+81 52-611-2281', 1, '768488350340646327', '日本なごやし北区楠味鋺三丁目80番3号6階', '1997-03-28', 0, 0, 'adamsj4', '2005-07-06', 'adams803', '2011-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS998663885273', '伍發', 1, '+86 174-1340-6049', 4, '674310175043590013', 'Room 26, CR Building, 356 Sanlitun Road, Chaoyang District, Beijing, China', '1997-04-18', 0, 0, 'fatng8', '2008-08-10', 'fng1', '2007-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS990920859094', '邵國明', 0, '+81 66-643-0068', 1, '934309798103643916', 'Rm. 31, 2-1-14 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1992-11-24', 0, 0, 'siu1975', '2002-01-16', 'kwokmings', '2004-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS711012092686', 'Amy Graham', 0, '+81 70-4479-4642', 1, '961656655467069437', 'Rm. 19, 3-15-15 Ginza, Chuo-ku, Tokyo, Japan', '1992-08-29', 0, 0, 'graham2', '2013-12-17', 'graam5', '2012-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS722941115752', '井上光', 0, '+44 7415 378556', 1, '529747534262646856', 'Unit 32, Oxford Eco Centre, 100 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1992-10-28', 0, 0, 'ihikaru56', '2012-04-06', 'hikinoue2012', '2007-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS222063604580', 'Anita Harris', 1, '+86 755-0186-9975', 1, '222642618286270704', '中国深圳罗湖区蔡屋围深南东路759号华润大厦22室', '1996-06-03', 0, 0, 'ha8', '2006-12-13', 'aharri926', '2007-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS233655169442', 'Ricky Hamilton', 1, '+81 70-1396-5620', 4, '409455607742972726', '44F, 5-2-12 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1992-08-23', 0, 0, 'rickham', '2018-07-27', 'hamilricky303', '2019-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS061940891091', 'Frederick Garza', 0, '+44 (161) 591 3051', 2, '802094623541470757', 'Unit 39, Oxford Eco Centre, 728 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1985-10-20', 0, 0, 'gfrede', '2003-11-02', 'garza5', '2000-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS458507922335', '蔣麗欣', 0, '+86 190-9836-7126', 4, '218747267867235111', 'No.10 building, 72 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1991-10-25', 0, 0, 'claiyan3', '2001-04-16', 'laiyanc', '2015-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS860417913641', '阮惠敏', 0, '+1 330-316-0054', 3, '685331226461345712', '362 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1987-08-23', 0, 0, 'yuen1013', '2018-01-18', 'yuen42', '2006-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS492009161527', '熊云熙', 0, '+81 70-3356-4702', 0, '637287593057385446', 'Rm. 50, 9 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1991-08-07', 0, 0, 'xyunxi', '2020-11-19', 'xiongyun56', '2006-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS561519360179', 'Joanne Jones', 1, '+81 11-481-6207', 0, '886435687921344005', '49F, 13-3-14 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1993-04-14', 0, 0, 'joannejon', '2002-08-01', 'jojones929', '2014-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS331241294795', '崔晓明', 1, '+81 66-539-1083', 3, '830727051746724683', '日本おおさかし平野区加美東四丁目9番1号32階', '1998-09-04', 0, 0, 'cui1105', '2019-03-30', 'cuix', '2007-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS664888975201', 'Shawn Stone', 0, '+86 21-972-8105', 1, '607947905100821817', '中国上海市徐汇区虹桥路793号18号楼', '1995-12-04', 0, 0, 'stone8', '2000-07-02', 'stone9', '2014-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS182831839410', '渡辺七海', 0, '+1 212-985-8665', 3, '332801539983852926', '342 West Houston Street 3rd Floor, New York, NY 10014, United States', '1987-05-28', 0, 0, 'nasato703', '2013-12-17', 'nanamsato', '2006-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS321267009950', '梁國榮', 0, '+81 52-182-2107', 0, '686663316158999482', '日本なごやし瑞穂区河岸町四丁目20番4号24階', '1992-11-12', 0, 0, 'leungkw', '2010-05-18', 'kwokwing720', '2009-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS353897842235', '渡辺美緒', 1, '+44 (1865) 59 3785', 1, '015745802961387305', 'Block 3, 55 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1986-11-04', 0, 0, 'ms7', '2005-11-29', 'sato43', '2020-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS084636114538', '原愛梨', 0, '+86 168-3237-3477', 1, '631574937095766265', 'Room 20, CR Building, 756 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1998-05-16', 0, 0, 'airihara', '2009-08-10', 'hara17', '2015-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS600188264934', '元惠敏', 1, '+86 10-2154-2988', 3, '803960145272011335', '中国北京市西城区西長安街642号31号楼', '1990-10-28', 0, 0, 'yuenwaiman908', '2006-05-24', 'yuenwm', '2019-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS415817149831', '何嘉伦', 0, '+86 21-286-2153', 1, '420698638106353141', 'Room 2, CR Building, 619 Jianxiang Rd, Pudong, Shanghai, China', '1999-01-29', 0, 0, 'jialhe422', '2007-02-28', 'hejialun', '2014-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS964012715059', '龙璐', 1, '+81 11-276-6301', 2, '892642091658210407', '日本札幌厚別区上野幌一条二丁目1番6号49階', '1993-12-31', 0, 0, 'longlu', '2011-04-03', 'lulong8', '2001-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS153828799569', '區家玲', 1, '+81 11-413-6470', 1, '991539717233000173', '日本札幌中央区宮の森四条六丁目1番11号29階', '1986-07-12', 0, 0, 'klau416', '2016-10-07', 'aukaling', '2011-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS626321746264', '後藤詩乃', 1, '+1 718-914-2023', 1, '731087411782684482', '729 Bergen St Apt 37, Brooklyn, NY 11217, United States', '1989-04-19', 0, 0, 'goto1115', '2021-02-25', 'gotoshino322', '2014-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS998769055177', '金秀英', 0, '+86 173-0525-0411', 2, '606061451332739743', '中国深圳罗湖区清水河一路449号17栋', '1992-01-03', 0, 0, 'xiuyingjin8', '2014-05-25', 'jx725', '2019-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS145061212202', '毛家玲', 1, '+44 5593 977044', 2, '123619240644095420', 'Unit 40, Oxford Eco Centre, 341 Hanover St, Liverpool, L1 4AF, United Kingdom', '1998-12-07', 0, 0, 'klm1944', '2005-11-30', 'klm', '2004-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS897083830836', '劉家強', 0, '+86 133-9031-3493', 1, '844921446106255830', 'Room 14, CR Building, 677 028 County Rd, Yanqing District, Beijing, China', '1994-11-10', 0, 0, 'kklau12', '2004-08-08', 'kkla1958', '2011-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS022423457256', 'William Robertson', 1, '+1 718-930-7473', 3, '490450797402626550', '425 Flatbush Ave Suite 15, Brooklyn, NY 11225, United States', '1989-04-30', 0, 0, 'william505', '2005-04-17', 'robertsonw', '2007-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS060560716898', '萬梓軒', 0, '+86 130-8143-6972', 0, '404414058990904925', '中国东莞珊瑚路833号18号楼', '1988-04-17', 0, 0, 'meth1', '2000-11-14', 'thmeng912', '2015-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS222331417919', '韩岚', 0, '+44 5966 001391', 2, '981805404399708411', 'No.17 Main building, 250 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1985-11-16', 0, 0, 'lanhan', '2007-11-10', 'lanh1029', '2002-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS243724579857', '上田葉月', 0, '+1 330-825-3031', 0, '657821474155892689', '129 Collier Road 3rd Floor, Akron, OH 44320, United States', '1988-01-12', 0, 0, 'ueda1024', '2011-11-10', 'uedahazuki', '2010-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS127992454908', '石田七海', 1, '+44 7524 066919', 1, '048278758634344133', 'No.10 Main building, 818 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1997-10-31', 0, 0, 'nanami1023', '2014-01-18', 'nanami1116', '2008-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS116022282143', '任青雲', 0, '+81 66-940-2493', 1, '275248600843358866', '日本おおさかし東住吉区東田辺三丁目27番17号32階', '1992-01-02', 0, 0, 'yamcw', '2021-06-03', 'yamcw', '2008-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS814803843248', '傅力申', 1, '+1 312-517-9702', 1, '267021791553592084', '308 North Michigan Ave Suite 40, Chicago, IL 60611, United States', '1996-08-04', 0, 0, 'fuls', '2005-02-04', 'liksun829', '2008-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS988493486425', 'Anita Dixon', 1, '+81 70-7769-5593', 2, '395219393354975259', '23-kai, 1-7-19 Saidaiji Akodacho, Nara, Japan', '1990-02-21', 0, 0, 'anitd', '2016-11-29', 'adixon', '2006-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS887664840937', '小野詩乃', 1, '+81 90-4097-7500', 4, '113414112817983122', 'Rm. 36, 5-2-19 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-07-22', 0, 0, 'oshino', '2020-06-27', 'onoshino', '2001-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS014477398059', '段岚', 1, '+81 70-5038-6418', 2, '227863445085383042', '日本おおさかし西成区天神ノ森二丁目1番8号1階', '1996-10-08', 0, 0, 'duanlan00', '2004-05-10', 'duanla7', '2000-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS939949994560', '顾子韬', 0, '+1 330-801-7955', 0, '832225690470607000', '79 Collier Road Suite 34, Akron, OH 44320, United States', '1990-12-21', 0, 0, 'zigu', '2010-08-28', 'zitaog6', '2016-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS610549025699', '麥學友', 1, '+44 (1865) 19 2458', 0, '367333268185552296', 'Block 50, 80 Park End St, Oxford, OX1 1JD, United Kingdom', '1989-05-10', 0, 0, 'makhokyau819', '2000-08-16', 'mak228', '2015-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS261283762150', '山口海斗', 0, '+81 52-755-1030', 0, '928175074209891651', '日本なごやし北区清水三丁目19番16号2号室', '1988-10-14', 0, 0, 'ky5', '2007-03-27', 'yamagk', '2012-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS780437920556', '朱致远', 1, '+86 151-3064-1205', 4, '876661096654925287', '中国东莞东泰五街512号34栋', '1990-07-31', 0, 0, 'zzhiy', '2008-03-09', 'zhiyuan1117', '2002-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS672500861480', 'Alexander Hayes', 1, '+81 80-8095-8549', 1, '735416406056879640', '日本札幌厚別区上野幌一条二丁目1番6号40階', '1997-02-21', 0, 0, 'alexanderhay1026', '2011-09-02', 'alexanderh7', '2020-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS726115445177', '竹内結翔', 1, '+81 70-1976-0601', 3, '107369745957240210', '18-kai, 1-7-10 Omido, Higashiosaka, Osaka, Japan', '1986-07-04', 0, 0, 'yuito95', '2002-03-31', 'yuittakeuchi1971', '2019-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS702059156012', '杨震南', 1, '+86 28-9493-4042', 2, '894590497700850487', '中国成都市锦江区红星路三段948号1号楼', '1998-02-14', 0, 0, 'zhennany2', '2000-09-20', 'zya', '2004-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS384979161762', 'Marcus Cruz', 1, '+86 10-6880-4946', 0, '625005317798065235', '中国北京市东城区东单王府井东街520号29楼', '1997-05-22', 0, 0, 'crumarcus', '2002-08-12', 'marcr', '2018-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS048527168243', '陆璐', 1, '+86 769-428-4485', 1, '725094566861871820', '46F, 885 Dongtai 5th St, Dongguan, China', '1986-06-29', 0, 0, 'lulu622', '2021-12-19', 'lulu', '2003-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS119711623703', '莫杰宏', 1, '+44 (1865) 93 0504', 2, '766319925791462382', 'Block 48, 269 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1998-09-23', 0, 0, 'moj', '2017-06-26', 'jmo3', '2000-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS359271015165', '蔡慧敏', 0, '+86 153-8733-7852', 1, '627631604847689730', '中国深圳龙岗区学园一巷720号华润大厦48室', '1988-06-13', 0, 0, 'wmchoi', '2004-09-27', 'cwm', '2013-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS776727198304', '甘力申', 0, '+81 80-4545-5511', 0, '473185856961865212', '日本札幌中央区宮の森四条六丁目1番17号37号室', '1986-07-18', 0, 0, 'kliksun711', '2012-06-25', 'kam1961', '2001-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS602004634590', '邵頴璇', 0, '+81 70-0955-0125', 2, '181902026871247539', '日本おおさかし東住吉区東田辺三丁目27番8号17号室', '1990-07-13', 0, 0, 'siu928', '2018-10-05', 'swingsuen525', '2022-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS594727764435', '森田大和', 0, '+81 80-2996-3486', 0, '436136308717409953', '日本なごやし北区楠味鋺三丁目80番5号42階', '1995-02-06', 0, 0, 'yamorita79', '2000-07-02', 'ymorita', '2001-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS602028791157', 'Diane Smith', 0, '+44 7983 451116', 2, '053525319896488223', 'Flat 6, 935 Hanover Street, London, W1S 1YD, United Kingdom', '1985-01-21', 0, 0, 'smithd04', '2003-05-05', 'smd8', '2020-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS299255943285', '孟秀英', 0, '+86 21-6076-2245', 1, '739813500587011723', '中国上海市闵行区宾川路738号35号楼', '1996-11-19', 0, 0, 'meng705', '2014-10-31', 'mexiuying72', '2005-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS566143393878', '佐野結翔', 1, '+86 168-4084-8196', 2, '542077109561400705', '中国深圳福田区景田东一街433号19室', '1998-05-19', 0, 0, 'yuitosano', '2014-07-08', 'syuito626', '2001-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS573508594611', 'Samuel Johnson', 0, '+86 190-0858-2700', 3, '167681620388657042', '中国东莞珊瑚路288号华润大厦43室', '1998-05-08', 0, 0, 'samuel8', '2017-08-05', 'samueljohnson', '2009-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS457763200850', 'Bryan Green', 0, '+81 70-1563-4736', 0, '529290108100518595', '39F, 13-3-4 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1989-02-20', 0, 0, 'brgreen', '2007-08-26', 'bgr', '2012-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS742495917373', 'Deborah Dixon', 0, '+81 52-624-6312', 3, '455941758811610842', 'Rm. 14, 19 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1999-01-31', 0, 0, 'deborahd94', '2013-10-29', 'dixond', '2000-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS430866385534', '蘇力申', 0, '+44 7080 611676', 1, '148056382578373127', 'Unit 29, Oxford Eco Centre, 351 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1989-03-17', 0, 0, 'liksso10', '2019-05-03', 'soliksun', '2018-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS230342264685', '羅惠妹', 1, '+86 10-9831-3106', 2, '139082746843052330', '中国北京市东城区东单王府井东街297号华润大厦15室', '1989-11-05', 0, 0, 'huimeilo', '2015-12-12', 'lohuimei', '2004-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS563189204706', '李發', 0, '+86 139-3735-3214', 2, '155313618918446114', 'No.40 building, 287 Dong Zhi Men, Dongcheng District, Beijing, China', '1991-04-01', 0, 0, 'lfa9', '2013-08-17', 'lee1958', '2008-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS573781288858', '黎思妤', 0, '+81 70-9911-6703', 2, '683883523022562012', '日本ならし大和郡山市本庄町一丁目1番12号23階', '1990-03-03', 0, 0, 'szeyu98', '2006-07-12', 'laiszeyu', '2014-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS701538779659', '曾頴璇', 1, '+1 718-195-6611', 1, '224149887680081441', '253 1st Ave Apt 27, Brooklyn, NY 11220, United States', '1990-12-05', 0, 0, 'wingsuen405', '2019-05-28', 'wst', '2020-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS736329656992', '傅潤發', 1, '+44 (161) 779 7891', 2, '093185644507308288', 'Flat 30, 787 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-11-11', 0, 0, 'yunfu804', '2005-06-15', 'yunffu5', '2015-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS434180857088', '林翼', 0, '+81 80-8569-8560', 2, '506300326782236494', '31-kai, 5-2-8 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-03-09', 0, 0, 'tsubasa1018', '2011-06-28', 'tsubasa729', '2012-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS629475692879', '彭德華', 0, '+86 755-499-9568', 0, '891870782889675788', 'Room 15, 506 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1988-12-14', 0, 0, 'takwahpang2008', '2016-09-12', 'pangtakwah106', '2001-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS687832158104', '韓嘉欣', 0, '+86 755-173-6816', 4, '201439938959811821', '中国深圳罗湖区田贝一路109号17室', '1986-03-10', 0, 0, 'haky', '2011-11-07', 'hanky', '2013-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS583514744296', 'Alfred Stephens', 0, '+81 11-004-2751', 1, '956371261405473594', 'Rm. 43, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-11-04', 0, 0, 'stephalfred', '2004-04-30', 'stephens9', '2015-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS610463387978', 'Anne Wright', 0, '+86 28-899-0823', 3, '661033756677183798', '中国成都市成华区玉双路6号559号华润大厦49室', '1996-06-17', 0, 0, 'annewright', '2009-06-20', 'wrighanne', '2012-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS618825846432', '工藤優奈', 0, '+81 66-328-0574', 1, '293123428769319954', '41-kai, 3-27-9 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1991-08-17', 0, 0, 'kudo1213', '2007-01-04', 'yunk8', '2001-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS774277885823', '市川葵', 0, '+86 145-6942-2180', 1, '324209149226998275', '中国中山紫马岭商圈中山五路87号2栋', '1997-04-19', 0, 0, 'aichikawa', '2014-07-06', 'ichikawaaoi', '2008-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS766017383727', '前田拓哉', 0, '+1 614-328-3419', 0, '237989039976786899', '825 East Cooke Road Apartment 29, Columbus, GA 43214, United States', '1993-09-07', 0, 0, 'maedatakuya', '2001-11-14', 'takmaeda', '2013-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS574040797976', '藤田光', 1, '+86 769-465-7531', 0, '771427942223582897', '中国东莞环区南街二巷721号49楼', '1994-11-29', 0, 0, 'fhikaru8', '2002-09-07', 'fujita1', '2021-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS087138762865', '宮崎光', 0, '+44 5453 910765', 1, '800115873594133912', 'Block 16, 193 Redfern St, Liverpool, L20 8JB, United Kingdom', '1991-03-13', 0, 0, 'hikarumiyazaki', '2017-05-29', 'mhi405', '2004-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS361267168871', '文朝偉', 1, '+81 90-0397-5431', 3, '529283699870337778', '40F, 2-1-1 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1990-12-18', 0, 0, 'macw2', '2020-01-09', 'manchiu', '2005-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS859397127907', 'Michael Kennedy', 0, '+86 185-0595-1168', 1, '870144699047700274', 'Room 46, 472 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1991-01-12', 0, 0, 'michael2', '2002-06-05', 'kenmich', '2009-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS999138414120', '清水愛梨', 1, '+44 (151) 225 2648', 2, '391691896068674378', 'No.40 Main building, 828 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1985-08-04', 0, 0, 'shimair87', '2007-10-29', 'airi6', '2016-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS145654660030', 'Ricky Foster', 1, '+81 3-5562-2431', 0, '976160971959765370', '49F, 1-5-8, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1987-02-01', 0, 0, 'fricky', '2014-04-03', 'rfos10', '2018-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS378402157137', '唐安琪', 1, '+86 151-1825-6279', 0, '179942587883308083', '中国深圳福田区深南大道457号2栋', '1986-06-16', 0, 0, 'anqtan', '2002-05-10', 'tanganqi', '2018-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS538547153715', 'Allen Palmer', 1, '+86 195-6616-6932', 1, '390122537044886301', '中国成都市锦江区人民南路四段423号华润大厦17室', '1988-07-16', 0, 0, 'allpalm', '2013-08-29', 'allenpalmer', '2009-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS979331040941', '袁詩涵', 0, '+86 168-1661-4802', 0, '213669552385831838', 'Room 13, CR Building, 293 Dongtai 5th St, Dongguan, China', '1985-04-17', 0, 0, 'yuanshihan', '2005-05-13', 'yuans1957', '2013-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS114979382833', '丁云熙', 1, '+44 (116) 935 2211', 4, '012029162596369773', 'Unit 15, Oxford Eco Centre, 720 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1992-01-13', 0, 0, 'ding5', '2003-04-03', 'yunxi6', '2013-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS800682803759', '韦璐', 0, '+81 80-7643-5939', 0, '207308944798990485', 'Rm. 20, 2-3-6 Yoyogi, Shibuya-ku, Tokyo, Japan', '1996-02-29', 0, 0, 'lu4', '2010-10-11', 'weilu', '2021-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS788414050589', '严睿', 1, '+1 838-481-9475', 1, '496131503335132620', '684 Central Avenue Apt 38, Albany, NY 12206, United States', '1993-07-23', 0, 0, 'yar5', '2013-05-12', 'yanrui', '2020-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS396124749074', '周裕玲', 0, '+81 3-4016-9791', 1, '702399274357715225', '26-kai, 1-5-13, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-12-06', 0, 0, 'chyuling', '2012-06-10', 'ylchow', '2009-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS739952795849', '三浦翼', 1, '+86 755-0809-5537', 3, '644214741654498296', 'No.21 building, 620 Jingtian East 1st St, Futian District, Shenzhen, China', '1995-05-17', 0, 0, 'miuratsubasa1985', '2002-06-27', 'miurat', '2006-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS001535098782', '和田瑛太', 1, '+86 190-6997-9677', 4, '872216912749373425', '中国北京市房山区岳琉路403号华润大厦28室', '1989-07-18', 0, 0, 'wada1980', '2011-01-14', 'eiwada', '2000-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS683384348008', 'Steven Rivera', 1, '+1 718-013-7009', 4, '213180240673186499', '314 1st Ave Apartment 2, Brooklyn, NY 11220, United States', '1995-04-20', 0, 0, 'steriver6', '2020-07-11', 'srive', '2013-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS759773454535', '黄云熙', 0, '+81 70-5679-6587', 2, '245311315849759974', '25F, 3-15-11 Ginza, Chuo-ku, Tokyo, Japan', '1993-06-14', 0, 0, 'yuhuang', '2005-01-08', 'huangyunxi7', '2004-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS397025796366', '邱璐', 0, '+81 52-557-2016', 3, '808137011444671342', '4-kai, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1999-01-26', 0, 0, 'lu6', '2018-10-15', 'qiulu714', '2000-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS777652096100', 'Mary Hawkins', 0, '+81 90-8240-6521', 0, '729938726838222680', '日本おおさかし近江堂一丁目7番7号32号室', '1991-01-19', 0, 0, 'mary2', '2020-03-02', 'mhaw', '2020-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS894087431779', '太田健太', 1, '+1 212-108-4086', 2, '856577367068747852', '280 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1986-01-15', 0, 0, 'kentaota', '2005-01-24', 'ota7', '2017-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS626518629410', '高詠詩', 0, '+44 5135 806795', 3, '899355014678491017', 'No.39 Main building, 234 Regent Street, London, W1B 2LX, United Kingdom', '1994-09-05', 0, 0, 'wskao8', '2017-02-18', 'wingsze1', '2003-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS320133151842', 'Emily Moreno', 1, '+81 80-8511-2974', 0, '489019317531899808', '日本おおさかし東住吉区東田辺三丁目27番9号47階', '1998-04-24', 0, 0, 'em306', '2022-02-11', 'emo', '2001-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS797285181115', '鄺家文', 0, '+81 80-3867-8440', 2, '642103413901052910', '日本札幌厚別区上野幌一条二丁目1番20号19階', '1992-05-06', 0, 0, 'kaman8', '2012-05-18', 'kmkwong1013', '2004-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS217775477146', '上野百花', 0, '+81 80-2054-5700', 2, '044911212056464598', '日本おおさかし東住吉区東田辺三丁目27番5号42号室', '1988-04-20', 0, 0, 'momoka614', '2006-08-15', 'momueno', '2003-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS742046389106', '山崎樹', 1, '+81 80-3272-0285', 3, '579683127886936175', '28-kai, 3-9-1 Gakuenminami, Nara, Japan', '1987-06-06', 0, 0, 'ityamazaki', '2015-06-25', 'yitsuk', '2001-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS359847312634', '佐野絢斗', 1, '+86 143-6793-1819', 3, '756206896659751031', 'No.3 building, 905 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1986-04-20', 0, 0, 'as3', '2004-10-21', 'ayato4', '2014-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS469928562984', 'Janet Ross', 1, '+86 134-8988-5315', 2, '728661207904355150', '中国上海市闵行区宾川路351号华润大厦16室', '1990-08-25', 0, 0, 'jros', '2018-12-10', 'janetr', '2011-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS593398540063', 'Joanne Rose', 1, '+86 755-160-5540', 0, '684153993438007061', 'Room 19, 536 Jingtian East 1st St, Futian District, Shenzhen, China', '1994-10-31', 0, 0, 'joanne601', '2005-03-01', 'rj8', '2009-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS859363845831', 'Jacob Butler', 1, '+1 718-345-0685', 3, '115315855631676582', '472 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1993-10-29', 0, 0, 'jbu1974', '2008-05-13', 'butjaco', '2011-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS314454884146', '田志遠', 0, '+86 10-0014-7891', 1, '748375854090726277', 'Room 34, CR Building, 177 Dong Zhi Men, Dongcheng District, Beijing, China', '1992-03-03', 0, 0, 'chiyuen1', '2018-11-18', 'cytin', '2008-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS582558294253', 'Allen Grant', 0, '+86 10-2194-9038', 4, '913372346570907322', '中国北京市海淀区清河中街68号429号25号楼', '1997-08-29', 0, 0, 'granallen', '2007-06-13', 'allengra83', '2003-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS361468408141', 'Walter Grant', 0, '+81 52-670-5046', 0, '767792592315635597', 'Rm. 18, 3-19-11 Shimizu, Kita Ward, Nagoya, Japan', '1992-07-27', 0, 0, 'wgra10', '2021-11-19', 'gwal', '2012-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS657791964174', '洪仲賢', 0, '+81 3-1600-5667', 4, '874060371665276329', '日本東京港区東新橋一丁目5番1号2階', '1986-03-31', 0, 0, 'cyhu16', '2008-06-06', 'chungyin809', '2013-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS860569743478', 'Sean Wright', 1, '+81 90-2073-5024', 2, '123849289038162413', 'Rm. 33, 1-7-4 Omido, Higashiosaka, Osaka, Japan', '1992-11-25', 0, 0, 'wrsean', '2004-09-25', 'seanwright516', '2017-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS433545113274', '岡田健太', 1, '+81 80-0415-1971', 3, '693580704361949409', '日本東京品川区東五反田五丁目2番6号31階', '1987-09-09', 0, 0, 'okada1999', '2010-03-16', 'okadaken1998', '2020-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS528890155795', '石井湊', 1, '+44 7915 592789', 1, '206788445716155418', 'Unit 21, Oxford Eco Centre, 927 Mosley St, Manchester, M2 3AQ, United Kingdom', '1986-02-28', 0, 0, 'isminat', '2015-12-28', 'minatoishii20', '2014-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS866677311192', '高木悠人', 0, '+44 5271 564280', 1, '616225605649663095', 'Flat 23, 420 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-03-09', 0, 0, 'takagyuto9', '2017-12-07', 'takagiyuto2020', '2006-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS329460951664', '金子陸', 1, '+86 10-6797-8307', 3, '965320806601569770', 'Room 44, 826 Yueliu Rd, Fangshan District, Beijing, China', '1989-10-08', 0, 0, 'kanekriku01', '2017-10-16', 'rikukaneko402', '2019-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS408423148849', '中川葉月', 1, '+44 5261 147432', 2, '750139478259159447', 'Flat 42, 167 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-12-08', 0, 0, 'nakagawa1960', '2003-05-26', 'hn2000', '2012-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS111611742622', '苏安琪', 1, '+1 718-900-2288', 2, '229598983674697730', '484 Flatbush Ave Apt 3, Brooklyn, NY 11225, United States', '1988-11-27', 0, 0, 'anqi1969', '2001-04-22', 'anqisu50', '2012-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS655574196969', '野村湊', 1, '+86 10-443-1577', 3, '329562893103540221', '中国北京市房山区岳琉路862号5号楼', '1998-12-01', 0, 0, 'mn56', '2017-09-12', 'nminato', '2018-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS709231100610', '何秀文', 0, '+1 614-549-7379', 3, '295349418761732749', '928 Tremont Road Apartment 36, Columbus, GA 43212, United States', '1988-10-05', 0, 0, 'sauman8', '2001-04-12', 'hsauman03', '2003-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS018010026766', 'Clarence Ferguson', 1, '+1 213-106-3256', 3, '894324323923460371', '960 Alameda Street Apt 46, Los Angeles, CA 90002, United States', '1995-03-16', 0, 0, 'fergusonclare10', '2005-01-26', 'claferguson9', '2001-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS128506580343', '房天樂', 0, '+86 192-3929-1876', 3, '134986550437055959', '23F, 517 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1996-06-08', 0, 0, 'fongtinlok123', '2021-01-29', 'tlf417', '2018-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS563209724606', '戚曉彤', 0, '+1 718-978-4432', 1, '731512252621240487', '543 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1992-09-20', 0, 0, 'chichiutung', '2017-10-22', 'chihiutung', '2004-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS123817660458', '唐秀英', 0, '+86 760-337-9300', 0, '368617346593641435', 'Room 15, 77 Lefeng 6th Rd, Zhongshan, China', '1998-04-21', 0, 0, 'tang76', '2010-02-26', 'txiuying', '2002-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS386538850729', '方杰宏', 1, '+81 52-180-7989', 1, '075596202292293576', '3F, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1989-07-29', 0, 0, 'fangj', '2014-04-13', 'jiehong8', '2007-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS598062304643', 'Victoria Kennedy', 0, '+86 175-9894-0444', 1, '539016720859334812', '中国深圳龙岗区布吉镇西环路593号35室', '1989-05-25', 0, 0, 'vkennedy5', '2014-11-07', 'victoriakennedy', '2008-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS661836392870', 'April Dixon', 1, '+81 80-1658-3734', 2, '466742413356321110', '日本なごやし瑞穂区河岸町四丁目20番1号32号室', '1989-08-26', 0, 0, 'dixapril', '2019-07-05', 'dixon10', '2015-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS408616145567', '梁力申', 1, '+86 165-3087-5846', 1, '021361305873047415', '中国上海市黄浦区淮海中路8号38号楼', '1991-10-18', 0, 0, 'liksun00', '2014-05-08', 'liksun9', '2017-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS198337196727', '龚宇宁', 0, '+44 (1223) 68 9522', 3, '129269740992239784', 'Flat 41, 771 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1990-02-23', 0, 0, 'gonyu', '2019-09-11', 'yuning3', '2018-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS773921662491', '邵頴璇', 0, '+1 838-761-0148', 0, '857141428957630065', '846 Broadway Apartment 22, Albany, NY 12207, United States', '1986-05-05', 0, 0, 'sws', '2017-04-21', 'wingsuen704', '2019-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS918613575764', '高明', 0, '+44 7635 659724', 3, '003216944118511294', 'Unit 30, Oxford Eco Centre, 234 New Street, Birmingham, B2 4DB, United Kingdom', '1986-04-17', 0, 0, 'mingk', '2020-01-14', 'kao4', '2012-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS623752378508', '渡部架純', 1, '+86 20-874-5530', 2, '525141500665198227', 'Room 43, 442 Tianhe Road, Tianhe District, Guangzhou, China', '1990-03-22', 0, 0, 'kasumiwa516', '2021-12-07', 'kwatanabe1995', '2008-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS744498131903', '邹子异', 1, '+81 3-5326-7684', 1, '904680678287096357', '12-kai, 2-3-1 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-07-02', 0, 0, 'ziyzou1130', '2005-05-05', 'zoziyi', '2020-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS244026300629', '青木湊', 0, '+81 66-869-6622', 3, '085346670996357479', '日本おおさかし平野区加美東四丁目9番8号42階', '1996-10-20', 0, 0, 'aokimin58', '2000-12-06', 'aminato', '2007-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS966700461402', '程杰宏', 0, '+1 718-316-3369', 1, '942552413509130237', '814 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1991-12-27', 0, 0, 'jic2', '2005-04-08', 'jiehong6', '2002-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS747047949085', '高田蓮', 0, '+86 20-5355-8020', 3, '822997954694208666', 'No.8 building, 860 Jiangnan West Road, Haizhu District, Guangzhou, China', '1992-08-05', 0, 0, 'tre', '2002-05-28', 'rtakada', '2014-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS726030323268', 'Shirley Allen', 0, '+81 80-9923-3765', 2, '833489757760160726', 'Rm. 18, 5-4-2 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-07-23', 0, 0, 'shirley9', '2014-09-27', 'shirley6', '2018-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS994170886208', 'Jamie Garza', 0, '+44 5569 774274', 3, '210116093960046621', 'Unit 9, Oxford Eco Centre, 430 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1995-04-27', 0, 0, 'gajam', '2002-08-27', 'gj1', '2008-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS347985309102', '斎藤一輝', 0, '+81 52-108-7294', 3, '260646071298012114', '日本なごやし熱田区千年二丁目5番4号50階', '1986-03-28', 0, 0, 'saito8', '2011-01-25', 'isaito', '2013-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS757334489741', '河野涼太', 0, '+86 199-7898-6078', 3, '036714341569612758', '8F, 917 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1996-06-26', 0, 0, 'ryota57', '2010-08-06', 'kono904', '2010-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS358052719897', '内田悠人', 0, '+1 838-233-2695', 3, '041652866329342191', '783 Lark Street Apartment 20, Albany, NY 12210, United States', '1985-10-01', 0, 0, 'uchidayu', '2010-11-28', 'yutouchid601', '2013-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS271061167811', '廖岚', 0, '+1 213-875-4133', 1, '263727453396617356', '464 S Broadway Apartment 37, Los Angeles, CA 90015, United States', '1993-10-29', 0, 0, 'liao8', '2021-07-14', 'liaolan', '2004-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS712230319556', 'Eddie Black', 0, '+86 769-078-2120', 1, '189023940488848743', '中国东莞坑美十五巷572号华润大厦37室', '1993-01-28', 0, 0, 'edblack', '2009-03-27', 'blackeddie8', '2001-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS973325052973', '松井美月', 0, '+1 718-131-5542', 2, '048314532104457185', '61 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1990-09-08', 0, 0, 'mm69', '2001-07-14', 'mitsukimatsui', '2013-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS290121394348', '韦云熙', 1, '+86 10-691-0357', 1, '852898614419144820', '中国北京市房山区岳琉路754号10栋', '1998-10-29', 0, 0, 'weiyunxi', '2003-12-19', 'weiyunx', '2001-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS259302301329', 'Julia Jordan', 1, '+81 70-8495-3326', 2, '464617567958189946', 'Rm. 32, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1987-08-06', 0, 0, 'julia1009', '2021-05-17', 'joju', '2011-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS163424605967', '宣嘉欣', 0, '+86 174-1648-4749', 3, '865816338499709127', '中国深圳罗湖区蔡屋围深南东路589号49室', '1995-01-03', 0, 0, 'hsukaryan', '2012-02-25', 'hsuanky05', '2007-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS335798939262', '佐々木花', 1, '+86 187-2474-1244', 3, '438118251603790897', 'No.9 building, 950 Tianhe Road, Tianhe District, Guangzhou, China', '1985-02-14', 0, 0, 'sasakihana', '2000-01-16', 'hans', '2005-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS204424793600', '山下陽太', 1, '+86 10-2934-6606', 0, '883272240568822870', '中国北京市海淀区清河中街68号432号20室', '1988-02-22', 0, 0, 'yamashitayot1119', '2002-10-02', 'yamashita1940', '2003-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS666267564902', 'Jack Flores', 0, '+44 7069 791486', 3, '630718662292958942', 'Unit 39, Oxford Eco Centre, 869 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1986-08-26', 0, 0, 'jackflores212', '2013-05-04', 'floj', '2003-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS080853953061', '黎家玲', 1, '+81 66-928-9895', 2, '789706970401323569', '50F, 4-9-18 Kamihigashi, Hirano Ward, Osaka, Japan', '1994-11-05', 0, 0, 'laikl', '2018-03-04', 'lai1968', '2004-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS710870788863', '黎子异', 1, '+44 5233 207330', 3, '244911136675554867', 'Unit 28, Oxford Eco Centre, 601 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1985-03-16', 0, 0, 'ziyi10', '2002-05-22', 'li4', '2000-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS147939629545', '河野悠人', 1, '+81 52-338-9651', 2, '913842439743927680', '日本なごやし北区清水三丁目19番4号3階', '1992-04-09', 0, 0, 'konoy', '2012-10-12', 'yk8', '2011-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS638579319750', '杉山舞', 1, '+44 5465 160805', 1, '551619718731978193', 'Block 6, 924 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1986-08-23', 0, 0, 'masu03', '2013-07-17', 'masugiyama818', '2003-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS596430626803', '中野玲奈', 0, '+81 3-0469-4918', 4, '396014201309841621', '日本東京中央区銀座三丁目12番4号14階', '1989-10-03', 0, 0, 'nakanrena1968', '2010-02-05', 'renan', '2010-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS473666698857', 'Frank Edwards', 1, '+86 10-7267-0016', 1, '350197355645218210', '28F, 794 Sanlitun Road, Chaoyang District, Beijing, China', '1989-06-22', 0, 0, 'edwards1964', '2009-10-16', 'edwarf520', '2021-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS715943898147', '張世榮', 1, '+81 70-7312-1496', 3, '444233930016818050', '日本おおさかし東住吉区東田辺三丁目27番4号41階', '1987-09-09', 0, 0, 'chesw', '2005-11-28', 'chsw1003', '2001-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS268942997054', 'Judith Jackson', 0, '+81 3-8559-5035', 3, '234263887386855885', '3F, 3-15-12 Ginza, Chuo-ku, Tokyo, Japan', '1988-06-22', 0, 0, 'judithjackson', '2013-08-16', 'judij', '2005-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS253679974127', '酒井桜', 0, '+86 134-5231-4366', 4, '369940818870623120', 'No.46 building, 478 Shanhu Rd, Dongguan, China', '1993-12-06', 0, 0, 'sakai528', '2009-06-13', 'sakaisakura3', '2020-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS808750820194', '太田詩乃', 0, '+1 212-241-3520', 1, '598922683246203615', '914 Bank Street Apt 28, New York, NY 10014, United States', '1997-02-03', 0, 0, 'otshino8', '2006-09-29', 'shinoot', '2019-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS804915132260', '藤原舞', 1, '+86 769-980-9087', 2, '981611023629320742', '中国东莞东泰五街236号2栋', '1996-06-19', 0, 0, 'maf81', '2000-11-17', 'mai05', '2005-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS882362312448', '吳家文', 1, '+86 755-7447-9891', 2, '893126529603238208', 'No.24 building, 45 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1986-04-25', 0, 0, 'nkaman', '2013-10-11', 'ngkaman', '2008-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS541434925548', '朱云熙', 1, '+86 20-6243-5041', 2, '401387039750094807', 'No.47 building, 722 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1985-03-11', 0, 0, 'zhyunxi2', '2020-02-02', 'yunxizhu', '2007-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS480533306732', 'Alice Castillo', 0, '+81 11-772-5565', 1, '546444060094420958', '日本札幌豊平区豊平三条十三丁目3番5号27号室', '1997-10-03', 0, 0, 'castalice', '2007-04-08', 'castialice', '2010-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS358657933353', '上田美月', 0, '+86 172-8875-8649', 2, '612311648045082209', '中国深圳罗湖区田贝一路157号26楼', '1997-11-27', 0, 0, 'mitsukiueda2', '2004-05-25', 'mueda', '2019-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS604029572126', '苗慧嫻', 0, '+1 213-288-4008', 4, '554287145813297572', '314 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1998-11-24', 0, 0, 'mwaihan', '2013-08-05', 'whmiu', '2000-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS695727323501', '田家玲', 0, '+81 90-0755-1890', 3, '919703721346218794', '44-kai, 6-1-14, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1993-07-24', 0, 0, 'tinkaling', '2007-12-07', 'kalingtin', '2021-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS352698959481', '苑梓晴', 0, '+1 213-321-6242', 3, '602429206629013725', '254 Wall Street Apartment 7, Los Angeles, CA 90003, United States', '1985-07-16', 0, 0, 'tcyuen', '2021-01-30', 'ytszching', '2000-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS060213662714', '伊藤拓哉', 0, '+81 80-0516-1308', 3, '466853689409243726', '日本なごやし守山区瀬古東二丁目171番13号39階', '1998-02-20', 0, 0, 'takuyai1201', '2004-06-20', 'itot', '2012-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS569995749310', '武田湊', 0, '+81 70-0852-1191', 2, '564106564784244155', '19-kai, 2-3-4 Yoyogi, Shibuya-ku, Tokyo, Japan', '1986-11-03', 0, 0, 'takedmin', '2004-12-28', 'minatot', '2016-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS409925397838', '毛嘉欣', 1, '+81 90-3599-2003', 2, '553283131411453464', '日本ならし大和郡山市本庄町一丁目1番1号43号室', '1998-06-08', 0, 0, 'kymo', '2010-04-10', 'mokaryan7', '2005-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS264457248482', '邱惠敏', 0, '+1 330-834-1147', 3, '700448951949751910', '692 Ridgewood Road Suite 9, Akron, OH 44321, United States', '1992-11-08', 0, 0, 'yau72', '2016-08-25', 'yau1958', '2011-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS708316264910', 'Debra Dunn', 0, '+81 11-009-4052', 3, '322512553124742174', '23F, 5-19-5 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1990-02-26', 0, 0, 'debradunn', '2008-02-25', 'debradun7', '2018-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS440355201968', '周致远', 1, '+81 66-940-8648', 3, '962360276672758008', '1F, 4-9-12 Kamihigashi, Hirano Ward, Osaka, Japan', '1987-07-12', 0, 0, 'zhiyuan1209', '2013-12-25', 'zz74', '2009-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS683912545120', 'Jennifer Allen', 1, '+1 330-769-4619', 2, '124241935329049884', '632 Riverview Road Apartment 40, Akron, OH 44313, United States', '1997-11-07', 0, 0, 'allenjennifer3', '2020-10-17', 'ajennifer', '2002-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS810984491656', '曾岚', 1, '+86 163-2805-4982', 2, '658397157150850004', '中国深圳罗湖区蔡屋围深南东路925号45号楼', '1995-10-11', 0, 0, 'zlan', '2021-03-15', 'zel', '2001-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS021574940601', '石川花', 1, '+44 7857 302475', 2, '071985174712378667', 'No.46 Main building, 560 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1996-02-16', 0, 0, 'ihana', '2003-09-15', 'hishikawa03', '2015-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS546511237053', '加藤架純', 1, '+81 3-7684-2958', 2, '833611862945593678', '1-kai, 1-5-10, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1992-03-31', 0, 0, 'kato70', '2017-01-02', 'kato20', '2001-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS448435395889', '向璐', 1, '+81 3-4394-4085', 3, '731262139193335807', '日本東京品川区東五反田五丁目2番1号24階', '1999-03-04', 0, 0, 'xlu', '2014-04-15', 'xilu', '2003-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS013332810398', '黃家文', 0, '+86 143-5595-6743', 1, '550446314170972940', 'Room 4, CR Building, 578 Lefeng 6th Rd, Zhongshan, China', '1991-02-27', 0, 0, 'wkama', '2021-08-30', 'wong213', '2021-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS512051786306', '蘇杰倫', 1, '+1 312-751-3172', 2, '018990202937402786', '881 Rush Street Apartment 25, Chicago, IL 60611, United States', '1994-12-22', 0, 0, 'socl57', '2004-10-24', 'cls', '2016-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS518203416267', 'Jacqueline Powell', 1, '+44 (1223) 49 6150', 2, '376477318126894562', 'No.47 Main building, 531 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1993-05-24', 0, 0, 'jacqpowel78', '2003-08-09', 'jacqueline4', '2009-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS329635316026', '藤原陽太', 1, '+81 3-8263-3821', 3, '236722167743028228', '日本東京中央区銀座三丁目12番6号31号室', '1991-11-30', 0, 0, 'fujiwara05', '2018-07-26', 'fujiwyota', '2021-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS957551440053', 'Chris Hayes', 1, '+81 11-233-3182', 3, '636653520360837668', '30-kai, 13-3-10 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1998-08-25', 0, 0, 'hchris', '2002-09-15', 'hayeschris', '2000-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS290772132339', 'Kevin Perez', 0, '+81 70-9596-1360', 1, '275986436841349537', '42-kai, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1998-11-19', 0, 0, 'perez1209', '2014-10-27', 'kevinperez7', '2014-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS175692101990', '向家輝', 0, '+86 10-580-3304', 3, '404427448720148514', 'Room 33, CR Building, 36 East Wangfujing Street, Dongcheng District , Beijing, China', '1998-05-25', 0, 0, 'hkafai', '2021-02-20', 'kafaiheu', '2018-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS087175289686', '丸山蒼士', 1, '+44 5972 066239', 0, '379128044998993653', 'Unit 43, Oxford Eco Centre, 128 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1996-05-20', 0, 0, 'aoshimaruyama', '2009-01-22', 'maruyamaa', '2018-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS549434381422', '廖淑怡', 0, '+86 176-5042-8297', 3, '273233568838888988', 'Room 18, CR Building, 169 Xiaoping E Rd, Baiyun , Guangzhou, China', '1986-11-07', 0, 0, 'sukyeeliao', '2021-02-03', 'lisukyee', '2011-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS006848358378', 'Michelle Coleman', 1, '+86 196-2748-9667', 1, '846335382963444373', 'Room 33, CR Building, 866 Binchuan Rd, Minhang District, Shanghai, China', '1998-08-26', 0, 0, 'colemmichelle4', '2007-08-26', 'com3', '2015-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS091856487574', 'Sara West', 0, '+44 7357 722941', 1, '314496052513678541', 'Block 10, 421 Maddox Street, London, W1S 1PU, United Kingdom', '1987-05-08', 0, 0, 'sawest', '2008-10-08', 'sarw', '2015-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS755455332450', '橋本美緒', 0, '+44 (116) 242 5501', 2, '696608659091874603', 'No.18 Main building, 821 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1985-03-11', 0, 0, 'hasm', '2007-07-30', 'mihashimoto', '2013-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS572888673156', '菅原結翔', 1, '+44 (1865) 14 0812', 4, '963682790385479849', 'Block 14, 193 Park End St, Oxford, OX1 1JD, United Kingdom', '1992-07-22', 0, 0, 'syuito', '2017-09-24', 'sugawara116', '2002-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS118244330531', '譚淑怡', 1, '+86 145-5954-8855', 2, '072986424347690797', '中国成都市成华区双庆路113号23室', '1989-11-03', 0, 0, 'sukyeet', '2019-06-13', 'sukyee925', '2000-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS606292015747', '严岚', 1, '+86 21-9517-5449', 3, '265280688970279287', '中国上海市徐汇区虹桥路710号50号楼', '1990-10-05', 0, 0, 'yalan416', '2007-05-04', 'yanl', '2004-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS725568696294', '村上一輝', 0, '+86 20-738-4580', 2, '088471858301060132', 'No.23 building, 330 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-05-15', 0, 0, 'murakikki', '2008-09-30', 'ikkimu', '2014-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS262261632132', 'Lisa Reynolds', 0, '+81 11-484-3848', 4, '510583010847694151', '日本札幌清田区真栄四条五丁目19番20号11階', '1990-07-28', 0, 0, 'reynl05', '2012-09-24', 'lisar', '2008-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS458981125336', '市川結翔', 0, '+1 718-199-0678', 3, '408815986589256029', '319 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1996-02-03', 0, 0, 'ichikawayuito', '2010-06-29', 'ichy', '2007-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS240757072771', '呂國明', 1, '+86 760-2095-8291', 3, '609022781394125757', '中国中山紫马岭商圈中山五路155号24室', '1986-12-28', 0, 0, 'luikm', '2010-09-12', 'kwokminglui', '2011-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS027899323485', 'Crystal Warren', 0, '+86 760-5466-3271', 2, '346534432655019750', '中国中山京华商圈华夏街313号6室', '1992-11-12', 0, 0, 'crystal10', '2003-07-22', 'crystalw4', '2000-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS335854190742', '王安琪', 1, '+44 5845 151086', 3, '345983524530342974', 'Flat 1, 798 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1986-02-13', 0, 0, 'wanqi', '2008-12-15', 'anqi2002', '2018-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS643326389321', '橋本舞', 0, '+1 330-362-7302', 1, '996108585017923702', '473 Fern Street Suite 36, Akron, OH 44307, United States', '1992-09-19', 0, 0, 'maihashimoto1104', '2000-03-17', 'hasm83', '2004-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS400889910550', '劉富城', 1, '+44 (151) 000 2453', 2, '150518220909725795', 'Block 43, 810 Hanover St, Liverpool, L1 4AF, United Kingdom', '1989-08-21', 0, 0, 'lau96', '2011-05-27', 'lau10', '2018-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS477900480515', 'Gary Morales', 0, '+86 191-3496-1516', 0, '204005813795493830', '中国成都市成华区玉双路6号609号华润大厦48室', '1996-05-19', 0, 0, 'moralesg', '2001-12-02', 'morales49', '2013-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS610719425367', '阿部美月', 0, '+86 186-2709-5616', 2, '959647376433652273', 'No.20 building, 857 Xiaoping E Rd, Baiyun , Guangzhou, China', '1996-11-04', 0, 0, 'abemi', '2008-08-20', 'abemits4', '2021-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS413804855058', '贺致远', 1, '+86 194-3422-5860', 4, '873699266373361274', '中国中山天河区大信商圈大信南路655号华润大厦43室', '1998-12-07', 0, 0, 'hzhiyuan1208', '2020-04-22', 'zhiyuanhe2', '2015-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS412565614155', '高田玲奈', 0, '+81 52-375-1633', 0, '383971220082631111', '日本なごやし熱田区千年二丁目5番12号49階', '1988-09-17', 0, 0, 'rentakada', '2016-03-20', 'takadarena', '2008-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS805144863336', 'Katherine Vasquez', 0, '+86 755-179-5308', 2, '181426305326367498', 'Room 31, 503 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1991-04-12', 0, 0, 'katherine9', '2020-03-22', 'katherine9', '2018-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS716461325199', '叶璐', 0, '+1 838-948-7300', 2, '361962984054366955', '320 Central Avenue Suite 30, Albany, NY 12206, United States', '1989-01-04', 0, 0, 'luye', '2020-08-31', 'ye7', '2006-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS736080358108', '陶安娜', 1, '+81 80-7888-1820', 2, '036424068480115341', '日本札幌白石区菊水三条五丁目2番7号40階', '1995-10-14', 0, 0, 'tao4', '2015-11-17', 'onnata', '2000-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS356379905773', 'Glenn Reyes', 0, '+81 74-864-8186', 1, '546930862556934078', '14F, 8 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-07-09', 0, 0, 'reyesglenn425', '2019-01-27', 'gr11', '2021-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS134430318288', '徐杰宏', 0, '+86 157-7622-4566', 3, '943956209986942953', '28F, 177 68 Qinghe Middle St, Haidian District, Beijing, China', '1985-06-12', 0, 0, 'jxu4', '2004-08-04', 'xj3', '2004-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS065270555725', '洪國賢', 0, '+1 330-082-1211', 2, '394319345337853432', '850 Fern Street Suite 16, Akron, OH 44307, United States', '1997-02-15', 0, 0, 'kwokyin7', '2002-07-13', 'hungky', '2009-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS220848105683', '汪榮發', 1, '+81 52-759-8988', 1, '356804332539098063', '日本なごやし北区清水三丁目19番4号24階', '1995-06-18', 0, 0, 'wongwingfat', '2012-11-05', 'wfwon', '2019-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS620475066379', '韩璐', 0, '+86 20-4081-1618', 2, '209938372502589235', '中国广州市白云区机场路棠苑街五巷934号33楼', '1991-05-08', 0, 0, 'luhan', '2009-06-01', 'lhan', '2016-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS541191066987', '丸山花', 1, '+81 3-9311-2944', 1, '905887127937238153', '45-kai, 1-6-17, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1994-08-09', 0, 0, 'maruyamahana', '2014-02-13', 'maruyama99', '2005-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS414075775221', '小野大地', 0, '+44 (151) 865 0935', 4, '106751527380612372', 'Flat 8, 867 Hanover St, Liverpool, L1 4AF, United Kingdom', '1993-10-09', 0, 0, 'ondaichi', '2015-09-16', 'odaic6', '2014-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS100509527498', '池田涼太', 0, '+86 135-9797-5650', 2, '713992389460459272', '中国上海市浦东新区橄榄路816号28栋', '1986-10-23', 0, 0, 'ryotaikeda80', '2016-05-18', 'iker54', '2004-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS572919260632', '阎震南', 0, '+86 130-8445-4943', 1, '767949474819346813', 'No.40 building, 914 Dong Zhi Men, Dongcheng District, Beijing, China', '1990-01-04', 0, 0, 'zhennany9', '2011-10-11', 'zheya', '2000-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS115327700840', '佐藤和真', 0, '+81 90-6320-7570', 3, '239440942328224142', '25-kai, 2-3-10 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-08-07', 0, 0, 'kazumas5', '2022-02-26', 'kazumasa1961', '2010-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS595566794758', '駱天樂', 0, '+81 80-3908-8260', 1, '062561334251650447', '日本おおさかし平野区加美東四丁目9番14号19階', '1998-02-16', 0, 0, 'ltinl', '2016-03-06', 'loktl123', '2018-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS220046394804', 'Elizabeth Taylor', 0, '+44 5050 429083', 1, '479177208475312404', 'Unit 39, Oxford Eco Centre, 291 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1994-02-27', 0, 0, 'eltaylor', '2002-05-18', 'taylorelizabeth', '2002-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS303115229469', 'Edward Smith', 1, '+81 90-3566-5208', 1, '438094456324611401', '日本おおさかし平野区加美東四丁目9番10号1階', '1992-06-04', 0, 0, 'edwars', '2016-11-14', 'esmith', '2004-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS284716253184', '黎致远', 1, '+44 (121) 108 5269', 0, '865034253545595112', 'Unit 46, Oxford Eco Centre, 2 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1989-05-15', 0, 0, 'zhli', '2016-11-02', 'lizhiyuan7', '2006-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS017314901885', 'Ricky Foster', 0, '+1 213-481-4103', 1, '832507857973285899', '195 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1997-07-26', 0, 0, 'foster9', '2003-08-07', 'foster820', '2003-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS910089881832', 'Ryan Bailey', 0, '+1 838-512-0646', 4, '985592568870640669', '786 Lark Street 3rd Floor, Albany, NY 12210, United States', '1997-09-19', 0, 0, 'baileryan', '2010-12-22', 'baileyry', '2004-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS165433668890', 'Ernest Warren', 0, '+81 80-2727-0463', 0, '487601466012855623', 'Rm. 31, 2-1-15 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1990-12-30', 0, 0, 'waern1997', '2007-11-24', 'warren3', '2020-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS409327065409', 'Kimberly Watson', 1, '+81 80-2746-6646', 2, '855629283951335825', '33F, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1986-08-09', 0, 0, 'kimberlywatso8', '2017-11-25', 'kimberlywatson1', '2012-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS947059948333', '萬頴思', 0, '+86 157-4495-4296', 3, '587775911682978054', 'Room 9, CR Building, 252 Dongtai 5th St, Dongguan, China', '1993-05-29', 0, 0, 'mews', '2004-02-07', 'mwingsze', '2013-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS161930938110', '今井蒼士', 1, '+44 (116) 617 7110', 2, '966642480159452347', 'Flat 2, 16 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1995-07-04', 0, 0, 'imaiaoshi1212', '2011-04-08', 'aoi', '2008-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS714598613682', '河野悠人', 1, '+81 3-5343-4347', 3, '596108927706271899', 'Rm. 32, 1-5-17, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1988-06-01', 0, 0, 'yutk', '2016-08-11', 'konoy', '2007-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS028080010260', 'Jonathan Gardner', 0, '+86 198-7104-8080', 3, '453829029050456964', '中国北京市西城区复兴门内大街384号31号楼', '1995-11-15', 0, 0, 'jonathangar', '2018-08-16', 'jonathangardner', '2005-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS594721569405', '藤原七海', 0, '+44 7762 993009', 2, '953490885904367903', 'Flat 14, 546 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1993-05-02', 0, 0, 'nfuj46', '2017-01-11', 'fujnanami', '2021-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS951082761893', '沈云熙', 1, '+1 838-392-9743', 3, '867504362153939517', '473 Central Avenue Suite 20, Albany, NY 12205, United States', '1996-07-20', 0, 0, 'shenyunx10', '2018-12-07', 'yunxis131', '2007-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS561270482944', 'Janet Wilson', 1, '+44 7296 679834', 2, '346441572397295416', 'Flat 20, 1 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1986-07-25', 0, 0, 'janetwilson', '2020-05-16', 'janetwils', '2012-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS537281340463', '宮本陽菜', 1, '+44 (1223) 39 5687', 0, '332923268030352275', 'Flat 9, 827 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1996-09-06', 0, 0, 'miyahi2', '2015-04-27', 'miyamoto2', '2004-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS906334778631', '中森悠人', 1, '+44 (20) 3082 9625', 2, '889415856462384053', 'No.45 Main building, 424 Regent Street, London, W1B 2LX, United Kingdom', '1994-04-24', 0, 0, 'yutonakamori', '2000-06-21', 'ynakamori', '2019-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS466709732715', '石田聖子', 0, '+86 28-8253-7773', 3, '458772645473948120', 'No.35 building, No. 612, Shuangqing Rd, Chenghua District, Chengdu, China', '1996-12-26', 0, 0, 'seikoish1', '2004-08-27', 'ishidasei516', '2016-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS746287688472', '藤原樹', 1, '+44 (116) 172 4923', 2, '449293847255337456', 'No.6 Main building, 831 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1998-06-28', 0, 0, 'fujiwara4', '2013-10-16', 'fi506', '2005-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS984181255235', 'Jacqueline Stone', 0, '+1 718-985-0443', 0, '794476978647671868', '790 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1987-01-22', 0, 0, 'jacquelinesto42', '2016-04-03', 'jacqust', '2000-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS550717509182', '石川蒼士', 0, '+81 66-312-9411', 3, '865186765467279960', '27F, 2-1-20 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1996-01-11', 0, 0, 'ishikawaaosh', '2003-07-09', 'aoshiishikawa', '2019-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS975648118644', '毛麗欣', 1, '+1 330-918-2958', 3, '901218885804875081', '331 West Market Street Suite 6, Akron, OH 44333, United States', '1994-09-27', 0, 0, 'laiyan5', '2017-09-17', 'moly', '2021-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS369070677208', '湯家強', 0, '+44 (121) 737 5137', 4, '341730964894960638', 'Unit 47, Oxford Eco Centre, 251 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1986-05-01', 0, 0, 'kktong93', '2011-05-22', 'tonka52', '2006-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS001695798858', 'Debbie Butler', 0, '+1 718-428-4567', 2, '664335475464479658', '762 Flatbush Ave Suite 8, Brooklyn, NY 11225, United States', '1989-03-15', 0, 0, 'debbiebutl', '2002-10-01', 'butlerdebbie97', '2016-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS025123711081', '钱云熙', 0, '+86 162-2999-4054', 1, '616784530068224687', 'No.49 building, 269 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1985-03-23', 0, 0, 'qianyunxi1', '2014-09-28', 'qianyunxi', '2004-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS511525968951', 'Danielle Nguyen', 1, '+81 66-992-8390', 3, '051680771527045131', '日本おおさかし東住吉区東田辺三丁目27番13号45号室', '1989-06-20', 0, 0, 'nguyen84', '2001-01-20', 'daniellenguyen', '2011-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS829923876233', 'Peter Spencer', 0, '+86 755-804-1420', 3, '361419481261373915', 'No.20 building, 63 Shennan Ave, Futian District, Shenzhen, China', '1985-09-01', 0, 0, 'speter', '2014-09-03', 'spenpete', '2014-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS191878797951', '宋睿', 0, '+86 183-5397-7055', 3, '656514031621924568', 'No.28 building, 917 Hongqiao Rd., Xu Hui District, Shanghai, China', '1991-12-29', 0, 0, 'sonrui50', '2003-10-01', 'rusong', '2010-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS770412542361', '林大和', 1, '+81 90-6740-4344', 0, '881314779968342178', '日本札幌中央区宮の森四条六丁目1番13号1階', '1989-07-16', 0, 0, 'yamahayashi', '2014-07-05', 'hayashiyamato6', '2010-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS777134131218', 'Louis Rivera', 0, '+86 187-0646-1229', 0, '948366941025500536', '中国北京市延庆区028县道184号11楼', '1988-04-09', 0, 0, 'rl209', '2004-06-12', 'louis319', '2014-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS723209738587', '石井光莉', 1, '+44 7737 286280', 1, '750597875898313714', 'Flat 8, 769 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1991-04-03', 0, 0, 'ishhik', '2002-05-09', 'ishihik99', '2001-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS665443659427', '崔子异', 1, '+81 52-389-9261', 1, '041113189371711707', '日本なごやし熱田区千年二丁目5番7号28階', '1989-06-12', 0, 0, 'ziyicu', '2009-04-25', 'cziyi', '2004-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS100436028493', '戚頴璇', 1, '+81 90-0923-5949', 0, '029651644174884108', 'Rm. 11, 3-9-9 Gakuenminami, Nara, Japan', '1991-05-22', 0, 0, 'chicws', '2015-09-01', 'wingsuenchic', '2016-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS184278915237', 'Willie Daniels', 1, '+44 7993 851184', 3, '412774243742792460', 'Block 19, 928 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1994-10-23', 0, 0, 'willidaniels', '2006-07-22', 'wdaniels', '2006-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS067679287223', 'Jamie King', 0, '+81 70-1926-4438', 2, '647205523056109178', '41F, 13-3-1 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1990-02-11', 0, 0, 'king83', '2011-11-05', 'kingj214', '2006-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS241586669899', 'Susan Dunn', 1, '+1 718-687-3919', 3, '994255723539460163', '774 1st Ave Suite 49, Brooklyn, NY 11220, United States', '1993-08-20', 0, 0, 'susandunn', '2003-09-15', 'dunns1956', '2005-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS303393782196', '容祖兒', 1, '+86 138-2343-1128', 1, '382495866656700637', 'No.23 building, 446 Yueliu Rd, Fangshan District, Beijing, China', '1990-09-03', 0, 0, 'yungch', '2003-07-27', 'ycy', '2005-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS905074947697', '林惠敏', 0, '+86 21-297-0670', 2, '326360590011029512', 'Room 33, CR Building, 439 Hongqiao Rd., Xu Hui District, Shanghai, China', '1996-08-23', 0, 0, 'lamwm', '2005-01-12', 'lawm', '2020-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS103549664739', 'Stephen Perry', 1, '+81 90-8199-0645', 2, '601772189030147468', '日本おおさかし西成区出城一丁目1番15号42号室', '1986-04-24', 0, 0, 'perrste', '2014-01-08', 'perry1958', '2014-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS337584459503', 'Debbie Wright', 0, '+44 (161) 217 2971', 1, '560265469704237491', 'Block 8, 13 Sackville St, Manchester, M1 3BB, United Kingdom', '1996-05-31', 0, 0, 'debwri', '2020-05-20', 'debbie8', '2000-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS391457769358', '杨宇宁', 1, '+81 52-240-0169', 4, '733017119224586357', '日本なごやし守山区瀬古東二丁目171番14号22階', '1986-10-29', 0, 0, 'yyang', '2018-02-27', 'yangyuning', '2008-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS664322274204', '松本優奈', 0, '+1 718-868-1690', 1, '721460185586847572', '936 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1997-11-03', 0, 0, 'yunam', '2020-05-11', 'my713', '2016-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS984239507426', '姜嘉伦', 1, '+81 11-954-8222', 2, '873237258264319793', '4F, 5-2-7 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1998-05-09', 0, 0, 'jialun10', '2008-02-14', 'jiajiang', '2019-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS218901017780', 'Bonnie Meyer', 0, '+86 134-1578-8359', 2, '822776188989043210', '中国成都市成华区二仙桥东三路899号37楼', '1998-10-22', 0, 0, 'meyerb8', '2007-10-13', 'bonnieme', '2020-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS683010249167', '和田大輔', 0, '+44 (1223) 92 5024', 0, '399483056008240205', 'No.4 Main building, 945 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1989-11-03', 0, 0, 'daisw1958', '2000-10-21', 'daisuke59', '2000-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS740234658941', '董安琪', 0, '+1 330-091-3287', 0, '347735916564632095', '32 Ridgewood Road Suite 3, Akron, OH 44321, United States', '1991-04-10', 0, 0, 'adong731', '2003-11-23', 'anqid', '2014-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS246442090174', 'Ralph Murray', 1, '+1 213-553-5998', 3, '404013211137392870', '490 Wall Street Apt 16, Los Angeles, CA 90003, United States', '1993-06-10', 0, 0, 'murrayralph', '2007-05-30', 'ralphmurray', '2009-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS306070387320', 'Christopher West', 0, '+1 718-140-0341', 2, '907085057040023946', '810 Flatbush Ave Suite 15, Brooklyn, NY 11225, United States', '1996-12-03', 0, 0, 'westchris', '2004-06-10', 'christopher1026', '2018-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS566791438683', '胡晓明', 1, '+44 (20) 3293 0194', 0, '936289459653276760', 'Block 43, 942 Regent Street, London, W1B 2LX, United Kingdom', '1989-12-28', 0, 0, 'xiaominghu00', '2007-07-14', 'xiaoming68', '2015-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS237061002171', '山田光', 0, '+86 10-4936-7899', 3, '603499443263911376', 'No.27 building, 694 East Wangfujing Street, Dongcheng District , Beijing, China', '1991-08-23', 0, 0, 'yhikar2', '2005-11-24', 'yhika', '2003-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS040296138159', '譚慧敏', 0, '+86 28-3023-2594', 2, '431912080005808181', 'No.10 building, No.508, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1991-09-14', 0, 0, 'waiman1024', '2005-06-07', 'waimantam', '2011-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS136661936916', 'Eugene Harrison', 0, '+81 66-266-9635', 2, '419421645758998099', 'Rm. 24, 1-7-1 Omido, Higashiosaka, Osaka, Japan', '1986-05-17', 0, 0, 'harrison5', '2021-08-17', 'harrisoneu8', '2004-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS195210974152', '千葉聖子', 1, '+1 213-400-4767', 0, '222069456600438071', '94 Grape Street Suite 1, Los Angeles, CA 90002, United States', '1993-05-30', 0, 0, 'chibas2012', '2018-12-07', 'cseiko', '2017-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS806290130833', '鄧學友', 0, '+1 838-004-5176', 0, '839849318153433159', '444 Lark Street Apt 35, Albany, NY 12210, United States', '1997-01-23', 0, 0, 'tanghokya2', '2002-11-19', 'tanghokya', '2011-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS002814023444', '高木美緒', 0, '+1 212-686-1349', 3, '199567473012895708', '511 Fifth Avenue Suite 24, New York, NY 10017, United States', '1987-12-22', 0, 0, 'takagimi46', '2010-08-20', 'miot620', '2000-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS510715165648', '遠藤凛', 1, '+44 (121) 197 7462', 1, '456818982463860558', 'Block 27, 541 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1995-04-09', 0, 0, 'rinendo209', '2011-10-11', 'endorin', '2020-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS376028287954', '麥淑怡', 1, '+81 52-368-8395', 4, '781083920848048927', 'Rm. 35, 3 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1998-01-20', 0, 0, 'mak1985', '2011-06-03', 'sukyee2020', '2017-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS921050330532', '苗裕玲', 0, '+86 10-9839-6416', 2, '561583723803430318', '中国北京市朝阳区三里屯路946号38楼', '1985-01-27', 0, 0, 'myl', '2005-04-12', 'yumiu', '2002-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS829152843619', '譚潤發', 1, '+86 21-0653-4745', 0, '791194391754744614', '中国上海市浦东新区橄榄路733号5楼', '1985-05-25', 0, 0, 'tyf1121', '2004-02-29', 'tamyunfat', '2008-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS434344193870', '田云熙', 0, '+44 (116) 286 1678', 2, '845177724959004113', 'Flat 23, 558 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1985-07-06', 0, 0, 'yunxitian5', '2013-01-30', 'yunxitian', '2015-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS242320157635', '中山愛梨', 0, '+86 130-0147-8991', 4, '585590122168695937', '中国北京市海淀区清河中街68号671号14室', '1997-09-23', 0, 0, 'nakayairi', '2020-03-25', 'airinakay', '2005-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS666150752364', '馬霆鋒', 0, '+86 10-6239-5466', 2, '537523395257010644', '中国北京市朝阳区三里屯路735号华润大厦30室', '1994-09-12', 0, 0, 'tfma', '2008-03-10', 'ma7', '2015-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS191699952054', 'Virginia Guzman', 1, '+81 90-7882-0277', 0, '517713797592155771', '23-kai, 20 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1996-09-11', 0, 0, 'guzmanvi', '2012-01-25', 'guzmanvirginia3', '2011-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS314338489791', '安藤絢斗', 1, '+44 (151) 144 1264', 0, '487117040678799634', 'No.5 Main building, 764 Hanover St, Liverpool, L1 4AF, United Kingdom', '1995-09-29', 0, 0, 'anda', '2011-09-04', 'ayatoando4', '2018-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS478047135758', '黎慧敏', 1, '+81 90-9731-7578', 2, '347091757833558325', '24F, 3-9-17 Gakuenminami, Nara, Japan', '1998-06-30', 0, 0, 'wml4', '2004-12-28', 'waimanlai804', '2005-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS405550615211', '曾安琪', 0, '+86 177-1484-0625', 2, '361281791154264519', '中国成都市成华区双庆路77号华润大厦8室', '1995-06-03', 0, 0, 'zenganqi6', '2008-05-21', 'zenanqi', '2019-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS806367362001', '邓致远', 1, '+86 130-1087-2075', 1, '344944484850154140', '中国深圳罗湖区蔡屋围深南东路454号3室', '1996-10-02', 0, 0, 'zhiyuan1017', '2013-05-23', 'zhiyudeng', '2006-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS121523491801', '木村美月', 1, '+44 (151) 543 9734', 3, '692196631652314322', 'No.32 Main building, 170 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1989-01-20', 0, 0, 'kimuramitsuki', '2003-03-27', 'kimurami', '2020-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS068494553847', 'Eleanor Henry', 1, '+81 70-9132-4092', 3, '272041734947850290', 'Rm. 23, 2-1-20 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1998-03-28', 0, 0, 'eleanorhenry', '2002-05-16', 'henryel', '2002-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS452592803289', '董詩涵', 1, '+86 186-6540-5846', 2, '402357375699746765', 'No.27 building, 474 Shennan Ave, Futian District, Shenzhen, China', '1985-08-06', 0, 0, 'shdong1957', '2009-01-06', 'dons902', '2010-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS455499985917', '常睿', 0, '+44 (1865) 63 3137', 4, '717398871491447397', 'Block 5, 121 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1996-11-17', 0, 0, 'charui', '2014-10-06', 'ruicha6', '2012-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS668099591623', '上田大地', 0, '+86 755-4229-2759', 2, '540260133652498105', '中国深圳龙岗区学园一巷551号华润大厦45室', '1997-11-05', 0, 0, 'daichiueda', '2012-04-05', 'ueda229', '2003-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS225870572020', '木村一輝', 1, '+86 142-9204-0490', 2, '426543160023484649', '中国东莞珊瑚路834号华润大厦33室', '1992-07-07', 0, 0, 'ikkikimura3', '2014-09-23', 'kimurikk', '2016-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS885025135460', 'Christopher Vargas', 0, '+86 176-5898-6684', 4, '368415328155773612', '中国广州市天河区天河路119号华润大厦45室', '1998-11-11', 0, 0, 'vargasch', '2018-01-17', 'vchristopher', '2017-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS036819083089', '佘朝偉', 0, '+1 213-742-2605', 2, '984571598750760039', '289 Figueroa Street Apt 43, Los Angeles, CA 90037, United States', '1988-05-28', 0, 0, 'shcw701', '2013-04-04', 'shchiuwai', '2005-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS358248258064', 'Howard Mendez', 1, '+44 (20) 7662 4416', 3, '772651511053469747', 'Unit 8, Oxford Eco Centre, 724 Pollen Street, London, W1S 1NG, United Kingdom', '1988-11-20', 0, 0, 'mendehowa2', '2017-03-27', 'mh72', '2006-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS377632299262', '平野悠人', 1, '+81 70-6913-3893', 1, '527253788856090380', '日本東京品川区東五反田五丁目2番7号27階', '1992-09-20', 0, 0, 'yhir', '2014-09-20', 'yutoh', '2012-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS340050736896', '渡辺玲奈', 0, '+86 155-4303-7718', 3, '267550611471427191', '中国成都市成华区双庆路552号2楼', '1990-03-07', 0, 0, 'srena622', '2005-01-17', 'sato95', '2017-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS865888496053', 'Jerry Rice', 0, '+44 5092 099396', 3, '232550855840560264', 'Flat 46, 61 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1996-08-19', 0, 0, 'rijerry5', '2019-01-17', 'jerice', '2021-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS523751526368', '伍頴思', 1, '+1 330-269-1511', 1, '449911715666694230', '905 Fern Street Apartment 3, Akron, OH 44307, United States', '1987-11-23', 0, 0, 'wingsze57', '2011-02-05', 'wingszeng', '2009-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS565175324338', '森陸', 1, '+44 (1865) 59 2926', 1, '664178049051865744', 'No.31 Main building, 176 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1991-03-27', 0, 0, 'moririk', '2019-03-26', 'rikumori5', '2011-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS269355041267', '成小慧', 1, '+81 52-870-7523', 3, '043354543098488011', '31F, 3-19-10 Shimizu, Kita Ward, Nagoya, Japan', '1988-06-22', 0, 0, 'shinsw79', '2004-04-23', 'shingsiuwa42', '2001-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS390084048328', '龙宇宁', 0, '+86 28-672-2323', 1, '242135504182165405', '6F, 688 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1994-05-07', 0, 0, 'lonyuning', '2019-11-28', 'yuning1', '2006-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS872997776544', 'Stanley Silva', 1, '+81 70-5115-5131', 4, '621939038501211254', '日本東京中央区銀座三丁目12番7号18階', '1986-07-16', 0, 0, 'stanleysilva1951', '2019-11-26', 'stansilva', '2012-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS321559502029', '高詩涵', 0, '+44 (151) 447 7409', 1, '935838905001613335', 'Unit 21, Oxford Eco Centre, 972 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1987-03-20', 0, 0, 'gaoshiha8', '2012-10-28', 'sga603', '2003-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS233317404369', '雷裕玲', 1, '+86 199-2306-5229', 3, '542992826214814664', '中国北京市西城区西長安街371号2室', '1987-11-11', 0, 0, 'loyuling', '2006-12-19', 'yuling05', '2000-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS347828600425', '佐野紗良', 0, '+44 (1223) 83 0171', 3, '262415470997088874', 'Unit 37, Oxford Eco Centre, 218 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1997-12-27', 0, 0, 'sara127', '2003-09-17', 'sara52', '2001-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS858248822630', 'Annie Crawford', 0, '+1 614-372-0591', 2, '239491358248317246', '959 East Alley Apt 23, Columbus, GA 43201, United States', '1996-02-07', 0, 0, 'anniecrawford', '2009-10-13', 'crawann425', '2010-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS434134701195', '鄧榮發', 0, '+81 52-658-3914', 1, '212444097841325708', '日本なごやし北区清水三丁目19番19号44階', '1994-12-26', 0, 0, 'wita', '2005-08-14', 'tangwing60', '2021-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS712421505813', '田天榮', 1, '+86 165-3636-3334', 1, '830469269122968854', 'Room 30, 10 Shennan Ave, Futian District, Shenzhen, China', '1989-03-24', 0, 0, 'tintinwing', '2019-03-12', 'twti', '2005-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS755977972738', '曾嘉伦', 1, '+86 769-139-5245', 2, '288943266061444778', '中国东莞环区南街二巷14号28室', '1991-02-18', 0, 0, 'zengjialun', '2010-11-11', 'zejialun', '2002-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS118032133611', 'Amanda Ford', 0, '+81 52-362-9315', 0, '871551888398406631', '10F, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1995-09-12', 0, 0, 'amaford', '2018-03-21', 'forda', '2012-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS235822072029', '高橋聖子', 1, '+1 838-097-2677', 3, '783559364650933513', '736 Central Avenue Apt 45, Albany, NY 12205, United States', '1989-01-05', 0, 0, 'seikt', '2004-08-26', 'seiko1983', '2008-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS962520808473', '秦嘉伦', 1, '+86 149-0436-6917', 1, '008560005799756419', '中国东莞珊瑚路183号6栋', '1987-06-13', 0, 0, 'qijialun3', '2004-12-24', 'jialunqin9', '2010-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS385772018638', '高橋美羽', 0, '+81 80-5784-7912', 3, '458553219025744188', '日本おおさかし西成区出城一丁目1番19号2階', '1994-05-02', 0, 0, 'miu1995', '2007-04-05', 'miut10', '2010-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS822133925910', '彭家強', 0, '+86 760-315-1016', 3, '233251930203332298', '中国中山京华商圈华夏街157号16栋', '1992-05-25', 0, 0, 'pkake', '2001-09-07', 'pang1985', '2012-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS264513062758', '徐子韬', 1, '+44 (121) 545 3670', 1, '684271475276842037', 'Unit 11, Oxford Eco Centre, 519 New Street, Birmingham, B2 4DB, United Kingdom', '1994-12-30', 0, 0, 'zitaxu1017', '2000-11-04', 'zitaxu', '2001-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS829361202662', '木村彩乃', 0, '+86 755-0984-0839', 4, '609878975945758108', '9F, 315 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1993-11-12', 0, 0, 'kimuraayan', '2009-08-04', 'kimuayano1978', '2008-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS410995123180', '张睿', 0, '+81 80-7544-5247', 1, '848229382917449180', '日本札幌厚別区上野幌一条二丁目1番5号35号室', '1990-01-29', 0, 0, 'zhangr', '2006-07-26', 'zhang7', '2007-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS758504884677', '刘杰宏', 1, '+81 70-2530-0168', 0, '881305892265762231', '40-kai, 1-1-13 Deshiro, Nishinari Ward, Osaka, Japan', '1994-02-24', 0, 0, 'jiehong804', '2017-06-13', 'jiehongliu10', '2010-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS904860451678', '長谷川桜', 1, '+86 179-8900-0527', 2, '163564987269036257', '中国深圳福田区深南大道771号华润大厦39室', '1989-08-02', 0, 0, 'sakhase51', '2011-07-16', 'sakura1213', '2010-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS793036762390', '苗慧嫻', 0, '+81 11-706-0101', 2, '607508799115202878', '4-kai, 5-2-2 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-02-16', 0, 0, 'miuwaihan', '2021-08-04', 'miuwh', '2003-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS679036729594', '苑小慧', 1, '+86 154-6638-7755', 1, '524149446939648647', '中国上海市浦东新区橄榄路709号3栋', '1987-05-16', 0, 0, 'yuen4', '2003-12-05', 'siuwai87', '2021-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS352850762691', '胡潤發', 1, '+86 137-0058-4977', 4, '269535951216354497', 'No.30 building, 545 Dong Zhi Men, Dongcheng District, Beijing, China', '1997-05-07', 0, 0, 'wuyf', '2012-05-08', 'yunfatwu903', '2016-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS294742724464', '譚永發', 0, '+81 90-0721-9174', 2, '635587379858159948', '日本札幌白石区菊水三条五丁目4番19号31階', '1985-04-14', 0, 0, 'tawingfat1', '2021-01-04', 'tawf', '2017-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS236148400589', '高木結翔', 0, '+81 74-518-7185', 3, '514656501974139754', '日本ならし学園南三丁目9番8号29階', '1992-11-17', 0, 0, 'yuitot2', '2015-07-22', 'takagi722', '2001-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS121623285698', '木下光', 1, '+81 52-053-2738', 4, '929534693249237503', '日本なごやし北区楠味鋺三丁目80番18号46号室', '1990-11-15', 0, 0, 'kinoshitahikaru', '2002-11-10', 'kinoshita5', '2010-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS983937260971', 'Benjamin Reed', 0, '+44 (1223) 97 9329', 2, '804138114469931682', 'No.42 Main building, 317 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1990-04-24', 0, 0, 'benjaminre', '2020-06-05', 'benjaminreed2003', '2008-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS801982054632', '田子韬', 0, '+86 163-1843-9629', 1, '388330821464636560', 'Room 39, 580 Huanqu South Street 2nd Alley, Dongguan, China', '1989-08-22', 0, 0, 'zitaotian1212', '2007-01-17', 'zitaotian', '2004-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS596131712855', '徐惠妹', 0, '+44 (1223) 28 3756', 0, '429339936348713118', 'Block 25, 927 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1989-04-25', 0, 0, 'hmt413', '2020-01-04', 'thuimei324', '2012-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS203444162303', '郑宇宁', 0, '+86 28-6799-5778', 3, '787818144500726031', '37F, No.916, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1986-02-11', 0, 0, 'zheng3', '2012-06-07', 'zhyun17', '2014-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS703113834462', '盧詠詩', 1, '+1 330-556-9507', 2, '823284834825871891', '999 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1992-04-04', 0, 0, 'lowingsze02', '2004-08-27', 'wingszelo', '2015-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS137417721879', '戴小慧', 1, '+81 70-9893-7733', 2, '415744583406871884', 'Rm. 7, 2-5-4 Chitose, Atsuta Ward, Nagoya, Japan', '1989-09-23', 0, 0, 'siuwaida', '2012-12-30', 'swd92', '2020-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS744250971595', '董璐', 1, '+86 20-932-7939', 3, '795931638441921123', '中国广州市白云区机场路棠苑街五巷754号49号楼', '1989-10-12', 0, 0, 'lu4', '2020-04-21', 'ld1', '2005-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS377651867754', 'Jacob Flores', 0, '+81 70-0903-7438', 4, '973069135531428099', 'Rm. 8, 1-6-12, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1994-04-09', 0, 0, 'floresja1', '2019-02-28', 'florjacob', '2010-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS213416271570', '佘國權', 1, '+81 70-3424-6487', 0, '392450664537658923', '日本札幌厚別区上野幌一条二丁目1番3号12階', '1991-09-20', 0, 0, 'shkk201', '2016-10-03', 'kwokkuen7', '2015-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS929880328297', '孟秀英', 1, '+1 212-995-6176', 2, '089242408756966379', '38 Fifth Avenue Apt 49, New York, NY 10017, United States', '1995-04-01', 0, 0, 'xiuyingmeng', '2009-11-27', 'mengxi4', '2018-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS269267503270', '許天榮', 1, '+81 80-5588-1643', 3, '715844484966315131', '12F, 4-9-3 Kamihigashi, Hirano Ward, Osaka, Japan', '1995-01-31', 0, 0, 'tinwing404', '2005-09-25', 'htinwing221', '2012-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS602687204044', '邵子韬', 1, '+1 213-251-3462', 1, '834234666792151102', '198 Grape Street Apt 12, Los Angeles, CA 90002, United States', '1986-09-22', 0, 0, 'shaozitao', '2019-03-29', 'shazita', '2011-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS044716813619', '青木凛', 0, '+1 330-475-1500', 3, '468187999824844198', '537 Fern Street Apt 22, Akron, OH 44307, United States', '1988-06-13', 0, 0, 'riaoki', '2005-06-24', 'rinaoki', '2005-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS838897443422', '千葉蒼士', 0, '+1 838-307-1434', 1, '154019539887561819', '703 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1987-06-06', 0, 0, 'chibaaoshi1961', '2010-02-06', 'aoch416', '2002-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS248226883132', '前田美月', 1, '+81 90-0711-8154', 1, '504796505927864052', '日本東京品川区東五反田五丁目2番13号38階', '1988-12-01', 0, 0, 'maedamitsu', '2019-02-23', 'mitsuki57', '2016-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS280993796973', '安藤光', 0, '+1 213-739-7907', 0, '270202171807356492', '349 Grape Street Suite 34, Los Angeles, CA 90002, United States', '1994-01-12', 0, 0, 'andhi', '2018-12-28', 'andoh', '2017-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS329278518958', '刘震南', 0, '+1 838-686-6539', 1, '608831810100476046', '982 State Street Apartment 8, Albany, NY 12203, United States', '1986-05-08', 0, 0, 'zhenliu', '2001-04-13', 'zhennanli', '2002-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS995711294044', 'Joan Grant', 1, '+81 90-9380-4994', 3, '969845621305584035', '日本東京港区東新橋一丁目5番17号19階', '1998-01-18', 0, 0, 'jgr', '2008-11-06', 'joan5', '2010-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS421543291731', '呂志明', 0, '+44 (20) 8447 6913', 1, '712508981763373162', 'Unit 44, Oxford Eco Centre, 924 Maddox Street, London, W1S 1PU, United Kingdom', '1989-03-12', 0, 0, 'cmlui', '2019-10-01', 'lucm', '2003-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS857617823195', '村上葉月', 0, '+86 149-1866-7508', 2, '675499076135522244', '23F, 650 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1998-06-11', 0, 0, 'hazuki6', '2000-06-05', 'hazukimurakami', '2007-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS200187639982', '木下湊', 0, '+86 10-337-7101', 3, '628721131762875770', '42F, 633 68 Qinghe Middle St, Haidian District, Beijing, China', '1999-02-11', 0, 0, 'minato3', '2021-10-04', 'kinoshitam', '2020-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS740265135805', '邱頴思', 0, '+44 7033 620951', 1, '072006424166044416', 'Block 29, 953 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1989-06-07', 0, 0, 'yauws', '2020-11-01', 'wiya4', '2003-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS287057868915', '孔嘉伦', 0, '+1 614-530-3779', 0, '749884111128006637', '77 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1985-09-17', 0, 0, 'jialko97', '2007-07-19', 'jialk', '2020-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS368028196542', '鐘德華', 1, '+44 5101 925768', 4, '877732583927817433', 'Unit 2, Oxford Eco Centre, 22 Hanover St, Liverpool, L1 4AF, United Kingdom', '1997-04-05', 0, 0, 'chuntakwah407', '2001-09-13', 'takwahchung', '2019-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS143233920350', '何睿', 1, '+86 189-8231-1366', 2, '550129840429374230', '中国成都市成华区二仙桥东三路577号华润大厦28室', '1990-12-08', 0, 0, 'hrui', '2000-11-08', 'he327', '2018-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS659409429183', '雷宇宁', 0, '+1 718-263-4314', 0, '888803341703534601', '707 Columbia St Apartment 43, Brooklyn, NY 11231, United States', '1994-01-09', 0, 0, 'leiyuning96', '2019-06-21', 'leiyuning', '2013-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS871304734171', 'Rachel Reyes', 1, '+86 10-484-2480', 4, '044823036329689315', '17F, 629 Dong Zhi Men, Dongcheng District, Beijing, China', '1995-11-30', 0, 0, 'reyesrachel12', '2013-08-10', 'rachel414', '2015-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS778425783102', '阎嘉伦', 0, '+1 838-661-6665', 2, '110464982740381328', '678 State Street 3rd Floor, Albany, NY 12203, United States', '1990-06-16', 0, 0, 'jialun5', '2004-10-10', 'jiyan', '2009-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS850991826506', '車富城', 1, '+81 52-239-9279', 1, '463558735128537986', '日本なごやし北区清水三丁目19番7号33号室', '1990-07-27', 0, 0, 'fushing1', '2007-04-07', 'chefushing', '2004-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS383371017020', '佘惠敏', 0, '+81 90-5422-3546', 3, '949014744902702726', 'Rm. 48, 3-19-3 Shimizu, Kita Ward, Nagoya, Japan', '1993-01-28', 0, 0, 'waimans', '2015-03-19', 'swm', '2003-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS561934306779', 'Martin Munoz', 0, '+1 212-244-0615', 1, '018297996711666469', '138 West Houston Street Apartment 32, New York, NY 10014, United States', '1997-11-12', 0, 0, 'mamunoz', '2005-09-01', 'munozmart', '2001-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS662524024939', '工藤和真', 1, '+86 20-143-6363', 0, '786851198083893947', '中国广州市天河区天河路726号6栋', '1988-01-06', 0, 0, 'kudka', '2018-05-01', 'kudokazuma925', '2020-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS894202572675', 'Donna Morales', 1, '+1 213-401-1590', 3, '835935087718496689', '945 Sky Way Apt 38, Los Angeles, CA 90043, United States', '1998-08-23', 0, 0, 'morales9', '2015-07-19', 'md1021', '2005-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS695465055495', '陳麗欣', 1, '+81 90-2400-5603', 0, '098369993963894572', '50F, 1-6-17, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1996-01-03', 0, 0, 'lychan', '2017-01-21', 'lychan', '2000-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS218673817808', 'Connie Mcdonald', 1, '+81 74-698-7016', 1, '705558740458729062', '37F, 3-9-20 Gakuenminami, Nara, Japan', '1997-12-12', 0, 0, 'mconnie', '2014-01-15', 'cmcdonald', '2005-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS295616950065', 'Laura Rogers', 0, '+44 5597 464532', 2, '081516837645961346', 'Unit 49, Oxford Eco Centre, 976 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1988-10-29', 0, 0, 'laurrog', '2014-09-14', 'rogersl', '2021-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS816328355329', '譚國賢', 1, '+81 11-244-5432', 1, '187657181370910864', '36-kai, 5-2-7 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-08-06', 0, 0, 'kwokyinta46', '2010-03-03', 'tamky', '2019-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS127079967352', '小山光莉', 1, '+1 212-884-0945', 1, '489198152018355413', '288 West Houston Street Suite 40, New York, NY 10014, United States', '1991-05-25', 0, 0, 'koyamh', '2010-04-09', 'koyamahikar1223', '2009-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS384334606430', '袁頴璇', 0, '+44 (121) 786 1409', 4, '717490859862513029', 'Flat 35, 152 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1998-06-28', 0, 0, 'wingsuen7', '2012-06-04', 'yuenws', '2010-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS684257583510', '池田樹', 1, '+81 74-497-5948', 0, '113901574510834963', '49F, 6 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1990-02-10', 0, 0, 'itsukiikeda', '2002-12-29', 'itsuki417', '2012-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS997144792017', 'Jesus Nichols', 0, '+86 21-7638-4948', 2, '836477393151321551', '中国上海市浦东新区健祥路230号17号楼', '1995-06-07', 0, 0, 'jesusnichols', '2004-07-15', 'nicholsje422', '2009-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS145293806174', '工藤翼', 1, '+81 52-650-8654', 0, '251079830996095218', 'Rm. 27, 1 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1987-05-26', 0, 0, 'kudtsuba', '2006-02-28', 'tkud', '2000-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS657241666721', '應思妤', 1, '+44 5794 900598', 2, '142912708630381058', 'No.4 Main building, 75 Redfern St, Liverpool, L20 8JB, United Kingdom', '1990-06-04', 0, 0, 'yisy', '2002-05-08', 'syying225', '2008-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS495420465903', '中野葵', 1, '+1 213-229-5705', 2, '412565888920493027', '264 Sky Way Suite 37, Los Angeles, CA 90043, United States', '1994-11-11', 0, 0, 'nao', '2012-09-06', 'anakan729', '2000-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS728168099135', '彭心穎', 1, '+1 718-476-9620', 4, '064235427193164119', '749 Columbia St Apartment 17, Brooklyn, NY 11231, United States', '1993-12-21', 0, 0, 'sumwingpang', '2003-04-27', 'pasumwing', '2006-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS046279264987', 'Alice White', 1, '+81 66-880-0825', 0, '629716785682795906', '日本おおさかし西成区天神ノ森二丁目1番11号4階', '1991-08-07', 0, 0, 'whia3', '2019-11-27', 'alicwhite', '2004-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS157110071431', 'Phillip Barnes', 1, '+44 (116) 589 0072', 1, '938079075349520386', 'Flat 15, 380 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1993-01-16', 0, 0, 'barnesphi55', '2010-02-06', 'phbarnes', '2014-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS254155439072', 'Nathan Adams', 0, '+86 172-3587-5706', 0, '900805991492836134', 'No.6 building, 867 68 Qinghe Middle St, Haidian District, Beijing, China', '1998-12-08', 0, 0, 'adamsnath', '2009-04-20', 'adamsnathan3', '2008-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS483885297927', 'Marvin Kennedy', 1, '+81 70-6773-7544', 4, '148823770642616933', '日本おおさかし平野区加美東四丁目9番6号49号室', '1987-10-29', 0, 0, 'mark', '2005-10-11', 'mark', '2018-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS084788698448', '许安琪', 1, '+86 164-8236-7164', 0, '775475423284015612', '39F, 958 028 County Rd, Yanqing District, Beijing, China', '1992-03-24', 0, 0, 'xuanqi01', '2014-03-10', 'anqixu', '2014-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS495997912318', '小島聖子', 0, '+81 70-0088-3432', 1, '758244086059568682', '日本おおさかし近江堂一丁目7番8号42号室', '1988-10-29', 0, 0, 'kojima52', '2011-08-20', 'kojima9', '2017-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS262480447349', '餘慧儀', 0, '+86 188-2243-0943', 1, '835450237915000074', '中国中山紫马岭商圈中山五路811号31栋', '1985-04-24', 0, 0, 'waiyee04', '2018-12-24', 'waiyeeyue', '2003-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS598214869800', 'Louise Collins', 0, '+86 20-4049-0491', 1, '839221049921867169', 'No.11 building, 943 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1996-03-14', 0, 0, 'louise8', '2014-05-05', 'louise1213', '2017-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS916660635246', '福田翼', 1, '+81 3-1974-1630', 2, '310114649223400346', '19F, 1-5-12, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-09-23', 0, 0, 'fukudat1992', '2020-09-10', 'tsubafu', '2020-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS268212957317', '小島美咲', 0, '+86 151-5726-5090', 4, '642332958476828775', 'Room 46, 16 Yueliu Rd, Fangshan District, Beijing, China', '1989-12-01', 0, 0, 'mkoj', '2019-06-21', 'misakojima202', '2004-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS626149376684', 'Teresa Simmons', 0, '+81 70-6261-8451', 0, '668934079652819374', '13-kai, 1-5-1, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1996-10-15', 0, 0, 'siteres97', '2010-02-14', 'teresasimm', '2012-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS903321892869', 'Rebecca Hamilton', 1, '+81 90-9460-0719', 3, '876680611297607937', '日本札幌豊平区豊平三条十三丁目3番20号13階', '1987-12-28', 0, 0, 'hamilton1011', '2007-10-26', 'hr8', '2016-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS434216942238', 'Sheila Ortiz', 1, '+86 164-0387-7247', 3, '177751917659284318', '中国中山京华商圈华夏街759号16栋', '1997-05-16', 0, 0, 'ortshe', '2019-09-12', 'sheilaort1031', '2003-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS407876406288', '孙睿', 0, '+81 66-787-8735', 3, '740059206198198924', 'Rm. 5, 4-9-18 Kamihigashi, Hirano Ward, Osaka, Japan', '1996-11-29', 0, 0, 'ruisun', '2013-04-01', 'ruis', '2016-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS638757392165', 'Edna Cox', 0, '+81 52-393-2463', 1, '576089661542757706', 'Rm. 11, 2-5-18 Chitose, Atsuta Ward, Nagoya, Japan', '1992-02-26', 0, 0, 'edna10', '2001-04-20', 'ednaco409', '2005-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS110406142560', 'Scott Lewis', 0, '+86 181-5796-9449', 2, '566275849844609155', '中国上海市闵行区宾川路42号1室', '1989-06-01', 0, 0, 'lewis109', '2016-02-29', 'scottlewis1107', '2004-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS715512297960', '蒋岚', 1, '+44 (1223) 48 8770', 1, '547323353528419880', 'Block 15, 859 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1997-02-07', 0, 0, 'jianglan', '2008-04-25', 'jianlan', '2013-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS676284517770', '青木湊', 1, '+86 179-1667-8978', 1, '372553441162224224', '中国北京市東城区東直門內大街163号华润大厦3室', '1992-11-26', 0, 0, 'aokiminato', '2018-09-05', 'miaoki', '2014-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS285998729323', '區詩君', 0, '+81 3-5025-4014', 2, '921152237651799279', '日本東京中央区銀座三丁目12番2号3階', '1997-04-04', 0, 0, 'skau63', '2001-07-29', 'szekwan323', '2017-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS802079417704', '桜井優奈', 0, '+81 90-5571-3242', 1, '191901269995983604', '8-kai, 2-1-6 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1988-09-23', 0, 0, 'sakuyu', '2017-11-29', 'ysakurai', '2003-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS091355457170', '廖祖兒', 0, '+44 (121) 144 4425', 2, '441851800619106170', 'Block 26, 404 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1985-03-01', 0, 0, 'choyee10', '2010-10-17', 'lcho8', '2014-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS551265142569', 'Kathleen Snyder', 0, '+86 760-522-3841', 2, '786402141439232851', '中国中山乐丰六路524号41室', '1993-03-28', 0, 0, 'kathlsnyder', '2000-03-12', 'ks7', '2012-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS597850073292', '韩致远', 1, '+81 90-7687-6257', 3, '395880048982682187', '日本札幌清田区真栄四条五丁目19番8号21階', '1988-11-27', 0, 0, 'hanzh', '2013-09-12', 'zhiyuan5', '2021-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS138859622536', '原田陽菜', 0, '+81 80-6127-6309', 1, '601134318275009082', '日本おおさかし平野区加美東四丁目9番12号9階', '1992-07-31', 0, 0, 'hharada', '2007-03-08', 'hhar728', '2016-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS478299890059', '藤田百花', 0, '+81 52-897-0356', 3, '082373317994704900', 'Rm. 20, 20 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-10-04', 0, 0, 'mfu', '2010-08-05', 'mfu', '2002-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS754036074287', '島田大地', 0, '+86 755-3170-9307', 2, '373328617720743173', '中国深圳龙岗区学园一巷562号18栋', '1989-06-26', 0, 0, 'dshimada9', '2006-12-21', 'shimada1', '2013-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS575389515481', '王家強', 0, '+86 185-3013-4247', 3, '584323176212024671', 'No.26 building, 649 Shanhu Rd, Dongguan, China', '1986-03-07', 0, 0, 'wkk', '2002-08-17', 'kkwon', '2020-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS909720886761', '薛仲賢', 1, '+81 74-445-4809', 3, '610420121367060948', '日本ならし西大寺赤田町一丁目7番7号4階', '1990-05-27', 0, 0, 'chungyin80', '2005-12-30', 'chusit', '2007-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS499968585346', 'Maria Gordon', 0, '+1 312-470-2629', 2, '217225277265610452', '363 North Michigan Ave Apt 41, Chicago, IL 60611, United States', '1991-01-24', 0, 0, 'gordonmaria', '2007-07-03', 'gormaria', '2009-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS140520324164', '谢宇宁', 1, '+81 66-402-0100', 2, '642124770769518011', '日本おおさかし近江堂一丁目7番12号34号室', '1994-07-08', 0, 0, 'xieyuning1007', '2001-07-24', 'yxie', '2003-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS141160253784', '袁祖兒', 1, '+86 20-706-7592', 1, '651548606863416452', '中国广州市越秀区中山二路940号6号楼', '1991-08-24', 0, 0, 'choyee1120', '2014-04-08', 'ychoyee', '2002-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS127171686408', 'Mario Wilson', 0, '+44 5610 845005', 1, '808589745651918511', 'No.48 Main building, 47 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1987-08-01', 0, 0, 'mario819', '2007-02-15', 'wilsonm1941', '2005-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS498495941752', '樂發', 1, '+81 90-2312-7242', 1, '847583375537983110', '日本東京千代田区丸の内一丁目6番18号31号室', '1988-01-18', 0, 0, 'lfat927', '2020-02-26', 'lokfat', '2014-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS389094224100', '梅慧敏', 0, '+86 20-4903-9339', 1, '833167136112504911', '中国广州市天河区天河路72号46栋', '1996-08-21', 0, 0, 'muwm', '2001-09-16', 'muiwaima105', '2017-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS668939211735', '董震南', 0, '+81 80-8874-7396', 3, '972537064005757865', '25F, 3-15-1 Ginza, Chuo-ku, Tokyo, Japan', '1985-07-05', 0, 0, 'zhedong', '2010-05-23', 'donzhennan', '2003-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS385635070340', '山田健太', 1, '+86 140-5681-4331', 0, '910785920914307648', '中国深圳福田区深南大道185号40栋', '1990-08-08', 0, 0, 'kentay', '2017-07-07', 'kenta1963', '2003-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS007518779584', '許朝偉', 0, '+44 (116) 445 8788', 3, '581878453726362168', 'Block 16, 914 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1991-10-15', 0, 0, 'cwhui83', '2005-08-19', 'huicw626', '2005-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS020836806252', '韩嘉伦', 1, '+44 (121) 838 9210', 1, '885913656190731625', 'Unit 8, Oxford Eco Centre, 947 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1999-02-22', 0, 0, 'hjialun9', '2007-04-30', 'jhan7', '2018-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS230991124226', '野村樹', 1, '+81 80-7044-4985', 2, '808594556256841040', '日本札幌白石区菊水三条五丁目4番5号6号室', '1986-03-11', 0, 0, 'nomuraitsuki', '2016-06-07', 'noitsuki', '2002-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS439708475346', '韓天榮', 0, '+1 838-843-1964', 4, '532511124876206634', '383 Central Avenue Apt 5, Albany, NY 12205, United States', '1996-12-25', 0, 0, 'twh9', '2016-05-06', 'hantw', '2018-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS134563912088', 'Gerald Green', 1, '+81 90-1699-8793', 3, '867470806197338112', '日本札幌中央区宮の森四条六丁目1番8号38階', '1990-02-26', 0, 0, 'green19', '2020-11-08', 'gerald308', '2021-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS001108449127', '谢宇宁', 1, '+86 177-4111-3174', 0, '668055710115249673', '中国广州市白云区小坪东路115号22楼', '1986-12-25', 0, 0, 'yuningxi95', '2003-12-15', 'xieyuning', '2014-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS513432966418', '崔璐', 1, '+44 (1865) 48 4697', 0, '419048659024407800', 'Block 18, 471 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1998-06-22', 0, 0, 'cuilu', '2004-11-20', 'clu', '2015-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS774295001321', 'Andrea Green', 0, '+86 28-6449-0554', 4, '172950418515161966', '中国成都市成华区玉双路6号982号华润大厦9室', '1985-05-15', 0, 0, 'greenandre5', '2019-01-22', 'andreagreen', '2010-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS217522147103', '曹璐', 1, '+44 7841 242218', 2, '805051686626569293', 'Unit 33, Oxford Eco Centre, 782 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1993-07-10', 0, 0, 'caolu620', '2019-10-09', 'cl102', '2017-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS137479358459', '曹岚', 0, '+86 769-709-7985', 2, '401300067980229951', '中国东莞坑美十五巷256号8楼', '1990-10-14', 0, 0, 'cao1', '2001-09-01', 'lan415', '2004-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS868415645325', '中山七海', 1, '+44 (151) 205 5011', 3, '788093218306020521', 'No.48 Main building, 527 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-03-16', 0, 0, 'nanan', '2002-02-20', 'nanaminak', '2001-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS528298509813', '薛小慧', 0, '+81 3-6166-1871', 1, '105977526572222407', '日本東京中央区銀座三丁目12番1号40号室', '1990-12-05', 0, 0, 'sit512', '2003-09-29', 'siuwai3', '2004-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS076016725840', '秦安琪', 1, '+81 74-339-7266', 3, '442996745050785725', '20-kai, 1-7-19 Saidaiji Akodacho, Nara, Japan', '1991-01-07', 0, 0, 'anqiq9', '2007-05-08', 'qinanqi527', '2008-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS641191880310', 'Clarence Ferguson', 0, '+1 838-439-4272', 1, '553147425367485769', '763 State Street Suite 13, Albany, NY 12203, United States', '1987-01-25', 0, 0, 'clarence7', '2014-11-16', 'feclarence', '2003-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS784835423801', '邱秀英', 0, '+81 52-558-3404', 0, '284396628299275722', '日本なごやし守山区瀬古東二丁目171番6号44号室', '1995-07-23', 0, 0, 'xqiu', '2014-06-24', 'xiuqiu2', '2005-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS789309033733', 'Jacob Gonzales', 1, '+81 80-8550-1973', 0, '029396623357455536', '日本ならし西大寺赤田町一丁目7番5号25階', '1995-08-15', 0, 0, 'jacobg', '2012-04-15', 'gojacob', '2000-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS032927089404', '常璐', 1, '+86 755-1033-7280', 4, '293922562309235069', '中国深圳罗湖区清水河一路413号46楼', '1994-11-04', 0, 0, 'changlu1117', '2001-08-20', 'luchan1224', '2012-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS189533868636', 'Wanda Lewis', 1, '+44 7118 561265', 3, '424766367680797809', 'Unit 41, Oxford Eco Centre, 333 Hanover Street, London, W1S 1YD, United Kingdom', '1990-02-20', 0, 0, 'wanda1102', '2020-09-06', 'lewis1', '2014-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS309921264953', '钱子异', 1, '+86 156-1011-8798', 2, '467530806802493649', 'No.10 building, 586 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1988-01-03', 0, 0, 'qziy', '2013-10-20', 'qianziy407', '2016-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS087033241372', '藍發', 1, '+44 7372 422553', 2, '042326142722203363', 'Flat 34, 69 New Street, Birmingham, B2 4DB, United Kingdom', '1994-01-21', 0, 0, 'fatlam', '2002-05-30', 'falam9', '2017-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS480443774092', '福田蓮', 0, '+1 212-942-1941', 1, '077005091485668898', '552 Bank Street 3rd Floor, New York, NY 10014, United States', '1990-07-12', 0, 0, 'fukudren01', '2021-01-17', 'fren', '2012-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS094198675325', 'Victoria Rose', 0, '+86 21-975-2608', 2, '133458607055618642', '中国上海市浦东新区健祥路27号36室', '1995-12-03', 0, 0, 'rosev', '2015-05-18', 'victoria7', '2009-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS424099637418', 'Lois Reynolds', 0, '+1 213-773-2555', 4, '101635921858243941', '939 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1985-11-22', 0, 0, 'reynoldsloi', '2008-09-01', 'reynoldslois', '2016-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS491266446037', '中野百恵', 0, '+81 52-530-1247', 1, '069407417941201073', '24F, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1996-06-28', 0, 0, 'nakano6', '2000-01-31', 'mnakan1102', '2021-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS549368078857', '莫仲賢', 1, '+81 3-8924-5082', 3, '093304939323812240', 'Rm. 43, 3-15-9 Ginza, Chuo-ku, Tokyo, Japan', '1985-04-13', 0, 0, 'cymok', '2019-05-06', 'cymok56', '2007-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS855803219884', '毛家明', 1, '+86 143-7313-8179', 1, '215723137889405054', '1F, 613 East Wangfujing Street, Dongcheng District , Beijing, China', '1985-03-24', 0, 0, 'kmmo', '2006-12-09', 'kaming124', '2021-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS356933573205', '姚玲玲', 1, '+81 11-132-4693', 1, '256420642409786883', '日本札幌白石区菊水三条五丁目4番19号47階', '1989-01-05', 0, 0, 'linglingye', '2019-09-10', 'llyeow', '2012-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS161682267311', 'Edna Thomas', 1, '+86 151-3040-9920', 1, '595171432375189415', '中国成都市成华区双庆路291号华润大厦35室', '1989-08-17', 0, 0, 'thomasedna', '2004-10-13', 'et219', '2006-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS738516838850', '中島蓮', 1, '+81 66-121-3154', 1, '668314956060563786', '44-kai, 2-1-17 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1996-02-02', 0, 0, 'nakajima804', '2014-07-08', 'nakajren', '2016-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS487174176522', '赵睿', 0, '+81 70-2279-9116', 1, '895135523351253353', '40F, 5-4-11 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1987-03-14', 0, 0, 'ruzhao8', '2014-04-29', 'zrui', '2019-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS312512967163', '鄭明詩', 0, '+86 193-1654-7395', 0, '459931179602817871', 'Room 21, CR Building, 864 Shennan Ave, Futian District, Shenzhen, China', '1990-02-26', 0, 0, 'mingsze910', '2003-01-09', 'chenmingsze', '2007-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS457322418427', '區慧儀', 0, '+86 138-9540-3297', 0, '040169225866440092', '中国成都市成华区二仙桥东三路628号9室', '1989-07-12', 0, 0, 'auwy3', '2007-02-16', 'awaiye', '2004-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS184643898021', '于晓明', 0, '+1 614-470-9185', 1, '254123539802927571', '542 East Alley Apartment 6, Columbus, GA 43201, United States', '1989-03-28', 0, 0, 'yuxiaoming1117', '2021-12-07', 'yuxia2', '2012-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS803636540694', 'Karen Washington', 1, '+86 161-6363-6578', 1, '172274519563255382', '中国广州市海珠区江南西路253号华润大厦43室', '1986-05-31', 0, 0, 'karenwash', '2002-04-08', 'karewashington05', '2009-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS155375176123', '鐘祖兒', 1, '+1 838-455-1738', 1, '391437806030902670', '299 Broadway 3rd Floor, Albany, NY 12207, United States', '1987-02-18', 0, 0, 'chung809', '2011-05-28', 'chchoyee', '2020-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS831532610005', '菊地湊', 0, '+44 (1223) 62 3042', 4, '867366913531875345', 'Flat 20, 584 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1987-05-31', 0, 0, 'kikuchi1956', '2018-02-11', 'kim', '2004-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS516023027199', '雷杰倫', 1, '+81 52-770-1198', 4, '830205952455800327', '9-kai, 2-5-14 Chitose, Atsuta Ward, Nagoya, Japan', '1997-07-26', 0, 0, 'chiehlunlo', '2016-08-01', 'chiehlunlou', '2004-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS980573544379', '上野美羽', 1, '+86 181-4767-5131', 1, '795533625402561997', '14F, 348 Jiangnan West Road, Haizhu District, Guangzhou, China', '1994-01-16', 0, 0, 'uenomiu', '2012-06-21', 'miuuen', '2008-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS976366076862', '郭詠詩', 0, '+44 (121) 944 1384', 3, '792126957614847089', 'Block 42, 392 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1988-06-16', 0, 0, 'wingszek', '2012-01-29', 'kwokwingsze', '2021-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS276114014115', '菅原百恵', 0, '+1 614-295-4429', 3, '943014599411306319', '466 Tremont Road Apt 5, Columbus, GA 43212, United States', '1999-03-01', 0, 0, 'sugawaramomoe', '2012-02-28', 'msuga2', '2003-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS651096516212', '崔子异', 1, '+81 90-4716-9977', 3, '283243116400800140', 'Rm. 9, 6-1-16, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1990-09-09', 0, 0, 'cui4', '2015-08-02', 'cui16', '2001-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS736026476198', '李國權', 0, '+81 52-039-9393', 4, '979764946919160325', '日本なごやし北区楠味鋺三丁目80番17号24号室', '1993-12-24', 0, 0, 'leekwokkuen1209', '2008-01-12', 'lkk', '2020-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS402926638941', '福田瑛太', 1, '+81 52-152-3111', 3, '718566037171535338', 'Rm. 3, 3 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-08-25', 0, 0, 'fukudae', '2013-01-05', 'fukuda1020', '2021-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS084655449333', '吉田彩乃', 0, '+81 90-0677-9299', 0, '904277981806740910', '25-kai, 5-4-12 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-02-19', 0, 0, 'yoshida1118', '2010-10-23', 'ayo', '2016-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS316152917629', '林裕玲', 1, '+44 7391 106338', 2, '870139949407466054', 'Block 50, 585 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1989-09-19', 0, 0, 'lam59', '2018-02-05', 'yulingl', '2001-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS892887434228', 'Donna Jackson', 1, '+86 164-1169-9317', 3, '680532370664301303', 'No.28 building, 408 Jiangnan West Road, Haizhu District, Guangzhou, China', '1990-08-25', 0, 0, 'jacksondonna713', '2022-02-15', 'donnajac67', '2008-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS689746449947', '新井桜', 1, '+86 760-7302-2011', 3, '247914077699545081', '中国中山紫马岭商圈中山五路107号7室', '1998-09-04', 0, 0, 'sakuraa', '2017-01-11', 'arai9', '2004-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS523536622344', '谷口葉月', 1, '+44 5535 665826', 3, '218961708513819509', 'Flat 20, 67 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-02-21', 0, 0, 'hataniguchi', '2003-07-29', 'hataniguchi', '2012-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS362605735094', 'Jane Mendez', 0, '+86 20-7634-5584', 1, '424368269133141258', 'No.16 building, 352 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1988-01-31', 0, 0, 'jmende', '2009-03-19', 'janem90', '2006-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS500808704505', '小野拓哉', 1, '+44 7971 722859', 2, '917419176281557000', 'Block 1, 172 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1990-09-23', 0, 0, 'takuyao', '2019-12-06', 'tono6', '2017-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS532496481973', '吉田結翔', 1, '+44 (1223) 19 3796', 1, '536116054167741070', 'No.26 Main building, 15 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1992-06-06', 0, 0, 'yuitoyoshida6', '2018-10-08', 'yuitoyo', '2003-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS187453407698', 'Bruce Moreno', 0, '+86 20-6298-0301', 3, '313138025160708268', 'Room 31, 879 Jiangnan West Road, Haizhu District, Guangzhou, China', '1992-03-08', 0, 0, 'bruce10', '2002-03-12', 'moreno2', '2017-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS235984451368', '錢安娜', 1, '+81 11-924-7588', 1, '265003492924180068', '34F, 6-1-6, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1986-11-17', 0, 0, 'chinonna517', '2015-06-14', 'chinonna', '2000-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS765185133691', 'Bobby Gonzalez', 1, '+44 (20) 3173 0289', 1, '476634143015945043', 'Unit 18, Oxford Eco Centre, 796 Regent Street, London, W1B 2LX, United Kingdom', '1986-04-23', 0, 0, 'gonbobby603', '2005-11-15', 'bogonzalez', '2000-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS929393655259', '岡本明菜', 1, '+1 614-000-9867', 1, '943212972905546429', '393 Tremont Road Apartment 23, Columbus, GA 43212, United States', '1996-12-13', 0, 0, 'okamoto313', '2003-03-27', 'aokamoto', '2015-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS959877963119', '吴晓明', 1, '+1 718-495-0130', 4, '559789121099651746', '44 1st Ave Suite 20, Brooklyn, NY 11220, United States', '1989-02-12', 0, 0, 'wuxiaoming', '2003-08-22', 'wu3', '2019-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS544162495052', 'Eugene Wells', 0, '+44 (20) 1699 3174', 3, '401022318900292646', 'Flat 36, 891 Regent Street, London, W1B 2LX, United Kingdom', '1996-04-12', 0, 0, 'ewells', '2001-06-19', 'eugwell', '2001-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS600134345721', '魏晓明', 1, '+86 167-5933-3195', 0, '871947392340275682', '中国上海市浦东新区橄榄路213号华润大厦11室', '1989-08-25', 0, 0, 'wxia', '2008-02-20', 'weixia4', '2017-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS139057152975', '方發', 0, '+44 5577 793192', 2, '294082762801415948', 'Flat 13, 883 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1986-12-02', 0, 0, 'ffong', '2001-10-12', 'fongfa', '2009-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS202380589572', '餘杰倫', 1, '+81 66-016-9338', 2, '190766292592069349', '日本おおさかし平野区加美東四丁目9番11号7号室', '1988-04-02', 0, 0, 'yuecl', '2019-04-29', 'cly3', '2016-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS638478111848', '罗詩涵', 0, '+86 145-0597-7638', 4, '692222673319596737', 'Room 28, 210 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1986-02-06', 0, 0, 'luosh', '2017-01-15', 'shihan513', '2018-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS281399880635', 'Carmen Cole', 0, '+44 7576 887428', 2, '876948021182212014', 'No.41 Main building, 586 Pollen Street, London, W1S 1NG, United Kingdom', '1991-04-02', 0, 0, 'cco', '2001-07-09', 'carmencole722', '2003-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS694773108638', '馬家文', 1, '+86 149-3125-3024', 1, '409356260029030531', '中国北京市西城区西長安街331号23楼', '1990-12-20', 0, 0, 'makaman', '2016-06-19', 'kmma', '2001-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS888349675922', '藤田百恵', 0, '+1 330-390-4105', 3, '079656349028727906', '359 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1997-05-20', 0, 0, 'fum1121', '2002-05-26', 'momoef', '2007-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS156097759208', '小野美緒', 0, '+1 838-376-2721', 0, '524720462673664942', '129 State Street 3rd Floor, Albany, NY 12203, United States', '1991-11-15', 0, 0, 'mono', '2000-02-21', 'ono2', '2018-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS287998314630', '中川健太', 0, '+81 80-0617-5934', 1, '431820753982772720', '日本札幌中央区宮の森四条六丁目1番3号7号室', '1986-02-01', 0, 0, 'kentan', '2007-05-05', 'kentanakagawa', '2001-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS252852076877', '唐岚', 0, '+81 11-538-8975', 3, '461691036834996960', 'Rm. 15, 5-2-2 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1996-04-06', 0, 0, 'lantang5', '2008-07-17', 'talan8', '2018-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS068533075706', '赵子韬', 0, '+1 312-677-3632', 1, '984527235949880388', '182 North Michigan Ave Apt 18, Chicago, IL 60611, United States', '1998-02-11', 0, 0, 'zhao2', '2000-09-01', 'zhaozi', '2005-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS943195550214', '有村凛', 1, '+86 10-496-3460', 0, '504075595023858530', '中国北京市房山区岳琉路994号15号楼', '1998-10-18', 0, 0, 'rinarimu', '2021-07-27', 'rinarimura1014', '2009-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS587523043012', '何祖兒', 0, '+81 11-440-3301', 0, '340601694410756924', 'Rm. 44, 5-2-16 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-10-18', 0, 0, 'cyho', '2020-04-16', 'hocy', '2014-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS431164221563', '常睿', 0, '+1 212-946-0424', 4, '232264282006653219', '154 Fifth Avenue Suite 47, New York, NY 10017, United States', '1992-09-29', 0, 0, 'crui', '2019-08-28', 'changru', '2001-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS323751801377', '钱安琪', 0, '+44 5031 014920', 2, '498770928513039956', 'Block 13, 875 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1998-02-19', 0, 0, 'qiaa', '2018-06-30', 'aqian1025', '2014-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS696878164717', 'Frances Nelson', 1, '+1 212-730-2846', 2, '281948402275457660', '407 Bank Street Apartment 11, New York, NY 10014, United States', '1990-05-28', 0, 0, 'nelsofr', '2000-10-21', 'frances3', '2021-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS797262375559', '田村玲奈', 1, '+1 212-118-8552', 3, '246427730560487748', '832 Wooster Street Suite 24, New York, NY 10012, United States', '1990-08-24', 0, 0, 'tamuraren7', '2014-03-21', 'rtamura', '2003-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS658336836945', '内田陽菜', 0, '+86 173-8551-6149', 2, '126829476538925635', 'No.9 building, 151 Shennan Ave, Futian District, Shenzhen, China', '1986-03-18', 0, 0, 'hinauc', '2008-10-15', 'hinauch', '2015-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS391150499516', '苗明詩', 1, '+81 80-0740-6176', 0, '497471570719624985', '日本東京中央区銀座三丁目12番10号10号室', '1990-08-17', 0, 0, 'miumings7', '2011-11-12', 'mmingsze', '2016-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS452736389726', '菅原葵', 0, '+86 174-8056-8628', 2, '068833365695292922', 'Room 18, 242 Huanqu South Street 2nd Alley, Dongguan, China', '1987-06-04', 0, 0, 'aoi905', '2020-11-01', 'sugawaraaoi', '2009-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS935286599805', '村田涼太', 1, '+86 21-4665-0611', 2, '196792626282933988', '2F, 494 Binchuan Rd, Minhang District, Shanghai, China', '1991-06-12', 0, 0, 'ryotmurat913', '2019-07-10', 'rmura', '2015-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS285850119871', '新井凛', 0, '+81 52-708-3850', 3, '911841175048081533', '36-kai, 1 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1994-12-18', 0, 0, 'ar7', '2013-07-20', 'arair', '2018-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS115299667113', '葉慧琳', 0, '+86 10-789-5842', 2, '662979590661745294', 'No.6 building, 504 68 Qinghe Middle St, Haidian District, Beijing, China', '1998-03-04', 0, 0, 'waily511', '2013-01-16', 'wailam7', '2017-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS983313220431', 'Martha Schmidt', 0, '+1 330-489-3450', 4, '889817212436491917', '221 Collier Road Apt 20, Akron, OH 44320, United States', '1995-12-17', 0, 0, 'martha3', '2014-11-23', 'ms6', '2014-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS872704860483', '井上美咲', 0, '+86 10-5904-1906', 1, '716568897625726561', '中国北京市海淀区清河中街68号796号华润大厦27室', '1985-08-15', 0, 0, 'miinoue', '2001-11-09', 'mii', '2018-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS364381679964', '洪家強', 0, '+1 718-886-3760', 1, '664345813456525290', '651 Bergen St Suite 35, Brooklyn, NY 11217, United States', '1988-02-06', 0, 0, 'kakeunghung7', '2006-06-01', 'kakeung1', '2012-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS712382038545', '佐藤花', 1, '+81 3-6720-0458', 4, '376334501598225217', '日本東京港区東新橋一丁目5番2号47号室', '1997-04-19', 0, 0, 'satoh6', '2011-09-26', 'hanas1968', '2018-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS000702787232', '馮明', 0, '+1 838-479-5567', 1, '223081969310553191', '916 Lark Street Suite 8, Albany, NY 12210, United States', '1996-03-03', 0, 0, 'fmi', '2013-03-04', 'funming', '2012-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS771214003101', 'Karen Williams', 0, '+86 168-1809-9883', 1, '744025611165766586', 'Room 1, 418 Lefeng 6th Rd, Zhongshan, China', '1997-04-27', 0, 0, 'wikar', '2006-03-12', 'kwilliams', '2016-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS520842891489', '松田一輝', 1, '+44 7857 474866', 2, '262458096835835462', 'Flat 44, 46 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1996-04-15', 0, 0, 'mikki', '2013-09-21', 'ikkimatsu', '2020-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS336948804232', '丸山美羽', 0, '+86 195-3582-1029', 1, '987106455579624720', '中国北京市西城区复兴门内大街85号48室', '1994-08-10', 0, 0, 'maruyamami325', '2004-08-16', 'mimar', '2000-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS995725923015', '任祖兒', 1, '+81 80-4305-0241', 3, '040126741850241995', '43F, 1-5-2, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1987-07-31', 0, 0, 'choyeey6', '2012-08-01', 'yam12', '2007-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS109791885333', '孟晓明', 1, '+86 178-0561-1926', 3, '135288569927523720', 'No.28 building, 192 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1986-02-25', 0, 0, 'xiameng1029', '2014-01-28', 'mxi', '2010-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS362132598622', '杜秀英', 0, '+86 755-650-8944', 3, '598200446510149979', '中国深圳龙岗区学园一巷740号10栋', '1991-06-05', 0, 0, 'duxiuy', '2000-09-01', 'xiuydu', '2004-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS712365302857', '苑明', 0, '+86 169-1104-1060', 0, '818572841150797599', '中国成都市锦江区红星路三段573号1楼', '1988-12-23', 0, 0, 'ymin', '2019-12-07', 'mingyuen', '2019-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS344195990427', '鈴木陸', 0, '+86 181-6243-3327', 1, '465592557525339986', '24F, 804 Tianhe Road, Tianhe District, Guangzhou, China', '1988-07-06', 0, 0, 'rikusuzuki', '2005-04-09', 'riku10', '2006-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS666581732849', '森詩乃', 1, '+86 163-7624-0171', 3, '499865704944275807', 'Room 10, 451 Xiaoping E Rd, Baiyun , Guangzhou, China', '1992-10-01', 0, 0, 'moshino', '2000-08-08', 'shinom6', '2018-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS217105258741', '魏宇宁', 0, '+1 212-345-6600', 2, '909029463464059538', '272 Bank Street Suite 38, New York, NY 10014, United States', '1987-11-22', 0, 0, 'weiyu1020', '2020-08-16', 'wei3', '2012-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS353249489466', '藤原陽太', 1, '+86 193-6755-9018', 3, '893343984623083005', 'Room 26, 135 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1990-03-15', 0, 0, 'yotafujiw1940', '2015-07-29', 'yotafuj1', '2014-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS018686436896', '村田詩乃', 0, '+81 70-6372-3182', 0, '447446907982142950', '日本東京港区東新橋一丁目5番4号16号室', '1990-09-10', 0, 0, 'muratashino3', '2019-07-13', 'shinm', '2000-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS779315901339', '山崎結翔', 0, '+86 769-635-2311', 3, '802115890594385996', 'No.43 building, 297 Shanhu Rd, Dongguan, China', '1989-12-05', 0, 0, 'yyamazaki88', '2005-11-14', 'yyuito6', '2008-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS882907615951', 'Brian Ward', 1, '+44 7959 422937', 3, '454615204216011704', 'Unit 9, Oxford Eco Centre, 826 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1989-11-07', 0, 0, 'brianw', '2019-06-17', 'brward612', '2014-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS967470527369', 'Rita Marshall', 0, '+81 80-5252-1082', 0, '690414376220597536', '日本なごやし北区楠味鋺三丁目80番3号39階', '1996-05-13', 0, 0, 'marshallri', '2013-01-31', 'mrita2', '2017-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS866057090210', '冯詩涵', 0, '+81 80-7734-4399', 2, '359767025109859729', 'Rm. 13, 3-27-7 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1986-11-18', 0, 0, 'shihf', '2001-08-25', 'feng10', '2012-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS250974096946', 'Janet Reyes', 1, '+1 312-258-0379', 1, '536846808418374640', '357 Rush Street Suite 11, Chicago, IL 60611, United States', '1994-08-21', 0, 0, 'rjan', '2001-02-01', 'janetreyes', '2008-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS101804245507', '邱宇宁', 1, '+44 7146 750044', 1, '175767205196542657', 'No.30 Main building, 882 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1989-09-27', 0, 0, 'qiuyuni', '2014-04-07', 'yuniqiu', '2018-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS465540849335', '楊浩然', 1, '+81 90-4249-0595', 2, '363241895155178392', 'Rm. 50, 6-1-10, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1994-02-05', 0, 0, 'yeunghoyin', '2000-10-22', 'hoyinyeun', '2013-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS503545439681', 'Douglas Martin', 0, '+44 (116) 518 4156', 3, '639342334558825426', 'Flat 47, 24 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1985-01-19', 0, 0, 'dougmartin4', '2012-04-21', 'mdougl10', '2021-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS837982703400', '區發', 1, '+81 66-466-9719', 1, '133435906818769616', '39F, 1-7-4 Omido, Higashiosaka, Osaka, Japan', '1994-02-25', 0, 0, 'fau62', '2019-02-20', 'aufat', '2008-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS948734113215', '劉永權', 1, '+1 718-298-8085', 1, '959867448872549394', '109 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1996-01-31', 0, 0, 'lauwk99', '2001-12-17', 'wingkuenl', '2007-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS209948872993', '武田明菜', 1, '+44 5183 444083', 4, '286788591924163962', 'Unit 30, Oxford Eco Centre, 375 Hanover St, Liverpool, L1 4AF, United Kingdom', '1996-08-24', 0, 0, 'takakina', '2005-01-11', 'takeakin', '2018-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS687469834310', '福田花', 0, '+81 66-751-7803', 4, '693402596382782522', '43F, 1-1-7 Deshiro, Nishinari Ward, Osaka, Japan', '1999-02-12', 0, 0, 'hanfukuda7', '2002-02-01', 'hanafuku', '2012-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS247653261135', '松田美月', 0, '+86 155-8934-7344', 1, '383371504712519335', '中国东莞坑美十五巷203号华润大厦28室', '1994-06-23', 0, 0, 'mam', '2004-10-12', 'mitsukim', '2009-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS989041947133', '山崎陸', 0, '+81 90-1469-3328', 1, '311925988945940796', '日本おおさかし西成区出城一丁目1番19号34階', '1991-09-03', 0, 0, 'rikuya1941', '2008-09-25', 'yamazakiriku513', '2000-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS909990311227', '刘云熙', 0, '+81 70-3805-7425', 3, '375569420983133037', 'Rm. 6, 5-19-1 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1989-03-07', 0, 0, 'yunxiliu6', '2007-10-07', 'liyunx', '2004-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS396691738435', 'Emily Rose', 0, '+81 90-8074-0283', 2, '692159002457024274', '日本なごやし熱田区千年二丁目5番7号32階', '1996-10-01', 0, 0, 'emilrose', '2013-08-24', 'emilyr', '2007-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS544888141888', '贾杰宏', 0, '+86 20-6502-0825', 0, '628793173050270914', '中国广州市白云区小坪东路342号11栋', '1989-08-15', 0, 0, 'jj311', '2000-08-29', 'jiaj', '2001-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS093700576160', '桜井拓哉', 1, '+81 70-3976-0380', 1, '962376284586714058', '日本札幌豊平区豊平三条十三丁目3番7号47階', '1996-04-29', 0, 0, 'takuyasakurai', '2007-11-18', 'takuya1', '2018-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS461003284817', '梅朝偉', 0, '+81 90-5667-0828', 2, '290571307079277495', '日本おおさかし西成区天神ノ森二丁目1番3号10階', '1997-03-07', 0, 0, 'muichiuwai', '2003-04-15', 'chiuwaimui', '2021-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS549799338661', '阎子异', 1, '+86 173-0265-3955', 1, '083099022836444149', '中国成都市锦江区人民南路四段170号12栋', '1988-08-09', 0, 0, 'ziyiyan', '2013-03-25', 'ziyiya', '2009-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS963509029402', '何嘉伦', 1, '+81 66-057-7169', 0, '735939156664993680', 'Rm. 19, 2-1-14 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1993-10-12', 0, 0, 'jialhe6', '2017-08-19', 'hejial', '2019-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS301503303418', '狄明', 1, '+81 3-7046-6037', 2, '051938992650525515', '日本東京港区東新橋一丁目5番12号37階', '1998-03-31', 0, 0, 'ti51', '2011-07-15', 'mingt', '2019-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS026357928062', '有村凛', 0, '+1 718-329-3587', 2, '835957003105612377', '929 1st Ave Apartment 17, Brooklyn, NY 11220, United States', '1991-03-28', 0, 0, 'arimura201', '2020-06-25', 'arimura106', '2015-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS633418721960', 'Carrie Aguilar', 0, '+81 52-487-9474', 3, '180303636114814388', 'Rm. 50, 3-19-8 Shimizu, Kita Ward, Nagoya, Japan', '1994-07-15', 0, 0, 'aca1', '2021-05-01', 'aguilarcarri117', '2009-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS065461692632', 'Charles Coleman', 0, '+44 (20) 2484 7564', 0, '547232230045477806', 'Flat 31, 648 Hanover Street, London, W1S 1YD, United Kingdom', '1996-01-21', 0, 0, 'colemancharles', '2004-01-05', 'charlescol', '2002-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS208376322230', '朱云熙', 1, '+86 755-170-5409', 2, '280615599549326552', '13F, 680 Jingtian East 1st St, Futian District, Shenzhen, China', '1989-09-22', 0, 0, 'zhu1109', '2016-02-16', 'yunxiz1008', '2017-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS640122004270', '前田蒼士', 0, '+44 (1865) 20 0600', 2, '941827984215949317', 'No.17 Main building, 189 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1988-08-23', 0, 0, 'aoshi3', '2004-12-18', 'aoshimaeda', '2020-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS786850709722', '菅原明菜', 0, '+1 213-150-3148', 0, '933326987921176221', '897 Alameda Street Suite 41, Los Angeles, CA 90002, United States', '1987-08-20', 0, 0, 'sugawara1', '2011-03-28', 'akinasu', '2017-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS889772357168', '郝子韬', 0, '+86 193-7104-8299', 4, '339235761706874480', '中国北京市東城区東直門內大街824号华润大厦19室', '1987-10-19', 0, 0, 'hazitao7', '2018-10-31', 'zitaoha8', '2019-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS419942271561', 'Theresa Young', 1, '+1 213-894-5687', 4, '406780292861912003', '114 Grape Street Suite 14, Los Angeles, CA 90002, United States', '1994-06-03', 0, 0, 'theresayoung10', '2019-09-16', 'theresayoung12', '2008-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS439625445721', '汪嘉伦', 1, '+86 28-8011-4596', 2, '128706550392358703', 'Room 12, CR Building, No.997, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-04-16', 0, 0, 'wjialun', '2019-04-19', 'jialunwa', '2014-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS497803542157', '王子韬', 1, '+81 52-607-8478', 4, '032849429756981715', '日本なごやし瑞穂区河岸町四丁目20番5号39階', '1998-12-21', 0, 0, 'wanzitao', '2009-11-28', 'wzit', '2012-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS507706536547', '苏安琪', 1, '+81 3-6025-0337', 0, '126704713381513899', '日本東京品川区東五反田五丁目2番16号3号室', '1990-04-01', 0, 0, 'anqi72', '2021-07-15', 'su528', '2021-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS354292362900', '苑杰倫', 1, '+1 838-478-1507', 3, '199236301565698215', '224 State Street Suite 38, Albany, NY 12203, United States', '1990-09-03', 0, 0, 'yuechiehlun5', '2008-12-29', 'yuechieh3', '2018-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS740839287169', 'Eugene Martinez', 0, '+86 145-3966-1075', 1, '946925051679646013', '中国广州市越秀区中山二路272号华润大厦31室', '1989-09-16', 0, 0, 'eugenemart', '2013-02-09', 'em423', '2017-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS024803893695', '福田絢斗', 1, '+81 90-7013-2586', 2, '084632233007498681', '6-kai, 3-15-3 Ginza, Chuo-ku, Tokyo, Japan', '1985-10-11', 0, 0, 'fukuda1116', '2015-07-21', 'afukuda328', '2008-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS265234870998', 'Bruce Fisher', 0, '+81 66-845-0596', 2, '793927836875533350', '日本おおさかし平野区加美東四丁目9番9号47階', '1992-03-22', 0, 0, 'fishbruc315', '2015-05-23', 'bfisher55', '2009-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS691112037848', 'Edith Fisher', 0, '+86 21-549-2698', 3, '123425616243114467', '9F, 826 Binchuan Rd, Minhang District, Shanghai, China', '1998-08-27', 0, 0, 'editf', '2011-07-18', 'fied', '2011-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS520467152140', '太田玲奈', 0, '+81 66-386-3862', 3, '796918443598788021', '日本おおさかし西成区天神ノ森二丁目1番19号14号室', '1988-07-21', 0, 0, 'rota', '2014-07-13', 'renot', '2003-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS003650380243', '郭安娜', 1, '+1 614-682-8073', 0, '296142109289941169', '424 Diplomacy Drive Apt 16, Columbus, GA 43228, United States', '1997-01-06', 0, 0, 'kwok73', '2021-12-30', 'onna1948', '2006-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS232250925264', '伊藤大輔', 0, '+1 212-859-4861', 1, '849496586775942621', '888 West Houston Street Suite 11, New York, NY 10014, United States', '1996-06-10', 0, 0, 'itd1217', '2010-09-26', 'daisuke10', '2004-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS031423842455', '長谷川美羽', 1, '+81 74-049-4783', 3, '184977750861914108', '29F, 10 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1988-06-16', 0, 0, 'hmiu71', '2013-07-21', 'hasmiu89', '2005-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS818682511097', '松田葉月', 1, '+81 66-451-4870', 3, '521647702697244250', '12-kai, 1-1-15 Deshiro, Nishinari Ward, Osaka, Japan', '1987-08-08', 0, 0, 'matsuda1', '2010-02-22', 'matha', '2008-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS992352854837', '郭慧珊', 1, '+44 (151) 700 8654', 2, '178302842915916310', 'Block 49, 306 Redfern St, Liverpool, L20 8JB, United Kingdom', '1998-05-19', 0, 0, 'waisan68', '2015-08-15', 'wskwok', '2021-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS899599601592', '汪岚', 0, '+81 90-6613-7862', 3, '017449587519982197', '17-kai, 1-5-20, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1988-08-27', 0, 0, 'wanglan', '2019-02-20', 'wl7', '2015-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS708764058791', '杜致远', 0, '+44 (1223) 54 9107', 4, '488657101248975790', 'Flat 34, 207 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1990-05-12', 0, 0, 'zdu', '2006-05-19', 'duz', '2015-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS634262644469', '盧志明', 0, '+1 718-480-8718', 0, '122349053270703540', '381 Columbia St Apt 49, Brooklyn, NY 11231, United States', '1996-11-18', 0, 0, 'lo1962', '2003-01-20', 'lcm', '2021-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS829147065150', '工藤愛梨', 1, '+1 312-309-8500', 3, '531187344087681123', '651 Rush Street Apt 23, Chicago, IL 60611, United States', '1997-01-19', 0, 0, 'kairi', '2011-08-18', 'kudo1', '2015-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS288936197884', '姜杰宏', 0, '+86 755-8926-2500', 4, '403838429003159536', '中国深圳龙岗区学园一巷647号17室', '1996-10-05', 0, 0, 'jiejian', '2004-03-31', 'jiehongj', '2021-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS917759024170', '宮本桜', 1, '+81 80-0756-9017', 0, '333452027622435330', '日本おおさかし東住吉区東田辺三丁目27番4号9階', '1994-02-15', 0, 0, 'sakuramiya718', '2014-01-18', 'smiya3', '2011-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS225123483673', '钱杰宏', 1, '+86 755-2713-2002', 3, '943854798302318976', 'No.21 building, 733 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-08-22', 0, 0, 'qian5', '2006-07-29', 'jiehongq', '2019-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS689853608079', '原田健太', 0, '+86 149-6906-6713', 2, '242929068241393185', '36F, 899 Shennan Ave, Futian District, Shenzhen, China', '1995-03-12', 0, 0, 'harada506', '2002-12-06', 'haradkenta', '2021-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS293142921788', '楊家輝', 0, '+1 330-157-7015', 3, '135635133514716657', '57 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1998-08-26', 0, 0, 'kafaiyeung414', '2007-03-05', 'kafai1104', '2008-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS332842758433', '梁云熙', 1, '+44 5890 679973', 0, '867099261887567906', 'Flat 3, 840 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-06-23', 0, 0, 'yunxilia1', '2012-08-20', 'liangy', '2001-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS277354039998', '譚浩然', 1, '+1 718-094-2697', 2, '310145633316082951', '260 Bergen St Apt 20, Brooklyn, NY 11217, United States', '1985-11-10', 0, 0, 'tahy', '2000-12-31', 'tamhy44', '2002-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS454118778671', '坂本絢斗', 0, '+86 165-1856-4130', 1, '189751561084708191', '中国中山京华商圈华夏街707号23栋', '1998-04-14', 0, 0, 'ayatsakamoto', '2002-08-17', 'sakamotoayat', '2008-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS665044882602', 'Russell Stone', 1, '+1 838-625-0046', 0, '543367588354474357', '949 Central Avenue Suite 23, Albany, NY 12206, United States', '1997-11-08', 0, 0, 'stru118', '2005-12-08', 'russ', '2017-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS597138086672', '萧子异', 1, '+86 28-076-9677', 3, '304202884084580825', 'Room 30, CR Building, 575 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1997-04-30', 0, 0, 'ziyixiao6', '2015-03-22', 'ziyxiao4', '2015-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS226612466125', '山口玲奈', 0, '+44 5779 589367', 1, '546474846717975632', 'Block 13, 199 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1986-04-07', 0, 0, 'yaren01', '2005-03-17', 'renayamaguchi', '2020-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS182828784404', '江慧珊', 0, '+86 20-840-8224', 4, '148549153040549965', '21F, 97 Tianhe Road, Tianhe District, Guangzhou, China', '1996-09-10', 0, 0, 'kongws', '2015-06-25', 'kws', '2012-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS249284012749', '朱國權', 1, '+86 171-8341-5423', 2, '677784335376941336', 'No.46 building, 835 Jingtian East 1st St, Futian District, Shenzhen, China', '1989-09-07', 0, 0, 'chukwokkuen4', '2020-09-28', 'kwokch809', '2006-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS116412212830', '區小慧', 1, '+44 7058 315916', 4, '527769296885223937', 'Flat 28, 788 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1995-04-07', 0, 0, 'siuwaiau6', '2016-10-20', 'ausiu', '2009-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS486682036651', '蔡力申', 0, '+81 70-1426-1888', 2, '787708024560651865', '日本ならし学園南三丁目9番9号30号室', '1987-06-27', 0, 0, 'choi2', '2015-03-12', 'choiliksun2', '2010-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS378232587866', '吳詩君', 1, '+81 70-0169-3494', 0, '013476453571560632', '日本ならし学園南三丁目9番18号38号室', '1986-08-13', 0, 0, 'ng123', '2007-02-28', 'szekwan2', '2007-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS642221964279', '許國明', 0, '+44 (116) 058 4348', 3, '502196674560662432', 'No.34 Main building, 401 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1990-03-07', 0, 0, 'kwokminghui', '2015-05-31', 'kmhui59', '2016-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS093366992251', '竹内陽太', 0, '+81 90-3849-7089', 3, '790831979785658625', '日本ならし大和郡山市本庄町一丁目1番3号6階', '1989-09-10', 0, 0, 'yota9', '2017-04-08', 'takeuyot', '2017-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS124644302639', '江璐', 0, '+1 614-745-7221', 3, '712389031956970849', '312 East Alley Suite 31, Columbus, GA 43201, United States', '1991-01-24', 0, 0, 'ljiang', '2009-03-07', 'jianglu', '2001-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS279581781876', '劉慧琳', 1, '+86 162-0196-8287', 3, '684828019754649249', 'No.6 building, 945 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1994-04-17', 0, 0, 'lawailam', '2014-08-26', 'lau5', '2007-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS032480265485', '斉藤聖子', 1, '+81 70-8980-9484', 3, '673404940071202169', '20-kai, 2-5-20 Chitose, Atsuta Ward, Nagoya, Japan', '1991-05-30', 0, 0, 'seikosait', '2013-12-17', 'saito1951', '2003-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS085921285133', '方朝偉', 1, '+44 7269 300737', 4, '430237122297161402', 'Unit 6, Oxford Eco Centre, 628 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1988-01-03', 0, 0, 'cwfong', '2017-10-06', 'cwfong', '2019-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS247635521352', '有村美緒', 0, '+44 (161) 181 2345', 3, '752342500332909952', 'Block 30, 160 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-01-16', 0, 0, 'arimi14', '2006-11-20', 'arimurami', '2003-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS001291879607', '胡晓明', 0, '+81 80-4334-9247', 0, '848679754159005508', '14F, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1998-08-02', 0, 0, 'xiaoming9', '2018-08-10', 'hux', '2012-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS090738353165', '周國明', 0, '+81 52-747-7333', 1, '178745701747295371', 'Rm. 3, 3-19-4 Shimizu, Kita Ward, Nagoya, Japan', '1992-10-27', 0, 0, 'kmchow', '2019-07-15', 'chow64', '2005-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS219531557674', '上野光', 0, '+81 70-2138-2782', 1, '770887459684664459', '日本なごやし守山区瀬古東二丁目171番17号29階', '1998-06-02', 0, 0, 'uenohikaru', '2004-05-09', 'hu47', '2018-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS939184203048', '阎晓明', 1, '+86 151-8320-6354', 1, '826534650748866279', '中国中山天河区大信商圈大信南路29号华润大厦22室', '1992-12-01', 0, 0, 'yanx223', '2018-07-20', 'yaxiaoming', '2000-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS012605414431', '汤子韬', 0, '+81 3-0591-4801', 3, '288416250295672461', '48-kai, 1-5-13, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-08-06', 0, 0, 'tanzi', '2000-12-22', 'zitang', '2007-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS357989819587', '鄭家玲', 0, '+86 28-930-5624', 2, '505350261636236502', 'Room 22, 251 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1989-06-05', 0, 0, 'klcheng', '2017-09-05', 'chekaling', '2012-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS527621757465', '曹國權', 1, '+81 66-878-6816', 1, '938071456611939383', 'Rm. 12, 1-7-16 Omido, Higashiosaka, Osaka, Japan', '1987-03-10', 0, 0, 'cho1', '2012-09-07', 'chokw62', '2006-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS407129379974', '梁子韬', 1, '+1 213-162-1406', 0, '949196865939210596', '527 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1988-01-17', 0, 0, 'liangzitao1125', '2018-11-15', 'zil', '2003-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS081534425818', '罗宇宁', 1, '+81 52-912-7138', 2, '240127094336885039', '日本なごやし北区楠味鋺三丁目80番4号34階', '1990-12-31', 0, 0, 'ly10', '2018-09-07', 'yuningluo1115', '2008-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS850437187012', 'Peggy Aguilar', 0, '+86 178-5309-9143', 1, '865832533125570666', 'Room 38, CR Building, 476 Kengmei 15th Alley, Dongguan, China', '1991-12-10', 0, 0, 'peggyag', '2004-02-14', 'agpeg406', '2006-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS960168532707', 'Lois Jenkins', 1, '+1 330-729-0310', 3, '947979526638082603', '839 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1997-05-07', 0, 0, 'jlois', '2004-09-12', 'loisjenkins1230', '2000-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS694972725641', '桜井七海', 0, '+81 11-486-6256', 3, '297832720489259477', '31F, 6-1-17, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1992-12-05', 0, 0, 'sakunanami', '2016-02-27', 'sakurainanami', '2003-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS458234094395', '高發', 1, '+44 7986 245793', 1, '013149050388977191', 'No.33 Main building, 99 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1985-01-05', 0, 0, 'kaofat', '2002-10-20', 'kaofa3', '2008-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS198781334816', '村田健太', 0, '+81 90-7096-9084', 3, '311639712257677892', 'Rm. 33, 5-2-17 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-05-11', 0, 0, 'kmurata', '2011-08-01', 'muratak9', '2011-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS899172636357', '中山陽菜', 0, '+86 755-4795-4930', 2, '263034993948933594', 'Room 26, CR Building, 865 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1996-10-15', 0, 0, 'hinana', '2001-04-10', 'hina3', '2003-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS246555736771', '小島陽太', 1, '+81 80-2854-5512', 4, '825784148665224808', '3-kai, 5-2-1 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-10-02', 0, 0, 'yotkojima1127', '2014-05-07', 'yk1019', '2001-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS871658024770', '上田光莉', 1, '+86 10-9484-8859', 2, '538708928014188445', 'No.43 building, 991 Dong Zhi Men, Dongcheng District, Beijing, China', '1997-10-26', 0, 0, 'uehikari', '2017-08-18', 'hikaue', '2021-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS452582844778', 'Miguel Bailey', 1, '+86 147-1873-2980', 1, '513375312846270755', '中国成都市成华区玉双路6号454号24栋', '1986-05-19', 0, 0, 'mbailey', '2009-10-03', 'migubailey47', '2013-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS679066237397', '胡麗欣', 0, '+81 11-575-6036', 1, '812185610886775741', '日本札幌豊平区豊平三条十三丁目3番11号22階', '1989-08-27', 0, 0, 'wulaiyan', '2021-01-13', 'laiyanwu1103', '2013-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS872679476549', '橋本光', 1, '+81 52-623-7278', 2, '730941674342399003', '日本なごやし北区楠味鋺三丁目80番1号15階', '1996-05-02', 0, 0, 'hashimotoh221', '2020-01-12', 'hikaruhashimoto', '2020-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS515278569756', 'Rachel Gray', 1, '+86 10-2984-5572', 1, '477196410252459230', 'No.16 building, 489 Sanlitun Road, Chaoyang District, Beijing, China', '1989-12-07', 0, 0, 'grayrachel209', '2003-10-25', 'rgray7', '2018-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS106751933564', 'Edith Black', 1, '+81 66-262-1369', 3, '865274589526465954', '25-kai, 3-27-10 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1997-01-26', 0, 0, 'blaced72', '2015-07-01', 'blackedith', '2001-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS893073823892', '蘇頴思', 1, '+86 769-2166-5860', 2, '851578102803117239', '中国东莞坑美十五巷929号华润大厦4室', '1996-01-02', 0, 0, 'sowi4', '2022-01-24', 'wingszes', '2004-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS022109966490', '石睿', 1, '+81 80-8180-6303', 0, '033209631274678769', '日本なごやし熱田区千年二丁目5番20号17号室', '1986-07-09', 0, 0, 'shiru', '2009-02-19', 'shrui', '2012-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS955022707718', 'Clifford Wood', 1, '+1 614-286-5106', 1, '460663665270463962', '738 East Cooke Road Apartment 8, Columbus, GA 43214, United States', '1988-02-27', 0, 0, 'cliffordwood', '2005-07-16', 'woodc', '2010-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS614234281412', '鄺德華', 0, '+1 213-240-0322', 2, '031361287533429222', '833 Wall Street Suite 43, Los Angeles, CA 90003, United States', '1997-08-22', 0, 0, 'twkwong115', '2011-11-04', 'takkw1944', '2010-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS729424296448', '孫家玲', 1, '+86 769-636-5477', 3, '716786294124130033', '中国东莞东泰五街97号27栋', '1995-06-28', 0, 0, 'hsuan2', '2011-02-20', 'kaling907', '2002-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS044795576678', 'Henry Collins', 0, '+86 21-263-3025', 2, '327485309394940508', 'Room 5, CR Building, 664 Jianxiang Rd, Pudong, Shanghai, China', '1986-03-12', 0, 0, 'henrycollins629', '2006-12-14', 'collins1010', '2021-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS278463537650', '長谷川架純', 1, '+44 5446 201589', 2, '899906691438318497', 'Block 12, 39 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1997-04-01', 0, 0, 'khasegawa', '2020-09-23', 'hasegawa1973', '2002-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS494630575601', '村上陽菜', 1, '+86 10-8587-8139', 2, '835657593169946769', 'Room 38, 732 68 Qinghe Middle St, Haidian District, Beijing, China', '1998-10-19', 0, 0, 'murakamih', '2013-02-14', 'murakamih', '2004-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS860040261304', '金安琪', 0, '+86 165-5200-8551', 0, '125544533476680016', 'No.2 building, 288 Jiangnan West Road, Haizhu District, Guangzhou, China', '1987-08-07', 0, 0, 'aj10', '2006-03-04', 'jinanqi', '2018-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS079573000741', '黄睿', 0, '+81 3-3127-5640', 1, '107463190707913919', '日本東京千代田区丸の内一丁目6番7号13階', '1992-11-24', 0, 0, 'ruihuang5', '2014-04-04', 'huangrui', '2017-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS094421189633', '上野陸', 0, '+86 155-3468-5298', 2, '340902915252336425', '中国深圳罗湖区清水河一路621号42栋', '1992-06-23', 0, 0, 'ueno53', '2019-09-11', 'rikuen', '2011-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS322540745056', 'Janice Sanchez', 0, '+86 21-0807-6471', 2, '051747287089795058', 'Room 27, 624 Middle Huaihai Road, Huangpu District, Shanghai, China', '1990-06-01', 0, 0, 'janicsanchez4', '2001-12-11', 'jas', '2009-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS940276484464', '清水和真', 1, '+81 11-585-3752', 4, '370209077108511113', '45-kai, 13-3-1 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1996-07-02', 0, 0, 'shkazuma', '2006-11-02', 'kazumashimizu509', '2001-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS728732553552', 'Sara Salazar', 0, '+81 3-8536-4619', 0, '275668724747618182', '日本東京品川区東五反田五丁目2番8号34号室', '1992-06-12', 0, 0, 'salazarsara', '2002-03-12', 'sarasala', '2003-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS581420049781', '青木百恵', 1, '+86 178-3061-0623', 2, '072457362605267265', '中国东莞环区南街二巷37号华润大厦21室', '1991-08-13', 0, 0, 'aoki10', '2020-12-15', 'am6', '2020-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS867292977239', '孔詩涵', 1, '+81 70-3803-6985', 4, '768034409208574238', '4F, 3-27-20 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1990-01-03', 0, 0, 'konshihan', '2012-11-05', 'shihkon', '2019-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS329470674373', '向德華', 0, '+81 52-810-0629', 2, '525373591304210933', 'Rm. 20, 14 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-01-23', 0, 0, 'takwahheung', '2015-08-21', 'takwahh', '2007-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS937538373564', 'Gerald Fernandez', 0, '+81 52-880-6412', 0, '839463238761153952', '日本なごやし守山区瀬古東二丁目171番10号20階', '1992-12-06', 0, 0, 'geralfer', '2008-08-25', 'ferngerald01', '2020-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS085865514038', '方發', 0, '+86 28-015-8584', 2, '510256787840128495', '中国成都市成华区双庆路581号7栋', '1989-09-23', 0, 0, 'fongfa', '2012-01-23', 'fatfong', '2005-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS418131717004', 'Shannon Weaver', 0, '+1 212-467-4610', 3, '399041018964314388', '638 Bank Street Apartment 10, New York, NY 10014, United States', '1989-11-18', 0, 0, 'shannonweav', '2017-03-15', 'weavershannon10', '2003-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS942960633516', '宋致远', 1, '+86 20-730-7911', 1, '978933921145912307', '中国广州市越秀区中山二路408号16栋', '1992-01-28', 0, 0, 'zhiyuan55', '2006-02-23', 'zhis3', '2020-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS310702927725', '尹云熙', 0, '+44 5309 079269', 1, '345333930270571134', 'No.24 Main building, 245 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1991-08-12', 0, 0, 'yunxi98', '2011-06-17', 'yunxi08', '2015-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS878458841394', '吕杰宏', 1, '+81 70-1576-7865', 3, '772095562617547671', '8-kai, 18 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-03-30', 0, 0, 'jil10', '2003-01-21', 'jilu1973', '2001-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS418347453357', 'Joyce Sanchez', 1, '+81 90-1473-6284', 1, '629420852732702112', '7F, 1-1-8 Deshiro, Nishinari Ward, Osaka, Japan', '1988-08-27', 0, 0, 'sanchezj', '2014-01-03', 'joycesanchez', '2016-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS526589190335', '江秀英', 1, '+81 70-1642-4266', 2, '196001843374703940', '日本おおさかし平野区加美東四丁目9番17号8階', '1990-01-30', 0, 0, 'xiuying2005', '2008-12-09', 'xiuyingjia85', '2012-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS192388604014', '今井一輝', 0, '+44 (1865) 90 3716', 3, '966429444165835686', 'Unit 19, Oxford Eco Centre, 279 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1996-12-06', 0, 0, 'ikimai9', '2017-08-02', 'imaikki606', '2012-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS302509606480', '小川光莉', 1, '+81 66-942-4189', 4, '761924053859799948', '日本おおさかし西成区出城一丁目1番19号28階', '1986-06-06', 0, 0, 'ogawahikar', '2004-08-29', 'oh1995', '2021-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS493221359715', 'Judy White', 0, '+81 74-862-9240', 3, '267427437022405761', '9F, 3-9-17 Gakuenminami, Nara, Japan', '1996-01-03', 0, 0, 'judy3', '2017-08-14', 'judywhite', '2001-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS976016097908', 'Willie Soto', 0, '+86 160-6823-2740', 2, '627664616030954516', '中国北京市西城区复兴门内大街161号华润大厦5室', '1991-06-15', 0, 0, 'sowil', '2011-12-09', 'swillie', '2002-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS678947198860', 'Norma Carter', 0, '+86 170-9818-6741', 0, '395884416607886898', '中国北京市延庆区028县道353号16楼', '1987-12-23', 0, 0, 'cartnorma52', '2015-07-05', 'carnorma', '2008-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS964966434486', 'Jessica Stevens', 1, '+44 5242 467658', 1, '995774503106666153', 'Flat 7, 991 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1993-10-15', 0, 0, 'jstevens', '2017-07-09', 'sjess', '2017-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS853536013497', '原聖子', 0, '+44 5523 569360', 3, '649048079050222435', 'Flat 31, 757 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1988-02-28', 0, 0, 'harase', '2004-09-16', 'hara1975', '2015-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS882660105021', 'Carmen Taylor', 1, '+44 (151) 783 9818', 3, '428654739026049771', 'Block 38, 200 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1994-04-03', 0, 0, 'tcarmen524', '2002-07-24', 'taylor113', '2013-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS162145318545', '孔杰宏', 1, '+86 20-817-5675', 3, '469351963621991270', '中国广州市越秀区中山二路246号31栋', '1987-09-08', 0, 0, 'kong4', '2021-05-04', 'jiehong428', '2008-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS203386347610', 'Marilyn Chavez', 1, '+81 52-788-2549', 1, '992281393789699350', '日本なごやし北区楠味鋺三丁目80番6号7階', '1989-02-27', 0, 0, 'marilynchav', '2002-12-22', 'marilyn1223', '2003-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS540734076155', 'George White', 0, '+1 213-366-3407', 1, '652747937708365311', '381 Grape Street Apt 22, Los Angeles, CA 90002, United States', '1990-04-18', 0, 0, 'george77', '2005-02-04', 'whitegeorge', '2000-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS982083895802', '呂榮發', 0, '+1 212-737-8951', 0, '058441548315455167', '222 West Houston Street Suite 47, New York, NY 10014, United States', '1991-10-17', 0, 0, 'lwf9', '2007-03-28', 'wflui', '2007-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS266554952841', 'Nathan Holmes', 1, '+81 80-0321-0873', 4, '364429945658993795', '日本なごやし守山区瀬古東二丁目171番13号34号室', '1989-08-07', 0, 0, 'holmn1', '2013-02-19', 'holmesn', '2010-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS011636316186', '李震南', 0, '+1 718-325-2337', 1, '494958337872541023', '282 Columbia St Suite 27, Brooklyn, NY 11231, United States', '1992-07-20', 0, 0, 'lizhennan', '2008-09-04', 'lizh', '2015-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS317510557734', 'Anne Diaz', 0, '+81 80-8210-1185', 3, '605565037021827638', '42-kai, 3-15-16 Ginza, Chuo-ku, Tokyo, Japan', '1990-11-27', 0, 0, 'dia1212', '2012-06-23', 'annediaz', '2004-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS263084384142', 'Lillian Jones', 0, '+86 21-559-9011', 2, '473681253167626784', 'Room 5, 37 Jianxiang Rd, Pudong, Shanghai, China', '1993-06-12', 0, 0, 'jol7', '2005-02-10', 'lillianj', '2005-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS317733151118', '高橋樹', 1, '+81 70-2299-0482', 1, '011857658842734310', '48F, 2-1-3 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1991-08-14', 0, 0, 'takitsuki', '2007-03-07', 'it9', '2022-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS364193298071', '斎藤架純', 1, '+86 139-0561-0967', 3, '771181517086485336', '中国中山天河区大信商圈大信南路256号46室', '1994-05-28', 0, 0, 'kasumi8', '2000-12-11', 'kasumis', '2016-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS073215254620', '魏杰宏', 1, '+81 70-8083-4541', 0, '346594917137892044', '日本札幌豊平区豊平三条十三丁目3番18号7号室', '1998-07-17', 0, 0, 'wjiehong2008', '2016-09-06', 'weiji20', '2015-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS247686198112', '吴子韬', 0, '+81 52-514-0807', 0, '875474015492257944', '日本なごやし北区楠味鋺三丁目80番9号43階', '1992-02-18', 0, 0, 'wuz205', '2020-04-29', 'zwu', '2007-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS110837240314', '方惠妹', 0, '+44 5346 566915', 1, '440465022301585884', 'Block 19, 222 Maddox Street, London, W1S 1PU, United Kingdom', '1985-05-05', 0, 0, 'fong208', '2005-07-19', 'huimeifong6', '2007-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS148382159552', '董璐', 0, '+86 755-785-7581', 2, '095728470190673835', 'No.28 building, 665 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1988-03-15', 0, 0, 'dong2', '2019-02-09', 'dlu6', '2019-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS142065953311', '黎秀英', 0, '+44 (151) 150 1844', 1, '313459972667925963', 'Unit 30, Oxford Eco Centre, 435 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1985-09-12', 0, 0, 'xiuyingli', '2011-03-18', 'lx10', '2010-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS144174320833', 'Anthony Harrison', 1, '+81 70-8703-5629', 1, '372137063145817468', '日本なごやし守山区瀬古東二丁目171番2号22号室', '1993-09-16', 0, 0, 'harrisonanthony7', '2014-05-28', 'harrisona', '2020-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS186128912113', '赵子异', 1, '+86 755-7452-2161', 3, '949765680482774682', 'Room 36, CR Building, 474 Jingtian East 1st St, Futian District, Shenzhen, China', '1998-03-10', 0, 0, 'ziyi9', '2012-08-30', 'zziy', '2018-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS294523138297', '邓璐', 1, '+86 132-8683-4462', 4, '118315000222577368', '23F, 857 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1990-12-27', 0, 0, 'denglu', '2001-09-19', 'deng708', '2002-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS230076475636', '宮本花', 1, '+81 3-1606-5583', 3, '025228004266674373', '日本東京千代田区丸の内一丁目6番11号39階', '1998-07-05', 0, 0, 'miyamotohan91', '2006-05-07', 'hana93', '2019-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS651711590838', 'Dennis Crawford', 1, '+81 90-0647-8076', 2, '391366113865643815', 'Rm. 44, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-03-21', 0, 0, 'crd', '2022-02-12', 'dennc4', '2013-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS943582382501', '顧惠妹', 0, '+1 212-585-8349', 1, '666573412220122767', '701 West Houston Street Suite 29, New York, NY 10014, United States', '1998-02-24', 0, 0, 'hmk', '2020-08-30', 'ku3', '2011-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS689636337026', '崔家輝', 0, '+44 7634 077068', 3, '635396951674858728', 'No.44 Main building, 699 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1997-08-26', 0, 0, 'choikafai', '2005-09-15', 'kafaichoi', '2005-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS112896203682', '程云熙', 1, '+86 21-4097-2421', 3, '361300602823982823', '中国上海市浦东新区橄榄路643号48楼', '1988-02-14', 0, 0, 'chyun', '2010-03-05', 'yunxi1944', '2009-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS728510233982', 'Joel Gonzalez', 0, '+86 755-498-6487', 3, '772654410527941774', '中国深圳福田区深南大道629号10号楼', '1991-05-19', 0, 0, 'joel77', '2016-09-19', 'joegonz', '2007-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS059474893897', '钟子异', 0, '+86 139-9458-9777', 2, '698137898629947880', '中国上海市闵行区宾川路653号华润大厦37室', '1998-08-26', 0, 0, 'ziz1020', '2014-06-08', 'zhongziyi4', '2016-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS603326164840', '福田彩乃', 0, '+86 10-487-6083', 2, '403180353031276868', '中国北京市延庆区028县道773号8室', '1997-07-16', 0, 0, 'ayafukuda40', '2010-03-10', 'ayano5', '2002-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS363391455264', '遠藤葵', 0, '+44 5928 737280', 1, '784856093534698059', 'Unit 16, Oxford Eco Centre, 377 Portland St, Manchester, M1 3LA, United Kingdom', '1988-09-13', 0, 0, 'endoaoi', '2012-05-26', 'endoaoi', '2001-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS539037958502', '岡田拓哉', 1, '+1 718-717-2785', 0, '662587390031394597', '534 Columbia St Apartment 9, Brooklyn, NY 11231, United States', '1990-07-13', 0, 0, 'takuyaokada13', '2016-01-10', 'tokada503', '2009-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS048845748368', '李詩涵', 1, '+1 213-845-7377', 2, '535266545761006418', '455 Figueroa Street Apartment 44, Los Angeles, CA 90037, United States', '1994-11-12', 0, 0, 'lishihan', '2007-07-19', 'lishi', '2004-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS581356997455', '菅原美咲', 1, '+86 20-6195-8440', 1, '750150010832610491', '中国广州市越秀区中山二路640号40楼', '1991-08-19', 0, 0, 'sugami2', '2021-01-30', 'missugawara', '2007-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS510291850539', '曾岚', 0, '+86 175-8218-8425', 3, '469369694640624540', '中国上海市浦东新区橄榄路51号45楼', '1989-02-27', 0, 0, 'lanz', '2012-11-26', 'zl8', '2016-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS175600003389', '邹震南', 0, '+81 3-4960-5172', 4, '331253604488845420', '日本東京千代田区丸の内一丁目6番1号13階', '1993-08-27', 0, 0, 'zhennan9', '2003-12-23', 'zouz', '2001-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS617473884673', '郭杰宏', 1, '+1 213-471-4676', 1, '953700939497771112', '837 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1998-01-11', 0, 0, 'jieg', '2015-10-05', 'guojiehong48', '2012-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS765428620147', '戚明', 1, '+81 52-498-0807', 2, '168660029919070946', '日本なごやし瑞穂区河岸町四丁目20番13号17号室', '1992-07-30', 0, 0, 'mingchic', '2020-08-18', 'ming6', '2009-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS988202105042', 'Pauline Kim', 0, '+1 330-626-2298', 2, '215607325119997753', '783 Ridgewood Road Suite 43, Akron, OH 44321, United States', '1991-02-05', 0, 0, 'kimpau5', '2011-03-16', 'kpa4', '2016-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS378450195904', 'Joshua Rodriguez', 0, '+81 3-0660-7774', 3, '921207336566214966', '日本東京千代田区丸の内一丁目6番6号9階', '1993-11-21', 0, 0, 'joshuarodriguez', '2018-04-02', 'josrodriguez', '2012-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS775873836443', 'Kathleen Cox', 1, '+86 20-342-5968', 0, '533410653640942428', '中国广州市海珠区江南西路643号11栋', '1985-09-25', 0, 0, 'kathcox', '2014-07-23', 'coxkathleen', '2007-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS412959816979', 'Marcus Gardner', 1, '+44 (1223) 64 7027', 0, '084070369377107987', 'Unit 42, Oxford Eco Centre, 638 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1996-08-10', 0, 0, 'marcus1019', '2000-07-13', 'marcusgardner', '2006-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS770956805231', '中野花', 1, '+86 140-3149-5576', 1, '335388787323510443', '中国成都市锦江区红星路三段925号11室', '1985-05-25', 0, 0, 'hnakano', '2007-07-23', 'hanan', '2020-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS553357687541', 'Catherine Hunt', 0, '+86 755-979-8986', 2, '817280687289721108', '中国深圳龙岗区布吉镇西环路274号28楼', '1991-04-16', 0, 0, 'catherine709', '2009-04-25', 'catherine1', '2013-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS595922690494', '林梓軒', 1, '+86 175-6243-8460', 1, '275324440199971895', '中国上海市浦东新区健祥路966号29楼', '1995-06-07', 0, 0, 'lth', '2009-11-18', 'lam74', '2010-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS152219332630', '柴田陽太', 1, '+81 90-0150-3418', 1, '484019097772774898', '日本なごやし北区楠味鋺三丁目80番4号41号室', '1991-08-23', 0, 0, 'yoshibata', '2001-10-23', 'yoshibata7', '2019-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS554085921559', 'Rose Herrera', 0, '+1 614-903-0974', 3, '149419400928294550', '113 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1995-06-01', 0, 0, 'herreraro', '2005-04-05', 'rher414', '2017-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS627170698942', '任梓軒', 0, '+81 11-332-8755', 4, '132288668477401017', '日本札幌豊平区豊平三条十三丁目3番15号33階', '1995-02-06', 0, 0, 'tszhin1', '2007-06-11', 'thyam', '2015-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS416587596470', '薛詩涵', 0, '+81 11-425-2382', 4, '691900664889871775', '41-kai, 13-3-2 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1990-01-06', 0, 0, 'shihx910', '2008-12-03', 'sxue1215', '2017-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS924035290147', '應梓晴', 0, '+81 70-3249-8496', 4, '281221243693031208', 'Rm. 47, 1-1-7 Deshiro, Nishinari Ward, Osaka, Japan', '1992-11-29', 0, 0, 'tszchingying17', '2018-10-08', 'ying4', '2002-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS606548901378', 'Nathan Hall', 1, '+81 70-9170-1245', 3, '835870420870005484', '日本おおさかし東住吉区東田辺三丁目27番6号14階', '1994-09-19', 0, 0, 'nathah2', '2011-10-28', 'hallna1995', '2015-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS989466236401', '羅志明', 0, '+86 10-523-0542', 2, '293698252593515507', '中国北京市东城区东单王府井东街468号5栋', '1985-07-09', 0, 0, 'lo1', '2004-11-07', 'lochiming', '2015-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS265283225111', 'Daniel Owens', 0, '+86 198-8645-7620', 2, '383141717297549569', 'Room 13, 16 Dong Zhi Men, Dongcheng District, Beijing, China', '1989-10-06', 0, 0, 'danieowen82', '2017-05-08', 'owensdaniel5', '2005-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS973102323935', '山下七海', 0, '+86 10-435-4075', 4, '489900720306353474', '中国北京市西城区复兴门内大街405号3楼', '1995-09-22', 0, 0, 'nanamy', '2021-06-22', 'nanamiyamashita', '2001-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS562989408003', '姜晓明', 0, '+86 171-7451-7614', 3, '027240280219158218', '中国上海市浦东新区健祥路355号9楼', '1993-04-27', 0, 0, 'jxiaoming', '2015-05-05', 'jiangx7', '2021-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS403092347202', '龙杰宏', 1, '+1 213-953-2113', 3, '751988498360519442', '400 Sky Way Apartment 43, Los Angeles, CA 90043, United States', '1999-01-22', 0, 0, 'longj', '2001-06-15', 'jilon', '2005-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS082514894930', '陈云熙', 1, '+86 10-818-9660', 1, '516068147008953453', 'Room 10, CR Building, 760 Yueliu Rd, Fangshan District, Beijing, China', '1989-04-01', 0, 0, 'chen2008', '2015-08-01', 'ychen', '2012-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS374205176113', '曾晓明', 1, '+1 213-373-9133', 2, '959737020496949077', '851 Alameda Street Apartment 47, Los Angeles, CA 90002, United States', '1994-10-18', 0, 0, 'zx1', '2013-12-09', 'zenxiaoming45', '2015-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS812839751752', 'Peggy Johnson', 0, '+81 90-7488-2266', 3, '538943019686536697', '日本なごやし熱田区千年二丁目5番19号43階', '1986-05-26', 0, 0, 'johnsp', '2021-06-19', 'johnsonpeg', '2010-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS276351114934', '林蓮', 1, '+86 165-7742-6122', 3, '198024440133112793', 'Room 5, No. 261, Shuangqing Rd, Chenghua District, Chengdu, China', '1994-03-19', 0, 0, 'hayashi1022', '2010-12-24', 'renh', '2003-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS871984143900', '三浦聖子', 1, '+81 52-971-3002', 0, '959963325022915055', '日本なごやし守山区瀬古東二丁目171番2号4階', '1991-12-28', 0, 0, 'seikom', '2006-08-19', 'seiko725', '2002-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS290045643670', '阎子韬', 1, '+44 7289 463727', 3, '458767097767092279', 'Unit 21, Oxford Eco Centre, 78 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1986-04-08', 0, 0, 'yanzita', '2011-09-09', 'zitaoyan1216', '2014-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS515218898722', '鄭思妤', 1, '+81 80-5908-0129', 2, '214730090261199825', '日本東京中央区銀座三丁目12番14号36階', '1998-09-02', 0, 0, 'chengszeyu1', '2019-03-29', 'szeyu68', '2015-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS180893943710', '段岚', 0, '+86 183-6224-5390', 3, '141605410603969470', 'Room 36, CR Building, 278 Hongqiao Rd., Xu Hui District, Shanghai, China', '1987-09-14', 0, 0, 'dlan', '2011-12-04', 'lan12', '2012-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS528767429566', '傅曉彤', 0, '+86 21-7491-5348', 1, '916335074933722402', 'Room 33, 14 Ganlan Rd, Pudong, Shanghai, China', '1990-10-14', 0, 0, 'htfu95', '2001-04-18', 'htf', '2002-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS709740203191', '孔致远', 1, '+81 74-807-3922', 1, '165481282843057655', '43-kai, 1 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1997-09-27', 0, 0, 'zhikong318', '2017-09-04', 'kongzhiyuan61', '2013-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS195566386211', '翁德華', 0, '+44 (121) 833 9979', 1, '571857726940992820', 'Unit 26, Oxford Eco Centre, 27 New Street, Birmingham, B2 4DB, United Kingdom', '1985-05-23', 0, 0, 'takwah1952', '2003-11-11', 'twyu', '2003-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS496317997035', 'Peter Flores', 0, '+1 838-771-9228', 4, '453423467124975628', '584 State Street 3rd Floor, Albany, NY 12203, United States', '1993-08-11', 0, 0, 'peter42', '2022-02-05', 'petflores', '2009-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS622775036682', '范子韬', 1, '+86 20-0968-7548', 3, '768565810517294577', '中国广州市海珠区江南西路335号47楼', '1993-01-14', 0, 0, 'fzitao', '2011-08-23', 'fanzitao', '2001-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS010935672658', '顾嘉伦', 1, '+1 838-126-7916', 0, '027330457628487873', '607 State Street Apartment 42, Albany, NY 12203, United States', '1998-09-29', 0, 0, 'guj', '2002-09-04', 'gujial', '2007-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS857563775351', '佐々木美羽', 1, '+86 134-6105-7945', 0, '851340746960650341', 'No.4 building, 500 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1997-08-23', 0, 0, 'sasaki4', '2005-06-16', 'sasakmiu', '2014-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS398883355317', '萧秀英', 0, '+86 755-2932-7154', 1, '147317184655342751', '中国深圳福田区景田东一街924号16栋', '1988-06-14', 0, 0, 'xiaoxiuying', '2012-05-25', 'xiuyingxiao', '2006-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS625449778390', 'Steve Graham', 1, '+44 5165 713400', 3, '677497646738858954', 'No.14 Main building, 128 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1997-10-27', 0, 0, 'grahas', '2017-10-25', 'grahams48', '2009-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS682470688639', '金子韬', 1, '+81 66-591-2106', 4, '831020562143208935', 'Rm. 49, 1-7-2 Omido, Higashiosaka, Osaka, Japan', '1986-06-08', 0, 0, 'zitjin', '2008-01-24', 'zitaojin', '2019-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS457545804388', '中山和真', 1, '+81 74-083-7949', 3, '769676489265971306', '49-kai, 13 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-01-01', 0, 0, 'kazun', '2015-12-15', 'nkazuma', '2002-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS535947738269', '叶子异', 0, '+86 28-2005-9133', 2, '988028941039257332', '中国成都市成华区双庆路621号27楼', '1986-12-11', 0, 0, 'yziy1989', '2012-05-13', 'yziyi', '2014-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS093710834380', '佘慧敏', 0, '+1 213-606-7897', 3, '387402824900939167', '132 Grape Street Suite 30, Los Angeles, CA 90002, United States', '1992-01-09', 0, 0, 'shehwaiman', '2015-03-26', 'waimans', '2004-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS894980065045', '江宇宁', 0, '+81 52-499-6117', 3, '310882063828933878', '29F, 2-5-7 Chitose, Atsuta Ward, Nagoya, Japan', '1996-11-28', 0, 0, 'yjian', '2016-12-30', 'jy2', '2020-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS466349602881', 'Jeff Hicks', 0, '+86 760-4485-2883', 2, '797854513325120956', 'No.23 building, 586 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1996-03-31', 0, 0, 'jhic', '2006-03-22', 'jeffh46', '2003-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS756122943719', '駱明詩', 1, '+86 20-5461-6586', 2, '582092417885799534', 'No.33 building, 201 Jiangnan West Road, Haizhu District, Guangzhou, China', '1994-01-04', 0, 0, 'mslok', '2014-08-25', 'mslok', '2021-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS956222597141', '黃梓軒', 1, '+86 180-5711-1973', 2, '061522884444821597', 'Room 42, 709 FuXingMenNei Street, XiCheng District, Beijing, China', '1997-09-24', 0, 0, 'thwong', '2017-03-28', 'thwon90', '2017-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS403542526279', '鄭心穎', 1, '+44 5780 637600', 1, '258365959295121698', 'Flat 39, 647 New Street, Birmingham, B2 4DB, United Kingdom', '1988-09-06', 0, 0, 'sumwingcheng1130', '2002-01-23', 'chengsw', '2009-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS059717890675', '蔡思妤', 1, '+86 10-1681-3584', 1, '521824070917148369', '15F, 677 West Chang''an Avenue, Xicheng District, Beijing, China', '1992-05-22', 0, 0, 'chosy', '2010-12-17', 'choi924', '2009-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS589062126243', '關安琪', 1, '+81 3-8916-9663', 1, '524816618138972537', '日本東京中央区銀座三丁目12番16号32号室', '1994-09-26', 0, 0, 'onkayk', '2009-11-12', 'kwanonkay', '2005-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS418800124628', '藤井蒼士', 1, '+86 20-236-7806', 2, '098520829517585633', 'No.40 building, 987 Xiaoping E Rd, Baiyun , Guangzhou, China', '1996-04-15', 0, 0, 'aosfuji', '2000-06-12', 'faoshi', '2017-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS273907951372', '姚安娜', 1, '+81 90-9260-1878', 1, '225182902161124800', '日本なごやし北区楠味鋺三丁目80番12号7階', '1991-11-02', 0, 0, 'yeowon2017', '2017-04-29', 'yeoonna', '2019-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS687803334775', '戴心穎', 1, '+1 212-463-6746', 0, '118205144458434359', '129 Fifth Avenue Apt 32, New York, NY 10017, United States', '1995-10-09', 0, 0, 'swda', '2002-10-14', 'swdai', '2004-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS251992253166', '中村大和', 1, '+81 80-8645-2091', 2, '065368836509467426', '45F, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1990-04-11', 0, 0, 'yamatona', '2020-02-17', 'yamatonak507', '2004-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS973557115599', 'Deborah Adams', 0, '+81 80-8667-4746', 2, '339979536058134051', '日本札幌豊平区豊平三条十三丁目3番13号46階', '1985-12-19', 0, 0, 'dadams', '2018-03-03', 'adamsd59', '2010-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS349974745166', '段嘉伦', 1, '+86 760-6730-5233', 3, '001587881943849390', '中国中山乐丰六路494号39室', '1989-11-04', 0, 0, 'duanjialun', '2020-03-11', 'duanj', '2014-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS231993515548', '赵岚', 1, '+81 80-8008-1687', 4, '805429970155472803', '日本おおさかし西成区天神ノ森二丁目1番5号31号室', '1990-10-22', 0, 0, 'lanz', '2018-11-20', 'zlan', '2013-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS025962823495', 'Christine Jimenez', 1, '+44 5860 338063', 0, '592142377324114330', 'No.42 Main building, 61 Sackville St, Manchester, M1 3BB, United Kingdom', '1993-06-22', 0, 0, 'christinej', '2006-11-25', 'chji314', '2000-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS581323111092', '楊杰倫', 1, '+81 90-3144-1086', 1, '186558625216166847', '41-kai, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-04-08', 0, 0, 'yeung428', '2015-03-02', 'chiehlunyeung108', '2018-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS354479065321', '橋本蒼士', 0, '+86 769-815-8793', 3, '709132329160415039', '中国东莞东泰五街155号48号楼', '1995-07-22', 0, 0, 'hashiaos10', '2008-09-26', 'aoshha', '2006-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS496187253866', 'Bruce Moore', 1, '+81 70-5252-8757', 0, '309963589678974552', '41-kai, 3-9-6 Gakuenminami, Nara, Japan', '1996-05-02', 0, 0, 'moore120', '2014-03-09', 'brumoo', '2011-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS709353426578', '高德華', 0, '+81 80-4063-2426', 1, '891704329926773178', 'Rm. 38, 3-19-20 Shimizu, Kita Ward, Nagoya, Japan', '1990-08-03', 0, 0, 'takwahkao403', '2006-01-22', 'kaotakwah', '2004-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS005215713553', '叶震南', 1, '+81 70-2537-4326', 3, '231703434891817790', '日本東京渋谷区代々木二丁目3番20号26号室', '1994-04-23', 0, 0, 'yezhennan', '2008-07-23', 'ye67', '2015-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS586685313648', '小野悠人', 1, '+1 718-975-8444', 1, '305655200596860286', '465 Nostrand Ave Apt 14, Brooklyn, NY 11216, United States', '1996-12-22', 0, 0, 'yono', '2001-01-13', 'onoyuto47', '2008-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS703939325537', 'Juan Jordan', 0, '+86 755-848-4724', 2, '856546957315285254', '中国深圳福田区深南大道262号27栋', '1993-03-20', 0, 0, 'jj9', '2020-12-12', 'jordanjuan4', '2009-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS504495151202', '房天樂', 0, '+86 755-6531-3482', 2, '572694711928655381', 'Room 2, CR Building, 67 Jingtian East 1st St, Futian District, Shenzhen, China', '1998-08-11', 0, 0, 'fotl719', '2016-06-21', 'ftl', '2009-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS784835041465', '江子韬', 0, '+81 80-6492-9422', 2, '463809734210168503', '日本東京渋谷区代々木二丁目3番11号31階', '1991-01-08', 0, 0, 'jzit', '2019-04-08', 'zjiang', '2004-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS495971593691', '吳朝偉', 0, '+86 755-121-4190', 1, '486174277347992465', '中国深圳罗湖区田贝一路706号华润大厦31室', '1985-01-30', 0, 0, 'ngcw', '2011-11-16', 'chiuwaing', '2006-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS934187582300', 'Justin Ferguson', 1, '+44 (161) 382 3026', 3, '853364740147464037', 'No.3 Main building, 585 Sackville St, Manchester, M1 3BB, United Kingdom', '1987-08-23', 0, 0, 'ferguju5', '2011-03-13', 'justin1207', '2010-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS934676203916', '谷口涼太', 1, '+81 52-923-0348', 1, '545898485394317458', '46-kai, 2-5-16 Chitose, Atsuta Ward, Nagoya, Japan', '1988-11-21', 0, 0, 'ryottaniguchi2', '2021-08-05', 'tanir224', '2010-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS965125964113', '岩崎紗良', 0, '+1 838-171-8233', 1, '852267364067478578', '763 Lark Street Apt 48, Albany, NY 12210, United States', '1990-02-28', 0, 0, 'sarai923', '2016-05-01', 'iwasakisara', '2018-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS699838632455', '赵云熙', 1, '+1 838-681-6673', 0, '781945934826217704', '56 State Street Suite 21, Albany, NY 12203, United States', '1996-04-01', 0, 0, 'yunxizhao6', '2004-01-22', 'zhaoyunxi1031', '2000-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS354604295670', '邵德華', 0, '+81 70-3365-6207', 0, '318523556534794624', '11F, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1997-10-05', 0, 0, 'takwah11', '2015-07-14', 'siutakwah', '2012-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS239568190793', '中島絢斗', 0, '+86 28-058-3783', 2, '490302960666517477', 'No.11 building, 633 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1991-01-29', 0, 0, 'ayatonaka', '2010-07-16', 'nakajima48', '2010-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS371970051754', '林家輝', 1, '+44 (121) 009 5095', 3, '950070194528662737', 'Flat 2, 379 New Street, Birmingham, B2 4DB, United Kingdom', '1993-03-16', 0, 0, 'kfl10', '2007-11-23', 'lakafai', '2020-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS542455847002', '金子桜', 0, '+86 21-2595-5351', 4, '235251274965386146', 'No.24 building, 570 Hongqiao Rd., Xu Hui District, Shanghai, China', '1992-04-18', 0, 0, 'sak', '2013-02-22', 'ksak', '2003-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS094943374071', 'Gregory Garza', 1, '+86 194-5525-8449', 2, '370678199214201377', '46F, 620 Jiangnan West Road, Haizhu District, Guangzhou, China', '1998-06-13', 0, 0, 'garza127', '2018-08-31', 'gregogarza', '2009-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS650988732454', '汪朝偉', 1, '+81 90-0671-9906', 1, '999465171024226978', '日本札幌豊平区豊平三条十三丁目3番10号22階', '1987-06-28', 0, 0, 'wongcw', '2005-05-02', 'chiuwaiwong', '2019-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS122907547402', '馬慧嫻', 1, '+86 164-1763-0614', 2, '625431562746546732', '中国北京市延庆区028县道298号华润大厦44室', '1985-11-29', 0, 0, 'mawh', '2021-05-18', 'mawaihan8', '2019-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS125939160312', 'Cindy Medina', 1, '+44 5657 980830', 1, '791855571822368009', 'Block 4, 452 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1998-04-23', 0, 0, 'medina1121', '2009-02-25', 'mcin', '2010-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS433646013011', '江詩涵', 0, '+86 178-1351-7523', 0, '641087565094754360', 'Room 18, CR Building, 979 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1993-06-14', 0, 0, 'jiang71', '2002-06-03', 'jishihan', '2018-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS527553816141', 'Kevin Weaver', 0, '+1 614-476-7472', 1, '706131170717212216', '782 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1989-11-27', 0, 0, 'weake', '2018-01-02', 'wkev923', '2015-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS002688853177', 'Henry Ellis', 0, '+86 10-569-5600', 1, '794628303071178293', '中国北京市西城区复兴门内大街548号5室', '1992-03-17', 0, 0, 'ellis7', '2011-10-09', 'ellish5', '2015-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS761277164021', 'Julia Gomez', 1, '+1 838-154-5842', 2, '655584688419473912', '292 Central Avenue Apartment 42, Albany, NY 12206, United States', '1989-06-02', 0, 0, 'gomejulia', '2001-10-10', 'julia1019', '2007-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS836259106330', '江浩然', 1, '+44 5458 123367', 0, '436537988427207525', 'Unit 2, Oxford Eco Centre, 967 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1994-07-29', 0, 0, 'hyk', '2006-10-18', 'hyko1971', '2017-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS402959228506', '田村舞', 1, '+1 614-358-4839', 1, '759080960243754408', '181 Wicklow Road Apartment 14, Columbus, GA 43204, United States', '1985-01-15', 0, 0, 'tmai70', '2020-10-27', 'maitam202', '2010-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS570258302145', 'David Schmidt', 0, '+81 3-4791-0602', 1, '092040016197744013', '日本東京港区東新橋一丁目5番18号33階', '1997-06-12', 0, 0, 'schdavi', '2013-05-19', 'ds10', '2007-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS957476935164', 'Jeremy Butler', 0, '+86 134-6005-8747', 3, '665851554876152198', '中国广州市白云区小坪东路857号22楼', '1995-12-28', 0, 0, 'jbut', '2012-09-27', 'jeremybutl', '2004-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS354869737955', 'Ryan Morales', 0, '+86 136-9518-2030', 1, '139077816642812761', '中国北京市海淀区清河中街68号729号6楼', '1987-02-09', 0, 0, 'mryan8', '2006-10-03', 'moraryan', '2005-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS105072993701', 'Annie Mills', 0, '+81 3-6215-9809', 2, '739508918906554003', '日本東京港区東新橋一丁目5番3号44号室', '1989-09-07', 0, 0, 'annimi', '2020-04-25', 'manni9', '2017-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS388237935266', 'Luis Dunn', 1, '+86 160-1507-8868', 3, '935209182272204123', '中国广州市天河区天河路214号华润大厦7室', '1992-03-12', 0, 0, 'ludunn', '2005-07-23', 'luisdunn1121', '2003-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS990426112597', '青木百花', 1, '+86 10-966-4150', 1, '979489645032087259', 'Room 49, 624 Sanlitun Road, Chaoyang District, Beijing, China', '1993-01-06', 0, 0, 'momoaoki', '2003-08-04', 'momoka306', '2012-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS024087947750', 'Terry Morris', 1, '+86 28-4864-5377', 0, '625794916345196376', 'Room 43, No. 586, Shuangqing Rd, Chenghua District, Chengdu, China', '1988-08-27', 0, 0, 'terrymorris110', '2013-08-23', 'morrterry42', '2021-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS819285887594', '佘永發', 0, '+86 195-7159-7704', 0, '448371762443428022', '中国成都市成华区二仙桥东三路119号4栋', '1989-01-27', 0, 0, 'wingfats', '2007-08-15', 'swin1', '2008-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS250073221111', 'Bryan Soto', 1, '+86 166-2228-6890', 2, '575495237612400188', 'No.47 building, No. 253, Shuangqing Rd, Chenghua District, Chengdu, China', '1992-02-19', 0, 0, 'soto3', '2021-07-06', 'bryan18', '2010-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS811886381589', '曾嘉欣', 0, '+1 312-007-4075', 4, '567896869931543743', '554 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1997-05-04', 0, 0, 'tsang95', '2020-12-24', 'tsangky', '2020-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS658858286362', '高家強', 1, '+86 10-359-4039', 1, '400937787151506354', '中国北京市房山区岳琉路366号10号楼', '1990-09-12', 0, 0, 'kakakeung', '2007-06-04', 'kkk', '2016-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS753067231093', '段睿', 0, '+81 11-594-7780', 0, '584819167104988582', '日本札幌中央区宮の森四条六丁目1番6号38号室', '1995-02-16', 0, 0, 'duanr8', '2015-12-15', 'duan5', '2005-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS976786530648', 'Irene Gray', 1, '+86 173-3320-9723', 3, '284803494932023015', '中国成都市成华区双庆路232号华润大厦36室', '1986-04-09', 0, 0, 'irenegray00', '2006-08-05', 'grairene', '2019-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS622658585354', '清水悠人', 1, '+1 718-439-3278', 0, '147545860670717186', '815 Bergen St Apt 9, Brooklyn, NY 11217, United States', '1997-10-17', 0, 0, 'yutos', '2007-04-16', 'shy', '2005-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS669530182209', '藍志明', 1, '+81 52-670-6533', 0, '590073667541759493', '日本なごやし守山区瀬古東二丁目171番4号36号室', '1991-06-23', 0, 0, 'lcm', '2007-02-27', 'cmlam7', '2015-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS138770835644', '駱家輝', 1, '+81 52-496-6117', 4, '717404329891081090', '日本なごやし熱田区千年二丁目5番12号30階', '1988-08-31', 0, 0, 'kafai3', '2019-04-02', 'lok72', '2004-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS861518347021', '應祖兒', 0, '+1 718-342-8019', 3, '427753974657022709', '810 1st Ave Suite 32, Brooklyn, NY 11220, United States', '1987-08-11', 0, 0, 'chying', '2021-08-30', 'choyeeying5', '2019-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS833726538948', '田中一輝', 0, '+81 74-527-5234', 1, '796581416512381603', '39F, 1-7-18 Saidaiji Akodacho, Nara, Japan', '1985-01-21', 0, 0, 'itan10', '2013-05-26', 'ikkitanaka518', '2020-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS352641379149', '孫明詩', 1, '+81 52-760-8991', 2, '290648912080979103', '10F, 20 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-09-11', 0, 0, 'mingszehs', '2013-08-14', 'msh', '2002-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS803901938432', 'Micheal Wells', 1, '+86 755-756-7157', 2, '360188726863370009', 'No.9 building, 21 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1986-01-08', 0, 0, 'micheal83', '2000-09-14', 'wmi5', '2006-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS070426846843', '許頴璇', 1, '+81 90-3113-0110', 4, '144322262320473674', '29-kai, 1-7-6 Saidaiji Akodacho, Nara, Japan', '1990-05-15', 0, 0, 'wingsuen78', '2019-01-30', 'huiws2004', '2015-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS789235548515', 'Sheila Flores', 0, '+44 (1223) 26 1876', 2, '133994965180310875', 'No.38 Main building, 621 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1991-09-08', 0, 0, 'flores1111', '2018-07-04', 'floresheila', '2009-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS286283258798', 'Angela Russell', 0, '+86 21-3714-2104', 4, '703092736671586640', 'Room 24, CR Building, 733 Binchuan Rd, Minhang District, Shanghai, China', '1996-03-31', 0, 0, 'angelrussell816', '2001-12-02', 'russella', '2021-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS818679927508', '呂志遠', 1, '+81 90-3456-7152', 0, '294210826559772492', '日本東京港区東新橋一丁目5番16号45階', '1989-02-27', 0, 0, 'cyl', '2000-06-17', 'cylui', '2002-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS417816748157', '谷青雲', 0, '+81 11-268-4620', 2, '039779251123483403', 'Rm. 13, 13-3-18 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-01-16', 0, 0, 'kcw', '2001-08-26', 'chingwankoo', '2007-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS384864450783', '蔡明', 1, '+86 21-233-3280', 3, '698191529837183183', '9F, 286 Jianxiang Rd, Pudong, Shanghai, China', '1996-07-13', 0, 0, 'mingch1026', '2011-09-22', 'choiming', '2012-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS604664432827', '房杰倫', 0, '+86 20-364-0372', 1, '989847182452168465', '中国广州市白云区小坪东路799号19号楼', '1987-12-10', 0, 0, 'clfo', '2017-11-24', 'focl10', '2006-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS777699453261', '沈杰宏', 0, '+81 66-770-7390', 1, '887025881755109840', '日本おおさかし東住吉区東田辺三丁目27番12号46号室', '1988-08-09', 0, 0, 'jiehong1', '2010-10-28', 'shenjieho', '2020-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS810750176321', '小林大輔', 1, '+86 185-7980-1015', 1, '953825803578592382', 'Room 30, CR Building, 975 68 Qinghe Middle St, Haidian District, Beijing, China', '1996-01-10', 0, 0, 'daisuke4', '2014-01-16', 'kobayashidai', '2007-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS165588650347', '魏睿', 0, '+81 74-024-0468', 1, '359226639941368313', 'Rm. 45, 1-7-3 Saidaiji Akodacho, Nara, Japan', '1996-12-10', 0, 0, 'ruwe703', '2010-09-11', 'rui1968', '2001-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS350461443606', '谷口七海', 0, '+81 52-890-4956', 2, '973330683895073413', '日本なごやし瑞穂区河岸町四丁目20番5号40階', '1997-05-02', 0, 0, 'nanamt', '2006-02-17', 'tananami', '2011-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS238330398557', '莫仲賢', 0, '+81 3-6174-1318', 2, '467202219757837861', '25-kai, 1-6-6, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1989-10-15', 0, 0, 'cymo2', '2017-11-17', 'mokcy', '2009-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS364207775599', '湯詠詩', 0, '+86 21-6597-2917', 2, '452606100113453281', '中国上海市浦东新区健祥路93号26楼', '1993-05-02', 0, 0, 'wingszeton', '2004-08-05', 'tongws', '2011-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS408166481429', '錢思妤', 1, '+86 21-212-1230', 0, '232215210721761857', '中国上海市浦东新区健祥路401号32号楼', '1992-02-06', 0, 0, 'szeyuchin', '2014-05-12', 'chinsy', '2005-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS391293390060', '吳思妤', 1, '+86 160-8610-0872', 3, '286306642740890769', '中国成都市成华区二仙桥东三路220号12号楼', '1996-04-26', 0, 0, 'ngsy', '2004-08-16', 'ngszeyu', '2007-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS415580662263', 'Philip Moore', 1, '+86 769-252-2726', 4, '684230604488640273', 'Room 44, CR Building, 988 Dongtai 5th St, Dongguan, China', '1985-06-28', 0, 0, 'philip3', '2017-10-25', 'moorephilip1977', '2010-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS248918572756', '大塚樹', 1, '+86 20-0675-2783', 2, '910012901551214191', '中国广州市海珠区江南西路56号华润大厦42室', '1995-04-06', 0, 0, 'otsukitsuki', '2020-07-25', 'itsuko730', '2019-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS002099528215', '清水明菜', 1, '+44 (116) 378 3111', 1, '160744243045349078', 'Flat 21, 770 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1989-06-30', 0, 0, 'shimizuakina', '2017-09-05', 'akinashimizu', '2009-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS296903806910', '山本詩乃', 1, '+86 130-7289-6383', 2, '928931535047444379', '20F, 673 Kengmei 15th Alley, Dongguan, China', '1992-03-04', 0, 0, 'yamamotoshin529', '2004-01-06', 'yamamotoshino1207', '2009-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS094931951484', '文朝偉', 1, '+81 52-325-2384', 3, '556052042158310967', '19-kai, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1994-01-01', 0, 0, 'chiuwaiman4', '2005-08-11', 'cwman', '2001-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS064706099430', '岡田光', 1, '+81 70-5181-8266', 3, '928922666145009134', '13F, 2-5-20 Chitose, Atsuta Ward, Nagoya, Japan', '1986-03-01', 0, 0, 'okadahik', '2014-01-30', 'ho830', '2013-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS472750552386', '房梓軒', 1, '+86 21-1687-2626', 4, '734276528811629263', '中国上海市黄浦区淮海中路299号2室', '1994-12-08', 0, 0, 'fongth', '2008-01-26', 'tszhinfong', '2020-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS371518738344', '陆睿', 0, '+81 74-033-9021', 3, '986951434006495673', '日本ならし西大寺赤田町一丁目7番13号10号室', '1993-12-21', 0, 0, 'lu5', '2001-06-07', 'lu8', '2000-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS585675124133', '郭浩然', 1, '+86 28-845-8787', 2, '121565097890417859', 'Room 11, CR Building, No.769, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1989-09-24', 0, 0, 'kwokhoyin', '2009-07-01', 'hoyinkwo', '2005-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS702681789775', '谢安琪', 0, '+44 5936 962389', 4, '731405871141287032', 'No.23 Main building, 73 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1994-10-12', 0, 0, 'xieanq', '2017-04-10', 'xieanqi', '2006-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS580364070712', '村上蒼士', 1, '+81 52-102-3808', 3, '189663142249241934', '日本なごやし北区清水三丁目19番5号19階', '1987-07-12', 0, 0, 'muraa', '2020-11-10', 'murakaoshi', '2005-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS934753128863', '吳家強', 0, '+44 (1223) 93 3117', 0, '399860450783531846', 'Block 27, 128 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1992-04-02', 0, 0, 'ngkk', '2006-12-03', 'ngkk1974', '2020-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS598056343471', '酒井凛', 0, '+1 614-652-2723', 1, '394817886923190411', '824 East Alley Apt 4, Columbus, GA 43201, United States', '1987-12-18', 0, 0, 'sakairin', '2021-06-29', 'rinsak', '2004-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS201368485152', 'Tony Walker', 0, '+81 74-044-1464', 2, '902263262537566056', '11F, 1-7-11 Saidaiji Akodacho, Nara, Japan', '1993-04-16', 0, 0, 'watony', '2014-12-16', 'tonywalker', '2013-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS627569247986', '山本七海', 0, '+86 170-8489-9652', 4, '832688812602143035', '中国深圳罗湖区清水河一路257号19号楼', '1999-02-10', 0, 0, 'nanyamam', '2003-05-12', 'yamnan', '2016-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS976175947910', 'Ann Gutierrez', 1, '+86 20-869-8394', 2, '892583049751060837', 'No.22 building, 61 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1990-05-20', 0, 0, 'gutierrez57', '2009-03-18', 'gutierrez7', '2002-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS400172520747', '葉志明', 1, '+1 212-462-6327', 2, '836915398121579374', '125 West Houston Street Suite 48, New York, NY 10014, United States', '1998-09-29', 0, 0, 'chimingyip', '2008-02-29', 'chiming7', '2016-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS493891812631', '毛宇宁', 0, '+1 212-197-2561', 1, '197292065190100804', '22 West Houston Street Apartment 42, New York, NY 10014, United States', '1991-09-21', 0, 0, 'yunim', '2011-02-27', 'maoyuni114', '2009-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS516938730875', '太田翼', 0, '+44 (20) 9762 0977', 1, '393637155391083616', 'Block 45, 334 Maddox Street, London, W1S 1PU, United Kingdom', '1992-01-04', 0, 0, 'ota9', '2014-04-10', 'tsubasaota', '2004-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS709706522280', '蔡安琪', 1, '+1 212-465-7937', 2, '635360808720023197', '754 Wooster Street Apt 8, New York, NY 10012, United States', '1989-10-28', 0, 0, 'anqicai602', '2020-08-24', 'canqi', '2005-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS238349762105', '村上凛', 1, '+86 193-2172-6882', 2, '930920506078351166', 'No.32 building, 450 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1995-01-22', 0, 0, 'murin2', '2007-04-09', 'murakamiri00', '2016-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS180024239807', '山崎海斗', 1, '+86 28-559-9571', 2, '090745733372951444', '中国成都市成华区二仙桥东三路570号12号楼', '1988-03-02', 0, 0, 'yamazakikaito', '2002-01-27', 'yakai', '2006-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS352076605323', '顾岚', 0, '+1 312-376-4991', 4, '196648679962122727', '797 Rush Street Apt 36, Chicago, IL 60611, United States', '1998-01-24', 0, 0, 'gu98', '2019-10-05', 'lan2', '2021-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS138898465805', '阎致远', 0, '+86 160-3137-9713', 3, '915805331470780908', 'No.48 building, 734 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1999-02-16', 0, 0, 'yazhiyuan', '2002-09-09', 'zy54', '2000-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS236645626547', '刘詩涵', 0, '+86 28-0171-6818', 3, '310694416505514676', 'No.26 building, 629 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1996-06-27', 0, 0, 'shihan14', '2000-04-21', 'lish06', '2003-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS990766630552', '石子异', 1, '+81 66-995-8907', 0, '306476329389969065', '日本おおさかし西成区出城一丁目1番4号26階', '1992-11-10', 0, 0, 'ziyishi', '2013-10-05', 'shziy', '2015-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS414296731316', '黎浩然', 1, '+44 (1223) 88 1525', 2, '218582352550647823', 'Block 49, 764 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1998-05-31', 0, 0, 'lai127', '2000-12-14', 'hoyinl', '2004-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS026734248337', 'Karen Howard', 0, '+44 (121) 353 7946', 3, '545908178784497770', 'No.1 Main building, 831 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1985-07-11', 0, 0, 'howard619', '2014-11-17', 'howardk97', '2011-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS666252086835', 'Danielle Smith', 1, '+44 (151) 783 8254', 2, '632238331799388097', 'Flat 12, 985 Redfern St, Liverpool, L20 8JB, United Kingdom', '1985-02-04', 0, 0, 'smithdanielle', '2007-12-25', 'smitdani', '2009-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS945858034003', '阎詩涵', 0, '+81 80-7740-1944', 3, '417354936832970060', '40-kai, 3-15-17 Ginza, Chuo-ku, Tokyo, Japan', '1995-07-14', 0, 0, 'yashihan7', '2021-10-10', 'shihany', '2005-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS648390323838', '山下百恵', 0, '+1 330-007-3569', 1, '372796652753324024', '383 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1985-08-29', 0, 0, 'momoeyamashita6', '2004-02-22', 'momyamashita', '2009-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS487620595084', '伍曉彤', 0, '+86 192-6969-6896', 3, '664804982433716293', '中国北京市房山区岳琉路303号8楼', '1997-12-27', 0, 0, 'hiutungng', '2001-07-21', 'nhiutung', '2009-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS019503083721', '曾慧珊', 1, '+81 70-9343-9139', 2, '252854150302174301', '日本おおさかし西成区天神ノ森二丁目1番17号46階', '1992-03-23', 0, 0, 'twaisan', '2010-07-22', 'waisantsa', '2010-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS576606708761', '河野涼太', 1, '+1 330-960-2435', 2, '160372358370599734', '494 Riverview Road Apt 43, Akron, OH 44313, United States', '1990-03-09', 0, 0, 'ryotak', '2019-10-19', 'ryotakono', '2004-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS906666974883', '苏睿', 0, '+44 (1865) 48 3543', 3, '328111296645296452', 'No.39 Main building, 632 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-12-22', 0, 0, 'ruis83', '2015-01-10', 'ruisu', '2017-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS640877631022', 'Francis Cook', 0, '+86 10-9288-5517', 1, '224354670706278057', '中国北京市西城区复兴门内大街315号32栋', '1998-05-25', 0, 0, 'frcoo709', '2009-05-18', 'francis5', '2021-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS402672638253', '小山拓哉', 1, '+81 66-053-6825', 3, '789670198419565945', '日本おおさかし西成区天神ノ森二丁目1番19号41階', '1994-09-29', 0, 0, 'takuyko', '2002-06-09', 'koyamat3', '2002-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS190613321145', 'Amber Murphy', 1, '+44 7715 316273', 2, '734032201182737661', 'Flat 10, 441 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1988-06-24', 0, 0, 'ambermurphy', '2016-07-17', 'ambemurph66', '2021-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS792224336558', '田宇宁', 0, '+86 10-9760-5143', 1, '541500860776888935', 'Room 1, CR Building, 349 East Wangfujing Street, Dongcheng District , Beijing, China', '1991-12-23', 0, 0, 'yuningtia4', '2020-06-14', 'yunint', '2016-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS252098096124', '林睿', 1, '+44 (1865) 39 4140', 2, '700832612182828544', 'Flat 1, 128 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1986-04-27', 0, 0, 'ruilin', '2004-09-24', 'linrui2018', '2006-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS616901821077', 'Diane Anderson', 1, '+1 614-913-5262', 2, '238351504309345565', '513 Wicklow Road Suite 24, Columbus, GA 43204, United States', '1991-06-05', 0, 0, 'diane928', '2011-02-04', 'diane4', '2019-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS717765492216', '何國明', 1, '+81 66-993-7907', 1, '945513152662069609', '日本おおさかし東住吉区東田辺三丁目27番12号28階', '1998-05-10', 0, 0, 'kmho', '2007-02-18', 'kwokmingho8', '2018-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS305387509434', 'Marvin Herrera', 0, '+81 90-0088-2650', 1, '559698524945861234', '日本東京品川区東五反田五丁目2番4号26階', '1986-06-06', 0, 0, 'marvin1', '2004-02-04', 'herrera423', '2000-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS709943924359', '任杰宏', 1, '+1 213-044-1763', 3, '381024371075775261', '263 Sky Way Apt 3, Los Angeles, CA 90043, United States', '1997-03-05', 0, 0, 'jren6', '2012-07-31', 'rjiehong55', '2016-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS770674136943', '尹永發', 1, '+81 66-590-7037', 2, '500306682847082215', '36F, 3-27-17 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1990-01-14', 0, 0, 'yiwingfat123', '2017-12-07', 'wingfatyin5', '2017-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS282606517471', '伊藤葉月', 0, '+1 312-222-4392', 1, '015841344367098178', '195 Rush Street Apt 13, Chicago, IL 60611, United States', '1997-12-30', 0, 0, 'itohaz', '2003-07-24', 'ihaz', '2010-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS158568514578', '佘詩君', 1, '+81 74-555-3809', 3, '884140757249339177', '3-kai, 5 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-03-23', 0, 0, 'szesheh94', '2007-10-21', 'sksheh', '2006-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS720302838315', '何富城', 0, '+1 718-011-4589', 3, '619345339583611501', '431 1st Ave Apt 32, Brooklyn, NY 11220, United States', '1994-07-17', 0, 0, 'hofs423', '2017-01-29', 'hofushing', '2016-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS734460363741', 'Gregory Nichols', 0, '+86 21-0786-7451', 1, '202426086096887507', '22F, 972 Hongqiao Rd., Xu Hui District, Shanghai, China', '1986-06-18', 0, 0, 'gregory502', '2002-06-29', 'nicholsgregory', '2018-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS516807850764', '楊慧珊', 0, '+81 80-7425-0066', 3, '341349552728522673', '日本なごやし北区清水三丁目19番1号17階', '1993-01-10', 0, 0, 'waisanyeun62', '2008-01-01', 'yeunws', '2006-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS566792935945', '三浦和真', 1, '+81 66-173-1923', 3, '830459272254857069', '49-kai, 1-1-2 Deshiro, Nishinari Ward, Osaka, Japan', '1985-07-31', 0, 0, 'kazuma06', '2009-07-25', 'kazumamiur', '2019-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS935469126965', '陶睿', 1, '+81 70-5719-2058', 3, '965184756989126851', '日本おおさかし平野区加美東四丁目9番20号40階', '1995-01-17', 0, 0, 'taor', '2006-01-22', 'taor', '2010-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS017244227839', '邱宇宁', 0, '+81 11-672-3001', 3, '265634985033808877', '日本札幌豊平区豊平三条十三丁目3番1号27号室', '1995-12-09', 0, 0, 'yuning2', '2005-04-22', 'yuqiu511', '2018-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS734294823061', '冯睿', 1, '+44 (20) 9658 4432', 3, '796275357071812377', 'Unit 20, Oxford Eco Centre, 645 Hanover Street, London, W1S 1YD, United Kingdom', '1993-04-19', 0, 0, 'fengru', '2007-05-06', 'ruifeng', '2021-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS738719110362', '梁杰宏', 1, '+81 52-169-6911', 3, '659816956402256211', '日本なごやし北区清水三丁目19番18号15号室', '1990-08-15', 0, 0, 'lianjieho10', '2003-05-19', 'jiehonglian', '2013-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS941926841764', 'Susan Myers', 1, '+81 90-9941-5135', 3, '565203491561734407', '42-kai, 7 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-10-24', 0, 0, 'smyers', '2016-07-12', 'susan817', '2000-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS182364185874', '和田翼', 0, '+44 (1865) 90 9367', 0, '322014012369655256', 'Block 20, 484 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1987-05-27', 0, 0, 'tswada1024', '2012-05-16', 'wadat', '2013-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS986102415166', '工藤涼太', 1, '+81 52-510-1082', 2, '609533410978347338', '日本なごやし北区清水三丁目19番14号29階', '1987-12-20', 0, 0, 'kudryo7', '2019-09-06', 'ryota6', '2007-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS286951455991', '金子异', 0, '+81 70-5167-7430', 2, '632762044547778214', 'Rm. 40, 2-1-18 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-09-30', 0, 0, 'ziyiji1983', '2016-11-28', 'jzi', '2012-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS953290695395', 'Grace Aguilar', 1, '+81 80-1083-0964', 0, '758099831024686598', '50F, 3-15-1 Ginza, Chuo-ku, Tokyo, Japan', '1998-10-22', 0, 0, 'aguilgrace', '2000-11-15', 'aguilar224', '2019-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS125982090521', 'Rose Cooper', 0, '+1 330-397-7211', 2, '648746752006375205', '915 West Market Street Suite 46, Akron, OH 44333, United States', '1992-10-25', 0, 0, 'cooperr410', '2010-09-10', 'rosecooper', '2013-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS520976200907', '杉山大地', 1, '+86 153-7328-0703', 3, '017286434178275016', '中国成都市成华区玉双路6号719号华润大厦30室', '1999-02-14', 0, 0, 'sugd', '2019-04-16', 'sdaic', '2002-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS957931247860', '汪秀英', 1, '+44 (116) 155 7532', 3, '438684594641906438', 'Unit 31, Oxford Eco Centre, 746 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1993-01-14', 0, 0, 'xiuyiwang9', '2017-03-11', 'wangxiuying', '2011-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS296183366277', 'Bryan Bell', 1, '+44 5094 990041', 1, '059950456917731896', 'Flat 15, 500 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-03-18', 0, 0, 'bryan65', '2001-03-20', 'bell4', '2017-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS342068448873', '萧致远', 0, '+86 10-6004-1859', 4, '869357713428572995', 'No.49 building, 126 Dong Zhi Men, Dongcheng District, Beijing, China', '1993-01-15', 0, 0, 'zhixiao9', '2004-07-04', 'xiaoz714', '2005-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS756813290947', '金子明菜', 0, '+44 5795 074652', 2, '865376920997969283', 'No.25 Main building, 394 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1991-09-25', 0, 0, 'akinakaneko', '2000-04-11', 'kanekoakina', '2009-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS324935360107', '河野美羽', 0, '+86 197-8195-3932', 3, '028768361234618960', '中国深圳福田区景田东一街710号华润大厦48室', '1996-03-14', 0, 0, 'kono10', '2007-11-26', 'miuk41', '2015-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS823167645102', '餘發', 1, '+44 (151) 642 7793', 1, '014516024772855586', 'Block 18, 199 Hanover St, Liverpool, L1 4AF, United Kingdom', '1990-08-12', 0, 0, 'fyue1', '2006-05-20', 'fayue518', '2021-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS839813124613', 'Tracy Ford', 1, '+81 70-6774-8274', 0, '434798794514317982', '日本札幌白石区菊水三条五丁目2番6号35階', '1987-04-13', 0, 0, 'tracy7', '2013-05-22', 'fotracy', '2018-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS508975652973', '雷安琪', 0, '+1 330-692-8084', 4, '852741506465529466', '232 Collier Road 3rd Floor, Akron, OH 44320, United States', '1987-07-11', 0, 0, 'anqile8', '2000-04-28', 'anqilei', '2020-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS489968655366', '松本美羽', 0, '+81 11-161-3843', 0, '306183547554443870', '23F, 5-2-15 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-07-29', 0, 0, 'miumatsu', '2020-11-04', 'matsumotomi', '2014-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS640170307956', '翁國權', 1, '+81 80-7156-6128', 1, '908286592095638032', '日本札幌豊平区豊平三条十三丁目3番13号32階', '1996-07-10', 0, 0, 'yunkwo812', '2008-05-24', 'yungkwokk', '2011-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS754093171596', '孫家文', 1, '+44 5718 786535', 2, '213214636369556374', 'Block 9, 288 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1986-02-25', 0, 0, 'hsuakm92', '2021-01-08', 'kamanh1', '2019-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS425135411419', '袁安琪', 1, '+86 186-5293-0400', 1, '799507067364124258', '中国北京市西城区复兴门内大街357号35室', '1994-08-27', 0, 0, 'anqiy', '2019-07-19', 'yuan5', '2020-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS981083585039', '郭秀文', 1, '+86 755-240-2612', 1, '431525945512943727', 'No.26 building, 31 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1986-09-04', 0, 0, 'kwok1114', '2005-05-31', 'sauman6', '2015-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS764264902215', 'Jean Porter', 1, '+44 (151) 837 5948', 0, '763470922783862328', 'Unit 3, Oxford Eco Centre, 925 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1993-02-28', 0, 0, 'pje', '2014-06-17', 'pjean121', '2015-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS871841477161', '中川美月', 1, '+86 755-044-2562', 2, '224182853124618352', 'Room 45, 492 Shennan Ave, Futian District, Shenzhen, China', '1995-11-26', 0, 0, 'nakagmits', '2017-01-12', 'nakamitsuki41', '2014-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS005185634077', '許慧嫻', 0, '+86 20-9606-5104', 0, '422674847280485177', 'Room 29, CR Building, 919 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1987-11-11', 0, 0, 'waihanhui2005', '2010-11-21', 'huwh', '2001-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS478281391971', '陶子异', 0, '+86 186-3747-0831', 0, '888792070142469812', 'Room 39, 747 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1994-01-06', 0, 0, 'taoz', '2001-09-05', 'ziyitao', '2016-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS413702462864', '常岚', 0, '+1 614-324-4240', 3, '633210734438777420', '776 East Alley Apartment 19, Columbus, GA 43201, United States', '1997-09-20', 0, 0, 'lan1001', '2006-12-24', 'chal', '2020-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS683248225850', '蒋睿', 1, '+1 212-976-9880', 0, '708285254672857616', '809 Bank Street Suite 25, New York, NY 10014, United States', '1992-12-18', 0, 0, 'rui79', '2002-05-23', 'rj9', '2017-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS028649900712', '傅晓明', 0, '+1 718-306-1122', 3, '822969907230278661', '349 Flatbush Ave Suite 43, Brooklyn, NY 11225, United States', '1986-09-11', 0, 0, 'fuxiaoming', '2011-04-10', 'xiaomingfu2', '2017-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS186115883850', '韩子异', 1, '+81 3-5082-0192', 3, '054179366658078585', '日本東京品川区東五反田五丁目2番2号25号室', '1990-08-25', 0, 0, 'hanziyi', '2002-05-24', 'ziyi1122', '2008-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS833144262410', '斎藤一輝', 1, '+81 66-025-0935', 2, '455746993699469488', '37-kai, 2-1-18 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1986-08-04', 0, 0, 'isaito', '2020-12-30', 'ikksaito', '2015-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS019191005086', '渡部愛梨', 1, '+81 80-0291-4766', 2, '545086734855797012', '日本おおさかし東住吉区東田辺三丁目27番18号35階', '1994-02-14', 0, 0, 'wairi2000', '2020-09-30', 'watanairi1999', '2005-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS467076650340', 'Timothy Torres', 0, '+1 212-343-0856', 3, '899589891156696760', '413 Fifth Avenue Suite 14, New York, NY 10017, United States', '1988-09-02', 0, 0, 'timottorre', '2021-08-23', 'timothyt', '2004-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS497465453092', '宮崎優奈', 0, '+1 614-214-4405', 1, '356710505701510181', '381 Diplomacy Drive Apartment 2, Columbus, GA 43228, United States', '1996-03-23', 0, 0, 'miyazakiyun', '2020-12-04', 'miyazakiyu', '2022-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS257186007623', '梁子异', 0, '+81 11-782-2830', 2, '214728976811868367', '日本札幌白石区菊水三条五丁目2番2号39階', '1987-11-28', 0, 0, 'ziyi1', '2004-04-30', 'liangziyi', '2019-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS754201204945', '汤秀英', 0, '+44 (1865) 52 0182', 3, '489833220091184667', 'No.14 Main building, 442 Park End St, Oxford, OX1 1JD, United Kingdom', '1992-05-11', 0, 0, 'xiuyta', '2000-12-21', 'xiuyingta', '2011-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS605820190176', '汪子异', 0, '+44 5203 676537', 1, '935804483237476998', 'Flat 16, 752 Hanover St, Liverpool, L1 4AF, United Kingdom', '1989-05-02', 0, 0, 'ziywang', '2008-04-03', 'wanziyi', '2018-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS190603311134', 'Frank Reynolds', 0, '+86 176-4250-1076', 0, '687682307786727655', '中国成都市锦江区人民南路四段769号华润大厦9室', '1990-07-06', 0, 0, 'frankreynolds2', '2014-10-04', 'frankr', '2004-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS632074864209', '方致远', 1, '+1 614-231-4768', 2, '639409813239044366', '383 East Cooke Road Suite 17, Columbus, GA 43214, United States', '1998-06-04', 0, 0, 'zhiyuan104', '2019-12-02', 'fanzhiy3', '2012-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS223716845197', '高木海斗', 0, '+81 11-567-7958', 2, '340262261428488764', '日本札幌厚別区上野幌一条二丁目1番6号10階', '1996-01-14', 0, 0, 'takagik', '2003-03-17', 'takagikait4', '2018-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS477851281290', '松本海斗', 0, '+44 (116) 894 4469', 1, '978475317146678374', 'No.48 Main building, 707 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1989-06-19', 0, 0, 'matsumotokaito81', '2020-01-22', 'matsumotokaito506', '2008-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS156209319235', '向震南', 1, '+81 70-7600-8473', 1, '476770409858758007', '21F, 6-1-2, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1997-12-07', 0, 0, 'xianzhenn', '2015-10-10', 'zxia', '2021-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS840715713828', 'Laura Brown', 1, '+81 70-8736-6487', 2, '897145274614802553', '日本なごやし北区清水三丁目19番14号22階', '1992-08-20', 0, 0, 'bla', '2009-09-19', 'brownl', '2004-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS978372997512', '菊地舞', 1, '+81 52-172-4552', 2, '901506672843143478', '日本なごやし瑞穂区河岸町四丁目20番13号48階', '1985-12-24', 0, 0, 'makiku105', '2002-08-03', 'maiki', '2012-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS944043536926', 'Dorothy Hicks', 0, '+81 52-273-8642', 0, '139488558147014281', '日本なごやし瑞穂区河岸町四丁目20番2号22階', '1992-02-04', 0, 0, 'hdor', '2018-12-08', 'hicks17', '2019-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS632272247252', '吴璐', 0, '+1 212-195-6915', 4, '000758277438298804', '518 West Houston Street Apartment 39, New York, NY 10014, United States', '1991-10-21', 0, 0, 'wlu00', '2005-12-05', 'luwu', '2020-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS453446280014', '胡慧敏', 1, '+1 614-708-1376', 3, '247421730955053864', '400 Tremont Road Suite 3, Columbus, GA 43212, United States', '1988-04-08', 0, 0, 'waiman720', '2013-08-05', 'wuwaiman', '2012-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS807828713594', '清水紗良', 0, '+81 66-038-8796', 2, '462018145606975487', '27-kai, 3-27-9 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1993-08-05', 0, 0, 'saras1', '2021-10-19', 'ss2', '2007-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS494914445863', 'Lawrence Diaz', 0, '+86 28-6854-2320', 3, '996064771341413285', 'Room 50, 118 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1996-03-26', 0, 0, 'diaz1992', '2003-08-15', 'diazlawrence', '2011-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS064733641076', '戚國賢', 1, '+81 3-2902-2130', 1, '645014514726982513', '4-kai, 2-3-9 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-07-27', 0, 0, 'chky1996', '2020-02-25', 'kwokyinc', '2007-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS139702719335', '李子韬', 1, '+81 11-028-7211', 2, '607592447711669113', '日本札幌豊平区豊平三条十三丁目3番20号11階', '1987-06-29', 0, 0, 'zital', '2004-05-01', 'li45', '2008-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS826109435293', 'Andrew Bell', 0, '+44 (151) 674 1321', 3, '235072216469245886', 'No.36 Main building, 152 Redfern St, Liverpool, L20 8JB, United Kingdom', '1991-08-05', 0, 0, 'andrew10', '2012-11-04', 'abe', '2021-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS159938935057', '徐家玲', 0, '+44 (151) 799 9193', 3, '543844444723123043', 'Block 37, 260 Redfern St, Liverpool, L20 8JB, United Kingdom', '1995-05-02', 0, 0, 'kaling1220', '2003-10-19', 'tsui2', '2016-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS364953226365', '松田花', 0, '+81 74-483-2382', 2, '981529773625059052', 'Rm. 38, 3-9-10 Gakuenminami, Nara, Japan', '1993-07-21', 0, 0, 'hana315', '2020-07-18', 'hanamatsuda48', '2005-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS506593070510', '程璐', 0, '+1 838-779-7397', 2, '675232448296528209', '908 Central Avenue Apartment 2, Albany, NY 12206, United States', '1991-05-15', 0, 0, 'clu6', '2020-04-27', 'chengl', '2001-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS112334336729', 'Melvin Wood', 0, '+86 132-8089-4634', 3, '677933262133503993', 'No.21 building, 636 028 County Rd, Yanqing District, Beijing, China', '1986-05-12', 0, 0, 'melvinwood1987', '2017-05-14', 'wm8', '2011-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS378396758954', 'Leroy Robinson', 1, '+86 163-7208-6010', 3, '708168259238799840', '中国中山乐丰六路383号2栋', '1991-07-06', 0, 0, 'robinsonleroy', '2015-03-19', 'rler', '2007-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS663903117464', '谢宇宁', 1, '+81 11-278-0438', 2, '948570607747513200', 'Rm. 24, 5-4-9 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-03-13', 0, 0, 'yuninx4', '2000-04-25', 'xie1', '2015-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS540945832966', '程子韬', 1, '+1 838-774-3039', 3, '457683274826156456', '512 Lark Street Apartment 21, Albany, NY 12210, United States', '1997-08-03', 0, 0, 'chzi205', '2015-01-16', 'zitachen', '2010-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS504966212928', '袁致远', 0, '+81 3-6820-3491', 4, '456848047841143114', 'Rm. 3, 1-6-14, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1994-05-08', 0, 0, 'yuan9', '2019-04-30', 'yzhiyu', '2013-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS480926650965', '傅致远', 1, '+81 52-054-8548', 2, '795775430843480475', '日本なごやし北区清水三丁目19番2号12階', '1991-08-23', 0, 0, 'zhiyuanf', '2022-01-10', 'fuz', '2009-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS059884728111', '邵秀文', 1, '+1 614-952-3583', 3, '206869444001527135', '211 Wicklow Road Apartment 37, Columbus, GA 43204, United States', '1993-07-24', 0, 0, 'sism', '2001-10-10', 'smsiu2016', '2021-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS257021837588', '傅子异', 1, '+44 7324 763896', 1, '238267942253446485', 'Unit 13, Oxford Eco Centre, 705 Portland St, Manchester, M1 3LA, United Kingdom', '1988-03-01', 0, 0, 'fziyi', '2008-12-29', 'ziyifu', '2001-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS037303585536', '曹心穎', 0, '+1 212-390-0635', 1, '820960839358867861', '988 Bank Street 3rd Floor, New York, NY 10014, United States', '1988-01-23', 0, 0, 'cho9', '2019-05-18', 'chosumwing49', '2012-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS824979984176', '田村大和', 1, '+44 (1223) 70 1514', 0, '697193715138930843', 'Unit 9, Oxford Eco Centre, 540 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1985-08-24', 0, 0, 'tyamato', '2004-01-08', 'yamato3', '2001-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS891755497763', '向俊宇', 1, '+1 718-871-8901', 1, '171285087394009745', '330 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1990-08-29', 0, 0, 'chunyu223', '2000-02-25', 'cyheu', '2010-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS832534530065', '廖明詩', 0, '+81 80-4005-3715', 4, '515524172673340186', 'Rm. 3, 5-4-19 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1987-06-19', 0, 0, 'mingszeliao', '2012-02-01', 'liao1', '2009-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS881425371977', 'Fred Murphy', 0, '+44 7438 467003', 2, '309217528947805677', 'Unit 24, Oxford Eco Centre, 429 Redfern St, Liverpool, L20 8JB, United Kingdom', '1985-08-14', 0, 0, 'murphyfred', '2006-12-13', 'murphyfred2004', '2006-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS320378477380', '近藤翼', 0, '+86 169-4038-6965', 2, '457090729226828576', 'Room 27, CR Building, 554 Dongtai 5th St, Dongguan, China', '1996-07-18', 0, 0, 'tk9', '2009-01-26', 'kondot', '2010-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS390026857389', 'Marie Rose', 0, '+44 7072 269090', 4, '599992165294239148', 'Unit 48, Oxford Eco Centre, 327 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1994-09-19', 0, 0, 'marie8', '2013-01-21', 'rosemarie318', '2003-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS468776006495', '徐慧儀', 1, '+81 11-165-7016', 3, '554797834001269705', '10F, 2-1-1 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1985-04-24', 0, 0, 'waiyee806', '2014-08-23', 'tsuiwaiyee', '2018-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS876324726691', '吉田涼太', 1, '+1 213-683-7427', 1, '415478308587917010', '725 Grape Street Apt 49, Los Angeles, CA 90002, United States', '1990-07-09', 0, 0, 'ryota530', '2021-09-06', 'yoshidar727', '2000-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS555813752333', '秦致远', 0, '+86 142-7376-6970', 3, '473687920438145598', 'No.36 building, 974 Xiaoping E Rd, Baiyun , Guangzhou, China', '1997-01-20', 0, 0, 'zhiyuanq56', '2016-04-15', 'zhiyuanqin', '2006-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS122786461769', '房國明', 1, '+81 3-4322-7488', 0, '077475020071224544', '18F, 1-6-14, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1990-02-28', 0, 0, 'kmfong56', '2010-09-29', 'kmfong1025', '2013-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS315445068714', '松本美咲', 1, '+81 52-000-0907', 3, '288506510316257338', '13F, 2-5-17 Chitose, Atsuta Ward, Nagoya, Japan', '1996-07-31', 0, 0, 'matsumoto1', '2002-03-07', 'matsumoto1014', '2016-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS697325112201', '姚秀英', 0, '+86 147-1661-7245', 1, '459299063028575055', '中国北京市海淀区清河中街68号660号46栋', '1986-08-09', 0, 0, 'yaoxi', '2019-03-09', 'yaox7', '2017-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS875619467660', '方晓明', 1, '+81 70-7676-8421', 1, '455717952589143472', '9-kai, 3-9-15 Gakuenminami, Nara, Japan', '1995-12-20', 0, 0, 'fanxiao', '2014-02-18', 'fang10', '2007-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS254295920062', 'Mark Stone', 1, '+86 139-6198-0069', 3, '916931541499576128', 'No.16 building, 635 Kengmei 15th Alley, Dongguan, China', '1997-05-29', 0, 0, 'maston', '2021-04-27', 'mark89', '2020-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS881544692040', '邹岚', 1, '+81 80-1115-9932', 2, '007519111625184075', 'Rm. 11, 3-9-14 Gakuenminami, Nara, Japan', '1990-12-06', 0, 0, 'zoulan', '2011-02-19', 'lanzou', '2008-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS211197753781', '高橋陽太', 0, '+1 838-389-4031', 1, '539258677664242940', '353 Broadway 3rd Floor, Albany, NY 12207, United States', '1987-10-30', 0, 0, 'yota3', '2015-03-22', 'takahashiyo407', '2020-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS469348039878', '贺子韬', 1, '+81 70-4014-4059', 3, '159706121331698303', '19F, 12 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1994-05-16', 0, 0, 'hez', '2001-07-24', 'hezitao', '2020-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS242214427294', 'Rita Tucker', 0, '+81 52-624-0341', 3, '086856493220432660', '日本なごやし熱田区千年二丁目5番3号41階', '1985-05-14', 0, 0, 'rtucker', '2021-12-17', 'tuckerrit', '2010-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS492941202257', 'Catherine Jones', 1, '+1 213-880-8214', 1, '421246290190871107', '884 S Broadway Apt 40, Los Angeles, CA 90015, United States', '1995-11-11', 0, 0, 'cathjones', '2020-12-06', 'jones411', '2016-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS605733671483', 'Dennis Cruz', 0, '+86 167-1231-3863', 1, '381442171722785834', '中国成都市成华区玉双路6号53号华润大厦14室', '1987-01-01', 0, 0, 'cruzdennis', '2017-01-04', 'dennis7', '2000-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS882403793923', '汪裕玲', 0, '+81 66-073-9530', 2, '229602609426452136', '日本おおさかし東住吉区東田辺三丁目27番18号28階', '1991-11-07', 0, 0, 'wonyl', '2014-09-03', 'wongyl', '2006-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS448584198945', '黎頴思', 1, '+81 74-033-3776', 1, '421558406830912743', '28-kai, 3-9-6 Gakuenminami, Nara, Japan', '1996-08-13', 0, 0, 'laiwingsze62', '2005-06-05', 'wingsze1', '2005-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS724361358239', '苗頴思', 0, '+81 80-1426-1639', 0, '673535385036530987', '3-kai, 2-3-20 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-05-04', 0, 0, 'miuws', '2019-02-23', 'wsmiu63', '2015-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS864293256297', '駱杰倫', 0, '+86 142-7247-9137', 0, '606777251114432210', '中国上海市浦东新区健祥路368号3楼', '1991-02-22', 0, 0, 'chiehlun2006', '2007-04-29', 'lchiehlun', '2005-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS917377806720', 'Lori Wagner', 1, '+86 769-0848-9521', 3, '734550967045778729', '中国东莞环区南街二巷305号43楼', '1995-12-19', 0, 0, 'loriwagner9', '2013-07-04', 'loriwagner311', '2012-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS689092674627', '杨晓明', 0, '+86 28-9793-5619', 1, '082667204342972507', '中国成都市成华区玉双路6号79号华润大厦12室', '1985-12-05', 0, 0, 'yx818', '2021-03-08', 'yxi20', '2004-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS225491142103', '平野彩乃', 0, '+81 74-383-0338', 2, '061103723108532547', '日本ならし大和郡山市本庄町一丁目1番15号1号室', '1992-05-14', 0, 0, 'hiranoayano', '2018-09-21', 'hiranoayano', '2014-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS753037016202', '村田花', 1, '+81 90-0403-4209', 1, '642248887861249887', '日本ならし西大寺赤田町一丁目7番6号11階', '1988-09-13', 0, 0, 'muratah12', '2001-10-18', 'murahana', '2006-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS656615194763', 'Miguel Watson', 1, '+86 176-8929-4367', 1, '619483266044894953', '中国深圳福田区深南大道115号45号楼', '1989-10-12', 0, 0, 'miguel4', '2006-05-28', 'mwatso3', '2016-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS360142914692', 'Michael Chen', 0, '+81 66-218-5145', 2, '242423329285066031', '日本おおさかし西成区天神ノ森二丁目1番2号1階', '1989-08-22', 0, 0, 'chen2006', '2004-09-14', 'chenm', '2013-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS580655539515', '藤家明', 0, '+86 187-6106-7854', 4, '169543495103695626', 'No.20 building, 182 028 County Rd, Yanqing District, Beijing, China', '1987-02-16', 0, 0, 'kmt', '2005-11-27', 'tangkm6', '2012-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS560865956331', '段岚', 1, '+86 198-2313-2568', 0, '719558918257156224', '中国上海市浦东新区健祥路868号华润大厦14室', '1991-04-12', 0, 0, 'landua330', '2017-11-25', 'ldua1230', '2009-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS511376419070', '房詠詩', 1, '+44 (1865) 17 3780', 4, '866302747579076885', 'Flat 29, 138 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-03-23', 0, 0, 'fongwingsze4', '2001-10-02', 'wingszefong1219', '2008-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS958059565130', '松本蒼士', 0, '+44 (116) 881 1337', 2, '434586085245246497', 'Block 27, 468 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1988-09-16', 0, 0, 'maoshi', '2008-03-27', 'maos', '2005-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS319945816737', '郑睿', 1, '+81 3-7019-4019', 3, '633665930716917949', '日本東京中央区銀座三丁目12番5号49階', '1992-05-15', 0, 0, 'rui922', '2013-12-11', 'zheng86', '2009-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS310875857091', '原大和', 0, '+1 213-989-0201', 2, '729913359717192031', '527 Figueroa Street Apt 19, Los Angeles, CA 90037, United States', '1994-01-07', 0, 0, 'harayama', '2018-12-02', 'yamathara', '2003-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS974171060727', 'Sara Martinez', 1, '+81 80-9985-0920', 3, '509800832989072854', '50F, 5-2-9 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1994-06-02', 0, 0, 'saramartinez6', '2000-11-17', 'mars', '2016-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS644499264994', '夏晓明', 0, '+44 7942 041944', 1, '306955076488330877', 'Unit 33, Oxford Eco Centre, 278 Park End St, Oxford, OX1 1JD, United Kingdom', '1992-07-22', 0, 0, 'xix', '2001-01-06', 'xxiaom9', '2002-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS296914474566', 'Roger Mendoza', 0, '+1 718-480-2533', 2, '033826703652551907', '544 Bergen St Suite 45, Brooklyn, NY 11217, United States', '1994-09-25', 0, 0, 'mer', '2011-05-31', 'mendoza1', '2017-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS461134333372', '藤田明菜', 1, '+1 330-495-5024', 1, '380932483666052592', '240 Riverview Road Apartment 4, Akron, OH 44313, United States', '1998-06-19', 0, 0, 'fujitakina', '2004-04-16', 'fakina1961', '2012-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS516304900093', '田中大地', 1, '+44 (161) 931 1155', 2, '348668265698764331', 'No.1 Main building, 568 Sackville St, Manchester, M1 3BB, United Kingdom', '1986-07-13', 0, 0, 'tdaichi', '2006-01-22', 'daichit', '2008-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS241752115568', '武安琪', 0, '+81 11-815-9801', 2, '992337972011851986', '日本札幌厚別区上野幌一条二丁目1番13号7号室', '1990-03-09', 0, 0, 'anqi131', '2000-10-03', 'anqiwu', '2020-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS121311275954', '鈴木聖子', 1, '+1 838-125-0715', 3, '385710864163518803', '501 Broadway Apartment 46, Albany, NY 12207, United States', '1996-02-15', 0, 0, 'suzukisei2', '2008-02-12', 'seiks', '2017-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS152532586493', 'Rhonda Ellis', 1, '+86 760-508-7873', 2, '483789249017996815', 'No.6 building, 981 Lefeng 6th Rd, Zhongshan, China', '1994-04-24', 0, 0, 'rhonellis4', '2003-09-08', 'ellisrhonda73', '2015-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS193307989954', 'Nicholas Nguyen', 0, '+86 20-9510-6497', 1, '219561469708203107', 'No.45 building, 580 Jiangnan West Road, Haizhu District, Guangzhou, China', '1985-01-24', 0, 0, 'nn301', '2014-06-13', 'nguyni97', '2017-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS973745215188', '贺詩涵', 1, '+86 760-426-8853', 3, '055121516255615175', '37F, 956 Lefeng 6th Rd, Zhongshan, China', '1985-04-20', 0, 0, 'shihanhe', '2014-04-04', 'shihe', '2011-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS169741395613', '小野百花', 1, '+81 90-6001-2185', 3, '195420577985509829', '35-kai, 4-9-3 Kamihigashi, Hirano Ward, Osaka, Japan', '1992-06-12', 0, 0, 'momoka629', '2011-06-12', 'momokono', '2015-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS243420980958', '古天樂', 1, '+86 755-329-8191', 1, '200333808746197270', 'Room 30, CR Building, 492 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1996-04-17', 0, 0, 'tinlokk', '2014-02-03', 'tlku', '2014-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS105807285100', 'Aaron Wood', 1, '+86 10-041-3703', 4, '147416317266957507', '中国北京市朝阳区三里屯路448号43室', '1991-08-18', 0, 0, 'aaronwood6', '2017-12-08', 'aaronwo501', '2019-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS935202390496', '袁子异', 0, '+81 90-2102-4415', 3, '293371082758522210', 'Rm. 49, 6-1-12, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1998-11-09', 0, 0, 'yuziy', '2004-08-06', 'yuanzi', '2006-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS214157941789', '高木美羽', 1, '+86 28-5209-7572', 0, '727334209622062316', '中国成都市成华区玉双路6号460号18栋', '1985-11-15', 0, 0, 'miu6', '2010-08-06', 'miu1012', '2017-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS482491058629', '佐々木紗良', 1, '+86 194-0594-4443', 3, '503990665726486332', 'No.25 building, 119 Middle Huaihai Road, Huangpu District, Shanghai, China', '1986-03-12', 0, 0, 'sasara708', '2002-11-23', 'ssa6', '2000-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS440141253970', '孟秀英', 0, '+81 80-0602-4782', 0, '231740689728173910', 'Rm. 50, 5-4-13 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1985-06-27', 0, 0, 'xiuyingmeng1007', '2001-01-26', 'meng326', '2016-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS353764847446', '姜祖兒', 1, '+86 10-7034-0739', 3, '782865465484776821', 'No.40 building, 553 028 County Rd, Yanqing District, Beijing, China', '1996-10-22', 0, 0, 'changcy', '2013-05-25', 'chch', '2000-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS686261590889', 'Leslie Griffin', 1, '+81 70-6430-1990', 1, '510752537878988624', '23F, 3-19-11 Shimizu, Kita Ward, Nagoya, Japan', '1988-05-16', 0, 0, 'lg5', '2011-03-25', 'griffinleslie', '2014-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS874473935366', '苑麗欣', 1, '+86 755-7440-2272', 3, '024755118085518866', '中国深圳罗湖区田贝一路456号31号楼', '1997-11-04', 0, 0, 'laiyanyuen16', '2017-04-12', 'yuenlaiyan', '2009-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS638063114057', 'Phillip Gutierrez', 0, '+86 160-7496-5591', 2, '711504930929291704', 'No.9 building, 491 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1996-02-25', 0, 0, 'gutiphillip', '2011-05-08', 'philgu10', '2006-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS486956887961', '严睿', 0, '+1 213-174-8993', 0, '606603437331095771', '782 Grape Street Apt 36, Los Angeles, CA 90002, United States', '1988-11-14', 0, 0, 'ruiya1', '2011-07-17', 'ryan204', '2003-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS227272642998', 'Manuel Kelly', 0, '+81 70-3168-8940', 3, '061674901507170646', 'Rm. 43, 1-5-8, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1991-03-03', 0, 0, 'manuk1', '2011-08-12', 'kellm6', '2020-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS063226725502', '林家文', 0, '+81 90-6364-8626', 4, '482057050073834331', '19F, 5-19-20 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1996-01-10', 0, 0, 'kmla', '2020-01-27', 'kmlam312', '2006-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS104433937284', '王祖兒', 0, '+86 165-7268-7888', 2, '949690582566606475', '中国广州市天河区天河路526号8栋', '1994-05-10', 0, 0, 'woncy', '2000-08-21', 'choyeewong', '2011-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS337225434694', '工藤瑛太', 1, '+81 80-8981-5206', 2, '611166581123284482', 'Rm. 39, 4 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-08-09', 0, 0, 'kudeita516', '2012-02-27', 'eita9', '2008-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS208914623840', 'Anne Turner', 1, '+86 143-8102-6985', 1, '234134446116167818', '中国北京市東城区東直門內大街772号25室', '1987-12-05', 0, 0, 'antu', '2002-11-22', 'anne3', '2006-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS616679412256', 'Frederick Cole', 1, '+44 7223 722054', 2, '100151667785037113', 'No.29 Main building, 613 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1986-09-10', 0, 0, 'fco', '2010-11-25', 'fc706', '2001-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS616008505073', 'Jonathan Garza', 1, '+86 21-9503-5876', 4, '775430098859638217', '中国上海市徐汇区虹桥路452号26号楼', '1986-06-14', 0, 0, 'garzajonathan', '2009-07-30', 'jonatgarz813', '2014-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS588230988228', '文慧嫻', 1, '+81 80-8428-6448', 2, '401488577124437106', '40F, 3-27-5 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1991-10-19', 0, 0, 'whman', '2006-03-15', 'manwh527', '2019-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS509230709930', 'Randall Kelley', 1, '+81 11-362-2792', 3, '386017317459964654', 'Rm. 32, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-10-04', 0, 0, 'kellrand', '2010-10-05', 'kr4', '2004-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS087605615793', '狄永發', 1, '+81 3-1315-1510', 2, '181893780307331800', '日本東京港区東新橋一丁目5番20号29階', '1990-02-07', 0, 0, 'wingfat805', '2006-11-23', 'tiwingfat84', '2010-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS053630244707', 'Troy Graham', 1, '+1 212-680-7478', 0, '584492265409065170', '711 Wooster Street Suite 9, New York, NY 10012, United States', '1989-10-07', 0, 0, 'graham803', '2019-04-17', 'troyg13', '2007-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS140493064377', '原大地', 1, '+86 769-5858-2187', 1, '131896366075612540', 'Room 16, 988 Huanqu South Street 2nd Alley, Dongguan, China', '1993-10-12', 0, 0, 'daichi6', '2007-04-19', 'daichih', '2005-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS518261844199', '佘頴璇', 0, '+44 7527 336458', 2, '840617685253974310', 'Flat 19, 322 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1998-03-30', 0, 0, 'wsshe', '2021-04-01', 'wssheh3', '2013-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS457292475200', '谭子异', 1, '+81 11-584-8444', 0, '527989919893543101', '日本札幌豊平区豊平三条十三丁目3番7号38号室', '1986-08-02', 0, 0, 'tan713', '2007-07-08', 'ziyita', '2015-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS764160199655', '唐致远', 0, '+81 52-533-7831', 2, '830529126288602171', '日本なごやし北区楠味鋺三丁目80番17号10階', '1997-05-27', 0, 0, 'tangz', '2013-03-19', 'tangzhiyu', '2017-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS454847843170', '姜安娜', 0, '+86 146-6146-0248', 1, '401826824898266849', 'Room 1, CR Building, 960 028 County Rd, Yanqing District, Beijing, China', '1993-02-25', 0, 0, 'changon', '2013-06-25', 'conna8', '2009-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS206293283958', '有村和真', 1, '+81 70-0051-9948', 1, '437798906835956627', '4-kai, 2-1-2 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1989-07-15', 0, 0, 'kazumaarimu', '2008-12-21', 'kazumaar', '2010-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS078393214052', '史岚', 0, '+1 614-968-9636', 3, '745810108839504550', '265 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1986-03-21', 0, 0, 'lshi', '2008-09-03', 'shi127', '2019-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS814131393566', '古霆鋒', 1, '+44 5720 278220', 1, '173173630886297367', 'No.3 Main building, 370 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1996-11-16', 0, 0, 'tingfungku', '2012-12-02', 'tingfungku', '2003-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS477213918154', '陶子韬', 1, '+44 (1223) 07 7452', 2, '350995741551580851', 'Unit 35, Oxford Eco Centre, 374 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1997-05-02', 0, 0, 'zitaot', '2008-04-25', 'tazitao', '2019-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS823819540522', '馬慧敏', 0, '+81 80-5967-6026', 3, '262160246292530919', '日本なごやし守山区瀬古東二丁目171番6号41号室', '1990-07-09', 0, 0, 'wmma7', '2016-03-20', 'mawm', '2013-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS067791888357', '梅心穎', 0, '+1 838-667-4610', 0, '554554026236803439', '820 Broadway Suite 49, Albany, NY 12207, United States', '1995-03-07', 0, 0, 'swmui', '2003-12-11', 'muisw3', '2003-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS954514395861', '廖詩涵', 1, '+1 330-826-1555', 2, '661481964474644011', '5 Fern Street Suite 24, Akron, OH 44307, United States', '1990-01-11', 0, 0, 'shihan5', '2014-03-12', 'shihanliao', '2009-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS856166006767', '河野光', 0, '+86 20-778-0025', 2, '163736391608879157', 'No.4 building, 356 Jiangnan West Road, Haizhu District, Guangzhou, China', '1991-08-21', 0, 0, 'konohikaru82', '2014-11-26', 'konohi9', '2008-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS312309097192', 'Mildred Wallace', 1, '+81 74-170-1451', 3, '060018236988846919', '日本ならし学園南三丁目9番8号41号室', '1992-05-04', 0, 0, 'walm', '2007-08-04', 'wallacemildred5', '2019-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS021562533908', '徐致远', 1, '+1 312-771-8935', 3, '949881678926882327', '256 Pedway Apartment 32, Chicago, IL 60601, United States', '1992-08-16', 0, 0, 'xz525', '2004-06-15', 'xuzhiyuan', '2021-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS685341451428', 'Dale Griffin', 1, '+81 70-5213-8915', 1, '955067127588143072', '日本東京渋谷区代々木二丁目3番5号19階', '1986-03-02', 0, 0, 'griffin3', '2017-08-16', 'griffinda93', '2004-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS287121830955', '石川光', 0, '+81 3-6879-3357', 2, '100491229918022524', '日本東京渋谷区代々木二丁目3番16号23階', '1998-11-02', 0, 0, 'ishikawa4', '2012-04-26', 'ishikawahikaru', '2009-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS100267659694', '大野大輔', 1, '+86 155-4287-0904', 3, '131463790263934079', '中国中山天河区大信商圈大信南路513号37栋', '1985-12-26', 0, 0, 'onod5', '2003-11-09', 'daisukeono', '2012-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS307445530936', '阮志明', 1, '+44 (20) 7285 7176', 1, '859137112131857942', 'Flat 38, 945 Maddox Street, London, W1S 1PU, United Kingdom', '1996-11-28', 0, 0, 'yuencm', '2019-09-14', 'ychiming', '2002-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS038169402193', 'Martha Roberts', 1, '+81 3-3058-9036', 4, '726316883798089519', '日本東京中央区銀座三丁目12番3号46号室', '1986-04-08', 0, 0, 'martrobe', '2015-02-05', 'martha9', '2008-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS710597593125', '樊朝偉', 1, '+86 168-1013-2799', 1, '786593028081446376', '中国北京市東城区東直門內大街518号9栋', '1993-09-14', 0, 0, 'fancw', '2013-04-20', 'chiuwaif', '2008-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS465048983556', '于子韬', 1, '+1 614-730-1504', 3, '396773428214078832', '223 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1998-06-24', 0, 0, 'zitaoyu', '2016-09-29', 'zitaoyu6', '2019-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS803482236493', '薛睿', 1, '+81 70-7007-0972', 1, '262651379365031313', '48-kai, 19 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1992-10-21', 0, 0, 'rxue7', '2008-07-09', 'ruix', '2005-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS788032328586', '黃慧嫻', 0, '+81 74-508-6939', 1, '814413455043341540', '3F, 5 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1991-02-19', 0, 0, 'wonwh', '2016-06-16', 'waihan1942', '2009-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS578614801548', 'Ellen Snyder', 0, '+81 3-1852-5560', 2, '001698780797809279', '日本東京中央区銀座三丁目12番3号49階', '1990-08-17', 0, 0, 'els15', '2010-07-29', 'ellensnyd1218', '2017-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS963812491861', '文裕玲', 0, '+1 838-539-0537', 2, '030307788377783091', '169 Central Avenue Apt 33, Albany, NY 12206, United States', '1985-03-01', 0, 0, 'manyuling', '2009-02-16', 'manyuling', '2000-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS157394885530', '木下瑛太', 1, '+81 90-1827-9948', 0, '669942569730822075', '日本札幌中央区宮の森四条六丁目1番4号6階', '1989-06-20', 0, 0, 'kinoshita414', '2001-08-23', 'kinoshitae809', '2002-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS577007108981', '田中健太', 0, '+86 171-5565-6942', 3, '896347479699283467', 'Room 26, CR Building, 886 Dong Zhi Men, Dongcheng District, Beijing, China', '1988-10-12', 0, 0, 'tanaka3', '2006-03-31', 'kentatana421', '2009-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS290895312977', 'Craig Campbell', 0, '+81 66-220-0870', 0, '069407526459200306', '日本おおさかし西成区出城一丁目1番2号2号室', '1993-03-23', 0, 0, 'cacraig42', '2007-05-01', 'campbellcra', '2006-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS301938978756', '蔡秀英', 0, '+86 10-049-8520', 2, '980529085335124334', '中国北京市延庆区028县道87号7号楼', '1997-06-18', 0, 0, 'caxiuying8', '2005-10-11', 'xicai', '2003-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS019211237051', '戴宇宁', 0, '+81 3-4824-0262', 0, '375718793533290490', '17F, 1-6-16, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1985-08-04', 0, 0, 'dayuning', '2018-10-25', 'yuning97', '2016-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS778516483915', 'Daniel Dunn', 1, '+81 3-3709-4178', 2, '361580527376861719', '4F, 5-2-15 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-12-05', 0, 0, 'dunn05', '2005-03-11', 'duda', '2006-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS503796432760', 'Emma Dixon', 1, '+81 80-4634-0915', 2, '424513298605857722', '40-kai, 1-5-7, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-09-21', 0, 0, 'dixon1993', '2021-06-05', 'dem', '2019-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS228776109589', '薛天榮', 0, '+86 188-1716-9730', 2, '280596560104089121', 'Room 43, CR Building, 614 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1990-01-16', 0, 0, 'tinwings', '2006-12-27', 'twsit', '2020-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS744568628560', 'Linda Wells', 1, '+81 70-4804-9048', 2, '693433996253872064', '15F, 1-7-17 Saidaiji Akodacho, Nara, Japan', '1989-12-17', 0, 0, 'lindawell', '2014-12-23', 'wells1989', '2020-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS169668708793', '贺云熙', 0, '+81 52-967-6770', 3, '923121226224864056', 'Rm. 20, 2-5-4 Chitose, Atsuta Ward, Nagoya, Japan', '1985-01-28', 0, 0, 'yunxi1', '2018-09-21', 'heyunxi', '2006-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS192715922898', '吕璐', 0, '+81 70-9338-5974', 4, '310043928883453811', '日本東京渋谷区代々木二丁目3番16号18階', '1998-12-24', 0, 0, 'lulu', '2000-07-19', 'lu407', '2006-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS961792935296', '龙璐', 1, '+81 74-103-6787', 3, '685312890226719599', '日本ならし西大寺赤田町一丁目7番12号13号室', '1996-05-16', 0, 0, 'lonlu', '2009-11-02', 'longlu', '2011-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS380227572092', 'Wayne Sullivan', 0, '+81 3-1850-1025', 4, '966690468295294478', '21-kai, 2-3-8 Yoyogi, Shibuya-ku, Tokyo, Japan', '1990-04-10', 0, 0, 'wayne1', '2009-08-27', 'sullivanwayne118', '2014-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS163957883358', '池田瑛太', 0, '+44 5235 853235', 3, '290393004798241863', 'Flat 28, 738 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1988-04-08', 0, 0, 'ikeda1', '2006-12-29', 'ikedaei', '2012-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS347419464638', 'Amber Holmes', 1, '+81 3-3345-0544', 1, '387821284268101336', '日本東京港区東新橋一丁目5番14号33階', '1992-03-23', 0, 0, 'amber2013', '2014-10-03', 'holmesamber621', '2011-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS125730358385', '唐詩涵', 0, '+1 312-181-4767', 2, '270381671471543918', '36 Pedway Apartment 19, Chicago, IL 60601, United States', '1985-02-22', 0, 0, 'tshi53', '2013-06-13', 'shihan818', '2016-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS590847569755', '罗宇宁', 0, '+81 90-0688-3389', 3, '646407276747326028', '12F, 2-3-13 Yoyogi, Shibuya-ku, Tokyo, Japan', '1994-10-14', 0, 0, 'yuninglu', '2019-05-16', 'ly5', '2001-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS805520640216', '方家強', 0, '+81 70-3533-6584', 1, '953144418601856318', '39F, 1-6-16, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-11-24', 0, 0, 'kakeuf612', '2007-07-06', 'fong7', '2013-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS661923335799', '傅宇宁', 0, '+86 160-2723-6743', 2, '140547413294540520', 'Room 10, 830 Lefeng 6th Rd, Zhongshan, China', '1998-03-26', 0, 0, 'fu2', '2002-10-06', 'fyuning', '2008-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS851105960106', 'Andrea Ortiz', 0, '+86 755-143-1957', 0, '288036519670947786', 'No.28 building, 532 Jingtian East 1st St, Futian District, Shenzhen, China', '1997-07-28', 0, 0, 'ortandrea10', '2005-03-14', 'ortizandrea3', '2008-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS105272809852', '蘇永權', 0, '+86 176-4263-5825', 1, '703570055463633648', 'No.13 building, 386 028 County Rd, Yanqing District, Beijing, China', '1996-06-21', 0, 0, 'sowingkuen1014', '2007-11-15', 'sowk', '2013-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS022151959848', 'Shirley Hernandez', 0, '+1 213-306-5124', 2, '379709236106705164', '663 Grape Street Suite 41, Los Angeles, CA 90002, United States', '1989-11-29', 0, 0, 'shirleyhernandez131', '2021-09-27', 'shirleyhern619', '2000-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS127510418872', '林惠妹', 1, '+81 52-667-2185', 2, '879436649656294908', '日本なごやし熱田区千年二丁目5番9号42階', '1988-01-21', 0, 0, 'huimei93', '2011-07-29', 'lahuimei', '2020-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS134220291883', '野口美羽', 1, '+1 212-307-5932', 3, '387023471706268262', '639 Wooster Street 3rd Floor, New York, NY 10012, United States', '1985-11-29', 0, 0, 'nogucmiu3', '2006-12-05', 'miunoguchi3', '2017-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS984874592128', '李秀英', 1, '+86 755-102-9818', 1, '224341593157574502', 'Room 39, 820 Jingtian East 1st St, Futian District, Shenzhen, China', '1990-12-15', 0, 0, 'xiuying7', '2017-03-27', 'lixiuying', '2005-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS110744717067', '徐國賢', 1, '+86 755-981-1830', 2, '585071692318410537', '中国深圳龙岗区布吉镇西环路457号24楼', '1994-08-16', 0, 0, 'kwokyin2002', '2001-04-02', 'tskwokyin', '2018-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS674772214120', 'Lee Perez', 1, '+1 838-192-5663', 2, '438516171842102769', '554 State Street Apt 2, Albany, NY 12203, United States', '1999-02-16', 0, 0, 'lee8', '2017-08-01', 'perelee', '2000-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS393030227963', 'Bobby West', 0, '+1 330-593-8334', 0, '169861411876807194', '762 Riverview Road Apartment 6, Akron, OH 44313, United States', '1998-02-18', 0, 0, 'web', '2002-04-21', 'webobby2011', '2014-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS839291016345', '曹仲賢', 0, '+86 755-493-1700', 2, '089942831222414300', '中国深圳龙岗区布吉镇西环路101号9号楼', '1987-05-26', 0, 0, 'chungyinc', '2020-04-21', 'ccy', '2017-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS249684948228', 'Patricia Stewart', 1, '+81 90-4472-4530', 1, '495386192958141628', '42F, 1-5-1, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-07-19', 0, 0, 'patricia1995', '2020-04-30', 'patricia203', '2012-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS522168431760', 'Victor Sullivan', 0, '+81 11-536-8920', 4, '591372927540851461', '35F, 6-1-17, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1996-11-28', 0, 0, 'victorsullivan9', '2021-02-08', 'sullivic', '2014-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS156506503435', '贾致远', 0, '+81 74-168-7722', 2, '401798583047971473', '日本ならし西大寺赤田町一丁目7番9号37号室', '1988-11-02', 0, 0, 'zhiyujia611', '2009-07-09', 'jiazhiyuan1', '2001-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS641950060929', 'Jeffery Wilson', 0, '+81 11-920-7800', 3, '363144817533711457', '日本札幌白石区菊水三条五丁目2番2号20階', '1990-09-15', 0, 0, 'wilj', '2017-09-08', 'wilsonjeffery', '2005-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS604326643308', '孫家輝', 1, '+1 718-517-3128', 1, '807001036446648342', '766 Columbia St Suite 50, Brooklyn, NY 11231, United States', '1995-11-09', 0, 0, 'hsuan73', '2006-01-05', 'hkafai', '2007-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS096812907642', '唐天榮', 0, '+81 70-0378-7992', 3, '039381880413109744', '日本なごやし瑞穂区河岸町四丁目20番19号18階', '1991-11-23', 0, 0, 'twtong63', '2007-12-16', 'tongtinwing', '2002-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS037440747866', '黎俊宇', 1, '+81 11-353-2951', 1, '154754793827196072', '49F, 5-2-11 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1998-07-30', 0, 0, 'lchunyu', '2017-11-14', 'lachunyu', '2002-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS687446768944', '朱霆鋒', 1, '+44 (151) 451 8573', 2, '417764918138826780', 'No.42 Main building, 509 Hanover St, Liverpool, L1 4AF, United Kingdom', '1992-08-24', 0, 0, 'tingfchu54', '2014-02-17', 'ctf', '2010-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS454254641202', 'Jane Phillips', 1, '+81 70-8375-2027', 2, '170383888202892222', '27F, 4-9-20 Kamihigashi, Hirano Ward, Osaka, Japan', '1992-11-11', 0, 0, 'janephill1960', '2021-05-24', 'janephillips', '2017-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS898431735530', '钱子韬', 1, '+86 188-8833-5276', 2, '565069240669209527', '中国深圳罗湖区清水河一路866号45室', '1999-02-20', 0, 0, 'zq1990', '2005-04-13', 'qzitao10', '2013-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS890605049957', '苑安琪', 0, '+86 28-9092-2266', 2, '762820875673406830', '6F, 563 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1996-01-15', 0, 0, 'onkayyuen', '2010-04-02', 'okyuen', '2010-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS764632823367', '汪杰倫', 1, '+81 70-6781-7062', 2, '514781068727876389', '27F, 2-5-2 Chitose, Atsuta Ward, Nagoya, Japan', '1990-09-14', 0, 0, 'clwong', '2009-03-09', 'chiehwong47', '2019-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS822271191439', '三浦絢斗', 1, '+81 74-784-8319', 0, '689859578237953098', '日本ならし大和郡山市本庄町一丁目1番9号39階', '1997-10-11', 0, 0, 'aymiura2', '2015-08-07', 'ayatom', '2008-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS557555534301', '梁子异', 1, '+81 74-989-3614', 1, '371343018134584469', 'Rm. 30, 3-9-8 Gakuenminami, Nara, Japan', '1987-08-10', 0, 0, 'ziyiliang', '2007-04-29', 'ziyiliang2', '2021-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS601643666047', 'Anita Bell', 0, '+86 10-118-8012', 0, '042669710059631336', '中国北京市西城区西長安街964号22栋', '1992-04-19', 0, 0, 'beanita', '2019-10-14', 'bellan', '2006-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS970926134946', 'Thelma Chen', 0, '+86 20-2162-9822', 1, '614359228359985720', '中国广州市白云区小坪东路736号35栋', '1985-12-22', 0, 0, 'chethelm219', '2009-12-26', 'tc78', '2019-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS461153781320', '山下美咲', 1, '+86 184-6087-8778', 4, '604409419458276282', 'No.3 building, 76 Yueliu Rd, Fangshan District, Beijing, China', '1992-07-15', 0, 0, 'misakiyam', '2017-03-12', 'yamisaki', '2017-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS525628564974', 'Jacob Munoz', 0, '+81 80-8535-9971', 1, '018168250920644343', '日本札幌白石区菊水三条五丁目4番16号22階', '1999-02-17', 0, 0, 'munozjacob', '2015-12-19', 'jacob1128', '2010-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS606384188786', 'Diana Garcia', 1, '+81 52-466-2315', 1, '417288347940425948', '28F, 3-19-1 Shimizu, Kita Ward, Nagoya, Japan', '1991-07-15', 0, 0, 'dianagar2', '2018-02-18', 'gdiana', '2014-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS987541857438', '黄子异', 1, '+86 10-326-0714', 3, '310600926794309784', '中国北京市東城区東直門內大街228号23栋', '1995-04-12', 0, 0, 'ziyihuang', '2001-07-03', 'ziyihuang', '2018-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS169802888974', 'Jose Thomas', 1, '+1 718-769-0151', 1, '825718765823690954', '481 Columbia St Apartment 11, Brooklyn, NY 11231, United States', '1991-01-15', 0, 0, 'thomaj315', '2019-04-28', 'thomajose321', '2007-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS098939694662', '曹青雲', 1, '+81 11-221-1257', 0, '867252081036267414', '日本札幌中央区宮の森四条六丁目1番6号36階', '1985-07-25', 0, 0, 'cwc18', '2000-11-07', 'chochingwan316', '2005-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS594813413395', '藤家輝', 0, '+1 312-596-0887', 0, '846859273054801597', '187 Rush Street Apt 33, Chicago, IL 60611, United States', '1985-04-10', 0, 0, 'tangkaf', '2002-11-27', 'takafai', '2009-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS176215119177', '鄧頴璇', 1, '+1 330-234-2190', 3, '127507344616713207', '950 Collier Road Apartment 47, Akron, OH 44320, United States', '1996-09-18', 0, 0, 'tang1012', '2017-07-02', 'tangws4', '2003-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS841443391879', '應慧敏', 1, '+44 5206 020810', 3, '255255481393497292', 'Flat 40, 977 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1989-02-21', 0, 0, 'ywm2009', '2012-12-12', 'yingwm', '2019-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS387910730195', '毛云熙', 1, '+1 213-788-1750', 3, '020950622181394749', '66 Grape Street Apartment 47, Los Angeles, CA 90002, United States', '1995-03-06', 0, 0, 'mao07', '2003-09-03', 'maoy03', '2013-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS515915862398', '蕭慧儀', 1, '+81 80-3623-4034', 4, '555344975191941196', '日本おおさかし東住吉区東田辺三丁目27番11号33号室', '1989-06-16', 0, 0, 'waiyeesiu64', '2003-08-27', 'waiyee78', '2009-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS792339456460', '三浦架純', 1, '+86 755-2233-3645', 1, '333279824888672474', '中国深圳龙岗区布吉镇西环路387号8栋', '1998-10-19', 0, 0, 'kasumimiur', '2019-08-15', 'mika1950', '2021-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS568907482181', '毛嘉伦', 0, '+1 213-530-9467', 4, '731531127980970364', '188 S Broadway Apartment 50, Los Angeles, CA 90015, United States', '1988-12-01', 0, 0, 'mao1008', '2010-07-13', 'jialun41', '2012-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS370735670312', '呂明', 1, '+44 5990 703336', 2, '150288819376314434', 'Flat 25, 323 Maddox Street, London, W1S 1PU, United Kingdom', '1991-02-13', 0, 0, 'luim623', '2013-04-05', 'mlui17', '2022-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS183237196598', '毛詩涵', 1, '+86 150-8270-1847', 3, '283446682238759215', '中国广州市白云区机场路棠苑街五巷940号43栋', '1989-07-30', 0, 0, 'shihanm', '2017-08-17', 'maosh', '2012-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS377988295191', '樂天榮', 0, '+81 74-475-8029', 1, '016660217666864795', '日本ならし学園南三丁目9番11号33階', '1993-10-05', 0, 0, 'lok629', '2008-12-31', 'twlo66', '2017-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS102863739892', '夏詩涵', 0, '+1 330-146-5819', 2, '080921100253214555', '62 Collier Road Suite 36, Akron, OH 44320, United States', '1995-04-15', 0, 0, 'xias', '2014-06-01', 'shihaxi2', '2020-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS898730022420', '高木陸', 0, '+81 80-3182-2254', 3, '136866353434764250', '日本おおさかし平野区加美東四丁目9番12号13号室', '1996-05-18', 0, 0, 'riku50', '2012-03-13', 'takagiriku9', '2009-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS190593801626', '贾子异', 1, '+81 11-686-5750', 2, '928199798940449976', '10-kai, 5-4-14 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1993-02-09', 0, 0, 'jia8', '2002-02-22', 'ziyi62', '2011-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS835431672611', '雷梓晴', 0, '+81 80-9940-6975', 2, '927682982446291378', '18-kai, 15 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1990-09-18', 0, 0, 'tcl', '2015-12-05', 'ltszching325', '2017-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS892743032625', '今井美咲', 0, '+81 11-937-0761', 3, '844837439303506782', '日本札幌厚別区上野幌一条二丁目1番17号16号室', '1985-05-26', 0, 0, 'misim', '2004-11-19', 'imisaki9', '2021-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS630739210175', '曹詠詩', 1, '+81 3-7778-3643', 1, '579167314745944129', 'Rm. 20, 3-15-1 Ginza, Chuo-ku, Tokyo, Japan', '1994-08-27', 0, 0, 'wingszecho1220', '2021-07-04', 'chows4', '2004-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS142421365268', '马嘉伦', 0, '+44 5657 487223', 1, '445554826310494469', 'No.10 Main building, 366 Maddox Street, London, W1S 1PU, United Kingdom', '1998-09-05', 0, 0, 'maji', '2006-08-14', 'jialunma715', '2014-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS888369274083', '冯云熙', 0, '+86 769-9958-3365', 1, '508944861716947642', '中国东莞坑美十五巷355号48号楼', '1997-03-25', 0, 0, 'yunxif66', '2005-09-18', 'fengy', '2014-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS946236593139', '錢家玲', 0, '+86 21-324-4941', 3, '215213093859730555', 'Room 21, 251 Jianxiang Rd, Pudong, Shanghai, China', '1988-10-23', 0, 0, 'chkl', '2003-10-13', 'ckl', '2019-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS880255835822', '橋本美月', 1, '+1 330-732-9950', 2, '516384738107655616', '612 Fern Street Apt 11, Akron, OH 44307, United States', '1991-05-24', 0, 0, 'hashimoto20', '2007-10-02', 'hashimotom', '2013-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS552544328315', '任梓軒', 1, '+44 (1865) 58 0751', 2, '826582396815281172', 'No.50 Main building, 234 Park End St, Oxford, OX1 1JD, United Kingdom', '1986-09-28', 0, 0, 'yamth90', '2000-07-12', 'tszhin1957', '2005-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS984583504635', '孟宇宁', 1, '+86 130-8175-5448', 3, '613143862227107709', '中国北京市海淀区清河中街68号508号32楼', '1997-04-07', 0, 0, 'meyunin', '2006-07-01', 'yunimeng626', '2017-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS089894876437', 'Eleanor Rice', 0, '+44 5798 845745', 2, '116086211652045270', 'Block 34, 57 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1990-04-26', 0, 0, 'eleanrice110', '2004-10-15', 'eleanorrice721', '2009-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS754286133143', 'Jonathan Murray', 0, '+1 312-768-8826', 1, '319603053856939929', '28 Rush Street Apt 2, Chicago, IL 60611, United States', '1995-12-15', 0, 0, 'jonamurray', '2014-01-20', 'jmurray', '2011-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS492214480425', '關詠詩', 0, '+81 70-3466-1105', 1, '034984237228648358', '日本札幌清田区真栄四条五丁目19番12号15階', '1985-09-14', 0, 0, 'wingkwan', '2020-08-01', 'kwan5', '2013-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS389349688009', '萬詩君', 0, '+44 (121) 830 4334', 0, '447861340836594414', 'Flat 48, 360 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1987-04-07', 0, 0, 'skmeng', '2001-11-08', 'mengszekwan', '2002-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS626111497800', '胡晓明', 0, '+86 10-2157-5593', 0, '010233188964705723', '中国北京市房山区岳琉路526号4室', '1996-01-23', 0, 0, 'xiaominghu606', '2006-01-02', 'huxia', '2016-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS797761840411', 'Helen Reynolds', 1, '+86 191-6929-7299', 3, '639246771455904158', '中国北京市東城区東直門內大街749号31栋', '1989-03-07', 0, 0, 'rhele8', '2021-03-16', 'helenreynolds', '2012-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS128560311957', '金安琪', 0, '+81 90-2118-0395', 3, '211000941387905107', '8-kai, 3-27-11 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-11-14', 0, 0, 'jinanqi6', '2020-10-19', 'jianqi', '2007-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS806356788385', '崔岚', 1, '+86 28-4175-9822', 2, '249988431797526001', '33F, 47 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1987-02-06', 0, 0, 'cuilan', '2014-08-21', 'lancu1999', '2011-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS076447682958', 'Billy Cruz', 1, '+1 838-784-5963', 1, '592082820610625621', '295 State Street Suite 10, Albany, NY 12203, United States', '1998-01-30', 0, 0, 'bcru', '2000-05-30', 'bilcr', '2008-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS381180778475', '郝宇宁', 1, '+81 66-578-7222', 3, '778640151101796269', '日本おおさかし近江堂一丁目7番12号23号室', '1996-04-11', 0, 0, 'hao91', '2018-12-10', 'yuning423', '2020-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS067467250111', '蔣發', 0, '+86 755-7000-8546', 4, '685210714756844762', '中国深圳罗湖区田贝一路670号43室', '1986-05-10', 0, 0, 'chf1946', '2021-03-27', 'fatchia88', '2015-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS144281371262', '小島美咲', 0, '+81 70-3568-0020', 1, '962315580440161728', 'Rm. 40, 5-2-7 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-09-18', 0, 0, 'kojimamisaki', '2019-08-19', 'kojima2', '2013-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS389204371749', '房慧珊', 1, '+86 185-9149-9177', 3, '187922190464029681', '中国成都市锦江区红星路三段17号29栋', '1994-02-06', 0, 0, 'wsfo59', '2006-02-04', 'waisanfong', '2000-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS284870758196', '區明詩', 1, '+86 132-1678-1774', 1, '195131113127621320', 'Room 7, CR Building, 944 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1986-07-14', 0, 0, 'au301', '2008-06-07', 'msau', '2016-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS481279156792', 'Todd Garza', 0, '+86 760-513-4274', 0, '327814296493016677', '中国中山天河区大信商圈大信南路114号华润大厦38室', '1987-07-01', 0, 0, 'gtodd', '2007-08-16', 'todd925', '2000-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS678891341474', '田璐', 0, '+1 614-660-1110', 3, '106089149759851524', '869 Wicklow Road Apartment 49, Columbus, GA 43204, United States', '1994-04-21', 0, 0, 'lu91', '2001-11-11', 'tialu', '2016-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS069367428104', '魏子异', 0, '+44 (1865) 68 6455', 2, '108081400861602775', 'Block 9, 224 Park End St, Oxford, OX1 1JD, United Kingdom', '1986-10-15', 0, 0, 'ziwe', '2001-09-10', 'ziywei09', '2005-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS543954711261', '毛詩涵', 1, '+86 28-974-3597', 1, '252512159294433290', '中国成都市锦江区红星路三段416号4室', '1992-10-06', 0, 0, 'shihma', '2015-05-01', 'shihanmao', '2017-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS674106751831', '上田陽菜', 0, '+1 213-773-1186', 4, '859823088623306857', '611 Wall Street Apt 5, Los Angeles, CA 90003, United States', '1998-09-17', 0, 0, 'hina04', '2003-03-17', 'uhina', '2007-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS960088024667', 'Janet Bryant', 0, '+81 66-165-7500', 2, '962987494492176723', 'Rm. 46, 2-1-16 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1988-06-02', 0, 0, 'janbryant2', '2001-09-07', 'bryant516', '2018-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS088167988618', '姚國賢', 0, '+81 3-8478-3945', 4, '531820218611558781', '26-kai, 3-15-12 Ginza, Chuo-ku, Tokyo, Japan', '1985-03-13', 0, 0, 'yeowky1986', '2003-06-12', 'yeky', '2019-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS904445060026', 'Diana Snyder', 1, '+86 192-4496-6338', 1, '320316175606439645', '3F, 707 Yueliu Rd, Fangshan District, Beijing, China', '1988-03-06', 0, 0, 'snyder6', '2012-02-12', 'snyderdiana', '2005-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS189878389424', 'Brenda Wilson', 1, '+86 10-0628-4203', 3, '436323736790271112', '22F, 517 West Chang''an Avenue, Xicheng District, Beijing, China', '1986-10-29', 0, 0, 'bwilson', '2009-11-13', 'brenda513', '2007-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS350620078153', '邓杰宏', 0, '+81 66-952-7492', 4, '385641706804114228', '日本おおさかし平野区加美東四丁目9番5号11階', '1988-11-17', 0, 0, 'denj', '2015-11-14', 'dengjiehong', '2012-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS313285071283', 'Tiffany Murray', 0, '+1 213-978-8326', 0, '918097502503531980', '364 Wall Street Suite 46, Los Angeles, CA 90003, United States', '1996-01-07', 0, 0, 'tmurray', '2004-10-29', 'tmurray722', '2020-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS494295396864', '陆震南', 0, '+86 28-155-1423', 0, '181906157687293971', '中国成都市成华区玉双路6号52号38室', '1990-02-09', 0, 0, 'luz224', '2016-05-27', 'zhennan2002', '2018-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS958615009772', '蔡震南', 0, '+86 152-3389-2288', 3, '039138790909511806', '中国广州市海珠区江南西路656号19楼', '1991-06-10', 0, 0, 'caizhen1206', '2005-04-28', 'cazhe', '2002-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS936360954041', 'Frank Sullivan', 0, '+86 145-6947-9074', 0, '807411167454043355', 'Room 36, CR Building, 610 Binchuan Rd, Minhang District, Shanghai, China', '1992-12-21', 0, 0, 'sullivanfran88', '2010-03-23', 'frsullivan5', '2003-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS923114036120', '郭致远', 1, '+81 70-5887-7328', 0, '555818188521226534', '日本東京渋谷区代々木二丁目3番5号24階', '1999-02-20', 0, 0, 'guzhiyuan726', '2014-11-09', 'zhiyuan1124', '2008-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS377389578803', 'Leslie Foster', 0, '+86 10-325-0999', 3, '765913374288759168', 'Room 36, 267 FuXingMenNei Street, XiCheng District, Beijing, China', '1986-08-31', 0, 0, 'foster4', '2002-01-01', 'foster130', '2016-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS544481652317', '丸山大輔', 1, '+44 7284 638719', 1, '775758853785975190', 'Block 22, 38 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1986-12-08', 0, 0, 'damaruyama65', '2000-02-06', 'daisuke413', '2009-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS667125109838', '金子紗良', 0, '+86 28-185-1501', 2, '407617780359904470', '中国成都市成华区双庆路580号39号楼', '1997-08-14', 0, 0, 'skan', '2008-12-11', 'kasara509', '2020-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS349989178709', '加藤彩乃', 1, '+1 838-465-1748', 1, '823602491824021900', '376 State Street Suite 32, Albany, NY 12203, United States', '1994-10-11', 0, 0, 'ayanokat', '2017-05-26', 'katoa', '2012-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS325014252841', '井上愛梨', 0, '+44 7195 713982', 3, '279051815230521800', 'No.33 Main building, 643 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1992-08-01', 0, 0, 'inoueairi8', '2016-04-23', 'airiino5', '2002-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS922390476136', 'Margaret Kelley', 1, '+86 160-6884-3295', 2, '646652352151188315', '中国广州市天河区天河路421号20栋', '1992-02-08', 0, 0, 'kelleymar', '2007-01-03', 'margaretkelley', '2008-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS942442335714', '尹志遠', 0, '+81 80-3775-2301', 4, '153226823250925426', 'Rm. 29, 6 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1995-04-30', 0, 0, 'chiyuen9', '2017-05-09', 'ycy', '2011-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS915881213988', '毛惠妹', 0, '+44 (116) 023 7271', 2, '906411026414644828', 'Flat 19, 448 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-10-24', 0, 0, 'mhm', '2019-10-16', 'mohm', '2011-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS179143028579', '崔睿', 1, '+1 718-599-1684', 1, '130301540569777966', '64 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1997-01-22', 0, 0, 'ruicu6', '2002-07-04', 'ruicu17', '2004-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS997325419440', '鐘明', 1, '+86 161-2918-6886', 1, '765095369715015530', '中国中山京华商圈华夏街187号10室', '1995-05-12', 0, 0, 'mingchung', '2013-03-12', 'minchung', '2021-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS598873696116', '韦子韬', 0, '+81 90-1314-2489', 2, '405275213712278701', '日本ならし大和郡山市本庄町一丁目1番19号12号室', '1993-04-19', 0, 0, 'zitwei7', '2012-07-11', 'zitaowei8', '2006-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS116280864489', '彭宇宁', 0, '+44 7288 073087', 3, '655452385978682260', 'No.4 Main building, 127 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1996-03-11', 0, 0, 'peyunin', '2000-10-09', 'yunipeng311', '2010-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS883225448848', 'Judith Bailey', 0, '+86 769-072-8390', 0, '013343763525627981', '中国东莞坑美十五巷924号36号楼', '1997-05-04', 0, 0, 'bailey9', '2018-08-14', 'judithbailey', '2019-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS946256007000', '江麗欣', 0, '+81 11-507-5685', 3, '544622932383806887', '25-kai, 5-4-15 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-07-20', 0, 0, 'lykon', '2012-06-29', 'konlaiyan', '2016-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS498834645771', 'John Barnes', 1, '+44 (1223) 44 2210', 3, '151045733656406581', 'Unit 30, Oxford Eco Centre, 632 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1993-03-15', 0, 0, 'bjohn', '2005-03-29', 'bjohn1205', '2014-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS827928051556', '戴安娜', 1, '+86 190-1854-3837', 1, '566568695226120184', '中国成都市锦江区人民南路四段597号7号楼', '1994-08-23', 0, 0, 'daon08', '2000-02-01', 'daionna724', '2013-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS483343410800', 'Jeffrey Burns', 1, '+1 614-915-2311', 1, '668281913098545935', '682 East Cooke Road Suite 23, Columbus, GA 43214, United States', '1997-01-04', 0, 0, 'jefb', '2015-02-13', 'buj', '2007-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS295392190655', '向嘉伦', 1, '+81 80-5671-0754', 2, '882697151257694055', '日本札幌厚別区上野幌一条二丁目1番7号35階', '1988-02-15', 0, 0, 'xiang8', '2006-06-15', 'xiangjialun1', '2021-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS940870221488', 'Curtis Taylor', 1, '+86 193-4779-7148', 1, '069546948088606719', 'Room 50, CR Building, 64 West Chang''an Avenue, Xicheng District, Beijing, China', '1998-12-23', 0, 0, 'tc1', '2007-03-04', 'taylorcurti', '2021-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS483540330011', 'Anthony Woods', 1, '+81 80-9815-5580', 1, '050057139541873749', '日本なごやし北区楠味鋺三丁目80番17号49号室', '1986-02-20', 0, 0, 'anthowoods', '2011-10-16', 'wooanthony1209', '2011-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS762726519131', '山下聖子', 1, '+86 755-960-9397', 1, '155829614995226992', '中国深圳龙岗区布吉镇西环路259号42室', '1998-11-09', 0, 0, 'yamashitaseiko', '2011-06-06', 'yseik218', '2008-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS047793403923', '魏云熙', 1, '+81 11-024-4922', 3, '053029316528253187', 'Rm. 16, 5-4-16 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1994-10-24', 0, 0, 'wyun5', '2002-09-30', 'yunwei', '2021-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS826156462565', '餘天榮', 0, '+1 838-219-7498', 0, '906939031320209626', '336 Lark Street Apartment 25, Albany, NY 12210, United States', '1992-09-27', 0, 0, 'twyu', '2014-03-14', 'yuetinwing', '2001-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS909968493916', 'Josephine Gonzales', 1, '+44 5386 016906', 4, '160951591663785953', 'No.2 Main building, 476 Redfern St, Liverpool, L20 8JB, United Kingdom', '1998-10-01', 0, 0, 'josephinegonza', '2001-08-08', 'gonjos', '2009-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS907838380957', '宮崎彩乃', 0, '+44 (20) 1863 7336', 2, '105755941634291675', 'No.19 Main building, 361 Pollen Street, London, W1S 1NG, United Kingdom', '1994-04-20', 0, 0, 'ayamiyazaki', '2014-04-25', 'miyazakiayano', '2008-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS961169385414', '竹内舞', 0, '+81 3-7368-1918', 3, '702482850057829809', '日本東京渋谷区代々木二丁目3番4号33階', '1993-06-30', 0, 0, 'takeuchimai9', '2006-07-09', 'tma', '2011-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS977147943280', '黎詩君', 1, '+81 11-116-7693', 4, '803939663077559711', '14-kai, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1993-02-11', 0, 0, 'lai217', '2020-06-05', 'laisze', '2014-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS319952323807', '池田桜', 1, '+81 52-401-3323', 0, '694536075696548713', 'Rm. 38, 11 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1989-06-24', 0, 0, 'sakuikeda', '2001-11-25', 'sakui2', '2018-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS844034154111', '竹内蓮', 1, '+86 10-7423-4007', 3, '643167507321784948', 'No.41 building, 93 FuXingMenNei Street, XiCheng District, Beijing, China', '1985-02-26', 0, 0, 'rentakeu202', '2004-10-09', 'ret209', '2003-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS332028919430', '樊慧琳', 0, '+81 3-5862-0397', 0, '840807471175935495', '23F, 1-6-16, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1985-01-20', 0, 0, 'wlf', '2008-12-02', 'fanwl', '2000-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS897685148091', '福田彩乃', 1, '+81 70-2268-1972', 0, '243604442873953912', '日本ならし学園南三丁目9番13号44号室', '1987-01-27', 0, 0, 'ayanof', '2013-12-09', 'fukuda61', '2002-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS461202752720', '张晓明', 0, '+44 7009 570367', 1, '310051035752828043', 'No.19 Main building, 334 New Street, Birmingham, B2 4DB, United Kingdom', '1986-02-15', 0, 0, 'xiaomingzhang51', '2013-12-15', 'xiaomz624', '2006-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS319770802232', 'Elaine Mendoza', 0, '+81 11-385-7764', 2, '243259403953555102', '48F, 5-19-8 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1989-08-25', 0, 0, 'elainem19', '2019-07-25', 'mendoela', '2007-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS500253440860', '内田玲奈', 1, '+86 156-8249-0387', 2, '918705522098397816', '49F, 820 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1999-01-03', 0, 0, 'renauchida', '2000-06-15', 'reuchida', '2020-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS022687413579', '應家強', 0, '+81 80-2287-7606', 1, '190489115528648942', '日本札幌白石区菊水三条五丁目2番5号27階', '1999-01-19', 0, 0, 'kakeungying', '2000-07-24', 'ykk9', '2010-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS626052463753', '田中美緒', 0, '+86 760-5001-8756', 4, '117900010634827067', '4F, 10 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1991-10-25', 0, 0, 'tmio1998', '2021-08-19', 'mita720', '2002-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS402888922785', '高國權', 0, '+81 11-516-2055', 3, '264772630659406515', '37-kai, 2-1-5 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1995-12-07', 0, 0, 'kakk620', '2009-06-13', 'kwokkkao', '2017-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS524924874962', '松本愛梨', 1, '+81 66-524-1475', 1, '525513413418763489', '13F, 1-7-19 Omido, Higashiosaka, Osaka, Japan', '1993-03-02', 0, 0, 'matsumoto406', '2012-10-19', 'matsumotoair', '2000-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS445988915442', '石田大和', 0, '+86 769-979-7397', 3, '173293789895659368', '中国东莞环区南街二巷402号43室', '1997-11-20', 0, 0, 'yamish3', '2017-02-28', 'yamatoishida4', '2003-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS599596623454', 'Catherine Mendoza', 1, '+86 769-2553-5176', 3, '548259687749768502', 'Room 48, CR Building, 189 Shanhu Rd, Dongguan, China', '1991-06-29', 0, 0, 'cmendoza', '2020-09-12', 'cathemend208', '2018-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS590456750799', 'Rose Carter', 0, '+81 90-3615-9306', 2, '694503305612920899', '日本札幌白石区菊水三条五丁目4番20号50階', '1994-01-07', 0, 0, 'crose', '2018-12-10', 'carterro2', '2007-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS063276573059', 'Christopher Mills', 0, '+86 134-9737-7142', 0, '535766811368956633', 'Room 29, 626 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1991-08-21', 0, 0, 'christopher1', '2018-06-18', 'mills5', '2018-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS107267411399', '武田光', 0, '+1 312-181-6575', 4, '795192199519135507', '822 Rush Street Apt 37, Chicago, IL 60611, United States', '1997-05-10', 0, 0, 'hikaru41', '2015-02-22', 'takeda118', '2009-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS105403919181', '中島彩乃', 0, '+44 5220 760091', 3, '127202303414585837', 'No.49 Main building, 363 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1996-09-23', 0, 0, 'anakaj', '2008-04-07', 'ayanon', '2006-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS002936696932', '何子韬', 0, '+81 70-7816-8318', 3, '379686536494448971', '20-kai, 1-1-5 Deshiro, Nishinari Ward, Osaka, Japan', '1985-12-12', 0, 0, 'zitahe2004', '2007-10-27', 'hzitao2', '2017-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS027839123799', '盧淑怡', 0, '+86 132-0329-4971', 4, '414110302324047925', 'Room 22, 503 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1992-02-10', 0, 0, 'sukyeel', '2006-05-29', 'lsukyee', '2006-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS627504331484', '苏云熙', 0, '+1 213-063-2481', 3, '494145081727215025', '507 Sky Way Apt 21, Los Angeles, CA 90043, United States', '1985-03-14', 0, 0, 'yunxis1974', '2015-04-26', 'suyunx', '2003-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS388942513009', 'Edward Mason', 1, '+44 (1223) 62 5698', 3, '451419432736750740', 'Unit 18, Oxford Eco Centre, 431 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1996-03-28', 0, 0, 'masonedward', '2005-03-19', 'masoned', '2001-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS814623436085', '周國賢', 0, '+86 755-471-0866', 4, '433532175921442948', 'Room 32, 457 Jingtian East 1st St, Futian District, Shenzhen, China', '1992-03-06', 0, 0, 'chowkwo98', '2009-10-10', 'kychow', '2000-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS600865336412', '石田蒼士', 0, '+44 7680 739595', 0, '387340406021877981', 'Flat 34, 591 New Street, Birmingham, B2 4DB, United Kingdom', '1994-03-04', 0, 0, 'isaoshi7', '2012-06-26', 'ishidaao', '2003-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS405830305003', '刘安琪', 1, '+44 (1223) 52 4485', 2, '086186347883706704', 'No.49 Main building, 602 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1987-10-20', 0, 0, 'al2016', '2005-01-26', 'liuan725', '2016-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS139883646161', 'Mary Myers', 1, '+1 212-645-5915', 1, '300635496226230522', '942 Fifth Avenue Apartment 32, New York, NY 10017, United States', '1986-05-04', 0, 0, 'marymy', '2010-07-29', 'marymyer', '2007-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS507517656314', '韦嘉伦', 1, '+44 5152 539821', 0, '663790439721048420', 'Unit 3, Oxford Eco Centre, 502 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1990-08-27', 0, 0, 'jwei', '2009-10-16', 'weijial', '2003-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS516753557473', 'Leonard Weaver', 0, '+44 5454 712151', 3, '106543642331417698', 'Block 21, 514 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1993-05-07', 0, 0, 'leoweave', '2020-12-03', 'lw3', '2003-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS207044330210', '任俊宇', 1, '+44 5500 633024', 4, '013557111696492394', 'Block 9, 416 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1994-10-22', 0, 0, 'chunyuya', '2009-03-22', 'cyy', '2009-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS415358453643', '韓梓晴', 0, '+81 80-9347-3535', 3, '964409471037107833', '日本ならし学園南三丁目9番3号22号室', '1998-09-08', 0, 0, 'hantszching', '2019-07-22', 'tszching7', '2013-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS353883034811', '史嘉伦', 0, '+86 176-1984-0979', 1, '398380135810485421', '中国广州市白云区机场路棠苑街五巷175号43楼', '1993-11-21', 0, 0, 'shijia1', '2001-12-16', 'jialuns', '2009-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS900414870025', '菅原蓮', 1, '+1 213-071-1851', 3, '136530316750894293', '857 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1993-10-18', 0, 0, 'rensug9', '2000-01-12', 'sugawara520', '2020-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS736452641365', '中島優奈', 1, '+1 213-030-0648', 3, '200078628457059926', '374 Alameda Street Apt 41, Los Angeles, CA 90002, United States', '1988-10-16', 0, 0, 'nyuna', '2012-03-06', 'nyuna', '2003-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS198552863386', '谭秀英', 1, '+86 10-8144-1428', 4, '675028842023196664', '中国北京市延庆区028县道733号8栋', '1987-01-13', 0, 0, 'xiuyingtan', '2016-07-27', 'xiuying6', '2010-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS472781877683', 'Sheila Gordon', 1, '+1 330-307-5566', 1, '909119466235011972', '380 Fern Street 3rd Floor, Akron, OH 44307, United States', '1987-07-27', 0, 0, 'sheigo', '2008-07-11', 'sheig00', '2002-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS557942969638', '尹永發', 1, '+81 66-117-1402', 2, '917602008826390466', '日本おおさかし西成区出城一丁目1番11号2階', '1998-10-25', 0, 0, 'wfyin98', '2020-12-12', 'wingfatyin', '2015-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS152308365217', '杜嘉伦', 0, '+81 74-644-1651', 4, '165550451795408877', '日本ならし学園南三丁目9番20号48号室', '1997-09-10', 0, 0, 'dujial', '2001-04-18', 'jidu401', '2014-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS825570754239', 'Bradley Hall', 1, '+81 3-0775-2762', 3, '980570448010506558', 'Rm. 16, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1988-10-07', 0, 0, 'halbradl', '2006-06-28', 'hallbradl', '2001-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS540509582177', '菊地花', 1, '+86 199-8705-2917', 0, '363161933764527536', '11F, 94 Shennan Ave, Futian District, Shenzhen, China', '1993-03-31', 0, 0, 'hanak', '2013-09-18', 'hana1117', '2009-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS219475381864', '井上光', 1, '+44 (1865) 08 3976', 0, '646828545957262245', 'Unit 43, Oxford Eco Centre, 555 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1997-06-28', 0, 0, 'hinoue78', '2018-10-21', 'inoue608', '2020-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS746859930292', '樊朝偉', 0, '+86 28-083-0973', 3, '364049145683544956', '中国成都市成华区二仙桥东三路448号4楼', '1997-12-28', 0, 0, 'fan623', '2002-07-23', 'chiuwaifa', '2016-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS774719555912', '王子异', 1, '+81 80-6638-0046', 1, '635697548748803797', '48-kai, 2 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1996-06-14', 0, 0, 'wang67', '2015-05-11', 'ziyiwang', '2006-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS259720176019', '市川美月', 0, '+86 195-3577-1905', 0, '020619199363013900', 'Room 12, CR Building, 755 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1993-05-09', 0, 0, 'miichi407', '2019-04-12', 'im10', '2019-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS847942139072', '中山大和', 1, '+81 66-269-2513', 2, '811645171299187512', '33-kai, 2-1-14 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1988-09-26', 0, 0, 'nakayamay210', '2001-12-10', 'yamatonakayama4', '2002-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS718399972021', '宣志明', 1, '+44 (151) 394 6560', 0, '158825020975854055', 'Flat 21, 309 Hanover St, Liverpool, L1 4AF, United Kingdom', '1996-05-11', 0, 0, 'hsuancm410', '2001-01-04', 'chiminghsua704', '2017-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS865505757000', '段璐', 1, '+81 70-6986-1697', 3, '644105001866011853', '33F, 6-1-7, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1995-01-20', 0, 0, 'luduan', '2010-12-11', 'duan121', '2017-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS318981205175', '黃慧儀', 0, '+81 90-3405-6734', 2, '810756442195573897', '日本おおさかし西成区天神ノ森二丁目1番11号14階', '1989-04-05', 0, 0, 'waiyeewon226', '2005-05-28', 'wongwy5', '2013-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS801310669138', '李子异', 1, '+81 66-570-8061', 2, '431576862178523997', '日本おおさかし東住吉区東田辺三丁目27番8号16階', '1996-08-30', 0, 0, 'ziyili', '2018-10-17', 'ziyli1206', '2003-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS005499137177', '原葵', 1, '+86 10-5677-9705', 0, '987366726527379625', 'No.9 building, 947 East Wangfujing Street, Dongcheng District , Beijing, China', '1991-04-04', 0, 0, 'aoihar904', '2002-06-21', 'harao', '2002-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS965421749278', '汪慧敏', 1, '+44 (20) 2080 9069', 0, '818094294587751578', 'No.4 Main building, 120 Hanover Street, London, W1S 1YD, United Kingdom', '1988-12-21', 0, 0, 'waiman2', '2006-05-05', 'wmwong111', '2010-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS950827552258', '余子异', 1, '+81 90-1631-8838', 4, '961307170469220656', '日本おおさかし西成区出城一丁目1番16号2階', '1996-06-03', 0, 0, 'ziyi830', '2018-10-11', 'yziyi620', '2001-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS774349637967', '斎藤七海', 1, '+86 10-6325-4084', 3, '377869620502773973', '中国北京市东城区东单王府井东街850号7号楼', '1989-12-09', 0, 0, 'nanasaito', '2005-02-15', 'ns86', '2009-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS097825399679', '姜宇宁', 1, '+81 11-537-2672', 1, '405215695226366975', '38-kai, 2-1-7 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1988-09-08', 0, 0, 'yuningjiang', '2003-09-18', 'yuninj6', '2005-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS631906636124', '樊淑怡', 0, '+1 330-475-7556', 1, '666170455017172574', '863 Collier Road Apt 4, Akron, OH 44320, United States', '1987-11-04', 0, 0, 'syfan1971', '2003-06-30', 'sukyeefan', '2000-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS887631171891', 'Julia Gomez', 1, '+81 52-438-5067', 4, '562453685212091158', '日本なごやし北区清水三丁目19番15号11階', '1987-03-25', 0, 0, 'jugomez1', '2012-02-29', 'gojulia', '2003-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS363244971233', '樊浩然', 1, '+81 90-0342-0261', 4, '665043230953951288', '日本なごやし北区楠味鋺三丁目80番4号18階', '1985-06-14', 0, 0, 'hoyinfan', '2012-06-02', 'fan03', '2017-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS826532764592', '陶安琪', 1, '+44 (121) 093 2648', 3, '918402733200730957', 'Block 20, 606 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1988-10-21', 0, 0, 'taoa', '2014-01-18', 'anqitao', '2000-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS552694292708', 'Edna Moore', 1, '+86 769-4692-2701', 2, '310931775893711651', '中国东莞东泰五街338号华润大厦3室', '1989-09-18', 0, 0, 'emo512', '2010-11-06', 'mooreedn128', '2000-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS419433933677', '有村明菜', 0, '+81 11-529-2885', 1, '424039239899422990', 'Rm. 45, 13-3-16 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-12-11', 0, 0, 'akinaarimu', '2010-08-20', 'arimuakina6', '2015-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS753213954846', '佐藤拓哉', 1, '+1 718-161-5921', 3, '033112615360368972', '770 1st Ave Apartment 46, Brooklyn, NY 11220, United States', '1991-03-06', 0, 0, 'takuyasa', '2007-05-14', 'sattakuy', '2003-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS632010267478', '杨宇宁', 1, '+81 80-6128-8655', 1, '671366888237527459', '日本札幌白石区菊水三条五丁目2番9号11階', '1987-05-17', 0, 0, 'yuning7', '2016-06-29', 'yy8', '2013-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS442887204366', 'Linda Martin', 1, '+1 718-595-2133', 3, '913368921558898783', '329 1st Ave Apt 46, Brooklyn, NY 11220, United States', '1993-09-30', 0, 0, 'martinlind', '2016-07-30', 'mli', '2003-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS473636096736', '有村陽太', 0, '+44 5266 302450', 2, '225129444907972682', 'Unit 42, Oxford Eco Centre, 998 Pollen Street, London, W1S 1NG, United Kingdom', '1993-08-01', 0, 0, 'yoarim4', '2012-12-19', 'arimurayota3', '2006-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS994554924511', '岡本葵', 1, '+81 70-1042-6409', 1, '831097890827267506', '8F, 1-7-1 Saidaiji Akodacho, Nara, Japan', '1990-02-13', 0, 0, 'okaoi1106', '2014-08-11', 'okamotoaoi', '2018-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS039464151912', '石田優奈', 1, '+1 213-706-8895', 3, '359092420951986185', '938 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1985-12-31', 0, 0, 'isyu', '2016-08-07', 'ishiyuna', '2010-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS327290476844', '横山拓哉', 0, '+81 52-883-1088', 2, '211617169747308450', '日本なごやし瑞穂区河岸町四丁目20番3号11階', '1988-06-25', 0, 0, 'yokoyamatakuya422', '2015-07-27', 'yota213', '2002-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS401561380270', 'Shirley Alvarez', 0, '+86 769-925-3468', 1, '288467447925308875', '中国东莞东泰五街29号14号楼', '1994-04-10', 0, 0, 'alvars', '2011-05-28', 'shalvar', '2005-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS840453945806', '麥嘉欣', 1, '+86 755-0329-7596', 3, '744381951877538571', 'Room 21, 523 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1985-01-07', 0, 0, 'makkaryan2012', '2003-03-15', 'kym109', '2010-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS144538914150', '毛嘉伦', 0, '+86 158-2858-4197', 3, '529804601428974434', 'Room 31, 528 Shennan Ave, Futian District, Shenzhen, China', '1998-10-14', 0, 0, 'jialun2', '2009-01-05', 'maojialun7', '2014-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS011481608257', '古安娜', 1, '+44 7930 258377', 0, '752822277466212499', 'Flat 47, 173 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1997-10-07', 0, 0, 'konna9', '2015-03-21', 'kuon', '2000-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS862971702336', '小島結翔', 0, '+81 11-654-7352', 3, '156034317684413319', '日本札幌白石区菊水三条五丁目4番19号16号室', '1990-01-18', 0, 0, 'yuito1996', '2006-06-18', 'kojiyuito', '2005-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS591138888115', '區家文', 0, '+1 614-569-4240', 3, '216464854012182941', '817 East Alley Apt 26, Columbus, GA 43201, United States', '1986-04-14', 0, 0, 'kma1215', '2014-01-31', 'aukaman', '2016-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS464877039234', '岡田桜', 0, '+81 11-654-2944', 1, '112220661729755339', '日本札幌中央区宮の森四条六丁目1番16号16号室', '1991-03-02', 0, 0, 'okadasakura704', '2009-07-17', 'okadasakur', '2017-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS496106244895', '高木明菜', 1, '+81 3-6756-9773', 4, '465367500635224882', '日本東京中央区銀座三丁目12番7号18階', '1990-02-07', 0, 0, 'takina98', '2018-07-02', 'akinataka', '2018-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS667569239164', '小野百花', 1, '+86 181-4183-0258', 0, '864022765571643993', '中国上海市徐汇区虹桥路567号32楼', '1993-12-21', 0, 0, 'momoka107', '2013-11-08', 'momokaon', '2009-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS166212276003', '谭睿', 1, '+86 21-698-6572', 2, '874626581089480762', '中国上海市浦东新区健祥路535号40室', '1998-07-29', 0, 0, 'rtan', '2015-10-21', 'rui428', '2009-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS464691892472', '宣祖兒', 1, '+44 (116) 458 6089', 3, '658697506293874088', 'Flat 21, 908 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1993-02-19', 0, 0, 'hsuan7', '2004-03-18', 'hsuan813', '2014-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS593564907579', '丁璐', 1, '+44 7506 635206', 4, '089742713722585474', 'No.27 Main building, 544 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1990-10-20', 0, 0, 'luding', '2013-10-15', 'ding1996', '2016-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS261483699443', '陶家明', 1, '+81 66-272-2838', 1, '713889901458425449', '日本おおさかし近江堂一丁目7番1号43階', '1994-04-02', 0, 0, 'taokm', '2015-04-27', 'kaming45', '2022-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS146441302531', '後藤拓哉', 0, '+44 7749 378484', 4, '966630398856192298', 'Unit 15, Oxford Eco Centre, 243 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1996-10-09', 0, 0, 'takugoto7', '2021-07-08', 'goto2', '2007-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS328883138128', 'Stephanie Jimenez', 0, '+86 10-559-9110', 4, '308955498934224125', 'Room 25, 900 Sanlitun Road, Chaoyang District, Beijing, China', '1998-12-14', 0, 0, 'stephanie6', '2011-01-11', 'sjimenez', '2019-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS945112440943', '任嘉伦', 1, '+86 139-3130-4186', 1, '281511683645355611', 'Room 43, 71 68 Qinghe Middle St, Haidian District, Beijing, China', '1990-10-25', 0, 0, 'renjialun619', '2006-05-06', 'rjial9', '2008-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS986796922217', 'Thomas Diaz', 1, '+86 21-1350-8174', 4, '293665052536100981', '中国上海市浦东新区健祥路463号8楼', '1992-08-01', 0, 0, 'thomas9', '2011-06-21', 'diat', '2009-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS698216203487', 'Bobby Kennedy', 0, '+86 755-091-9973', 3, '955123760225112485', '中国深圳罗湖区清水河一路791号16栋', '1991-09-30', 0, 0, 'bobby1973', '2007-02-24', 'bobbykenne', '2001-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS539558142614', 'David Russell', 0, '+44 5339 662241', 2, '490722846053282227', 'Flat 32, 122 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1991-03-28', 0, 0, 'rdav720', '2014-01-05', 'davidru822', '2008-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS156099286064', '常震南', 0, '+86 755-360-1191', 2, '107068451681453503', 'Room 35, 37 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1993-01-28', 0, 0, 'zchang', '2016-09-17', 'chanzhennan', '2001-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS847536825139', '何睿', 1, '+86 135-9316-0516', 2, '192557455374077002', 'Room 13, CR Building, 639 68 Qinghe Middle St, Haidian District, Beijing, China', '1993-09-29', 0, 0, 'ruhe', '2001-02-13', 'rui7', '2007-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS384460242903', 'Victor Edwards', 0, '+44 (151) 651 7037', 2, '437815385397467023', 'Unit 38, Oxford Eco Centre, 288 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1990-02-11', 0, 0, 'edvictor', '2004-06-08', 'edvictor49', '2007-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS054004692084', '蔡安琪', 1, '+81 70-4847-4922', 1, '576030804951458573', '日本おおさかし西成区出城一丁目1番9号11階', '1987-02-26', 0, 0, 'anqicai326', '2003-01-19', 'anqic86', '2003-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS775380926606', '原田蒼士', 0, '+1 718-900-8738', 4, '929068904831402319', '721 Nostrand Ave Apartment 36, Brooklyn, NY 11216, United States', '1991-07-15', 0, 0, 'aohara', '2012-06-09', 'aoshiharada', '2002-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS257650465845', 'Ann Hicks', 1, '+81 70-7375-4381', 3, '452439014009760871', '日本なごやし北区楠味鋺三丁目80番7号28階', '1989-06-12', 0, 0, 'hicksann', '2009-01-25', 'hicks88', '2011-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS207054100520', '严云熙', 0, '+1 212-574-6294', 2, '283982239018508415', '73 West Houston Street Apartment 35, New York, NY 10014, United States', '1995-07-31', 0, 0, 'yuyan', '2000-11-26', 'yyunxi', '2020-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS320797688453', '原田樹', 1, '+86 170-0779-6242', 3, '561187842990638687', '中国成都市成华区双庆路670号华润大厦47室', '1992-07-18', 0, 0, 'iharada', '2002-09-12', 'itsuh602', '2000-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS587430299720', 'Sara Taylor', 0, '+44 (161) 597 1802', 1, '515888573414873578', 'Flat 39, 107 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1986-10-30', 0, 0, 'tsara5', '2017-05-24', 'sarat', '2017-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS020031664140', 'Andrew Marshall', 1, '+86 163-3036-9261', 2, '295207908549013679', '中国广州市白云区小坪东路92号25室', '1985-02-27', 0, 0, 'amar', '2003-06-22', 'andrmarshall', '2010-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS275719381007', 'Jose Simpson', 1, '+44 (116) 688 6924', 3, '964632600904402983', 'Flat 9, 693 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1985-06-26', 0, 0, 'sjose318', '2018-10-26', 'joss', '2019-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS256482573654', '彭致远', 0, '+44 7222 128863', 3, '109207128638148759', 'Unit 32, Oxford Eco Centre, 187 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1986-06-15', 0, 0, 'pengzhiyu', '2008-08-28', 'zhipeng', '2003-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS516735686249', '山口聖子', 1, '+81 66-424-6240', 1, '609264263857420645', '22-kai, 2-1-16 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1990-04-15', 0, 0, 'yamaguchis', '2014-11-10', 'syamaguchi10', '2016-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS544535325962', '段致远', 0, '+1 614-672-8008', 1, '022967658796205346', '124 Tremont Road Apt 18, Columbus, GA 43212, United States', '1995-06-16', 0, 0, 'zhd3', '2009-01-03', 'zhdua', '2011-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS776849283350', '伊藤陸', 0, '+1 838-395-0277', 1, '540649679644077946', '119 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1991-01-09', 0, 0, 'rikui2', '2006-03-13', 'riku53', '2005-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS311571626535', '江家明', 1, '+86 21-869-6450', 1, '987888962816089871', '中国上海市浦东新区橄榄路447号33号楼', '1997-03-18', 0, 0, 'kmk', '2018-04-04', 'kongkm', '2014-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS689691844132', '王致远', 1, '+44 5029 456701', 1, '280828064492090520', 'Block 2, 127 Portland St, Manchester, M1 3LA, United Kingdom', '1995-05-12', 0, 0, 'zhiw', '2008-05-05', 'wang5', '2021-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS554687270676', '陳惠妹', 0, '+1 213-785-8406', 0, '001490472684792787', '720 Sky Way Suite 47, Los Angeles, CA 90043, United States', '1993-01-13', 0, 0, 'chan212', '2010-03-04', 'chanhm', '2013-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS637953365100', '侯杰宏', 1, '+86 131-4595-1932', 1, '630752494135433393', '中国中山紫马岭商圈中山五路75号9楼', '1987-05-08', 0, 0, 'jiehonghou122', '2012-11-08', 'houjiehong', '2011-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS224504944102', 'Susan Thompson', 0, '+86 176-4196-8063', 1, '887563386586644510', 'Room 50, 873 Shennan Ave, Futian District, Shenzhen, China', '1991-04-22', 0, 0, 'thsusan', '2009-11-27', 'thompsonsusan', '2000-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS765767712147', '西村陽菜', 1, '+86 177-7359-7183', 2, '834894024099103786', 'No.13 building, 900 FuXingMenNei Street, XiCheng District, Beijing, China', '1989-07-26', 0, 0, 'hinanishimura', '2021-02-11', 'nihina', '2009-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS430805900124', '木村花', 1, '+44 (161) 341 9881', 2, '165998491077062578', 'Unit 1, Oxford Eco Centre, 423 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-11-06', 0, 0, 'hana10', '2006-04-11', 'kh2', '2008-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS316446892995', '羅曉彤', 1, '+44 7117 983518', 1, '748403926843584143', 'No.39 Main building, 870 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1989-07-06', 0, 0, 'hiutunglo930', '2008-04-06', 'hiutung3', '2013-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS349946971883', '向杰宏', 0, '+44 5942 831930', 3, '344909809084622009', 'No.26 Main building, 967 Sackville St, Manchester, M1 3BB, United Kingdom', '1985-03-10', 0, 0, 'jiehongxia5', '2001-07-22', 'xjiehong2', '2011-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS134145636498', '鈴木葉月', 0, '+86 760-654-9326', 3, '881488785584734903', 'No.10 building, 257 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1993-07-01', 0, 0, 'shazuki', '2012-03-15', 'hazuki97', '2013-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS526829684991', 'Kyle Myers', 0, '+44 7428 542841', 1, '351721863210991195', 'Block 17, 630 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1998-05-27', 0, 0, 'myerskyle', '2010-10-30', 'kyle9', '2021-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS043925516739', '王朝偉', 0, '+1 212-641-9443', 1, '676778571381452538', '376 Bank Street Apartment 37, New York, NY 10014, United States', '1988-02-13', 0, 0, 'cwwong', '2021-02-05', 'wcw', '2012-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS099433041048', '新井葉月', 0, '+81 3-7689-4595', 3, '640944508388295869', '43F, 1-5-13, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-05-02', 0, 0, 'araihaz', '2004-09-15', 'araihazuki', '2009-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS482197946986', 'Marvin Bell', 0, '+81 52-985-0451', 0, '986652871225987296', '日本なごやし北区清水三丁目19番17号10号室', '1987-06-28', 0, 0, 'marvin902', '2006-01-29', 'marvinbel', '2003-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS778716320245', '杉山美羽', 0, '+81 52-525-6653', 2, '294295948895247249', 'Rm. 17, 3 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1985-07-13', 0, 0, 'smi', '2000-04-04', 'miusugiyama427', '2015-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS754747993187', '汤詩涵', 0, '+86 173-8545-4243', 1, '390903066051464156', 'Room 12, 517 Jingtian East 1st St, Futian District, Shenzhen, China', '1989-05-27', 0, 0, 'shitang', '2001-07-17', 'shihatang', '2016-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS072744114729', '桜井葉月', 0, '+81 90-0455-6129', 2, '381616713013510784', '日本ならし大和郡山市本庄町一丁目1番17号12階', '1989-02-04', 0, 0, 'sakuraiha', '2011-01-10', 'hazs', '2018-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS252469265525', '钱詩涵', 1, '+86 760-6422-1540', 0, '541816347115796014', 'Room 42, CR Building, 62 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1996-08-08', 0, 0, 'qian1', '2007-08-28', 'qs529', '2013-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS948570799149', '王安娜', 0, '+81 52-433-5536', 2, '293773426774863323', '日本なごやし熱田区千年二丁目5番9号17号室', '1991-10-18', 0, 0, 'wonon', '2006-04-07', 'wonna8', '2018-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS354047050485', 'Steven Ruiz', 1, '+1 718-841-2922', 3, '838988277769167486', '216 Nostrand Ave Apt 11, Brooklyn, NY 11216, United States', '1987-02-05', 0, 0, 'str', '2001-11-25', 'ruizs', '2014-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS040677899443', '尹宇宁', 1, '+1 213-348-4743', 3, '277349371242394418', '920 S Broadway Apartment 50, Los Angeles, CA 90015, United States', '1995-09-10', 0, 0, 'yuny1951', '2015-10-22', 'yyin', '2016-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS720196194080', '清水花', 1, '+44 (121) 749 8884', 1, '072676122776960654', 'No.45 Main building, 158 New Street, Birmingham, B2 4DB, United Kingdom', '1997-08-18', 0, 0, 'shimizuha', '2003-08-20', 'has', '2012-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS653664699414', '關安琪', 0, '+81 11-500-4572', 3, '382678067735414111', '1F, 5-4-13 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-07-21', 0, 0, 'onkay10', '2007-08-10', 'okkwan', '2008-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS506219224708', '森光莉', 0, '+44 (116) 913 8520', 4, '571993807545948888', 'Flat 7, 111 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1991-07-26', 0, 0, 'mori121', '2007-03-04', 'morihikar', '2009-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS358194602928', '小山舞', 0, '+81 80-2030-1151', 3, '173378354600311768', '日本札幌白石区菊水三条五丁目4番4号30階', '1993-04-24', 0, 0, 'koyamamai', '2005-01-28', 'maikoya911', '2005-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS433132266144', '中川樹', 0, '+44 5918 492961', 2, '897437166775802784', 'Flat 19, 477 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1996-08-06', 0, 0, 'nakagawaitsuki', '2003-12-20', 'nai', '2009-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS091795993377', 'Wendy Perez', 0, '+86 10-7290-0658', 4, '065024592333199373', '中国北京市东城区东单王府井东街866号34楼', '1994-10-28', 0, 0, 'pewend110', '2011-08-12', 'perewendy', '2013-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS168401031016', '贾嘉伦', 1, '+86 28-188-9701', 3, '382742868260347147', '中国成都市成华区双庆路629号17号楼', '1997-10-28', 0, 0, 'jjia', '2016-03-26', 'jj2020', '2018-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS982945528844', '長谷川海斗', 1, '+81 70-5330-0434', 1, '239595063579029076', 'Rm. 33, 5-2-11 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1992-01-20', 0, 0, 'hasegawa411', '2020-04-27', 'kaitohasegawa', '2004-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS952050283836', '伍玲玲', 0, '+1 614-551-8588', 3, '860290455216713255', '374 East Alley Apartment 33, Columbus, GA 43201, United States', '1995-12-28', 0, 0, 'ling8', '2018-07-09', 'ngll', '2016-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS291265701687', '阎岚', 1, '+81 80-9363-1676', 2, '619189247162748438', '45F, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-02-05', 0, 0, 'yalan', '2004-03-31', 'yanlan', '2003-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS362815282277', '黄子异', 0, '+86 146-2461-9002', 4, '966222778661868151', 'No.24 building, 999 68 Qinghe Middle St, Haidian District, Beijing, China', '1992-11-19', 0, 0, 'huangzi', '2006-04-08', 'huangziyi202', '2013-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS543592689869', 'Heather Baker', 1, '+86 10-397-7999', 3, '164053550592604387', 'Room 36, CR Building, 794 Yueliu Rd, Fangshan District, Beijing, China', '1995-07-18', 0, 0, 'baker2004', '2019-03-19', 'heather1127', '2015-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS541581149197', '樂玲玲', 1, '+86 197-7762-2922', 4, '405537746148172784', '中国北京市西城区复兴门内大街356号华润大厦1室', '1990-12-15', 0, 0, 'linglinglok91', '2016-10-07', 'lingling10', '2011-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS343650492490', 'Ryan Cook', 0, '+86 174-1616-5614', 1, '854269217768440686', '中国广州市白云区小坪东路963号1栋', '1988-06-30', 0, 0, 'cryan', '2011-12-02', 'cook9', '2000-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS254706074553', '李秀英', 0, '+1 838-010-8083', 2, '824930274887744480', '936 Broadway Apt 2, Albany, NY 12207, United States', '1988-12-06', 0, 0, 'xiuyingli8', '2000-08-17', 'li7', '2014-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS042790765935', 'Allen Moreno', 1, '+86 28-9462-7462', 2, '113144838817023979', 'Room 42, CR Building, No.104, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1990-12-01', 0, 0, 'morenoalle1122', '2011-07-14', 'allmo', '2005-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS969244418254', '吳裕玲', 1, '+44 (1223) 28 4161', 1, '573244948852005379', 'Flat 5, 257 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1990-07-27', 0, 0, 'yuling93', '2020-05-14', 'yln', '2004-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS450639734799', '蕭慧珊', 0, '+1 838-353-0622', 0, '198761834111607515', '792 Central Avenue Apartment 11, Albany, NY 12205, United States', '1991-09-22', 0, 0, 'swaisan', '2016-12-18', 'waisan41', '2008-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS224507524198', '汪岚', 0, '+1 614-861-9352', 3, '256125822022893584', '438 East Cooke Road Apt 29, Columbus, GA 43214, United States', '1997-10-30', 0, 0, 'lanwang', '2018-12-07', 'wangl', '2017-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS649755572798', '孙晓明', 1, '+86 197-7790-8599', 3, '090242284371306701', 'No.5 building, 398 West Chang''an Avenue, Xicheng District, Beijing, China', '1989-11-04', 0, 0, 'sunxiao66', '2008-03-02', 'sunxiao', '2009-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS819117768432', '渡部凛', 0, '+81 80-5223-7830', 4, '158248309012053288', 'Rm. 37, 3-27-3 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-07-14', 0, 0, 'rinwat', '2019-09-30', 'rin8', '2001-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS833441461197', 'Bonnie Robertson', 0, '+1 614-995-7361', 0, '968152309844588405', '596 East Cooke Road Suite 27, Columbus, GA 43214, United States', '1986-05-13', 0, 0, 'brober', '2015-07-05', 'br5', '2020-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS839431600919', '甘志明', 0, '+81 3-4451-8817', 3, '724038770750246888', '日本東京品川区東五反田五丁目2番16号42号室', '1989-07-15', 0, 0, 'chimingkam', '2019-04-16', 'chiming87', '2001-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS793309826396', '雷嘉伦', 1, '+81 11-440-4304', 1, '685007680566611868', '29-kai, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1996-07-05', 0, 0, 'jialunlei1016', '2020-03-02', 'jialul207', '2002-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS693406939229', '梁明詩', 1, '+86 157-7501-6298', 1, '812967468548004911', 'Room 49, 829 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1989-01-16', 0, 0, 'mingszel', '2019-07-04', 'leung2003', '2019-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS792406649840', '孟云熙', 0, '+86 10-544-5457', 4, '380380468661146982', 'No.30 building, 619 West Chang''an Avenue, Xicheng District, Beijing, China', '1986-11-18', 0, 0, 'yunxi8', '2021-10-12', 'yunxi6', '2019-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS936118291514', '藤井舞', 0, '+81 90-1640-6874', 1, '357236867024812627', '38-kai, 2-3-16 Yoyogi, Shibuya-ku, Tokyo, Japan', '1987-09-03', 0, 0, 'maifujii3', '2012-02-06', 'fujiima722', '2014-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS981266444759', '村田桜', 0, '+81 80-3134-8231', 1, '041600343048280600', '41F, 5-2-5 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1989-01-13', 0, 0, 'sakuramurata', '2002-04-05', 'sakmurata308', '2019-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS720201900305', 'Eric Weaver', 0, '+86 195-2352-0998', 0, '729502058936464621', '中国北京市東城区東直門內大街786号4室', '1992-06-01', 0, 0, 'weavere2', '2012-01-04', 'erweaver', '2009-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS097325953231', '毛秀英', 0, '+86 159-5220-4154', 2, '073333755581608961', '中国中山乐丰六路302号42栋', '1995-03-03', 0, 0, 'maox', '2003-07-27', 'xim', '2020-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS294086037504', '阎璐', 0, '+81 90-4026-2461', 1, '799491624678699500', '日本東京千代田区丸の内一丁目6番13号16階', '1994-08-10', 0, 0, 'yanl', '2011-06-09', 'lu1116', '2003-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS286021549004', '顧力申', 1, '+44 5972 079839', 3, '995814168578780412', 'Unit 7, Oxford Eco Centre, 264 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1987-07-04', 0, 0, 'liksun7', '2002-10-12', 'kuls612', '2021-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS332402773576', 'Harold Mendoza', 0, '+86 10-3759-8044', 1, '895477493098830885', '中国北京市西城区复兴门内大街569号11号楼', '1994-04-27', 0, 0, 'haroldmendoza2', '2013-07-18', 'mendozaharold', '2005-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS767016987266', '于子异', 0, '+81 90-5526-7802', 3, '925524194433834192', '39F, 2-5-11 Chitose, Atsuta Ward, Nagoya, Japan', '1998-02-08', 0, 0, 'ziyiyu', '2008-02-28', 'zyu10', '2003-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS346721852361', '白國明', 0, '+44 7272 465973', 2, '727093654396302095', 'Block 34, 446 Hanover St, Liverpool, L1 4AF, United Kingdom', '1987-07-22', 0, 0, 'pakkwokming', '2019-11-06', 'kmpak', '2012-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS039090569189', '小川涼太', 1, '+86 146-6602-7615', 1, '043621552474441926', '30F, 408 Jiangnan West Road, Haizhu District, Guangzhou, China', '1992-07-16', 0, 0, 'ryota402', '2019-07-14', 'ryotaogawa10', '2013-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS231126870064', '樊慧嫻', 1, '+81 11-892-2929', 0, '679000272895590543', '日本札幌白石区菊水三条五丁目4番20号24号室', '1993-08-20', 0, 0, 'waihanfan', '2008-12-19', 'fawaihan', '2021-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS141200149100', '中森一輝', 0, '+81 3-0858-2726', 3, '862518199812958609', '日本東京千代田区丸の内一丁目6番14号15階', '1994-01-05', 0, 0, 'nakamik', '2000-11-22', 'nakamori05', '2018-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS313438970519', 'Mary Tran', 1, '+44 (20) 6586 5468', 3, '424399830508743985', 'Unit 1, Oxford Eco Centre, 960 Pollen Street, London, W1S 1NG, United Kingdom', '1990-03-05', 0, 0, 'tmary', '2014-08-28', 'marytran', '2012-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS350331310716', 'Julia Castillo', 1, '+1 614-570-0235', 2, '882376613915027848', '550 East Cooke Road Apt 50, Columbus, GA 43214, United States', '1988-09-05', 0, 0, 'jca1946', '2016-05-26', 'castilloj', '2000-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS051299914709', 'Richard Dunn', 0, '+1 212-829-0397', 4, '682658937725129780', '22 Wooster Street Apt 44, New York, NY 10012, United States', '1997-07-05', 0, 0, 'ricdunn730', '2004-10-19', 'dunnrichard', '2019-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS528800974767', '何岚', 1, '+44 7002 603116', 2, '904371280110926737', 'Block 42, 551 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1986-05-30', 0, 0, 'hl9', '2002-08-20', 'he8', '2011-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS558369030373', 'Leslie Vasquez', 1, '+81 90-2480-3435', 3, '363028668101210195', '日本おおさかし西成区天神ノ森二丁目1番5号42号室', '1987-10-12', 0, 0, 'vleslie624', '2021-02-17', 'vasqul', '2004-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS950631996493', '工藤桜', 0, '+1 838-772-0711', 3, '782698047072418469', '908 Broadway Suite 34, Albany, NY 12207, United States', '1990-01-02', 0, 0, 'sakurakudo1118', '2021-08-17', 'sakurakudo', '2007-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS293573392877', '蔡惠妹', 1, '+81 3-9598-3376', 0, '362053358650040590', '日本東京港区東新橋一丁目5番4号40号室', '1985-10-07', 0, 0, 'chuimei3', '2001-05-28', 'chm1126', '2003-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS749386024080', 'Diane Guzman', 0, '+81 74-542-3152', 1, '386574008292217755', '41-kai, 3-9-6 Gakuenminami, Nara, Japan', '1987-09-18', 0, 0, 'diane6', '2017-05-02', 'guzd', '2021-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS933052001515', '陈璐', 1, '+86 141-1494-9680', 4, '460001803584383755', '40F, 631 Middle Huaihai Road, Huangpu District, Shanghai, China', '1996-08-15', 0, 0, 'luche', '2003-10-31', 'luchen', '2006-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS556014836045', '邱慧敏', 0, '+86 20-691-1689', 4, '949082972893695475', 'Room 38, CR Building, 512 Xiaoping E Rd, Baiyun , Guangzhou, China', '1986-07-16', 0, 0, 'ywaiman808', '2010-06-19', 'wmyau', '2012-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS129805332851', '古慧琳', 0, '+44 7792 778101', 2, '725841325264031626', 'Block 17, 179 Mosley St, Manchester, M2 3AQ, United Kingdom', '1985-07-08', 0, 0, 'wailamku81', '2014-07-08', 'wlku', '2012-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS107277894934', '潘子异', 0, '+44 (1865) 01 7050', 3, '183225628657842368', 'Unit 23, Oxford Eco Centre, 571 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1990-04-08', 0, 0, 'panziyi', '2020-02-01', 'zpan', '2000-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS404978633859', '野村陽太', 1, '+86 196-4581-4859', 3, '889693968492170102', '中国深圳龙岗区布吉镇西环路603号43号楼', '1992-12-27', 0, 0, 'yonomura', '2019-01-11', 'nomyo', '2012-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS255245242211', '姜杰宏', 0, '+44 5678 806525', 2, '955857932621936787', 'Unit 15, Oxford Eco Centre, 22 Pollen Street, London, W1S 1NG, United Kingdom', '1995-11-08', 0, 0, 'jiangjiehong325', '2019-11-18', 'jiehong121', '2020-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS814973103949', '谷秀文', 0, '+44 7967 375862', 2, '199339069968623274', 'Flat 30, 520 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1985-12-26', 0, 0, 'ksauma', '2001-12-27', 'koosm9', '2006-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS439119492894', '木村美緒', 1, '+1 718-261-6300', 1, '317159020708406474', '927 1st Ave Apartment 39, Brooklyn, NY 11220, United States', '1991-07-12', 0, 0, 'mki', '2011-08-07', 'kimurmi', '2001-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS211015355609', '杜志遠', 1, '+81 80-5489-0609', 1, '592539471960921155', '日本東京千代田区丸の内一丁目6番9号50階', '1989-05-02', 0, 0, 'cht', '2005-05-07', 'tocy', '2003-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS390807436915', '中村和真', 1, '+81 90-3697-6525', 3, '189869543571097845', '日本なごやし守山区瀬古東二丁目171番16号5階', '1989-08-12', 0, 0, 'nakamura10', '2003-01-17', 'nka7', '2011-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS887230422514', '福田凛', 1, '+86 755-154-2751', 0, '638547894754264245', '中国深圳龙岗区学园一巷251号华润大厦30室', '1998-11-22', 0, 0, 'rinfuk8', '2001-08-12', 'rinf', '2013-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS475556802339', '董子异', 0, '+81 80-7164-5420', 0, '057566981784508535', 'Rm. 4, 9 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-06-28', 0, 0, 'dongziyi', '2004-02-05', 'ziydong65', '2000-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS601006644036', '罗致远', 0, '+86 134-2940-2590', 4, '626545502362804261', '中国东莞环区南街二巷814号43栋', '1986-06-29', 0, 0, 'luozh', '2019-08-11', 'zlu', '2011-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS129536796936', '小川美咲', 1, '+1 614-199-5025', 4, '920942043086875234', '79 East Cooke Road Apt 50, Columbus, GA 43214, United States', '1989-12-02', 0, 0, 'misakio729', '2008-10-05', 'misakio14', '2019-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS506259060978', 'Randy Richardson', 1, '+86 755-260-1688', 4, '977153383615241442', 'Room 9, CR Building, 634 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-01-31', 0, 0, 'rr6', '2018-10-20', 'randyrich902', '2002-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS770487654145', '竹内桜', 1, '+81 80-2707-0174', 0, '258875321490730084', 'Rm. 4, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1989-12-26', 0, 0, 'takeuchisakura', '2002-06-16', 'sakutakeu10', '2015-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS537093861450', '太田美羽', 1, '+86 190-0319-7305', 3, '973844100017623285', 'Room 39, 364 Middle Huaihai Road, Huangpu District, Shanghai, China', '1992-06-20', 0, 0, 'miuota', '2009-12-26', 'otamiu2', '2010-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS285417603233', '张詩涵', 1, '+86 10-540-3339', 1, '433034381881327670', 'No.17 building, 343 Yueliu Rd, Fangshan District, Beijing, China', '1991-08-06', 0, 0, 'shihanzhang', '2003-08-04', 'szhang1', '2013-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS336234034553', '成榮發', 1, '+81 90-9416-5279', 2, '815522807228602830', '15F, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1988-01-09', 0, 0, 'shinwingfat', '2006-06-28', 'wfs701', '2001-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS699503422850', '木村美月', 0, '+1 718-709-8567', 2, '596853740882547382', '982 Bergen St Apt 44, Brooklyn, NY 11217, United States', '1993-11-08', 0, 0, 'mitskimura713', '2015-08-29', 'kmitsu622', '2014-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS673559895735', '严嘉伦', 0, '+44 (151) 637 2603', 2, '007797562542561522', 'No.29 Main building, 526 Hanover St, Liverpool, L1 4AF, United Kingdom', '1985-07-05', 0, 0, 'jialun9', '2005-03-24', 'yajia', '2019-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS899078349113', '羅志明', 1, '+44 7370 867734', 3, '536653535130819120', 'Block 22, 327 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1991-09-19', 0, 0, 'lo16', '2006-06-27', 'locm', '2013-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS506396268841', '湯天榮', 0, '+44 5891 844142', 2, '733873934320960474', 'Block 1, 65 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1998-01-12', 0, 0, 'twto', '2006-04-27', 'tong828', '2000-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS341208366079', '劉心穎', 1, '+44 (161) 935 3278', 2, '665580397141286311', 'Flat 30, 345 Portland St, Manchester, M1 3LA, United Kingdom', '1996-06-17', 0, 0, 'swl', '2014-08-21', 'swlau', '2002-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS203246242335', '和田樹', 1, '+1 330-498-0709', 3, '407303931967782153', '432 Collier Road Apartment 14, Akron, OH 44320, United States', '1986-06-05', 0, 0, 'itswad3', '2007-08-08', 'iwada1999', '2021-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS642497963089', '石田愛梨', 0, '+1 614-229-6965', 4, '775704097388837946', '400 East Cooke Road Apartment 44, Columbus, GA 43214, United States', '1986-11-19', 0, 0, 'aiishida', '2005-02-15', 'aiishida20', '2018-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS861923427099', 'Robert Shaw', 1, '+81 11-686-9929', 1, '895923348354441281', '9-kai, 13-3-9 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1996-04-29', 0, 0, 'rshaw330', '2020-04-18', 'sr1230', '2014-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS875918494203', 'Anna James', 0, '+81 80-6237-4763', 1, '588561901455091983', '11F, 3-27-12 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1988-04-10', 0, 0, 'anna2', '2003-04-25', 'annajame', '2004-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS276949153898', '戴德華', 0, '+44 (121) 684 7754', 3, '059493718723721433', 'No.40 Main building, 772 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1994-03-08', 0, 0, 'dtakwah', '2003-11-27', 'dta', '2000-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS106572188126', '藤田舞', 1, '+86 10-4630-0505', 4, '861382632537683208', '2F, 415 West Chang''an Avenue, Xicheng District, Beijing, China', '1997-05-09', 0, 0, 'mai430', '2007-10-16', 'mfujita78', '2014-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS462838471298', '上野七海', 0, '+1 838-899-5206', 0, '875412319834597287', '939 Central Avenue Apt 9, Albany, NY 12205, United States', '1990-04-13', 0, 0, 'uenonanam', '2011-01-08', 'nanau', '2009-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS790212474748', 'Lillian Garcia', 1, '+86 10-472-6585', 4, '741436535647425316', '中国北京市西城区复兴门内大街582号19栋', '1996-11-09', 0, 0, 'lilliangarci', '2008-02-20', 'garcilillian', '2005-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS169102631418', '青木百恵', 0, '+81 52-703-9613', 4, '498512851463571705', '日本なごやし北区清水三丁目19番16号36階', '1991-03-02', 0, 0, 'momoe6', '2012-12-11', 'aokmom76', '2013-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS662523521282', '洪惠妹', 1, '+81 90-4484-5104', 0, '605410426151821572', '日本ならし学園南三丁目9番10号19号室', '1986-08-31', 0, 0, 'huimei03', '2011-09-02', 'hunghm2002', '2003-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS490097873650', 'Betty Diaz', 1, '+81 70-4491-2983', 1, '311002302176346003', '日本おおさかし西成区出城一丁目1番1号23号室', '1991-08-01', 0, 0, 'bdiaz', '2011-09-11', 'bettydi', '2001-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS246507884043', 'Earl Gibson', 0, '+1 213-297-2211', 3, '725638038748228818', '970 Grape Street Suite 14, Los Angeles, CA 90002, United States', '1988-02-23', 0, 0, 'earlg4', '2015-07-10', 'gibsone', '2002-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS489093085292', 'Miguel Reynolds', 1, '+86 28-1728-0274', 1, '381657571893619733', 'Room 8, No.449, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1998-04-13', 0, 0, 'migureynolds', '2004-02-10', 'miguelreynolds403', '2013-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS837215216689', 'Kevin Reed', 0, '+81 11-631-0792', 3, '309238206070203208', '25-kai, 13-3-10 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1995-06-27', 0, 0, 'kevin9', '2009-06-11', 'reedkevin', '2018-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS416916093032', '薛子异', 0, '+44 5229 823094', 2, '135136675669284415', 'Block 3, 824 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1990-10-11', 0, 0, 'xuezi1996', '2004-12-24', 'xue215', '2004-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS165563664205', '龙睿', 1, '+86 755-2531-1081', 3, '961232886822519246', '23F, 332 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1989-02-10', 0, 0, 'rui114', '2016-12-28', 'loru', '2015-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS152573034286', '廖曉彤', 1, '+86 143-7143-8624', 2, '439496351039328465', '20F, 611 Kengmei 15th Alley, Dongguan, China', '1990-08-19', 0, 0, 'hiutungl', '2011-03-12', 'htliao', '2012-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS752972473565', '赵秀英', 1, '+86 21-316-0285', 0, '782029964466709193', '中国上海市浦东新区橄榄路435号31楼', '1993-07-12', 0, 0, 'xiz', '2001-06-08', 'xzhao', '2010-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS508625743818', '有村舞', 1, '+81 80-5368-9692', 1, '028159250572027420', '日本なごやし瑞穂区河岸町四丁目20番12号45号室', '1988-08-30', 0, 0, 'arim1947', '2004-02-24', 'maa', '2012-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS560293072431', '严安琪', 1, '+81 11-481-9990', 2, '642871216697963580', '日本札幌中央区宮の森四条六丁目1番11号19階', '1995-09-16', 0, 0, 'anqiyan', '2009-02-02', 'yan2004', '2017-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS046107150295', 'Lois Gomez', 1, '+81 74-290-0436', 3, '136849423613684281', '日本ならし大和郡山市本庄町一丁目1番1号7階', '1996-05-10', 0, 0, 'lois1013', '2014-04-01', 'logomez', '2005-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS505735949645', 'Terry Webb', 0, '+1 213-027-3635', 1, '114718811169983201', '954 Figueroa Street Apt 39, Los Angeles, CA 90037, United States', '1991-06-03', 0, 0, 'terry1103', '2007-03-10', 'webterry', '2007-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS887486326548', 'Rhonda Howard', 0, '+86 10-998-6119', 4, '319865616100435465', '中国北京市东城区东单王府井东街130号20栋', '1990-10-24', 0, 0, 'rhondahoward', '2009-04-11', 'rhohoward', '2012-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS740256744725', '林美羽', 1, '+44 7398 130835', 1, '872567198796493471', 'Unit 22, Oxford Eco Centre, 191 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1991-11-11', 0, 0, 'miuhayashi18', '2009-08-18', 'hayashimi', '2002-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS464725275859', '余杰宏', 1, '+86 176-3586-3975', 1, '921227720752361780', '中国中山乐丰六路298号华润大厦1室', '1991-05-22', 0, 0, 'yjiehong', '2014-09-07', 'yujiehong', '2016-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS934388937563', 'Thelma Nichols', 1, '+81 11-092-4788', 2, '328461410764589147', 'Rm. 40, 6-1-5, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-05-04', 0, 0, 'nicthel', '2008-12-06', 'nth', '2001-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS530742552222', '袁云熙', 0, '+81 66-885-9076', 3, '523649316554075553', '日本おおさかし近江堂一丁目7番3号2階', '1995-10-11', 0, 0, 'yuan3', '2010-06-06', 'yunxi6', '2014-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS362179776080', '官志遠', 1, '+86 20-4180-4678', 1, '960278395220362097', '中国广州市白云区机场路棠苑街五巷246号华润大厦26室', '1988-12-13', 0, 0, 'chiyuenkoon', '2011-02-16', 'cykoon', '2004-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS933753726068', '杜子韬', 1, '+81 90-7896-1186', 1, '218184070771779094', '11-kai, 4-9-20 Kamihigashi, Hirano Ward, Osaka, Japan', '1994-03-25', 0, 0, 'duzitao924', '2006-09-15', 'duzitao', '2010-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS164170392139', '張天榮', 1, '+81 3-7211-8943', 4, '912765277459411762', '日本東京渋谷区代々木二丁目3番10号1号室', '1988-11-07', 0, 0, 'chetw', '2015-06-15', 'cheung45', '2012-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS680429802197', '應國明', 0, '+86 198-2417-7994', 1, '518717636007185918', 'No.24 building, 183 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1997-12-19', 0, 0, 'kwokming229', '2003-12-21', 'yingkm1213', '2004-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS926033832823', 'Sylvia Cooper', 0, '+86 28-745-7067', 4, '232183241073927316', 'Room 40, No.232, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1989-09-20', 0, 0, 'coopersylvia', '2010-05-09', 'sylviacooper', '2001-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS804039270314', '杨杰宏', 1, '+81 66-688-4154', 1, '436410018241211952', '日本おおさかし平野区加美東四丁目9番19号45階', '1994-05-24', 0, 0, 'yangj', '2020-12-11', 'jiehongyang', '2008-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS670088056560', 'Frances Simpson', 0, '+1 213-462-6752', 2, '745276770630062165', '371 S Broadway Suite 18, Los Angeles, CA 90015, United States', '1994-06-08', 0, 0, 'francessimps917', '2006-02-19', 'simpsonfr', '2000-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS473732931754', '钱詩涵', 1, '+1 838-094-3690', 3, '654228724561916574', '674 Central Avenue Suite 48, Albany, NY 12206, United States', '1989-10-07', 0, 0, 'qian3', '2016-06-21', 'shiqian07', '2009-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS266670304935', 'Judy Brown', 1, '+81 70-9822-1892', 2, '531450001267330672', '日本札幌白石区菊水三条五丁目4番14号1階', '1998-04-18', 0, 0, 'judyb', '2018-12-23', 'brownjudy', '2019-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS178599490235', '贺晓明', 0, '+86 171-8950-3157', 4, '484161774990432322', '1F, 792 Binchuan Rd, Minhang District, Shanghai, China', '1988-04-09', 0, 0, 'xiaomhe', '2002-10-16', 'hexiaoming7', '2018-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS771968834065', 'Richard Patel', 0, '+44 (116) 547 2889', 2, '661890174810210922', 'No.13 Main building, 662 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1996-12-14', 0, 0, 'rp2011', '2006-05-08', 'richpate', '2018-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS735537483058', '横山美咲', 0, '+86 28-2100-3694', 1, '838027009143269298', 'No.26 building, No. 856, Shuangqing Rd, Chenghua District, Chengdu, China', '1996-10-05', 0, 0, 'misakyokoyama4', '2010-03-20', 'miyokoyama', '2020-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS638744063943', '許國明', 0, '+1 212-697-7716', 3, '979683491188365863', '201 Fifth Avenue Suite 31, New York, NY 10017, United States', '1992-11-02', 0, 0, 'kmhui', '2012-02-12', 'kwokmingh5', '2018-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS522744933795', '高橋百花', 0, '+86 755-983-9204', 1, '843748893018336792', '中国深圳龙岗区布吉镇西环路821号1号楼', '1993-08-13', 0, 0, 'takahashim', '2009-12-20', 'momotaka502', '2004-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS285284802800', '夏子异', 0, '+81 52-084-9679', 0, '751432007602966583', '日本なごやし北区楠味鋺三丁目80番11号11階', '1989-02-27', 0, 0, 'xiziy', '2011-03-16', 'ziyixi', '2013-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS539753827675', '田裕玲', 1, '+86 10-512-4934', 2, '949187257655277332', 'Room 15, CR Building, 341 Sanlitun Road, Chaoyang District, Beijing, China', '1993-01-12', 0, 0, 'yulingtin', '2020-04-22', 'tinyl', '2005-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS604092524697', '今井結翔', 1, '+86 163-8977-1026', 3, '999371574509798579', '中国北京市朝阳区三里屯路580号34栋', '1986-02-15', 0, 0, 'imaiyuito', '2015-12-11', 'imaiyuito723', '2018-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS351548342883', '杜祖兒', 1, '+44 7192 064747', 1, '882636983626307460', 'No.42 Main building, 752 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1989-11-28', 0, 0, 'tochoyee612', '2004-01-17', 'to14', '2020-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS572727660840', '鈴木聖子', 0, '+81 11-131-7105', 3, '755489113300930300', '日本札幌白石区菊水三条五丁目2番9号12号室', '1992-12-15', 0, 0, 'suzukiseiko', '2018-10-01', 'seiksuzuki', '2020-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS878028078961', '太田陸', 0, '+1 213-112-7524', 2, '328940229520002693', '92 Sky Way Suite 46, Los Angeles, CA 90043, United States', '1985-09-15', 0, 0, 'riku1106', '2011-03-09', 'otar', '2018-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS991772247658', '古家明', 1, '+81 66-086-3896', 2, '155031638525240028', '日本おおさかし西成区出城一丁目1番13号50階', '1989-06-21', 0, 0, 'kmku', '2015-03-24', 'ku2', '2000-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS107679824521', 'Travis Hall', 1, '+86 28-0444-3207', 0, '122847513948991054', 'Room 17, 116 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1986-12-12', 0, 0, 'travishall', '2004-09-11', 'halltr', '2002-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS116795821584', '木村大和', 0, '+1 614-433-8891', 2, '091326626960799645', '209 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1997-10-05', 0, 0, 'yamatokimur2005', '2009-04-04', 'kiyamato6', '2008-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS481518802716', '徐宇宁', 0, '+81 80-5851-9250', 2, '533302328498192456', '日本おおさかし東住吉区東田辺三丁目27番19号26階', '1994-07-26', 0, 0, 'yuning10', '2019-02-08', 'yuxu', '2006-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS245613084364', 'Norman Young', 0, '+81 90-7156-7294', 2, '256540529979792296', '日本札幌白石区菊水三条五丁目4番11号7階', '1987-04-29', 0, 0, 'yonorman', '2006-08-05', 'norman1974', '2006-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS158825607865', 'Ricky Gonzales', 0, '+81 70-7989-3293', 4, '850646300343788975', '48-kai, 18 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1991-09-28', 0, 0, 'ricgonza', '2008-01-09', 'rg10', '2003-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS359675463418', '小野花', 1, '+86 755-3485-6660', 1, '499341206893468527', '中国深圳罗湖区蔡屋围深南东路330号14室', '1993-06-23', 0, 0, 'hanaono', '2000-05-25', 'hana3', '2008-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS279553571528', '徐子异', 1, '+86 145-4896-9897', 2, '850922322003267430', '中国成都市成华区双庆路744号华润大厦10室', '1992-12-23', 0, 0, 'zxu', '2012-03-03', 'ziyixu10', '2021-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS623490279421', 'Victoria Hayes', 0, '+1 213-395-4127', 1, '248188145818090509', '438 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1991-01-05', 0, 0, 'vich', '2013-06-22', 'victohayes', '2001-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS185486592997', '中島花', 1, '+81 66-845-1336', 0, '958958113301465171', 'Rm. 11, 1-1-10 Deshiro, Nishinari Ward, Osaka, Japan', '1998-05-22', 0, 0, 'hana4', '2017-01-15', 'hnakajima', '2004-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS260621366486', '王國明', 0, '+86 769-991-0183', 1, '518747536761207880', '中国东莞环区南街二巷143号48栋', '1998-12-13', 0, 0, 'wokwokming7', '2003-05-16', 'wonkm', '2000-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS369688160960', '呂詠詩', 1, '+86 769-600-8010', 0, '239445111867319149', 'Room 41, CR Building, 60 Dongtai 5th St, Dongguan, China', '1996-05-30', 0, 0, 'luiws', '2008-12-09', 'luiws1964', '2015-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS274245660689', '黃梓軒', 1, '+1 718-750-9680', 3, '231479932913987855', '11 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1986-11-30', 0, 0, 'wtszhin', '2010-01-02', 'wongth', '2007-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS895509963501', '陶子异', 1, '+44 (1865) 56 1483', 3, '433307523289126708', 'Unit 42, Oxford Eco Centre, 345 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1997-01-06', 0, 0, 'zitao', '2020-12-05', 'taoziyi5', '2020-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS870345156966', '郭惠敏', 0, '+86 162-2374-1907', 4, '107648571415449915', 'No.30 building, 241 Sanlitun Road, Chaoyang District, Beijing, China', '1992-09-01', 0, 0, 'waik', '2002-03-02', 'kwokwm', '2010-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS491266334954', '薛子韬', 1, '+86 20-006-5161', 3, '949758423010077378', '中国广州市越秀区中山二路757号28栋', '1985-09-18', 0, 0, 'xzitao', '2018-09-05', 'xuezitao', '2007-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS307483303107', '楊家輝', 0, '+1 213-920-8359', 4, '046069498883500748', '528 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1995-09-10', 0, 0, 'kafaiyeung', '2012-04-21', 'yeung4', '2019-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS042958529761', 'Tony Salazar', 1, '+86 769-716-4182', 2, '378980671648543349', 'Room 37, CR Building, 349 Shanhu Rd, Dongguan, China', '1998-05-14', 0, 0, 'salazar407', '2018-09-07', 'salazar12', '2006-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS212925088907', '傅璐', 0, '+86 144-5186-7485', 1, '786719952208265846', '中国北京市房山区岳琉路935号华润大厦16室', '1985-12-27', 0, 0, 'lufu', '2002-10-22', 'lufu', '2008-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS490632364283', 'James Stone', 0, '+44 5372 790960', 2, '879367660197949825', 'No.43 Main building, 342 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1987-11-23', 0, 0, 'sj1982', '2007-02-11', 'stone7', '2015-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS582138301682', 'Glenn Ferguson', 1, '+86 161-2631-2892', 2, '847082094429291482', '中国广州市白云区机场路棠苑街五巷305号华润大厦24室', '1987-11-30', 0, 0, 'gleferguson', '2021-12-22', 'fg406', '2007-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS205170743757', '石岚', 0, '+86 21-3117-3226', 1, '314374060106293076', 'No.50 building, 387 Binchuan Rd, Minhang District, Shanghai, China', '1997-06-07', 0, 0, 'shilan', '2019-10-18', 'shilan5', '2005-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS182684639749', '龚詩涵', 1, '+81 70-1364-0680', 1, '014081598029263326', '8-kai, 9 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1988-03-01', 0, 0, 'shihan6', '2010-02-17', 'gong07', '2021-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS649090755376', 'Timothy Hernandez', 1, '+44 5873 457703', 2, '126495028436004507', 'No.47 Main building, 273 Park End St, Oxford, OX1 1JD, United Kingdom', '1987-05-27', 0, 0, 'hernandez10', '2006-01-15', 'hernandezt', '2009-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS834188090654', 'Amanda Fernandez', 0, '+1 212-503-7515', 3, '441360057298955181', '195 Fifth Avenue Suite 39, New York, NY 10017, United States', '1986-06-01', 0, 0, 'feramanda', '2001-12-15', 'fernandezamand', '2020-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS349612782165', '郑子韬', 0, '+86 180-2959-7317', 2, '119223041066816998', '中国北京市海淀区清河中街68号384号14楼', '1988-10-31', 0, 0, 'zzitao', '2013-11-24', 'zitaozheng419', '2015-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS573304365411', '池田大輔', 1, '+86 168-7822-7924', 3, '656293203482658813', 'Room 47, CR Building, 483 Huanqu South Street 2nd Alley, Dongguan, China', '1995-11-20', 0, 0, 'ikedd', '2004-02-29', 'daisikeda4', '2015-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS528505484276', '斎藤悠人', 1, '+1 213-822-7402', 1, '884082347921907711', '136 S Broadway Suite 36, Los Angeles, CA 90015, United States', '1997-12-13', 0, 0, 'yutsait76', '2013-02-03', 'yutos', '2003-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS001701022027', 'Bradley Wilson', 1, '+1 212-778-8161', 3, '719196787218997636', '147 Wooster Street Apartment 22, New York, NY 10012, United States', '1990-01-24', 0, 0, 'wilson822', '2014-04-08', 'wilsonbradley', '2020-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS540920045760', '邱子异', 0, '+86 755-665-8258', 0, '693905938370206998', '中国深圳福田区景田东一街687号27号楼', '1988-04-21', 0, 0, 'ziyi79', '2002-08-13', 'qiuzi', '2000-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS634981801619', 'Joshua Ryan', 0, '+81 80-9597-9265', 1, '704060192615970945', '15F, 4-9-14 Kamihigashi, Hirano Ward, Osaka, Japan', '1989-09-10', 0, 0, 'joshry65', '2014-06-13', 'ryan1971', '2011-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS423602082418', '高橋聖子', 1, '+86 153-3170-1185', 3, '310989686216533307', '中国北京市西城区西長安街199号华润大厦37室', '1991-11-14', 0, 0, 'seikotak602', '2016-09-20', 'seikotakahashi', '2014-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS797034566511', '周子异', 0, '+86 157-3948-0221', 1, '296236033994830902', '中国上海市浦东新区健祥路707号50号楼', '1988-01-25', 0, 0, 'ziyizhou5', '2009-08-08', 'ziyzhou9', '2017-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS547705532974', '桜井愛梨', 1, '+86 28-125-5545', 2, '471847939686493936', '中国成都市成华区双庆路149号26楼', '1990-11-13', 0, 0, 'airisak', '2010-10-04', 'sakua', '2010-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS605063796695', '卢云熙', 0, '+1 213-336-6810', 2, '951314834298658142', '974 Sky Way Apt 27, Los Angeles, CA 90043, United States', '1990-11-24', 0, 0, 'lu1942', '2020-10-20', 'lu1216', '2003-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS568645631413', '彭志遠', 0, '+86 136-4220-1075', 4, '851395901254311107', 'No.31 building, 137 Middle Huaihai Road, Huangpu District, Shanghai, China', '1988-02-17', 0, 0, 'pang522', '2015-09-25', 'pang228', '2001-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS547640787333', 'Beverly Fernandez', 0, '+81 90-9341-8656', 2, '915521484832698169', '9-kai, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-02-25', 0, 0, 'fernab2000', '2006-02-14', 'beverf', '2014-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS380945421560', '曾嘉伦', 0, '+81 3-0637-4243', 0, '389059611312449488', '日本東京千代田区丸の内一丁目6番20号22階', '1986-01-30', 0, 0, 'jiz', '2011-08-21', 'jzeng', '2018-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS857584426001', '林惠敏', 1, '+1 330-386-1962', 1, '018930168161025942', '359 Riverview Road Apt 46, Akron, OH 44313, United States', '1990-11-07', 0, 0, 'lamwaiman', '2001-12-03', 'lwaiman', '2015-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS832240538084', '葉詩君', 0, '+86 21-906-6865', 2, '380980428557879399', '14F, 132 Binchuan Rd, Minhang District, Shanghai, China', '1997-01-18', 0, 0, 'yipszekwan50', '2001-11-09', 'szekwan95', '2018-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS018205285896', '内田瑛太', 0, '+1 213-821-1570', 3, '060921745415565228', '141 Sky Way Suite 49, Los Angeles, CA 90043, United States', '1997-10-05', 0, 0, 'ueita8', '2017-09-18', 'ucheita', '2021-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS078988239937', 'Philip Patel', 1, '+1 614-044-7162', 2, '479765460116683673', '377 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1986-04-25', 0, 0, 'patelphilip1975', '2010-10-28', 'philippate', '2011-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS167206020594', '上野悠人', 1, '+44 5942 794330', 2, '561982849024942856', 'Block 5, 467 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1998-01-21', 0, 0, 'ueyuto', '2006-01-13', 'yutou1124', '2021-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS414156679327', '孫慧敏', 0, '+86 755-4301-6761', 1, '024594950881489899', 'No.21 building, 836 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1986-09-19', 0, 0, 'waimanhsuan', '2002-05-25', 'wmhsuan929', '2005-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS776332595476', '樊家明', 0, '+44 7295 684005', 3, '643361445179242109', 'Unit 2, Oxford Eco Centre, 159 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1999-02-26', 0, 0, 'kafan', '2008-03-14', 'kamingfa', '2005-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS737239389806', '韦子韬', 1, '+86 197-6761-1602', 1, '066723736970216772', 'Room 46, CR Building, 463 Dongtai 5th St, Dongguan, China', '1988-04-20', 0, 0, 'weizitao84', '2007-09-09', 'wzi', '2009-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS194056675004', '山口涼太', 0, '+86 134-1124-2285', 0, '718365299082318561', 'Room 24, CR Building, 974 68 Qinghe Middle St, Haidian District, Beijing, China', '1995-02-14', 0, 0, 'yamaguchiryota', '2002-11-20', 'ryotayamag7', '2015-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS173362584208', 'Edith Lewis', 1, '+44 7590 981886', 2, '672202119382852442', 'Flat 12, 423 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1993-06-24', 0, 0, 'lewiedi', '2000-02-26', 'edithlewis1944', '2002-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS934924511680', 'Arthur Myers', 0, '+44 (121) 348 1877', 1, '638081070838656336', 'Unit 23, Oxford Eco Centre, 156 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1987-10-03', 0, 0, 'myersarth', '2009-02-06', 'mya00', '2005-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS732205179461', '應青雲', 1, '+44 (121) 252 8322', 1, '369463108205730414', 'Flat 40, 516 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1995-08-26', 0, 0, 'yingcw5', '2008-01-29', 'chy', '2007-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS365341962540', '山下架純', 1, '+81 52-218-4216', 0, '227836839066346779', '日本なごやし熱田区千年二丁目5番6号50階', '1986-01-25', 0, 0, 'kasuy1', '2005-10-08', 'yamashitaka', '2018-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS333775709962', '莫睿', 0, '+81 11-211-1340', 4, '997383122993620429', '日本札幌豊平区豊平三条十三丁目3番3号41階', '1986-03-21', 0, 0, 'rumo6', '2002-12-31', 'rumo01', '2005-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS303325886803', '贾晓明', 1, '+86 769-0724-2942', 2, '671537156216909281', '中国东莞珊瑚路461号6号楼', '1998-03-08', 0, 0, 'jiaxiaoming', '2004-04-06', 'xiaomingjia', '2019-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS171638199050', '清水明菜', 1, '+81 70-3675-4111', 3, '437866671452748544', '47-kai, 3-19-13 Shimizu, Kita Ward, Nagoya, Japan', '1996-07-07', 0, 0, 'shimizuakina', '2017-10-27', 'shimizua', '2008-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS086536433702', '江睿', 1, '+81 66-464-2361', 0, '134981642030912314', '17F, 1-7-9 Omido, Higashiosaka, Osaka, Japan', '1986-05-24', 0, 0, 'ruij', '2006-04-29', 'jiang1003', '2001-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS583327562720', '區家玲', 1, '+86 138-1559-2226', 3, '244550812058643643', 'No.12 building, 682 Sanlitun Road, Chaoyang District, Beijing, China', '1989-05-20', 0, 0, 'kalinga', '2008-11-14', 'akl527', '2015-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS413913937666', 'Rodney Morales', 0, '+86 161-5781-7492', 2, '172543758349294244', '中国北京市海淀区清河中街68号964号16号楼', '1991-08-28', 0, 0, 'moralesrodn65', '2005-08-26', 'moralesrodney', '2002-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS859840828182', '狄秀文', 0, '+86 186-8018-6187', 4, '757832265433449492', '中国成都市成华区二仙桥东三路945号49栋', '1989-09-11', 0, 0, 'tisauman330', '2000-10-03', 'ti17', '2001-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS825899933395', '李詩涵', 1, '+1 838-897-9862', 3, '418652671262570751', '132 Central Avenue Apartment 21, Albany, NY 12205, United States', '1986-04-20', 0, 0, 'shihli', '2018-05-16', 'shihan1118', '2008-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS876299604301', 'Leslie Rice', 1, '+86 173-0772-3227', 2, '748149400238671881', '中国中山京华商圈华夏街318号2楼', '1985-07-15', 0, 0, 'ricel', '2008-07-30', 'rilesl', '2019-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS120180438394', '陈云熙', 1, '+1 838-678-7951', 2, '510578434568295727', '202 Central Avenue Apt 10, Albany, NY 12206, United States', '1989-09-02', 0, 0, 'yunxi52', '2019-09-05', 'chyu', '2001-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS038082644110', '楊潤發', 0, '+81 66-031-6615', 3, '065310835997179671', '日本おおさかし西成区出城一丁目1番3号27階', '1996-03-13', 0, 0, 'yeungyu424', '2001-10-18', 'yeungyunfat102', '2013-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS807846789668', 'Ruby Robertson', 1, '+1 213-091-4416', 3, '756705006772638546', '86 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1993-05-23', 0, 0, 'robertsonrub1012', '2017-12-11', 'rubyrobertson', '2021-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS412766369428', '郑致远', 0, '+81 74-937-3646', 1, '946170581875822660', '日本ならし大和郡山市本庄町一丁目1番14号8階', '1991-04-25', 0, 0, 'zhizh1950', '2019-12-19', 'zhezhiyuan', '2006-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS848716265973', '杨杰宏', 0, '+86 769-5901-4576', 0, '023180725563627407', 'Room 31, 447 Huanqu South Street 2nd Alley, Dongguan, China', '1993-01-09', 0, 0, 'jiey1225', '2012-08-15', 'jiehongyan', '2017-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS814649809896', 'Ruth Jordan', 1, '+44 7225 568903', 1, '587030498054983419', 'Unit 19, Oxford Eco Centre, 187 Regent Street, London, W1B 2LX, United Kingdom', '1988-07-03', 0, 0, 'jor9', '2021-07-06', 'jruth', '2000-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS324678153091', 'David Richardson', 0, '+81 70-7144-7418', 1, '151524339867455135', '日本東京渋谷区代々木二丁目3番3号5階', '1998-05-18', 0, 0, 'richardsondavid', '2000-08-22', 'richardsondavid113', '2014-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS809106783869', '姚頴思', 0, '+86 175-4820-1191', 1, '088352006096704680', '中国中山京华商圈华夏街912号32楼', '1985-05-21', 0, 0, 'yeowwingsze', '2018-11-06', 'wingsze4', '2017-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS254498391868', '蔣永權', 1, '+81 70-7867-0291', 2, '257928465124786941', '日本ならし西大寺赤田町一丁目7番6号10階', '1997-03-04', 0, 0, 'wingkuenchiang3', '2020-05-12', 'cwk', '2021-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS186819740392', '白慧敏', 1, '+86 10-7196-0231', 2, '258559331340830336', 'Room 30, CR Building, 495 FuXingMenNei Street, XiCheng District, Beijing, China', '1993-04-17', 0, 0, 'pawm', '2019-08-25', 'wmp', '2021-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS902204826177', '山下聖子', 0, '+44 (116) 219 2009', 0, '979608547585020429', 'No.48 Main building, 721 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1996-05-25', 0, 0, 'yamashitase', '2021-12-02', 'yseiko9', '2006-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS656904915788', '酒井架純', 0, '+81 90-2032-6882', 3, '699410917247749723', '28-kai, 8 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-01-11', 0, 0, 'sakai10', '2002-10-11', 'sakai77', '2000-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS070064707398', '向潤發', 0, '+81 80-4416-7122', 4, '462525998468059134', 'Rm. 22, 5-2-17 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-07-06', 0, 0, 'yunfat10', '2010-03-31', 'heungyunfat', '2015-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS818721510094', 'Gloria Dixon', 1, '+81 52-050-9068', 2, '245548279435244393', 'Rm. 10, 10 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1997-03-15', 0, 0, 'gloriadi16', '2021-01-15', 'dglo', '2010-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS927424660915', '方慧琳', 1, '+86 149-1129-3440', 3, '459110643322437840', '中国东莞环区南街二巷374号25栋', '1992-10-22', 0, 0, 'wailamfong1985', '2010-02-17', 'fong3', '2007-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS470871328555', '桜井葉月', 1, '+81 80-1569-7286', 2, '673914387664624341', '日本札幌清田区真栄四条五丁目19番16号44階', '1991-04-14', 0, 0, 'hazukisakurai109', '2000-11-06', 'sakuh', '2013-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS260341604624', '渡部凛', 0, '+81 66-902-5065', 2, '050323380835421559', '日本おおさかし東住吉区東田辺三丁目27番10号3階', '1993-10-07', 0, 0, 'watanaberin', '2015-06-05', 'watanaber', '2010-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS067234975571', '林青雲', 1, '+81 90-8338-1762', 0, '839802563433634464', '日本東京港区東新橋一丁目5番1号29階', '1995-12-09', 0, 0, 'lamchingwan', '2003-04-05', 'lamchingwan91', '2019-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS763055906940', '橋本大和', 0, '+81 80-1376-8408', 1, '608431624440430774', '26-kai, 3-27-13 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1998-04-11', 0, 0, 'yamatohash', '2005-07-05', 'hyamat1105', '2010-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS947077868768', '钟秀英', 1, '+86 197-9533-4216', 0, '395994139938576715', '8F, 195 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-08-23', 0, 0, 'xiuying9', '2017-12-04', 'xiuyingz', '2014-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS262923772199', 'Joyce Edwards', 0, '+81 70-5381-9891', 1, '668140940738114589', 'Rm. 46, 3-15-3 Ginza, Chuo-ku, Tokyo, Japan', '1993-06-05', 0, 0, 'jedwa', '2015-10-07', 'joyce10', '2002-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS453132323952', '龚嘉伦', 1, '+1 213-356-8970', 3, '895807227054669174', '941 Wall Street Apt 15, Los Angeles, CA 90003, United States', '1985-02-08', 0, 0, 'jialungong', '2017-02-15', 'jialun608', '2012-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS407496851561', '何杰宏', 1, '+44 5132 717605', 0, '308702418358681719', 'No.29 Main building, 190 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1996-04-15', 0, 0, 'he925', '2011-02-20', 'jiehe', '2007-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS339912152841', '陶詩涵', 0, '+81 70-4186-4381', 1, '834766073650886247', '日本東京品川区東五反田五丁目2番1号36階', '1985-09-23', 0, 0, 'stao1989', '2020-07-13', 'shihant93', '2006-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS487836987026', '大野美緒', 0, '+81 74-917-8020', 4, '559689878067160809', '30-kai, 4 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1988-05-27', 0, 0, 'onmio1953', '2007-03-10', 'mioono', '2009-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS825297037729', '呂霆鋒', 0, '+1 838-823-9381', 2, '573247136396492828', '417 Broadway 3rd Floor, Albany, NY 12207, United States', '1997-06-12', 0, 0, 'ltingfung45', '2001-01-15', 'tingfungl', '2005-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS524811214704', '钱致远', 1, '+81 80-3671-7815', 1, '725051133270691067', '9-kai, 1-1-11 Deshiro, Nishinari Ward, Osaka, Japan', '1990-06-03', 0, 0, 'qianz9', '2009-01-05', 'zhiyuan9', '2002-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS805545711722', '冯安琪', 0, '+81 90-1965-8423', 3, '255188150740248959', '日本おおさかし西成区天神ノ森二丁目1番13号11号室', '1995-08-01', 0, 0, 'fenganqi', '2020-10-22', 'fenganq1117', '2007-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS856854351338', '方永發', 0, '+81 80-0937-1853', 3, '460978556147938717', 'Rm. 33, 1-6-3, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-02-19', 0, 0, 'wingfatfong10', '2016-12-02', 'wffong', '2019-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS050033434146', 'Robin Nelson', 0, '+86 165-9787-7350', 2, '177818171630424555', 'No.23 building, 48 Huanqu South Street 2nd Alley, Dongguan, China', '1987-01-26', 0, 0, 'robinn', '2009-05-17', 'robinnelson4', '2000-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS412930146656', 'Judy Ryan', 0, '+81 90-9090-8294', 3, '657160534262735986', '41-kai, 1-6-2, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-07-21', 0, 0, 'ryanjudy', '2014-11-05', 'ryanj', '2008-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS897937570274', '伊藤聖子', 1, '+86 755-5670-7900', 0, '776052131940807004', 'Room 9, CR Building, 649 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1998-01-10', 0, 0, 'iseik64', '2004-06-01', 'ito4', '2006-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS582205584536', '姜宇宁', 0, '+1 312-218-9462', 0, '442171585193403353', '552 North Michigan Ave Apt 37, Chicago, IL 60611, United States', '1995-07-08', 0, 0, 'jiang13', '2018-05-01', 'yuningjiang1024', '2015-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS579543427093', '坂本桜', 1, '+1 213-880-5055', 3, '754951263692338242', '232 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1997-02-08', 0, 0, 'sakamoto7', '2001-05-09', 'sas', '2009-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS035064142326', '黃淑怡', 1, '+86 144-1651-0336', 4, '604648361580859422', '中国广州市海珠区江南西路416号华润大厦47室', '1995-07-27', 0, 0, 'sukyeewong1208', '2001-05-19', 'wongsukyee', '2013-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS353465473018', '應永發', 0, '+44 7265 855769', 2, '190164167481174221', 'Flat 17, 660 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-06-14', 0, 0, 'wingfaty', '2003-06-10', 'wfying7', '2007-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS460552835900', '池田七海', 0, '+81 52-440-1339', 2, '395177204186830278', 'Rm. 32, 3-19-3 Shimizu, Kita Ward, Nagoya, Japan', '1986-01-05', 0, 0, 'ikeda63', '2003-09-22', 'nani', '2017-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS961637992687', '容浩然', 0, '+44 (121) 299 1126', 1, '716144523982146891', 'Unit 14, Oxford Eco Centre, 352 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1989-03-18', 0, 0, 'yhy', '2002-06-01', 'hyyun', '2021-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS053623211343', '田中明菜', 1, '+86 172-4077-7745', 3, '551247780318053548', '中国北京市西城区西長安街188号35室', '1990-07-05', 0, 0, 'akina10', '2014-07-25', 'akintanaka', '2016-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS394737345500', '岡本架純', 1, '+81 90-2479-9125', 1, '432377697794375800', 'Rm. 50, 18 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-08-28', 0, 0, 'kasumi5', '2001-01-22', 'kasumiokam5', '2015-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS828012322623', '傅詩君', 0, '+81 52-923-9598', 3, '256096221255052552', '44-kai, 19 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-08-10', 0, 0, 'fusk', '2010-03-03', 'szekwan07', '2002-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS906647968660', '市川舞', 1, '+86 21-1398-0187', 0, '475368634657552707', 'Room 44, 948 Ganlan Rd, Pudong, Shanghai, China', '1991-05-23', 0, 0, 'icm', '2000-02-19', 'ichmai', '2003-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS640519298171', '許浩然', 1, '+44 (1865) 35 6018', 2, '939628460262024511', 'No.18 Main building, 718 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1997-05-14', 0, 0, 'huhy4', '2011-08-24', 'hoyinhu7', '2010-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS981765584750', '秦杰宏', 1, '+1 213-355-2368', 3, '435541175904919021', '875 Grape Street Apt 8, Los Angeles, CA 90002, United States', '1990-11-17', 0, 0, 'jiehongqin', '2005-02-26', 'qin6', '2013-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS978291190748', '钟晓明', 0, '+81 70-2740-4514', 1, '137823018664804110', 'Rm. 46, 5-2-6 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1994-05-29', 0, 0, 'zhong5', '2018-02-20', 'zxiaoming', '2004-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS571596153201', '石井美咲', 1, '+86 755-4882-9032', 3, '667887654223351541', 'Room 17, 858 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1989-04-03', 0, 0, 'misakiishii', '2009-10-07', 'misakiishi514', '2016-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS407286470880', '和田陽菜', 1, '+44 7255 070798', 3, '275760135787091637', 'Block 42, 714 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1997-10-29', 0, 0, 'wadah', '2011-08-06', 'wadhin516', '2017-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS896043411963', '尹杰宏', 1, '+44 (1223) 14 7914', 2, '321444356521316499', 'Block 47, 91 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1996-10-30', 0, 0, 'jiehoyin', '2012-05-17', 'yinjiehong', '2009-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS311903107073', '方頴思', 1, '+44 (151) 209 2765', 0, '546665608055844471', 'Flat 1, 120 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1995-11-05', 0, 0, 'fonwings4', '2003-01-07', 'wsfong', '2002-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS242002452509', 'Gloria Stone', 0, '+86 188-4751-7024', 4, '330101197149904344', 'Room 40, CR Building, 682 Shennan Ave, Futian District, Shenzhen, China', '1997-07-13', 0, 0, 'stonegloria02', '2013-05-14', 'stonegloria', '2019-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS217284451508', '顾宇宁', 0, '+86 197-8083-7010', 2, '721627137255374849', 'Room 19, 695 Dong Zhi Men, Dongcheng District, Beijing, China', '1995-11-25', 0, 0, 'gu705', '2005-04-14', 'guyunin', '2017-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS891898037756', '今井詩乃', 0, '+86 10-9100-5216', 2, '384999055160103253', '中国北京市延庆区028县道342号华润大厦45室', '1986-03-05', 0, 0, 'shinoi1111', '2011-07-20', 'shinoimai4', '2016-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS056081864067', '森健太', 1, '+86 138-8616-3190', 4, '665806146357151114', 'No.23 building, 93 West Chang''an Avenue, Xicheng District, Beijing, China', '1998-09-01', 0, 0, 'morike', '2006-03-04', 'morikenta', '2006-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS435281191302', '尹岚', 1, '+81 52-947-7197', 2, '203408924772486320', 'Rm. 36, 19 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1985-11-17', 0, 0, 'lan1', '2016-09-17', 'yinlan', '2004-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS089397021981', '宮崎陸', 0, '+81 70-8774-9478', 1, '901497672257043322', 'Rm. 19, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1995-01-01', 0, 0, 'rikmi', '2018-06-11', 'miyazakirik', '2021-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS889058464189', '金子美羽', 0, '+1 838-321-1807', 3, '731679893061644147', '508 State Street Suite 11, Albany, NY 12203, United States', '1996-09-03', 0, 0, 'km1946', '2007-12-29', 'kanekomiu', '2021-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS549576021605', '叶云熙', 0, '+81 11-016-2444', 0, '245945433768977347', '日本札幌中央区宮の森四条六丁目1番14号47階', '1985-04-10', 0, 0, 'yeyunxi824', '2005-11-21', 'yeyun', '2015-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS811807673789', '河野明菜', 0, '+44 7256 872756', 0, '041947763682828714', 'Unit 7, Oxford Eco Centre, 899 Park End St, Oxford, OX1 1JD, United Kingdom', '1989-10-28', 0, 0, 'kakina', '2003-01-15', 'konoakina', '2009-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS637944215968', 'Albert Fernandez', 0, '+81 80-6125-0520', 1, '666672047206973220', '日本なごやし守山区瀬古東二丁目171番19号26号室', '1996-04-16', 0, 0, 'alfern', '2018-10-03', 'fealbert122', '2000-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS709166710528', 'Jeff Peterson', 0, '+1 330-720-1900', 3, '971559850215142798', '442 Collier Road Suite 16, Akron, OH 44320, United States', '1993-03-01', 0, 0, 'peterson731', '2019-05-14', 'jpeterson', '2012-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS910270561476', '薛安琪', 0, '+86 184-5429-3702', 3, '260273517816017268', 'Room 14, CR Building, 138 East Wangfujing Street, Dongcheng District , Beijing, China', '1996-12-13', 0, 0, 'anqi19', '2003-01-02', 'xua', '2003-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS487975356581', '林光', 1, '+81 90-2284-1490', 2, '102905243705104287', '16-kai, 1-7-18 Omido, Higashiosaka, Osaka, Japan', '1989-02-05', 0, 0, 'hayashi921', '2020-06-02', 'hayashih', '2014-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS807219905479', 'Anne Mendez', 0, '+81 74-127-1180', 4, '126389066987714308', '日本ならし西大寺赤田町一丁目7番15号7号室', '1995-03-03', 0, 0, 'am6', '2002-03-05', 'annemendez1987', '2018-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS367341192983', '麥祖兒', 1, '+81 11-856-1047', 2, '636899500464727706', 'Rm. 10, 5-2-18 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-04-23', 0, 0, 'choyee94', '2010-12-11', 'cym', '2017-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS731223483910', 'Billy Sanchez', 0, '+44 5760 059791', 4, '559809842674085932', 'Block 32, 921 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1986-01-28', 0, 0, 'sanchbilly', '2007-01-03', 'billysanchez', '2020-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS936194996222', 'Patrick Murray', 1, '+44 (151) 686 5351', 3, '764524697447282680', 'No.4 Main building, 346 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1992-01-18', 0, 0, 'patrick76', '2014-02-22', 'patrickmu', '2010-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS173095098161', 'Amanda Williams', 0, '+81 80-5001-7772', 0, '538832441106263477', '日本札幌豊平区豊平三条十三丁目3番14号24号室', '1998-06-07', 0, 0, 'amanda419', '2020-03-10', 'williamsaman', '2016-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS714956741678', '楊詠詩', 1, '+81 90-8221-7371', 1, '123896221397851053', 'Rm. 26, 5-19-18 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1993-04-11', 0, 0, 'yeuwing1129', '2018-04-28', 'yeungws', '2008-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS413984363976', '蔡子韬', 0, '+44 (20) 6672 0431', 1, '075116614356514522', 'No.34 Main building, 915 Regent Street, London, W1B 2LX, United Kingdom', '1986-01-20', 0, 0, 'zitao715', '2013-03-03', 'zitaoca82', '2007-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS592219897758', '夏杰宏', 1, '+81 90-7123-7423', 1, '451734463389235917', '32F, 13 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1988-05-31', 0, 0, 'jxia', '2000-12-03', 'xiajiehong', '2010-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS082133162533', 'Grace Gonzales', 0, '+81 11-564-0273', 0, '148554984743040284', '50F, 5-19-17 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1986-06-30', 0, 0, 'gracegonz', '2015-07-29', 'gonzalesg', '2007-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS890884487752', '苗祖兒', 0, '+1 213-014-6878', 3, '999681920246856029', '120 Wall Street Apt 18, Los Angeles, CA 90003, United States', '1986-08-24', 0, 0, 'mchoyee', '2015-02-19', 'cymiu', '2013-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS384388004845', '山田花', 1, '+1 212-443-7370', 0, '469399544361493747', '813 Wooster Street Apt 33, New York, NY 10012, United States', '1985-06-15', 0, 0, 'yh212', '2007-02-14', 'hana96', '2001-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS696525993525', '馬永權', 0, '+81 52-111-9392', 2, '606413422461272770', '44F, 7 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1995-06-07', 0, 0, 'ma1113', '2003-03-01', 'wingkuen10', '2014-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS519697721289', '松本拓哉', 1, '+44 5944 676852', 2, '881518277619625583', 'No.45 Main building, 472 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1994-08-25', 0, 0, 'matsumototakuya1029', '2013-01-31', 'takuyamatsumoto', '2020-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS742554496092', 'Annie Holmes', 0, '+81 3-2116-1071', 1, '543598167433790733', '日本東京中央区銀座三丁目12番3号47階', '1988-12-15', 0, 0, 'aholmes', '2016-03-16', 'annieholmes511', '2012-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS882850609943', 'Matthew Turner', 0, '+44 (151) 410 1199', 0, '681344890525221737', 'No.46 Main building, 412 Redfern St, Liverpool, L20 8JB, United Kingdom', '1988-07-28', 0, 0, 'turnemat515', '2012-07-10', 'turner6', '2000-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS243841347384', 'Sherry Woods', 0, '+86 755-221-1653', 1, '125442498522384271', '中国深圳龙岗区布吉镇西环路419号47栋', '1995-08-07', 0, 0, 'woodssherry', '2008-02-16', 'sherry1988', '2005-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS026982616517', '孟璐', 1, '+86 189-7909-2212', 1, '263058227029565295', '中国深圳龙岗区布吉镇西环路285号10室', '1989-03-23', 0, 0, 'meng7', '2009-05-25', 'lumeng', '2000-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS558258672435', '戴宇宁', 0, '+81 74-598-6575', 3, '657438609803374582', '日本ならし大和郡山市本庄町一丁目1番17号27号室', '1991-08-03', 0, 0, 'yuning4', '2001-11-22', 'ydai1996', '2021-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS849061004592', '鄧淑怡', 1, '+86 139-9730-5894', 2, '104438467796734637', '中国上海市浦东新区橄榄路116号华润大厦36室', '1986-05-07', 0, 0, 'sukyeetang', '2003-03-17', 'sytang', '2021-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS894509017856', '吳永發', 0, '+44 7687 180215', 4, '535942810678515877', 'Block 36, 162 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-11-02', 0, 0, 'wingfatng', '2005-03-11', 'ngwf614', '2004-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS214620889375', '關力申', 1, '+1 213-889-0897', 4, '296437624892511691', '416 Alameda Street Apartment 43, Los Angeles, CA 90002, United States', '1988-02-18', 0, 0, 'liksunkwan806', '2000-04-14', 'lskwan', '2006-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS120970792285', 'Craig Wallace', 1, '+81 90-9710-1349', 1, '152005076513799769', 'Rm. 13, 5-4-12 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-04-27', 0, 0, 'craigwall', '2003-03-17', 'wallcraig', '2010-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS872761535856', '侯震南', 1, '+86 194-0377-3694', 1, '891792448401451952', 'No.16 building, 885 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1993-08-27', 0, 0, 'zhho2015', '2021-02-10', 'zhennanho7', '2011-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS941350243527', '石晓明', 0, '+81 3-6141-1882', 1, '610942357052165962', '日本東京渋谷区代々木二丁目3番1号43号室', '1995-01-27', 0, 0, 'xiaoming48', '2013-12-24', 'xis', '2015-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS945747200831', '戴睿', 0, '+86 10-2427-8146', 2, '290841444980306334', '中国北京市西城区西長安街725号4号楼', '1990-09-20', 0, 0, 'dru', '2009-10-17', 'dar', '2018-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS393621144756', '吴宇宁', 1, '+86 141-5069-7076', 2, '623907984459907852', 'Room 3, 641 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1993-07-22', 0, 0, 'wyuning', '2002-05-21', 'yuninwu', '2007-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS538840317183', '菊地葵', 1, '+86 175-7084-1349', 0, '988001016460713412', '中国北京市東城区東直門內大街850号26室', '1987-07-22', 0, 0, 'aoi4', '2016-07-21', 'aokikuchi5', '2021-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS080960926477', '井上瑛太', 0, '+44 (161) 136 6163', 3, '184970848310182420', 'Unit 27, Oxford Eco Centre, 637 Sackville St, Manchester, M1 3BB, United Kingdom', '1986-12-30', 0, 0, 'inoue80', '2013-10-07', 'inoue1', '2021-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS803176132500', '洪慧嫻', 0, '+1 312-469-5319', 1, '099777930363646653', '775 Pedway Apt 17, Chicago, IL 60601, United States', '1997-05-28', 0, 0, 'waihan15', '2020-09-04', 'whhun', '2019-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS131470766486', '薛安琪', 0, '+81 66-989-2862', 0, '057443657826301717', '37-kai, 4-9-6 Kamihigashi, Hirano Ward, Osaka, Japan', '1995-11-11', 0, 0, 'xueanqi1948', '2002-04-15', 'anqixue', '2012-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS599965435370', '王心穎', 0, '+86 21-0893-0498', 3, '002061523249497743', '46F, 84 Ganlan Rd, Pudong, Shanghai, China', '1988-09-22', 0, 0, 'sumwingw9', '2005-09-19', 'wosw76', '2004-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS636074949844', 'Alice Flores', 0, '+1 213-653-3369', 3, '076317158117761527', '796 Grape Street Apt 13, Los Angeles, CA 90002, United States', '1990-12-24', 0, 0, 'alicefl82', '2016-01-19', 'floresalice129', '2013-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS788902159028', '魏秀英', 0, '+81 90-4703-8395', 1, '881564276634024047', '日本おおさかし近江堂一丁目7番4号40号室', '1995-07-10', 0, 0, 'weixiuying7', '2020-03-08', 'weix4', '2013-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS072027076704', '太田陸', 0, '+1 838-424-6414', 3, '820383508164297789', '429 Broadway Suite 39, Albany, NY 12207, United States', '1985-04-05', 0, 0, 'riku1963', '2001-11-13', 'rikuota', '2020-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS215967761565', '許慧敏', 0, '+86 161-0009-4307', 0, '897882387567143914', '中国北京市朝阳区三里屯路520号23栋', '1988-02-03', 0, 0, 'huiwaima', '2005-12-21', 'wmhui', '2013-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS062238915336', 'Tracy Nichols', 0, '+81 80-2071-3774', 3, '254647091729600399', 'Rm. 20, 5-2-10 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-12-23', 0, 0, 'nicholstracy1', '2014-01-22', 'tracynichols5', '2019-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS275006231511', 'Patrick Olson', 1, '+86 158-6245-4341', 4, '176899531015124434', 'Room 39, CR Building, 345 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1992-06-09', 0, 0, 'olsonpatrick', '2017-12-13', 'olson108', '2003-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS780740996638', '蔡志明', 0, '+81 90-1762-8081', 2, '464607213511885177', 'Rm. 32, 3-9-19 Gakuenminami, Nara, Japan', '1986-02-11', 0, 0, 'chiming10', '2000-10-20', 'choicm48', '2014-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS381317775353', '蕭詠詩', 0, '+1 718-338-4311', 3, '094517298260783392', '566 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1993-06-01', 0, 0, 'wssiu', '2001-04-19', 'wssiu', '2007-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS884748870450', '岩崎明菜', 0, '+81 3-7832-6177', 3, '261866569577387572', 'Rm. 13, 2-3-4 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-12-14', 0, 0, 'iwasaki2', '2017-02-02', 'akina2', '2013-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS598180276586', '顾晓明', 1, '+86 769-3797-0763', 2, '814514873440685403', 'No.2 building, 626 Shanhu Rd, Dongguan, China', '1998-11-01', 0, 0, 'xgu5', '2017-09-28', 'guxiaoming47', '2000-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS441166035777', '斎藤舞', 0, '+86 21-2437-2352', 2, '567546129816238519', '中国上海市闵行区宾川路478号华润大厦15室', '1989-04-06', 0, 0, 'saitoma', '2002-02-25', 'maisai', '2002-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS852462151126', 'Douglas Hicks', 0, '+86 10-957-7335', 2, '564470314071261520', '中国北京市西城区西長安街156号31号楼', '1993-07-03', 0, 0, 'douglashick', '2020-10-17', 'hdoug', '2015-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS037334711195', '山田結翔', 0, '+1 213-087-7026', 4, '951610288128186249', '68 Sky Way Apt 45, Los Angeles, CA 90043, United States', '1985-12-17', 0, 0, 'yamada58', '2011-02-05', 'yamadyu14', '2009-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS310044046141', 'Joshua Wells', 0, '+81 70-7310-0099', 1, '276295063505547078', '14F, 3-15-2 Ginza, Chuo-ku, Tokyo, Japan', '1998-09-05', 0, 0, 'wells08', '2005-07-28', 'wells1970', '2010-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS331316125778', '中森優奈', 0, '+81 66-103-9982', 3, '835142210304010090', '日本おおさかし東住吉区東田辺三丁目27番2号36階', '1994-12-25', 0, 0, 'yun1220', '2016-05-28', 'yunna', '2015-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS791202420367', '阮永權', 0, '+81 74-576-0891', 2, '533497485501511788', 'Rm. 5, 3-9-9 Gakuenminami, Nara, Japan', '1987-02-01', 0, 0, 'wingkuen321', '2015-01-12', 'wkyuen', '2005-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS215812403664', 'Rosa Mendoza', 1, '+81 52-508-1224', 1, '961676563010474070', '48F, 3-19-14 Shimizu, Kita Ward, Nagoya, Japan', '1999-02-18', 0, 0, 'rosam5', '2001-06-19', 'mendoros8', '2016-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS249593142369', 'Tracy Sullivan', 0, '+81 90-5664-6851', 1, '078588461289968660', '28-kai, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-08-09', 0, 0, 'tracysu107', '2001-01-16', 'tsullivan', '2013-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS774791832022', '佘學友', 0, '+44 5759 897326', 0, '927939810712668891', 'Block 11, 42 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1999-01-14', 0, 0, 'hysheh', '2002-06-09', 'hokyau1972', '2018-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS196647418211', 'Sherry Tran', 0, '+81 90-8704-6572', 1, '656646236799230767', '日本なごやし瑞穂区河岸町四丁目20番3号15階', '1989-08-18', 0, 0, 'transher5', '2014-09-20', 'tran511', '2008-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS320039112979', 'Phyllis Anderson', 0, '+86 135-6381-8153', 3, '253853883954206289', '中国中山天河区大信商圈大信南路229号华润大厦43室', '1989-06-02', 0, 0, 'phanderson', '2007-11-15', 'phyllisande', '2008-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS482312937657', '徐杰宏', 0, '+81 90-2826-6278', 1, '325755070068057537', '35F, 16 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-02-04', 0, 0, 'jiehongxu', '2021-09-08', 'jiehong4', '2014-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS156477847036', 'Herbert Daniels', 0, '+44 7247 674888', 2, '518733120523167116', 'Unit 10, Oxford Eco Centre, 651 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1998-05-11', 0, 0, 'danherbert', '2021-06-28', 'herbertdaniels6', '2014-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS837169402160', '萧秀英', 1, '+1 212-212-7367', 2, '372294533235185276', '809 Canal Street 3rd Floor, New York, NY 10013, United States', '1998-06-26', 0, 0, 'xiuyingxiao1118', '2013-03-24', 'xiuyingxiao', '2016-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS665982834324', '钱璐', 1, '+81 74-033-7093', 1, '657317181679465999', '日本ならし大和郡山市本庄町一丁目1番16号2階', '1996-04-03', 0, 0, 'qialu', '2006-11-11', 'lu8', '2003-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS820078402693', '尹嘉伦', 0, '+81 70-3783-4333', 4, '195129892320966890', '日本ならし西大寺赤田町一丁目7番7号4階', '1998-10-28', 0, 0, 'jiay', '2021-04-14', 'jialunyi6', '2005-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS577483752390', '曾嘉伦', 1, '+81 74-643-0176', 1, '739619326977304461', '41F, 1-7-4 Saidaiji Akodacho, Nara, Japan', '1994-05-30', 0, 0, 'zeng606', '2009-06-13', 'zenjialun601', '2009-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS213944790721', '菊地拓哉', 0, '+81 80-9161-1525', 3, '797908685556181053', '日本なごやし瑞穂区河岸町四丁目20番5号3号室', '1990-10-20', 0, 0, 'takuyakiku', '2009-11-26', 'kikuchi10', '2000-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS171817228932', '廖家輝', 0, '+44 (116) 385 2186', 0, '889760195123755185', 'Unit 13, Oxford Eco Centre, 480 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1998-08-11', 0, 0, 'liaokafai', '2008-04-24', 'liao1979', '2005-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS204099320617', '高田拓哉', 1, '+1 330-123-9614', 2, '261829671136840228', '199 Fern Street Apartment 12, Akron, OH 44307, United States', '1995-07-04', 0, 0, 'takadatakuya', '2014-12-03', 'takadatakuy73', '2016-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS141417133703', '李致远', 1, '+86 152-0692-6084', 2, '518328826024069862', '中国成都市锦江区人民南路四段429号1楼', '1985-10-09', 0, 0, 'zhiyuanli54', '2011-07-06', 'zhiyli9', '2000-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS969818759925', '島田蓮', 0, '+44 (116) 358 9449', 2, '977403384179361948', 'Block 33, 449 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1993-09-09', 0, 0, 'renshimada', '2020-06-07', 'renshima', '2004-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS806865541473', '薛力申', 1, '+44 (161) 791 4792', 3, '232047099731758800', 'Block 27, 997 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-04-20', 0, 0, 'liksun823', '2000-12-13', 'liksunsit', '2018-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS307237827813', '翁安琪', 0, '+1 614-348-6540', 3, '163068635992927809', '849 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1993-12-24', 0, 0, 'yonkay', '2020-12-14', 'yok', '2017-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS872700225424', '徐璐', 0, '+86 155-2287-2743', 1, '358866161680868361', 'No.35 building, 520 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1992-05-20', 0, 0, 'lux', '2010-01-03', 'xlu', '2010-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS868366513247', '雷杰倫', 0, '+86 20-6147-6126', 3, '846806965588056052', 'Room 31, CR Building, 970 Jiangnan West Road, Haizhu District, Guangzhou, China', '1993-02-26', 0, 0, 'chiehlun11', '2000-06-15', 'clloui', '2021-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS997194124881', '程云熙', 0, '+1 330-582-6952', 1, '007512282103856993', '837 Collier Road Apartment 14, Akron, OH 44320, United States', '1995-01-02', 0, 0, 'yuncheng', '2000-07-29', 'yuch', '2010-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS102740983880', '山田光莉', 0, '+86 154-1120-7222', 4, '274328048584083312', '中国上海市浦东新区健祥路560号22室', '1987-03-15', 0, 0, 'hikyamad', '2011-08-29', 'hikayam', '2002-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS722808394813', '许嘉伦', 1, '+81 70-4812-8013', 2, '756348238598886046', '日本ならし学園南三丁目9番15号14階', '1997-04-01', 0, 0, 'xji824', '2013-03-21', 'jialuxu', '2018-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS637627312712', '邵力申', 0, '+81 70-1518-9715', 1, '462376655826347666', '43F, 3-19-19 Shimizu, Kita Ward, Nagoya, Japan', '1985-12-20', 0, 0, 'sliksun', '2008-11-25', 'siuliksun310', '2007-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS690783725206', '潘子韬', 0, '+81 3-5441-7708', 4, '897441206555311301', '49-kai, 1-6-10, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-03-26', 0, 0, 'zitao10', '2003-06-30', 'zipan', '2010-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS592776493333', '王璐', 1, '+86 147-8881-7768', 1, '543874922105021469', 'Room 22, CR Building, 872 Dong Zhi Men, Dongcheng District, Beijing, China', '1993-11-09', 0, 0, 'wanglu', '2003-08-27', 'luwan', '2006-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS122106415643', '岩崎玲奈', 1, '+44 (161) 751 8272', 4, '355250409707380732', 'No.45 Main building, 987 Portland St, Manchester, M1 3LA, United Kingdom', '1985-08-23', 0, 0, 'iwasakire', '2013-01-15', 'iwasakirena2003', '2008-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS553365201464', '高天樂', 0, '+86 10-8274-0524', 1, '797352412089873587', '中国北京市房山区岳琉路53号华润大厦14室', '1991-06-25', 0, 0, 'kaotl', '2015-04-22', 'tinlok10', '2010-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS925681264669', 'Kevin Hall', 0, '+86 163-8624-5391', 3, '242702585744798373', 'Room 36, CR Building, 774 Jiangnan West Road, Haizhu District, Guangzhou, China', '1990-03-30', 0, 0, 'hak47', '2005-01-20', 'hallkevin9', '2004-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS144080825789', 'Jeffery Alvarez', 0, '+1 212-256-6002', 3, '429700092564827170', '912 Canal Street Apartment 38, New York, NY 10013, United States', '1993-06-25', 0, 0, 'jefferyalva2', '2015-08-05', 'alvarezj', '2016-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS920061191154', 'Emily Morales', 1, '+86 134-7716-5175', 2, '188139474120138564', '中国深圳龙岗区学园一巷932号华润大厦19室', '1997-09-29', 0, 0, 'emilymorales3', '2014-11-06', 'emilmora', '2017-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS998656271190', '小川明菜', 0, '+81 90-8661-7110', 2, '510213566587287590', 'Rm. 5, 1-5-4, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-11-15', 0, 0, 'akinogawa', '2018-07-22', 'ogaakina89', '2016-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS307418201430', '贺嘉伦', 1, '+86 140-2028-6130', 1, '415518498390476478', '中国成都市成华区玉双路6号423号21号楼', '1990-03-28', 0, 0, 'heji', '2021-12-28', 'jialun807', '2018-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS961104917727', '遠藤拓哉', 1, '+81 52-147-6122', 0, '719185715190715963', '44F, 2 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1990-03-06', 0, 0, 'takuya204', '2012-09-13', 'taendo10', '2007-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS043535465778', 'Edward Murphy', 1, '+86 184-5746-7206', 3, '301470865284645399', '中国中山天河区大信商圈大信南路413号7楼', '1995-06-26', 0, 0, 'edwardmu', '2021-11-06', 'mued', '2010-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS522432451851', '白家玲', 1, '+86 760-4464-3514', 4, '833599658041531156', 'Room 17, 960 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1989-05-16', 0, 0, 'pakali', '2001-03-18', 'pakaling', '2021-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS725973858701', '刘宇宁', 0, '+81 70-3413-1082', 4, '952607678692453320', '48F, 1-7-2 Omido, Higashiosaka, Osaka, Japan', '1996-09-01', 0, 0, 'yuliu', '2013-03-25', 'yunliu', '2002-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS674401278553', 'Jesse Flores', 1, '+86 20-725-3581', 3, '625653324540959289', '中国广州市天河区天河路111号华润大厦50室', '1998-02-08', 0, 0, 'jef413', '2003-04-16', 'fjesse205', '2003-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS513712400319', '薛子异', 1, '+81 70-3304-4350', 3, '740446072627750164', '46-kai, 2-3-8 Yoyogi, Shibuya-ku, Tokyo, Japan', '1988-10-22', 0, 0, 'xziyi', '2010-01-07', 'ziyixu', '2009-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS084837764862', '任嘉伦', 0, '+86 21-1482-3850', 1, '871900440956241659', '中国上海市浦东新区健祥路644号40号楼', '1996-04-28', 0, 0, 'renjialun74', '2019-09-18', 'jr04', '2015-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS910424943803', '千葉光莉', 0, '+1 212-779-0173', 2, '213447120910578127', '839 Fifth Avenue Apartment 34, New York, NY 10017, United States', '1988-11-28', 0, 0, 'hikari227', '2012-06-30', 'chihikari', '2007-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS669517260235', '戚慧敏', 0, '+81 11-643-4340', 4, '954538549283677097', '36-kai, 5-4-1 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1994-03-05', 0, 0, 'waimanchic63', '2013-06-17', 'wmchic85', '2018-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS699286088914', '莫子韬', 0, '+44 (121) 980 3789', 0, '755232097149565291', 'Flat 18, 487 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1992-08-07', 0, 0, 'zmo', '2006-08-04', 'mozita', '2016-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS996715883786', '黎詩涵', 0, '+86 769-4378-1614', 3, '742797327401713062', '22F, 677 Dongtai 5th St, Dongguan, China', '1998-02-11', 0, 0, 'lis', '2003-10-15', 'ls2020', '2010-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS436975435006', '孫頴思', 1, '+81 90-8745-8242', 1, '243460655892481970', '日本東京中央区銀座三丁目12番18号10号室', '1998-04-28', 0, 0, 'wshsuan', '2008-11-16', 'hsuanwingsze', '2022-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS194236246298', '遠藤翼', 0, '+1 312-774-4346', 3, '682643088308676571', '526 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1985-04-28', 0, 0, 'endts', '2014-08-09', 'tsubasa9', '2008-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS133239842248', 'Douglas Carter', 1, '+81 80-0076-3299', 2, '158294127914663732', '31-kai, 5-4-18 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1996-06-20', 0, 0, 'douglas7', '2018-10-30', 'doc', '2016-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS758016120656', 'Richard Lopez', 0, '+81 80-4340-7962', 3, '660979831248246227', '日本ならし学園南三丁目9番8号47号室', '1989-12-10', 0, 0, 'lopricha', '2008-01-04', 'richardlopez', '2013-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS750253374054', '谷口大輔', 1, '+44 7880 533698', 3, '564124385746668727', 'Unit 36, Oxford Eco Centre, 477 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1987-08-14', 0, 0, 'taniguchidaisuke511', '2021-03-05', 'taniguchi8', '2000-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS734369043820', 'Cynthia Burns', 1, '+86 769-5176-3090', 1, '154814384493111273', '中国东莞东泰五街593号2楼', '1995-01-19', 0, 0, 'cynthiaburns95', '2010-10-29', 'cynthiaburns', '2014-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS174221478818', '山田大地', 1, '+86 769-8175-4047', 1, '334352204727546706', '中国东莞珊瑚路939号39楼', '1995-05-27', 0, 0, 'yamada1121', '2004-03-20', 'daicyamada1216', '2007-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS093121960468', '岡本葉月', 0, '+86 148-8721-8062', 3, '170445542595194558', 'No.49 building, 712 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1992-10-19', 0, 0, 'ohazuk7', '2022-02-19', 'okamotohazu', '2011-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS902834495619', '遠藤湊', 0, '+86 140-6935-3158', 3, '112298881262711128', '中国上海市闵行区宾川路997号3栋', '1994-01-01', 0, 0, 'miendo1991', '2004-02-08', 'endominato', '2020-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS767309136446', '孫惠敏', 1, '+86 196-7727-7236', 2, '686553419368271395', '中国广州市越秀区中山二路452号华润大厦17室', '1989-01-15', 0, 0, 'hwm8', '2005-06-27', 'wmhsuan', '2010-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS038765484173', '村上結翔', 0, '+1 212-335-0083', 0, '278823096093533725', '678 West Houston Street Apt 34, New York, NY 10014, United States', '1994-01-02', 0, 0, 'yuitomurakami', '2003-03-28', 'yuitom', '2014-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS012574128270', 'Sheila Warren', 1, '+81 80-7592-6888', 1, '756784421621449196', 'Rm. 40, 2-5-12 Chitose, Atsuta Ward, Nagoya, Japan', '1990-03-08', 0, 0, 'sw4', '2010-12-04', 'sheilawar', '2010-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS389155266277', '许子异', 0, '+81 74-902-4613', 3, '391149476222267912', '日本ならし学園南三丁目9番1号36階', '1996-07-17', 0, 0, 'xuziyi', '2017-09-27', 'ziyixu', '2002-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS176637949123', '姚安琪', 0, '+81 52-692-8145', 4, '473569299473425307', '日本なごやし守山区瀬古東二丁目171番5号14階', '1996-05-16', 0, 0, 'anqiyao', '2009-08-16', 'anqiyao', '2010-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS902481403285', 'Pauline Ruiz', 0, '+44 (116) 057 8430', 3, '864717209929748657', 'Block 46, 391 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1992-09-12', 0, 0, 'paulinerui', '2001-01-09', 'paulineruiz', '2002-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS156999747763', '高田愛梨', 0, '+81 52-001-7155', 3, '007055589576663823', '46-kai, 3-19-4 Shimizu, Kita Ward, Nagoya, Japan', '1991-07-24', 0, 0, 'airit', '2000-03-05', 'airitakada223', '2001-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS564891554241', '金子异', 1, '+44 (161) 185 5057', 1, '907920144748860766', 'No.4 Main building, 451 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1988-01-23', 0, 0, 'jinziyi', '2015-02-11', 'ziyi73', '2013-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS177318848099', '近藤愛梨', 0, '+1 213-635-1458', 2, '662619024246968563', '846 S Broadway Apartment 36, Los Angeles, CA 90015, United States', '1992-11-22', 0, 0, 'kondoairi', '2013-06-05', 'kairi', '2001-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS125833152360', '莫慧珊', 0, '+44 (161) 078 7597', 1, '306617961415101422', 'Flat 19, 303 Portland St, Manchester, M1 3LA, United Kingdom', '1990-09-14', 0, 0, 'waisanmo1210', '2006-02-28', 'waisan9', '2009-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS353297346798', '杨宇宁', 1, '+1 212-760-1777', 1, '016109526506536076', '109 Bank Street Apt 7, New York, NY 10014, United States', '1991-05-26', 0, 0, 'yuninyan', '2016-02-20', 'yangy402', '2008-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS494532404300', '顧仲賢', 0, '+81 3-1970-8924', 3, '225268182283401254', '日本東京渋谷区代々木二丁目3番10号49号室', '1995-05-25', 0, 0, 'cyku', '2015-08-02', 'ku3', '2017-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS414703942083', '胡子韬', 1, '+1 614-070-1620', 2, '471455836713015856', '811 East Alley Apartment 33, Columbus, GA 43201, United States', '1990-06-17', 0, 0, 'hzitao', '2006-07-31', 'hu18', '2010-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS736206055127', '向家強', 1, '+81 70-5155-2572', 2, '960337886641214180', 'Rm. 42, 1-5-12, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1991-06-17', 0, 0, 'kaheung', '2012-12-06', 'kkh3', '2018-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS370479400444', '村上陽太', 0, '+44 (1865) 75 1656', 1, '537661219887643060', 'Unit 47, Oxford Eco Centre, 521 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1986-09-01', 0, 0, 'yotmur51', '2009-04-06', 'murakami94', '2010-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS933072268614', '吕子异', 0, '+86 174-9011-0738', 3, '104197437821105145', 'No.23 building, 816 Kengmei 15th Alley, Dongguan, China', '1985-05-21', 0, 0, 'ziylu', '2016-05-03', 'zilu5', '2006-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS131365272532', '錢家強', 1, '+81 66-564-9538', 1, '887002400025347160', '日本おおさかし西成区天神ノ森二丁目1番8号41号室', '1988-04-23', 0, 0, 'kakeungchin7', '2011-10-07', 'chin07', '2017-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS778512905975', '葉家明', 0, '+86 197-7043-5381', 0, '660015617000326780', '中国东莞坑美十五巷241号华润大厦25室', '1990-07-19', 0, 0, 'kamingyip73', '2021-05-20', 'yka', '2001-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS933111613682', '毛家輝', 0, '+81 74-356-6202', 3, '674200772383578060', '日本ならし西大寺赤田町一丁目7番5号48階', '1992-09-04', 0, 0, 'kafaim', '2017-02-17', 'kafai86', '2014-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS261497918941', 'Alexander Reyes', 1, '+44 (151) 923 2812', 3, '778244674797162813', 'Block 6, 557 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1985-12-29', 0, 0, 'ralexander6', '2006-05-03', 'alexanderreyes', '2021-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS875048855753', 'Hazel Jones', 1, '+81 11-012-2944', 4, '210381948654016609', 'Rm. 37, 5-2-16 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1987-04-01', 0, 0, 'jonesh20', '2001-11-26', 'johazel', '2020-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS114029397412', '橋本陽菜', 1, '+81 66-947-5472', 1, '531310895762311662', '41F, 1-7-5 Omido, Higashiosaka, Osaka, Japan', '1985-11-18', 0, 0, 'hinahas', '2015-08-16', 'hashhina64', '2011-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS582314656980', 'Debra Sullivan', 0, '+81 11-078-0144', 3, '804978015195747860', 'Rm. 42, 6-1-6, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1985-04-19', 0, 0, 'debsullivan97', '2018-01-03', 'dsullivan', '2006-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS677269438409', '阮家強', 1, '+1 212-299-1432', 1, '577202457745980245', '128 Canal Street 3rd Floor, New York, NY 10013, United States', '1995-12-26', 0, 0, 'kkyuen', '2019-12-09', 'ykakeung', '2016-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS693517340896', '葉詠詩', 1, '+86 21-128-0256', 2, '055972280103618949', '42F, 466 Hongqiao Rd., Xu Hui District, Shanghai, China', '1985-05-28', 0, 0, 'yipwings827', '2007-11-16', 'yipws', '2001-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS685254462779', '麥家輝', 1, '+81 3-6370-9078', 2, '547160542992608879', '日本東京中央区銀座三丁目12番18号19階', '1996-12-06', 0, 0, 'makkf', '2012-06-04', 'mak7', '2000-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS179586120914', 'Josephine Mcdonald', 1, '+81 3-9345-5011', 2, '152678982989348400', 'Rm. 19, 2-3-6 Yoyogi, Shibuya-ku, Tokyo, Japan', '1996-06-09', 0, 0, 'josephine9', '2019-10-05', 'josephine48', '2013-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS360916474003', 'Clara Graham', 0, '+86 28-942-0338', 2, '938484540690197293', '中国成都市成华区玉双路6号335号华润大厦30室', '1995-10-23', 0, 0, 'graham99', '2017-08-25', 'clarag', '2019-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS837318111238', '島田美月', 1, '+86 20-412-2610', 1, '391438573783547293', '中国广州市越秀区中山二路598号13室', '1992-11-12', 0, 0, 'smitsuki', '2007-05-27', 'shimamitsu', '2003-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS454517590954', '菅原花', 0, '+86 157-1735-3144', 3, '055679191999259677', '中国深圳罗湖区清水河一路6号3栋', '1994-08-22', 0, 0, 'sugahana', '2017-09-10', 'hana7', '2014-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS554711046284', '邱岚', 1, '+86 196-9025-9239', 2, '823029260370637407', '26F, 619 FuXingMenNei Street, XiCheng District, Beijing, China', '1998-05-15', 0, 0, 'qiulan', '2001-03-07', 'lanq912', '2016-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS583892902222', 'Sandra Nguyen', 1, '+1 213-820-5102', 3, '229002192262742060', '890 Wall Street Apt 50, Los Angeles, CA 90003, United States', '1985-09-14', 0, 0, 'sandnguyen', '2008-09-19', 'sandrang', '2018-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS516191785016', '汪震南', 1, '+86 10-3234-0729', 4, '709409002998656196', 'Room 44, CR Building, 201 West Chang''an Avenue, Xicheng District, Beijing, China', '1993-02-05', 0, 0, 'zhennan622', '2021-06-10', 'zwan', '2007-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS608210167930', '邵云熙', 1, '+44 5899 907930', 2, '124665644243545460', 'No.3 Main building, 268 Sackville St, Manchester, M1 3BB, United Kingdom', '1987-04-08', 0, 0, 'shaoyunx', '2013-09-05', 'syunxi', '2017-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS419959980723', '方慧珊', 0, '+1 838-996-5106', 2, '212322617659680144', '19 Lark Street Suite 24, Albany, NY 12210, United States', '1990-11-08', 0, 0, 'fongwaisa1229', '2013-04-23', 'fonwaisan525', '2002-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS929494539951', '钟璐', 0, '+86 190-0963-3561', 2, '427013879821137845', '中国上海市闵行区宾川路185号华润大厦42室', '1995-02-09', 0, 0, 'lu1995', '2012-02-17', 'zhonglu', '2008-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS398956460541', 'Sheila Ryan', 1, '+86 161-1018-4606', 4, '310830060213487051', '中国深圳罗湖区蔡屋围深南东路689号15室', '1985-03-31', 0, 0, 'sheilarya', '2009-06-04', 'ryansheila83', '2013-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS549550211553', 'Ray Stephens', 1, '+81 80-9565-0389', 0, '394682992218597600', '34-kai, 1-7-4 Omido, Higashiosaka, Osaka, Japan', '1988-08-14', 0, 0, 'stephensra', '2021-10-10', 'rays', '2006-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS497139408978', 'Julie Stephens', 1, '+86 196-1359-8994', 3, '975011518450589607', '中国北京市海淀区清河中街68号405号4室', '1993-02-07', 0, 0, 'jstephens1', '2002-02-16', 'stephensjulie1', '2002-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS178666690569', '小林百花', 0, '+86 166-2288-7736', 2, '434103992569953073', 'No.18 building, 157 Dong Zhi Men, Dongcheng District, Beijing, China', '1997-07-03', 0, 0, 'kobayashimomok', '2018-12-08', 'momok3', '2016-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS538057068057', 'Michelle Lopez', 0, '+86 145-7379-2092', 2, '340597107573631282', 'Room 50, CR Building, 438 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1987-02-13', 0, 0, 'lopez4', '2019-08-26', 'michelle4', '2017-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS030555064396', 'Jerry Collins', 1, '+86 760-3808-5356', 4, '376224394686622366', '中国中山乐丰六路644号32号楼', '1990-01-07', 0, 0, 'coljerr1117', '2009-08-14', 'jerry801', '2010-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS494564477014', '山本百恵', 0, '+81 90-3318-8398', 1, '906303536264000104', 'Rm. 10, 5-4-19 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1995-12-08', 0, 0, 'yamamotomomoe', '2011-05-07', 'yamamotomomo', '2007-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS560028769378', 'Jessica Clark', 1, '+86 199-9086-1171', 2, '774590256190825074', '中国深圳龙岗区布吉镇西环路653号华润大厦40室', '1996-11-15', 0, 0, 'clajessica', '2009-08-16', 'clarkjessica', '2004-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS775222534967', '上田優奈', 1, '+44 7110 548335', 3, '755808651186051583', 'Block 4, 130 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1986-10-24', 0, 0, 'yunu7', '2000-11-01', 'ueyu', '2006-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS292171303723', '崔慧敏', 1, '+86 755-8141-2064', 0, '527420201743978552', '中国深圳罗湖区蔡屋围深南东路731号21楼', '1988-01-29', 0, 0, 'wmchoi4', '2003-03-01', 'wmchoi6', '2005-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS276739454638', '長谷川美咲', 1, '+81 70-9081-6571', 1, '078222958555103518', '日本東京渋谷区代々木二丁目3番16号4階', '1994-05-05', 0, 0, 'hami', '2000-09-02', 'mihase', '2008-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS147547267830', 'Keith Ellis', 1, '+86 132-1309-1533', 0, '113367407021791370', '12F, 784 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1986-03-19', 0, 0, 'keithellis51', '2008-01-12', 'keith6', '2005-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS476815624812', '尹子异', 0, '+81 11-701-5836', 3, '203636736861958566', '日本札幌中央区宮の森四条六丁目1番18号35号室', '1990-12-07', 0, 0, 'yiziy', '2018-05-07', 'yin1', '2005-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS397902906410', '石川蒼士', 0, '+81 90-6775-4931', 2, '156707147170402944', 'Rm. 20, 5-2-1 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1992-11-03', 0, 0, 'aoshiishi10', '2005-11-01', 'iaoshi', '2008-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS156493127183', '西村陽菜', 1, '+44 5990 337729', 0, '387934528965120682', 'Unit 20, Oxford Eco Centre, 852 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1989-10-04', 0, 0, 'hinishimura', '2016-10-03', 'hnis', '2003-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS099740542067', 'Mario Tucker', 1, '+81 90-9014-6693', 2, '784448453100467767', '日本東京千代田区丸の内一丁目6番11号5階', '1998-07-10', 0, 0, 'tucm', '2004-12-23', 'matuc', '2003-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS572285918167', '段安琪', 1, '+1 614-323-3408', 1, '712739843453683052', '295 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1993-07-10', 0, 0, 'anqi1', '2002-10-24', 'anqi616', '2003-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS558662280794', '许詩涵', 1, '+81 3-0209-3219', 1, '135361997297631528', '日本東京品川区東五反田五丁目2番1号39階', '1993-03-13', 0, 0, 'shihxu', '2020-03-30', 'shihxu415', '2018-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS021403007080', '斉藤明菜', 0, '+81 11-986-2311', 3, '724847460673568292', '日本札幌白石区菊水三条五丁目4番13号26階', '1986-04-12', 0, 0, 'sa210', '2017-06-26', 'saiakina1983', '2003-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS447780742287', '谷口優奈', 0, '+86 151-3327-3051', 1, '627482881563055962', '中国广州市白云区机场路棠苑街五巷750号41号楼', '1987-06-09', 0, 0, 'tyuna53', '2005-12-05', 'yunta55', '2016-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS187644994476', '上田結翔', 1, '+81 90-8800-5396', 3, '452851203028643031', '42F, 13-3-11 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1989-04-04', 0, 0, 'uedyuito09', '2017-11-26', 'ueday904', '2016-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS955591022663', '袁岚', 0, '+44 (20) 2034 5905', 2, '200970529211956776', 'Block 39, 551 Pollen Street, London, W1S 1NG, United Kingdom', '1997-07-25', 0, 0, 'yulan', '2004-07-04', 'lanyuan', '2012-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS394864317368', 'Julie Howard', 0, '+86 755-8442-1943', 3, '740227954560058208', '19F, 301 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1998-08-08', 0, 0, 'hojulie', '2014-07-13', 'julh', '2001-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS302518218700', '黎仲賢', 0, '+44 5722 467158', 3, '754620857737592395', 'No.13 Main building, 39 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1988-03-08', 0, 0, 'chungyinlai', '2010-04-29', 'laicy', '2008-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS532611350182', '江嘉伦', 1, '+86 170-8623-8463', 2, '774202500391334239', 'Room 25, 111 Dong Zhi Men, Dongcheng District, Beijing, China', '1987-03-04', 0, 0, 'jialunji', '2002-12-18', 'jiang7', '2018-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS415819234373', '上野桜', 1, '+44 5653 337403', 2, '894636056780536382', 'Unit 14, Oxford Eco Centre, 628 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1991-03-18', 0, 0, 'us1', '2020-11-07', 'sakuraueno7', '2012-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS581606474471', '有村拓哉', 0, '+86 10-9144-8943', 2, '157161425980485896', '中国北京市西城区西長安街27号43室', '1990-07-21', 0, 0, 'arimurata', '2001-12-30', 'arimura85', '2005-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS675708840830', 'Ethel Lee', 0, '+86 133-8254-6312', 3, '319612364709551721', '5F, No. 256, Shuangqing Rd, Chenghua District, Chengdu, China', '1986-09-25', 0, 0, 'ethellee329', '2000-08-27', 'ethelee1', '2015-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS552008974749', '潘致远', 0, '+86 769-1285-7513', 4, '250711144219902834', '中国东莞坑美十五巷39号14室', '1989-02-07', 0, 0, 'panzhiyuan3', '2019-07-23', 'zhiyuanp', '2015-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS497035978910', 'Willie Hernandez', 1, '+44 (151) 646 2554', 4, '961560134249389949', 'No.29 Main building, 753 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1995-11-04', 0, 0, 'hewil8', '2001-05-03', 'hernandezwi512', '2016-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS832716887921', 'Lee Adams', 0, '+86 160-8527-1773', 3, '007546287096657019', '中国广州市越秀区中山二路980号25号楼', '1994-03-31', 0, 0, 'leeadams1009', '2020-12-24', 'leeadams07', '2007-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS597528622262', '坂本大輔', 1, '+1 212-032-6735', 4, '758864767935311347', '381 Wooster Street Suite 28, New York, NY 10012, United States', '1989-05-21', 0, 0, 'daisuke4', '2004-03-18', 'sakda', '2003-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS037933197854', '郑子韬', 1, '+86 769-529-6446', 2, '998571749943785516', '中国东莞珊瑚路933号华润大厦42室', '1994-02-03', 0, 0, 'zz6', '2020-09-23', 'zhengzita', '2015-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS191371406871', 'Nicole Owens', 0, '+1 330-616-9595', 1, '685371134735757734', '289 West Market Street 3rd Floor, Akron, OH 44333, United States', '1985-02-10', 0, 0, 'nicolowens', '2017-07-28', 'onicole75', '2013-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS738045249533', '容詩君', 0, '+86 139-6065-9534', 2, '591193643420913287', '47F, 63 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1997-12-17', 0, 0, 'szekwanyung', '2015-05-10', 'sky7', '2017-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS520163790785', '和田花', 1, '+86 10-9711-6257', 3, '779420817352242592', 'No.10 building, 892 East Wangfujing Street, Dongcheng District , Beijing, China', '1993-06-23', 0, 0, 'hanawada419', '2001-05-07', 'wadahana', '2020-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS703975942935', '戴世榮', 1, '+1 312-382-1139', 2, '459547307108722550', '36 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1994-05-10', 0, 0, 'daisaiw79', '2019-02-06', 'dai4', '2000-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS683796151684', '严云熙', 1, '+81 52-590-4435', 0, '812267019376739775', '7F, 12 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-07-06', 0, 0, 'yan1205', '2010-11-23', 'yyu9', '2008-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS150189316683', '苗朝偉', 0, '+44 (116) 571 9712', 0, '326066652134819436', 'Unit 34, Oxford Eco Centre, 767 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1991-05-16', 0, 0, 'miu2016', '2012-05-17', 'miu19', '2016-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS339330483737', '中野大和', 1, '+44 5865 475620', 3, '817624145617825471', 'Unit 19, Oxford Eco Centre, 272 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1997-03-12', 0, 0, 'nakanoy216', '2014-06-26', 'nakanyamato10', '2015-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS221941208473', 'Bernard Rodriguez', 1, '+1 213-152-0922', 1, '665253805774357390', '628 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1989-03-01', 0, 0, 'rbe4', '2007-09-27', 'bernardrodriguez9', '2004-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS543949208859', 'Vincent Ward', 0, '+86 10-0848-7273', 0, '023507242969370772', '中国北京市海淀区清河中街68号825号29号楼', '1994-08-14', 0, 0, 'ward6', '2003-08-19', 'vincent309', '2004-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS843057649853', 'Lawrence Daniels', 1, '+86 181-2517-1243', 1, '045778840566357963', 'Room 3, 838 Ganlan Rd, Pudong, Shanghai, China', '1996-06-07', 0, 0, 'daniels1974', '2019-12-09', 'lawrence3', '2018-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS736812446083', '藤家明', 1, '+1 212-340-7904', 3, '175535091662003550', '187 Bank Street Apt 6, New York, NY 10014, United States', '1986-07-23', 0, 0, 'kamintang', '2000-03-28', 'kamtang', '2018-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS392748506487', '余璐', 0, '+81 90-3399-2920', 0, '490984637754549651', '29-kai, 14 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1999-01-10', 0, 0, 'yulu', '2011-04-11', 'yulu', '2011-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS237853619070', '沈嘉伦', 0, '+81 11-416-6080', 3, '753312440292627312', '日本札幌清田区真栄四条五丁目19番18号5号室', '1985-02-22', 0, 0, 'jshen', '2020-05-21', 'shen10', '2020-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS574042312972', '佐藤百花', 1, '+1 838-685-8115', 3, '669688661796415018', '630 Central Avenue Apartment 24, Albany, NY 12205, United States', '1986-05-01', 0, 0, 'momoka69', '2001-07-01', 'satom78', '2010-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS742637582817', '萧嘉伦', 0, '+1 213-695-2192', 3, '301673064333197317', '442 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1994-07-25', 0, 0, 'xiaojialun', '2014-09-10', 'xiao56', '2017-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS913717841037', 'Rachel Morales', 0, '+81 66-511-2432', 2, '983646478668045146', '日本おおさかし近江堂一丁目7番4号15号室', '1997-05-27', 0, 0, 'morrachel', '2002-10-25', 'moralesrachel', '2014-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS665715188560', '郭子韬', 0, '+86 769-5503-0037', 1, '520724055080403386', '18F, 907 Huanqu South Street 2nd Alley, Dongguan, China', '1988-10-26', 0, 0, 'gzitao9', '2003-04-15', 'guo92', '2008-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS767045727991', '松本花', 1, '+81 66-989-0389', 1, '251361847821399853', '25-kai, 2-1-10 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1995-03-21', 0, 0, 'hanamatsumoto', '2004-06-30', 'hana9', '2006-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS067460231893', '唐天榮', 1, '+81 70-9369-1185', 1, '820996769146950585', '日本ならし西大寺赤田町一丁目7番14号23階', '1997-08-06', 0, 0, 'tontw', '2018-04-02', 'tinwingtong', '2003-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS236206871007', '官思妤', 0, '+81 80-7696-4952', 3, '348845618204807413', '日本札幌豊平区豊平三条十三丁目3番12号30階', '1997-11-09', 0, 0, 'sykoo315', '2008-08-10', 'kszeyu', '2020-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS830797463921', '蕭力申', 1, '+81 90-5943-9877', 2, '656737733739522920', 'Rm. 3, 3-9-6 Gakuenminami, Nara, Japan', '1986-08-11', 0, 0, 'liksun9', '2016-06-30', 'liksunsiu1958', '2007-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS850070894844', 'Carolyn Gutierrez', 0, '+81 66-605-5161', 1, '508958346277619335', '日本おおさかし西成区出城一丁目1番17号24階', '1998-03-19', 0, 0, 'carolyn3', '2010-04-24', 'carolgutierrez', '2008-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS582709823685', '馬玲玲', 0, '+44 7856 047800', 3, '145696705455036976', 'Flat 45, 433 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1997-10-12', 0, 0, 'lingling1011', '2011-12-20', 'linglingma2', '2016-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS927374508777', 'Julia Cox', 1, '+81 90-3020-9054', 2, '632276740782346847', '6-kai, 6-1-10, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1985-02-08', 0, 0, 'juliacox', '2018-06-20', 'cox428', '2012-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS810713180913', '中村美緒', 1, '+86 138-2548-3145', 2, '825783618403708260', '中国深圳罗湖区田贝一路192号8楼', '1986-10-13', 0, 0, 'namio', '2005-08-12', 'nm4', '2020-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS813445000202', '甘頴思', 1, '+81 11-272-5311', 3, '216136789445423587', '44F, 5-19-19 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1999-01-07', 0, 0, 'wskam62', '2001-12-30', 'wingszekam', '2006-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS924701439498', 'Ruth Salazar', 0, '+81 66-795-3938', 1, '742132287132959865', '日本おおさかし西成区出城一丁目1番18号18階', '1995-02-21', 0, 0, 'rutsalazar', '2022-03-03', 'ruthsalaz', '2010-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS445381612897', '邵秀文', 0, '+86 21-4615-6249', 3, '001859634310752389', '中国上海市浦东新区健祥路92号25楼', '1997-02-13', 0, 0, 'ssauman', '2016-06-02', 'sisauman', '2020-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS920310278902', '程璐', 0, '+86 28-999-2917', 4, '892286447344825955', '中国成都市成华区玉双路6号900号43室', '1985-04-23', 0, 0, 'lucheng15', '2015-07-09', 'lu1007', '2020-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS632453865484', '向德華', 0, '+81 11-990-9848', 1, '483296686950420040', '日本札幌白石区菊水三条五丁目2番14号27階', '1997-04-13', 0, 0, 'takwahheung', '2004-04-21', 'heungtakwah', '2003-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS699649684072', '宣家強', 1, '+86 130-8523-3040', 0, '030840737430838328', 'No.28 building, 608 Shanhu Rd, Dongguan, China', '1991-12-03', 0, 0, 'hsuan829', '2017-08-25', 'kkhs', '2016-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS066458602632', 'Kathleen Ross', 1, '+86 755-836-3331', 3, '815502975539531818', '11F, 997 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1997-08-09', 0, 0, 'kathleenr', '2004-07-11', 'rosskath', '2000-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS743135333247', '江致远', 0, '+81 52-803-8463', 3, '449425343813189339', '日本なごやし北区清水三丁目19番2号31号室', '1993-01-16', 0, 0, 'jiaz', '2019-05-04', 'zhiyuanjia825', '2015-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS658174289840', '西村紗良', 0, '+86 755-3985-8332', 1, '497869458091081422', '28F, 811 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1986-10-14', 0, 0, 'nsara', '2013-02-25', 'nishsara', '2020-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS142829307916', '曾云熙', 0, '+1 330-222-5516', 0, '098667817799910445', '689 West Market Street 3rd Floor, Akron, OH 44333, United States', '1991-04-18', 0, 0, 'zenyun6', '2007-02-15', 'zeng103', '2019-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS173415691359', '張曉彤', 1, '+86 183-7773-1548', 3, '556261406114485131', '中国东莞珊瑚路174号46栋', '1993-06-13', 0, 0, 'cheung05', '2011-05-06', 'htcheung', '2013-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS391485309614', '陆云熙', 0, '+81 66-248-6556', 3, '840734739559205632', 'Rm. 48, 3-27-11 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1995-06-29', 0, 0, 'yunxi923', '2008-09-18', 'luyunxi94', '2019-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS132331433764', '郭子异', 0, '+86 21-5908-5305', 1, '377740224920927152', '中国上海市徐汇区虹桥路675号3楼', '1998-06-19', 0, 0, 'zguo', '2008-12-18', 'guozi', '2010-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS257237577253', '宮崎美羽', 1, '+44 5284 947887', 0, '362571025072009250', 'Block 50, 974 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1986-02-01', 0, 0, 'miyamiu', '2021-05-24', 'miumiyazaki', '2012-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS592584665422', '井上陽太', 0, '+1 212-139-2456', 1, '618746279898029843', '991 Fifth Avenue Apt 30, New York, NY 10017, United States', '1993-01-15', 0, 0, 'inoueyot', '2002-05-06', 'yotai', '2005-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS389573540791', '駱嘉欣', 0, '+81 3-9153-2773', 1, '522658362748582152', '日本東京千代田区丸の内一丁目6番7号5階', '1993-06-25', 0, 0, 'lkaryan212', '2010-04-23', 'loky', '2010-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS834688611461', '盧慧珊', 0, '+81 11-441-0139', 3, '526831636907237917', '28F, 13-3-20 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1992-09-22', 0, 0, 'lo16', '2021-03-08', 'lo10', '2018-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS900677804770', 'Chris Sullivan', 0, '+1 213-120-2690', 0, '503205409714469763', '413 Figueroa Street Apt 14, Los Angeles, CA 90037, United States', '1991-02-06', 0, 0, 'sullivan1130', '2002-01-25', 'chrsul5', '2007-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS318350594931', '任潤發', 0, '+86 131-8125-6377', 2, '091162940876510544', '中国北京市东城区东单王府井东街702号18楼', '1986-03-31', 0, 0, 'yuyam8', '2018-01-06', 'yunfaty1', '2011-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS847641332686', '任頴思', 0, '+81 70-1235-4086', 0, '336880280476201568', '6F, 4-9-14 Kamihigashi, Hirano Ward, Osaka, Japan', '1995-03-05', 0, 0, 'wingsze3', '2002-05-29', 'wsya', '2001-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS927852764144', 'Kelly Morgan', 0, '+86 160-5985-6567', 1, '295487892883439486', '中国深圳罗湖区清水河一路439号华润大厦2室', '1997-10-30', 0, 0, 'morgankelly6', '2013-06-17', 'kelly722', '2015-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS039625402835', 'Scott Myers', 1, '+86 28-4748-8948', 2, '483592329684392593', 'No.28 building, 660 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1999-02-19', 0, 0, 'myersscot', '2007-01-22', 'myerscott', '2016-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS755149358722', 'Sandra Henry', 0, '+86 769-466-5064', 3, '917869665795916085', '25F, 201 Kengmei 15th Alley, Dongguan, China', '1991-12-13', 0, 0, 'hsandra88', '2017-11-16', 'hsandr', '2015-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS748267788864', '崔青雲', 1, '+81 11-228-6114', 0, '207491111662278976', '31F, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-06-12', 0, 0, 'choichingwan', '2006-06-28', 'cwchoi', '2015-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS213108009664', '劉杰倫', 1, '+44 7580 676266', 3, '755715629486236059', 'Block 23, 310 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1988-01-13', 0, 0, 'chielau', '2012-01-09', 'chiehlunlau', '2010-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS682876203956', '王子韬', 1, '+86 161-4660-8306', 0, '130938815865109689', '28F, 414 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1995-09-22', 0, 0, 'wangzi8', '2008-02-01', 'zitaowang', '2004-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS728807231365', 'Martin Rice', 0, '+44 5606 079570', 3, '967774737091793925', 'Flat 22, 33 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1997-11-04', 0, 0, 'rmartin', '2004-10-07', 'rm63', '2000-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS827103170515', '麥志明', 0, '+86 769-715-0475', 1, '488929597340282936', 'Room 21, CR Building, 4 Huanqu South Street 2nd Alley, Dongguan, China', '1993-10-22', 0, 0, 'makcm', '2019-06-16', 'cmmak83', '2012-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS788386430938', '田村結翔', 1, '+44 7646 684541', 0, '842233890886594749', 'Flat 42, 57 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1991-01-19', 0, 0, 'tamurayuito', '2012-11-30', 'ytamu', '2003-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS149765592901', '柴田葵', 1, '+81 11-451-5503', 0, '305902901619532537', 'Rm. 44, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-02-23', 0, 0, 'shibata2012', '2001-12-15', 'aoishiba', '2007-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS737278927973', '苗梓軒', 0, '+1 838-740-9258', 1, '814976158376938527', '86 Central Avenue Apartment 18, Albany, NY 12206, United States', '1997-01-05', 0, 0, 'tszhin610', '2020-12-10', 'miuth927', '2004-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS529152346537', '翁天樂', 1, '+81 11-085-7506', 3, '195822726889046720', 'Rm. 39, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1987-04-19', 0, 0, 'yuntl', '2006-04-20', 'tlyung', '2006-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS571321643540', '雷青雲', 1, '+81 90-3411-1516', 1, '288676130295844629', '18-kai, 5-4-19 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-12-24', 0, 0, 'chingwanloui', '2004-08-31', 'louiching1025', '2012-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS415815306818', '萬嘉欣', 0, '+86 157-6073-5259', 2, '160339240687460652', '中国上海市浦东新区健祥路236号11栋', '1993-06-08', 0, 0, 'kymeng', '2011-11-10', 'karyanmeng', '2002-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS312013642461', '中森聖子', 1, '+86 177-9646-0356', 1, '926840256832704721', 'No.16 building, 995 East Wangfujing Street, Dongcheng District , Beijing, China', '1993-04-07', 0, 0, 'sn2008', '2020-12-31', 'snakamori109', '2006-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS769004796193', '武田陽菜', 1, '+44 5815 999085', 4, '397207725114825179', 'No.8 Main building, 943 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1991-02-02', 0, 0, 'hinatakeda', '2004-10-30', 'takeda2006', '2005-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS001465123508', '野村大地', 0, '+1 838-496-3485', 2, '941355233286384022', '408 Broadway 3rd Floor, Albany, NY 12207, United States', '1994-12-16', 0, 0, 'nomuradai10', '2015-03-20', 'daichi1015', '2014-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS492885610084', '黎睿', 0, '+86 197-9831-2575', 2, '948172431181729524', 'No.37 building, 235 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1993-11-23', 0, 0, 'liru9', '2000-08-06', 'ruili', '2006-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS720488932041', '鈴木湊', 0, '+1 838-332-7745', 1, '036016171191536952', '307 Lark Street Apartment 9, Albany, NY 12210, United States', '1990-11-25', 0, 0, 'minato2', '2014-04-16', 'minatosuzuki', '2008-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS812441312755', '餘家輝', 0, '+81 90-3468-4941', 2, '537230161527210154', '25F, 1-1-16 Deshiro, Nishinari Ward, Osaka, Japan', '1996-01-03', 0, 0, 'kafai713', '2005-05-28', 'kafaiyu', '2021-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS425304629164', '工藤凛', 0, '+86 132-0241-9295', 1, '739674432837669890', '中国深圳龙岗区学园一巷246号41号楼', '1986-11-19', 0, 0, 'rink', '2010-07-10', 'rink', '2006-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS324693240075', '中山聖子', 0, '+81 80-9893-9250', 0, '467122971535059118', '日本おおさかし西成区出城一丁目1番4号46階', '1996-09-23', 0, 0, 'nakayamas', '2018-09-10', 'nakaseik', '2000-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS732486867708', '柴田光', 1, '+86 160-9894-6874', 0, '968437972600019830', 'Room 46, 223 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1997-09-10', 0, 0, 'hikarushiba', '2004-01-30', 'hikash', '2012-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS398968887340', 'Dawn Wagner', 0, '+86 10-116-5942', 3, '693063793610655015', 'Room 14, CR Building, 3 68 Qinghe Middle St, Haidian District, Beijing, China', '1986-12-22', 0, 0, 'wagnedawn', '2001-12-22', 'wagnerdawn', '2011-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS457664938474', '呂慧珊', 0, '+1 213-483-8009', 4, '909749417677844047', '170 Grape Street Apt 12, Los Angeles, CA 90002, United States', '1989-04-18', 0, 0, 'wslui', '2015-04-23', 'waisan19', '2000-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS773130869991', '後藤架純', 1, '+81 70-1316-0704', 2, '538727807657371968', '42-kai, 1-1-12 Deshiro, Nishinari Ward, Osaka, Japan', '1991-12-30', 0, 0, 'gotok', '2009-01-15', 'gotoka', '2016-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS001491512135', '房志明', 0, '+86 10-312-9558', 1, '757997082308795736', '中国北京市延庆区028县道626号23号楼', '1985-04-30', 0, 0, 'fcm', '2020-06-05', 'fongchiming', '2001-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS943690773445', '崔力申', 0, '+1 614-383-4131', 3, '025946010193018570', '670 Tremont Road Apt 35, Columbus, GA 43212, United States', '1992-12-25', 0, 0, 'choiliksu1953', '2003-08-11', 'lschoi', '2020-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS979788477227', '蔡璐', 1, '+81 90-6702-3099', 3, '611812707639837487', '9-kai, 4-9-20 Kamihigashi, Hirano Ward, Osaka, Japan', '1992-04-20', 0, 0, 'cailu', '2017-12-10', 'cai122', '2009-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS211000589433', 'Danny Moore', 1, '+81 70-0472-4046', 4, '104408117410132091', '2F, 5-2-14 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1989-05-15', 0, 0, 'damoo1959', '2005-05-31', 'moored6', '2006-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS905408675535', '佐々木美緒', 0, '+81 66-231-3469', 3, '657421021692639255', '27F, 2-1-18 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1990-05-23', 0, 0, 'misasa', '2000-08-17', 'sasakmio', '2012-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS385265753063', '石川詩乃', 1, '+81 90-8038-0240', 4, '088456333586811128', '日本おおさかし平野区加美東四丁目9番15号2階', '1996-12-20', 0, 0, 'shino4', '2003-04-20', 'ishikawas1955', '2000-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS998698354461', 'Joshua Soto', 1, '+86 28-571-6304', 2, '656412241143342473', 'Room 38, 418 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1989-01-05', 0, 0, 'jossot', '2004-09-21', 'soto1118', '2005-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS732014015723', '山下舞', 1, '+86 168-2647-3729', 1, '233557519681718789', '20F, 105 Xiaoping E Rd, Baiyun , Guangzhou, China', '1985-03-13', 0, 0, 'myam', '2012-07-20', 'yamashitama', '2000-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS955787608577', '後藤百花', 1, '+86 760-8330-6602', 3, '615357777942549966', '4F, 932 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1988-04-26', 0, 0, 'momokag', '2002-04-07', 'goto72', '2006-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS372560479019', '島田瑛太', 1, '+81 70-2905-2283', 0, '122935020325004646', '40-kai, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1990-12-29', 0, 0, 'es604', '2016-06-15', 'se1996', '2018-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS564284259552', 'Aaron Gardner', 1, '+81 66-597-4014', 3, '202456259820389477', '日本おおさかし平野区加美東四丁目9番12号44号室', '1993-09-29', 0, 0, 'aarongardner', '2000-06-15', 'gardner58', '2008-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS417733398583', '山口大地', 1, '+44 5419 932456', 2, '618504903834610536', 'No.3 Main building, 577 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1995-12-23', 0, 0, 'yamaguchidaichi', '2015-03-02', 'daichiyama', '2020-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS893260578414', 'Herbert Hunt', 1, '+86 153-5110-3822', 2, '885067318972247054', 'No.49 building, 406 Dongtai 5th St, Dongguan, China', '1997-08-03', 0, 0, 'herbhunt', '2022-01-07', 'herberthunt9', '2013-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS439893245132', '市川光莉', 0, '+81 70-1866-2609', 0, '854188734539622960', 'Rm. 7, 3-19-5 Shimizu, Kita Ward, Nagoya, Japan', '1992-08-27', 0, 0, 'hikichi', '2012-03-20', 'ichikawahikar609', '2001-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS824288426998', 'Bruce Holmes', 1, '+86 769-1938-7897', 4, '422943542160928779', 'Room 3, 765 Dongtai 5th St, Dongguan, China', '1985-10-17', 0, 0, 'brhol17', '2012-04-24', 'bruceho', '2019-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS567561364304', '郭明', 0, '+81 66-254-4367', 3, '447130107425404931', '日本おおさかし平野区加美東四丁目9番4号49階', '1995-08-23', 0, 0, 'kmi5', '2019-03-22', 'mkwok', '2017-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS428935256343', '遠藤陽太', 1, '+1 614-998-6099', 1, '375842366407261361', '527 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1987-11-24', 0, 0, 'endyota', '2015-10-07', 'yota41', '2018-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS716782933342', '大野美羽', 0, '+1 614-212-9876', 1, '660690898284060456', '730 Tremont Road Suite 25, Columbus, GA 43212, United States', '1995-11-06', 0, 0, 'miuono', '2020-07-04', 'onmiu', '2020-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS811485327454', '向曉彤', 1, '+86 152-6868-2132', 2, '884247626824149631', '中国成都市成华区双庆路898号13室', '1989-01-23', 0, 0, 'heunghiutung', '2020-08-15', 'heung1120', '2012-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS209898777297', 'Tony Kennedy', 0, '+86 20-2141-6184', 2, '364346271346258960', '20F, 366 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1996-05-31', 0, 0, 'kennedyto2', '2000-04-12', 'tokennedy9', '2001-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS426078641027', '陳秀文', 0, '+1 718-003-2536', 3, '298658303901339248', '887 Bergen St Apt 2, Brooklyn, NY 11217, United States', '1996-04-01', 0, 0, 'saumanchan10', '2017-12-10', 'chansauman', '2006-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS767283869296', '黄岚', 1, '+44 7824 656069', 1, '274927608239498337', 'No.40 Main building, 4 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1992-08-02', 0, 0, 'hul86', '2009-12-11', 'lh711', '2012-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS492972523730', 'Crystal Grant', 1, '+44 (161) 996 6368', 3, '914565709919941714', 'Block 16, 192 Portland St, Manchester, M1 3LA, United Kingdom', '1997-04-12', 0, 0, 'cgr', '2011-08-19', 'cgrant', '2007-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS645132470522', '松井陽太', 1, '+86 10-7572-5308', 4, '143792974476124473', '中国北京市西城区复兴门内大街315号40楼', '1994-12-21', 0, 0, 'matsuiyota', '2002-07-09', 'matsyota1991', '2012-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS202175531177', '戴心穎', 1, '+81 66-641-9754', 2, '987831347458467223', '日本おおさかし東住吉区東田辺三丁目27番8号7階', '1995-10-19', 0, 0, 'sumwing3', '2012-02-28', 'daisw8', '2004-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS363364973550', '應安娜', 1, '+1 213-458-5271', 3, '808993345370235872', '511 S Broadway Apartment 1, Los Angeles, CA 90015, United States', '1997-12-18', 0, 0, 'ony', '2004-12-16', 'onnaying', '2012-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS785041048108', '胡岚', 1, '+81 66-629-8559', 3, '602572984772646024', '日本おおさかし東住吉区東田辺三丁目27番2号40階', '1988-07-19', 0, 0, 'lahu418', '2004-12-02', 'hu904', '2003-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS416706065405', '薛璐', 0, '+86 174-9269-6549', 3, '684058980684461110', '24F, 345 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1995-03-07', 0, 0, 'lxu', '2018-08-26', 'xue2', '2014-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS972534833387', '雷詩涵', 0, '+44 7426 353048', 4, '700032282286587665', 'Block 23, 156 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1997-04-22', 0, 0, 'leishi91', '2001-07-13', 'lei430', '2020-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS973049230374', '唐安琪', 0, '+81 3-1192-7258', 3, '452674383083111651', '40F, 2-3-14 Yoyogi, Shibuya-ku, Tokyo, Japan', '1995-12-10', 0, 0, 'tanganqi', '2020-08-01', 'anqit6', '2015-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS952638756338', '尹子韬', 0, '+81 3-3442-9853', 1, '956913782414616934', '日本東京港区東新橋一丁目5番18号13号室', '1994-07-30', 0, 0, 'yizit', '2019-06-07', 'yinzita1940', '2002-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS996226503117', 'Norman Stevens', 1, '+44 7702 505690', 2, '045800627253064413', 'Unit 20, Oxford Eco Centre, 376 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-04-03', 0, 0, 'stevens77', '2007-02-18', 'stevenorm319', '2010-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS080391971134', 'Gary Daniels', 0, '+1 838-517-3369', 2, '821347589067719845', '436 Lark Street Apartment 7, Albany, NY 12210, United States', '1997-01-02', 0, 0, 'gary57', '2007-12-23', 'gary1015', '2009-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS425766068039', '周頴思', 1, '+81 80-9634-0931', 1, '624539842988240014', '日本東京中央区銀座三丁目12番7号31階', '1989-09-27', 0, 0, 'chowwingsze', '2004-07-22', 'wingchow2', '2009-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS658368177831', '侯秀英', 0, '+81 80-5855-5933', 2, '587693183124702959', '日本札幌白石区菊水三条五丁目2番6号10階', '1995-02-10', 0, 0, 'xiuyinghou', '2012-04-26', 'xihou', '2003-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS532010083835', 'Christina Cooper', 1, '+44 5164 979931', 1, '618581631205543263', 'No.44 Main building, 705 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1988-04-27', 0, 0, 'cchristina', '2017-12-15', 'christinacoope4', '2004-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS457081656670', '餘詩君', 0, '+86 144-7828-6381', 2, '809449932778637972', 'No.9 building, 356 Jiangnan West Road, Haizhu District, Guangzhou, China', '1992-04-10', 0, 0, 'yusk', '2017-10-13', 'sky', '2012-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS369757128206', '鈴木大地', 0, '+1 212-989-6856', 1, '854443589633631118', '323 Fifth Avenue Suite 10, New York, NY 10017, United States', '1991-10-26', 0, 0, 'daichisuzu', '2018-05-29', 'suzuki5', '2007-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS411601961743', '張頴璇', 1, '+44 (1223) 07 1138', 2, '468606215914261766', 'No.16 Main building, 851 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1988-12-17', 0, 0, 'cheungws512', '2004-08-26', 'wsche84', '2020-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS777033599178', 'Edwin Gonzales', 1, '+86 10-0393-4859', 4, '010224734019368208', 'No.15 building, 567 Sanlitun Road, Chaoyang District, Beijing, China', '1997-04-30', 0, 0, 'gonzalesedw9', '2004-03-30', 'edwgonzales', '2012-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS596135389934', 'Donna Grant', 0, '+86 20-652-3055', 2, '629724170922624287', '中国广州市天河区天河路355号49楼', '1988-12-13', 0, 0, 'donng', '2011-08-13', 'donnag', '2006-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS859501634842', 'Frederick Davis', 1, '+44 5921 207560', 2, '845215275548377589', 'No.16 Main building, 160 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1998-09-12', 0, 0, 'davfrederick5', '2006-01-08', 'frederickdavis', '2012-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS318570054156', '梁璐', 0, '+81 90-6982-6743', 3, '075986391578427917', '日本ならし大和郡山市本庄町一丁目1番14号25階', '1990-01-21', 0, 0, 'liang7', '2002-11-01', 'lu91', '2014-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS479331074636', '張明', 1, '+81 70-6127-1750', 1, '577740845925777375', 'Rm. 17, 3-15-9 Ginza, Chuo-ku, Tokyo, Japan', '1995-11-02', 0, 0, 'cheuming', '2022-01-30', 'cming330', '2013-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS914486065735', '錢家明', 1, '+86 183-7618-0251', 2, '620165848357312994', '中国北京市西城区西長安街828号18室', '1991-06-25', 0, 0, 'chkaming', '2015-08-17', 'kmchi', '2000-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS145893957437', '陆詩涵', 0, '+1 838-852-5334', 3, '069395309865072517', '371 Central Avenue Apt 8, Albany, NY 12206, United States', '1988-05-29', 0, 0, 'lus8', '2019-10-06', 'lu6', '2012-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS127388830810', 'Elaine Diaz', 0, '+1 614-317-0419', 1, '265589475886630470', '923 Tremont Road Apt 5, Columbus, GA 43212, United States', '1994-06-13', 0, 0, 'diaelaine', '2010-12-05', 'diaz724', '2009-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS612537285750', '伍心穎', 0, '+44 5135 131649', 2, '159042183486519972', 'No.12 Main building, 738 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1987-10-14', 0, 0, 'sumwingng', '2012-01-17', 'ngsw', '2017-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS377716519168', '鐘慧嫻', 1, '+44 7513 025452', 3, '343508933029799358', 'Block 40, 578 Sackville St, Manchester, M1 3BB, United Kingdom', '1994-01-03', 0, 0, 'waihanc', '2003-05-08', 'waichung1991', '2001-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS562141342393', 'Rita Ferguson', 0, '+44 7814 553931', 2, '044920559417228935', 'Unit 37, Oxford Eco Centre, 197 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1996-09-18', 0, 0, 'rita1983', '2020-11-27', 'ritafe8', '2016-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS870421179407', '原田涼太', 0, '+86 21-8740-1307', 3, '715845951187141503', 'No.49 building, 884 Middle Huaihai Road, Huangpu District, Shanghai, China', '1986-08-16', 0, 0, 'ryoh', '2013-01-05', 'ryota12', '2003-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS049743385049', '赵安琪', 1, '+86 153-0182-8800', 4, '532891137828498681', '中国北京市西城区复兴门内大街692号10号楼', '1993-08-17', 0, 0, 'anqi1123', '2005-04-23', 'azh', '2008-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS195800340472', 'Willie Torres', 1, '+1 718-104-3894', 2, '958752275276862382', '568 Columbia St Apartment 45, Brooklyn, NY 11231, United States', '1996-12-24', 0, 0, 'willietorr', '2015-10-13', 'wtorres', '2007-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS477306469006', '江子异', 0, '+44 (151) 470 2602', 0, '870231842935933147', 'No.36 Main building, 671 Hanover St, Liverpool, L1 4AF, United Kingdom', '1987-12-27', 0, 0, 'ziyi76', '2016-06-10', 'ziyijiang', '2015-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS578479210174', '李睿', 1, '+1 213-551-5416', 1, '679578769678170454', '348 S Broadway Suite 22, Los Angeles, CA 90015, United States', '1993-09-30', 0, 0, 'lir1989', '2006-11-01', 'rl74', '2017-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS965995474918', '石川優奈', 1, '+86 28-566-5346', 2, '254573048552312814', 'Room 14, 532 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1988-08-30', 0, 0, 'iy716', '2001-11-14', 'ishikaway', '2017-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS019768605407', '梁永權', 1, '+81 11-900-2497', 4, '506865523593918374', '日本札幌豊平区豊平三条十三丁目3番16号18階', '1992-04-24', 0, 0, 'wkleu8', '2014-05-02', 'wkleu', '2018-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS534580518108', '马震南', 0, '+44 7874 101452', 3, '967926201467601390', 'Flat 27, 681 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1993-09-10', 0, 0, 'ma10', '2002-04-04', 'mazhennan', '2016-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS895435566435', '麥梓晴', 0, '+86 167-8024-4723', 1, '533717732991685112', 'Room 13, No.929, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-09-26', 0, 0, 'tszchingmak1209', '2006-07-23', 'tcm1982', '2019-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS177222642208', 'Virginia Jones', 1, '+81 90-7663-5811', 3, '764913301819669842', '日本なごやし熱田区千年二丁目5番5号14号室', '1998-05-27', 0, 0, 'virjones', '2011-06-12', 'jovirginia', '2002-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS664152495222', '傅震南', 1, '+86 769-554-6438', 3, '184208894082199586', '中国东莞东泰五街539号2号楼', '1986-08-20', 0, 0, 'zhf1972', '2021-04-17', 'zhennanfu', '2006-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS601272072001', 'Dennis Parker', 1, '+44 5670 003139', 4, '758408378724964423', 'Unit 1, Oxford Eco Centre, 814 Hanover St, Liverpool, L1 4AF, United Kingdom', '1993-07-28', 0, 0, 'dennisparker', '2007-08-21', 'parker1959', '2003-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS059824649705', '余子异', 0, '+86 21-743-3262', 2, '028278562649268722', 'No.42 building, 424 Middle Huaihai Road, Huangpu District, Shanghai, China', '1985-06-04', 0, 0, 'yu8', '2002-01-07', 'yuzi1213', '2019-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS105249710389', '邵天樂', 1, '+81 90-7282-2748', 2, '145214242363180679', '日本なごやし北区清水三丁目19番12号41階', '1995-12-10', 0, 0, 'siutl', '2002-02-13', 'siutinlok', '2020-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS298643407083', '岡田美咲', 1, '+1 213-120-3033', 4, '378150504163803873', '862 Sky Way Apt 41, Los Angeles, CA 90043, United States', '1994-01-05', 0, 0, 'misaok', '2004-04-04', 'mokada108', '2017-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS240745684992', '姜杰倫', 1, '+81 11-955-2387', 4, '103287743769102166', '日本札幌厚別区上野幌一条二丁目1番7号47階', '1990-03-23', 0, 0, 'chang9', '2002-04-04', 'changchiehlun6', '2007-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS845546859914', 'Mark Harrison', 1, '+81 80-5162-2459', 2, '316323041155981387', '18-kai, 1-7-3 Saidaiji Akodacho, Nara, Japan', '1990-02-19', 0, 0, 'mh4', '2012-10-27', 'markharrison1965', '2018-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS056541762960', '曾仲賢', 1, '+86 21-6846-6646', 4, '919590107349814883', 'No.16 building, 893 Binchuan Rd, Minhang District, Shanghai, China', '1991-01-02', 0, 0, 'cytsang', '2012-06-16', 'tsch', '2021-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS493670027142', 'Alan Jackson', 1, '+44 7466 654772', 1, '614402083177107535', 'No.9 Main building, 210 Pollen Street, London, W1S 1NG, United Kingdom', '1993-04-14', 0, 0, 'jacksonal', '2015-04-20', 'alanjackson', '2012-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS555377241603', '孙璐', 0, '+86 20-104-5814', 0, '031977951214549370', '中国广州市白云区小坪东路57号华润大厦10室', '1998-02-19', 0, 0, 'sun1209', '2021-07-21', 'lus', '2000-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS726134114423', '龚嘉伦', 1, '+81 80-2309-9499', 4, '501411614308145193', '日本東京港区東新橋一丁目5番15号6号室', '1991-06-26', 0, 0, 'gong97', '2007-06-19', 'gongjialun', '2011-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS691897302375', '毛璐', 1, '+1 312-182-5858', 1, '719734450292655440', '518 Pedway Apartment 27, Chicago, IL 60601, United States', '1998-03-27', 0, 0, 'lu7', '2007-07-08', 'lu47', '2008-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS963038226051', 'Willie Freeman', 0, '+1 838-669-0918', 1, '005246162625191632', '585 State Street Suite 15, Albany, NY 12203, United States', '1990-05-17', 0, 0, 'freemanwillie', '2016-06-27', 'freeman1128', '2019-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS646741084737', '桜井架純', 0, '+81 90-0125-6865', 2, '999021041314638735', '日本東京渋谷区代々木二丁目3番2号27階', '1995-03-18', 0, 0, 'kasakurai7', '2010-03-06', 'saka', '2002-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS814557939060', 'Jose Adams', 0, '+44 (116) 599 7800', 2, '390641069674314293', 'No.45 Main building, 772 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1986-01-30', 0, 0, 'ajo726', '2009-07-30', 'adamsjose5', '2006-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS295578429997', 'Joel Munoz', 0, '+1 213-970-0080', 1, '573307569340981371', '27 Sky Way Apartment 7, Los Angeles, CA 90043, United States', '1989-04-04', 0, 0, 'jm7', '2000-09-22', 'joelmun', '2015-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS735403570955', '佘慧嫻', 1, '+81 52-138-1157', 3, '332207530951505636', 'Rm. 28, 2-5-18 Chitose, Atsuta Ward, Nagoya, Japan', '1998-06-11', 0, 0, 'shewh', '2014-04-20', 'shehwaihan', '2005-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS941763761340', 'Josephine Ruiz', 1, '+81 74-374-4965', 3, '220217943011580834', 'Rm. 19, 1-7-20 Saidaiji Akodacho, Nara, Japan', '1988-12-17', 0, 0, 'ruizjosephine3', '2003-06-29', 'rujosephine', '2019-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS719737077555', '楊永權', 0, '+86 28-589-4618', 3, '833463417635699254', 'No.30 building, 198 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1986-07-01', 0, 0, 'wky7', '2013-06-27', 'yewingkuen', '2021-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS889526085672', '阿部陸', 1, '+81 70-2754-1309', 2, '449352944941291608', '3-kai, 2 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1990-05-26', 0, 0, 'ariku', '2004-08-28', 'aberiku', '2014-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS338044287474', 'Henry Stephens', 1, '+86 21-1410-7937', 2, '691121146318448784', 'No.22 building, 85 Binchuan Rd, Minhang District, Shanghai, China', '1994-03-12', 0, 0, 'sh414', '2011-11-14', 'stephens9', '2005-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS037708975963', 'Nicholas Ortiz', 0, '+81 74-432-1029', 0, '384239995665337213', '22-kai, 1-7-18 Saidaiji Akodacho, Nara, Japan', '1998-10-03', 0, 0, 'nicholasort', '2020-12-03', 'ortiz8', '2020-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS373474079017', '井上紗良', 1, '+1 838-216-7326', 1, '196990765406773745', '772 Lark Street Suite 8, Albany, NY 12210, United States', '1996-06-19', 0, 0, 'sara115', '2000-12-18', 'is1955', '2012-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS626600453674', '斉藤百花', 0, '+44 (121) 446 5864', 3, '335758868009474713', 'Flat 1, 859 New Street, Birmingham, B2 4DB, United Kingdom', '1986-05-11', 0, 0, 'momokasait', '2015-07-22', 'smomoka73', '2014-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS919481572710', '尹晓明', 0, '+86 132-0822-9824', 1, '504432643376653674', '中国中山紫马岭商圈中山五路486号华润大厦4室', '1985-04-15', 0, 0, 'yinxiaoming13', '2020-03-01', 'yix', '2002-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS899317316937', '袁震南', 1, '+81 3-9088-4893', 2, '925991692753709008', '日本東京中央区銀座三丁目12番14号39階', '1993-07-29', 0, 0, 'zhennyua8', '2001-10-20', 'zhenyua', '2005-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS474101520966', '林翼', 1, '+86 187-0398-5306', 2, '375727497614959143', 'Room 43, 206 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1986-05-28', 0, 0, 'hayashi1208', '2006-01-11', 'hayashits', '2003-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS483329021793', '千葉瑛太', 1, '+1 614-971-2308', 4, '018148255309498873', '318 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1996-08-21', 0, 0, 'eitachi4', '2003-05-20', 'eitach1026', '2003-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS419089038984', 'Luis Barnes', 0, '+86 175-6723-9059', 1, '887563283030795353', '中国中山天河区大信商圈大信南路874号38号楼', '1997-01-13', 0, 0, 'barneluis2', '2015-09-01', 'luisb', '2013-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS130369651712', 'Amber Scott', 1, '+81 66-112-5986', 3, '596240717438918809', '45F, 3-27-13 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1991-08-01', 0, 0, 'amberscott', '2012-11-23', 'ascott', '2007-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS381990463654', '河野和真', 1, '+81 52-405-0427', 3, '768481562525576914', '日本なごやし瑞穂区河岸町四丁目20番2号25階', '1991-03-05', 0, 0, 'kk8', '2012-02-18', 'kono719', '2004-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS870250594679', '遠藤百花', 1, '+44 (151) 155 1536', 2, '489627453847873822', 'Unit 40, Oxford Eco Centre, 918 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1989-06-08', 0, 0, 'endomo', '2006-02-10', 'momoke515', '2000-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS819354864575', '孫梓軒', 0, '+44 (116) 415 3530', 1, '901819143133502548', 'Flat 17, 40 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1986-02-16', 0, 0, 'thhsua', '2001-11-08', 'tszhinhs', '2011-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS077293760447', '姚國賢', 1, '+1 330-986-4109', 1, '109510457669132556', '497 Ridgewood Road Apartment 4, Akron, OH 44321, United States', '1992-09-23', 0, 0, 'kwokyinyeow9', '2006-11-20', 'kwokyinyeow', '2002-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS794898541980', '田中詩乃', 1, '+81 80-1245-7524', 1, '257053603743743145', '日本ならし西大寺赤田町一丁目7番5号8階', '1996-04-10', 0, 0, 'tshino2', '2016-06-09', 'tashino', '2010-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS115512813252', '野村桜', 0, '+1 838-885-5547', 2, '268184404385328515', '884 Central Avenue Apartment 42, Albany, NY 12205, United States', '1993-03-04', 0, 0, 'nomuras4', '2012-06-06', 'nsa', '2018-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS106146454761', '新井美月', 1, '+44 (151) 786 0053', 1, '728301100462211516', 'No.48 Main building, 796 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1997-06-30', 0, 0, 'mitsuki99', '2020-04-19', 'mitsa', '2012-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS396442021283', 'Kyle Mendez', 1, '+86 20-156-4859', 1, '503351198678608600', '32F, 712 Xiaoping E Rd, Baiyun , Guangzhou, China', '1995-03-19', 0, 0, 'mendez2007', '2019-11-20', 'kylemen2', '2007-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS085082661550', '蔡祖兒', 0, '+81 3-8627-5346', 1, '018649210860035548', '21-kai, 3-15-18 Ginza, Chuo-ku, Tokyo, Japan', '1997-01-22', 0, 0, 'choichoyee', '2004-10-26', 'choichoyee', '2013-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS210232775804', '溫學友', 1, '+81 90-7237-1272', 1, '042556056204404948', '日本ならし西大寺赤田町一丁目7番9号8階', '1998-06-20', 0, 0, 'wanhy525', '2018-08-02', 'hokyauwan', '2001-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS563875011574', '阿部結翔', 0, '+86 769-1163-8894', 2, '673272571520595708', 'No.18 building, 420 Kengmei 15th Alley, Dongguan, China', '1990-06-01', 0, 0, 'ay708', '2018-09-17', 'yuitoabe', '2012-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS424114040193', '田心穎', 1, '+86 21-202-1334', 0, '646820791926212114', 'No.19 building, 788 Middle Huaihai Road, Huangpu District, Shanghai, China', '1988-05-06', 0, 0, 'tin92', '2000-03-12', 'sumwing711', '2015-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS998171163972', 'Diana Guzman', 0, '+44 7268 671056', 2, '590379535620294696', 'No.41 Main building, 774 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1989-10-01', 0, 0, 'dianguzman77', '2011-07-06', 'diag', '2016-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS265305803626', 'Cynthia King', 0, '+1 614-131-5424', 2, '878496133454212733', '965 Diplomacy Drive Apartment 34, Columbus, GA 43228, United States', '1987-08-13', 0, 0, 'kingc88', '2003-10-07', 'kingcynth', '2009-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS984625293663', '袁曉彤', 1, '+86 10-4645-5117', 4, '288884218112208537', '中国北京市东城区东单王府井东街201号39室', '1998-11-19', 0, 0, 'htyuen', '2007-04-24', 'yuehiutung128', '2004-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS001344013384', 'Jesus Kim', 1, '+86 10-2012-8089', 4, '057862369052651933', '43F, 650 028 County Rd, Yanqing District, Beijing, China', '1989-06-22', 0, 0, 'kj2012', '2003-08-11', 'jesuskim10', '2017-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS387427209546', '斉藤葵', 1, '+44 7971 148378', 3, '016311995515853103', 'No.41 Main building, 234 Redfern St, Liverpool, L20 8JB, United Kingdom', '1994-02-20', 0, 0, 'aos', '2005-09-29', 'asa', '2018-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS068565979060', '曹嘉伦', 1, '+86 10-743-2460', 2, '312908328929444324', 'Room 42, CR Building, 760 FuXingMenNei Street, XiCheng District, Beijing, China', '1996-04-15', 0, 0, 'jialunca7', '2003-03-11', 'caojialun', '2018-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS423282915557', '向梓晴', 1, '+86 755-5773-4405', 4, '674541338361292322', '中国深圳罗湖区田贝一路878号华润大厦23室', '1995-04-01', 0, 0, 'tch', '2006-06-20', 'heungtszching', '2007-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS140981180835', 'Brian Rodriguez', 0, '+86 21-5728-5463', 1, '580630337936332949', '中国上海市闵行区宾川路891号39栋', '1996-06-23', 0, 0, 'brianrod1', '2020-07-16', 'rodriguezbrian', '2020-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS315090552987', '藤原絢斗', 1, '+1 614-153-5733', 3, '007984223194721448', '936 Tremont Road Suite 10, Columbus, GA 43212, United States', '1986-09-24', 0, 0, 'fujiwaraaya705', '2001-02-08', 'afuji819', '2010-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS736691581540', '严晓明', 0, '+1 838-720-5606', 1, '705381271521699511', '832 Broadway 3rd Floor, Albany, NY 12207, United States', '1990-09-24', 0, 0, 'yxiao603', '2019-02-15', 'yanxiaoming', '2000-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS574161206131', 'Chris Sanders', 0, '+86 20-1808-2155', 0, '027966256267520336', 'Room 44, 437 Tianhe Road, Tianhe District, Guangzhou, China', '1993-06-07', 0, 0, 'chsan', '2010-06-27', 'sandec', '2021-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS534115736597', 'Anna Webb', 1, '+44 7398 010074', 0, '766991360759658689', 'Unit 3, Oxford Eco Centre, 609 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-04-19', 0, 0, 'wanna', '2017-01-20', 'webbanna', '2015-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS821050874211', 'Amy Hawkins', 0, '+44 (1223) 51 2404', 3, '471283057491568468', 'Block 35, 54 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1986-12-02', 0, 0, 'hamy', '2011-06-22', 'amhawkins66', '2000-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS956636073763', '程安琪', 1, '+44 (1865) 48 5475', 3, '445937778596755442', 'Unit 26, Oxford Eco Centre, 877 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1985-04-09', 0, 0, 'anqic', '2002-11-07', 'cheng711', '2020-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS528236574872', 'Pamela Lopez', 1, '+44 (1223) 22 0549', 1, '187942762766018349', 'Block 7, 858 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1988-08-11', 0, 0, 'lopezpam9', '2020-11-16', 'lop', '2013-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS076233037432', '毛惠妹', 0, '+44 5948 289808', 0, '920585608804649211', 'Flat 34, 778 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1989-02-16', 0, 0, 'mohm', '2010-08-09', 'huimei56', '2012-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS895597562509', '唐云熙', 0, '+86 20-5021-9877', 1, '994147248145925941', 'No.46 building, 745 Xiaoping E Rd, Baiyun , Guangzhou, China', '1992-06-22', 0, 0, 'tangyunxi', '2020-11-22', 'yunxitang127', '2017-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS247965682063', '龚詩涵', 0, '+86 10-259-4968', 2, '153683285594286739', 'Room 23, 221 Yueliu Rd, Fangshan District, Beijing, China', '1992-01-27', 0, 0, 'gs4', '2001-11-17', 'gonshihan', '2007-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS542377550248', '钟杰宏', 1, '+81 11-112-8137', 2, '393463999920839130', '29F, 13-3-7 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1990-12-12', 0, 0, 'zhjieho7', '2018-10-29', 'zhonjieho1971', '2008-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS541449773343', 'Michelle Carter', 1, '+81 11-041-9716', 4, '963740791491888399', '日本札幌白石区菊水三条五丁目2番3号46階', '1995-09-14', 0, 0, 'cartemic', '2008-03-07', 'mcarter816', '2012-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS123467435677', '小島百恵', 0, '+86 197-3904-9333', 3, '164061185685892647', '中国成都市成华区二仙桥东三路122号32号楼', '1999-02-08', 0, 0, 'momok208', '2000-05-20', 'momkojim', '2011-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS504234386972', '安藤彩乃', 1, '+86 760-0671-5126', 3, '818007829199702460', 'No.33 building, 118 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1988-01-27', 0, 0, 'andayano1993', '2001-07-26', 'ando10', '2020-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS177116431049', '赵云熙', 1, '+86 191-9251-7495', 0, '878097152536206332', '19F, 197 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1992-12-13', 0, 0, 'yzhao', '2005-12-16', 'yuzha329', '2021-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS099291349136', '鄺俊宇', 0, '+1 838-847-7925', 0, '451363779709085684', '363 Lark Street Suite 32, Albany, NY 12210, United States', '1994-10-11', 0, 0, 'kwong1976', '2007-12-28', 'kwoncy', '2001-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS060625258005', '黎詩涵', 0, '+81 3-3814-1418', 3, '220632326950428146', '日本東京千代田区丸の内一丁目6番11号40号室', '1996-11-14', 0, 0, 'shihanli108', '2018-09-29', 'lishiha', '2018-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS291285937069', '徐嘉欣', 1, '+81 80-2770-3291', 3, '641494543572409491', '39F, 2-1-9 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1988-12-13', 0, 0, 'tsuikaryan', '2010-05-27', 'kytsui4', '2009-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS607193615593', '韩宇宁', 0, '+86 133-5071-5853', 4, '624878427528648865', '中国北京市房山区岳琉路108号44栋', '1986-10-24', 0, 0, 'hanyuning129', '2004-12-08', 'hanyunin', '2001-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS454880756485', 'Carol Marshall', 1, '+81 11-493-0960', 3, '006385214731879558', '日本札幌清田区真栄四条五丁目19番10号15号室', '1991-03-23', 0, 0, 'marshall1979', '2016-03-26', 'marshcarol9', '2013-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS998920467805', '鈴木優奈', 0, '+81 52-289-9683', 1, '821017672177519043', '日本なごやし熱田区千年二丁目5番1号25号室', '1985-12-02', 0, 0, 'suzukiyu', '2007-04-25', 'suzuki4', '2018-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS557960078408', 'Harold Barnes', 0, '+81 52-483-8814', 3, '447610856384863974', '日本なごやし北区楠味鋺三丁目80番1号10階', '1992-12-01', 0, 0, 'haroldbarnes', '2006-06-02', 'bharold8', '2010-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS552395171365', 'Annie Hughes', 0, '+81 90-9071-1266', 1, '168123843490271293', '日本東京品川区東五反田五丁目2番13号28号室', '1995-05-11', 0, 0, 'annie2020', '2016-08-20', 'anniehughes', '2016-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS772640909309', '張家文', 0, '+81 66-814-0734', 1, '019429163690786293', '日本おおさかし西成区出城一丁目1番17号50号室', '1998-03-26', 0, 0, 'kmche', '2018-02-24', 'kmcheung', '2011-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS030932900997', 'Brenda Mills', 0, '+86 10-1445-6223', 3, '049349171128363189', '中国北京市延庆区028县道903号9号楼', '1992-07-29', 0, 0, 'brmill', '2007-07-03', 'millsbrenda', '2011-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS757283907519', 'Mildred Evans', 0, '+44 (161) 668 5329', 3, '647758030432862219', 'No.13 Main building, 446 Sackville St, Manchester, M1 3BB, United Kingdom', '1995-09-14', 0, 0, 'mildred211', '2011-11-23', 'evam', '2015-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS632334014398', '呂青雲', 1, '+81 66-850-4472', 2, '874786863649841786', 'Rm. 6, 2-1-7 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1987-11-20', 0, 0, 'cwlui06', '2021-08-14', 'luicw202', '2002-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS884035848090', 'Kathryn Coleman', 0, '+44 5843 392836', 2, '423851443790380384', 'Unit 17, Oxford Eco Centre, 785 Park End St, Oxford, OX1 1JD, United Kingdom', '1986-06-26', 0, 0, 'kathryn4', '2020-03-27', 'colemankath17', '2005-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS180635679581', '江宇宁', 1, '+1 614-807-6736', 2, '148752018500809552', '33 East Cooke Road Apartment 23, Columbus, GA 43214, United States', '1986-07-02', 0, 0, 'jyun', '2005-05-23', 'yjiang', '2022-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS909456359637', '邓宇宁', 1, '+44 (20) 7795 4899', 4, '081694749964359870', 'Flat 6, 886 Regent Street, London, W1B 2LX, United Kingdom', '1992-11-21', 0, 0, 'yunind', '2009-03-30', 'yundeng', '2006-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS195214394264', 'Anita Moore', 0, '+81 74-161-4563', 1, '624547911351374194', '日本ならし西大寺赤田町一丁目7番4号28階', '1994-07-19', 0, 0, 'moanita228', '2002-04-16', 'moore5', '2019-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS122635587200', 'Brandon Washington', 0, '+1 718-568-4951', 0, '800855491118057366', '639 Nostrand Ave Apt 24, Brooklyn, NY 11216, United States', '1989-12-03', 0, 0, 'bwashi', '2007-08-08', 'brandonw', '2003-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS920554918217', '邵嘉伦', 1, '+44 7073 473493', 2, '279152348140584464', 'Block 17, 645 Regent Street, London, W1B 2LX, United Kingdom', '1990-10-26', 0, 0, 'shaojialun', '2000-12-05', 'shao7', '2015-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS400610788593', '野村樹', 0, '+1 718-321-1625', 2, '140253887344578098', '275 Flatbush Ave Apartment 41, Brooklyn, NY 11225, United States', '1996-05-17', 0, 0, 'itsukinomura', '2010-02-11', 'nitsuki', '2010-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS594467770726', '叶秀英', 0, '+86 140-6250-6356', 3, '786267769559123903', '中国深圳龙岗区布吉镇西环路547号3楼', '1994-05-24', 0, 0, 'xiuying224', '2012-03-22', 'xiuying16', '2000-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS528329839727', '藤田拓哉', 1, '+81 80-0614-4759', 1, '213312883300663330', '日本東京品川区東五反田五丁目2番20号26階', '1986-09-15', 0, 0, 'takuyafu77', '2008-01-07', 'takuyaf109', '2011-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS948439257204', 'Rhonda Flores', 0, '+86 198-4369-0542', 2, '857165425006716166', '中国中山京华商圈华夏街866号28室', '1995-11-28', 0, 0, 'rhondaflor2000', '2014-04-09', 'flores82', '2011-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS979829817244', '鐘慧嫻', 1, '+86 28-8879-2544', 4, '980869092787725033', '中国成都市锦江区红星路三段972号华润大厦26室', '1990-03-13', 0, 0, 'wachung', '2002-06-09', 'waihanc831', '2013-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS864108491188', 'Allen Stewart', 1, '+81 52-994-0788', 2, '333877854542525945', 'Rm. 4, 18 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1997-02-24', 0, 0, 'sallen501', '2014-04-25', 'allen9', '2008-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS016992891085', '柴田涼太', 0, '+86 191-4485-8401', 1, '788704310163521867', '中国东莞东泰五街185号45室', '1989-07-03', 0, 0, 'shibataryota', '2000-05-01', 'ryotshibata', '2012-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS452745162368', '藤田玲奈', 1, '+81 90-9634-6221', 1, '767080554577014196', '日本ならし大和郡山市本庄町一丁目1番7号20階', '1989-06-25', 0, 0, 'rena4', '2019-08-15', 'fujitarena', '2000-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS132715492744', 'Mike Mendoza', 1, '+44 7113 242054', 4, '729371789088539144', 'Unit 39, Oxford Eco Centre, 562 Regent Street, London, W1B 2LX, United Kingdom', '1995-09-30', 0, 0, 'mikem', '2014-09-14', 'mendoza1211', '2015-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS678647084901', '麥思妤', 0, '+44 7134 137050', 3, '872744566754575541', 'Block 10, 338 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1997-03-24', 0, 0, 'szeyum', '2012-12-19', 'symak06', '2015-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS502231696207', '狄國明', 0, '+86 156-1576-7029', 3, '743657409274476088', '中国北京市西城区复兴门内大街315号5号楼', '1985-05-28', 0, 0, 'ti2', '2016-11-28', 'tikm10', '2002-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS038809329312', '森田架純', 0, '+44 5918 064573', 2, '081146689712060320', 'Block 36, 318 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1995-08-08', 0, 0, 'kmorita', '2011-06-07', 'kasumimo', '2005-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS607941836002', '武子异', 1, '+86 162-2797-1459', 1, '311088743998647879', '中国上海市浦东新区橄榄路921号18室', '1990-06-11', 0, 0, 'wuz9', '2017-10-19', 'wuzi', '2002-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS359594326172', '青木大輔', 0, '+1 718-829-2439', 0, '289931701887928763', '806 Nostrand Ave Apt 32, Brooklyn, NY 11216, United States', '1985-01-03', 0, 0, 'aodaisuke', '2014-12-21', 'aoki9', '2000-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS466096323947', '陆安琪', 1, '+86 10-4358-9310', 0, '879215792680718364', 'No.19 building, 421 FuXingMenNei Street, XiCheng District, Beijing, China', '1988-08-07', 0, 0, 'luanqi', '2010-03-25', 'anqilu', '2006-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS557080082801', '吕杰宏', 0, '+81 90-9311-6179', 2, '613601592432712101', '日本札幌清田区真栄四条五丁目19番7号24階', '1986-01-25', 0, 0, 'ljiehong', '2007-07-21', 'jiehong2', '2002-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS911866413870', 'Julie Murray', 0, '+86 181-4808-8024', 3, '754976078949238513', '中国北京市西城区复兴门内大街440号49号楼', '1985-08-06', 0, 0, 'julie2003', '2003-11-29', 'murray20', '2017-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS180059598517', '傅慧琳', 1, '+1 212-537-3660', 3, '348679810305210624', '299 Fifth Avenue Apt 35, New York, NY 10017, United States', '1986-10-08', 0, 0, 'waifu5', '2011-02-02', 'wlfu', '2020-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS580400876959', '廖頴思', 1, '+1 212-756-5782', 0, '273382887606295479', '614 Canal Street Apartment 45, New York, NY 10013, United States', '1990-02-13', 0, 0, 'liaowingsze', '2021-11-29', 'liaows', '2003-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS136973631952', 'Kyle Moore', 0, '+81 11-660-7240', 2, '582709801800496459', '日本札幌清田区真栄四条五丁目19番15号3号室', '1992-02-25', 0, 0, 'km203', '2000-04-01', 'mook1030', '2004-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS177539463747', '馮小慧', 0, '+44 (20) 3071 6948', 1, '835795381627208897', 'Flat 23, 351 Maddox Street, London, W1S 1PU, United Kingdom', '1988-07-20', 0, 0, 'fungsiuwai', '2018-10-10', 'fung1109', '2015-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS826381780916', '蒋杰宏', 0, '+86 147-2199-3948', 1, '210252180004149004', '中国广州市海珠区江南西路134号13号楼', '1995-08-17', 0, 0, 'jiehongjia', '2014-01-19', 'jijiang13', '2018-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS971260132678', '伍德華', 0, '+44 5454 298335', 3, '499745031586831421', 'No.2 Main building, 917 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1993-10-07', 0, 0, 'twng6', '2016-03-21', 'ngtakwah82', '2008-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS374841176697', '元慧嫻', 0, '+1 838-249-1834', 2, '601281303828236575', '159 State Street Suite 27, Albany, NY 12203, United States', '1995-12-10', 0, 0, 'waihan1978', '2009-10-17', 'whyu', '2016-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS315654444284', 'Marie Cole', 1, '+81 3-4037-6697', 0, '552125891857548530', '日本東京千代田区丸の内一丁目6番6号26階', '1986-02-13', 0, 0, 'colema', '2011-02-03', 'cole6', '2021-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS998516674370', 'Sandra Spencer', 0, '+86 28-8688-0767', 3, '118839958993248033', '中国成都市成华区双庆路948号48栋', '1988-11-24', 0, 0, 'spencers', '2014-09-06', 'spencersan', '2007-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS714970781385', 'Aaron Simpson', 1, '+86 10-091-5089', 0, '779630333670315253', '中国北京市東城区東直門內大街229号36室', '1995-04-07', 0, 0, 'aarosimpson405', '2021-02-18', 'saaron9', '2012-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS845500676468', '馮心穎', 0, '+1 838-038-1578', 1, '665556223688989839', '326 Lark Street Apartment 37, Albany, NY 12210, United States', '1992-09-02', 0, 0, 'swfung428', '2014-09-02', 'swfung', '2012-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS016754950608', '汪云熙', 1, '+81 11-038-6874', 3, '976764571980917836', '49F, 5-2-10 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1989-09-13', 0, 0, 'wangyunxi417', '2003-09-07', 'yunxiwang', '2018-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS300035614460', '千葉瑛太', 0, '+86 769-7924-9159', 2, '925834584759037591', 'Room 48, CR Building, 779 Shanhu Rd, Dongguan, China', '1996-09-29', 0, 0, 'eita6', '2015-09-23', 'echib5', '2006-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS190961063704', '岡田結翔', 0, '+44 (151) 019 6424', 1, '293406645683189430', 'Block 13, 466 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1985-02-11', 0, 0, 'yuito715', '2017-01-19', 'yuitookad', '2000-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS601985814532', '姚嘉伦', 1, '+86 28-877-7940', 3, '871723647730141478', '中国成都市锦江区红星路三段736号24号楼', '1997-11-16', 0, 0, 'yjialun', '2008-02-14', 'jyao311', '2010-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS820004710609', '邹子异', 1, '+86 156-9072-3682', 0, '796341939277808310', '中国上海市浦东新区健祥路4号6楼', '1997-04-19', 0, 0, 'ziyi807', '2021-09-20', 'zouziyi', '2016-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS010645857337', '任秀英', 0, '+86 769-309-7056', 3, '649946991171352870', '中国东莞珊瑚路138号39栋', '1993-04-04', 0, 0, 'rxiuying', '2021-11-26', 'ren86', '2007-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS176427852875', 'Victoria Butler', 0, '+1 614-921-2475', 2, '200813448564037381', '817 East Alley Apt 39, Columbus, GA 43201, United States', '1987-01-27', 0, 0, 'butlevictoria', '2019-01-28', 'victoriabutler204', '2012-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS610928875733', '蘇裕玲', 0, '+44 5320 685683', 3, '947247106332104695', 'Flat 31, 191 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1998-10-09', 0, 0, 'syl5', '2004-06-15', 'syl', '2005-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS554481706752', '長谷川健太', 1, '+86 28-8074-9609', 4, '455600897067889496', '中国成都市成华区双庆路948号19室', '1988-06-18', 0, 0, 'hasegawa2', '2017-10-13', 'kentahaseg94', '2015-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS937344654568', '馬麗欣', 1, '+81 66-271-3275', 2, '587617005105194813', 'Rm. 2, 1-1-9 Deshiro, Nishinari Ward, Osaka, Japan', '1991-03-06', 0, 0, 'maly', '2008-12-08', 'laiyan9', '2016-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS773505909440', '山口美羽', 0, '+86 755-0833-6574', 3, '165011846812132033', '中国深圳罗湖区蔡屋围深南东路79号华润大厦30室', '1997-11-26', 0, 0, 'miyamaguchi1960', '2019-02-01', 'yamaguchi86', '2020-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS678136889997', '鄭梓晴', 0, '+81 74-556-7841', 3, '393731680049588879', 'Rm. 17, 3-9-10 Gakuenminami, Nara, Japan', '1997-10-31', 0, 0, 'tszchingc91', '2003-06-21', 'cheng10', '2019-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS266370122702', '呂家明', 0, '+81 70-1602-6113', 2, '707208765133788919', '日本東京渋谷区代々木二丁目3番20号7階', '1988-11-17', 0, 0, 'lui10', '2013-02-13', 'luikm', '2020-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS714902134738', '毛岚', 0, '+44 (151) 429 2409', 2, '248925368246269867', 'Block 36, 511 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1988-04-23', 0, 0, 'lma', '2005-08-16', 'maolan', '2004-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS851905064779', '阿部一輝', 0, '+81 74-706-6022', 2, '688665194893921810', '27F, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1988-03-12', 0, 0, 'ikkiabe', '2008-10-18', 'ikkabe', '2008-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS339695744240', '汤云熙', 1, '+86 28-3891-5189', 4, '493412641579388448', 'No.49 building, 770 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1987-07-18', 0, 0, 'yunxitang1006', '2000-08-17', 'yutang', '2006-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS713489246041', 'Cheryl Meyer', 1, '+81 3-8910-8051', 0, '649529232475166817', '日本東京渋谷区代々木二丁目3番5号33階', '1986-02-23', 0, 0, 'meyer1120', '2020-07-03', 'meyerc623', '2001-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS464969726947', '卢宇宁', 1, '+44 7640 321855', 1, '276134921903335948', 'No.50 Main building, 84 Park End St, Oxford, OX1 1JD, United Kingdom', '1998-09-24', 0, 0, 'yuning420', '2005-04-20', 'luyun12', '2012-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS227170429684', '伊藤拓哉', 1, '+81 52-394-8768', 2, '580035159043208967', '日本なごやし北区清水三丁目19番15号18階', '1998-12-11', 0, 0, 'itot56', '2003-10-24', 'itotaku730', '2008-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS691493115516', '曹惠妹', 1, '+44 (151) 955 0363', 3, '479878275631455620', 'Flat 45, 691 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1986-06-24', 0, 0, 'chohm1981', '2004-04-01', 'huimeicho', '2007-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS795290128812', '吳天榮', 1, '+86 141-0292-5724', 0, '218383309893379968', '中国广州市越秀区中山二路974号华润大厦1室', '1996-10-09', 0, 0, 'ng917', '2014-08-06', 'ngtinwing6', '2016-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS017740215589', '江嘉伦', 1, '+44 (116) 338 1442', 3, '992239524094505000', 'Flat 24, 354 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1997-12-04', 0, 0, 'jiangj503', '2010-12-15', 'jialunj', '2007-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS340129518867', '房天榮', 1, '+44 (1223) 91 5012', 1, '187075439028142652', 'No.27 Main building, 938 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1989-05-10', 0, 0, 'fongtinwing', '2012-05-25', 'fongtinwi1214', '2013-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS109853089324', '郭玲玲', 1, '+81 52-887-9261', 2, '773849442462738693', '日本なごやし瑞穂区河岸町四丁目20番3号3階', '1998-09-13', 0, 0, 'kwokll7', '2008-11-15', 'kwok4', '2017-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS921223757300', 'Esther Hernandez', 1, '+86 769-805-0089', 3, '669109159649780004', '中国东莞东泰五街987号9号楼', '1992-09-02', 0, 0, 'hernaes02', '2000-03-09', 'hernandezesther', '2017-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS920565726312', 'Lori Wilson', 0, '+86 142-3921-4517', 2, '176024087673286580', 'No.24 building, 910 Xiaoping E Rd, Baiyun , Guangzhou, China', '1998-09-18', 0, 0, 'wilsolor', '2021-01-16', 'wilson2', '2008-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS782294698665', '坂本愛梨', 1, '+86 10-7203-9392', 3, '607259056182819181', 'No.21 building, 542 68 Qinghe Middle St, Haidian District, Beijing, China', '1987-12-15', 0, 0, 'sairi', '2019-04-05', 'sakamotoai', '2000-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS483175744816', '雷杰宏', 1, '+81 66-342-2642', 3, '465573327634914621', '21-kai, 1-7-2 Omido, Higashiosaka, Osaka, Japan', '1991-03-12', 0, 0, 'jlei', '2015-11-20', 'lei4', '2007-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS224607986825', '長谷川愛梨', 1, '+1 330-929-0872', 3, '192291079624449047', '54 Collier Road Apt 13, Akron, OH 44320, United States', '1991-04-07', 0, 0, 'hairi8', '2020-11-22', 'hairi2', '2019-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS906342248098', 'Melvin Phillips', 0, '+44 (161) 488 7166', 2, '250966336360534388', 'Unit 24, Oxford Eco Centre, 480 Mosley St, Manchester, M2 3AQ, United Kingdom', '1993-02-22', 0, 0, 'phillipsmelvin', '2019-01-18', 'phillips11', '2015-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS384581280343', '何睿', 1, '+81 66-646-1706', 2, '132198823926261441', '28-kai, 1-7-20 Omido, Higashiosaka, Osaka, Japan', '1988-09-28', 0, 0, 'rhe81', '2000-04-28', 'he10', '2021-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS844033866617', 'Gregory Hill', 1, '+44 (161) 795 8861', 2, '176914191856832241', 'Block 47, 261 Sackville St, Manchester, M1 3BB, United Kingdom', '1993-12-13', 0, 0, 'hill16', '2018-07-13', 'hgrego', '2019-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS511917544750', 'Annie Weaver', 0, '+86 21-650-6647', 2, '261900198770824548', 'Room 22, 630 Hongqiao Rd., Xu Hui District, Shanghai, China', '1994-01-22', 0, 0, 'weaverann4', '2020-04-01', 'anniewe', '2018-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS707997968340', '今井瑛太', 1, '+86 769-041-1276', 1, '047905552882334168', '22F, 941 Kengmei 15th Alley, Dongguan, China', '1992-12-14', 0, 0, 'imaieita721', '2007-10-10', 'imaieit', '2001-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS837381656713', '池田聖子', 0, '+86 28-1512-5680', 4, '114854170123830967', '中国成都市成华区玉双路6号674号3号楼', '1990-10-22', 0, 0, 'seiko02', '2002-08-05', 'ikedaseiko', '2013-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS730707559591', '坂本絢斗', 1, '+81 90-5366-4018', 2, '273422470643771647', '日本札幌豊平区豊平三条十三丁目3番6号21階', '1986-04-03', 0, 0, 'saayato', '2021-03-11', 'ayatosa1009', '2019-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS369689654190', 'Nathan Garcia', 1, '+86 760-160-1973', 3, '031030412832917528', '中国中山紫马岭商圈中山五路177号7栋', '1989-04-08', 0, 0, 'garcia9', '2003-07-08', 'nag', '2011-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS404062345306', '房國榮', 0, '+86 760-0159-8766', 1, '338844862186977516', '中国中山京华商圈华夏街424号48室', '1993-06-26', 0, 0, 'kwfon', '2013-12-05', 'fongkw', '2021-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS457121649260', '岩崎架純', 0, '+44 (161) 000 1667', 3, '731986447865655518', 'Unit 38, Oxford Eco Centre, 301 Mosley St, Manchester, M2 3AQ, United Kingdom', '1996-03-07', 0, 0, 'iwasakikasumi911', '2012-01-10', 'kiwasaki', '2001-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS779017312365', '高嘉伦', 0, '+81 90-1666-7684', 3, '366583924459723180', '日本札幌厚別区上野幌一条二丁目1番20号46号室', '1988-02-29', 0, 0, 'jialugao8', '2012-11-09', 'gaoj7', '2020-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS221550041172', 'Josephine Barnes', 0, '+81 52-891-4760', 2, '542360023204345020', '9-kai, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1989-03-15', 0, 0, 'barnesjosephine', '2001-09-16', 'jbarnes', '2005-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS764700622817', 'Phillip Perry', 0, '+86 184-7530-1717', 1, '586479493501777606', 'No.29 building, 898 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1994-10-13', 0, 0, 'perrph', '2014-10-01', 'phillipperr302', '2003-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS482597733164', '黎發', 0, '+81 80-9720-5093', 4, '266449927904533863', '10-kai, 3-9-2 Gakuenminami, Nara, Japan', '1985-03-30', 0, 0, 'laif415', '2022-02-24', 'laf2', '2004-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS593687099927', '佐々木美咲', 0, '+86 760-2690-9403', 2, '829594995556793830', 'Room 4, 881 Lefeng 6th Rd, Zhongshan, China', '1985-01-05', 0, 0, 'msasak1949', '2010-11-27', 'misasaki722', '2020-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS999861868226', '杜岚', 0, '+81 52-243-7131', 2, '153332288878052906', '日本なごやし熱田区千年二丁目5番6号35階', '1991-05-28', 0, 0, 'dulan', '2010-12-13', 'lan1119', '2010-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS930267399366', '松本花', 0, '+81 80-7689-2067', 0, '048380737760628087', '1-kai, 1-5-10, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1990-03-26', 0, 0, 'hanmatsumoto', '2002-10-23', 'matsumoto729', '2018-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS548010325561', '上野大地', 1, '+86 10-3836-6627', 1, '410949162501223172', '8F, 948 East Wangfujing Street, Dongcheng District , Beijing, China', '1989-06-24', 0, 0, 'dueno', '2005-06-16', 'daichiuen', '2016-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS256746489672', '鄺世榮', 1, '+44 7626 920080', 3, '272376070035753626', 'Unit 37, Oxford Eco Centre, 260 Hanover Street, London, W1S 1YD, United Kingdom', '1989-03-15', 0, 0, 'kwonsw9', '2004-03-26', 'saiwingkwong12', '2009-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS308903937295', '韦杰宏', 1, '+86 170-3487-8505', 0, '218819527093723752', '中国中山天河区大信商圈大信南路372号华润大厦44室', '1990-07-18', 0, 0, 'jiwe4', '2005-05-17', 'jiehong1979', '2008-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS411099573588', '佘曉彤', 0, '+86 150-7854-5945', 0, '361615776117536575', '中国东莞环区南街二巷985号华润大厦23室', '1986-11-09', 0, 0, 'hiutungsheh1975', '2006-02-25', 'hts', '2003-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS797576572299', '廖子异', 0, '+86 10-989-0225', 4, '987033040394267516', '中国北京市朝阳区三里屯路951号41号楼', '1992-10-23', 0, 0, 'liaoziyi626', '2012-07-28', 'ziyili', '2019-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS178262815731', '邵慧嫻', 0, '+86 28-4336-5544', 3, '327824845055116901', '17F, No. 256, Shuangqing Rd, Chenghua District, Chengdu, China', '1994-10-10', 0, 0, 'siu2007', '2019-02-08', 'whsiu428', '2001-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS977277867807', '傅淑怡', 1, '+81 80-0799-4453', 1, '054274971255485358', '5-kai, 5-2-4 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-03-29', 0, 0, 'fsy207', '2018-10-05', 'fu41', '2018-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS452833678779', '韓天榮', 0, '+86 755-287-8345', 3, '560710117920351444', '中国深圳龙岗区布吉镇西环路853号12楼', '1991-06-01', 0, 0, 'tinwing2', '2021-12-27', 'tinwing308', '2004-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS936448647904', '文詠詩', 1, '+1 718-606-6281', 2, '270784676561303545', '36 Bergen St Apt 10, Brooklyn, NY 11217, United States', '1998-08-31', 0, 0, 'wsman', '2018-09-13', 'wingsze311', '2001-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS286526453024', '雷永權', 1, '+86 20-486-5456', 1, '674714625667846498', '中国广州市天河区天河路22号25栋', '1988-09-03', 0, 0, 'wingkuenloui4', '2020-09-30', 'lowingkuen5', '2006-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS417663908925', '尹梓軒', 1, '+86 182-5577-1909', 3, '904856017750637324', 'Room 23, CR Building, 328 028 County Rd, Yanqing District, Beijing, China', '1988-01-24', 0, 0, 'thy', '2008-01-01', 'tszhinyin', '2000-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS133456150746', '汪岚', 1, '+86 760-541-4113', 4, '133420705891097206', 'No.14 building, 738 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1987-11-24', 0, 0, 'lanwa65', '2022-03-05', 'wanlan', '2007-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS380837346122', 'Lawrence Allen', 0, '+44 5456 022201', 3, '315740854188275189', 'Unit 24, Oxford Eco Centre, 480 Redfern St, Liverpool, L20 8JB, United Kingdom', '1994-09-24', 0, 0, 'lawrenceallen', '2008-02-29', 'lawrence326', '2011-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS827998956826', '姚詠詩', 1, '+86 168-2287-1103', 3, '394436324536689631', '中国成都市成华区玉双路6号581号42楼', '1990-07-22', 0, 0, 'wsy', '2003-05-02', 'yws', '2000-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS457298459926', '高家強', 1, '+44 5511 766485', 3, '436587038186256274', 'Block 27, 141 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1997-11-27', 0, 0, 'kakeungkao', '2000-06-28', 'kakeung326', '2007-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS700391092892', 'Ethel Patel', 0, '+86 755-3461-1311', 2, '216667416826090849', 'No.21 building, 721 Shennan Ave, Futian District, Shenzhen, China', '1997-01-31', 0, 0, 'ethelp', '2013-04-20', 'ethelpatel', '2018-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS189994835326', '苏安琪', 1, '+81 52-858-9105', 3, '158557102257842822', 'Rm. 39, 2-5-1 Chitose, Atsuta Ward, Nagoya, Japan', '1995-07-21', 0, 0, 'anqis', '2016-10-06', 'anqis6', '2019-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS755170796363', '傅志遠', 1, '+1 213-078-8756', 1, '126120957627113456', '297 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1993-03-28', 0, 0, 'chiyfu414', '2003-12-12', 'fu3', '2004-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS152830602720', '余子韬', 0, '+86 20-8336-0967', 0, '221716509315537160', '中国广州市白云区小坪东路388号17室', '1997-07-07', 0, 0, 'zityu', '2015-05-16', 'zitaoyu', '2006-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS662362322895', '袁秀文', 1, '+81 80-4913-6987', 2, '232498541809685929', '日本東京港区東新橋一丁目5番16号31階', '1996-09-03', 0, 0, 'ysauman87', '2001-07-07', 'sauman1004', '2012-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS255945832277', '廖梓晴', 0, '+44 5979 512810', 0, '380554382062630675', 'No.12 Main building, 393 New Street, Birmingham, B2 4DB, United Kingdom', '1993-04-30', 0, 0, 'tcl', '2005-07-13', 'liatszching', '2002-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS361847716228', '任志遠', 1, '+86 178-1523-0931', 3, '279802036049583265', '中国上海市浦东新区健祥路51号46号楼', '1991-06-23', 0, 0, 'chiyuenyam10', '2007-01-31', 'cyyam', '2005-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS339406966964', '田詠詩', 1, '+44 (151) 593 6476', 4, '451593532623730160', 'No.44 Main building, 318 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1990-05-04', 0, 0, 'wingszetin905', '2001-08-20', 'tinws8', '2013-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS198486040061', 'Phyllis Romero', 1, '+81 80-3970-3727', 1, '126525883169633219', '日本札幌白石区菊水三条五丁目4番8号27階', '1992-05-30', 0, 0, 'phyllis5', '2009-03-03', 'romerop50', '2004-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS613172648308', '木村凛', 0, '+44 (161) 955 3136', 4, '127957991907135380', 'Flat 47, 246 Portland St, Manchester, M1 3LA, United Kingdom', '1994-08-20', 0, 0, 'kimura6', '2004-04-07', 'rin7', '2007-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS493391850778', '劉永發', 0, '+44 (1865) 35 4259', 4, '740335830584807214', 'Flat 48, 666 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1988-01-01', 0, 0, 'lwf', '2010-07-18', 'wingfatla', '2001-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS998600677023', '樂曉彤', 1, '+81 3-7107-7637', 1, '051914468291191061', '1-kai, 2-3-11 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-10-04', 0, 0, 'lok7', '2003-10-03', 'hiutlok9', '2003-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS450314588196', '邱俊宇', 1, '+44 (20) 0688 4795', 2, '672303017294709582', 'Flat 13, 964 Regent Street, London, W1B 2LX, United Kingdom', '1994-03-23', 0, 0, 'cyya9', '2009-04-16', 'chunyuyau2', '2012-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS183881465398', '坂本美月', 0, '+86 28-3815-8090', 2, '617088283561635480', 'No.20 building, No.671, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1998-12-22', 0, 0, 'mitsukisaka1014', '2017-06-15', 'smi8', '2005-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS294227670441', '狄志明', 0, '+86 167-4465-9971', 3, '350642376141637552', '中国深圳福田区景田东一街615号25栋', '1989-11-01', 0, 0, 'ticm', '2016-04-23', 'ticm56', '2007-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS599401073677', '野口光', 1, '+81 80-5268-0592', 4, '865810777773851174', '29-kai, 3-19-8 Shimizu, Kita Ward, Nagoya, Japan', '1986-05-07', 0, 0, 'noh', '2021-05-24', 'noguchih42', '2021-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS316540509523', 'Robin Nelson', 1, '+81 3-7697-7712', 3, '101108749296033814', '日本東京千代田区丸の内一丁目6番5号13階', '1996-05-31', 0, 0, 'nrobin', '2001-10-07', 'rnels', '2021-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS540634501175', '黎宇宁', 1, '+44 (161) 483 7216', 2, '256134058356495270', 'No.25 Main building, 301 Mosley St, Manchester, M2 3AQ, United Kingdom', '1998-04-21', 0, 0, 'liy1945', '2002-06-04', 'liyuning10', '2006-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS969554203386', 'Theresa Wilson', 0, '+81 80-2766-3370', 2, '795839993921055931', '33-kai, 1-6-15, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1994-08-28', 0, 0, 'theresawils', '2008-05-31', 'theresawilson', '2003-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS173421392598', '罗震南', 1, '+81 52-262-1225', 2, '944256893473737221', '20-kai, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-10-19', 0, 0, 'zhennan2', '2015-01-19', 'zhenl', '2016-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS746927659274', '山崎湊', 1, '+86 199-9968-9019', 2, '554392138477289138', 'Room 10, CR Building, 569 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1995-11-23', 0, 0, 'yamami', '2002-12-20', 'yamazmi', '2004-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS760280937163', '蒋晓明', 1, '+44 5233 600743', 3, '223439861853668507', 'Unit 10, Oxford Eco Centre, 625 Pollen Street, London, W1S 1NG, United Kingdom', '1988-11-02', 0, 0, 'jiang3', '2002-01-26', 'xiaomingj6', '2016-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS816291559888', '蕭詩君', 0, '+1 838-820-3219', 2, '787308900629824759', '580 Broadway Suite 45, Albany, NY 12207, United States', '1998-01-17', 0, 0, 'siu87', '2017-05-24', 'szekwansiu', '2017-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS598714522857', 'Rhonda Coleman', 1, '+81 80-5423-6880', 1, '170997013028731226', '19F, 2-1-2 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1998-01-26', 0, 0, 'coleman49', '2000-11-23', 'rhondacoleman', '2010-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS769831113844', '千葉美緒', 0, '+81 3-1151-1757', 2, '635340167189931125', '日本東京港区東新橋一丁目5番14号39階', '1987-10-30', 0, 0, 'mc3', '2013-07-08', 'chiba1220', '2002-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS666705533829', '應玲玲', 1, '+81 70-1986-3798', 4, '155882374943255921', '44F, 6-1-7, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1996-07-22', 0, 0, 'yinglingling8', '2011-03-02', 'yingll', '2015-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS752831961245', '袁力申', 0, '+81 80-3572-0552', 1, '402916984026089107', '21F, 6 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1999-02-20', 0, 0, 'lsyue05', '2008-03-08', 'yuenliksun', '2006-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS960562111914', '石川一輝', 1, '+81 3-6587-2808', 1, '142025123790331092', 'Rm. 9, 1-6-4, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1989-03-01', 0, 0, 'iikk', '2018-06-17', 'ikishik', '2019-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS673167301179', '萬潤發', 1, '+81 70-3847-8999', 2, '003999316738239391', '12F, 2-3-12 Yoyogi, Shibuya-ku, Tokyo, Japan', '1987-07-16', 0, 0, 'yunfatmeng', '2003-06-12', 'myf', '2020-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS974537700209', '冯璐', 0, '+81 11-243-6311', 2, '116257063564596950', '日本札幌白石区菊水三条五丁目2番10号17階', '1992-06-15', 0, 0, 'feng525', '2019-07-31', 'fenl', '2012-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS005793612197', '菊地葉月', 0, '+86 178-2720-0452', 0, '714571122709697685', '中国中山京华商圈华夏街715号华润大厦3室', '1992-12-11', 0, 0, 'hazuki820', '2019-02-08', 'kikuchihaz', '2006-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS426772176665', 'Bradley Peterson', 1, '+81 70-3369-6247', 3, '418855577953624088', 'Rm. 50, 3-15-1 Ginza, Chuo-ku, Tokyo, Japan', '1985-02-27', 0, 0, 'petersonbrad2', '2019-11-19', 'peterson4', '2019-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS174233245527', '伊藤悠人', 0, '+81 90-9267-8431', 1, '749449141936855315', '日本東京渋谷区代々木二丁目3番7号23階', '1994-11-02', 0, 0, 'itoy', '2006-11-25', 'yutito', '2021-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS298392672654', '潘睿', 1, '+1 718-333-4798', 3, '460938593647088276', '947 Bergen St Apt 19, Brooklyn, NY 11217, United States', '1992-06-24', 0, 0, 'panr42', '2010-11-08', 'rup', '2019-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS733290771296', '鄭永發', 1, '+86 20-569-5813', 0, '539855229263662649', '中国广州市白云区小坪东路933号华润大厦6室', '1985-07-31', 0, 0, 'wfch68', '2012-10-13', 'wingfatcheng6', '2018-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS552647771864', '唐云熙', 1, '+44 (1865) 00 2895', 2, '256287860783092721', 'Flat 21, 657 Park End St, Oxford, OX1 1JD, United Kingdom', '1994-01-27', 0, 0, 'tayun96', '2014-08-15', 'tangyu1230', '2010-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS173806627333', '郭永發', 1, '+86 190-1972-2669', 1, '697016319382303305', '27F, 390 Hongqiao Rd., Xu Hui District, Shanghai, China', '1987-01-19', 0, 0, 'kwokwf', '2002-02-23', 'wingfatkwok', '2005-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS258219650521', '曹梓晴', 0, '+86 10-781-7139', 2, '474957951417122700', '中国北京市西城区复兴门内大街158号28室', '1993-06-27', 0, 0, 'tszchingc', '2016-12-01', 'tccho', '2020-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS184604849383', '加藤大和', 1, '+81 66-640-2465', 1, '135218028622962067', '日本おおさかし東住吉区東田辺三丁目27番7号28階', '1987-05-20', 0, 0, 'yamkato412', '2018-01-08', 'yamatkato9', '2000-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS845399348904', '向嘉欣', 0, '+1 838-732-9312', 3, '889831813278712115', '220 State Street 3rd Floor, Albany, NY 12203, United States', '1985-03-18', 0, 0, 'heung3', '2018-08-30', 'hky', '2010-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS454446180283', '彭慧琳', 0, '+44 (1223) 13 5842', 2, '334205865025193503', 'Unit 13, Oxford Eco Centre, 671 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1992-04-11', 0, 0, 'wailampang', '2015-04-07', 'wlpan48', '2001-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS644134927915', '原田明菜', 1, '+86 28-594-6705', 1, '181368648286640952', '中国成都市成华区二仙桥东三路633号4栋', '1998-11-16', 0, 0, 'haradaakina', '2020-06-11', 'haradakina', '2014-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS954023192560', '毛家玲', 1, '+1 614-489-2526', 1, '014503143387539624', '58 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1986-10-11', 0, 0, 'kaling603', '2019-04-15', 'kalingmo907', '2019-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS117619576073', 'Ashley Davis', 1, '+81 3-5373-2625', 3, '090271235942764710', '日本東京品川区東五反田五丁目2番8号46階', '1993-12-13', 0, 0, 'ashley52', '2008-09-21', 'ashley5', '2008-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS798034788937', '原和真', 1, '+1 330-026-4316', 2, '311866737219031023', '55 West Market Street Apartment 5, Akron, OH 44333, United States', '1988-01-19', 0, 0, 'hara5', '2001-08-10', 'harak', '2018-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS218769550086', 'Randy Gray', 0, '+81 70-0896-2515', 3, '516066086584641977', '47-kai, 1-1-18 Deshiro, Nishinari Ward, Osaka, Japan', '1996-06-28', 0, 0, 'grayrandy', '2019-12-24', 'grayran', '2021-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS446578849814', '宣明', 0, '+86 28-4875-0052', 1, '923990749504575172', '中国成都市成华区双庆路715号40室', '1986-07-27', 0, 0, 'hsuanming4', '2004-11-08', 'minghsua', '2015-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS447271566638', '徐潤發', 0, '+81 90-5288-5426', 3, '611903221041140207', '13F, 1-6-1, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-10-02', 0, 0, 'yunfat06', '2017-02-21', 'tsuiyunfa119', '2017-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS521164235680', '盧慧敏', 1, '+86 760-770-1632', 0, '295798991663832759', '中国中山天河区大信商圈大信南路194号41栋', '1995-08-26', 0, 0, 'lowaim9', '2012-01-12', 'lwm', '2008-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS843253289470', 'Joe Webb', 1, '+1 614-151-9521', 1, '796090608027356718', '357 Wicklow Road Apartment 3, Columbus, GA 43204, United States', '1997-01-08', 0, 0, 'joe12', '2019-10-06', 'joewebb', '2017-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS032333404334', '藤原光莉', 1, '+81 70-1479-7104', 1, '611436422280656132', '23F, 4-9-9 Kamihigashi, Hirano Ward, Osaka, Japan', '1985-05-23', 0, 0, 'fujhi', '2013-02-08', 'fujiwarah11', '2004-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS528656988813', '佐々木舞', 0, '+81 52-979-2007', 3, '647706629336450493', 'Rm. 5, 2-5-7 Chitose, Atsuta Ward, Nagoya, Japan', '1996-03-31', 0, 0, 'smai', '2010-01-06', 'sama3', '2006-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS453701018941', 'Diana Patel', 0, '+1 614-792-5128', 3, '797574258573255698', '660 East Cooke Road Suite 13, Columbus, GA 43214, United States', '1987-01-19', 0, 0, 'patel727', '2012-03-23', 'patel7', '2012-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS155812189310', '渡辺大和', 0, '+81 90-0105-6148', 2, '471477936364186670', '日本おおさかし西成区出城一丁目1番8号38号室', '1997-06-09', 0, 0, 'sayamato', '2004-10-25', 'yamasato', '2019-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS725819561840', '苑發', 0, '+44 (161) 336 1757', 4, '646833148643246732', 'Unit 18, Oxford Eco Centre, 284 Mosley St, Manchester, M2 3AQ, United Kingdom', '1989-02-07', 0, 0, 'yuenfat', '2008-06-12', 'fat6', '2015-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS422855812622', 'Eddie Hill', 1, '+86 198-7001-2782', 3, '717881741998302908', 'No.5 building, 589 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1988-08-15', 0, 0, 'ehil10', '2006-06-29', 'eddiehill2', '2002-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS486550797346', '小野玲奈', 0, '+1 838-591-7010', 2, '820849824378926144', '449 Lark Street Apt 49, Albany, NY 12210, United States', '1986-02-21', 0, 0, 'rena61', '2012-03-30', 'ono97', '2005-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS175558540172', 'Tammy Meyer', 0, '+86 760-4788-9156', 1, '906082497744518860', 'No.33 building, 529 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1992-10-07', 0, 0, 'tammy625', '2007-04-08', 'tm15', '2013-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS719390887865', '朱玲玲', 1, '+86 182-4345-7073', 0, '253650258217507905', '15F, 83 028 County Rd, Yanqing District, Beijing, China', '1996-01-17', 0, 0, 'chull97', '2019-12-31', 'linglingchu', '2015-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS452484199320', '曾天樂', 1, '+81 90-6457-1549', 3, '725337188541178127', '日本なごやし北区清水三丁目19番17号13階', '1992-08-31', 0, 0, 'tstinl506', '2000-01-06', 'tlt', '2005-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS221803188644', '傅永權', 0, '+44 7973 901875', 2, '460390465388570821', 'No.37 Main building, 381 Sackville St, Manchester, M1 3BB, United Kingdom', '1995-09-15', 0, 0, 'fuwk', '2019-04-08', 'wkf', '2020-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS663276492517', '吳明詩', 1, '+86 173-2563-6963', 1, '018459528976491246', '中国北京市延庆区028县道937号1号楼', '1989-07-10', 0, 0, 'msng406', '2016-09-06', 'mingszen', '2002-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS744917969582', '叶杰宏', 0, '+86 156-8610-2240', 1, '724845352736270712', 'No.24 building, 890 Sanlitun Road, Chaoyang District, Beijing, China', '1992-06-09', 0, 0, 'jieye', '2002-09-01', 'jiehong4', '2019-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS836934003254', '崔子异', 1, '+81 11-116-3190', 3, '269969944284481291', '日本札幌厚別区上野幌一条二丁目1番6号41階', '1991-12-30', 0, 0, 'cuiziy', '2005-01-28', 'cuziyi', '2004-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS835795026328', '盧家文', 1, '+44 (1865) 53 7088', 1, '234792746484507082', 'Block 50, 375 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1993-04-12', 0, 0, 'kaman5', '2018-09-18', 'kamanlo', '2008-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS469423098712', '周慧珊', 0, '+86 150-8206-9003', 2, '449051381300214904', '中国广州市越秀区中山二路450号5楼', '1995-06-27', 0, 0, 'chowaisa', '2010-11-01', 'wschow', '2010-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS114724978382', '増田湊', 0, '+86 755-6533-1975', 4, '753565354330690802', '中国深圳罗湖区蔡屋围深南东路604号8号楼', '1987-05-23', 0, 0, 'masudaminat4', '2007-05-06', 'minatmasuda', '2013-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS954864047322', 'Mary Tran', 0, '+86 155-3022-4962', 3, '428022526361208692', 'No.23 building, 253 Lefeng 6th Rd, Zhongshan, China', '1986-05-31', 0, 0, 'tmary', '2009-01-04', 'tran1959', '2009-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS896952752816', '郑杰宏', 0, '+86 147-7695-4621', 4, '370270266507033116', '31F, 612 Middle Huaihai Road, Huangpu District, Shanghai, China', '1999-03-03', 0, 0, 'jiehongzh', '2019-04-06', 'zhjiehong109', '2015-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS962717554873', 'Frederick Schmidt', 0, '+44 (20) 5879 2759', 2, '579730995071425941', 'No.3 Main building, 838 Pollen Street, London, W1S 1NG, United Kingdom', '1986-01-05', 0, 0, 'sfrederick', '2017-08-17', 'schmidtf', '2004-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS960212601121', '小林海斗', 0, '+81 80-9193-6533', 0, '555019550448436410', '19-kai, 3-19-19 Shimizu, Kita Ward, Nagoya, Japan', '1986-04-29', 0, 0, 'kaitokobayashi', '2019-04-08', 'kkaito', '2014-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS569545339394', '朱力申', 0, '+81 3-7048-3966', 4, '675125112442285314', '17-kai, 2-3-1 Yoyogi, Shibuya-ku, Tokyo, Japan', '1998-10-07', 0, 0, 'liksunch', '2019-05-12', 'chu1', '2010-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS576312611802', '金子陽菜', 0, '+86 133-6864-4396', 2, '538307474988158056', '中国深圳福田区景田东一街771号30栋', '1994-04-15', 0, 0, 'hikan', '2019-11-27', 'kanekohi', '2020-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS448480379728', 'Leroy Bell', 1, '+86 176-2297-8812', 2, '964517119098878478', '中国成都市成华区玉双路6号679号1栋', '1995-01-01', 0, 0, 'bellle8', '2012-08-17', 'belll', '2000-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS365550095153', '蔡梓晴', 1, '+81 70-9819-2704', 0, '699870752296014321', '日本札幌清田区真栄四条五丁目19番15号49号室', '1995-12-21', 0, 0, 'choitc', '2021-08-06', 'ctc', '2012-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS112679846872', '高云熙', 1, '+81 70-3742-6333', 3, '095968485164725757', '日本なごやし瑞穂区河岸町四丁目20番11号12階', '1995-02-08', 0, 0, 'gaoyunxi1003', '2015-03-02', 'gaoy', '2017-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS450623946500', 'Curtis Hill', 1, '+86 155-1540-7058', 4, '524287810283305072', 'Room 48, 799 Dong Zhi Men, Dongcheng District, Beijing, China', '1987-05-30', 0, 0, 'curtihill721', '2014-02-22', 'ch8', '2012-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS902765647554', 'Carlos Shaw', 0, '+86 10-6671-5944', 3, '646966547491210296', 'No.40 building, 347 West Chang''an Avenue, Xicheng District, Beijing, China', '1992-10-09', 0, 0, 'shawcarlos', '2003-06-17', 'carlossha', '2008-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS217744316838', '杜致远', 0, '+81 3-3512-2046', 1, '013761604284969306', '37-kai, 1-6-2, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1985-06-20', 0, 0, 'duzhiy', '2016-09-10', 'zhiydu1972', '2022-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS033586844502', '大塚結翔', 1, '+86 21-819-8004', 0, '953358289884612027', '中国上海市闵行区宾川路731号32楼', '1996-03-10', 0, 0, 'yuitoot', '2011-10-13', 'yotsuka', '2002-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS158388379715', '萧睿', 0, '+81 11-710-4476', 3, '505172752605033181', '日本札幌厚別区上野幌一条二丁目1番1号46階', '1986-03-06', 0, 0, 'ruxiao', '2005-02-14', 'ruix10', '2010-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS460840824271', '龙嘉伦', 1, '+44 7790 510124', 4, '553284859094141513', 'No.20 Main building, 241 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1994-07-03', 0, 0, 'longji', '2001-06-19', 'long6', '2017-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS481980564916', 'Edward Gardner', 0, '+86 769-550-0763', 3, '860431815218912590', 'Room 22, 287 Dongtai 5th St, Dongguan, China', '1994-01-19', 0, 0, 'edwardgardner', '2009-08-17', 'gardneredwar', '2006-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS639608593095', '平野光', 1, '+1 718-707-6740', 3, '314007884388286940', '948 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1997-04-06', 0, 0, 'hhikaru5', '2002-07-24', 'hirano5', '2008-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS062598053891', 'Hazel Barnes', 1, '+44 (161) 569 6866', 1, '965781177067871960', 'No.23 Main building, 233 Mosley St, Manchester, M2 3AQ, United Kingdom', '1986-04-16', 0, 0, 'barnesh', '2009-12-27', 'habar', '2007-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS108455791952', '顧頴璇', 1, '+86 178-4058-0962', 4, '369426741032427625', '中国上海市浦东新区健祥路254号34号楼', '1986-08-02', 0, 0, 'kuwingsuen', '2006-11-06', 'wingsuenku', '2021-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS275189503599', '佘天榮', 0, '+81 70-0873-4780', 3, '215406737356769460', '日本おおさかし東住吉区東田辺三丁目27番14号37号室', '1985-01-01', 0, 0, 'shehtin2', '2003-04-25', 'stw', '2007-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS927869670470', '孔震南', 1, '+81 80-6002-0272', 3, '004190757928651187', 'Rm. 48, 7 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-09-09', 0, 0, 'zhennk1979', '2005-02-08', 'kzh', '2020-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS153717760722', '謝頴思', 1, '+1 330-212-9193', 1, '553377315157593743', '150 Riverview Road Suite 5, Akron, OH 44313, United States', '1991-06-13', 0, 0, 'tsws', '2002-04-11', 'tse426', '2007-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS137915212432', '丁云熙', 0, '+44 (1223) 44 1114', 0, '624355400147720228', 'Unit 14, Oxford Eco Centre, 618 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1997-04-20', 0, 0, 'yunxidi9', '2017-02-08', 'yunxi1128', '2017-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS242966128523', '常嘉伦', 0, '+86 10-2744-8747', 1, '320185593105800505', 'No.22 building, 835 68 Qinghe Middle St, Haidian District, Beijing, China', '1987-02-21', 0, 0, 'changjial1', '2003-10-12', 'jc1940', '2008-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS124227110409', '黃玲玲', 0, '+86 143-4235-3209', 1, '162389369695807047', 'Room 5, 807 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1997-12-25', 0, 0, 'linglingwong', '2012-01-02', 'llwong9', '2015-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS363981854537', '廖宇宁', 0, '+44 5778 749650', 2, '628166237342692587', 'Flat 3, 58 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1988-05-03', 0, 0, 'yuninl1122', '2017-11-30', 'yliao1', '2004-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS735084964871', '龚杰宏', 1, '+1 312-862-6965', 2, '466660962120387389', '110 North Michigan Ave Suite 50, Chicago, IL 60611, United States', '1995-11-28', 0, 0, 'jiehonggo', '2004-03-14', 'jg1201', '2013-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS486657454843', '杨嘉伦', 0, '+86 187-1993-0722', 2, '741445693010800618', 'Room 37, CR Building, 833 Hongqiao Rd., Xu Hui District, Shanghai, China', '1987-12-28', 0, 0, 'jiayang', '2014-07-17', 'jy205', '2017-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS067827073321', '西村凛', 1, '+86 755-5597-2116', 1, '719459599342275674', '9F, 531 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1988-09-11', 0, 0, 'rinnishi', '2018-04-12', 'nishimura1023', '2005-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS940552323971', 'Arthur Gibson', 1, '+1 312-457-9959', 3, '788580823903700650', '998 North Michigan Ave Apt 36, Chicago, IL 60611, United States', '1994-12-09', 0, 0, 'gibsar', '2015-09-25', 'giarthur', '2012-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS422957925634', 'Esther Rodriguez', 1, '+44 5127 391677', 1, '584143998827126609', 'Unit 3, Oxford Eco Centre, 22 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1991-04-22', 0, 0, 'rodresther', '2022-01-03', 'resther', '2012-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS604918506145', '森光', 1, '+44 7621 240845', 3, '284051098456607749', 'No.2 Main building, 771 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1988-02-16', 0, 0, 'morihik', '2006-06-27', 'hmori', '2005-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS550833584171', 'Joshua Gonzalez', 0, '+1 718-150-7074', 3, '754433851831372363', '855 Columbia St Apt 21, Brooklyn, NY 11231, United States', '1994-02-21', 0, 0, 'jog', '2005-02-27', 'gonzalez2', '2007-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS295666618030', '佘家玲', 0, '+81 66-269-4698', 1, '834516305474401728', '22-kai, 1-1-3 Deshiro, Nishinari Ward, Osaka, Japan', '1991-04-01', 0, 0, 'klsheh', '2004-01-18', 'shehka504', '2007-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS672431604782', '藤田大輔', 0, '+86 153-1031-2396', 3, '317828636893686065', '2F, 752 Jianxiang Rd, Pudong, Shanghai, China', '1990-12-04', 0, 0, 'daifujita10', '2008-09-24', 'fujitada', '2007-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS232758022034', 'Jonathan Jones', 0, '+86 21-541-3886', 2, '776841289372692234', 'No.32 building, 819 Ganlan Rd, Pudong, Shanghai, China', '1986-10-11', 0, 0, 'joj9', '2014-07-18', 'jojones50', '2020-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS575337095221', '長谷川涼太', 0, '+81 70-9384-2595', 4, '621563535560088182', '17F, 2-5-18 Chitose, Atsuta Ward, Nagoya, Japan', '1989-03-21', 0, 0, 'rhase02', '2002-06-11', 'ryotahaseg', '2018-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS564860220336', '西村美月', 0, '+86 171-1168-9230', 3, '652703292305127723', '12F, 861 Xiaoping E Rd, Baiyun , Guangzhou, China', '1989-07-25', 0, 0, 'nishimits', '2013-06-26', 'mitsuki3', '2012-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS724599910294', '菊地紗良', 1, '+81 70-1712-6132', 3, '185916878385410926', 'Rm. 17, 3 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-12-03', 0, 0, 'ksara56', '2014-09-05', 'skikuchi11', '2002-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS824101200715', '马云熙', 1, '+81 74-056-2028', 2, '737084279401376351', '46F, 5 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1991-08-29', 0, 0, 'mayunxi', '2001-08-20', 'mayunxi5', '2017-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS686747924849', '熊震南', 0, '+86 189-6336-5633', 3, '953731027095045478', 'Room 27, CR Building, 626 Jianxiang Rd, Pudong, Shanghai, China', '1986-02-11', 0, 0, 'zhexiong', '2018-07-20', 'xiongz9', '2013-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS165737444678', '森美咲', 0, '+1 213-140-4551', 1, '345247415173940821', '763 Wall Street Apt 49, Los Angeles, CA 90003, United States', '1994-11-28', 0, 0, 'misamori', '2004-06-11', 'morimi', '2008-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS468160690967', '林湊', 1, '+81 11-084-7367', 1, '076257573278355290', 'Rm. 46, 13-3-13 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1996-02-05', 0, 0, 'minato70', '2006-01-16', 'hayashiminato', '2014-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS505732741735', 'Louise Sanchez', 1, '+44 (1223) 22 9358', 3, '340561899684629158', 'Block 1, 227 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1990-08-31', 0, 0, 'sanchlouise', '2021-05-31', 'lsanch', '2008-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS849096952622', '方秀英', 1, '+81 11-411-0021', 4, '948490059400855504', '20-kai, 5-19-12 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1985-12-17', 0, 0, 'fangxi709', '2001-09-09', 'fxiuying7', '2019-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS695162803258', '橋本百恵', 0, '+81 80-3805-1742', 0, '659889235032423895', '日本なごやし守山区瀬古東二丁目171番7号14階', '1987-08-31', 0, 0, 'momoehashi5', '2011-09-28', 'hashimotomomo606', '2019-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS435275741799', 'Thelma Cook', 1, '+81 90-5747-4309', 2, '320873866183262157', '2F, 5-19-8 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1987-07-10', 0, 0, 'cookthel', '2017-03-02', 'thelc6', '2014-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS182372282889', '渡辺樹', 0, '+1 312-683-3421', 1, '270788126323875545', '132 Rush Street Apartment 36, Chicago, IL 60611, United States', '1997-02-02', 0, 0, 'sato1966', '2012-04-30', 'itsuki73', '2000-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS015547847865', '刘杰宏', 1, '+81 70-0541-9242', 2, '538185443368846924', 'Rm. 28, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-01-20', 0, 0, 'jiehong6', '2017-06-10', 'jiehongl', '2016-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS149018571592', '段璐', 0, '+1 838-335-9154', 0, '861496826686385483', '442 Lark Street Suite 34, Albany, NY 12210, United States', '1991-09-04', 0, 0, 'dulu6', '2009-02-08', 'duan1', '2014-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS082489596513', 'Dennis Flores', 0, '+86 20-063-7271', 2, '050605057558041282', 'Room 12, 30 Tianhe Road, Tianhe District, Guangzhou, China', '1989-12-08', 0, 0, 'denniflo', '2000-03-20', 'flordennis', '2000-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS544950982935', '戴永發', 0, '+1 614-685-0648', 2, '033626706204891996', '510 East Cooke Road Suite 21, Columbus, GA 43214, United States', '1993-03-09', 0, 0, 'daiwingfat', '2001-05-31', 'daiwingfat', '2014-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS014461231185', '村上涼太', 0, '+81 90-9885-6150', 3, '912682771753586320', '49F, 5-2-10 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-02-06', 0, 0, 'ryotamurak', '2020-08-27', 'ryotamurakami', '2017-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS697169244252', '王晓明', 0, '+1 213-629-9879', 3, '055608962745321583', '606 Grape Street Apartment 40, Los Angeles, CA 90002, United States', '1994-10-20', 0, 0, 'wang709', '2011-07-16', 'wanx', '2008-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS590489047482', '楊發', 0, '+86 28-219-1104', 1, '075849196807348678', '中国成都市锦江区人民南路四段930号4室', '1989-10-29', 0, 0, 'yeungf', '2000-01-17', 'fatyeun', '2015-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS750111326127', '杉山海斗', 0, '+81 52-332-9970', 2, '781249388760309085', '日本なごやし守山区瀬古東二丁目171番11号48階', '1996-10-17', 0, 0, 'sugiyamakaito9', '2017-02-28', 'sugka5', '2006-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS745737831652', '村田玲奈', 1, '+44 7013 525104', 2, '567795573806003923', 'Flat 43, 18 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1995-03-14', 0, 0, 'renamurata9', '2019-03-22', 'renamurata8', '2019-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS689117202863', '袁子异', 0, '+1 212-314-8957', 3, '235759757153399560', '256 Canal Street Apartment 16, New York, NY 10013, United States', '1986-10-27', 0, 0, 'yuaz54', '2011-02-10', 'zyuan10', '2008-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS111824385245', '廖璐', 1, '+86 134-3888-6683', 3, '959168243576055323', 'Room 2, 659 Lefeng 6th Rd, Zhongshan, China', '1995-02-24', 0, 0, 'lilu', '2016-07-20', 'liaolu3', '2006-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS805191546762', 'Angela Cole', 1, '+81 74-959-6217', 1, '289012775829447924', 'Rm. 19, 17 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-10-12', 0, 0, 'angec89', '2011-04-04', 'angela123', '2016-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS670505043172', 'Louise Webb', 1, '+81 80-2074-8464', 4, '398292364617588574', '日本東京千代田区丸の内一丁目6番15号40階', '1990-02-16', 0, 0, 'weblouise', '2006-07-04', 'louise17', '2019-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS665212733199', '斉藤百恵', 1, '+86 28-594-8306', 0, '419093608342218297', '23F, 79 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1997-07-03', 0, 0, 'mosa', '2003-12-03', 'momosa', '2011-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS445931280461', '姚仲賢', 1, '+86 175-8711-8390', 2, '965278984218416130', '28F, 878 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1989-09-14', 0, 0, 'chungyinyeow605', '2000-07-26', 'yeowchungyin', '2015-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS436009568561', '廖杰宏', 1, '+81 80-5354-9950', 0, '025906354518699198', '2-kai, 2-1-15 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1997-09-01', 0, 0, 'liaj', '2016-04-03', 'liao2', '2016-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS107234930177', '韩晓明', 0, '+44 (1223) 40 1928', 3, '861306630720720851', 'Flat 2, 755 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1991-07-20', 0, 0, 'hanxiao', '2015-01-21', 'han3', '2017-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS892699946691', 'Chad Allen', 0, '+81 11-793-0677', 3, '723192403297290400', '日本札幌清田区真栄四条五丁目19番5号35階', '1995-01-21', 0, 0, 'allen7', '2016-03-13', 'allench', '2007-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS702969508870', '丁宇宁', 0, '+1 312-967-9635', 0, '017494934642492078', '669 Rush Street Suite 40, Chicago, IL 60611, United States', '1992-07-26', 0, 0, 'yuning421', '2019-09-15', 'dingyuning', '2019-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS695259945052', '张璐', 0, '+86 168-3012-8645', 2, '369457960878788611', '中国成都市成华区玉双路6号475号44号楼', '1987-09-19', 0, 0, 'luzhang7', '2021-10-19', 'luzhan47', '2000-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS836717221375', '元仲賢', 0, '+44 5490 684016', 1, '306171176600929296', 'Block 20, 110 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1985-04-02', 0, 0, 'cyy607', '2004-09-08', 'yucy71', '2000-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS241289941462', '和田一輝', 0, '+86 760-361-9119', 0, '674446351993320450', '中国中山紫马岭商圈中山五路735号42号楼', '1998-04-11', 0, 0, 'wada6', '2006-06-20', 'wada1', '2015-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS742894838359', '鄺裕玲', 1, '+86 161-5801-5547', 3, '644874862325222442', 'Room 10, 428 Yueliu Rd, Fangshan District, Beijing, China', '1996-08-20', 0, 0, 'kwoyl1221', '2005-07-09', 'yulingkwon', '2004-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS286233004695', '盧慧嫻', 1, '+44 (151) 966 8498', 2, '098379113108493261', 'Flat 30, 749 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1998-04-24', 0, 0, 'lowh6', '2005-04-19', 'lwaihan62', '2013-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS086593550043', '村上光莉', 0, '+81 11-280-9396', 2, '715746501060073760', '日本札幌厚別区上野幌一条二丁目1番4号46階', '1989-01-01', 0, 0, 'hikarimurakami', '2021-06-24', 'hikarm', '2007-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS069309038460', '吕晓明', 0, '+86 755-165-4369', 2, '389346389566727105', 'Room 38, 512 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1986-07-03', 0, 0, 'xiaomingl716', '2018-07-03', 'xiaoml', '2006-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS841623540675', '柴田架純', 1, '+81 66-650-9374', 4, '708730864164717880', '49-kai, 1-7-7 Omido, Higashiosaka, Osaka, Japan', '1988-11-05', 0, 0, 'kashiba', '2001-04-12', 'skasumi', '2017-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS855883534664', '陶杰宏', 1, '+44 (116) 991 8776', 3, '901112345754372476', 'Flat 12, 525 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1991-07-14', 0, 0, 'jit10', '2002-07-25', 'jiehong731', '2019-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS903509196584', '江子异', 0, '+86 10-631-3233', 1, '622109293336476534', 'Room 39, CR Building, 441 Yueliu Rd, Fangshan District, Beijing, China', '1987-04-22', 0, 0, 'jiangziyi', '2011-05-28', 'jianziyi', '2012-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS771866512809', '萬詩君', 1, '+81 66-850-7824', 2, '281146815640921318', '10-kai, 3-27-11 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1994-06-29', 0, 0, 'skmeng', '2001-10-16', 'szekwanmeng', '2005-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS522918736446', '吳朝偉', 0, '+86 177-8368-2350', 2, '184984840549388438', '中国北京市西城区西長安街832号18号楼', '1991-03-04', 0, 0, 'cwng', '2018-11-19', 'ng306', '2006-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS243674001239', '傅國明', 0, '+86 20-761-2162', 1, '735607837322371105', 'Room 22, CR Building, 133 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1992-03-01', 0, 0, 'kwokmingfu', '2005-05-03', 'kwokming5', '2007-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS239058233572', '吴岚', 1, '+44 (161) 724 2859', 2, '847466308631665650', 'No.38 Main building, 340 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-05-11', 0, 0, 'lanwu', '2009-05-26', 'lanwu1', '2004-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS989465046414', 'Virginia Mills', 0, '+44 5022 426700', 3, '871220261308356132', 'Flat 44, 115 Redfern St, Liverpool, L20 8JB, United Kingdom', '1985-10-11', 0, 0, 'virginiamills828', '2002-10-28', 'virginia10', '2013-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS381154449023', '王惠妹', 0, '+44 (20) 1147 3698', 3, '015746761335605158', 'Flat 22, 326 Maddox Street, London, W1S 1PU, United Kingdom', '1991-08-17', 0, 0, 'wonhuimei', '2002-09-09', 'hmwong', '2009-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS575064097860', 'Sharon Lopez', 0, '+86 183-4151-4062', 2, '499016688729495347', '中国成都市成华区双庆路88号32室', '1996-08-28', 0, 0, 'los', '2017-03-31', 'sharon929', '2003-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS814992382117', '狄國權', 1, '+86 141-1302-6828', 0, '187569066676333136', 'Room 45, 125 Dongtai 5th St, Dongguan, China', '1987-10-25', 0, 0, 'tikwok', '2012-03-22', 'tikwokkuen', '2021-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS862269734160', 'Rhonda Warren', 1, '+86 196-2794-6605', 4, '759397526275966875', '中国成都市成华区二仙桥东三路807号1号楼', '1997-06-11', 0, 0, 'rhonda514', '2016-10-17', 'rwarren', '2018-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS192724865271', '尹杰宏', 0, '+1 330-780-9149', 4, '278283644355301930', '929 Ridgewood Road Apartment 1, Akron, OH 44321, United States', '1987-01-17', 0, 0, 'jyin221', '2017-11-04', 'jy511', '2002-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS433730497504', '大野百花', 0, '+86 21-763-9052', 2, '877613446732206085', '中国上海市浦东新区健祥路547号19室', '1993-10-17', 0, 0, 'onomomo2', '2002-09-03', 'onomomoka47', '2016-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS718844023511', 'Mary Salazar', 0, '+86 190-0369-5956', 2, '071078949547174734', '中国深圳福田区景田东一街784号23室', '1997-09-09', 0, 0, 'marysalazar', '2017-08-03', 'marysalaz1007', '2020-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS956892492091', '萬慧珊', 1, '+81 90-3961-6943', 0, '584844767826437653', '22F, 5-4-9 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-10-30', 0, 0, 'mengws', '2006-09-09', 'mengws119', '2005-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS419480517778', '坂本拓哉', 0, '+81 70-7852-1894', 2, '860278042483520995', '23-kai, 1-6-1, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1993-06-01', 0, 0, 'takuyasa', '2013-08-16', 'sakamototak823', '2020-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS809461943943', '汪震南', 1, '+86 172-6474-7346', 1, '720248886060591060', '中国广州市天河区天河路146号34楼', '1987-08-11', 0, 0, 'wang6', '2005-01-01', 'zhennan901', '2008-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS139210781396', '羅玲玲', 1, '+86 134-3053-0751', 0, '243003218390693860', '中国北京市西城区西長安街165号华润大厦37室', '1988-02-16', 0, 0, 'lolingling', '2002-12-19', 'lolingling', '2010-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS685533066562', '原田詩乃', 1, '+1 213-447-2246', 3, '099193015886612210', '102 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1994-12-11', 0, 0, 'shino1230', '2007-08-12', 'hashin', '2009-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS468536978619', 'Julie Johnson', 1, '+86 755-2702-3729', 1, '095057097724789552', '中国深圳罗湖区蔡屋围深南东路896号华润大厦13室', '1999-01-03', 0, 0, 'johnsjuli9', '2003-02-12', 'juliejohnson', '2016-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS180636816812', '高青雲', 1, '+81 80-7697-0422', 3, '000010837954332535', '37F, 2-1-4 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1987-12-27', 0, 0, 'chingwankao1020', '2018-11-24', 'cwk', '2018-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS799632771447', '叶子韬', 0, '+86 755-813-8880', 2, '724487197199924234', 'Room 23, 472 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1989-05-03', 0, 0, 'yezitao6', '2000-04-13', 'ye1995', '2012-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS832823731853', '傅志遠', 0, '+86 174-0471-0245', 2, '431644907148327696', '中国北京市东城区东单王府井东街423号41楼', '1996-05-06', 0, 0, 'fuchiyuen', '2000-11-20', 'chiyuenfu', '2003-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS807794940732', '林俊宇', 0, '+1 838-052-5608', 4, '061988872037853563', '903 State Street Apt 16, Albany, NY 12203, United States', '1998-11-02', 0, 0, 'cylam', '2018-09-02', 'lacy', '2019-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS956198840755', 'Robert Myers', 1, '+86 176-9830-4441', 3, '273678507191645351', '49F, 518 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1998-05-04', 0, 0, 'robmyer', '2003-03-23', 'robert6', '2002-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS593841170678', '朱宇宁', 1, '+86 150-3763-4534', 4, '253591626931355651', '中国成都市锦江区红星路三段576号27栋', '1993-10-04', 0, 0, 'zhuyuni', '2003-09-30', 'yuningzhu90', '2018-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS405590604209', '有村樹', 1, '+86 148-1663-2028', 3, '325172468546255076', '中国深圳福田区景田东一街386号28室', '1995-03-28', 0, 0, 'itsukiarim', '2014-11-17', 'itsukia', '2016-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS763207842930', '應國賢', 0, '+81 52-665-5881', 4, '571592023425095732', '日本なごやし北区楠味鋺三丁目80番15号13階', '1985-04-01', 0, 0, 'yingkwokyin7', '2012-06-28', 'kyyin2', '2015-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS462474222669', 'Norma Warren', 0, '+1 838-317-7606', 2, '961750926536489096', '429 Central Avenue Apt 39, Albany, NY 12205, United States', '1990-01-31', 0, 0, 'warren315', '2018-02-08', 'norwar', '2012-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS863715399558', '戴致远', 1, '+86 755-087-1670', 4, '468894845473576303', '中国深圳龙岗区布吉镇西环路409号29号楼', '1996-08-11', 0, 0, 'dazhiyu', '2000-03-27', 'zhid4', '2008-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS201386322508', '市川花', 1, '+44 (1223) 28 5990', 4, '134383147077814402', 'Flat 20, 958 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1991-11-07', 0, 0, 'ichikawahana509', '2020-12-23', 'hanaichikawa', '2004-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS898070582892', '小山美月', 1, '+86 136-3186-3125', 2, '995021913659453361', 'Room 38, CR Building, 905 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1998-03-05', 0, 0, 'mitsukoyam4', '2016-01-05', 'mitsuk', '2020-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS980082286295', '曹榮發', 0, '+86 137-5664-7668', 1, '138352737024469893', '中国成都市锦江区红星路三段390号华润大厦29室', '1989-08-25', 0, 0, 'chowf', '2019-06-04', 'wingfat616', '2005-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS177966458613', 'Scott Scott', 0, '+81 90-7600-6122', 4, '529289709855719698', '日本札幌厚別区上野幌一条二丁目1番7号25階', '1995-12-22', 0, 0, 'scott1', '2007-11-18', 'scottscott', '2016-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS564128127888', '鐘嘉欣', 1, '+81 80-3168-7780', 2, '189162433645569975', '43-kai, 5-19-12 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1986-12-02', 0, 0, 'chungky1110', '2007-06-02', 'kychu04', '2008-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS468971262089', '程嘉伦', 1, '+1 718-123-9058', 2, '453668077681700698', '613 Flatbush Ave Apartment 37, Brooklyn, NY 11225, United States', '1995-08-05', 0, 0, 'chengjialun', '2005-01-26', 'jialun1971', '2010-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS295205222162', 'Kathy Cruz', 0, '+1 212-728-2194', 2, '648881006010185241', '322 West Houston Street 3rd Floor, New York, NY 10014, United States', '1996-02-27', 0, 0, 'cruzkat', '2000-04-13', 'kc614', '2002-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS901631999485', '沈睿', 0, '+81 74-647-5913', 4, '550408090528626435', '32-kai, 1-7-11 Saidaiji Akodacho, Nara, Japan', '1989-11-20', 0, 0, 'shenrui', '2019-03-05', 'shenru', '2002-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS012965557228', '沈宇宁', 1, '+44 5164 172762', 0, '598602122048249641', 'No.23 Main building, 384 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1987-01-23', 0, 0, 'sheyuning', '2009-07-18', 'shyuning12', '2004-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS469170853523', '張慧琳', 0, '+86 28-331-3160', 2, '067089754097691616', '中国成都市成华区双庆路250号10室', '1985-12-31', 0, 0, 'cheung616', '2004-10-17', 'wailamc1204', '2007-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS482121017961', '蒋岚', 0, '+44 (161) 921 5541', 1, '239328914517981309', 'Block 10, 637 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1991-08-01', 0, 0, 'jiangla7', '2008-10-11', 'lanjian', '2006-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS551507206784', 'Phyllis Taylor', 1, '+86 20-281-4074', 4, '649118062078579749', 'No.26 building, 542 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1988-01-05', 0, 0, 'phyllt', '2019-04-19', 'taphyll', '2016-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS912723101049', '朱家明', 1, '+86 10-6007-7347', 1, '098129245979419501', '21F, 904 West Chang''an Avenue, Xicheng District, Beijing, China', '1995-07-20', 0, 0, 'kamingchu00', '2019-10-06', 'chukm', '2003-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS309537075376', 'Amber West', 0, '+1 838-054-9168', 0, '910043496743375590', '394 State Street Apartment 21, Albany, NY 12203, United States', '1990-03-06', 0, 0, 'wamber1109', '2004-09-30', 'west825', '2016-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS431750997645', '孟致远', 1, '+1 213-598-8793', 0, '320380283176387944', '744 Alameda Street Suite 5, Los Angeles, CA 90002, United States', '1986-06-29', 0, 0, 'zhiymeng', '2011-11-29', 'mzhiyuan', '2018-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS171130970563', '馬永發', 0, '+86 20-641-7860', 1, '099287152990833024', '中国广州市天河区天河路490号35楼', '1990-01-06', 0, 0, 'mawingfat1221', '2004-01-01', 'wingfat1', '2012-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS562918184086', '青木舞', 0, '+44 5548 716988', 1, '908286316948128238', 'Flat 3, 535 Sackville St, Manchester, M1 3BB, United Kingdom', '1990-03-09', 0, 0, 'maiao211', '2012-09-22', 'maiao', '2013-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS724382581208', '翁安娜', 0, '+86 138-2112-1443', 4, '492066464205421160', '中国北京市東城区東直門內大街90号8栋', '1994-08-07', 0, 0, 'yung128', '2005-07-03', 'onnay', '2001-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS002805327382', '菅原翼', 1, '+81 52-436-9822', 2, '009555188860777558', '日本なごやし守山区瀬古東二丁目171番10号28階', '1988-07-11', 0, 0, 'sugtsubasa', '2012-03-07', 'sugawaratsu40', '2021-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS230776145422', '藤秀文', 1, '+86 21-5757-0979', 0, '231877133731229912', '中国上海市浦东新区健祥路493号38楼', '1996-09-25', 0, 0, 'tangsm', '2009-10-13', 'tasm211', '2013-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS255782468644', 'Russell Griffin', 0, '+86 180-0488-0430', 2, '451101433064573919', 'No.26 building, 670 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1994-06-14', 0, 0, 'russellgriffin1976', '2017-01-07', 'russgri4', '2003-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS795263862776', 'Leslie Mitchell', 1, '+86 160-2274-5239', 4, '113531347450360417', 'Room 47, 267 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1992-03-22', 0, 0, 'leslmi1942', '2021-09-02', 'mitchellleslie1955', '2009-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS861732859283', '邹子韬', 0, '+81 66-007-0694', 1, '289133835739544437', '日本おおさかし近江堂一丁目7番10号23号室', '1997-01-08', 0, 0, 'zouzitao60', '2021-02-07', 'zizou', '2005-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS857684092050', '斉藤架純', 0, '+86 162-2120-4283', 1, '174365360557745442', '20F, 55 Middle Huaihai Road, Huangpu District, Shanghai, China', '1990-09-01', 0, 0, 'saika1979', '2015-05-11', 'saikasumi63', '2017-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS201663986868', '和田彩乃', 0, '+44 (116) 922 2341', 2, '628984910172168391', 'Block 44, 471 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1997-09-13', 0, 0, 'ayanowad', '2007-06-12', 'waayano5', '2005-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS854040616239', '酒井海斗', 0, '+1 838-194-5233', 1, '654435075261170573', '448 Broadway Apartment 32, Albany, NY 12207, United States', '1990-12-28', 0, 0, 'kaitos', '2014-10-17', 'sakaikaito', '2019-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS580391321847', '汤子异', 1, '+86 191-7203-3613', 4, '262101805415932993', '中国东莞坑美十五巷455号16楼', '1992-04-30', 0, 0, 'tangzi', '2016-11-23', 'zitang', '2007-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS388366833983', '中森陽菜', 0, '+81 52-063-8147', 1, '150979124150553781', '日本なごやし熱田区千年二丁目5番19号46階', '1985-11-01', 0, 0, 'hinanakamori3', '2002-03-04', 'hinakamori', '2004-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS376325327679', 'Kimberly Richardson', 0, '+81 66-981-8445', 4, '022247378214483831', '日本おおさかし西成区天神ノ森二丁目1番16号20階', '1989-12-02', 0, 0, 'rickimbe', '2019-08-18', 'krich', '2011-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS383707526938', '邱志遠', 1, '+1 718-353-7469', 3, '774863466169327249', '260 1st Ave Apartment 23, Brooklyn, NY 11220, United States', '1992-09-22', 0, 0, 'yau711', '2001-03-30', 'yauchiyuen57', '2019-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS586902021436', '前田悠人', 0, '+44 7933 451533', 4, '226988145016866159', 'Unit 35, Oxford Eco Centre, 519 New Street, Birmingham, B2 4DB, United Kingdom', '1989-02-23', 0, 0, 'ymaed', '2005-10-07', 'maeyuto', '2017-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS371131521293', '斎藤優奈', 0, '+86 175-1577-2769', 4, '024301085250822465', '中国上海市浦东新区橄榄路233号41栋', '1991-11-04', 0, 0, 'saitoyuna', '2008-03-16', 'ysaito', '2007-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS676303157310', '姜嘉伦', 0, '+44 7181 299416', 4, '563304835544703678', 'Flat 25, 183 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1997-03-10', 0, 0, 'jj7', '2020-05-12', 'jiangjialun', '2012-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS601461056390', '谭宇宁', 1, '+86 181-3385-2491', 3, '527892531822988654', '中国东莞东泰五街744号33室', '1989-02-03', 0, 0, 'yuningtan', '2009-09-06', 'yuningt', '2006-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS512195501983', '車發', 1, '+81 66-796-3950', 3, '315207262503597733', '日本おおさかし西成区天神ノ森二丁目1番10号3階', '1995-09-14', 0, 0, 'cfat3', '2011-05-09', 'chefat503', '2007-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS553801531699', 'Kathryn Rice', 1, '+1 330-382-9807', 3, '127958498073035773', '649 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1985-01-01', 0, 0, 'ricekathryn1023', '2007-03-31', 'kathrice83', '2002-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS886847423478', '小島陽太', 0, '+86 28-153-9667', 2, '348159525091521807', 'Room 23, CR Building, 756 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1993-10-04', 0, 0, 'kojima204', '2003-02-12', 'yotakojima', '2016-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS757568385455', '湯嘉欣', 0, '+44 (151) 047 8303', 4, '986767500403075333', 'Block 30, 460 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1990-02-13', 0, 0, 'kyton7', '2000-03-02', 'tongkaryan229', '2008-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS372913084492', '野村愛梨', 0, '+1 213-530-0765', 2, '388074860739804860', '556 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1990-07-30', 0, 0, 'nomuraair', '2011-11-25', 'airin', '2005-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS390376417641', '金子愛梨', 0, '+81 74-380-7818', 1, '106206788843735861', 'Rm. 40, 3-9-13 Gakuenminami, Nara, Japan', '1986-08-05', 0, 0, 'airka5', '2008-10-31', 'airikaneko1112', '2004-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS412128521658', '戚青雲', 0, '+86 146-3933-0344', 3, '777840372977495261', '44F, 505 Ganlan Rd, Pudong, Shanghai, China', '1992-01-17', 0, 0, 'cwchic', '2014-05-01', 'chicchingwan', '2005-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS972732511519', '竹内湊', 1, '+1 212-378-5804', 3, '876618450057832237', '361 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1994-01-05', 0, 0, 'tmina2', '2014-10-08', 'takeuchi217', '2018-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS808765150020', 'Miguel Marshall', 0, '+86 769-1921-6241', 1, '220274034810269621', '10F, 560 Shanhu Rd, Dongguan, China', '1995-10-25', 0, 0, 'migumarshall', '2013-10-12', 'miguelmars', '2011-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS515454638867', '蔣明詩', 0, '+81 3-0903-9902', 1, '783845656728273900', 'Rm. 11, 2-3-8 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-06-23', 0, 0, 'mschiang1', '2006-05-12', 'mingszech401', '2005-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS002045062632', 'Virginia Edwards', 1, '+86 165-1832-1168', 0, '475318061498772202', '中国中山京华商圈华夏街470号12室', '1989-09-28', 0, 0, 'virgiedwards', '2019-11-21', 'virginiaedwards05', '2001-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS504180669886', 'Rita Wilson', 1, '+86 10-599-1470', 4, '979471832006058627', '中国北京市朝阳区三里屯路455号2楼', '1993-12-06', 0, 0, 'wilsorit', '2018-08-10', 'wirita', '2020-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS114525486678', '雷天榮', 0, '+1 312-952-7261', 1, '502628891257433405', '501 Pedway Suite 23, Chicago, IL 60601, United States', '1991-03-22', 0, 0, 'twloui1107', '2020-03-04', 'twlo', '2009-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS235492618841', '郭秀英', 0, '+1 718-400-1187', 2, '363745874748414442', '992 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1991-03-08', 0, 0, 'xiuyingg101', '2019-01-31', 'gxiu1', '2019-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS663408717369', '前田蓮', 1, '+86 189-4659-4063', 3, '995397463405206450', '中国北京市延庆区028县道493号25楼', '1987-09-18', 0, 0, 'rmaeda508', '2008-12-29', 'maeren', '2016-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS699360813049', '元安娜', 0, '+86 755-9167-6350', 2, '632918002160462671', 'No.30 building, 973 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1988-04-13', 0, 0, 'onyu', '2021-09-25', 'onna720', '2016-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS460060170757', '陶思妤', 1, '+86 195-1991-5831', 1, '851656864245423161', 'Room 12, CR Building, 691 Lefeng 6th Rd, Zhongshan, China', '1990-01-08', 0, 0, 'syt', '2003-04-11', 'syt', '2003-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS815189788265', '梁震南', 1, '+1 213-852-2810', 2, '237988962606491631', '793 Figueroa Street Apartment 42, Los Angeles, CA 90037, United States', '1998-04-18', 0, 0, 'zhennan1941', '2015-05-28', 'zhennanliang95', '2005-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS536241953620', '田村大和', 0, '+81 70-9442-4810', 3, '016553920962475834', '33-kai, 1-6-9, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1993-04-14', 0, 0, 'yamatota', '2003-12-18', 'tamuray', '2006-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS231938610780', '毛子异', 1, '+86 153-1523-7679', 2, '244797474166879421', 'Room 2, 456 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1989-05-21', 0, 0, 'ziyi1968', '2004-05-07', 'mao7', '2008-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS916657981235', 'Patricia Salazar', 0, '+81 90-1237-1860', 3, '982290858208104400', 'Rm. 7, 3-9-18 Gakuenminami, Nara, Japan', '1994-06-20', 0, 0, 'patricia1', '2005-07-17', 'patrsala', '2012-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS464045268402', '薛秀文', 0, '+86 760-3769-4785', 1, '405826353705257756', 'No.34 building, 560 Lefeng 6th Rd, Zhongshan, China', '1997-10-05', 0, 0, 'sit3', '2010-03-17', 'ssm', '2019-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS058608771151', 'Helen Hawkins', 1, '+86 21-7180-4799', 1, '942906501283710864', 'Room 8, 896 Hongqiao Rd., Xu Hui District, Shanghai, China', '1987-09-01', 0, 0, 'hawkih', '2008-09-18', 'helenhaw', '2017-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS835093309781', '陶心穎', 1, '+86 192-0319-4498', 0, '227217450557236512', 'No.15 building, 875 Huanqu South Street 2nd Alley, Dongguan, China', '1994-02-15', 0, 0, 'taosw', '2007-01-12', 'taosw2', '2005-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS839844060382', '段杰宏', 0, '+86 186-1449-6152', 1, '011998994735884904', 'Room 1, CR Building, 137 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1993-11-13', 0, 0, 'jied', '2014-09-17', 'duanji', '2012-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS014784221101', '汪岚', 0, '+86 10-0296-2193', 0, '248929497416187544', '中国北京市朝阳区三里屯路144号23室', '1992-10-01', 0, 0, 'lawan85', '2016-09-17', 'wangl', '2001-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS058812640718', '高世榮', 0, '+86 760-5759-9135', 2, '156770309318560628', '中国中山京华商圈华夏街690号20号楼', '1996-05-31', 0, 0, 'kaosw1966', '2018-07-21', 'saiwingkao630', '2003-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS480056129173', 'Harry Munoz', 1, '+44 5844 901791', 1, '403656830709736771', 'Unit 16, Oxford Eco Centre, 525 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1986-12-08', 0, 0, 'mha', '2017-04-12', 'harry915', '2018-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS942059867839', 'Clifford Martinez', 0, '+81 11-890-0073', 3, '710963339013173376', '33F, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1993-09-10', 0, 0, 'martinezc', '2011-02-19', 'mclifford', '2007-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS782724017306', '斉藤陸', 0, '+44 7380 355046', 3, '616133965030487765', 'Block 2, 69 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1989-06-17', 0, 0, 'sr1952', '2006-04-30', 'saito1015', '2013-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS074517658244', '尹慧嫻', 1, '+81 70-1413-2186', 1, '282600229447836280', 'Rm. 9, 5-4-19 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1990-05-15', 0, 0, 'whyin201', '2015-05-22', 'waihanyin', '2004-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS958224980507', '森美羽', 1, '+86 170-3951-1090', 4, '432073344527609503', '中国上海市闵行区宾川路180号华润大厦1室', '1990-10-10', 0, 0, 'morimiu628', '2002-10-12', 'miu112', '2003-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS921394718193', '段晓明', 0, '+81 90-1940-6046', 2, '764913009233157642', '36F, 4-9-12 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-05-07', 0, 0, 'xiaoming1988', '2014-08-21', 'xiaod11', '2011-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS191614822164', '島田陽菜', 1, '+86 199-4006-4041', 1, '559059975780689093', 'No.17 building, 947 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1993-06-20', 0, 0, 'shimada3', '2002-11-25', 'shimhina16', '2011-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS086787536952', '王安娜', 1, '+86 21-374-0151', 3, '283675773194553258', '中国上海市黄浦区淮海中路272号42楼', '1993-03-05', 0, 0, 'onwong', '2004-10-30', 'onwong313', '2021-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS468106189095', '前田結翔', 0, '+86 180-1984-9290', 3, '185475444761189120', '中国北京市海淀区清河中街68号424号6楼', '1998-04-28', 0, 0, 'maedayuito', '2008-02-18', 'maeda7', '2019-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS342720147780', 'Josephine Nguyen', 1, '+81 52-376-0266', 1, '280018461908559210', '日本なごやし瑞穂区河岸町四丁目20番5号20階', '1991-10-06', 0, 0, 'josephine8', '2003-10-24', 'njosephine9', '2005-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS917755890181', '陶震南', 1, '+81 90-1201-0832', 3, '767269425741793309', '5F, 5-2-18 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1988-05-23', 0, 0, 'zhenta', '2018-09-09', 'ztao927', '2008-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS766295857204', '姚發', 1, '+1 838-565-9562', 2, '765631874311682726', '341 Central Avenue Apartment 29, Albany, NY 12206, United States', '1991-12-15', 0, 0, 'yefat', '2004-02-17', 'faty', '2001-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS536390848471', '酒井百恵', 0, '+1 213-133-9880', 1, '955826071448154349', '180 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1998-04-24', 0, 0, 'sakamom', '2013-07-04', 'sakamomoe', '2007-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS053651065682', '吕云熙', 1, '+81 74-155-6402', 3, '492698949713249938', '5F, 18 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-10-11', 0, 0, 'luyunxi', '2020-02-20', 'ylu06', '2017-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS981241318088', '廖國權', 1, '+44 5054 086766', 2, '781889685198016816', 'Block 28, 956 Regent Street, London, W1B 2LX, United Kingdom', '1998-08-05', 0, 0, 'kkliao1963', '2012-06-06', 'kkliao', '2010-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS652506188262', 'Herbert Robertson', 1, '+86 20-158-7508', 4, '521157907113469740', 'No.7 building, 600 Tianhe Road, Tianhe District, Guangzhou, China', '1997-11-04', 0, 0, 'robertsonhe', '2005-03-11', 'herbertrobe', '2000-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS131416466362', 'Evelyn Herrera', 0, '+44 7297 226164', 4, '857215120964326033', 'No.12 Main building, 942 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1987-06-22', 0, 0, 'herreraevelyn225', '2018-12-29', 'evelyherre9', '2008-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS652304138380', '李睿', 0, '+86 190-5233-1562', 2, '538634436183754325', 'Room 29, CR Building, 568 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1992-12-23', 0, 0, 'lir', '2008-05-23', 'rui510', '2005-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS190492707666', '和田陽太', 1, '+1 838-983-0227', 2, '795962250344493869', '446 Broadway 3rd Floor, Albany, NY 12207, United States', '1990-04-14', 0, 0, 'yotawada2013', '2014-08-17', 'waday', '2019-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS983929058666', '中山大和', 1, '+81 90-3161-9925', 1, '734178750150661248', '日本おおさかし西成区出城一丁目1番3号31号室', '1993-03-22', 0, 0, 'ynakayama97', '2004-07-01', 'yamatonakayama', '2012-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS676356723665', 'Terry Myers', 1, '+81 66-938-7923', 2, '315009450707076214', '日本おおさかし西成区天神ノ森二丁目1番2号48階', '1997-12-05', 0, 0, 'myers69', '2002-06-02', 'terry3', '2007-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS116861592052', '市川健太', 0, '+86 143-0751-4555', 2, '646421160421794144', 'No.34 building, 446 Shanhu Rd, Dongguan, China', '1986-12-03', 0, 0, 'ichikawak', '2012-01-31', 'kenta10', '2001-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS236820514026', '樂梓軒', 0, '+86 28-2871-4663', 0, '044277716279695655', 'No.36 building, 635 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1998-01-24', 0, 0, 'thlo', '2007-03-04', 'thlok', '2004-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS436949020003', '成家文', 1, '+81 80-6730-3012', 4, '397394655428570154', '30-kai, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1994-04-25', 0, 0, 'kmshing', '2021-02-12', 'kamas', '2000-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS231590937661', 'Melvin Torres', 0, '+44 (116) 855 9764', 1, '597986749348522753', 'Unit 2, Oxford Eco Centre, 878 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1997-01-08', 0, 0, 'metor', '2006-07-06', 'melvin1228', '2000-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS912990568104', '田明', 1, '+1 718-646-6198', 3, '511933693913636372', '539 Bergen St Apartment 30, Brooklyn, NY 11217, United States', '1985-01-29', 0, 0, 'ming719', '2005-09-15', 'tinm802', '2014-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS683269588573', '韓青雲', 0, '+81 80-3812-6018', 1, '373493535423732316', '日本おおさかし平野区加美東四丁目9番7号43号室', '1995-07-01', 0, 0, 'chingwan721', '2012-10-19', 'cwhan8', '2009-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS955711632980', 'Raymond Russell', 1, '+81 74-557-0605', 2, '536339701735267051', 'Rm. 3, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1999-01-29', 0, 0, 'russeraymond', '2006-06-08', 'rayruss', '2009-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS607485626947', '杨岚', 0, '+44 (1865) 44 1645', 2, '624589138147355815', 'Unit 37, Oxford Eco Centre, 72 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1998-11-28', 0, 0, 'yanglan827', '2005-09-22', 'lanyang', '2018-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS185228719091', '戴宇宁', 1, '+44 7038 980249', 0, '656839627480665652', 'No.42 Main building, 801 Maddox Street, London, W1S 1PU, United Kingdom', '1996-09-12', 0, 0, 'dyuning710', '2003-05-12', 'dai1978', '2021-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS537583030303', 'Raymond Thompson', 1, '+86 20-200-8742', 0, '936003810642680764', 'No.33 building, 562 Tianhe Road, Tianhe District, Guangzhou, China', '1986-12-21', 0, 0, 'rathompson', '2012-03-02', 'raymt', '2006-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS173824377161', '黎晓明', 0, '+44 (161) 866 5738', 2, '510919995558445186', 'Flat 12, 232 Mosley St, Manchester, M2 3AQ, United Kingdom', '1992-06-06', 0, 0, 'lixiaoming1015', '2011-05-06', 'xiaomingli', '2008-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS687856501089', '何安琪', 0, '+81 80-7324-6329', 1, '801122919597594384', '21-kai, 2-5-3 Chitose, Atsuta Ward, Nagoya, Japan', '1994-02-14', 0, 0, 'ahe', '2002-11-30', 'heanqi', '2008-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS652878407281', '野村大地', 0, '+86 137-3134-9802', 1, '177172521103179181', '中国北京市东城区东单王府井东街280号47室', '1995-12-10', 0, 0, 'dan', '2020-09-13', 'daichinomura', '2021-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS669919375922', '杜杰宏', 0, '+86 181-5371-2089', 2, '828798137463231210', '中国中山京华商圈华夏街680号47号楼', '1998-04-02', 0, 0, 'duji', '2017-04-02', 'dujiehong', '2009-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS773416761397', '吕嘉伦', 0, '+44 5246 315045', 3, '401135673964876975', 'Block 39, 325 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1994-01-18', 0, 0, 'luj', '2000-12-10', 'lj80', '2008-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS488784049403', '柴田大地', 0, '+86 10-2048-7395', 2, '383178946880639319', '中国北京市東城区東直門內大街573号21室', '1989-01-13', 0, 0, 'daichishi', '2018-11-30', 'sdaichi94', '2002-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS407748172002', '苗小慧', 1, '+86 755-272-6586', 1, '046637994871582918', '26F, 351 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1990-02-24', 0, 0, 'miu3', '2002-10-12', 'misiuwai', '2009-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS664729145587', '余宇宁', 1, '+81 80-4043-6726', 1, '057924563592488205', '日本ならし学園南三丁目9番8号32階', '1991-01-25', 0, 0, 'yuningyu', '2021-05-21', 'yuy', '2003-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS723731534533', 'Stanley Robertson', 1, '+81 74-697-1337', 2, '057698343426974604', '日本ならし西大寺赤田町一丁目7番19号6階', '1988-05-16', 0, 0, 'robertson8', '2014-04-17', 'stanleyro923', '2013-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS916196066146', 'Barbara Stevens', 0, '+81 74-283-1554', 0, '207615795348963121', 'Rm. 35, 15 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-11-21', 0, 0, 'barbara6', '2000-09-24', 'stevensbarbara', '2009-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS357129132559', '白志遠', 0, '+44 (20) 0211 9905', 4, '869910647779466186', 'Unit 21, Oxford Eco Centre, 209 Pollen Street, London, W1S 1NG, United Kingdom', '1992-08-15', 0, 0, 'pak607', '2013-12-28', 'pakchiy925', '2014-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS935125687834', '木村葉月', 1, '+81 11-326-7153', 3, '767642969398503076', '42F, 13-3-20 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1995-06-12', 0, 0, 'kimura4', '2011-08-20', 'kimuraha', '2005-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS927871398515', '中森愛梨', 0, '+81 80-3082-2306', 3, '380603573960122944', '5F, 11 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1991-12-02', 0, 0, 'airin228', '2007-07-24', 'nakairi', '2020-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS136538228352', '方家強', 0, '+86 159-9776-2160', 2, '711097963888453753', 'Room 11, CR Building, 208 Xiaoping E Rd, Baiyun , Guangzhou, China', '1998-10-24', 0, 0, 'kakeungf7', '2004-03-07', 'kakeungfo', '2020-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS009612662465', '河野桜', 1, '+44 (116) 518 2941', 2, '567935595123541463', 'Unit 1, Oxford Eco Centre, 50 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1986-09-03', 0, 0, 'konosakura', '2020-03-19', 'sakura4', '2008-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS998558483590', '龚璐', 0, '+44 5844 551802', 3, '735444200276663446', 'No.2 Main building, 635 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1993-10-03', 0, 0, 'lugong', '2017-11-09', 'glu', '2016-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS412719605617', 'Judy Gibson', 1, '+44 7323 564685', 1, '889820283018042006', 'Block 4, 226 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1986-09-04', 0, 0, 'judygibs908', '2017-03-01', 'judygib', '2020-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS646837059442', '何致远', 0, '+1 614-920-9545', 2, '622926631135288271', '392 East Cooke Road Suite 48, Columbus, GA 43214, United States', '1987-10-16', 0, 0, 'he96', '2010-08-09', 'zhiyuh', '2006-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS588520851710', '孙安琪', 1, '+1 718-282-6353', 2, '117677405781599162', '949 Bergen St Suite 39, Brooklyn, NY 11217, United States', '1987-07-03', 0, 0, 'anqi1964', '2011-02-15', 'suanqi112', '2019-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS712234989234', '松井玲奈', 0, '+81 80-1875-2846', 4, '436080652735331387', 'Rm. 12, 2-5-19 Chitose, Atsuta Ward, Nagoya, Japan', '1992-09-04', 0, 0, 'rmatsu5', '2017-12-06', 'matsurena', '2015-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS690547299596', '武宇宁', 1, '+81 70-6579-4868', 1, '898261182770930099', '日本札幌厚別区上野幌一条二丁目1番14号48号室', '1996-11-21', 0, 0, 'wu127', '2016-12-22', 'yuning1981', '2012-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS678192108357', '湯國權', 1, '+86 175-1250-5872', 4, '847875655244560954', '中国深圳福田区景田东一街37号15室', '1995-08-21', 0, 0, 'tong85', '2008-03-09', 'tonkk1009', '2021-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS078312106932', '孫學友', 0, '+86 28-7792-0057', 4, '931229126804835082', '中国成都市成华区双庆路933号7栋', '1986-08-17', 0, 0, 'hsuan83', '2014-10-23', 'hsuanhy4', '2012-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS309260205021', '福田詩乃', 1, '+81 70-0267-1325', 2, '946704463229551591', '日本ならし西大寺赤田町一丁目7番6号35階', '1987-05-03', 0, 0, 'fukshin', '2013-10-31', 'fuksh', '2009-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS136846715844', '小野拓哉', 1, '+81 80-2387-4898', 0, '392330917548388049', '日本おおさかし近江堂一丁目7番15号42階', '1987-05-08', 0, 0, 'takuya4', '2010-12-14', 'takuyao', '2004-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS930517818957', 'Katherine Carter', 1, '+1 212-558-7940', 1, '073624819276968521', '131 West Houston Street Suite 4, New York, NY 10014, United States', '1992-03-18', 0, 0, 'katherine1954', '2000-07-05', 'carter8', '2001-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS808516642192', '許力申', 1, '+86 760-205-0164', 1, '616823114334512526', '中国中山京华商圈华夏街111号3号楼', '1997-03-06', 0, 0, 'lshu', '2011-11-08', 'hui10', '2006-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS375009520853', '陳淑怡', 0, '+81 3-6824-1663', 2, '352435356513397478', '47-kai, 1-6-1, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1988-08-24', 0, 0, 'sycha1116', '2006-08-14', 'csukyee', '2021-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS139030583864', 'Jamie Fox', 0, '+81 11-842-8423', 4, '269407283508848373', '日本札幌厚別区上野幌一条二丁目1番18号38号室', '1998-02-11', 0, 0, 'fox828', '2020-10-26', 'jamie702', '2015-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS352442419956', '鄺詠詩', 0, '+86 185-5076-7615', 4, '227716746729824613', 'No.6 building, 50 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1991-01-19', 0, 0, 'wskwong', '2021-05-04', 'kwongws811', '2019-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS375588760015', 'Ethel Wright', 1, '+44 7665 224117', 1, '484853566000771374', 'Flat 46, 84 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1995-01-16', 0, 0, 'wriethel', '2014-03-17', 'ethew', '2002-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS269394424127', '张致远', 0, '+44 7403 715806', 2, '485156521195367982', 'Block 12, 459 Park End St, Oxford, OX1 1JD, United Kingdom', '1996-09-21', 0, 0, 'zhz', '2007-06-23', 'zzhang1212', '2010-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS107591507251', 'Willie Henderson', 1, '+81 74-200-3535', 0, '942083177963381624', '日本ならし大和郡山市本庄町一丁目1番13号12階', '1989-02-05', 0, 0, 'hendew', '2002-03-29', 'willieh9', '2019-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS415193782858', '高慧儀', 0, '+81 52-864-6847', 3, '319752078397640721', '日本なごやし北区清水三丁目19番11号25号室', '1996-11-04', 0, 0, 'kao8', '2002-08-16', 'wykao', '2007-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS094216583705', 'Diane Nichols', 1, '+81 66-486-1238', 1, '803209476734065277', '日本おおさかし近江堂一丁目7番8号36階', '1997-03-21', 0, 0, 'dianichols', '2020-06-08', 'nd86', '2008-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS770473065073', '向發', 1, '+44 7674 248716', 4, '582131942810968179', 'No.4 Main building, 708 Hanover St, Liverpool, L1 4AF, United Kingdom', '1996-08-09', 0, 0, 'faheung', '2018-09-17', 'fath', '2017-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS463339087727', '方子异', 1, '+86 755-2672-1125', 4, '650146476286748606', '中国深圳龙岗区学园一巷895号11号楼', '1990-10-04', 0, 0, 'ziyif65', '2000-12-24', 'zifang1', '2007-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS844486510440', '森美咲', 0, '+81 70-8106-0863', 4, '846379068721824628', '日本札幌厚別区上野幌一条二丁目1番8号31号室', '1996-03-13', 0, 0, 'morimisaki', '2015-04-08', 'mormisa', '2009-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS835305913677', 'Jason Olson', 0, '+1 838-707-6525', 1, '506854795944224566', '290 Broadway Apartment 29, Albany, NY 12207, United States', '1989-08-11', 0, 0, 'olsonjason4', '2010-01-07', 'jolson', '2021-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS852435510896', '雷岚', 1, '+44 (116) 886 5547', 2, '952072172621013175', 'Block 35, 841 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1998-04-18', 0, 0, 'lalei', '2021-02-25', 'lanlei10', '2020-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS407866285442', '中島葵', 1, '+86 150-5384-0485', 3, '625287019456446240', 'Room 12, 617 028 County Rd, Yanqing District, Beijing, China', '1996-02-24', 0, 0, 'aoinakajima', '2019-02-21', 'nakajima126', '2004-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS519098991065', 'Clifford Kelly', 1, '+86 21-985-6181', 2, '659364327761428840', 'No.29 building, 956 Hongqiao Rd., Xu Hui District, Shanghai, China', '1992-06-25', 0, 0, 'cliffordkelly1983', '2019-07-03', 'clifford620', '2019-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS565429183019', '酒井蓮', 1, '+1 213-161-7741', 3, '142626982130130849', '371 S Broadway Apartment 21, Los Angeles, CA 90015, United States', '1993-11-24', 0, 0, 'rens', '2012-08-01', 'sakai810', '2016-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS066467885820', '桜井桜', 1, '+86 131-3110-7988', 0, '054939450304131542', '中国广州市海珠区江南西路855号46室', '1990-03-18', 0, 0, 'sakura10', '2010-09-11', 'saksakura', '2013-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS026582595776', '岡田陸', 1, '+81 11-441-5614', 3, '208304603472485694', '日本札幌中央区宮の森四条六丁目1番15号24階', '1989-05-19', 0, 0, 'riku2005', '2016-11-13', 'oriku1961', '2019-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS214182150222', 'Kim Washington', 0, '+44 (151) 270 7258', 3, '374179889968977085', 'Block 44, 800 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1992-01-16', 0, 0, 'kim10', '2008-06-20', 'kwashington', '2003-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS540251715555', 'Albert Hill', 0, '+81 74-980-9087', 0, '032448581287693922', '日本ならし西大寺赤田町一丁目7番6号10号室', '1998-10-10', 0, 0, 'hill45', '2003-12-25', 'hill1987', '2006-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS597424227955', 'Esther Lee', 1, '+86 175-5593-0128', 3, '622317126423278086', '中国广州市越秀区中山二路109号30栋', '1994-08-11', 0, 0, 'le1948', '2009-09-14', 'leeesthe', '2017-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS795287572581', 'Pauline Simpson', 0, '+81 70-0552-0333', 4, '454127985419585629', 'Rm. 6, 6-1-9, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1998-08-21', 0, 0, 'simpson10', '2010-01-22', 'sipauline', '2006-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS241872081140', '蔡麗欣', 1, '+86 130-6755-8293', 3, '703893457604470422', 'Room 29, 168 Shanhu Rd, Dongguan, China', '1985-11-22', 0, 0, 'choilaiyan', '2012-11-26', 'choilaiyan1985', '2003-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS642652423335', 'Linda Sanchez', 0, '+81 80-7491-3846', 0, '108048713650111997', 'Rm. 41, 6-1-3, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-07-19', 0, 0, 'lindas61', '2000-10-30', 'lindas2013', '2009-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS249934744924', '狄家文', 1, '+81 66-247-4334', 2, '105178909974709127', 'Rm. 20, 1-7-12 Omido, Higashiosaka, Osaka, Japan', '1989-01-23', 0, 0, 'tikm1940', '2013-12-01', 'tkaman101', '2003-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS449648028893', '文德華', 1, '+44 (161) 908 1347', 4, '860698133572998090', 'Block 6, 496 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1990-12-06', 0, 0, 'matakwah', '2010-11-15', 'man3', '2017-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS714120886939', '江發', 1, '+81 11-696-2203', 3, '134290568424604399', '日本札幌厚別区上野幌一条二丁目1番7号5階', '1988-02-16', 0, 0, 'konfat', '2005-04-27', 'kongfat', '2007-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS126126052871', '馮梓晴', 1, '+44 (1223) 99 6084', 4, '882035545639174044', 'Unit 10, Oxford Eco Centre, 263 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1988-08-29', 0, 0, 'tszchingfung', '2000-03-10', 'tszchfung', '2010-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS102451606882', 'Marvin Gutierrez', 0, '+81 66-813-5015', 1, '319811049377754171', '日本おおさかし西成区天神ノ森二丁目1番16号49階', '1993-02-25', 0, 0, 'mgutierrez50', '2013-03-20', 'gumar', '2010-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS323833951676', 'Monica Burns', 1, '+81 52-422-5885', 0, '805237174168390392', '日本なごやし瑞穂区河岸町四丁目20番12号41階', '1989-04-15', 0, 0, 'burnsmoni1969', '2018-09-25', 'mb217', '2016-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS767895689219', '韩子异', 1, '+81 11-846-3307', 3, '912671771702337983', '日本札幌白石区菊水三条五丁目2番14号46階', '1989-12-31', 0, 0, 'hanzi', '2006-01-12', 'hanziyi3', '2004-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS248681576698', 'Amy Reyes', 1, '+86 177-2266-0018', 1, '917683545362608387', '中国深圳罗湖区清水河一路819号28号楼', '1991-06-09', 0, 0, 'reyeamy1116', '2002-11-07', 'amreyes8', '2010-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS014622449260', '廖秀文', 0, '+86 194-7846-2910', 4, '766054673473642234', '32F, 952 Shanhu Rd, Dongguan, China', '1994-01-18', 0, 0, 'liasm52', '2014-05-01', 'saumanli', '2001-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS205970012200', '袁潤發', 1, '+81 70-7328-1208', 2, '190234400544434284', '30-kai, 4-9-8 Kamihigashi, Hirano Ward, Osaka, Japan', '1992-02-10', 0, 0, 'yfyuen7', '2011-03-23', 'yunfaty', '2014-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS159689290582', '魏杰宏', 1, '+86 10-129-9503', 3, '937603757867013113', '中国北京市朝阳区三里屯路214号15室', '1995-08-02', 0, 0, 'jwei', '2016-08-28', 'jiehwei4', '2021-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS728348914479', '斎藤架純', 1, '+44 (116) 360 1360', 4, '082352645929024591', 'Flat 31, 430 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1997-09-07', 0, 0, 'saitok', '2018-06-28', 'saito1959', '2015-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS147283744469', '谷裕玲', 0, '+81 70-1367-5494', 4, '162313306064068969', '日本東京港区東新橋一丁目5番19号27階', '1993-12-04', 0, 0, 'yulingkoo7', '2004-01-21', 'yulikoo6', '2009-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS157597952634', '吉田海斗', 1, '+44 7304 692241', 1, '512890849509615750', 'Unit 8, Oxford Eco Centre, 581 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1995-04-30', 0, 0, 'kay', '2017-02-19', 'kaitoyoshida', '2003-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS449449642772', '毛家玲', 1, '+86 769-2067-3610', 3, '935831986330958002', '中国东莞珊瑚路501号50楼', '1997-10-17', 0, 0, 'klmo1219', '2003-04-21', 'mkl', '2005-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS734008708139', '姜詠詩', 0, '+44 7715 649167', 3, '526732197072015124', 'Flat 4, 164 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1998-06-22', 0, 0, 'wingsze99', '2021-07-19', 'wsc4', '2001-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS041015810603', '横山葉月', 0, '+44 7315 775146', 4, '756822897625979947', 'Flat 22, 698 Portland St, Manchester, M1 3LA, United Kingdom', '1998-09-22', 0, 0, 'yokoyhazuki', '2009-01-23', 'yhaz', '2011-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS346897775825', '河野美羽', 1, '+1 614-557-8063', 1, '913730577847392784', '94 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1997-10-11', 0, 0, 'miukono', '2003-11-15', 'miukono904', '2010-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS320736138767', '李嘉伦', 1, '+81 80-0734-7032', 3, '073208528527080114', '日本おおさかし西成区天神ノ森二丁目1番12号16階', '1985-04-30', 0, 0, 'lijialu1', '2005-08-04', 'jialli413', '2012-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS400583074415', 'Frederick Hernandez', 1, '+86 149-5629-4590', 1, '217322001311563377', '中国深圳罗湖区田贝一路583号24楼', '1995-07-04', 0, 0, 'frederick930', '2009-01-04', 'frederick1015', '2001-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS367175858981', '福田光', 0, '+86 760-827-1757', 1, '915929401299329814', '中国中山紫马岭商圈中山五路586号19楼', '1986-09-30', 0, 0, 'hikarfuku', '2021-04-17', 'hikarufukuda', '2005-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS434941703137', '關淑怡', 0, '+44 5143 649781', 0, '772572946014952944', 'No.25 Main building, 573 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1987-02-07', 0, 0, 'sykwan3', '2009-08-14', 'sukyeekw', '2017-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS571771906473', '長谷川美咲', 0, '+86 158-3553-7187', 2, '403579502236886550', 'Room 41, CR Building, 181 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1989-07-17', 0, 0, 'hasegawa7', '2010-10-07', 'mish1', '2008-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS272268998827', '石田葵', 0, '+86 152-8499-3377', 2, '834467024216000963', '中国广州市海珠区江南西路441号21楼', '1990-12-24', 0, 0, 'aoiishid', '2004-11-27', 'aoi82', '2011-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS106514956619', '江發', 1, '+1 312-279-4845', 2, '729772566590786352', '989 Pedway Apt 50, Chicago, IL 60601, United States', '1990-01-23', 0, 0, 'kong1953', '2014-06-21', 'fatkong1217', '2002-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS028348779836', '岩崎愛梨', 1, '+86 20-9302-7534', 4, '674653593770486855', '中国广州市越秀区中山二路744号5栋', '1995-08-07', 0, 0, 'iwasakiai', '2003-04-29', 'iairi', '2000-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS211842060324', 'Gerald West', 0, '+86 20-660-9224', 3, '655849421995569654', '中国广州市越秀区中山二路907号6栋', '1990-11-08', 0, 0, 'geraldwest', '2009-02-10', 'westg1995', '2003-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS716287338908', '鄧秀文', 0, '+44 7794 914268', 2, '704883836161000814', 'Block 13, 720 Maddox Street, London, W1S 1PU, United Kingdom', '1993-03-23', 0, 0, 'saumantan', '2008-05-03', 'saumantang', '2010-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS276954173864', 'Nicole Watson', 0, '+81 74-265-1589', 2, '160626020584732503', '日本ならし学園南三丁目9番19号21号室', '1998-02-06', 0, 0, 'nicolewatson8', '2003-10-24', 'nicole727', '2009-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS247148807544', 'Christina Long', 0, '+1 312-601-5828', 0, '146844085508826721', '752 North Michigan Ave Suite 17, Chicago, IL 60611, United States', '1996-11-12', 0, 0, 'chrilong', '2001-08-26', 'longchri04', '2004-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS700387651945', '常嘉伦', 1, '+86 148-1070-7356', 2, '540840525298550806', '6F, 274 East Wangfujing Street, Dongcheng District , Beijing, China', '1997-09-24', 0, 0, 'changjialun', '2004-08-04', 'chajialun', '2016-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS589561805932', 'Lisa Crawford', 0, '+86 174-8914-3308', 0, '992378088248353097', '中国上海市浦东新区橄榄路302号37楼', '1991-07-13', 0, 0, 'lc5', '2012-05-26', 'lisa618', '2015-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS377428372872', '菅原凛', 1, '+1 614-461-0294', 1, '541312314111454147', '228 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1991-07-18', 0, 0, 'sugawarari816', '2015-08-10', 'sur311', '2010-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS285283474839', 'Adam Collins', 1, '+81 90-5755-1100', 1, '869243827346044784', '日本東京品川区東五反田五丁目2番17号41階', '1993-09-22', 0, 0, 'cadam8', '2006-12-29', 'coladam', '2014-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS089506521920', '崔嘉欣', 0, '+81 80-2983-1240', 0, '953798696377461512', '日本ならし大和郡山市本庄町一丁目1番11号1階', '1992-06-22', 0, 0, 'choi926', '2010-04-23', 'choi03', '2016-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS975585675913', '高木絢斗', 1, '+1 213-871-4422', 3, '284637431331106594', '143 Alameda Street Apartment 6, Los Angeles, CA 90002, United States', '1998-07-09', 0, 0, 'takagiayato1972', '2020-06-04', 'tay', '2003-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS100229729129', '安藤凛', 1, '+86 152-7999-2698', 3, '743032426610441892', '中国北京市朝阳区三里屯路495号50栋', '1997-07-27', 0, 0, 'ando6', '2003-02-16', 'rina', '2003-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS775613411169', '謝志明', 1, '+81 80-1571-3149', 2, '667457914919880072', 'Rm. 48, 1-7-9 Saidaiji Akodacho, Nara, Japan', '1994-04-09', 0, 0, 'chiming3', '2000-10-09', 'tscm9', '2000-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS123629177880', '杜明', 0, '+44 (1865) 45 6118', 2, '202926394247215252', 'No.23 Main building, 147 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1988-08-21', 0, 0, 'ming56', '2021-01-25', 'mingto', '2000-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS589592828719', '小川大地', 1, '+1 330-264-4351', 1, '949347170951386393', '768 West Market Street Apartment 41, Akron, OH 44333, United States', '1992-01-01', 0, 0, 'ogawadaichi', '2000-09-06', 'oda1', '2005-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS367773894051', 'Debbie Wood', 0, '+44 7861 796278', 3, '763976018650205949', 'No.41 Main building, 750 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1986-06-20', 0, 0, 'woodebbie', '2006-07-06', 'debbie7', '2004-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS980058511595', 'Keith Flores', 0, '+86 185-6625-6143', 3, '822673880314941805', 'Room 43, CR Building, 904 028 County Rd, Yanqing District, Beijing, China', '1996-06-14', 0, 0, 'florekeith711', '2016-03-21', 'kflores', '2020-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS599861313735', '杜惠敏', 1, '+44 5927 330245', 2, '475440083269628297', 'Unit 33, Oxford Eco Centre, 521 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1996-07-15', 0, 0, 'wmto', '2019-10-17', 'towm', '2007-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS576500804649', '金致远', 0, '+1 330-604-8566', 3, '716684943756970911', '809 Ridgewood Road Apt 12, Akron, OH 44321, United States', '1992-08-06', 0, 0, 'zj1991', '2014-11-23', 'zhiyuanjin', '2015-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS533900257417', '馮家強', 0, '+1 330-089-1711', 3, '293347148542473148', '357 Riverview Road Apt 6, Akron, OH 44313, United States', '1986-09-18', 0, 0, 'fung2', '2018-04-03', 'kakeung3', '2020-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS970295413445', '方睿', 1, '+1 330-099-5214', 0, '546516904148163385', '809 Collier Road Apt 45, Akron, OH 44320, United States', '1991-10-05', 0, 0, 'rfan10', '2005-01-21', 'fang1985', '2009-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS152963942860', 'Ronald Chavez', 1, '+86 21-3305-3725', 1, '463852893980335087', 'Room 44, 924 Hongqiao Rd., Xu Hui District, Shanghai, China', '1986-04-15', 0, 0, 'cron', '2015-10-07', 'ronald5', '2015-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS246666213008', '横山架純', 1, '+81 3-6303-1177', 3, '048615173327314049', '日本東京千代田区丸の内一丁目6番20号41階', '1991-09-06', 0, 0, 'ykas', '2009-09-28', 'yokkas79', '2010-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS110624129595', 'Kathleen Hill', 0, '+81 70-7060-4589', 0, '241408625743744283', '日本なごやし瑞穂区河岸町四丁目20番10号16階', '1988-10-10', 0, 0, 'hilk17', '2021-09-01', 'hkathleen', '2018-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS556808124291', '黄秀英', 1, '+86 147-6466-6115', 2, '112706974896978157', '37F, 524 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1988-10-08', 0, 0, 'xiuying6', '2007-09-12', 'xiuh', '2005-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS420479517667', '新井明菜', 0, '+81 80-2840-8973', 3, '183935403944950995', '1-kai, 6-1-6, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1996-07-24', 0, 0, 'akinar', '2011-11-24', 'aakina', '2021-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS095901434702', '杜嘉伦', 1, '+81 52-509-8546', 3, '442752883445998623', '23F, 8 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1994-08-23', 0, 0, 'dujialun1', '2004-04-27', 'jialud', '2004-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS183873690923', '卢杰宏', 0, '+1 718-108-1753', 2, '967475867638004108', '199 Nostrand Ave Apt 1, Brooklyn, NY 11216, United States', '1989-04-28', 0, 0, 'jielu', '2012-08-29', 'ljiehong', '2000-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS170865388452', '方宇宁', 1, '+81 80-9661-8058', 1, '716231417153819084', 'Rm. 6, 1-7-10 Saidaiji Akodacho, Nara, Japan', '1990-03-06', 0, 0, 'yufang56', '2006-06-12', 'yuningfan7', '2017-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS800819353996', 'Joshua Mason', 1, '+86 760-7693-5672', 2, '218877332300154567', 'No.20 building, 554 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1986-01-07', 0, 0, 'joshuamason', '2017-02-23', 'mason9', '2021-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS194804609135', '郝嘉伦', 0, '+81 90-4106-9088', 3, '773115129078587424', '46-kai, 1-7-2 Saidaiji Akodacho, Nara, Japan', '1997-03-09', 0, 0, 'jiha89', '2011-08-20', 'jihao1976', '2008-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS242779922778', 'Virginia Hughes', 1, '+86 145-3407-6496', 4, '236433708422675111', 'No.9 building, 135 028 County Rd, Yanqing District, Beijing, China', '1991-05-04', 0, 0, 'hvirginia', '2016-08-19', 'virginiahughe', '2003-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS272958684349', '向世榮', 0, '+86 142-9170-1120', 3, '742575083874294038', '27F, 387 Binchuan Rd, Minhang District, Shanghai, China', '1995-06-09', 0, 0, 'saiwingh', '2007-06-01', 'saiwing90', '2010-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS435688219804', '任安琪', 0, '+81 3-0278-5237', 1, '607494998511210343', '23F, 5-2-1 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1994-10-09', 0, 0, 'anqir', '2016-09-13', 'aren', '2019-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS972808581044', 'Kim Wilson', 0, '+86 149-4707-4416', 3, '146940527723080055', '中国上海市闵行区宾川路439号38栋', '1995-09-21', 0, 0, 'kimwilson6', '2013-11-10', 'wilsonkim', '2018-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS564905744094', '市川大和', 1, '+81 3-4596-9516', 2, '177675730978171483', '日本東京品川区東五反田五丁目2番17号19号室', '1999-01-25', 0, 0, 'ichikawayamato95', '2021-10-29', 'yamatoic', '2010-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS739173862427', 'Diane Shaw', 1, '+1 213-948-7513', 1, '723266252275140153', '805 Wall Street Suite 28, Los Angeles, CA 90003, United States', '1995-06-11', 0, 0, 'shawdiane3', '2018-04-23', 'dianeshaw', '2007-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS982039612984', 'Sarah Wood', 0, '+81 90-2092-6401', 0, '983355617509299496', 'Rm. 6, 5-19-17 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-06-10', 0, 0, 'swo', '2013-05-07', 'wood708', '2006-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS746534719064', 'Stephen Morris', 0, '+1 212-477-6155', 1, '901404481332673483', '368 Fifth Avenue Apt 20, New York, NY 10017, United States', '1985-04-13', 0, 0, 'stepmor909', '2009-10-11', 'most9', '2009-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS297679649877', 'Kyle Gomez', 0, '+86 28-3569-1400', 3, '432578379249968430', '中国成都市锦江区红星路三段786号17栋', '1994-01-30', 0, 0, 'kgomez', '2005-02-09', 'kygomez9', '2011-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS349632904308', '遠藤健太', 0, '+44 7837 570033', 3, '943456444244968104', 'Block 35, 62 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1986-12-03', 0, 0, 'kente', '2021-11-22', 'kenend', '2010-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS744900757772', '後藤明菜', 0, '+86 20-5263-5635', 1, '046073566747364096', '中国广州市天河区天河路277号华润大厦38室', '1994-12-21', 0, 0, 'akig10', '2009-07-03', 'gotoakin', '2003-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS369989619883', '钟嘉伦', 0, '+81 70-0300-5542', 1, '176772146532627719', '日本おおさかし西成区天神ノ森二丁目1番6号11階', '1993-04-21', 0, 0, 'jialuzhong304', '2006-10-05', 'jialuz10', '2006-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS141438658927', '鐘志遠', 0, '+81 52-219-1054', 1, '395133995179290211', '日本なごやし熱田区千年二丁目5番10号33階', '1987-01-05', 0, 0, 'chiyuenchung1102', '2016-11-02', 'chiyuen04', '2002-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS195503544147', '馮詩君', 0, '+86 193-5264-8182', 0, '251166037127809330', '中国上海市浦东新区橄榄路493号46号楼', '1998-05-13', 0, 0, 'szekwanfu223', '2018-06-28', 'fung4', '2003-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS171580150861', '佘天樂', 1, '+44 (116) 006 3676', 2, '402015175784740538', 'Unit 46, Oxford Eco Centre, 438 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1987-05-05', 0, 0, 'shehtl', '2012-02-27', 'shtl223', '2006-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS061836532407', '錢國權', 1, '+81 90-2630-8790', 1, '990841141170889496', '日本おおさかし西成区出城一丁目1番7号2号室', '1995-10-04', 0, 0, 'chin7', '2018-08-18', 'chinkwokkuen', '2017-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS673152151194', '曾璐', 1, '+81 11-375-0209', 3, '360382622907583054', '日本札幌白石区菊水三条五丁目2番2号42階', '1990-10-22', 0, 0, 'zenglu', '2012-05-04', 'luzeng509', '2007-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS872885312904', '甘永發', 0, '+81 70-7085-2227', 3, '613105576879710750', '32-kai, 5-19-9 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1990-12-15', 0, 0, 'kawf3', '2021-09-20', 'kamwingfat', '2007-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS534331644138', '甘慧敏', 1, '+44 (161) 279 9843', 1, '104226158292735391', 'Unit 47, Oxford Eco Centre, 897 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-02-24', 0, 0, 'kam86', '2021-10-07', 'kamwaiman', '2001-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS491994085075', 'Shirley Kelley', 0, '+86 190-9985-4841', 2, '218113819817870534', '中国广州市白云区机场路棠苑街五巷730号25号楼', '1993-04-20', 0, 0, 'kelshirl5', '2015-02-01', 'shirley108', '2000-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS029097007880', '谭宇宁', 1, '+44 5569 152096', 4, '745455427304198075', 'Unit 23, Oxford Eco Centre, 565 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1994-04-08', 0, 0, 'ytan59', '2017-05-23', 'yunitan2', '2018-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS671106169074', '郝睿', 0, '+81 70-5700-3787', 3, '525554587248708375', '日本東京港区東新橋一丁目5番10号8階', '1992-10-09', 0, 0, 'ruiha', '2000-06-19', 'ruihao', '2000-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS349754354896', '刘子异', 0, '+81 70-8844-9847', 2, '061857748403875900', '19F, 4-9-11 Kamihigashi, Hirano Ward, Osaka, Japan', '1998-10-05', 0, 0, 'ziyili69', '2014-01-21', 'liuzi220', '2003-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS856880931814', 'Joyce Hamilton', 1, '+81 90-8901-7614', 0, '489180205289483521', '日本東京品川区東五反田五丁目2番13号28階', '1995-11-28', 0, 0, 'joycehami', '2020-06-25', 'joycehamilton', '2020-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS453900510074', '毛安琪', 1, '+81 11-084-2018', 0, '706849492041525472', '日本札幌清田区真栄四条五丁目19番7号27号室', '1989-04-30', 0, 0, 'anqi4', '2012-05-31', 'am14', '2015-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS959208486068', '宣永發', 0, '+1 614-600-9066', 3, '333666718374368146', '431 Tremont Road Apartment 24, Columbus, GA 43212, United States', '1995-07-15', 0, 0, 'hsuawf', '2014-12-23', 'wingfathsuan3', '2016-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS230043700707', '袁曉彤', 0, '+81 70-2276-4379', 3, '399829780492109327', '18F, 11 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1988-10-03', 0, 0, 'yuen1', '2007-02-21', 'hiutungyue14', '2001-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS207493160768', '曹天榮', 0, '+81 70-3255-4898', 4, '698394112498866930', '21-kai, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1994-07-07', 0, 0, 'ctw7', '2004-01-05', 'cho1961', '2018-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS048340141755', 'Carlos Bryant', 0, '+86 21-788-1237', 2, '393994656126914342', '中国上海市黄浦区淮海中路452号15号楼', '1985-04-11', 0, 0, 'bryantcarlo', '2003-10-14', 'cabr506', '2020-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS662733634383', '狄秀文', 1, '+86 10-7368-9995', 2, '020937628925165511', '中国北京市東城区東直門內大街971号华润大厦17室', '1990-09-01', 0, 0, 'sati58', '2020-01-16', 'smti', '2021-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS820734086931', '孟宇宁', 1, '+86 760-562-0634', 4, '417122518954847259', 'No.25 building, 844 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1987-03-27', 0, 0, 'mengy5', '2018-07-28', 'ymeng', '2008-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS179475143146', '任晓明', 1, '+86 140-0980-9048', 0, '589918456296264642', 'Room 18, 353 Jianxiang Rd, Pudong, Shanghai, China', '1994-09-24', 0, 0, 'xren', '2017-10-11', 'rxiaoming210', '2009-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS752000909133', '内田美緒', 0, '+81 52-440-9961', 1, '539206184753882319', 'Rm. 35, 20 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-03-17', 0, 0, 'miouchi8', '2006-07-06', 'miouchid1956', '2012-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS018577723608', '金子明菜', 1, '+44 (1223) 33 8517', 0, '045909080397355182', 'Flat 9, 710 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1995-11-19', 0, 0, 'akinakanek1231', '2019-01-11', 'akina51', '2014-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS579657861046', '黄宇宁', 1, '+86 21-679-2853', 2, '670970528425573205', 'No.18 building, 315 Hongqiao Rd., Xu Hui District, Shanghai, China', '1996-04-12', 0, 0, 'yuning1002', '2016-12-30', 'huangyu', '2016-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS122460765469', '中森舞', 0, '+81 70-4552-5419', 2, '482429374566719011', '2-kai, 3-9-13 Gakuenminami, Nara, Japan', '1985-08-09', 0, 0, 'mainaka', '2009-04-19', 'mai824', '2005-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS054490299130', '中島葉月', 0, '+86 174-1311-7294', 2, '229749169490421941', '中国中山天河区大信商圈大信南路624号5室', '1988-06-12', 0, 0, 'hazunaka', '2002-06-12', 'hazuki807', '2010-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS100430863616', '西村美咲', 0, '+86 20-9045-4506', 2, '981925593335887304', 'Room 4, CR Building, 170 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1986-10-04', 0, 0, 'mnishimura', '2016-03-05', 'nishimuram', '2007-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS952681714573', 'Victoria Edwards', 1, '+86 10-295-8901', 1, '125076565723524057', '中国北京市西城区西長安街772号华润大厦15室', '1995-01-22', 0, 0, 'edwards10', '2008-07-23', 'victoria00', '2019-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS137962258123', '胡玲玲', 0, '+1 614-691-1163', 3, '751515696532245002', '391 Wicklow Road Apartment 12, Columbus, GA 43204, United States', '1988-12-26', 0, 0, 'linglingwu', '2019-07-20', 'linglingwu', '2005-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS684024797118', '叶子韬', 1, '+44 (1865) 83 6870', 2, '699512171270176975', 'Block 17, 892 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1997-04-30', 0, 0, 'zity', '2004-10-26', 'ziye', '2013-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS898008920261', '萬祖兒', 1, '+81 52-506-3996', 0, '720132789780531756', '6-kai, 2-5-12 Chitose, Atsuta Ward, Nagoya, Japan', '1992-07-18', 0, 0, 'meng43', '2004-02-04', 'mengchoyee', '2021-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS710335938199', '吉田瑛太', 0, '+81 66-831-1662', 4, '023881877743155779', '日本おおさかし西成区天神ノ森二丁目1番16号27号室', '1993-01-05', 0, 0, 'yoshidae', '2006-06-09', 'yoshida5', '2000-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS924879007910', '卢岚', 0, '+81 90-4300-7572', 4, '847133505521262141', '日本東京品川区東五反田五丁目2番6号50階', '1994-01-31', 0, 0, 'lulan', '2005-01-20', 'lu10', '2017-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS387189562919', '崔國賢', 1, '+86 182-0814-5899', 3, '550693749118425839', 'No.3 building, 173 Sanlitun Road, Chaoyang District, Beijing, China', '1994-04-10', 0, 0, 'kwokyincho', '2005-12-05', 'kwokyinchoi1', '2016-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS349782172087', '孫浩然', 1, '+86 143-4977-7667', 3, '574975816927064165', 'Room 34, 414 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1998-12-18', 0, 0, 'hsuanhoyin59', '2009-07-17', 'hhoyin', '2000-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS253738740854', '渡部明菜', 0, '+81 70-0171-6081', 3, '286390126238525937', '23F, 5-19-13 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1990-12-16', 0, 0, 'akina5', '2001-09-17', 'akinw', '2011-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS136252351297', 'William West', 1, '+1 213-529-9185', 3, '177661588055049047', '186 Wall Street Suite 23, Los Angeles, CA 90003, United States', '1995-09-20', 0, 0, 'wilwes', '2020-05-03', 'wewilliam03', '2000-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS524281520163', '顧秀文', 1, '+1 614-972-5925', 1, '544516059759355395', '165 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1996-06-21', 0, 0, 'kusauman', '2002-12-23', 'saumank', '2013-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS354022683180', 'Aaron Moore', 1, '+86 21-1213-8760', 3, '650475338295332275', 'Room 16, CR Building, 677 Jianxiang Rd, Pudong, Shanghai, China', '1997-12-06', 0, 0, 'aaronm', '2001-09-04', 'aaronmoore', '2000-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS972965225705', '雷仲賢', 0, '+1 614-363-7157', 2, '861853460797670395', '137 East Alley Suite 45, Columbus, GA 43201, United States', '1990-07-28', 0, 0, 'lchungyin', '2009-12-30', 'cyloui09', '2019-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS283526468836', 'Jacqueline Alvarez', 0, '+86 146-2496-5583', 2, '658706177443586752', 'Room 14, CR Building, 140 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1996-05-23', 0, 0, 'jacqualvarez2', '2002-12-10', 'jacquelineal', '2012-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS060395442574', '山田健太', 0, '+86 10-024-1091', 0, '391111618414330099', '30F, 368 Dong Zhi Men, Dongcheng District, Beijing, China', '1992-04-11', 0, 0, 'yamadakenta6', '2005-11-20', 'kyamada', '2007-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS515077825073', '傅天榮', 1, '+1 213-624-2299', 1, '208206569865659508', '87 Wall Street Apartment 43, Los Angeles, CA 90003, United States', '1985-09-07', 0, 0, 'tinwingfu814', '2019-04-10', 'fu2012', '2012-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS806522238994', 'Clarence Ryan', 1, '+86 755-1228-0884', 0, '247797615284512277', '中国深圳龙岗区学园一巷789号35室', '1994-01-09', 0, 0, 'ryanclar1958', '2008-12-19', 'ryanclar', '2002-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS218501774153', '邹睿', 1, '+81 90-1484-5625', 2, '837232326062612483', '22F, 5-2-6 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-10-03', 0, 0, 'zoru', '2017-08-01', 'zourui89', '2007-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS429673792604', '楊富城', 1, '+81 74-802-6286', 1, '293098596481192126', '日本ならし西大寺赤田町一丁目7番15号12号室', '1994-08-20', 0, 0, 'yeungfus', '2019-06-21', 'fsyeung85', '2001-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS843326685481', '野村優奈', 1, '+1 330-123-5621', 1, '756578005763800499', '325 Fern Street Suite 39, Akron, OH 44307, United States', '1996-11-19', 0, 0, 'yunanomura', '2017-01-23', 'nomurayun1024', '2013-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS271361814296', '蘇朝偉', 1, '+81 3-7455-2937', 2, '934760668796327055', '29-kai, 1-6-14, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1994-04-08', 0, 0, 'schiuwai2', '2002-06-15', 'cwso', '2021-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS741415493636', 'Luis Mason', 1, '+81 70-8676-8104', 2, '018399252003227861', 'Rm. 7, 1-7-16 Saidaiji Akodacho, Nara, Japan', '1988-04-20', 0, 0, 'luismas', '2008-03-29', 'masonlui', '2017-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS667855755632', '尹致远', 0, '+81 52-827-2284', 1, '706368249033200417', '日本なごやし熱田区千年二丁目5番10号29階', '1985-08-22', 0, 0, 'yin801', '2019-08-11', 'zhyin', '2018-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS589675148732', '陶家明', 0, '+86 163-9550-6542', 1, '744310805465312896', 'Room 41, 271 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1997-06-18', 0, 0, 'tao89', '2016-06-29', 'takm', '2010-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS471034615180', '佐々木美羽', 1, '+81 70-2169-7062', 2, '316477921989276326', 'Rm. 14, 13-3-18 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1992-12-11', 0, 0, 'sasakm', '2008-12-27', 'sasami', '2005-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS041027445504', 'Virginia Webb', 0, '+86 10-881-1138', 3, '728993862316057620', 'No.48 building, 8 Yueliu Rd, Fangshan District, Beijing, China', '1991-07-27', 0, 0, 'webb6', '2002-11-15', 'virgwebb1017', '2016-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS265221481722', '任璐', 0, '+81 70-7595-4796', 4, '185282957988005846', '38-kai, 5-19-11 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1997-09-15', 0, 0, 'renlu', '2011-04-25', 'renlu10', '2019-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS331725823183', '野村海斗', 0, '+86 197-0081-9593', 3, '212367697505839839', 'Room 16, CR Building, 268 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1989-11-26', 0, 0, 'nomurkaito3', '2014-02-06', 'nomk', '2013-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS357178946193', '高田和真', 1, '+44 (1865) 72 2108', 0, '302636204668500173', 'No.5 Main building, 991 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1994-10-21', 0, 0, 'kazutakada9', '2013-07-23', 'tk1951', '2015-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS963737046179', '木下美羽', 0, '+81 70-4319-6840', 1, '261587809521491085', '日本なごやし守山区瀬古東二丁目171番19号11号室', '1997-07-29', 0, 0, 'kinosmi', '2007-05-09', 'kinomi3', '2007-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS544741472772', '上野詩乃', 1, '+81 90-3283-0330', 4, '685137591355861224', 'Rm. 48, 19 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1988-10-11', 0, 0, 'ueno9', '2010-12-27', 'ueno1973', '2018-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS767994409540', '石川蒼士', 1, '+44 5818 842399', 4, '601219371765850409', 'Unit 41, Oxford Eco Centre, 799 Park End St, Oxford, OX1 1JD, United Kingdom', '1991-07-22', 0, 0, 'aoshiishik', '2009-09-29', 'ishikawa505', '2015-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS688584817307', 'Monica Gomez', 0, '+1 330-926-9450', 0, '678974130554966999', '327 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1996-02-23', 0, 0, 'gomezmonica', '2001-01-18', 'monicag', '2002-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS379421909936', '宮崎翼', 0, '+44 5401 827019', 2, '758023610668287614', 'Block 48, 572 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1989-06-02', 0, 0, 'tsubami', '2010-02-07', 'miyazakits7', '2005-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS319901889548', 'Judy Sanders', 1, '+1 614-081-3488', 3, '191512054623654558', '663 Wicklow Road Apt 4, Columbus, GA 43204, United States', '1994-05-17', 0, 0, 'sjudy', '2015-12-09', 'sanders69', '2014-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS247879078953', '官朝偉', 0, '+44 5028 025160', 1, '123627485897276070', 'Flat 50, 165 Portland St, Manchester, M1 3LA, United Kingdom', '1992-07-05', 0, 0, 'cwkoo', '2002-01-22', 'cwkoon526', '2006-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS130510044544', '渡辺玲奈', 0, '+1 330-586-3870', 0, '493969963889341772', '851 Riverview Road Suite 50, Akron, OH 44313, United States', '1991-08-27', 0, 0, 'rena6', '2007-10-31', 'rena6', '2021-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS016586308748', '徐慧儀', 0, '+86 760-6139-7958', 1, '330447553842117800', '中国中山乐丰六路127号21室', '1993-01-24', 0, 0, 'tsui44', '2021-09-18', 'waiyet', '2015-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS129203055616', 'Lee Owens', 0, '+81 3-4272-6399', 4, '604663585341131313', '日本東京渋谷区代々木二丁目3番15号42号室', '1996-11-14', 0, 0, 'leeowen', '2011-08-11', 'owlee', '2014-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS443816137777', 'Michelle Harris', 1, '+86 186-3713-7642', 1, '830289604000263994', '中国北京市东城区东单王府井东街285号20室', '1985-08-25', 0, 0, 'michelle113', '2005-04-24', 'micheharris1978', '2012-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS796089705288', '萬安琪', 1, '+1 718-158-6367', 3, '234672464498008474', '772 Bergen St Suite 21, Brooklyn, NY 11217, United States', '1995-01-22', 0, 0, 'onkayme', '2005-04-16', 'mengonkay83', '2006-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS669776741696', 'Miguel Coleman', 1, '+81 80-4242-2256', 1, '486835019362781884', 'Rm. 15, 3-9-10 Gakuenminami, Nara, Japan', '1990-06-17', 0, 0, 'colemanm', '2010-08-11', 'miguelcoleman', '2010-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS192846102523', '渡辺美羽', 1, '+1 718-907-4619', 3, '023387571598324163', '676 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1996-07-27', 0, 0, 'miu9', '2019-11-24', 'satm', '2008-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS088050586087', '田村百恵', 0, '+81 80-0077-4022', 2, '905291881171543621', '日本札幌中央区宮の森四条六丁目1番9号17号室', '1996-06-23', 0, 0, 'momoet1031', '2016-08-15', 'tamurm', '2020-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS314592948806', 'Lillian Mason', 1, '+81 80-0185-0053', 1, '263099722544285058', '日本東京港区東新橋一丁目5番10号40階', '1986-03-19', 0, 0, 'malilli', '2008-04-27', 'masolillian1009', '2014-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS277183289855', '吳學友', 1, '+86 144-8017-9613', 2, '092232916537218984', 'No.46 building, 226 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1994-09-10', 0, 0, 'nghokyau', '2005-11-05', 'hyng7', '2019-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS595577542165', 'Anne Long', 0, '+81 70-4973-5173', 2, '992298799762083236', '日本東京港区東新橋一丁目5番7号37階', '1989-05-05', 0, 0, 'annelong', '2000-12-20', 'annel630', '2018-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS418778838114', '武宇宁', 0, '+86 755-7870-5920', 4, '388115969550389624', 'Room 37, CR Building, 147 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1997-06-17', 0, 0, 'wuyuning', '2010-07-08', 'yuwu225', '2005-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS572034001047', '坂本明菜', 1, '+44 7543 656957', 3, '814690011630557318', 'Block 7, 237 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1990-05-29', 0, 0, 'akisa', '2010-05-05', 'sakamoto6', '2002-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS477931890595', 'Henry Patterson', 0, '+81 70-6848-6716', 2, '328997790589693686', '日本東京品川区東五反田五丁目2番6号40階', '1991-12-27', 0, 0, 'hep', '2009-03-06', 'pattersonh', '2003-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS161909742125', '段宇宁', 0, '+1 614-776-8161', 3, '967731355400116593', '379 Wicklow Road Apt 19, Columbus, GA 43204, United States', '1991-07-25', 0, 0, 'yuning121', '2009-04-20', 'duanyu8', '2002-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS923622515096', 'George Rodriguez', 1, '+86 20-691-5705', 4, '575038395132177399', '32F, 55 Xiaoping E Rd, Baiyun , Guangzhou, China', '1997-03-08', 0, 0, 'grodriguez', '2003-03-03', 'rodriguezgeorg17', '2006-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS132556386553', '孔嘉伦', 0, '+81 74-628-1455', 1, '968576274589210876', '日本ならし学園南三丁目9番19号45階', '1985-05-25', 0, 0, 'jialukong308', '2002-05-18', 'jiakon5', '2014-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS391321359030', '顾嘉伦', 0, '+1 213-942-6875', 4, '407111072622814621', '122 S Broadway Suite 7, Los Angeles, CA 90015, United States', '1995-11-22', 0, 0, 'jiag', '2009-01-09', 'gu122', '2021-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS265202834978', '王璐', 1, '+81 11-289-5747', 3, '712460003287910709', '2F, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-04-23', 0, 0, 'wang58', '2011-10-21', 'luwang', '2009-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS021315397880', '工藤健太', 1, '+81 70-0120-1892', 2, '611513591994919695', '10-kai, 1-7-13 Omido, Higashiosaka, Osaka, Japan', '1986-02-27', 0, 0, 'kuk3', '2007-06-16', 'kudok', '2018-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS140112066764', '梁子韬', 0, '+81 70-6771-8229', 0, '476305602149775824', '日本おおさかし平野区加美東四丁目9番10号9号室', '1988-10-07', 0, 0, 'lizit5', '2010-12-27', 'zliang', '2019-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS929967569702', 'Mildred Harris', 0, '+86 169-2806-4470', 1, '510916493473464703', '中国成都市成华区双庆路902号17楼', '1997-05-19', 0, 0, 'mildrha', '2010-10-22', 'mildredha2000', '2009-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS694541755236', '蔣梓軒', 0, '+1 213-459-1467', 4, '045587182860059743', '363 Figueroa Street Apt 1, Los Angeles, CA 90037, United States', '1988-10-21', 0, 0, 'chiatszhin813', '2000-07-16', 'tszhinchiang3', '2020-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS584145863389', '杜祖兒', 1, '+86 20-2552-2124', 3, '704170471263823017', '中国广州市白云区机场路棠苑街五巷260号31栋', '1987-03-08', 0, 0, 'choyee1222', '2001-05-01', 'choyeeto822', '2009-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS537958643320', '森田陸', 1, '+81 66-397-9907', 2, '698767523624599688', '日本おおさかし東住吉区東田辺三丁目27番14号7号室', '1991-06-27', 0, 0, 'moritariku3', '2009-09-19', 'riku8', '2016-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS991476638351', '杉山翼', 1, '+44 7611 146387', 1, '426154991431022494', 'Unit 13, Oxford Eco Centre, 793 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1993-08-24', 0, 0, 'sugitsubasa1', '2006-01-25', 'stsubasa', '2015-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS284761129948', '大塚蓮', 0, '+44 (161) 899 5102', 4, '500107047106403616', 'No.37 Main building, 475 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1986-01-13', 0, 0, 'reno4', '2001-01-17', 'ren1201', '2006-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS388456757743', 'Irene Morales', 1, '+81 90-0838-4667', 0, '249562968523424785', '42F, 2-1-11 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1997-09-26', 0, 0, 'irenemorales', '2015-07-07', 'mirene1204', '2018-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS080788686887', '董云熙', 0, '+81 70-5067-6019', 3, '248240208680822939', '日本なごやし北区清水三丁目19番16号45階', '1997-12-05', 0, 0, 'yunxdong83', '2005-06-30', 'yundo513', '2012-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS457958179400', 'Joan Evans', 0, '+86 173-9687-7029', 2, '753352627752132596', 'No.36 building, 198 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1998-12-06', 0, 0, 'ejoa', '2007-11-21', 'joe', '2014-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS499470970004', '洪霆鋒', 1, '+86 192-9705-1415', 4, '500514120323543164', '中国北京市西城区复兴门内大街221号42栋', '1996-03-12', 0, 0, 'tingfunghung', '2020-10-08', 'hungtingfung7', '2005-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS082351152568', '黃玲玲', 0, '+81 52-961-2715', 2, '658357353342302411', '日本なごやし北区楠味鋺三丁目80番12号19号室', '1993-01-22', 0, 0, 'linglingwong3', '2016-03-01', 'wong49', '2002-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS642175414221', '馬麗欣', 1, '+86 137-7919-0162', 4, '823136170640205465', '中国深圳福田区景田东一街427号37室', '1998-12-18', 0, 0, 'laiyanma', '2013-10-28', 'lym', '2001-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS587409105056', '岡本美緒', 0, '+44 5159 488675', 3, '702784899789135810', 'No.13 Main building, 508 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1997-02-09', 0, 0, 'mioo', '2006-10-28', 'okamotomio', '2021-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS159650379704', '杨致远', 0, '+1 838-302-4424', 3, '207077698960927044', '724 Central Avenue Suite 13, Albany, NY 12206, United States', '1988-06-19', 0, 0, 'yang2', '2014-12-26', 'yanz', '2003-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS899892443898', '武子韬', 1, '+86 10-9690-3812', 1, '014621112469055696', '39F, 640 68 Qinghe Middle St, Haidian District, Beijing, China', '1989-11-28', 0, 0, 'wu7', '2007-09-15', 'zitwu', '2003-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS202552622353', '胡岚', 1, '+44 7195 209244', 2, '083308586474872919', 'Flat 28, 844 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1988-12-08', 0, 0, 'hlan', '2009-10-12', 'hl1010', '2014-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS945571669474', '熊睿', 1, '+86 755-6184-1155', 0, '256876330989463015', '中国深圳福田区深南大道274号华润大厦23室', '1994-07-03', 0, 0, 'ruixiong329', '2011-07-30', 'xiorui', '2021-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS447874488703', '加藤光莉', 1, '+1 312-889-8836', 3, '552230293219737012', '324 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1998-10-25', 0, 0, 'hikka', '2013-02-25', 'khikari', '2006-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS425664858529', '尹嘉伦', 1, '+1 213-910-6262', 0, '019393669981559677', '540 S Broadway Apt 42, Los Angeles, CA 90015, United States', '1991-12-06', 0, 0, 'yin1124', '2012-04-12', 'yjial', '2014-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS090555201966', '黄睿', 1, '+81 70-1311-6097', 2, '311965922702130247', '28F, 2-3-6 Yoyogi, Shibuya-ku, Tokyo, Japan', '1996-02-05', 0, 0, 'hru', '2020-01-30', 'rui16', '2008-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS613446993299', '容麗欣', 1, '+86 760-3691-1253', 2, '444495015885186087', '中国中山天河区大信商圈大信南路469号华润大厦36室', '1994-04-19', 0, 0, 'yungly5', '2006-08-24', 'yunglaiyan3', '2005-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS209143523978', '鄭杰倫', 1, '+86 755-6434-8979', 1, '551073623556354068', 'No.16 building, 95 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-06-30', 0, 0, 'cheng1127', '2019-03-13', 'chchiehlun', '2009-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS363690321465', 'Julia Stone', 0, '+81 70-2695-4763', 0, '507959768591098684', '日本ならし西大寺赤田町一丁目7番10号9階', '1986-12-07', 0, 0, 'stonjul', '2015-11-01', 'stonej4', '2014-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS862544176284', '莫志明', 0, '+86 760-119-3967', 3, '043948059995803538', '中国中山紫马岭商圈中山五路531号27楼', '1993-05-25', 0, 0, 'mokcm', '2005-11-27', 'chiming10', '2002-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS428300739929', '藤國明', 0, '+1 213-475-4587', 2, '598822808739326467', '943 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1985-05-19', 0, 0, 'tangkm', '2011-01-12', 'kmtang1983', '2020-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS583871553122', '严子异', 0, '+81 11-660-1222', 1, '902975927970404901', 'Rm. 35, 6-1-3, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1992-04-05', 0, 0, 'yziy3', '2005-09-06', 'yanzi411', '2014-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS487597927884', '増田結翔', 0, '+86 21-5500-8898', 2, '978544228769407069', 'No.45 building, 108 Jianxiang Rd, Pudong, Shanghai, China', '1992-07-13', 0, 0, 'masudayui425', '2003-02-21', 'yuitomasuda112', '2011-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS159205734977', '任秀英', 0, '+1 330-250-0783', 0, '240732210968080212', '613 Collier Road Apartment 10, Akron, OH 44320, United States', '1995-01-01', 0, 0, 'xiuyingren', '2016-09-10', 'renxiuying', '2004-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS721514198754', '加藤優奈', 1, '+44 7638 566157', 0, '461686902097995968', 'Flat 43, 478 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1990-04-10', 0, 0, 'kato816', '2006-01-08', 'yunkat', '2001-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS664466573591', 'Earl Lopez', 1, '+86 159-3062-0613', 2, '970480776157915895', 'Room 18, CR Building, 779 Shennan Ave, Futian District, Shenzhen, China', '1992-08-03', 0, 0, 'earllopez', '2018-06-27', 'lopez2000', '2016-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS747426512405', '石田大和', 1, '+86 769-8092-1262', 1, '954743841034877474', 'Room 36, 327 Kengmei 15th Alley, Dongguan, China', '1994-11-29', 0, 0, 'yamishida', '2020-09-17', 'yamatoish', '2004-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS370616752373', 'Benjamin Lewis', 0, '+1 330-287-4369', 0, '036550644780429811', '542 Fern Street 3rd Floor, Akron, OH 44307, United States', '1986-11-19', 0, 0, 'benjamin1966', '2011-07-01', 'lewisbenjamin', '2008-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS794939808858', '苑祖兒', 0, '+86 176-6318-2943', 1, '363563171586823994', '中国广州市天河区天河路894号2号楼', '1985-03-14', 0, 0, 'cyyuen', '2019-04-16', 'yuency', '2006-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS276117096620', '餘頴思', 0, '+1 330-442-5996', 1, '436156680880001147', '123 Riverview Road Apartment 33, Akron, OH 44313, United States', '1990-03-25', 0, 0, 'yuews', '2017-06-07', 'wingsze5', '2016-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS638533225245', '譚榮發', 0, '+44 7632 994600', 2, '518044966000068068', 'Flat 23, 435 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1996-02-05', 0, 0, 'tamwf401', '2017-06-17', 'tam1989', '2001-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS075448023818', '小野愛梨', 0, '+81 70-7504-8504', 3, '832940271797330312', '16-kai, 16 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1985-07-17', 0, 0, 'aono05', '2007-04-12', 'airi3', '2010-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS927930344539', '鄭潤發', 1, '+1 718-763-8911', 1, '371137794897320564', '158 Columbia St Apt 24, Brooklyn, NY 11231, United States', '1993-02-27', 0, 0, 'chengyunfat', '2014-02-12', 'yunfatche', '2017-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS797024501700', 'Alice Ryan', 1, '+44 5013 294450', 4, '627049423749005343', 'No.9 Main building, 459 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1990-12-31', 0, 0, 'rya', '2004-02-07', 'alicryan', '2009-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS375483330998', '戴云熙', 0, '+44 5621 470675', 2, '061468450070461237', 'Unit 45, Oxford Eco Centre, 985 Mosley St, Manchester, M2 3AQ, United Kingdom', '1989-09-09', 0, 0, 'daiyunxi', '2016-03-01', 'daiy53', '2001-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS544904765451', '阿部美羽', 1, '+86 28-7171-8912', 1, '845652105127370753', '中国成都市成华区玉双路6号749号38栋', '1991-05-19', 0, 0, 'miua', '2011-01-03', 'miua', '2021-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS819312202820', '井上瑛太', 0, '+81 3-2047-2461', 1, '749864624439467309', '日本東京品川区東五反田五丁目2番3号36階', '1994-03-25', 0, 0, 'inoueita', '2011-09-03', 'inoueei', '2008-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS602343132605', '周發', 1, '+86 158-4692-3339', 2, '999713503507965011', '中国中山乐丰六路339号21栋', '1993-06-26', 0, 0, 'fachow', '2008-12-15', 'chowfat', '2020-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS401696332868', 'Brian Smith', 0, '+1 312-966-0454', 3, '959049623260984562', '750 Pedway Apartment 6, Chicago, IL 60601, United States', '1995-05-12', 0, 0, 'brian9', '2002-08-27', 'sb1229', '2005-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS396766563854', '董岚', 0, '+86 21-4511-1980', 3, '359796742960569314', '18F, 156 Middle Huaihai Road, Huangpu District, Shanghai, China', '1986-05-08', 0, 0, 'lando10', '2003-05-14', 'dla', '2015-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS399627117380', '薛曉彤', 0, '+81 66-203-9229', 2, '572346645037449013', '日本おおさかし東住吉区東田辺三丁目27番7号5階', '1993-02-08', 0, 0, 'siht8', '2020-09-20', 'sithiutung10', '2018-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS295814129296', '阮心穎', 1, '+86 150-3097-2327', 4, '769486867079471317', 'No.49 building, 629 68 Qinghe Middle St, Haidian District, Beijing, China', '1988-12-29', 0, 0, 'yuen2', '2004-01-30', 'sumwing2', '2015-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS281395444947', '元浩然', 1, '+86 20-0327-4783', 3, '866525154363699635', '中国广州市海珠区江南西路869号4室', '1993-03-29', 0, 0, 'hoyin515', '2002-07-04', 'yuen10', '2010-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS987947814707', '李家輝', 1, '+86 186-2266-4820', 1, '497839410890568638', '中国上海市闵行区宾川路428号7栋', '1987-03-28', 0, 0, 'lee2', '2013-11-06', 'lee1962', '2019-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS596289072330', '方璐', 1, '+44 (161) 181 8607', 2, '390591702443425935', 'Flat 8, 301 Mosley St, Manchester, M2 3AQ, United Kingdom', '1990-04-07', 0, 0, 'lufang', '2006-08-23', 'lufan', '2015-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS420317904632', 'Danielle Price', 0, '+81 66-062-4716', 4, '697875905476147434', 'Rm. 13, 3-27-3 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1995-07-31', 0, 0, 'danieprice1023', '2018-11-04', 'danprice1230', '2013-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS834298107646', '叶子异', 1, '+1 312-615-4232', 4, '402940729874941672', '426 Pedway Suite 28, Chicago, IL 60601, United States', '1988-11-14', 0, 0, 'ziyi60', '2005-02-16', 'ziyiye', '2012-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS239268078936', 'Cynthia Perez', 1, '+86 189-0033-3387', 1, '696865557423701938', '中国广州市天河区天河路278号5号楼', '1988-06-03', 0, 0, 'cyper', '2011-09-25', 'perecynt3', '2000-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS532362706521', '陆岚', 0, '+81 80-3075-7102', 3, '768864305215262195', '15-kai, 2 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-10-10', 0, 0, 'lulan', '2022-02-28', 'lan9', '2012-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS970768183075', '侯致远', 0, '+86 137-7961-6248', 2, '169319714142283640', 'No.47 building, 700 Jianxiang Rd, Pudong, Shanghai, China', '1988-05-29', 0, 0, 'zhiyuhou1003', '2004-04-30', 'zhiyuan5', '2010-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS524928541772', '藤潤發', 0, '+86 162-1504-0704', 4, '257079800250236714', '中国深圳福田区景田东一街637号42栋', '1985-12-22', 0, 0, 'yunfat711', '2017-06-23', 'yunfat72', '2000-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS703240312602', '橋本大輔', 0, '+86 196-1627-7451', 4, '287157065025702117', 'Room 40, 160 Dongtai 5th St, Dongguan, China', '1998-06-29', 0, 0, 'daisuhashi', '2007-12-19', 'hasdaisuke1942', '2005-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS520990582729', '松田美緒', 1, '+86 20-0306-7005', 3, '522471190826936308', 'Room 45, CR Building, 227 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1992-09-30', 0, 0, 'miom45', '2013-01-01', 'matsudamio1202', '2017-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS695491745654', '山崎愛梨', 1, '+81 11-542-3366', 1, '795375690591902240', '日本札幌白石区菊水三条五丁目2番20号41階', '1991-06-09', 0, 0, 'airiy', '2000-03-10', 'airiyamazaki', '2014-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS650933036118', 'Troy Harris', 1, '+81 80-6126-0394', 1, '054063342203207012', '45-kai, 2-1-13 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1989-09-20', 0, 0, 'troy1115', '2004-03-20', 'troyha', '2008-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS671191770709', '阿部翼', 1, '+44 5043 023118', 1, '604087764802331754', 'Unit 4, Oxford Eco Centre, 415 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1993-11-14', 0, 0, 'at306', '2014-04-06', 'abe42', '2012-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS715425806603', 'Brenda Castillo', 0, '+81 70-2463-1861', 1, '895782924899696465', '9-kai, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1987-03-24', 0, 0, 'castillo9', '2000-02-28', 'brenda80', '2021-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS559382581828', '伍梓軒', 0, '+86 769-792-9584', 3, '452514350318619023', '中国东莞坑美十五巷83号17号楼', '1993-05-03', 0, 0, 'thng', '2007-09-12', 'thng', '2012-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS288238065458', '千葉蓮', 1, '+86 138-8810-6696', 3, '800727976417123437', 'Room 39, CR Building, 577 Lefeng 6th Rd, Zhongshan, China', '1991-05-02', 0, 0, 'renchi703', '2005-10-28', 'ren70', '2002-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS471763636426', 'Joe Jordan', 1, '+81 70-0767-6917', 3, '039148866032341477', '日本札幌中央区宮の森四条六丁目1番13号43階', '1987-04-29', 0, 0, 'jordanjoe', '2021-03-21', 'joe9', '2021-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS773248927948', '秦晓明', 1, '+86 28-2255-1340', 1, '309503498931451198', '中国成都市锦江区红星路三段752号华润大厦28室', '1992-02-09', 0, 0, 'xiaoming1', '2006-02-23', 'qinx', '2015-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS584705693986', '任子韬', 0, '+81 90-3992-1710', 3, '627091055170393042', '日本なごやし北区清水三丁目19番10号22階', '1999-01-28', 0, 0, 'ren9', '2008-08-25', 'renzita', '2021-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS657168148091', 'Louise Smith', 0, '+81 70-4070-7484', 1, '025866797794080950', '日本なごやし熱田区千年二丁目5番3号26階', '1989-04-29', 0, 0, 'lous604', '2011-08-18', 'smithl10', '2000-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS680686742343', '藤井悠人', 0, '+1 614-385-0245', 4, '009122672579389590', '150 East Alley Apartment 33, Columbus, GA 43201, United States', '1995-01-07', 0, 0, 'fujy66', '2007-04-12', 'yuto7', '2002-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS778369856166', '吉田結翔', 0, '+44 (121) 622 9821', 1, '534092445215576628', 'Flat 12, 443 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1994-11-28', 0, 0, 'yoyuito', '2007-07-09', 'yoshyuito', '2006-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS138512514524', 'Earl Boyd', 1, '+86 21-336-3289', 3, '073117186871337298', 'Room 27, CR Building, 244 Ganlan Rd, Pudong, Shanghai, China', '1986-01-24', 0, 0, 'eb5', '2020-03-18', 'earlb', '2005-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS982172053660', '野口翼', 0, '+81 90-7530-3323', 1, '193317077992595607', '日本東京渋谷区代々木二丁目3番11号43階', '1987-04-07', 0, 0, 'tsubasanoguchi', '2003-08-18', 'tsnog819', '2012-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS764735896281', '黄宇宁', 0, '+44 (121) 090 6272', 4, '693155942691746963', 'Block 4, 372 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1995-05-03', 0, 0, 'yunihuang8', '2014-09-02', 'huangyuning4', '2010-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS821268337458', '薛宇宁', 0, '+1 330-505-2043', 4, '923941512446256388', '623 West Market Street Suite 10, Akron, OH 44333, United States', '1997-03-10', 0, 0, 'yuning10', '2019-07-30', 'yuningxue', '2002-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS425484950483', '錢頴思', 1, '+44 (1223) 70 1744', 0, '096253814610210392', 'No.15 Main building, 477 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1987-06-30', 0, 0, 'wingsze10', '2019-06-16', 'cwingsze', '2000-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS233469384578', 'Joan Wallace', 0, '+81 70-2462-9200', 4, '815188697376489549', '日本なごやし北区楠味鋺三丁目80番12号50階', '1990-10-08', 0, 0, 'waljo9', '2013-06-07', 'joanwallace', '2008-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS294339056955', '山下美月', 0, '+86 20-416-3566', 3, '426136108183551897', 'No.22 building, 70 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1992-01-23', 0, 0, 'yamashitamits', '2017-12-26', 'mitsukiyamashita', '2019-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS788605417103', 'Chris Crawford', 0, '+86 167-8682-2695', 2, '107043950686696901', '中国深圳龙岗区布吉镇西环路867号29号楼', '1994-09-27', 0, 0, 'crawford11', '2003-12-15', 'chris707', '2007-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS590643404722', 'Dorothy Scott', 1, '+86 755-078-2681', 2, '430332832584286546', '中国深圳龙岗区布吉镇西环路679号华润大厦6室', '1998-09-11', 0, 0, 'dorothy1210', '2004-05-13', 'dscott10', '2009-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS155504967202', 'Diane Fox', 0, '+44 (116) 400 3905', 1, '233387395644486747', 'No.4 Main building, 885 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1997-03-06', 0, 0, 'diane54', '2013-04-03', 'fod', '2013-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS593266651266', '蔣德華', 1, '+1 838-085-0135', 4, '363029781056769612', '255 Lark Street Apartment 3, Albany, NY 12210, United States', '1997-08-15', 0, 0, 'takwahc', '2019-11-09', 'takwah20', '2002-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS463032163147', '谭晓明', 0, '+86 10-5878-1456', 3, '940087817504216588', '中国北京市朝阳区三里屯路394号40楼', '1994-03-27', 0, 0, 'xiaomt', '2014-08-17', 'tanxi1962', '2016-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS605557170412', '有村葵', 0, '+1 213-512-3661', 1, '716743392218480381', '227 Sky Way Suite 7, Los Angeles, CA 90043, United States', '1999-01-03', 0, 0, 'aoiarim', '2020-08-27', 'ara18', '2005-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS568016744636', 'Paul Soto', 0, '+81 66-623-2331', 3, '928547244819022090', '13-kai, 2-1-12 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1995-03-10', 0, 0, 'ps47', '2014-09-25', 'sopaul8', '2021-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS596954273350', 'Alan Howard', 1, '+81 70-1177-4796', 0, '042880472902167206', '日本おおさかし西成区出城一丁目1番14号50階', '1994-10-26', 0, 0, 'alahoward', '2006-12-07', 'ahoward', '2020-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS295042532353', '關梓晴', 1, '+86 769-4095-8871', 3, '757830946784898383', 'No.30 building, 986 Kengmei 15th Alley, Dongguan, China', '1988-06-12', 0, 0, 'tszching56', '2006-10-12', 'tckwan', '2014-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS494756276488', '邵睿', 1, '+1 330-184-2257', 4, '201273801107223572', '346 West Market Street Suite 28, Akron, OH 44333, United States', '1990-05-18', 0, 0, 'shaor', '2018-05-21', 'srui', '2016-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS750818726769', '谭睿', 1, '+44 (1865) 11 8005', 0, '749195267075976731', 'Flat 15, 454 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1987-10-03', 0, 0, 'tar', '2011-07-17', 'tan1989', '2002-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS243068603561', '前田光', 1, '+86 28-497-0024', 3, '200388912581094956', '中国成都市成华区玉双路6号676号7室', '1986-08-05', 0, 0, 'maedahikar', '2008-09-23', 'hikarumaed', '2000-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS316194250607', 'Nathan Chavez', 1, '+1 213-983-6553', 3, '796457750433015857', '640 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1991-03-04', 0, 0, 'natchavez4', '2004-09-11', 'nac', '2014-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS776722612158', '孫家明', 0, '+81 70-8949-1374', 4, '644665245906354178', '31F, 1-7-18 Omido, Higashiosaka, Osaka, Japan', '1993-01-14', 0, 0, 'kamingh', '2017-04-09', 'kamingh10', '2010-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS235172976085', 'Sharon Myers', 1, '+44 (116) 690 0588', 3, '074291177153448109', 'Unit 45, Oxford Eco Centre, 89 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1991-12-04', 0, 0, 'sharon9', '2002-04-07', 'sharon8', '2007-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS453066630481', '岩崎葵', 0, '+81 90-1939-8289', 2, '698071485690043474', '日本なごやし熱田区千年二丁目5番4号19階', '1985-10-06', 0, 0, 'aoi513', '2017-09-27', 'aiwa', '2021-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS257902035952', '黎富城', 1, '+44 7287 751270', 3, '093289483834239864', 'Flat 14, 411 New Street, Birmingham, B2 4DB, United Kingdom', '1996-03-29', 0, 0, 'fushingla', '2001-11-28', 'lfu', '2011-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS832080380848', '坂本陸', 1, '+1 718-556-1543', 2, '479743908974737756', '125 Nostrand Ave Apartment 40, Brooklyn, NY 11216, United States', '1988-02-08', 0, 0, 'sakamri', '2015-10-26', 'sriku', '2001-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS047925562324', '常嘉伦', 0, '+86 179-8011-2868', 1, '558565499386083961', 'Room 8, 326 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1998-04-12', 0, 0, 'chang605', '2004-12-13', 'chjialu52', '2021-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS416637826293', '宮崎蓮', 1, '+44 5481 490248', 1, '178045432380966604', 'Flat 49, 591 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1996-02-13', 0, 0, 'miyren7', '2010-09-11', 'renmiyazaki93', '2000-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS458385659233', '原蒼士', 1, '+44 5163 511259', 4, '604249718199917555', 'Block 33, 624 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1986-06-11', 0, 0, 'hara1', '2004-12-11', 'aoshi5', '2020-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS168557480603', '駱祖兒', 1, '+1 838-783-7845', 2, '688784035855822656', '896 State Street Apt 17, Albany, NY 12203, United States', '1997-06-26', 0, 0, 'locy8', '2011-05-17', 'choyee7', '2003-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS835961359220', 'Wayne Nguyen', 1, '+44 (116) 907 7793', 4, '444570620155435812', 'Block 43, 401 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1996-07-30', 0, 0, 'nwayne14', '2009-04-20', 'nguyen903', '2001-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS129447125255', '洪學友', 0, '+44 (1865) 96 0702', 3, '547197512449330352', 'Block 30, 864 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1987-06-08', 0, 0, 'hokyau5', '2019-02-07', 'hokyau2006', '2010-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS574622602827', 'Alice Powell', 1, '+81 80-0815-1469', 1, '731769836046750331', '日本札幌豊平区豊平三条十三丁目3番18号16号室', '1993-02-19', 0, 0, 'apowell', '2002-08-16', 'alicepowell', '2018-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS519838521374', '今井大輔', 1, '+86 135-3624-3447', 1, '989470399985390216', '中国上海市闵行区宾川路526号27室', '1993-11-09', 0, 0, 'imaidaisuke15', '2013-03-25', 'imaidaisuke1', '2009-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS777516913887', '谷口樹', 1, '+44 (116) 576 4554', 2, '508282602162586629', 'Unit 14, Oxford Eco Centre, 851 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-08-04', 0, 0, 'taniitsuki921', '2019-07-18', 'itsuktaniguchi', '2011-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS067671612608', 'Louis King', 0, '+81 66-359-8133', 2, '306348372224461311', '日本おおさかし平野区加美東四丁目9番13号15号室', '1993-10-03', 0, 0, 'kl68', '2003-09-14', 'louis907', '2003-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS395017253209', '清水湊', 1, '+81 11-366-9550', 2, '886017535495339449', '日本札幌白石区菊水三条五丁目2番19号41階', '1997-11-19', 0, 0, 'shimizumin65', '2003-02-08', 'smina3', '2013-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS506947257578', 'Carmen Jackson', 1, '+44 (20) 8627 2679', 3, '352279730896919216', 'No.29 Main building, 678 Hanover Street, London, W1S 1YD, United Kingdom', '1997-01-09', 0, 0, 'jcarmen', '2021-12-23', 'jcarmen10', '2010-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS639265540978', '斎藤架純', 0, '+81 80-4004-4531', 2, '287723510125330734', '23F, 4 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-12-24', 0, 0, 'saitkasumi', '2020-07-20', 'saito530', '2021-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS366046346252', '長谷川葵', 0, '+44 (151) 199 9076', 3, '111834140128501998', 'Unit 1, Oxford Eco Centre, 511 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1995-10-15', 0, 0, 'hasegawaao', '2012-04-30', 'hasegawaaoi4', '2001-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS658238193073', '有村紗良', 0, '+44 (151) 486 7290', 0, '134195498257850259', 'Block 40, 503 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1998-07-06', 0, 0, 'arimura4', '2001-07-31', 'sara55', '2014-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS989704584143', 'Matthew Jones', 0, '+86 21-337-0740', 1, '051676114167650629', '34F, 183 Hongqiao Rd., Xu Hui District, Shanghai, China', '1992-04-26', 0, 0, 'matthewjones', '2003-04-06', 'jmatthew2012', '2007-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS589801774706', '袁秀文', 1, '+81 80-4244-1774', 2, '348998731789928874', '33-kai, 1-5-5, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1986-07-28', 0, 0, 'yuensm90', '2001-12-19', 'yuen1', '2000-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS013355682564', '阿部湊', 0, '+1 838-624-5146', 4, '117940042560772374', '67 Central Avenue Apt 32, Albany, NY 12206, United States', '1992-03-20', 0, 0, 'abemin309', '2019-11-22', 'minabe', '2002-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS152753369625', '毛子韬', 1, '+44 5084 566273', 0, '282829780293565776', 'Unit 17, Oxford Eco Centre, 932 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1991-09-24', 0, 0, 'zitm2007', '2007-09-30', 'zitamao4', '2005-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS371050162712', '小野愛梨', 0, '+1 614-471-6230', 0, '775354988328940254', '575 East Alley Apartment 27, Columbus, GA 43201, United States', '1991-09-30', 0, 0, 'ono52', '2004-02-15', 'airion', '2006-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS291848573438', '罗宇宁', 0, '+44 5559 352126', 3, '023356882002792470', 'Unit 38, Oxford Eco Centre, 947 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1995-05-22', 0, 0, 'yuningluo', '2003-10-22', 'yuningl', '2007-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS867979803380', 'Eleanor Woods', 0, '+86 28-053-5743', 1, '784830121333771411', 'Room 35, No. 528, Shuangqing Rd, Chenghua District, Chengdu, China', '1990-12-11', 0, 0, 'woodselea', '2005-10-13', 'woodse', '2013-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS461876627891', '姚國榮', 1, '+86 28-688-5855', 3, '487911867713898842', '中国成都市锦江区红星路三段613号华润大厦29室', '1986-10-06', 0, 0, 'yeowkw', '2009-09-01', 'ykw', '2011-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS423554102802', '森田結翔', 1, '+86 136-6827-4688', 1, '060756532471297741', 'Room 48, CR Building, No.166, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-11-22', 0, 0, 'moryui', '2006-01-16', 'moyuit117', '2013-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS462606044403', '韩秀英', 0, '+81 74-587-0988', 3, '434908854111359952', '日本ならし西大寺赤田町一丁目7番6号16階', '1999-01-11', 0, 0, 'haxiu5', '2019-05-14', 'xiuying912', '2015-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS599093633266', 'Victoria Bennett', 1, '+44 5217 770146', 2, '961208644202572536', 'Flat 22, 568 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1990-03-15', 0, 0, 'victoriabenne', '2019-03-20', 'victoriab', '2021-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS002078529169', '關家輝', 1, '+81 80-2860-6820', 4, '549629640425325860', '31-kai, 2-1-15 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1985-12-28', 0, 0, 'kfkwan423', '2009-09-18', 'kkafai7', '2004-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS032168944142', 'Pauline Robertson', 1, '+1 614-512-2367', 1, '285680935444997290', '966 Diplomacy Drive Apt 17, Columbus, GA 43228, United States', '1989-02-23', 0, 0, 'prober', '2012-04-28', 'paulrober331', '2007-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS472059588511', '小林蒼士', 0, '+81 66-101-9763', 0, '473280137189600712', '日本おおさかし近江堂一丁目7番6号13号室', '1985-11-16', 0, 0, 'aoshi1988', '2005-04-27', 'akobayashi', '2015-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS183786303296', 'Craig Johnson', 1, '+86 190-2193-4516', 1, '634871740439568203', '中国上海市徐汇区虹桥路304号28室', '1995-09-09', 0, 0, 'johnsoncraig', '2015-05-23', 'craigjohnson', '2000-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS533113745745', '溫嘉欣', 0, '+1 718-242-2049', 1, '579104704120219330', '479 Nostrand Ave Apt 45, Brooklyn, NY 11216, United States', '1994-04-08', 0, 0, 'waky5', '2005-01-23', 'wankarya2', '2006-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS861295503109', '周梓晴', 1, '+86 180-2626-9864', 1, '507272223775442096', 'No.7 building, 164 Tianhe Road, Tianhe District, Guangzhou, China', '1987-06-17', 0, 0, 'tszchingch', '2005-10-18', 'tszchingcho', '2006-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS279298019987', '贺晓明', 1, '+86 180-9436-7944', 3, '782009404857461655', 'No.41 building, 418 Binchuan Rd, Minhang District, Shanghai, China', '1988-06-04', 0, 0, 'xiaominghe', '2014-04-10', 'hxi808', '2019-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS955942308018', 'Luis Rose', 1, '+86 755-088-6372', 4, '824963326247069628', '中国深圳福田区景田东一街985号11号楼', '1994-11-07', 0, 0, 'luisro', '2004-06-26', 'roselui4', '2006-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS393967953700', '梅學友', 1, '+44 (151) 814 2060', 3, '647588453900168794', 'No.35 Main building, 748 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1986-05-15', 0, 0, 'hymui', '2016-10-02', 'hokyaumui8', '2014-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS589574756733', '福田樹', 0, '+86 755-3903-6948', 1, '524719729942671906', '中国深圳罗湖区田贝一路782号50栋', '1996-12-27', 0, 0, 'itsuki7', '2000-01-04', 'fitsuk60', '2013-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS610461732497', '叶詩涵', 0, '+81 74-756-9259', 1, '984035752230885407', '日本ならし西大寺赤田町一丁目7番10号22階', '1985-02-20', 0, 0, 'yes', '2001-11-14', 'ye327', '2016-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS107403894640', '范云熙', 0, '+86 21-226-4606', 1, '153297770615996354', 'Room 19, 783 Ganlan Rd, Pudong, Shanghai, China', '1998-02-20', 0, 0, 'yunxifan', '2003-01-31', 'yfan', '2003-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS096857438048', '邵家輝', 0, '+86 151-2353-4839', 0, '248348312881948483', 'Room 4, 890 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1991-07-22', 0, 0, 'skf8', '2004-10-09', 'kfsiu4', '2010-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS253728379058', '田詩君', 1, '+81 11-484-7681', 3, '945977663669287727', '日本札幌中央区宮の森四条六丁目1番5号5号室', '1992-09-06', 0, 0, 'szekwan907', '2020-10-06', 'tinsk1956', '2020-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS716792237303', 'Pamela Grant', 1, '+1 312-097-6806', 1, '864546885462830540', '813 Rush Street Apt 13, Chicago, IL 60611, United States', '1998-03-15', 0, 0, 'grant83', '2019-07-17', 'pamelgrant4', '2020-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS665530054281', '渡辺光莉', 1, '+81 70-6672-9384', 3, '487986596733063647', '18F, 1-1-14 Deshiro, Nishinari Ward, Osaka, Japan', '1988-02-15', 0, 0, 'hikarsa', '2018-08-25', 'hikasato', '2022-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS484931151227', 'Jose Ferguson', 0, '+86 10-5379-6587', 4, '483053433859626559', 'Room 7, CR Building, 874 028 County Rd, Yanqing District, Beijing, China', '1989-03-26', 0, 0, 'jose3', '2003-06-15', 'jfer', '2000-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS891683922147', '田村大和', 1, '+1 312-081-7861', 4, '364239218727885344', '738 Pedway Apartment 10, Chicago, IL 60601, United States', '1996-05-19', 0, 0, 'tyamato87', '2015-07-31', 'tyamato5', '2010-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS757527695544', '盧家強', 0, '+81 66-679-1956', 4, '253018022725420929', 'Rm. 2, 3-27-8 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1985-02-20', 0, 0, 'kakeung4', '2018-01-15', 'lkk', '2015-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS230212837820', 'William Daniels', 0, '+1 838-402-1234', 3, '491864659094230393', '44 Broadway Suite 22, Albany, NY 12207, United States', '1997-02-23', 0, 0, 'daniels6', '2014-04-02', 'wdanie', '2009-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS242648518470', '中川涼太', 0, '+44 5223 658254', 4, '469457414910434853', 'Flat 38, 442 Maddox Street, London, W1S 1PU, United Kingdom', '1990-11-27', 0, 0, 'ryotanakagawa1948', '2019-08-28', 'ryn', '2014-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS354255593740', '萧睿', 0, '+81 90-3220-3696', 3, '482234344039300635', '日本東京千代田区丸の内一丁目6番6号23階', '1985-12-04', 0, 0, 'ruixiao', '2014-02-22', 'rxiao54', '2001-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS399113165124', '邓嘉伦', 1, '+81 11-230-4684', 1, '301109307835516782', '日本札幌清田区真栄四条五丁目19番15号30号室', '1985-07-02', 0, 0, 'dengjialun', '2013-06-08', 'jid', '2011-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS931807249261', 'Eva Castillo', 1, '+81 80-8408-5484', 3, '778320980512445223', '日本札幌厚別区上野幌一条二丁目1番9号13号室', '1988-08-30', 0, 0, 'evac', '2018-02-03', 'ec67', '2017-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS237104022156', '松田光', 0, '+86 755-117-9869', 3, '322606380872179316', '中国深圳罗湖区清水河一路109号27栋', '1997-01-23', 0, 0, 'himatsuda', '2005-06-26', 'hikarumatsuda', '2021-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS961289075320', '丁子韬', 0, '+44 (161) 120 3415', 2, '241905193818085624', 'Unit 12, Oxford Eco Centre, 798 Mosley St, Manchester, M2 3AQ, United Kingdom', '1997-05-17', 0, 0, 'dingz', '2012-08-19', 'dzitao113', '2010-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS532014055523', '萬發', 1, '+86 20-7792-2473', 0, '739582399670806255', 'No.47 building, 928 Xiaoping E Rd, Baiyun , Guangzhou, China', '1991-05-24', 0, 0, 'fatme91', '2020-08-04', 'mefat', '2016-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS216524403258', '萧嘉伦', 0, '+81 3-8195-8025', 4, '363059064828989099', '29F, 1-6-20, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1998-05-29', 0, 0, 'jialuxiao414', '2016-12-17', 'jialunxiao', '2019-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS605479690520', '姚震南', 0, '+81 74-785-3799', 2, '267235645315018155', '13-kai, 3-9-15 Gakuenminami, Nara, Japan', '1998-09-13', 0, 0, 'zhennany', '2005-03-08', 'yaoz1', '2002-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS122370656934', 'Christina Jackson', 1, '+81 90-8832-5890', 1, '853788757309709320', '日本札幌白石区菊水三条五丁目2番16号39号室', '1987-12-30', 0, 0, 'christinajackson', '2017-10-17', 'christinajacks', '2012-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS125700600215', '元慧珊', 1, '+44 7423 141260', 4, '190281182728857766', 'No.19 Main building, 487 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1999-01-26', 0, 0, 'waisan1990', '2012-11-23', 'yuenws1946', '2021-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS305524881452', 'Bruce Stone', 1, '+86 138-6202-1697', 1, '983342039773019793', '中国北京市房山区岳琉路691号47号楼', '1987-05-16', 0, 0, 'stonebruce', '2013-06-12', 'brucstone', '2010-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS761485392288', '龚云熙', 0, '+86 138-5172-6436', 2, '855187716035073044', '中国中山京华商圈华夏街35号36号楼', '1985-12-02', 0, 0, 'gong903', '2006-02-28', 'yunxigo', '2008-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS130667629080', 'Henry Gonzalez', 0, '+86 136-4390-4855', 3, '425572637836209347', 'No.28 building, 225 Yueliu Rd, Fangshan District, Beijing, China', '1987-04-15', 0, 0, 'gonzalez2', '2020-08-29', 'gonhenr', '2008-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS721850575557', 'Kathryn Ruiz', 0, '+1 213-518-4022', 4, '946416877844831678', '541 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1991-08-01', 0, 0, 'kathrruiz', '2018-10-29', 'ruizkathryn', '2004-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS702565868385', '馬俊宇', 1, '+86 191-6541-7212', 2, '330304281425637110', 'Room 17, CR Building, 677 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1990-08-02', 0, 0, 'ma915', '2012-10-27', 'macy1967', '2017-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS200548373147', 'Carol Snyder', 1, '+81 74-655-6511', 0, '089250217771208964', '日本ならし西大寺赤田町一丁目7番3号10階', '1986-10-04', 0, 0, 'snydercaro', '2015-11-09', 'casn', '2020-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS128379189213', '菊地愛梨', 1, '+81 90-9263-6803', 3, '800627584266559550', '日本ならし大和郡山市本庄町一丁目1番16号48階', '1998-05-30', 0, 0, 'kikair', '2010-12-04', 'kikuairi7', '2016-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS887104595329', 'Nathan Hernandez', 1, '+1 212-523-4926', 0, '348977934425921277', '51 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1986-03-11', 0, 0, 'hnatha5', '2008-04-30', 'hna67', '2003-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS524295732792', 'Brandon Turner', 1, '+81 80-0206-6517', 1, '332732868120462633', 'Rm. 16, 9 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-04-18', 0, 0, 'bturn19', '2016-09-18', 'turnerbrandon', '2007-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS580950499694', '谢睿', 0, '+1 213-114-9956', 1, '446478187524699503', '981 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1985-03-29', 0, 0, 'xr620', '2016-03-04', 'rxie', '2019-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS850438249161', '原田七海', 0, '+1 838-888-3313', 1, '607129983783162273', '739 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1995-10-11', 0, 0, 'hn6', '2017-04-28', 'haradanan', '2008-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS182598717891', '余秀英', 0, '+1 614-813-2540', 2, '625337495934716772', '976 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1991-06-03', 0, 0, 'xy3', '2014-06-19', 'xiuy', '2013-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS156031352710', 'Marie Wells', 0, '+81 90-8861-6247', 2, '253058305869001701', '48F, 5-2-11 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1986-05-11', 0, 0, 'marie53', '2017-01-28', 'mawells', '2001-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS135771163864', '有村詩乃', 1, '+86 140-0973-6829', 0, '626687917825598474', 'Room 13, 46 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1998-10-03', 0, 0, 'arishi', '2021-03-02', 'ashino', '2000-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS697116435367', '于晓明', 1, '+86 173-2795-2562', 0, '192691298545129256', 'No.48 building, 585 Xiaoping E Rd, Baiyun , Guangzhou, China', '1987-11-09', 0, 0, 'yux', '2008-05-20', 'yxiaoming', '2004-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS432534597215', '邵慧儀', 1, '+44 5035 610506', 2, '075816899139009565', 'Flat 40, 269 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1986-08-20', 0, 0, 'siwy', '2007-06-01', 'swaiyee1218', '2019-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS534609644735', '宣祖兒', 0, '+81 11-399-6961', 2, '744170439026498822', '46F, 5-19-20 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1992-09-19', 0, 0, 'choyee1975', '2004-02-16', 'hsuancy10', '2006-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS932056133538', 'Thomas Russell', 0, '+1 718-154-2841', 2, '451612705160904553', '337 Bergen St Apartment 17, Brooklyn, NY 11217, United States', '1992-01-19', 0, 0, 'thomaru317', '2002-04-22', 'thomasr', '2013-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS555567292212', 'Donna Simmons', 0, '+86 172-0516-8982', 2, '634757640140307358', 'Room 42, No. 104, Shuangqing Rd, Chenghua District, Chengdu, China', '1985-07-04', 0, 0, 'donnasimmo', '2010-09-15', 'dons79', '2008-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS892509347692', 'Phyllis Tucker', 1, '+44 (1223) 23 9154', 0, '173758617476135120', 'Unit 14, Oxford Eco Centre, 145 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1988-02-03', 0, 0, 'tuckerph5', '2019-09-25', 'tuckephy1024', '2001-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS916679300577', '罗璐', 1, '+86 28-122-3139', 4, '373427223754080910', '中国成都市锦江区人民南路四段13号29号楼', '1993-11-12', 0, 0, 'luolu529', '2009-01-23', 'luo1008', '2005-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS537122493813', '彭家明', 1, '+81 52-245-3838', 1, '215991988595643107', '日本なごやし守山区瀬古東二丁目171番14号50階', '1990-04-20', 0, 0, 'pkm10', '2001-07-08', 'kamingpang84', '2002-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS646375704959', 'Gladys Moore', 0, '+86 28-486-8583', 0, '196467251809805777', '中国成都市成华区玉双路6号110号28楼', '1986-02-09', 0, 0, 'gladysmoore', '2011-08-25', 'mooreg', '2016-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS875864927618', '太田玲奈', 0, '+81 11-833-0038', 3, '881094917078229969', '42F, 2-1-13 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-04-19', 0, 0, 'renao', '2012-10-26', 'rena508', '2012-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS981229963663', '谭云熙', 0, '+81 90-7110-1223', 3, '712488051618399080', '日本おおさかし東住吉区東田辺三丁目27番18号26階', '1987-05-23', 0, 0, 'tan1006', '2006-10-11', 'tanyunx4', '2000-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS704582811285', '柴田花', 1, '+81 70-6732-1455', 1, '711185760069036152', '36-kai, 3-27-15 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-06-01', 0, 0, 'hanas1', '2008-08-10', 'hanashi', '2002-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS806802471886', '方淑怡', 0, '+1 330-073-7555', 3, '829006391750218063', '118 Ridgewood Road Apt 46, Akron, OH 44321, United States', '1990-09-18', 0, 0, 'fongsy9', '2007-03-07', 'sukyee51', '2002-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS199149091653', '鄺淑怡', 1, '+86 132-5793-8230', 4, '303094356128765168', 'Room 36, 273 FuXingMenNei Street, XiCheng District, Beijing, China', '1995-09-13', 0, 0, 'syk', '2011-04-15', 'syk', '2003-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS855994794871', '吕宇宁', 1, '+44 7187 650287', 1, '988782502908900049', 'Unit 47, Oxford Eco Centre, 594 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1996-03-18', 0, 0, 'lu1130', '2018-02-26', 'lyunin', '2010-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS697085559981', '上田湊', 1, '+81 3-5621-6466', 1, '496153629324040868', '日本東京港区東新橋一丁目5番14号32号室', '1995-05-14', 0, 0, 'uemina', '2021-09-03', 'minatou', '2015-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS796920737912', '宮崎優奈', 1, '+1 213-609-7832', 0, '405203327657426551', '525 S Broadway Suite 37, Los Angeles, CA 90015, United States', '1990-06-18', 0, 0, 'ym44', '2012-12-06', 'miyazaki10', '2017-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS321642492088', 'Shannon Nelson', 1, '+86 769-5656-4283', 1, '408515650833168768', 'No.18 building, 795 Huanqu South Street 2nd Alley, Dongguan, China', '1992-05-31', 0, 0, 'nelshannon', '2003-06-13', 'shannon76', '2020-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS065962587153', '村上百花', 0, '+81 11-948-1560', 2, '624236108224306088', '6-kai, 5-4-2 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1992-10-11', 0, 0, 'momokam3', '2003-04-22', 'murakamimo', '2017-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS865898611888', '刘子韬', 1, '+81 66-780-6561', 1, '905790759622211587', '日本おおさかし近江堂一丁目7番2号45階', '1987-06-26', 0, 0, 'liuzitao', '2000-02-09', 'liuzit4', '2003-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS393017337405', '谷口一輝', 0, '+81 3-8964-3810', 0, '454592505182313120', '日本東京中央区銀座三丁目12番8号14階', '1991-01-13', 0, 0, 'ikki611', '2012-03-13', 'ikkitani', '2002-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS565353672181', '杜秀英', 1, '+81 80-0898-1802', 2, '808980114995647830', '日本なごやし北区清水三丁目19番7号16階', '1992-02-25', 0, 0, 'dux', '2016-08-22', 'xdu3', '2018-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS028456004813', '薛子异', 1, '+86 21-952-7848', 3, '958793342539139617', 'Room 43, 786 Binchuan Rd, Minhang District, Shanghai, China', '1994-03-20', 0, 0, 'zxu2', '2017-03-04', 'xueziyi', '2019-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS152777140107', '内田陸', 1, '+86 28-3947-6386', 2, '016626040902353834', 'No.45 building, No. 701, Shuangqing Rd, Chenghua District, Chengdu, China', '1994-09-08', 0, 0, 'uchidr', '2013-10-22', 'riuch84', '2008-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS945060409767', '岡田陽太', 1, '+81 66-210-1919', 0, '700523391413778593', '34-kai, 1-7-20 Omido, Higashiosaka, Osaka, Japan', '1991-05-31', 0, 0, 'okada72', '2005-01-01', 'okada6', '2017-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS025111154251', '島田葵', 1, '+1 614-608-5797', 4, '440694148219712282', '632 Wicklow Road Suite 31, Columbus, GA 43204, United States', '1992-02-09', 0, 0, 'shimadaaoi', '2003-05-18', 'aos1225', '2016-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS670494399695', '吕杰宏', 1, '+86 21-6305-8309', 3, '577084537226403862', '中国上海市徐汇区虹桥路197号11室', '1991-03-10', 0, 0, 'ljiehong7', '2011-12-29', 'lj329', '2005-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS745926956392', 'Phillip Bailey', 1, '+86 10-3822-5683', 0, '014978647008713040', '中国北京市东城区东单王府井东街293号26室', '1995-10-20', 0, 0, 'bailep', '2002-11-12', 'phillip7', '2011-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS676638429286', '潘嘉伦', 0, '+86 137-1735-0351', 1, '959783029787541182', '中国成都市成华区双庆路407号41号楼', '1990-07-05', 0, 0, 'jpan89', '2014-07-03', 'paj', '2000-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS404547107203', '崔震南', 0, '+86 769-9785-0236', 4, '496921540770021403', '中国东莞东泰五街767号39号楼', '1995-01-26', 0, 0, 'cuizhennan', '2010-04-03', 'zhenncui', '2020-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS789898064084', '石田美羽', 1, '+1 213-154-2542', 1, '828143607186253730', '924 Alameda Street Apartment 23, Los Angeles, CA 90002, United States', '1988-07-06', 0, 0, 'miuish1029', '2007-07-27', 'ishidam', '2002-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS697397944774', 'Sara Miller', 1, '+44 5626 937558', 4, '373182515417971482', 'Flat 10, 682 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1995-09-17', 0, 0, 'saramiller2', '2022-01-28', 'saramiller', '2020-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS155602528522', '谢璐', 1, '+81 90-7509-9709', 1, '429963627484989496', '日本なごやし北区楠味鋺三丁目80番1号48号室', '1991-04-30', 0, 0, 'lux', '2005-11-10', 'luxie', '2008-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS412187881830', '韓頴思', 0, '+1 213-155-5820', 2, '747996802960639381', '240 Grape Street Apartment 10, Los Angeles, CA 90002, United States', '1999-02-14', 0, 0, 'wingszehan', '2001-02-20', 'han75', '2016-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS203765309192', 'Joyce Hawkins', 0, '+86 10-246-0380', 3, '586172932407595390', 'No.24 building, 312 028 County Rd, Yanqing District, Beijing, China', '1987-04-09', 0, 0, 'joycehawkins12', '2001-09-11', 'joycha118', '2017-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS440248634995', '王曉彤', 0, '+44 7292 150604', 3, '284263616305757495', 'Flat 31, 27 Park End St, Oxford, OX1 1JD, United Kingdom', '1992-05-09', 0, 0, 'hiutungwo', '2014-06-19', 'htwong1968', '2018-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS402192108858', '邱宇宁', 0, '+86 164-2178-6982', 3, '502391095491797797', '中国深圳罗湖区清水河一路590号40楼', '1993-06-28', 0, 0, 'yuningqiu2014', '2015-09-19', 'yuning7', '2001-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS357311875180', '竹内涼太', 1, '+81 66-086-2177', 3, '157676489391646955', '日本おおさかし西成区出城一丁目1番9号3号室', '1994-05-01', 0, 0, 'takeuchi209', '2013-04-18', 'ryottak', '2010-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS290343091649', '鄺力申', 0, '+81 70-9146-9041', 1, '686967290335095384', '10F, 3-19-3 Shimizu, Kita Ward, Nagoya, Japan', '1986-03-03', 0, 0, 'lskwong75', '2016-04-19', 'kwongls3', '2005-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS855209255911', '莫宇宁', 1, '+86 755-0513-6416', 3, '575171314865327322', '中国深圳龙岗区布吉镇西环路436号14号楼', '1987-07-16', 0, 0, 'myuning1006', '2019-08-03', 'yuningmo', '2012-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS125787466743', '劉學友', 1, '+86 769-379-7858', 4, '991897990942541480', 'No.11 building, 939 Shanhu Rd, Dongguan, China', '1998-06-20', 0, 0, 'lau712', '2014-04-10', 'lauhy602', '2010-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS308754707132', 'Leroy Morgan', 0, '+86 169-8340-6022', 4, '619722520157816605', 'No.11 building, 588 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1995-08-08', 0, 0, 'leroymorgan1104', '2006-04-01', 'lemorgan117', '2013-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS184460890528', '徐璐', 0, '+81 70-8061-7062', 3, '588985507559420679', '40F, 5-19-5 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1995-02-10', 0, 0, 'luxu', '2001-08-06', 'luxu1007', '2011-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS073505664738', '羅天榮', 0, '+81 90-5311-9487', 1, '245797901819820677', '日本なごやし北区楠味鋺三丁目80番4号34号室', '1989-02-01', 0, 0, 'lotw', '2010-06-27', 'lo1107', '2014-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS807519089263', '苏震南', 0, '+86 130-7424-4563', 0, '263331927353084238', '中国深圳福田区深南大道200号12号楼', '1990-05-03', 0, 0, 'suzhennan', '2007-09-26', 'szhennan', '2020-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS499308246525', '宮崎美咲', 0, '+81 11-730-8788', 1, '612874622996744840', '日本札幌白石区菊水三条五丁目4番12号31階', '1987-06-09', 0, 0, 'miyazm', '2007-09-19', 'misakmiyazaki', '2008-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS498348449754', '中森聖子', 1, '+81 11-033-1300', 3, '772617299136309068', 'Rm. 5, 13-3-2 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1986-04-11', 0, 0, 'snaka', '2008-11-16', 'ns103', '2001-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS566091973742', 'Douglas Mason', 1, '+86 755-8384-5254', 3, '439546068995135044', '15F, 170 Jingtian East 1st St, Futian District, Shenzhen, China', '1996-06-14', 0, 0, 'masdougl', '2009-12-04', 'masondouglas', '2017-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS802787603862', '吉田光', 1, '+86 165-7230-4215', 1, '927883221532116801', 'No.12 building, 726 Ganlan Rd, Pudong, Shanghai, China', '1989-04-17', 0, 0, 'hyosh', '2014-12-18', 'hikaruyoshida', '2000-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS723902785468', '中川玲奈', 1, '+86 10-196-4364', 4, '805655785245569657', 'No.17 building, 371 FuXingMenNei Street, XiCheng District, Beijing, China', '1992-04-10', 0, 0, 'rena', '2019-10-13', 'rena831', '2012-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS151598629322', '徐杰宏', 1, '+86 194-1307-6314', 1, '634652391633804843', 'No.46 building, 332 Tianhe Road, Tianhe District, Guangzhou, China', '1991-01-09', 0, 0, 'jiehongxu', '2014-12-31', 'jiehongxu1965', '2020-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS235447702859', '邱安琪', 1, '+86 760-365-6915', 0, '025424892845114686', '中国中山紫马岭商圈中山五路223号38号楼', '1989-12-29', 0, 0, 'anq', '2005-07-01', 'qian', '2020-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS996447728218', '潘云熙', 0, '+86 160-5313-8344', 2, '657568544797507503', 'Room 7, CR Building, 552 Jianxiang Rd, Pudong, Shanghai, China', '1991-06-16', 0, 0, 'pyunxi01', '2016-10-02', 'pyu10', '2004-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS500009691581', '木下聖子', 1, '+1 330-418-9958', 0, '489866243228465159', '918 Ridgewood Road Apartment 30, Akron, OH 44321, United States', '1997-04-03', 0, 0, 'seiko9', '2011-03-20', 'kinoshitaseiko801', '2021-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS900346424707', '工藤美緒', 0, '+86 760-7698-2112', 3, '546174138745537644', '中国中山乐丰六路903号华润大厦37室', '1986-11-21', 0, 0, 'kudo45', '2007-09-05', 'kmi', '2008-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS195056736995', '佐野光莉', 0, '+81 11-333-8004', 0, '478987540785124026', '26-kai, 2-1-11 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1991-09-21', 0, 0, 'sanohikari', '2019-03-20', 'sano7', '2020-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS772667970426', '工藤美咲', 0, '+44 5127 022420', 3, '224536308768398050', 'No.50 Main building, 597 Pollen Street, London, W1S 1NG, United Kingdom', '1986-09-07', 0, 0, 'misakikud', '2018-08-20', 'miskudo', '2009-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS480543754080', '李學友', 1, '+1 330-577-3362', 2, '895110522236403636', '481 Collier Road Suite 11, Akron, OH 44320, United States', '1985-02-23', 0, 0, 'hylee1', '2017-11-30', 'lehy', '2013-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS042064719296', '森玲奈', 1, '+81 80-8294-6771', 1, '940002441146302658', '日本なごやし北区清水三丁目19番13号12階', '1985-08-15', 0, 0, 'morre', '2018-03-07', 'morir09', '2000-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS563488032631', '曹詩涵', 1, '+44 5172 485985', 2, '951378040156393756', 'Flat 8, 976 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1985-11-30', 0, 0, 'cshi48', '2002-04-30', 'shihancao811', '2010-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS517428574680', 'Gregory Castro', 0, '+86 760-5486-0513', 3, '540100259448723400', '中国中山紫马岭商圈中山五路368号35室', '1985-11-16', 0, 0, 'castro202', '2014-09-13', 'gregorycas57', '2009-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS348150769452', 'Deborah Wells', 1, '+81 80-6848-7659', 4, '891312666670798150', 'Rm. 29, 1-1-8 Deshiro, Nishinari Ward, Osaka, Japan', '1992-03-01', 0, 0, 'wellsdebo', '2005-03-23', 'deborwells', '2020-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS387185712177', 'Marjorie Diaz', 0, '+44 5892 298918', 3, '934084168819181968', 'Unit 48, Oxford Eco Centre, 570 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1987-06-22', 0, 0, 'diaz1109', '2016-05-11', 'dmarjo', '2002-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS164113205499', '河野詩乃', 0, '+86 187-8305-2788', 3, '245445985178315757', 'Room 7, 323 Shennan Ave, Futian District, Shenzhen, China', '1986-09-14', 0, 0, 'shinoko6', '2007-06-22', 'konoshin2', '2004-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS352959408864', '钟詩涵', 1, '+1 718-281-5168', 1, '550234101983147061', '596 Bergen St Apt 7, Brooklyn, NY 11217, United States', '1987-11-24', 0, 0, 'shihzhong', '2016-02-05', 'zhongs', '2004-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS455436282815', '魏岚', 1, '+1 330-877-2789', 2, '358810007119411696', '269 Ridgewood Road Apt 27, Akron, OH 44321, United States', '1995-07-15', 0, 0, 'lw127', '2011-04-22', 'lwei', '2016-02-29'); +INSERT INTO "public"."userinfo" VALUES ('TS566858003836', '羅玲玲', 1, '+1 212-606-4733', 0, '027523214485528152', '644 Wooster Street Suite 16, New York, NY 10012, United States', '1988-03-21', 0, 0, 'loll1001', '2006-09-23', 'lilo7', '2016-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS689404493880', 'Cynthia Green', 0, '+86 134-0267-2213', 1, '567087896216523165', 'Room 50, CR Building, 627 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1987-02-09', 0, 0, 'cynthgreen', '2010-07-14', 'cynthiagreen9', '2001-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS023382180753', 'Russell Nguyen', 0, '+86 163-7435-7091', 3, '827504432022877327', 'Room 35, CR Building, 510 Shanhu Rd, Dongguan, China', '1990-03-28', 0, 0, 'ngurussell', '2000-09-26', 'nrussell', '2004-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS771004966359', '中川蓮', 0, '+81 90-0511-5396', 3, '625287676582850844', '日本ならし西大寺赤田町一丁目7番18号20号室', '1995-09-25', 0, 0, 'renn8', '2005-12-14', 'rnak5', '2018-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS042743689888', '太田百花', 1, '+44 (151) 931 8235', 4, '289218057908203873', 'Block 7, 240 Redfern St, Liverpool, L20 8JB, United Kingdom', '1995-12-22', 0, 0, 'otamomoka10', '2012-02-27', 'omomoka', '2017-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS174898553021', '木村結翔', 0, '+1 330-849-4653', 2, '309628696419812538', '138 Ridgewood Road Apartment 40, Akron, OH 44321, United States', '1986-01-10', 0, 0, 'kimura95', '2020-08-31', 'kimuray', '2005-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS017978423783', '山下百花', 0, '+44 (161) 420 9593', 2, '319926056336317602', 'Block 44, 648 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-08-01', 0, 0, 'yamashitamomoka', '2006-06-28', 'momoka93', '2007-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS771044729577', 'Nathan Marshall', 1, '+44 7138 003227', 3, '128088427213345187', 'Block 47, 639 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1995-01-22', 0, 0, 'nathamarshall', '2018-03-21', 'marshallnatha8', '2021-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS332543661990', 'Deborah Mendez', 1, '+81 90-4625-0166', 4, '371846621913051831', 'Rm. 20, 1-6-6, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1988-09-06', 0, 0, 'deborahm', '2010-01-22', 'mendde', '2020-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS753124462611', '蔡璐', 1, '+86 196-9889-6489', 3, '848977449461174191', '中国中山京华商圈华夏街905号30栋', '1992-03-17', 0, 0, 'clu306', '2000-05-20', 'cailu310', '2014-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS632420640258', '唐朝偉', 1, '+81 52-900-1216', 2, '236834614536902456', '20F, 5 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1987-01-13', 0, 0, 'tochiuwai15', '2010-02-21', 'toncw7', '2002-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS954429290477', '廖仲賢', 1, '+86 148-9663-2018', 4, '066496058220177300', 'No.27 building, 606 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1993-11-02', 0, 0, 'chungyinli', '2005-03-13', 'liaocy1106', '2020-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS702383735853', '胡子韬', 0, '+1 213-294-9173', 4, '748256855801711651', '215 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1988-02-19', 0, 0, 'zitaohu', '2013-02-03', 'zitaohu', '2013-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS798346069849', '工藤大地', 1, '+81 11-674-4937', 2, '924805094856219221', '7-kai, 13-3-12 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1998-02-16', 0, 0, 'kdaichi', '2015-03-23', 'daichikudo62', '2003-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS757981619747', 'Adam White', 0, '+86 10-175-0466', 2, '034731990029177257', 'Room 28, 546 East Wangfujing Street, Dongcheng District , Beijing, China', '1996-03-23', 0, 0, 'adamw', '2000-10-25', 'whiteadam8', '2001-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS032346530300', '江杰宏', 0, '+86 755-729-5661', 1, '314166829375634990', '中国深圳福田区景田东一街617号14栋', '1986-09-04', 0, 0, 'jiehoji1001', '2004-03-18', 'jiehong329', '2006-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS004486754241', '田致远', 1, '+1 614-126-9143', 0, '160918752473148514', '55 Diplomacy Drive Apt 10, Columbus, GA 43228, United States', '1989-11-30', 0, 0, 'zhiyuan1994', '2007-05-01', 'tiazhi1944', '2020-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS774094116447', '酒井瑛太', 1, '+86 20-964-3078', 2, '187397354816544423', 'No.24 building, 726 Tianhe Road, Tianhe District, Guangzhou, China', '1991-05-01', 0, 0, 'esak', '2002-12-24', 'eita2006', '2008-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS845436928242', '武璐', 0, '+1 718-390-7518', 0, '357932442049264395', '733 Flatbush Ave Apartment 12, Brooklyn, NY 11225, United States', '1993-11-27', 0, 0, 'wulu', '2017-02-17', 'wul1', '2009-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS615449298713', 'Micheal Robinson', 0, '+44 (151) 371 4342', 2, '281958231371766233', 'No.11 Main building, 747 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1997-09-26', 0, 0, 'robinsonm1230', '2015-12-14', 'robinson1006', '2002-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS441565929532', '卢睿', 0, '+86 755-1610-0833', 1, '528064142127192917', '中国深圳罗湖区蔡屋围深南东路824号30楼', '1994-09-13', 0, 0, 'lurui', '2014-09-01', 'lu502', '2012-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS788809205470', '松田悠人', 1, '+86 755-165-6986', 0, '338676361165073770', '中国深圳罗湖区蔡屋围深南东路233号10号楼', '1996-10-11', 0, 0, 'ym2011', '2004-02-25', 'matsudayu2', '2001-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS621533007739', '孔子韬', 0, '+86 28-0397-4739', 3, '449292711370775608', 'No.1 building, 490 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1995-05-09', 0, 0, 'zitaoko', '2004-12-25', 'zkong', '2018-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS785143139560', '崔杰宏', 1, '+86 755-7792-7665', 3, '466764026255219289', 'No.11 building, 287 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1996-09-05', 0, 0, 'cuij', '2009-07-08', 'cuijiehong08', '2014-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS675661306328', 'Jeffery Jones', 0, '+1 330-561-6243', 2, '484102559860107996', '656 Collier Road Suite 11, Akron, OH 44320, United States', '1996-03-07', 0, 0, 'jefferyjones', '2011-12-23', 'jonesj10', '2004-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS042054090890', '青木大地', 0, '+1 838-485-3249', 1, '357284897793196740', '705 Central Avenue Apt 29, Albany, NY 12205, United States', '1996-06-14', 0, 0, 'aodaichi6', '2001-05-05', 'daichi69', '2007-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS154974026539', 'Deborah Nelson', 1, '+86 769-0444-5765', 3, '061942850041536192', '中国东莞坑美十五巷182号34号楼', '1986-08-25', 0, 0, 'dnelson', '2016-05-06', 'debne', '2008-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS094952181503', '村田凛', 0, '+44 5798 620299', 3, '417386027645833248', 'Unit 2, Oxford Eco Centre, 406 Hanover Street, London, W1S 1YD, United Kingdom', '1993-04-06', 0, 0, 'mri69', '2020-11-17', 'rinmurata', '2017-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS649097969089', '村上彩乃', 0, '+81 90-7893-6225', 1, '542573613245951411', '日本札幌白石区菊水三条五丁目4番8号33階', '1996-09-26', 0, 0, 'murakami3', '2000-04-14', 'mayan', '2010-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS332633242829', '石井樹', 0, '+86 760-004-1676', 3, '529901010032821935', 'No.35 building, 429 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1985-01-15', 0, 0, 'ishiits', '2005-05-25', 'iish1106', '2014-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS596432727205', 'Ellen Salazar', 0, '+44 5465 305053', 1, '835638443537821932', 'Flat 2, 227 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1991-06-02', 0, 0, 'salazar1202', '2015-05-25', 'ellensalazar', '2005-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS126615337969', 'Carmen Robertson', 0, '+86 10-850-9751', 1, '801491667110586329', '中国北京市西城区西長安街203号48室', '1998-06-05', 0, 0, 'carr', '2003-03-23', 'robertsoncarmen', '2012-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS815326214248', '内田明菜', 1, '+81 90-0768-3821', 4, '185213230797613845', '日本おおさかし近江堂一丁目7番17号4階', '1996-03-29', 0, 0, 'uchidakina', '2001-02-08', 'uchida827', '2003-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS974826408668', '苗慧儀', 0, '+81 66-973-3395', 3, '376199886793320252', '日本おおさかし東住吉区東田辺三丁目27番19号26階', '1987-02-06', 0, 0, 'miuwaiyee', '2018-04-21', 'miuwaiyee1', '2009-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS547380603964', 'Louise Mason', 0, '+81 52-271-8579', 3, '746847254291243808', 'Rm. 29, 10 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1995-10-07', 0, 0, 'mlouise02', '2003-07-03', 'mlouise', '2021-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS223158980819', '阿部湊', 0, '+1 213-348-3341', 2, '237125353518090294', '767 Sky Way Apt 13, Los Angeles, CA 90043, United States', '1986-08-18', 0, 0, 'abeminato', '2002-10-02', 'minatoab', '2007-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS042828085376', '石井美咲', 0, '+81 11-701-9980', 2, '426091670345595177', '日本札幌豊平区豊平三条十三丁目3番13号37階', '1988-07-22', 0, 0, 'misishii', '2007-01-15', 'misakishii83', '2002-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS470807768437', 'Matthew Stewart', 0, '+81 11-620-8205', 4, '335989528375679595', '日本札幌白石区菊水三条五丁目2番2号1階', '1995-10-20', 0, 0, 'matthewstewart', '2021-01-30', 'stewamatthew', '2020-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS045942846967', '邱朝偉', 0, '+44 (116) 865 4166', 4, '986982181390437927', 'No.34 Main building, 941 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1987-06-10', 0, 0, 'chiuwai7', '2002-02-19', 'ycw1', '2010-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS080763254270', '蔡慧琳', 0, '+1 614-136-4837', 2, '863060042244668840', '353 East Alley 3rd Floor, Columbus, GA 43201, United States', '1998-06-21', 0, 0, 'choi2', '2012-06-30', 'choiwl926', '2020-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS593697685567', '樊心穎', 1, '+86 28-4798-3726', 3, '438338350599565754', '中国成都市成华区二仙桥东三路736号华润大厦11室', '1994-06-15', 0, 0, 'fsu', '2014-11-01', 'fan7', '2010-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS960619597785', '黎曉彤', 1, '+86 769-2943-3050', 2, '986366286939493179', '中国东莞珊瑚路702号45号楼', '1995-03-09', 0, 0, 'hiutunglai', '2008-04-24', 'htl', '2015-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS844188971124', 'Wayne Graham', 0, '+86 21-411-1677', 0, '335559486674437456', 'No.3 building, 913 Jianxiang Rd, Pudong, Shanghai, China', '1988-01-05', 0, 0, 'grahw', '2018-10-01', 'grw8', '2000-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS404370306539', '吳天樂', 1, '+44 (116) 166 7966', 3, '245670714508283003', 'Block 14, 331 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1989-10-23', 0, 0, 'tinlokn', '2002-03-16', 'tinlok405', '2011-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS061845030256', '關明', 0, '+86 179-3318-3440', 2, '880397804359542077', 'No.3 building, 343 Shennan Ave, Futian District, Shenzhen, China', '1987-04-13', 0, 0, 'kwanmi', '2000-06-23', 'mingkwan', '2000-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS241409253527', '中森舞', 1, '+81 66-564-8814', 2, '834068422959747752', '日本おおさかし平野区加美東四丁目9番6号24号室', '1986-04-05', 0, 0, 'nakamorima5', '2003-09-15', 'nmai', '2002-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS285303730624', '馮慧珊', 0, '+86 145-1845-0507', 1, '327156589499856907', '中国上海市闵行区宾川路507号17号楼', '1996-01-23', 0, 0, 'fws', '2011-09-23', 'wsfung', '2002-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS376051934171', '黃惠妹', 1, '+81 80-7380-4090', 3, '218244439910925096', '日本おおさかし西成区出城一丁目1番9号33号室', '1997-10-20', 0, 0, 'huw', '2015-09-12', 'hmwon', '2013-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS710894499013', '宣國榮', 1, '+86 21-9229-7730', 3, '258602865486886350', '中国上海市闵行区宾川路756号36室', '1996-02-23', 0, 0, 'kwhsuan523', '2004-09-28', 'kwh', '2017-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS508160786395', '杜慧琳', 0, '+44 (151) 186 5207', 2, '109082423956327623', 'Flat 2, 294 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1994-12-11', 0, 0, 'wlto', '2021-10-29', 'towl812', '2017-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS182597858623', '邱杰宏', 1, '+44 5588 346679', 4, '668705607412417708', 'No.3 Main building, 20 Hanover St, Liverpool, L1 4AF, United Kingdom', '1997-02-15', 0, 0, 'jieqiu', '2014-09-25', 'qiujieh', '2018-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS131010560542', 'Amanda Graham', 0, '+1 718-835-1505', 2, '101469032793331883', '343 Flatbush Ave Suite 42, Brooklyn, NY 11225, United States', '1999-01-08', 0, 0, 'graham2003', '2006-04-03', 'amandagraham', '2016-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS557743620624', 'Luis Murphy', 1, '+86 755-0339-7226', 3, '719435219984217586', 'Room 37, CR Building, 736 Shennan Ave, Futian District, Shenzhen, China', '1998-07-29', 0, 0, 'luismurphy', '2015-08-01', 'murphl2018', '2007-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS639489882446', '吕嘉伦', 0, '+86 21-4622-8774', 2, '931553840862673614', '37F, 892 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-12-31', 0, 0, 'lu129', '2004-03-12', 'lj1', '2020-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS514770346591', '韓慧嫻', 1, '+81 90-0031-8546', 3, '497083071838389726', '日本札幌中央区宮の森四条六丁目1番5号26階', '1990-02-24', 0, 0, 'hawh2', '2011-05-22', 'hanwh9', '2019-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS300796758982', '萬家強', 1, '+81 11-314-1766', 4, '997655497592113865', 'Rm. 13, 5-4-14 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1987-05-04', 0, 0, 'mengkk', '2009-03-05', 'meng627', '2000-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS285711434209', 'Christopher Nelson', 0, '+44 (1865) 94 1474', 0, '076203463435520999', 'No.28 Main building, 863 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1998-05-21', 0, 0, 'chrne', '2006-11-04', 'nelson408', '2003-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS727653088364', '秦璐', 1, '+81 3-5844-5494', 1, '411974340809123799', '日本東京千代田区丸の内一丁目6番6号37階', '1990-04-14', 0, 0, 'qilu', '2002-06-16', 'qinlu', '2014-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS222704104300', 'Antonio Martin', 1, '+86 147-5316-9898', 3, '973914369604413239', 'No.2 building, 63 68 Qinghe Middle St, Haidian District, Beijing, China', '1986-02-18', 0, 0, 'martinantonio', '2018-12-02', 'antomartin', '2011-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS921779923677', '江頴思', 1, '+81 52-062-0664', 3, '238268299989144283', '日本なごやし北区清水三丁目19番13号42階', '1994-07-02', 0, 0, 'wingszekong', '2010-11-27', 'wskong', '2017-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS148257942174', '贺子异', 1, '+81 80-0450-6360', 3, '891836574173395295', '43F, 15 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1989-05-04', 0, 0, 'he220', '2010-05-10', 'zhe', '2005-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS833302069764', '陆岚', 0, '+44 (1865) 22 3554', 3, '360416123467341563', 'Flat 30, 267 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1987-06-16', 0, 0, 'llu', '2019-12-08', 'lal', '2003-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS852185125193', '曾杰宏', 0, '+86 146-1095-2250', 2, '847286923375380821', 'No.34 building, 648 Shanhu Rd, Dongguan, China', '1989-10-19', 0, 0, 'jiehong211', '2010-02-24', 'jzeng', '2020-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS196449177962', 'Ellen Morgan', 1, '+81 70-1465-8305', 1, '515565603693356101', '日本ならし大和郡山市本庄町一丁目1番5号37階', '1993-07-03', 0, 0, 'morgellen', '2018-02-04', 'morel7', '2009-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS360233244798', '杨岚', 1, '+44 (116) 909 8334', 3, '172250788291014054', 'Block 43, 294 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1995-06-03', 0, 0, 'yanlan328', '2021-11-17', 'laya', '2009-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS874854901327', 'Carrie Washington', 1, '+86 21-196-6142', 2, '875074641970515705', '中国上海市黄浦区淮海中路490号华润大厦29室', '1990-12-16', 0, 0, 'carriwash', '2020-08-08', 'carwashi4', '2013-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS707422443367', '梁秀文', 0, '+86 187-6669-3362', 3, '429188841983572501', 'No.16 building, 371 Tianhe Road, Tianhe District, Guangzhou, China', '1993-04-15', 0, 0, 'leung3', '2005-02-24', 'smleung2', '2006-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS365456147073', '藤原百花', 0, '+81 11-940-0669', 3, '364024262589519464', 'Rm. 25, 5-4-20 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1988-07-03', 0, 0, 'momokaf', '2022-01-30', 'momofu', '2006-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS373834643103', '莫云熙', 0, '+1 213-452-7710', 1, '385878357737214381', '780 Sky Way Apt 11, Los Angeles, CA 90043, United States', '1987-07-13', 0, 0, 'moyunx46', '2002-04-01', 'yumo', '2021-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS984837722414', '小野美羽', 1, '+86 156-3601-2862', 1, '375006587680305801', '16F, 463 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1994-02-02', 0, 0, 'miuon605', '2018-02-12', 'ono1', '2002-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS588492532186', '苗明詩', 0, '+1 718-888-8346', 4, '222254361593888311', '738 Columbia St Apartment 39, Brooklyn, NY 11231, United States', '1995-06-13', 0, 0, 'mingszemi', '2015-12-23', 'mingszemi2', '2018-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS876904219192', '甘心穎', 0, '+81 70-0767-8116', 1, '987156695366656735', '17F, 15 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1992-06-05', 0, 0, 'sumkam66', '2020-09-14', 'sumwingkam3', '2016-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS728104753846', 'Joseph Nguyen', 0, '+86 28-267-9055', 1, '538082164215823764', 'No.40 building, No.60, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1996-01-18', 0, 0, 'josen2', '2015-05-26', 'jonguyen', '2018-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS070085847636', 'Jack Diaz', 1, '+86 130-2741-9162', 0, '672376619118870066', '中国成都市锦江区人民南路四段440号华润大厦47室', '1995-09-12', 0, 0, 'jackdia', '2017-03-30', 'dijack911', '2013-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS431328787227', '井上美月', 0, '+44 5926 525402', 2, '577181695693743286', 'Block 22, 696 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1987-02-22', 0, 0, 'mitsukiin', '2011-07-29', 'imitsuki', '2012-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS130667980094', '西村百花', 1, '+44 7195 716449', 0, '387705847407560515', 'Unit 3, Oxford Eco Centre, 534 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1992-05-26', 0, 0, 'nishimomoka', '2004-06-26', 'nim', '2004-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS009120833718', 'Walter Rodriguez', 0, '+44 (1223) 36 1051', 3, '098819085508114018', 'Unit 35, Oxford Eco Centre, 184 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1985-01-07', 0, 0, 'walrodr57', '2016-12-27', 'rodriguez5', '2015-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS703173184445', 'April Aguilar', 1, '+86 131-8881-4930', 0, '559645132494912578', 'Room 16, CR Building, 126 Hongqiao Rd., Xu Hui District, Shanghai, China', '1988-11-20', 0, 0, 'aprilagu10', '2009-07-05', 'aprilagu', '2020-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS421611015379', '木村瑛太', 0, '+81 80-7689-3089', 3, '955735769840145020', '日本おおさかし近江堂一丁目7番16号7号室', '1988-12-02', 0, 0, 'eitakimura', '2015-10-23', 'kimueit92', '2009-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS796648571359', '竹内葵', 0, '+1 330-124-8873', 3, '673742600971711831', '48 Collier Road Apt 24, Akron, OH 44320, United States', '1991-02-05', 0, 0, 'takeuchi07', '2020-01-12', 'takeuchi6', '2015-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS669129627751', '張天樂', 0, '+81 3-8056-7478', 1, '154666458899574063', '日本東京千代田区丸の内一丁目6番1号46号室', '1995-06-11', 0, 0, 'chetl', '2002-11-20', 'cheungtinlok', '2001-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS040154627127', '森陸', 0, '+86 153-1815-7686', 3, '987010897688163993', '中国成都市锦江区人民南路四段442号19号楼', '1992-04-04', 0, 0, 'mori49', '2016-05-12', 'rm79', '2016-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS055025218951', '近藤一輝', 0, '+86 10-9103-1227', 1, '858855111534296792', '中国北京市海淀区清河中街68号774号25号楼', '1994-12-17', 0, 0, 'ikkikondo323', '2000-10-09', 'ikkondo', '2019-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS416991389347', 'Sharon Soto', 1, '+44 (1223) 41 5651', 4, '874192849111552811', 'No.41 Main building, 713 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1991-06-03', 0, 0, 'sharon42', '2003-08-26', 'sharso919', '2020-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS262465440661', '高浩然', 0, '+1 213-129-1156', 2, '045080337772519994', '213 Figueroa Street Apt 40, Los Angeles, CA 90037, United States', '1995-02-08', 0, 0, 'kaohy', '2005-01-11', 'hoyin4', '2020-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS922332013539', 'Katherine Ryan', 1, '+86 162-1605-4281', 4, '499796661413430361', '中国深圳罗湖区蔡屋围深南东路4号32室', '1996-03-08', 0, 0, 'kathryan513', '2001-07-30', 'katherinerya', '2012-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS418414748332', '袁子异', 0, '+86 755-4697-0995', 1, '453729343520608629', '21F, 139 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1993-12-17', 0, 0, 'ziyiyuan620', '2014-06-19', 'yuan1988', '2020-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS164382934266', '汪睿', 0, '+81 80-2525-2738', 2, '053415493141816504', '日本おおさかし平野区加美東四丁目9番19号13階', '1986-12-29', 0, 0, 'wangrui2000', '2005-02-26', 'ruiwang99', '2002-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS379735246061', '原田健太', 0, '+44 (151) 605 1006', 2, '098214623567436740', 'Unit 9, Oxford Eco Centre, 75 Hanover St, Liverpool, L1 4AF, United Kingdom', '1986-02-01', 0, 0, 'keharada', '2015-06-29', 'kentaharada405', '2002-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS265330296022', '韦震南', 0, '+81 90-3848-8855', 3, '972644699736422383', '日本東京港区東新橋一丁目5番5号34階', '1996-06-15', 0, 0, 'weizh17', '2006-03-13', 'wei914', '2007-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS957548109411', '工藤葵', 1, '+86 189-3609-9637', 0, '541046309296920951', '中国北京市东城区东单王府井东街494号39室', '1987-04-10', 0, 0, 'kudo8', '2010-08-14', 'kudo7', '2020-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS327399767269', '中島七海', 1, '+81 70-1586-7408', 1, '249880191676480924', '日本なごやし瑞穂区河岸町四丁目20番18号44階', '1992-08-15', 0, 0, 'nakajiman1218', '2003-03-25', 'nakajimananami9', '2000-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS733292519149', '杜世榮', 0, '+81 3-9357-8049', 4, '869079691789581118', '日本東京港区東新橋一丁目5番13号35階', '1998-04-09', 0, 0, 'swt', '2002-02-09', 'tosw', '2018-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS525133489053', 'Mario Vasquez', 0, '+44 7495 921322', 4, '646433153749062129', 'No.37 Main building, 921 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1991-10-28', 0, 0, 'mariovasquez', '2007-06-24', 'vamario119', '2010-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS773388958098', 'Amber Murray', 0, '+81 80-9114-3865', 1, '073724213181199303', '47-kai, 5-2-16 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1995-01-29', 0, 0, 'muramb', '2011-07-20', 'ambmurray', '2017-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS458407226490', '余子韬', 0, '+81 52-348-5489', 1, '096293414233339230', '15F, 2-5-2 Chitose, Atsuta Ward, Nagoya, Japan', '1994-09-23', 0, 0, 'yuzitao3', '2000-08-21', 'yuz6', '2020-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS214850362164', '卢杰宏', 0, '+86 20-1040-1479', 3, '122453342157565483', '中国广州市越秀区中山二路585号华润大厦26室', '1987-06-25', 0, 0, 'jieholu', '2003-10-14', 'lujiehong', '2001-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS025919873427', '酒井瑛太', 1, '+1 213-487-0588', 3, '691638075534722907', '748 Alameda Street Apt 25, Los Angeles, CA 90002, United States', '1989-05-27', 0, 0, 'eitasakai1227', '2019-12-24', 'eita1943', '2015-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS434792780682', 'April Morgan', 1, '+86 159-4484-4980', 3, '605966227827021304', '中国深圳龙岗区学园一巷690号17栋', '1988-07-15', 0, 0, 'aprilmor47', '2004-08-29', 'morga5', '2005-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS260281074384', 'Barbara Soto', 0, '+86 174-8698-8717', 2, '146512588395568745', '中国深圳罗湖区清水河一路880号20号楼', '1997-07-29', 0, 0, 'bso', '2019-09-27', 'barbarasoto', '2015-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS631509921817', '雷淑怡', 1, '+86 10-3690-5518', 0, '058264204538677268', 'No.40 building, 537 East Wangfujing Street, Dongcheng District , Beijing, China', '1989-11-23', 0, 0, 'lousy', '2014-09-02', 'lsy99', '2021-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS800925910668', '苑頴思', 1, '+81 90-4810-1686', 0, '742542228435215381', '日本札幌白石区菊水三条五丁目4番17号8号室', '1995-05-13', 0, 0, 'yuen212', '2009-09-29', 'yuews', '2018-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS523454086852', '罗子韬', 1, '+81 3-1193-3449', 3, '372037857158856528', '日本東京品川区東五反田五丁目2番3号36号室', '1989-06-26', 0, 0, 'ziluo', '2016-12-05', 'zitaoluo', '2007-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS749617197371', 'Cheryl Long', 0, '+81 66-880-5621', 3, '639541490248778308', '日本おおさかし東住吉区東田辺三丁目27番19号40階', '1993-10-01', 0, 0, 'long911', '2011-04-22', 'cheryl918', '2002-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS964349967860', '許曉彤', 0, '+81 90-7728-2005', 0, '825112250083729787', '日本ならし西大寺赤田町一丁目7番9号13階', '1989-08-01', 0, 0, 'hiutunghui', '2006-04-28', 'huiht', '2000-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS766450792097', '餘祖兒', 0, '+1 212-834-8240', 3, '439159392250871688', '461 Canal Street Suite 40, New York, NY 10013, United States', '1985-07-11', 0, 0, 'choyeeyu5', '2021-04-12', 'cyyue', '2021-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS730740804426', 'Rose Martinez', 1, '+1 212-878-7246', 3, '451669230353836266', '409 West Houston Street Apartment 3, New York, NY 10014, United States', '1992-03-21', 0, 0, 'mr76', '2021-12-01', 'mar', '2005-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS649428325424', 'Monica Allen', 0, '+1 330-198-1697', 1, '625727760333624127', '17 Fern Street Apartment 44, Akron, OH 44307, United States', '1993-01-15', 0, 0, 'am701', '2014-11-07', 'monicaallen', '2014-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS912785544054', 'Bobby Sullivan', 1, '+86 142-6518-2736', 2, '718290288542624472', '中国成都市成华区双庆路766号华润大厦20室', '1996-10-07', 0, 0, 'sullbobby', '2021-09-08', 'bobbysull', '2000-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS678030144094', '上田凛', 1, '+1 312-863-4331', 4, '985835276179578653', '519 Rush Street Apt 33, Chicago, IL 60611, United States', '1987-04-27', 0, 0, 'ueda924', '2000-07-31', 'uedrin', '2018-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS751919533998', 'Alfred Evans', 1, '+86 10-3790-5368', 1, '637230574218141862', 'No.45 building, 45 West Chang''an Avenue, Xicheng District, Beijing, China', '1994-01-23', 0, 0, 'evansa4', '2005-06-19', 'evans520', '2019-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS365207976518', 'Andrew Murphy', 0, '+81 3-4765-6407', 3, '653887458556214611', '34F, 2-3-10 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-02-13', 0, 0, 'murphy1988', '2009-12-12', 'murandrew', '2005-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS826600738821', 'Walter Morales', 0, '+86 138-3101-0421', 3, '778301724304014531', '中国上海市浦东新区橄榄路501号27室', '1995-08-26', 0, 0, 'wm531', '2010-12-23', 'walter713', '2001-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS758828007127', '夏秀英', 0, '+44 (1865) 96 0407', 2, '609587861410485151', 'Unit 28, Oxford Eco Centre, 590 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1992-04-26', 0, 0, 'xiaxiuy1976', '2006-05-14', 'xiaxiu', '2005-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS659732904536', '駱曉彤', 0, '+1 718-556-0212', 4, '018289347579473262', '21 Bergen St Apartment 24, Brooklyn, NY 11217, United States', '1989-03-09', 0, 0, 'htlok76', '2013-03-19', 'htlok', '2011-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS723423264985', 'Arthur Vasquez', 1, '+86 21-1206-0065', 3, '664948958456085359', '中国上海市徐汇区虹桥路374号46楼', '1996-05-13', 0, 0, 'vaarthu', '2017-04-02', 'vaarthur11', '2020-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS009484412613', '孙秀英', 0, '+86 28-780-7832', 1, '418053108722003593', '中国成都市成华区玉双路6号34号华润大厦38室', '1988-10-12', 0, 0, 'xisun', '2012-05-02', 'xisun', '2000-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS827093603663', 'Jacqueline Gibson', 1, '+81 70-9815-5094', 2, '148052214384334217', '日本ならし学園南三丁目9番13号41階', '1996-09-25', 0, 0, 'jacgibson', '2011-09-11', 'gibsj', '2007-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS504296616472', '蘇慧珊', 1, '+81 3-8426-5946', 2, '085960022944365533', '日本東京千代田区丸の内一丁目6番2号6階', '1997-09-07', 0, 0, 'sows1122', '2018-09-30', 'wsso702', '2013-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS509250273923', 'Gregory Bennett', 0, '+81 66-821-0215', 3, '613686296105502004', '日本おおさかし平野区加美東四丁目9番18号19号室', '1987-03-10', 0, 0, 'benngregory1998', '2021-10-04', 'bengregory02', '2011-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS168555457562', 'Grace Powell', 0, '+1 213-186-3772', 1, '047332859218939456', '403 Wall Street Apt 14, Los Angeles, CA 90003, United States', '1992-03-26', 0, 0, 'powegrace', '2010-02-19', 'gpowell', '2021-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS673124874467', '宮本一輝', 0, '+81 90-4030-1978', 0, '124894592514082451', '日本なごやし北区楠味鋺三丁目80番15号17階', '1993-06-06', 0, 0, 'miyamoto45', '2022-01-19', 'miyamoto1968', '2004-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS108856955843', '容嘉欣', 1, '+1 213-895-2286', 2, '986692484582393573', '687 Wall Street Apartment 7, Los Angeles, CA 90003, United States', '1991-10-16', 0, 0, 'yunkaryan4', '2005-09-19', 'karyan906', '2003-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS389283611355', '邱安琪', 1, '+44 (1223) 41 4486', 0, '212952643074065388', 'Flat 40, 752 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1989-08-22', 0, 0, 'okyau', '2007-01-18', 'okya', '2001-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS768588253192', 'David Perry', 1, '+86 145-2959-8595', 1, '933932612055405683', '中国上海市黄浦区淮海中路314号50号楼', '1987-03-15', 0, 0, 'david1940', '2012-07-31', 'perrydavid', '2004-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS469389759109', '丸山結翔', 0, '+81 70-4022-2293', 1, '536557627074497687', '31F, 6-1-3, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-07-13', 0, 0, 'myuito', '2020-10-27', 'maruyamayuit', '2015-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS163973416140', '清水悠人', 0, '+1 212-918-5294', 3, '194730573473962001', '502 West Houston Street Apt 42, New York, NY 10014, United States', '1995-05-22', 0, 0, 'shimizu1986', '2014-03-20', 'shiyuto1942', '2004-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS982975053392', '盧玲玲', 0, '+44 5481 568467', 3, '761657365526261588', 'Flat 5, 138 New Street, Birmingham, B2 4DB, United Kingdom', '1994-11-15', 0, 0, 'lllo2', '2012-08-02', 'linglingl', '2010-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS343531109450', '森田彩乃', 1, '+1 718-047-6435', 2, '611778262581918677', '197 Columbia St Apt 44, Brooklyn, NY 11231, United States', '1992-05-03', 0, 0, 'aym88', '2012-11-21', 'morita93', '2005-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS145674013198', 'Tracy Diaz', 0, '+81 66-531-4894', 4, '997827268750373247', '日本おおさかし近江堂一丁目7番3号24階', '1990-07-24', 0, 0, 'diaztracy', '2006-08-01', 'tracy716', '2012-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS281272405809', 'Edna Simmons', 0, '+81 11-249-3943', 2, '320703891232238375', '日本札幌豊平区豊平三条十三丁目3番1号2階', '1995-04-30', 0, 0, 'simmoed', '2006-08-31', 'edna206', '2017-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS482166103292', '盧慧嫻', 1, '+81 90-7534-1482', 4, '641771569154197339', '日本なごやし熱田区千年二丁目5番16号26階', '1996-04-13', 0, 0, 'lowh220', '2020-01-03', 'lowh5', '2019-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS593958808834', '羅家文', 1, '+86 10-589-8938', 2, '635139071877031731', '中国北京市东城区东单王府井东街321号11栋', '1998-02-19', 0, 0, 'kaman116', '2007-01-14', 'kamanl', '2012-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS980745118421', 'Esther White', 1, '+81 80-3947-4921', 2, '127657674628541263', '日本ならし学園南三丁目9番18号44階', '1986-09-19', 0, 0, 'esther724', '2000-04-01', 'estherwhite', '2006-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS311209057915', '藍浩然', 1, '+86 170-8407-1440', 2, '871376409217768937', 'No.9 building, 882 East Wangfujing Street, Dongcheng District , Beijing, China', '1998-05-25', 0, 0, 'hyl7', '2009-05-16', 'hoyin5', '2016-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS704155730583', '成頴璇', 0, '+86 167-0742-9719', 0, '699720540355435036', '中国广州市越秀区中山二路827号8室', '1993-05-25', 0, 0, 'wssh', '2008-06-30', 'shing629', '2010-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS964999331044', '魏子异', 0, '+86 192-6516-5919', 1, '033803361719353760', '中国广州市海珠区江南西路509号5楼', '1991-05-03', 0, 0, 'weiz', '2017-03-02', 'ziyi302', '2019-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS167000392080', '譚學友', 1, '+81 3-0097-9740', 0, '345423456364299869', '20F, 2-3-4 Yoyogi, Shibuya-ku, Tokyo, Japan', '1987-12-29', 0, 0, 'hokytam75', '2000-04-25', 'tam8', '2000-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS587926105581', 'Benjamin Nguyen', 1, '+86 755-120-5040', 3, '241286402904423877', '19F, 558 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1987-02-23', 0, 0, 'benguyen', '2013-10-25', 'nguyen17', '2001-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS429418556093', '坂本陽菜', 0, '+44 (1865) 49 7736', 3, '983281868175710680', 'No.47 Main building, 696 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1998-04-09', 0, 0, 'sakahina324', '2016-04-24', 'sahina', '2018-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS111150586277', '曾永發', 0, '+44 7708 958714', 3, '612480702814567372', 'Unit 14, Oxford Eco Centre, 446 Regent Street, London, W1B 2LX, United Kingdom', '1992-03-19', 0, 0, 'tsangwingfat', '2000-05-12', 'tsangwf', '2006-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS926822235677', '湯詩君', 1, '+81 70-4262-0417', 3, '439193731050329538', '日本なごやし熱田区千年二丁目5番18号25階', '1986-05-18', 0, 0, 'skto', '2020-10-05', 'szekwanto', '2004-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS761098241471', '尹璐', 0, '+81 52-302-8280', 1, '431124459427275960', '日本なごやし瑞穂区河岸町四丁目20番19号35階', '1998-03-08', 0, 0, 'yl9', '2014-08-08', 'luy', '2012-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS804797002823', '薛詩涵', 1, '+44 7327 080562', 3, '164837171111190181', 'No.16 Main building, 475 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1986-05-06', 0, 0, 'shihanxue', '2008-03-26', 'shihanxue8', '2014-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS804013940317', 'Jeremy White', 1, '+86 28-2560-9473', 1, '777088165249263685', '中国成都市成华区双庆路20号41楼', '1987-12-04', 0, 0, 'whitejeremy1952', '2015-11-14', 'white75', '2015-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS434854349683', '韦云熙', 1, '+44 (116) 436 2497', 2, '053576330490115171', 'Flat 22, 927 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1996-05-27', 0, 0, 'yunxi1107', '2007-03-23', 'yunxi216', '2018-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS938116378761', '韩云熙', 0, '+1 330-254-2884', 1, '057467669322831474', '739 West Market Street 3rd Floor, Akron, OH 44333, United States', '1992-06-02', 0, 0, 'yunxihan', '2020-03-08', 'hany923', '2007-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS882480359601', '馮富城', 1, '+1 312-129-9085', 2, '535270100127224972', '890 Pedway Apartment 32, Chicago, IL 60601, United States', '1988-09-17', 0, 0, 'fsfu', '2016-11-18', 'fungfushing', '2020-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS936629157946', '夏詩涵', 1, '+86 28-337-7649', 3, '327404892115512664', '中国成都市成华区二仙桥东三路831号7号楼', '1994-07-19', 0, 0, 'xiashi904', '2018-07-06', 'xiashi', '2013-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS334653810321', '史晓明', 1, '+81 90-3185-4612', 0, '327916813831963780', '日本札幌豊平区豊平三条十三丁目3番7号26階', '1987-10-03', 0, 0, 'shix', '2016-09-05', 'xiaomingshi5', '2019-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS194409035718', '遠藤和真', 1, '+1 213-660-0133', 2, '711008757620256802', '742 S Broadway Apartment 46, Los Angeles, CA 90015, United States', '1993-07-30', 0, 0, 'kazumae2', '2002-10-23', 'kazumaen', '2011-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS997091987431', '福田海斗', 0, '+86 10-8653-1076', 0, '888545486674274388', '中国北京市海淀区清河中街68号615号华润大厦39室', '1993-08-20', 0, 0, 'kaf1990', '2015-03-10', 'kaitof', '2013-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS166342868140', 'Melissa Russell', 0, '+44 5471 733523', 3, '228947708612074970', 'Flat 35, 832 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1987-11-17', 0, 0, 'melissa40', '2005-08-29', 'russellme03', '2004-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS354038704960', '毛睿', 0, '+1 838-406-4257', 2, '599494337932129161', '655 State Street Apartment 25, Albany, NY 12203, United States', '1986-03-06', 0, 0, 'maorui1', '2007-06-08', 'rm217', '2005-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS272281246271', '孔璐', 0, '+44 7352 951919', 4, '903636450461434075', 'No.47 Main building, 440 Regent Street, London, W1B 2LX, United Kingdom', '1994-04-04', 0, 0, 'lukong701', '2020-09-20', 'konglu', '2019-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS148632059377', 'Carolyn Carter', 0, '+86 10-3258-0157', 4, '792989943602091175', '中国北京市东城区东单王府井东街999号40楼', '1991-05-21', 0, 0, 'carolyncarte', '2006-08-29', 'carolyn8', '2005-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS271788223025', '甘小慧', 0, '+1 330-229-1109', 2, '504376544480312645', '259 Riverview Road Apartment 4, Akron, OH 44313, United States', '1990-05-22', 0, 0, 'kamsw2019', '2008-09-30', 'kamsi', '2009-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS533684477723', '陆睿', 0, '+86 159-4170-9082', 3, '218021428086035353', 'Room 24, CR Building, 853 Sanlitun Road, Chaoyang District, Beijing, China', '1987-08-03', 0, 0, 'lu9', '2014-12-25', 'rui410', '2010-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS399077975897', '上野瑛太', 0, '+86 28-488-3661', 1, '921578820510207900', '中国成都市锦江区红星路三段789号4楼', '1990-01-20', 0, 0, 'ueita9', '2011-02-26', 'ueita1941', '2012-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS286093605061', '關德華', 1, '+86 755-101-4341', 1, '011172067472149988', 'No.1 building, 544 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1994-12-19', 0, 0, 'kwan526', '2018-02-15', 'kwan1963', '2021-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS386259588370', 'Beverly Rose', 1, '+86 180-7421-6187', 3, '580698464155459664', 'No.29 building, 498 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1997-02-07', 0, 0, 'beverlyros41', '2016-03-11', 'beverlyr620', '2004-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS386096400513', '遠藤聖子', 1, '+1 312-135-1299', 3, '298868379464046239', '572 Rush Street Suite 50, Chicago, IL 60611, United States', '1990-10-16', 0, 0, 'sendo', '2020-07-09', 'seikoendo', '2009-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS156578155311', '近藤桜', 1, '+86 10-248-6771', 3, '696306593740055292', 'Room 5, 985 Yueliu Rd, Fangshan District, Beijing, China', '1988-03-14', 0, 0, 'kondosakur', '2010-09-23', 'kondosakura', '2019-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS480011706790', '顧永發', 1, '+44 7375 897254', 2, '130491203679476212', 'No.35 Main building, 206 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1987-09-18', 0, 0, 'kuwf9', '2011-11-08', 'kuwf', '2009-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS432069144698', 'Martha Gibson', 0, '+44 (116) 806 8980', 4, '604842887819901901', 'Flat 24, 645 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1996-11-14', 0, 0, 'gibsonm', '2022-02-06', 'marthg', '2007-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS345509318209', '戚惠敏', 1, '+86 136-6787-3279', 2, '354973523876597242', 'No.11 building, 818 Jiangnan West Road, Haizhu District, Guangzhou, China', '1996-11-27', 0, 0, 'waiman318', '2012-04-08', 'waiman920', '2019-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS468074844344', '關慧儀', 1, '+81 70-9196-7140', 2, '851610052461238628', '日本なごやし北区清水三丁目19番3号15号室', '1995-06-25', 0, 0, 'kwanwaiyee42', '2014-12-22', 'kwwy', '2003-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS909836468279', '溫俊宇', 1, '+86 28-4459-2884', 2, '121307241586754360', '9F, No. 196, Shuangqing Rd, Chenghua District, Chengdu, China', '1993-06-30', 0, 0, 'chunyuwan84', '2009-01-14', 'chunyuwa82', '2011-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS399385622448', '伊藤海斗', 1, '+81 70-7131-7400', 1, '003427132468295926', '30F, 4-9-7 Kamihigashi, Hirano Ward, Osaka, Japan', '1992-07-17', 0, 0, 'kaito85', '2004-10-26', 'ito609', '2005-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS298085406126', '曹睿', 1, '+81 90-8118-7215', 3, '513585459706180931', '日本おおさかし西成区出城一丁目1番8号12階', '1996-09-30', 0, 0, 'crui', '2001-06-30', 'rucao1993', '2006-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS274829332272', '陳詠詩', 1, '+81 3-5589-3803', 2, '357543742741465099', '42-kai, 3-15-17 Ginza, Chuo-ku, Tokyo, Japan', '1993-06-09', 0, 0, 'cws', '2019-08-24', 'wingszechan51', '2007-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS717557526953', '池田樹', 0, '+86 130-1374-9505', 0, '818635956828910988', '中国深圳龙岗区布吉镇西环路63号45栋', '1993-09-21', 0, 0, 'ii7', '2017-12-30', 'itsukikeda402', '2010-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS046533791112', 'Willie Hamilton', 1, '+81 11-746-5469', 3, '116132145198725329', '日本札幌豊平区豊平三条十三丁目3番16号31階', '1991-09-14', 0, 0, 'hamiw', '2010-02-24', 'willieham', '2000-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS515848161534', '大塚樹', 0, '+1 614-698-6999', 4, '685208870477497343', '943 Tremont Road Apartment 6, Columbus, GA 43212, United States', '1989-02-01', 0, 0, 'oitsuk', '2012-06-30', 'otsuka3', '2005-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS933910866970', '傅慧珊', 0, '+86 21-8424-4755', 4, '366031498941673887', '中国上海市浦东新区橄榄路583号华润大厦49室', '1996-06-08', 0, 0, 'waisan404', '2000-03-20', 'fwaisan', '2021-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS622346795891', '鄧志遠', 1, '+81 80-3461-7053', 0, '532535381305481200', 'Rm. 12, 4-9-7 Kamihigashi, Hirano Ward, Osaka, Japan', '1995-03-17', 0, 0, 'tangcy531', '2010-02-21', 'cyt518', '2019-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS574352877068', '韩宇宁', 1, '+81 70-3738-9231', 3, '640745476906925875', '17F, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-11-20', 0, 0, 'hanyuning1', '2015-05-04', 'hany1206', '2019-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS553148860880', '後藤大和', 0, '+1 212-712-6961', 2, '728809978942629835', '973 West Houston Street 3rd Floor, New York, NY 10014, United States', '1992-02-15', 0, 0, 'gotoy', '2006-03-02', 'gotoyamato9', '2007-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS945938088555', '田家輝', 0, '+1 614-122-7967', 3, '736648633729676964', '571 East Alley Apt 15, Columbus, GA 43201, United States', '1993-01-29', 0, 0, 'tinkafai', '2021-06-29', 'tikafai', '2015-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS788330743775', 'Martin Gordon', 0, '+1 718-136-7037', 2, '943691481679466682', '361 Columbia St Suite 33, Brooklyn, NY 11231, United States', '1993-03-05', 0, 0, 'martingor3', '2021-09-18', 'gordon2014', '2001-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS351287684821', '史云熙', 0, '+44 5704 262970', 1, '495156974158283236', 'No.20 Main building, 643 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1993-08-06', 0, 0, 'yshi94', '2014-03-17', 'yunxshi120', '2006-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS501978549300', '林明', 0, '+86 10-8227-5616', 3, '838704221632604440', '中国北京市東城区東直門內大街833号35室', '1990-03-17', 0, 0, 'lami805', '2001-10-13', 'minglam', '2012-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS447114672909', '谢致远', 0, '+86 192-5733-3206', 3, '296696751332104095', '中国北京市朝阳区三里屯路584号39室', '1998-03-18', 0, 0, 'zhxie', '2016-12-10', 'xie03', '2012-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS598818430024', '阮梓軒', 0, '+1 718-633-2100', 3, '899218362483332319', '260 1st Ave Apartment 15, Brooklyn, NY 11220, United States', '1994-05-23', 0, 0, 'yuentszhin', '2006-08-28', 'thyuen705', '2014-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS165479366511', '叶睿', 1, '+81 11-407-3734', 3, '911971848661731692', 'Rm. 41, 5-19-6 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1992-11-18', 0, 0, 'yerui1009', '2008-06-14', 'ye516', '2002-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS539058457541', '中川光', 0, '+81 90-9545-6976', 3, '999765494347543610', '50F, 3-19-15 Shimizu, Kita Ward, Nagoya, Japan', '1998-03-20', 0, 0, 'nakagawa424', '2002-11-11', 'nakagawah', '2019-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS052043805230', 'Benjamin Schmidt', 0, '+44 7019 274747', 2, '540382160036220711', 'Unit 17, Oxford Eco Centre, 484 Portland St, Manchester, M1 3LA, United Kingdom', '1987-11-15', 0, 0, 'benjamin1950', '2013-01-02', 'bes', '2021-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS393215310289', 'Steven Bell', 1, '+86 164-1157-4371', 0, '887787919949946679', '中国深圳龙岗区学园一巷108号14号楼', '1989-10-02', 0, 0, 'stevbe', '2014-02-26', 'besteven715', '2015-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS101389552492', '區明詩', 1, '+86 755-208-2699', 2, '651329178996740188', '30F, 309 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-05-08', 0, 0, 'mingszea', '2000-09-05', 'mingsze92', '2000-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS752912335489', 'Ricky Richardson', 1, '+81 80-8981-1049', 4, '750467114745636968', '27-kai, 2-1-6 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1988-10-21', 0, 0, 'richardsonri', '2020-01-20', 'ricky6', '2002-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS048242199490', '桜井彩乃', 1, '+81 90-8808-4260', 2, '889179887347679514', 'Rm. 11, 1-7-11 Saidaiji Akodacho, Nara, Japan', '1989-01-12', 0, 0, 'sakurayano', '2014-02-05', 'sakurai715', '2016-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS486529159895', 'Debbie Dunn', 0, '+81 90-5543-0518', 3, '572620110581963227', '35F, 1-6-17, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1994-12-24', 0, 0, 'debbiedu', '2000-09-20', 'dedu', '2008-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS373641050442', 'Kyle Kennedy', 0, '+81 52-766-6894', 4, '054352929799328000', '19F, 7 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-07-12', 0, 0, 'kenkyle1023', '2019-08-21', 'kenk10', '2007-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS902404073568', 'Sean Wood', 1, '+81 90-6296-5140', 3, '409707832108804356', '日本おおさかし西成区出城一丁目1番3号32階', '1997-09-01', 0, 0, 'sean806', '2009-04-05', 'seanw15', '2002-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS160017088528', '林子韬', 1, '+81 66-648-2099', 1, '580572063285912297', '日本おおさかし西成区天神ノ森二丁目1番4号19階', '1995-06-08', 0, 0, 'lizi', '2003-12-22', 'zlin', '2007-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS551434435133', '于云熙', 1, '+81 70-4219-6974', 3, '200870724065259564', '日本おおさかし平野区加美東四丁目9番7号20号室', '1988-12-22', 0, 0, 'yunxiyu1983', '2019-05-06', 'yy210', '2009-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS675212163821', '藍國明', 0, '+81 70-6498-2969', 2, '122881741246729893', '20-kai, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-12-18', 0, 0, 'kmla', '2004-01-31', 'lamkwokming86', '2003-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS435881584899', '阎秀英', 0, '+86 21-9596-7297', 1, '400925168908788242', '中国上海市黄浦区淮海中路858号34栋', '1995-07-07', 0, 0, 'yxiuyi', '2005-12-02', 'yanxiuyi1', '2021-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS599967407096', '松井和真', 1, '+86 10-237-0146', 0, '617165316502525218', '中国北京市房山区岳琉路784号华润大厦46室', '1995-12-29', 0, 0, 'mkazu', '2008-09-11', 'mkazuma40', '2002-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS908961559994', '谢秀英', 0, '+86 195-2042-5433', 2, '962612738632417961', 'Room 29, 262 Sanlitun Road, Chaoyang District, Beijing, China', '1998-02-09', 0, 0, 'xie820', '2021-06-04', 'xxiuying4', '2012-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS430809845208', '宮崎湊', 0, '+81 52-919-5587', 3, '492183049704518133', '日本なごやし守山区瀬古東二丁目171番10号20階', '1988-11-26', 0, 0, 'minamiyazaki', '2005-12-07', 'minato60', '2001-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS024500569607', '谭宇宁', 0, '+86 21-4912-5856', 2, '221004716366410905', '22F, 394 Hongqiao Rd., Xu Hui District, Shanghai, China', '1990-04-05', 0, 0, 'yuningta', '2006-06-11', 'tayuning', '2005-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS303548048913', '鄺榮發', 0, '+81 70-2694-0487', 0, '556651967556327959', 'Rm. 15, 2-1-1 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1991-10-28', 0, 0, 'wingfatkw', '2018-03-03', 'wingfatk1988', '2020-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS752898446377', '朱志遠', 0, '+81 74-481-2863', 3, '435430131333545648', '日本ならし西大寺赤田町一丁目7番17号20階', '1993-11-04', 0, 0, 'chiyuenchu2', '2020-07-01', 'chiyuenchu', '2005-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS394471628087', 'Brenda Snyder', 1, '+81 74-351-0081', 2, '865988770848712503', 'Rm. 31, 3-9-16 Gakuenminami, Nara, Japan', '1998-11-10', 0, 0, 'snyder18', '2009-10-21', 'brenda113', '2002-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS976362358658', 'Lois Hicks', 0, '+1 212-000-9600', 2, '354127912160950536', '176 Canal Street Suite 16, New York, NY 10013, United States', '1991-04-14', 0, 0, 'lh331', '2020-10-22', 'hicks12', '2009-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS186428937906', '有村愛梨', 1, '+81 66-196-6024', 0, '213592290513549070', '日本おおさかし西成区出城一丁目1番16号21階', '1998-05-01', 0, 0, 'arimuraairi4', '2008-08-24', 'airarimura', '2011-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS487946365387', '山本樹', 0, '+81 3-4638-3853', 1, '382971380690282829', 'Rm. 34, 3-15-16 Ginza, Chuo-ku, Tokyo, Japan', '1998-03-16', 0, 0, 'itsuki10', '2012-03-23', 'yamamotoit', '2005-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS451700800981', '马震南', 0, '+81 70-7843-7615', 3, '232567887361026441', '日本なごやし北区清水三丁目19番4号6階', '1992-02-06', 0, 0, 'zhennan9', '2017-04-29', 'zhennan2', '2018-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS156301457447', '常云熙', 1, '+86 190-4823-3056', 0, '487241022099874916', 'No.24 building, 322 Middle Huaihai Road, Huangpu District, Shanghai, China', '1986-09-08', 0, 0, 'yunxichang03', '2010-05-11', 'chayunxi', '2018-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS536473038931', '張俊宇', 0, '+1 213-289-7053', 3, '345580629841821193', '699 Wall Street Apt 45, Los Angeles, CA 90003, United States', '1986-05-11', 0, 0, 'chunyucheung1012', '2015-08-04', 'chunyucheung', '2013-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS675407157605', 'Evelyn Torres', 0, '+86 10-4991-9674', 3, '240905678306147337', 'No.37 building, 563 028 County Rd, Yanqing District, Beijing, China', '1996-01-13', 0, 0, 'torres105', '2010-11-29', 'torreve1', '2009-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS132991256200', '袁思妤', 0, '+86 28-3771-8679', 4, '532605827855199642', 'Room 21, CR Building, 65 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1985-06-09', 0, 0, 'yuensy9', '2021-10-11', 'yuensy5', '2003-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS827884822040', '戴云熙', 1, '+44 (161) 758 3690', 0, '999512623906712004', 'Block 3, 592 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1985-02-20', 0, 0, 'yud4', '2008-11-08', 'daiyu', '2015-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS097473096995', '鄭浩然', 1, '+44 7838 407052', 1, '780342574414767948', 'Block 24, 876 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1996-11-03', 0, 0, 'chenghoyin', '2006-02-12', 'hoyinchen', '2015-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS108276791903', '福田美羽', 0, '+86 151-8021-5557', 0, '811709008625370604', '中国深圳罗湖区清水河一路555号25号楼', '1996-06-24', 0, 0, 'fukmiu', '2021-02-12', 'fukumiu', '2004-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS203747798976', '盧青雲', 1, '+86 188-1475-8344', 2, '907344889801540384', 'Room 47, 500 Shennan Ave, Futian District, Shenzhen, China', '1986-04-11', 0, 0, 'lo1116', '2017-04-23', 'chingwanlo', '2010-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS957125188656', '柴田美月', 0, '+86 21-547-3234', 2, '532521753718873702', 'Room 45, CR Building, 601 Ganlan Rd, Pudong, Shanghai, China', '1990-05-31', 0, 0, 'mitsuki2', '2002-02-17', 'mishi7', '2009-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS757431110401', '崔云熙', 0, '+86 165-9542-0911', 3, '384318030305943610', 'Room 18, CR Building, 863 Shennan Ave, Futian District, Shenzhen, China', '1995-07-26', 0, 0, 'cuiyunxi408', '2007-11-03', 'yunxi65', '2016-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS988312311343', '侯宇宁', 0, '+81 3-4250-2992', 1, '672010969107018242', '日本東京品川区東五反田五丁目2番15号21号室', '1986-11-25', 0, 0, 'yhou', '2016-04-04', 'yunhou', '2013-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS288020259419', '梅心穎', 0, '+81 80-4145-6603', 3, '887923629552230616', '日本札幌豊平区豊平三条十三丁目3番5号43号室', '1986-04-12', 0, 0, 'muisumwing1', '2004-01-03', 'swm', '2002-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS076847501462', 'Joseph Kelley', 0, '+86 189-9350-2182', 1, '857074137728986411', '46F, 350 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-07-13', 0, 0, 'kelley5', '2004-11-28', 'kelleyjoseph', '2011-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS783057519254', '林震南', 0, '+44 (20) 5704 6440', 1, '723886429287594421', 'Unit 46, Oxford Eco Centre, 909 Regent Street, London, W1B 2LX, United Kingdom', '1996-12-03', 0, 0, 'zlin', '2019-12-31', 'zhenl', '2007-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS029001532919', 'Tiffany Ramirez', 0, '+44 (1223) 38 6953', 3, '035911496084725543', 'Unit 5, Oxford Eco Centre, 124 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1986-08-27', 0, 0, 'tiffanyr', '2013-03-12', 'tiffanyramirez', '2021-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS045165218417', '黎致远', 0, '+44 (1223) 52 3845', 2, '841440954533445787', 'Flat 14, 369 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1991-10-17', 0, 0, 'zhiyuan1203', '2018-09-07', 'lizhiyuan', '2019-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS655013815303', '柴田舞', 1, '+1 213-091-5523', 4, '463083064946568810', '218 S Broadway Suite 21, Los Angeles, CA 90015, United States', '1995-04-11', 0, 0, 'shibatama', '2017-07-19', 'shmai8', '2004-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS255054963679', '刘致远', 0, '+44 (1865) 47 7471', 1, '154848842666444747', 'No.14 Main building, 168 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1993-12-03', 0, 0, 'zhiyuanliu', '2007-10-28', 'zliu', '2011-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS798259643308', '馬杰倫', 0, '+81 80-0569-3258', 1, '955409779323089219', 'Rm. 23, 3-27-2 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-10-27', 0, 0, 'clma40', '2012-09-29', 'chiehlunma', '2012-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS677585625876', '白思妤', 0, '+86 10-9502-8848', 1, '284621422647098777', 'Room 32, CR Building, 709 Yueliu Rd, Fangshan District, Beijing, China', '1996-09-28', 0, 0, 'sypak', '2001-02-15', 'sypak', '2021-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS628405783259', '段璐', 1, '+81 74-123-7896', 2, '313039077701698189', '15-kai, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-03-06', 0, 0, 'lud45', '2010-10-14', 'ludu95', '2004-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS123668906931', '有村涼太', 0, '+44 (161) 571 0434', 0, '605864829694987669', 'Flat 17, 427 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1986-04-01', 0, 0, 'ryota6', '2022-01-30', 'ryotarimu6', '2006-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS329516923135', '柴田凛', 1, '+86 149-7177-2864', 2, '697701321855261008', '中国上海市闵行区宾川路161号1号楼', '1986-03-23', 0, 0, 'shibatarin', '2004-01-25', 'rinshibata', '2019-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS193042797672', 'Pauline Wilson', 1, '+86 769-884-1369', 0, '916324550154506131', 'Room 50, 327 Huanqu South Street 2nd Alley, Dongguan, China', '1991-11-28', 0, 0, 'wilson921', '2002-05-22', 'wilsopauline1114', '2012-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS583440544769', '小島彩乃', 0, '+81 52-893-1883', 2, '401143443267588320', '日本なごやし北区楠味鋺三丁目80番20号49階', '1998-12-03', 0, 0, 'kojayano', '2013-04-01', 'aykojima1986', '2003-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS099822397806', '福田紗良', 1, '+86 20-7724-8767', 3, '747002181553231713', '中国广州市越秀区中山二路492号27楼', '1985-11-21', 0, 0, 'fukuda321', '2019-11-05', 'sarafukuda', '2001-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS858349185900', 'Eva Harrison', 1, '+86 28-709-0142', 0, '065965379080124091', 'No.19 building, No. 185, Shuangqing Rd, Chenghua District, Chengdu, China', '1991-11-14', 0, 0, 'eva1946', '2004-07-24', 'hareva821', '2012-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS941957765035', '蒋睿', 0, '+44 (116) 889 9749', 3, '039608985458630091', 'No.48 Main building, 354 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1987-01-09', 0, 0, 'ruijia403', '2008-12-24', 'jiang3', '2019-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS348132661507', 'Mark Grant', 1, '+44 7600 731456', 2, '320863079935647186', 'No.18 Main building, 699 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1993-04-05', 0, 0, 'grmark', '2003-11-06', 'mark118', '2019-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS583693815189', '梁安琪', 1, '+81 70-1430-6294', 2, '183542009278569948', '日本東京渋谷区代々木二丁目3番6号26階', '1989-06-21', 0, 0, 'leungonk7', '2019-03-16', 'okleu', '2007-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS433723655423', '鄧朝偉', 0, '+86 10-429-2372', 4, '065929599954552001', '中国北京市西城区西長安街569号华润大厦28室', '1997-02-11', 0, 0, 'chiuwaitan3', '2001-01-11', 'chiuwaitan', '2008-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS713904774755', '曹家輝', 1, '+1 614-091-8128', 2, '429757544456492161', '927 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1990-10-17', 0, 0, 'kfcho71', '2010-09-11', 'kafai9', '2011-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS395933094559', 'Sheila Ortiz', 0, '+81 74-742-7473', 3, '158838368323301824', '29F, 10 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-11-29', 0, 0, 'sort5', '2018-06-22', 'ortiz1207', '2001-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS529327841822', '邵嘉伦', 0, '+86 20-6695-7513', 1, '125257672063856317', 'Room 46, CR Building, 795 Tianhe Road, Tianhe District, Guangzhou, China', '1996-10-08', 0, 0, 'jialunsh', '2012-08-04', 'jshao', '2020-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS212363034561', 'Chris Nichols', 0, '+81 70-6917-8777', 2, '230475995139269657', 'Rm. 49, 5-19-13 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1991-10-15', 0, 0, 'chrisnich', '2002-12-23', 'chris605', '2005-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS359212122207', '高晓明', 1, '+81 66-971-9776', 2, '216884047054700994', '46F, 1-1-11 Deshiro, Nishinari Ward, Osaka, Japan', '1997-08-02', 0, 0, 'xiaominggao1116', '2013-05-11', 'xiaga1230', '2016-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS894894422308', '邱安琪', 0, '+81 52-602-8307', 3, '359325333606060227', '2-kai, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1990-07-02', 0, 0, 'qa8', '2017-12-11', 'anqiqiu1', '2004-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS520171727404', '高霆鋒', 1, '+81 80-6584-0950', 1, '687309768115971907', '日本東京中央区銀座三丁目12番13号11階', '1988-04-17', 0, 0, 'kaotingfung', '2014-03-17', 'tingfung6', '2012-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS433088432373', '後藤百花', 1, '+44 7267 411560', 1, '263319738173921613', 'Flat 47, 270 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1988-04-15', 0, 0, 'gotomomoka', '2022-02-15', 'gotomom', '2020-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS093584489034', '江璐', 1, '+86 20-5659-9086', 2, '853638504110805437', '中国广州市越秀区中山二路409号19栋', '1990-09-17', 0, 0, 'jianglu', '2021-09-07', 'jlu6', '2015-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS652687969134', '森田悠人', 1, '+81 74-759-3576', 4, '321046903414849853', '日本ならし学園南三丁目9番10号50階', '1996-07-13', 0, 0, 'myuto', '2019-02-28', 'moriyut', '2002-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS266836122944', '馮世榮', 1, '+86 20-228-2862', 3, '186740698884018392', '中国广州市白云区机场路棠苑街五巷361号12室', '1986-01-09', 0, 0, 'funsw01', '2003-03-20', 'saiwingfung', '2016-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS132284769978', '刘宇宁', 0, '+86 135-6394-9502', 3, '465979238888107877', '中国北京市東城区東直門內大街592号华润大厦42室', '1987-04-07', 0, 0, 'liu66', '2020-01-12', 'yuningl115', '2018-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS822504396884', 'Ernest Smith', 0, '+86 139-8648-6044', 1, '380835627661338983', 'Room 12, No. 5, Shuangqing Rd, Chenghua District, Chengdu, China', '1985-06-02', 0, 0, 'esmith', '2007-08-28', 'ernestsmith9', '2012-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS083817346575', '駱裕玲', 0, '+1 614-696-3060', 2, '894560273417434920', '208 Wicklow Road Suite 39, Columbus, GA 43204, United States', '1995-09-30', 0, 0, 'lok1106', '2022-02-14', 'loyl', '2002-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS324074793921', '横山瑛太', 1, '+1 312-862-2396', 3, '993120572403445197', '532 North Michigan Ave Apt 26, Chicago, IL 60611, United States', '1996-07-22', 0, 0, 'eitay', '2019-08-02', 'yokoyama1', '2006-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS197164170685', 'Phyllis Crawford', 0, '+44 7709 850725', 2, '406298025031593752', 'Flat 16, 50 Hanover Street, London, W1S 1YD, United Kingdom', '1991-07-15', 0, 0, 'phylliscraw', '2005-12-29', 'crawford403', '2002-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS425359893631', 'Mario Bennett', 0, '+1 614-769-6934', 3, '731615367246332095', '621 East Alley 3rd Floor, Columbus, GA 43201, United States', '1987-01-26', 0, 0, 'bm4', '2018-04-21', 'bennema40', '2015-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS957523385184', '姜璐', 1, '+81 3-1406-2707', 1, '487652513089040617', '13F, 1-5-5, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-10-24', 0, 0, 'jlu', '2012-12-10', 'jianlu', '2006-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS404827901315', '任發', 0, '+81 90-8787-6184', 1, '212464693153033471', 'Rm. 2, 3-15-15 Ginza, Chuo-ku, Tokyo, Japan', '1996-09-18', 0, 0, 'yafat4', '2010-05-21', 'fatyam2004', '2009-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS181511431129', '官德華', 1, '+86 192-9904-0685', 1, '147331324447967187', 'Room 21, 334 FuXingMenNei Street, XiCheng District, Beijing, China', '1988-02-08', 0, 0, 'takwah75', '2016-07-29', 'kootw5', '2014-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS059527609132', 'Jack Ross', 1, '+44 (116) 180 7266', 2, '717537672916508118', 'Flat 25, 329 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1997-06-01', 0, 0, 'rjac603', '2015-06-09', 'jackross123', '2006-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS598383611639', 'Robin Nguyen', 1, '+86 161-5374-1056', 3, '845021729331991313', '中国深圳龙岗区学园一巷233号华润大厦6室', '1990-02-20', 0, 0, 'nguyenro', '2021-08-19', 'robng2', '2017-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS082779631533', 'Irene Williams', 0, '+86 755-045-0612', 4, '715356869994392551', '34F, 567 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1991-08-18', 0, 0, 'wilirene62', '2002-03-18', 'irenewilliams', '2009-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS747254938537', '工藤結翔', 0, '+81 70-1945-6065', 3, '943839933903367043', '日本東京品川区東五反田五丁目2番17号19階', '1993-02-15', 0, 0, 'yuitoku', '2017-02-25', 'kudoyui407', '2011-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS627431423487', '上田桜', 0, '+81 90-8192-3286', 1, '849634078928086661', '日本なごやし北区清水三丁目19番2号6階', '1992-06-06', 0, 0, 'ueda05', '2019-12-09', 'sakura64', '2015-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS928237044995', '杨嘉伦', 0, '+86 21-2137-2272', 1, '194376651540974946', '45F, 177 Jianxiang Rd, Pudong, Shanghai, China', '1991-03-06', 0, 0, 'jialunyang', '2001-02-07', 'yangjia', '2009-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS139353256733', '萧致远', 0, '+81 11-172-6904', 3, '664941684898035008', 'Rm. 46, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1993-02-26', 0, 0, 'xiao220', '2005-08-21', 'xiz', '2020-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS855152408545', '袁惠妹', 0, '+44 7862 930343', 3, '769201409717704421', 'Block 25, 117 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1988-11-01', 0, 0, 'yuehuimei418', '2001-09-04', 'huimeiy', '2014-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS781972681241', 'Tiffany Flores', 0, '+81 3-0933-4047', 1, '495269827794187729', '日本東京中央区銀座三丁目12番2号33階', '1998-12-17', 0, 0, 'tiffaflores74', '2008-04-01', 'tiffaflore2', '2015-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS726941046616', '马璐', 1, '+44 7571 670328', 3, '931286864413019237', 'Block 3, 891 Portland St, Manchester, M1 3LA, United Kingdom', '1990-11-19', 0, 0, 'malu', '2000-02-14', 'luma', '2014-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS539022053466', '斎藤優奈', 1, '+81 74-769-9669', 2, '901403880656749182', '日本ならし大和郡山市本庄町一丁目1番10号35階', '1992-04-23', 0, 0, 'saito5', '2011-06-04', 'yunsaito', '2000-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS060065069612', '楊慧珊', 1, '+81 90-3784-9341', 2, '376904672177335857', '48F, 8 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-11-22', 0, 0, 'waisan3', '2012-05-15', 'wsyeung', '2011-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS405727659370', '雷嘉伦', 0, '+44 5747 132597', 2, '871852602134377670', 'Block 11, 804 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1994-12-22', 0, 0, 'leij', '2007-04-03', 'jil', '2002-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS423564033962', '蒋嘉伦', 0, '+86 21-4369-6066', 3, '684050088064986559', 'Room 23, 223 Binchuan Rd, Minhang District, Shanghai, China', '1988-08-08', 0, 0, 'jjialun9', '2016-05-20', 'jialunjia', '2009-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS687678325468', '卢晓明', 1, '+86 755-062-7305', 2, '376650814972267136', 'Room 40, CR Building, 741 Jingtian East 1st St, Futian District, Shenzhen, China', '1987-03-08', 0, 0, 'xiaomlu', '2003-11-09', 'xiaoming4', '2002-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS063803102659', 'Victor Williams', 1, '+81 70-1335-0161', 3, '503353471077890506', '日本札幌白石区菊水三条五丁目2番10号15階', '1986-10-11', 0, 0, 'victor4', '2004-06-30', 'victor03', '2009-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS428215657346', '金震南', 0, '+81 11-599-7893', 2, '355393306490562067', 'Rm. 4, 2-1-16 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1987-06-10', 0, 0, 'zhjin914', '2012-06-15', 'zhennanjin', '2013-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS783523809824', '湯家玲', 0, '+1 838-332-9561', 4, '743588771671651676', '26 Central Avenue Suite 18, Albany, NY 12205, United States', '1986-05-07', 0, 0, 'kalington5', '2007-05-10', 'tongkaling', '2017-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS030401675580', '莫岚', 1, '+81 66-348-5093', 0, '312966100831431354', '日本おおさかし東住吉区東田辺三丁目27番16号50階', '1997-01-09', 0, 0, 'lamo', '2013-08-18', 'molan53', '2012-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS729127856209', '平野蓮', 0, '+1 330-476-3792', 2, '047459243329132859', '394 Riverview Road Apartment 31, Akron, OH 44313, United States', '1989-12-27', 0, 0, 'ren2017', '2005-02-05', 'renhirano67', '2016-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS309528886253', '武田優奈', 1, '+44 (20) 3243 2623', 4, '196144964251838783', 'Unit 30, Oxford Eco Centre, 867 Maddox Street, London, W1S 1PU, United Kingdom', '1999-02-08', 0, 0, 'yut', '2009-03-04', 'yuntakeda', '2002-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS887690909680', '竹内優奈', 0, '+86 195-4486-3738', 3, '065673038731078172', '中国上海市浦东新区健祥路512号2楼', '1986-06-13', 0, 0, 'yuna6', '2015-06-04', 'takeuchi1975', '2001-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS053039422696', '松本詩乃', 0, '+81 80-5469-4873', 4, '257012297851306959', '33F, 3 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-02-08', 0, 0, 'matshino', '2006-02-08', 'matsumotoshino', '2003-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS515538341386', '汪朝偉', 0, '+81 3-2542-9680', 0, '632746191998205923', '日本東京港区東新橋一丁目5番9号6階', '1998-05-01', 0, 0, 'cwwo', '2010-10-05', 'wong97', '2013-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS038685078064', '汪秀文', 0, '+86 10-6568-3027', 2, '129705569947472077', '中国北京市朝阳区三里屯路76号22楼', '1998-05-02', 0, 0, 'smwong', '2008-09-21', 'wongsm', '2001-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS360606484661', '内田彩乃', 1, '+86 153-0311-9882', 3, '309308850899110651', '中国上海市黄浦区淮海中路465号23室', '1990-05-03', 0, 0, 'ayanouchida', '2007-10-01', 'uchidaayano328', '2022-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS073678543899', '阎致远', 1, '+44 5450 760251', 3, '170656907827645391', 'No.32 Main building, 494 Hanover St, Liverpool, L1 4AF, United Kingdom', '1989-08-28', 0, 0, 'yaz', '2008-04-17', 'zhiyuan17', '2021-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS299528901691', '中森和真', 1, '+81 90-2550-5948', 4, '624168365881234427', '10F, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1998-11-25', 0, 0, 'nakamori3', '2007-04-05', 'kazuma4', '2017-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS451402702955', '莫慧嫻', 0, '+81 90-6162-0634', 3, '308490904698028718', '日本なごやし瑞穂区河岸町四丁目20番9号39号室', '1998-03-19', 0, 0, 'mwaihan9', '2007-09-02', 'wamok1', '2008-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS672293721973', '甘永發', 1, '+81 70-5440-1521', 3, '638473589840522251', 'Rm. 47, 4-9-4 Kamihigashi, Hirano Ward, Osaka, Japan', '1993-07-16', 0, 0, 'kwf92', '2008-02-02', 'kamwf2', '2006-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS192927356169', 'Sherry Perez', 1, '+86 199-3795-1357', 1, '352541640130582011', 'Room 16, 875 Binchuan Rd, Minhang District, Shanghai, China', '1993-04-14', 0, 0, 'perezsherr9', '2018-08-31', 'sherryperez216', '2007-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS429684132064', 'Brenda Kelley', 0, '+86 155-8315-2993', 4, '805493447911260332', 'No.30 building, 556 Huanqu South Street 2nd Alley, Dongguan, China', '1993-12-21', 0, 0, 'brendak', '2003-08-04', 'brenda6', '2021-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS678526237712', '呂慧嫻', 1, '+81 80-3750-7208', 0, '532303168123044967', '21F, 6-1-1, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-10-05', 0, 0, 'lwa9', '2017-01-09', 'waihan86', '2018-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS519667515654', '高橋舞', 1, '+81 70-0634-1727', 1, '421984020709373134', 'Rm. 41, 5-2-17 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-05-18', 0, 0, 'takahashi03', '2020-10-23', 'tmai', '2004-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS838556527160', '工藤明菜', 1, '+86 181-4106-3037', 1, '573342863790510674', '6F, 454 Huanqu South Street 2nd Alley, Dongguan, China', '1988-04-13', 0, 0, 'akinakudo', '2021-06-20', 'ak9', '2002-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS462810693594', '成力申', 0, '+86 28-8192-9124', 4, '002548171148604200', '中国成都市成华区二仙桥东三路165号47栋', '1990-01-02', 0, 0, 'sls604', '2001-05-04', 'liksunshin', '2008-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS543274039376', '菅原悠人', 0, '+86 755-2444-8150', 1, '970935417374913161', '中国深圳福田区景田东一街302号42号楼', '1994-01-30', 0, 0, 'sugawaray', '2015-11-26', 'sugawara3', '2009-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS028614323437', '黃裕玲', 0, '+86 755-861-4982', 2, '280555267284848162', 'Room 45, CR Building, 22 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1987-04-16', 0, 0, 'yuling9', '2002-08-06', 'ylwo', '2010-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS643116501240', '石田紗良', 1, '+81 70-4443-2080', 2, '842977170650300995', '日本おおさかし西成区出城一丁目1番16号12階', '1990-11-07', 0, 0, 'isara', '2016-08-27', 'saraishida', '2009-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS178152850542', 'Anne Martinez', 1, '+86 10-371-0993', 3, '446070159969985081', 'Room 2, 597 West Chang''an Avenue, Xicheng District, Beijing, China', '1990-03-09', 0, 0, 'maran', '2014-01-29', 'martinez909', '2015-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS730382088061', '邱惠敏', 0, '+44 7380 360127', 3, '729952225926212809', 'No.35 Main building, 640 Regent Street, London, W1B 2LX, United Kingdom', '1990-11-12', 0, 0, 'yauwm', '2014-01-21', 'waimyau2', '2005-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS193102936180', '車朝偉', 1, '+81 70-9602-9513', 4, '569441723180755789', '30-kai, 2-1-11 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1985-01-26', 0, 0, 'cwche', '2014-07-07', 'chiuwai2020', '2016-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS526026886024', '苏晓明', 1, '+44 7876 063001', 2, '871045730746744050', 'Flat 28, 781 Mosley St, Manchester, M2 3AQ, United Kingdom', '1986-12-27', 0, 0, 'xiaomingsu', '2014-01-21', 'xiaoming71', '2004-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS022329090123', '野村陽菜', 1, '+1 614-285-0924', 2, '370558737725254722', '199 East Cooke Road Apt 1, Columbus, GA 43214, United States', '1996-09-09', 0, 0, 'nomura95', '2015-06-21', 'hino', '2002-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS581701346607', '雷璐', 1, '+81 3-0554-6263', 0, '536933824263384623', '日本東京渋谷区代々木二丁目3番8号37階', '1991-10-17', 0, 0, 'leilu', '2015-12-19', 'lule', '2001-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS934762959432', '加藤蒼士', 0, '+81 66-185-2440', 2, '338177374913608110', '日本おおさかし近江堂一丁目7番20号23号室', '1989-03-25', 0, 0, 'aoshikato', '2003-12-07', 'aoshikato', '2010-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS276812578416', '潘致远', 0, '+86 143-8483-9933', 2, '333190562413021441', 'No.34 building, 436 Middle Huaihai Road, Huangpu District, Shanghai, China', '1991-03-08', 0, 0, 'panzhiyu2', '2020-05-05', 'zhiyupa', '2003-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS758929711349', 'Eleanor Myers', 0, '+1 838-221-4235', 2, '552230140913709286', '560 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1990-01-31', 0, 0, 'eleanormyers', '2016-11-24', 'eleanormyer', '2017-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS303214417587', '彭岚', 1, '+86 194-4333-7465', 4, '592574618149782553', '中国东莞珊瑚路685号9楼', '1998-04-17', 0, 0, 'pelan', '2018-02-10', 'pela9', '2015-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS974607729365', '太田美月', 1, '+86 156-6379-4826', 1, '390703281436994596', '中国广州市白云区小坪东路369号3室', '1993-09-28', 0, 0, 'mo2013', '2003-03-12', 'otamitsuki', '2013-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS999958050468', 'Kevin Anderson', 0, '+81 74-337-6657', 2, '023380118943893644', '日本ならし学園南三丁目9番1号33階', '1995-02-15', 0, 0, 'anderke', '2014-04-26', 'ak01', '2006-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS002466319882', '萧杰宏', 0, '+86 28-405-5542', 4, '735700143488494406', '中国成都市锦江区红星路三段556号12栋', '1990-11-08', 0, 0, 'xiaojie504', '2004-08-22', 'xiaojieh610', '2000-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS602402225886', 'Thomas Allen', 0, '+81 11-822-6095', 3, '658811266603209196', '日本札幌清田区真栄四条五丁目19番19号1階', '1994-02-09', 0, 0, 'allenthomas', '2019-05-31', 'allen517', '2003-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS673228812826', 'Joel Sanchez', 1, '+81 70-8455-5438', 1, '890545714207075028', '日本ならし学園南三丁目9番11号23階', '1990-11-23', 0, 0, 'josanchez9', '2008-12-28', 'sanchezjo', '2008-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS919706398051', '谷力申', 0, '+1 213-442-3202', 3, '981010754640301259', '825 Wall Street Apartment 44, Los Angeles, CA 90003, United States', '1998-08-07', 0, 0, 'liksunkoo', '2006-01-15', 'lsk804', '2012-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS683202249381', '坂本架純', 0, '+86 755-224-2860', 2, '839008983041122836', '22F, 519 Jingtian East 1st St, Futian District, Shenzhen, China', '1997-06-07', 0, 0, 'sak', '2008-02-19', 'sakamoto3', '2009-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS630711184097', '丁震南', 0, '+44 (116) 465 9074', 3, '173576285614036288', 'Flat 32, 897 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1997-09-22', 0, 0, 'dingzhennan', '2014-07-22', 'ding4', '2001-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS206474590396', '前田大和', 0, '+86 176-7376-4288', 3, '330358881217987196', '中国广州市海珠区江南西路229号13楼', '1986-07-19', 0, 0, 'maeday', '2019-05-29', 'yamatomaed112', '2015-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS330566834476', '小野樹', 1, '+86 193-3377-1970', 4, '175418133135378972', 'Room 11, 151 Jingtian East 1st St, Futian District, Shenzhen, China', '1997-04-30', 0, 0, 'onoit1', '2021-08-09', 'itono', '2010-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS004950190325', '唐浩然', 1, '+81 70-2556-8918', 3, '269447959274025407', '日本なごやし北区楠味鋺三丁目80番8号6階', '1992-07-02', 0, 0, 'tonghoyin', '2008-03-30', 'hoyin1959', '2010-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS773362982817', '邵小慧', 0, '+44 (1223) 95 7041', 3, '287787029764266131', 'No.4 Main building, 665 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1995-02-19', 0, 0, 'siusw', '2005-07-25', 'siusiuwai', '2008-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS442976874764', '邱明詩', 1, '+86 20-8087-0957', 3, '822794845824210463', 'No.2 building, 388 Jiangnan West Road, Haizhu District, Guangzhou, China', '1987-05-04', 0, 0, 'ymingsze1943', '2008-12-10', 'mingsze627', '2008-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS998023095977', 'Leslie Gray', 1, '+86 755-492-8750', 4, '478757011021696409', '中国深圳福田区景田东一街863号28楼', '1994-10-26', 0, 0, 'lesliegra214', '2015-06-23', 'lgr', '2004-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS048902925384', '山本聖子', 0, '+81 80-0537-1590', 1, '348095337945369133', 'Rm. 5, 1-1-6 Deshiro, Nishinari Ward, Osaka, Japan', '1994-02-01', 0, 0, 'seikoy', '2005-10-22', 'yseiko', '2015-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS932839075068', 'Eugene Reed', 0, '+86 28-0379-4358', 3, '964907033475887444', 'Room 10, CR Building, 926 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1987-07-27', 0, 0, 'reedeug', '2021-01-01', 'reedeu8', '2007-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS836554219043', 'Jamie Nguyen', 0, '+1 330-013-9651', 4, '259593859730724744', '388 Collier Road 3rd Floor, Akron, OH 44320, United States', '1987-10-05', 0, 0, 'jnguy', '2010-12-23', 'njamie', '2008-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS902003873333', '黎永發', 1, '+44 (121) 276 4239', 2, '114043696647359274', 'Block 17, 839 New Street, Birmingham, B2 4DB, United Kingdom', '1987-06-25', 0, 0, 'wingfat4', '2003-04-23', 'lwingfat603', '2003-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS249994736091', '工藤美月', 1, '+44 7079 662096', 2, '871099467151180337', 'Block 14, 491 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1988-03-23', 0, 0, 'mitk', '2009-02-13', 'kudomits5', '2006-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS237435964994', 'Joseph Fox', 0, '+81 70-4912-0240', 0, '715941193354670753', '7-kai, 4-9-18 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-12-18', 0, 0, 'joseph325', '2018-03-28', 'fojose220', '2011-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS054053239838', '韦震南', 1, '+86 21-9717-0534', 0, '317072763421708098', 'Room 31, 676 Ganlan Rd, Pudong, Shanghai, China', '1987-02-22', 0, 0, 'zhennanwei1951', '2002-08-08', 'zhennan2', '2004-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS949741086593', '蘇國權', 0, '+81 74-921-3851', 1, '813253259340785575', '日本ならし西大寺赤田町一丁目7番1号7階', '1989-08-27', 0, 0, 'sokwokkuen3', '2018-05-17', 'kwokkuen10', '2014-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS100882429440', '田中光', 1, '+81 74-614-1136', 3, '073910137463322724', '49F, 3-9-18 Gakuenminami, Nara, Japan', '1994-12-18', 0, 0, 'th3', '2000-06-29', 'hikaruta', '2021-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS044490310463', '森陸', 0, '+81 80-4428-8893', 1, '740318458396158859', '日本札幌厚別区上野幌一条二丁目1番13号38号室', '1992-09-30', 0, 0, 'rikum1', '2006-12-05', 'moririku', '2017-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS684640229750', 'Carol Fernandez', 1, '+81 70-3571-9717', 2, '748780933780124441', '33-kai, 9 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1990-03-10', 0, 0, 'fcarol3', '2021-01-05', 'carol8', '2002-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS777856004553', '廖天樂', 1, '+81 52-494-6914', 1, '816543767958660428', 'Rm. 46, 16 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1985-07-14', 0, 0, 'ltinlok', '2000-08-19', 'tinlokliao6', '2008-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS799771692390', 'Katherine Alexander', 1, '+86 167-5484-1346', 1, '745015709672114623', '9F, 57 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1997-09-14', 0, 0, 'alexakatherine909', '2002-01-22', 'alekath1998', '2002-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS933029004966', '杉山陸', 1, '+86 10-9896-9831', 1, '686612321472646151', 'Room 15, 772 028 County Rd, Yanqing District, Beijing, China', '1995-06-11', 0, 0, 'sugiyama45', '2011-09-12', 'sriku7', '2013-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS959144937898', '元明', 1, '+1 330-248-3955', 1, '308088692409206080', '755 Fern Street Suite 12, Akron, OH 44307, United States', '1999-01-28', 0, 0, 'yuen07', '2016-03-06', 'ming1207', '2022-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS651799753475', '錢永權', 0, '+1 718-734-2216', 2, '422458616353971047', '910 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1987-05-16', 0, 0, 'chinwk', '2002-07-15', 'chinwingkuen74', '2006-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS008674795180', '鄺祖兒', 1, '+44 (151) 960 5739', 1, '258416274062927167', 'Unit 34, Oxford Eco Centre, 923 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1986-06-20', 0, 0, 'choyeekwong97', '2010-12-23', 'choyeekwong6', '2002-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS236121770156', '伊藤彩乃', 0, '+81 66-519-2821', 1, '598206319946415500', '日本おおさかし西成区出城一丁目1番3号19号室', '1988-01-12', 0, 0, 'itayano', '2005-03-30', 'ayanoito514', '2015-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS276980509005', 'Matthew Olson', 1, '+1 838-236-7936', 0, '792816742762277819', '859 Lark Street 3rd Floor, Albany, NY 12210, United States', '1995-02-03', 0, 0, 'olson1029', '2011-03-19', 'olsomatthew', '2005-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS997469915418', 'Eva Stevens', 0, '+44 5889 430154', 2, '606297026990163612', 'No.28 Main building, 491 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1995-03-30', 0, 0, 'stevense', '2019-06-21', 'steveva01', '2000-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS186596397511', 'Laura Ross', 1, '+81 66-040-7946', 4, '511495395879831064', '日本おおさかし東住吉区東田辺三丁目27番20号11階', '1988-04-19', 0, 0, 'laur', '2020-04-09', 'rosslaur', '2005-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS837169428179', '蔣浩然', 0, '+44 (116) 649 9193', 1, '580015190094848357', 'Unit 28, Oxford Eco Centre, 505 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1995-02-17', 0, 0, 'chianhy10', '2004-06-02', 'chianhy', '2014-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS183001517071', '上野悠人', 0, '+1 212-401-7729', 3, '415358802602187913', '213 Fifth Avenue Apt 2, New York, NY 10017, United States', '1992-02-15', 0, 0, 'yutou', '2005-01-05', 'uenoyut', '2006-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS744578124523', '石云熙', 1, '+44 5136 109032', 3, '650013960267403293', 'Flat 2, 534 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1994-11-26', 0, 0, 'shi610', '2015-08-08', 'shi7', '2001-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS409191066816', '龚子异', 0, '+86 194-0281-1099', 1, '487369525981157164', 'Room 24, CR Building, 783 West Chang''an Avenue, Xicheng District, Beijing, China', '1994-03-30', 0, 0, 'ziygong60', '2008-05-14', 'gziyi8', '2010-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS853914363244', '许震南', 1, '+86 10-1588-5600', 4, '002612820150942032', 'No.48 building, 706 028 County Rd, Yanqing District, Beijing, China', '1985-02-21', 0, 0, 'xzhenn1112', '2006-06-25', 'zhennan1104', '2009-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS144511388397', '石田一輝', 1, '+86 159-2439-4786', 0, '782277546220448225', '中国深圳龙岗区学园一巷988号华润大厦13室', '1990-06-20', 0, 0, 'ishida9', '2015-06-02', 'ishida922', '2002-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS674089679414', '上田大輔', 0, '+86 151-2844-4645', 0, '568853780525121775', 'No.18 building, 58 Huanqu South Street 2nd Alley, Dongguan, China', '1988-10-01', 0, 0, 'daisukeueda', '2009-12-18', 'uedaisuke1', '2014-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS701292482771', '沈子异', 1, '+81 90-3206-5133', 1, '020989274275730218', '日本ならし大和郡山市本庄町一丁目1番20号34階', '1989-01-22', 0, 0, 'ziyish', '2015-11-18', 'sziyi', '2019-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS380306718118', '谢子异', 0, '+86 20-1309-4975', 3, '325449407481054913', '中国广州市越秀区中山二路426号8楼', '1996-03-12', 0, 0, 'xziyi507', '2005-11-30', 'xizi', '2009-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS492093754195', 'Tracy Mendez', 0, '+1 212-786-5652', 4, '043761288583198801', '912 West Houston Street Suite 22, New York, NY 10014, United States', '1994-11-11', 0, 0, 'mendezt12', '2009-07-18', 'tracyme', '2019-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS398275784295', '宣志明', 0, '+81 90-2317-1302', 3, '730353222065824641', '日本ならし学園南三丁目9番11号15階', '1986-10-26', 0, 0, 'chiming83', '2011-03-28', 'hsuacm', '2013-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS904313360592', 'Carlos Graham', 1, '+86 131-7433-5939', 2, '532654085380942640', 'No.48 building, 50 028 County Rd, Yanqing District, Beijing, China', '1997-11-17', 0, 0, 'carlograham512', '2005-01-03', 'carlosgra1986', '2015-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS326801397903', '加藤翼', 1, '+1 213-663-5985', 3, '751051946773270835', '63 Sky Way Apt 29, Los Angeles, CA 90043, United States', '1989-11-04', 0, 0, 'tsubasakato420', '2014-04-12', 'kattsubasa', '2019-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS989117856275', 'Louis Ortiz', 0, '+86 755-182-0539', 2, '994990300692846132', '中国深圳罗湖区清水河一路468号15栋', '1995-02-11', 0, 0, 'louisort', '2008-03-22', 'ortizlouis', '2002-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS999327192087', '村上悠人', 1, '+1 212-998-1814', 0, '062934602229981380', '771 Fifth Avenue Suite 46, New York, NY 10017, United States', '1991-05-29', 0, 0, 'yutomurakami', '2005-09-04', 'murakami71', '2002-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS227541589379', '朱致远', 0, '+86 174-4470-1822', 3, '816761881135992620', 'No.2 building, 885 Dongtai 5th St, Dongguan, China', '1998-08-16', 0, 0, 'zhiyuanzhu', '2009-02-12', 'zzhu4', '2018-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS860839939362', '向詩涵', 1, '+81 52-029-6290', 2, '578747911074648271', '33F, 2-5-6 Chitose, Atsuta Ward, Nagoya, Japan', '1991-04-08', 0, 0, 'xiangshihan', '2011-03-05', 'xiang95', '2000-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS325158564266', '江裕玲', 1, '+86 760-7847-1328', 4, '564447661521618591', 'Room 16, 38 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1993-06-22', 0, 0, 'ylkong4', '2007-12-21', 'kyuling10', '2021-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS797575456006', '潘杰宏', 0, '+81 11-347-2948', 3, '283622212922941387', '日本札幌豊平区豊平三条十三丁目3番9号13号室', '1995-06-11', 0, 0, 'panji202', '2005-08-25', 'pan11', '2012-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS039969993849', '毛家玲', 1, '+86 10-2250-7280', 3, '706774269203418739', '中国北京市東城区東直門內大街401号华润大厦35室', '1994-05-03', 0, 0, 'kalmo', '2018-02-05', 'kalingmo42', '2021-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS180765548608', '太田百花', 1, '+81 80-9044-0312', 1, '166587150799935190', '1F, 8 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1987-04-22', 0, 0, 'moot6', '2015-10-04', 'mota', '2004-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS076595461905', '彭云熙', 0, '+81 70-8462-2659', 2, '229899434367601526', '日本おおさかし近江堂一丁目7番1号2号室', '1986-10-06', 0, 0, 'pengyunxi', '2021-07-28', 'peng1', '2004-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS931798452195', '菅原葵', 1, '+81 66-940-7229', 3, '860641871871380989', '11F, 1-7-20 Omido, Higashiosaka, Osaka, Japan', '1992-06-28', 0, 0, 'aoi506', '2007-11-30', 'sugawaraaoi', '2001-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS720409854121', '鐘世榮', 0, '+81 74-171-7487', 4, '199374733784289961', '日本ならし大和郡山市本庄町一丁目1番3号9階', '1995-06-14', 0, 0, 'saiwingch1996', '2003-05-08', 'saiwing10', '2005-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS218538307321', '侯云熙', 1, '+1 213-538-5635', 4, '812467399808501260', '177 Wall Street Suite 15, Los Angeles, CA 90003, United States', '1998-12-18', 0, 0, 'yuho10', '2007-05-13', 'hou1110', '2014-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS804438427622', '刘秀英', 1, '+1 330-241-6315', 3, '064246100962066291', '15 Ridgewood Road Apt 31, Akron, OH 44321, United States', '1994-11-02', 0, 0, 'xiuying6', '2012-06-14', 'liu9', '2004-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS660528463547', 'Clara Murphy', 0, '+81 52-573-5455', 3, '066376866634464300', '日本なごやし瑞穂区河岸町四丁目20番7号9階', '1989-02-26', 0, 0, 'murcl', '2005-05-30', 'murpclara5', '2019-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS784162353190', '范云熙', 0, '+44 7600 686201', 1, '564125145131793386', 'Block 33, 532 New Street, Birmingham, B2 4DB, United Kingdom', '1986-04-03', 0, 0, 'yunxfa', '2006-05-17', 'fanyunxi', '2000-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS849618025064', '林結翔', 1, '+1 212-038-1837', 2, '442432146077686833', '230 Canal Street Apt 44, New York, NY 10013, United States', '1992-08-01', 0, 0, 'yuitoh', '2000-03-22', 'yuito10', '2010-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS356954657409', '渡辺大和', 1, '+81 80-8767-2935', 0, '093910373993639340', '日本ならし西大寺赤田町一丁目7番19号9階', '1989-07-02', 0, 0, 'yamato313', '2006-06-23', 'yamatosa', '2001-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS399796470689', '向岚', 0, '+81 3-8028-0549', 2, '804802469724348532', '42-kai, 5-2-15 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1987-02-26', 0, 0, 'lx5', '2014-03-17', 'lanxian513', '2006-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS425466948961', '狄裕玲', 1, '+44 (151) 488 8719', 2, '964700181552950408', 'Unit 46, Oxford Eco Centre, 532 Hanover St, Liverpool, L1 4AF, United Kingdom', '1998-01-27', 0, 0, 'tyul', '2000-08-26', 'ti328', '2008-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS445235564434', '孫思妤', 1, '+1 718-367-5533', 0, '151919417225439070', '687 Bergen St Suite 15, Brooklyn, NY 11217, United States', '1989-08-29', 0, 0, 'hsuansy49', '2010-08-03', 'hsuan7', '2005-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS274861574684', 'Christina Scott', 1, '+44 (116) 572 1777', 0, '185083906297787378', 'Unit 2, Oxford Eco Centre, 984 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1990-10-31', 0, 0, 'scchris', '2011-04-26', 'scottchri2015', '2006-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS171390055267', '古慧琳', 0, '+86 132-0704-2815', 4, '904136570008179248', 'No.2 building, 423 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1986-03-03', 0, 0, 'wailamku2', '2014-02-10', 'kwailam75', '2015-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS919946744259', 'Randy Foster', 1, '+86 150-3225-1994', 3, '679379318344521917', 'Room 39, 548 Jiangnan West Road, Haizhu District, Guangzhou, China', '1987-05-05', 0, 0, 'randyfoster', '2007-01-21', 'randy4', '2004-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS049454709282', 'Randy Williams', 0, '+86 162-7647-1802', 1, '054410264134325222', 'No.14 building, 62 Yueliu Rd, Fangshan District, Beijing, China', '1988-12-16', 0, 0, 'williams126', '2013-09-27', 'willr', '2002-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS677392281497', '廖青雲', 0, '+81 3-9318-7314', 4, '141107309353704216', '31-kai, 1-6-3, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1988-02-06', 0, 0, 'liaochingwan2', '2014-10-03', 'liao10', '2017-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS163267860293', '贺杰宏', 0, '+81 80-6708-3344', 4, '826178651733386809', '3-kai, 3-27-12 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1995-02-25', 0, 0, 'jiehhe', '2017-12-27', 'jiehong922', '2017-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS654722582283', 'Albert Reynolds', 1, '+86 142-2378-7624', 0, '541897227594418941', 'No.20 building, No. 270, Shuangqing Rd, Chenghua District, Chengdu, China', '1995-04-22', 0, 0, 'alberreynolds', '2001-10-21', 'realber', '2013-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS075186226852', '曾永權', 0, '+86 168-1925-6793', 3, '668060152178965294', 'No.24 building, 283 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1992-05-05', 0, 0, 'twingkuen', '2006-08-01', 'witsan3', '2014-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS598747120081', '中山陸', 1, '+86 20-976-8126', 4, '735693923499447116', 'No.15 building, 870 Tianhe Road, Tianhe District, Guangzhou, China', '1997-11-11', 0, 0, 'riku1', '2009-09-21', 'rnak1963', '2003-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS557970582159', 'Paul Holmes', 1, '+1 838-639-9111', 2, '689665763252226904', '609 Lark Street 3rd Floor, Albany, NY 12210, United States', '1998-11-29', 0, 0, 'holmpa4', '2008-10-17', 'paul79', '2021-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS896728158659', '山崎健太', 1, '+81 66-902-9202', 1, '812447743534510825', '日本おおさかし東住吉区東田辺三丁目27番4号15号室', '1996-07-12', 0, 0, 'kya', '2021-06-29', 'kentayamazaki514', '2005-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS437315230963', 'Kimberly Gibson', 1, '+86 755-292-4778', 3, '224127877757273186', '中国深圳罗湖区田贝一路149号36号楼', '1998-08-14', 0, 0, 'kimberlyg702', '2000-05-27', 'kimberlyg', '2001-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS967244110634', 'Jeffery Peterson', 1, '+86 760-4875-7563', 1, '446435463220661307', '中国中山京华商圈华夏街512号13室', '1990-12-25', 0, 0, 'pjeffery', '2010-04-06', 'jefferypeter', '2003-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS314826717400', '青木美羽', 0, '+81 80-5402-1099', 4, '897060018118807062', '日本なごやし北区清水三丁目19番2号23階', '1994-12-21', 0, 0, 'aokimi', '2002-06-07', 'am3', '2009-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS858902899376', '田中大地', 0, '+86 769-329-7018', 1, '567497210639210276', '中国东莞珊瑚路685号39栋', '1998-02-16', 0, 0, 'daichitanaka', '2016-12-27', 'daict93', '2018-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS182739813511', '小川海斗', 1, '+86 146-1211-4020', 1, '186998461516264339', '17F, 218 Ganlan Rd, Pudong, Shanghai, China', '1997-11-28', 0, 0, 'okai', '2000-05-12', 'ogakaito', '2019-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS980190424329', '馮浩然', 1, '+81 80-9326-5161', 0, '052741247274923435', '43-kai, 1-7-8 Omido, Higashiosaka, Osaka, Japan', '1988-11-19', 0, 0, 'fung1955', '2008-01-08', 'hyf2', '2013-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS055808090526', '马秀英', 1, '+86 760-3991-8051', 2, '804457588607512087', '中国中山乐丰六路68号4号楼', '1996-04-15', 0, 0, 'xma19', '2013-08-23', 'maxiuy', '2015-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS089771196516', '羅家文', 0, '+44 5005 751835', 2, '708448534087938605', 'Block 28, 759 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-01-05', 0, 0, 'kamanl', '2002-11-13', 'kmlo6', '2019-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS511340036341', 'Ricky Gray', 1, '+81 70-2398-2704', 1, '597433501879344952', 'Rm. 35, 1-5-13, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-07-11', 0, 0, 'grayrick', '2007-08-08', 'gray6', '2004-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS447256505201', '王詩涵', 1, '+44 7352 063404', 4, '416380819355495924', 'No.40 Main building, 467 Maddox Street, London, W1S 1PU, United Kingdom', '1987-06-19', 0, 0, 'shihanwang7', '2019-01-21', 'wanshih', '2013-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS635636015615', '邵惠敏', 1, '+81 11-853-2677', 0, '506823826739422525', '27F, 13-3-4 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1988-06-17', 0, 0, 'siuwm', '2000-12-10', 'siwaiman', '2007-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS898609752420', '鄧心穎', 0, '+44 (1865) 13 3587', 3, '892226298620370869', 'Block 49, 464 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-04-02', 0, 0, 'tangsw', '2002-01-08', 'swtang', '2018-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS799668373718', '青木陸', 1, '+81 70-5223-8174', 1, '929553978580572091', '35-kai, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1989-07-25', 0, 0, 'rikuao', '2016-07-14', 'rikua', '2009-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS339244005878', '秦璐', 1, '+1 614-440-6814', 0, '820882589404512766', '378 East Cooke Road Apt 36, Columbus, GA 43214, United States', '1998-02-23', 0, 0, 'qinl', '2000-12-03', 'luqin', '2004-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS374063887628', 'Bonnie Scott', 0, '+86 755-6483-2680', 1, '936072323243147836', '中国深圳福田区深南大道945号18栋', '1994-09-05', 0, 0, 'scottbonnie', '2012-06-16', 'scott6', '2015-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS882413056593', '李詩涵', 0, '+44 7735 728631', 0, '635851208627518360', 'No.2 Main building, 473 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1990-05-08', 0, 0, 'lshi3', '2004-12-20', 'shihli', '2006-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS805335258890', 'Victor Morgan', 0, '+86 769-5406-8726', 1, '171415490035590627', '中国东莞坑美十五巷279号17栋', '1989-10-11', 0, 0, 'morganvicto', '2012-11-26', 'victormorga', '2006-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS371464639695', 'Jacqueline Hicks', 1, '+81 70-2822-4429', 0, '871143860848292197', '日本おおさかし近江堂一丁目7番17号7階', '1989-04-02', 0, 0, 'hicks2014', '2006-04-22', 'hicksjacqu', '2006-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS801315378133', '高橋凛', 0, '+81 90-3292-1741', 1, '283377752629781035', '17F, 3 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1988-06-02', 0, 0, 'tr422', '2014-11-28', 'takri', '2003-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS174497641519', '井上美羽', 1, '+81 70-5508-1805', 4, '475717580940758760', '日本札幌白石区菊水三条五丁目2番13号48階', '1998-02-03', 0, 0, 'inouemiu', '2001-03-13', 'miuinoue', '2013-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS667261906435', 'Phillip Gonzales', 0, '+81 66-870-9171', 1, '642818674211142097', '日本おおさかし西成区出城一丁目1番6号10階', '1996-05-05', 0, 0, 'philg', '2017-03-20', 'gonzalesphil63', '2015-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS033137060413', '河野美月', 0, '+81 80-8187-6859', 3, '659118690505686716', '日本おおさかし東住吉区東田辺三丁目27番13号5号室', '1997-08-13', 0, 0, 'komi', '2012-09-26', 'komitsuki', '2017-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS263328970255', 'Patrick Jones', 1, '+81 80-7564-8233', 2, '476343072448527294', '日本なごやし北区楠味鋺三丁目80番10号21号室', '1986-12-30', 0, 0, 'pajo', '2016-06-03', 'jonespat', '2000-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS060432825836', '高安琪', 0, '+81 80-0158-5195', 0, '334209169553969056', '日本ならし大和郡山市本庄町一丁目1番20号27階', '1989-03-27', 0, 0, 'angao', '2018-05-21', 'gao617', '2018-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS722932281104', 'Willie Garcia', 0, '+1 838-706-5657', 0, '727344808542925631', '445 Lark Street Apartment 31, Albany, NY 12210, United States', '1995-08-01', 0, 0, 'wgarc', '2019-07-18', 'willie18', '2015-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS811079448976', 'Leroy Gonzales', 0, '+86 185-1567-4594', 3, '884474265375528027', '中国成都市成华区双庆路726号33室', '1998-03-11', 0, 0, 'leroygonzales', '2019-02-17', 'gonzlero', '2012-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS193035066332', '柴田結翔', 1, '+86 755-336-7137', 1, '771457958912469939', '中国深圳罗湖区清水河一路935号14号楼', '1990-10-16', 0, 0, 'yuito105', '2012-03-17', 'yuitoshib', '2009-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS371703260128', 'Cindy Clark', 0, '+81 80-9472-0257', 4, '341637933685392832', '43F, 1-5-1, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1987-11-19', 0, 0, 'cindy52', '2003-08-09', 'clark1022', '2002-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS665981052661', '何致远', 1, '+86 152-1445-2172', 1, '617606985463366149', '中国东莞东泰五街141号32楼', '1997-11-04', 0, 0, 'zhiyuan9', '2003-09-29', 'zhe', '2019-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS471783732718', '宮崎優奈', 1, '+44 7077 762005', 3, '940071775715434973', 'No.32 Main building, 218 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1997-08-09', 0, 0, 'yuna7', '2013-01-19', 'yunam1', '2021-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS632992187005', '于睿', 0, '+86 197-6566-0341', 2, '062142152930218461', '19F, 210 Sanlitun Road, Chaoyang District, Beijing, China', '1995-10-15', 0, 0, 'ruiyu', '2002-11-09', 'yrui', '2019-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS872858219225', '安藤光莉', 0, '+81 80-3661-8201', 4, '796048644562749750', '36-kai, 3-15-14 Ginza, Chuo-ku, Tokyo, Japan', '1993-06-16', 0, 0, 'andhika', '2002-09-03', 'hikari1', '2004-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS156454772321', '苗詩君', 0, '+1 718-298-5970', 1, '609176676853421917', '546 Nostrand Ave Suite 8, Brooklyn, NY 11216, United States', '1997-11-30', 0, 0, 'skmiu5', '2021-06-05', 'miszekwan', '2007-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS046070360735', '陆子韬', 0, '+81 70-5390-3765', 1, '305602972529819488', '日本東京品川区東五反田五丁目2番14号19号室', '1994-11-15', 0, 0, 'zitaol1130', '2000-03-30', 'zitaolu3', '2016-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS652095351180', '龚睿', 0, '+86 21-808-9331', 2, '560243050271281260', '28F, 921 Binchuan Rd, Minhang District, Shanghai, China', '1997-01-27', 0, 0, 'ruig520', '2006-08-30', 'rgong', '2011-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS029498403915', '石田大地', 0, '+81 11-888-9595', 3, '139102699112450799', '日本札幌中央区宮の森四条六丁目1番9号25階', '1987-02-03', 0, 0, 'ishidadaichi', '2019-02-07', 'daichii', '2010-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS508309418009', 'Harry Wright', 0, '+86 182-5052-5735', 0, '697048915328672646', '中国北京市東城区東直門內大街117号华润大厦40室', '1996-02-22', 0, 0, 'harwright87', '2010-08-16', 'harryw', '2012-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS243501000564', '向發', 1, '+86 192-1981-0568', 0, '938426226952496592', '中国成都市成华区双庆路241号华润大厦7室', '1985-12-22', 0, 0, 'fheung', '2007-01-28', 'fath3', '2011-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS547427659189', '鐘慧琳', 0, '+86 28-9421-1079', 1, '224353650589225449', 'Room 34, No.696, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1996-12-14', 0, 0, 'wlc', '2014-09-08', 'chungwailam', '2007-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS953146373267', '杨子韬', 0, '+81 3-5773-1933', 4, '469451783917275754', 'Rm. 25, 2-3-17 Yoyogi, Shibuya-ku, Tokyo, Japan', '1986-05-19', 0, 0, 'yangzit', '2016-03-02', 'yangzitao2', '2007-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS449331951572', 'Daniel Williams', 0, '+81 11-285-3353', 3, '649804214587304192', '16-kai, 2-1-12 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-05-23', 0, 0, 'wdaniel5', '2016-12-31', 'daniewill', '2020-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS881006819910', '杨秀英', 1, '+86 174-7278-2725', 0, '799728861852006017', '中国深圳福田区景田东一街448号9室', '1988-03-03', 0, 0, 'xiuyang46', '2014-03-25', 'xiuyingyang', '2021-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS288608131897', '菊地蒼士', 0, '+44 (1223) 40 9155', 2, '663411933126718719', 'Flat 8, 1 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1986-08-27', 0, 0, 'aoshikikuchi1', '2004-04-03', 'aoshik1209', '2003-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS770889377855', '島田玲奈', 1, '+44 5122 467564', 1, '408728912562167883', 'No.37 Main building, 205 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1991-02-19', 0, 0, 'rena10', '2008-01-16', 'res508', '2000-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS941777965542', '鈴木優奈', 0, '+81 52-802-5260', 4, '680191111247481115', '日本なごやし守山区瀬古東二丁目171番5号6階', '1985-01-05', 0, 0, 'suzuyuna5', '2011-01-28', 'suzuki3', '2004-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS731440957641', '谷明', 0, '+44 5706 854093', 2, '333388284752898626', 'No.44 Main building, 660 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1996-01-04', 0, 0, 'mikoo', '2017-09-26', 'koom', '2005-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS996930368990', 'Diane Tucker', 0, '+44 (1223) 41 1942', 2, '368368296301425009', 'Block 2, 719 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1994-12-04', 0, 0, 'diane6', '2014-01-28', 'tuckerdiane', '2001-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS098548707778', '鄧慧琳', 0, '+81 80-3417-2677', 2, '015077237488130254', '日本東京品川区東五反田五丁目2番1号23階', '1998-07-28', 0, 0, 'wltan', '2016-01-05', 'twailam61', '2016-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS140117850503', '范致远', 0, '+86 150-6271-8485', 2, '030312687852114138', 'No.6 building, 572 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1996-07-08', 0, 0, 'zhfa', '2001-06-01', 'zhiyfan74', '2009-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS836204989461', '松本聖子', 0, '+86 177-5177-7041', 2, '762674219918679367', 'No.37 building, 109 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1998-05-28', 0, 0, 'seikmatsumoto', '2011-02-17', 'seikmatsumoto', '2002-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS089951068080', '清水光', 1, '+81 80-4581-6017', 2, '366937053281278010', '39-kai, 1-7-13 Omido, Higashiosaka, Osaka, Japan', '1995-07-05', 0, 0, 'hikashimizu8', '2006-08-22', 'hikash78', '2010-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS261742989387', 'Tracy Lewis', 1, '+44 (151) 615 5987', 2, '437543718380196036', 'No.15 Main building, 373 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1991-03-30', 0, 0, 'ltracy', '2001-05-24', 'lewistrac2020', '2008-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS409800863350', '馬仲賢', 0, '+44 (1865) 92 0343', 1, '980894460581723142', 'Flat 3, 738 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1995-03-27', 0, 0, 'chum', '2000-01-12', 'mcy', '2021-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS520755747501', 'Anthony Fernandez', 0, '+44 7710 200866', 0, '845791615989067969', 'Block 6, 937 Park End St, Oxford, OX1 1JD, United Kingdom', '1996-11-04', 0, 0, 'fan531', '2001-02-25', 'anthonyfe', '2001-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS219140963088', '阿部結翔', 0, '+1 838-556-7171', 0, '854407410562590952', '155 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1986-10-19', 0, 0, 'yuitoabe55', '2009-01-16', 'yuitoa', '2010-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS255736186255', '陶致远', 0, '+86 168-1642-7556', 3, '326484462736695250', '中国广州市白云区小坪东路56号华润大厦16室', '1991-12-29', 0, 0, 'zhiyuanta1007', '2011-02-19', 'zhtao', '2017-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS043622641416', 'Wayne Burns', 1, '+86 152-7173-3864', 3, '780868493337511882', 'Room 13, CR Building, 461 Dong Zhi Men, Dongcheng District, Beijing, China', '1987-07-22', 0, 0, 'wayne602', '2004-01-18', 'burnsway', '2014-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS736178831756', '林國賢', 1, '+81 11-556-9497', 1, '427125576610365950', '日本札幌厚別区上野幌一条二丁目1番9号40階', '1989-01-21', 0, 0, 'kwokyin1992', '2004-09-10', 'kwolam67', '2001-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS652842474316', 'Robert Porter', 0, '+81 70-0099-2932', 0, '040005760186476028', '36-kai, 1-5-6, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1987-06-12', 0, 0, 'porter506', '2019-07-07', 'porterr521', '2008-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS515269416768', '史秀英', 1, '+1 213-318-4548', 1, '216034652644381108', '328 Figueroa Street Suite 3, Los Angeles, CA 90037, United States', '1996-04-24', 0, 0, 'xiuyishi', '2019-08-04', 'xis14', '2011-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS613742561883', 'Anita Moreno', 1, '+44 5639 241874', 3, '542455569654125191', 'Unit 12, Oxford Eco Centre, 406 Maddox Street, London, W1S 1PU, United Kingdom', '1994-09-17', 0, 0, 'anitamoreno60', '2016-11-24', 'amore', '2019-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS950211292690', '胡睿', 0, '+86 28-810-5386', 4, '659609834942954110', '中国成都市成华区双庆路639号40室', '1993-06-12', 0, 0, 'ruh619', '2006-09-30', 'hurui', '2014-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS462458638431', '和田聖子', 0, '+1 838-456-6005', 2, '468619936361111827', '449 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1987-07-29', 0, 0, 'seiko18', '2015-07-23', 'seikowada1988', '2004-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS589964922847', '向安琪', 0, '+81 90-6199-6206', 3, '122869325286628868', 'Rm. 22, 1-7-1 Saidaiji Akodacho, Nara, Japan', '1994-05-23', 0, 0, 'anqix1218', '2007-09-29', 'anqixiang', '2020-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS704777072986', '中山玲奈', 0, '+86 151-4113-5579', 3, '856418573426228042', 'Room 28, CR Building, 836 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-01-30', 0, 0, 'rnakayama', '2007-09-27', 'renan1982', '2005-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS404743645896', '邱秀英', 0, '+86 21-5442-8536', 3, '788612658202782605', 'Room 36, 348 Ganlan Rd, Pudong, Shanghai, China', '1988-11-03', 0, 0, 'xqiu', '2002-11-27', 'qiuxiu', '2019-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS923985111822', '渡辺彩乃', 1, '+81 90-3526-6631', 2, '249797287389132347', '日本ならし学園南三丁目9番20号24階', '1991-03-03', 0, 0, 'ays228', '2002-12-23', 'asato05', '2014-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS990575288326', '程杰宏', 0, '+1 212-503-7314', 1, '004777377773180210', '93 Wooster Street Apartment 48, New York, NY 10012, United States', '1991-06-13', 0, 0, 'cheng816', '2018-03-01', 'chj', '2005-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS219461308316', '藤井詩乃', 0, '+1 718-899-4612', 1, '301583455575044424', '974 Columbia St Apt 9, Brooklyn, NY 11231, United States', '1990-10-09', 0, 0, 'fushino', '2000-08-28', 'shinof', '2012-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS548451484576', '孙睿', 0, '+81 80-5488-4680', 0, '018507030906610676', '日本おおさかし近江堂一丁目7番6号16階', '1989-06-06', 0, 0, 'sunr00', '2012-08-15', 'sunrui', '2011-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS833798720459', '佐野瑛太', 0, '+86 168-7006-5631', 0, '516920581563940905', '中国深圳福田区景田东一街326号42楼', '1985-10-12', 0, 0, 'eita106', '2010-05-29', 'eitasano', '2002-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS797905027167', '近藤和真', 0, '+81 90-5821-2641', 1, '282679225280274130', '日本札幌白石区菊水三条五丁目4番7号19階', '1990-01-08', 0, 0, 'kazumakondo2', '2007-04-22', 'kazkondo81', '2014-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS650344031021', 'Marjorie Nguyen', 1, '+86 21-122-9482', 4, '488714866273368590', '中国上海市黄浦区淮海中路101号6栋', '1991-09-14', 0, 0, 'marngu627', '2013-05-07', 'marjong', '2013-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS620843381024', '呂頴璇', 1, '+86 21-9918-1828', 2, '151097010405413758', '中国上海市黄浦区淮海中路320号50号楼', '1992-04-04', 0, 0, 'wingsuenlui', '2002-07-23', 'wingsuen91', '2010-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS440076721956', '内田葵', 0, '+81 70-2616-5843', 1, '385612844242716398', '日本おおさかし近江堂一丁目7番20号47階', '1991-01-25', 0, 0, 'uchidaaoi9', '2005-07-29', 'aouchi', '2014-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS047851858710', '容梓軒', 1, '+44 (121) 100 5659', 1, '408806358695145512', 'Block 14, 258 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1995-06-11', 0, 0, 'tszhin402', '2000-10-09', 'yung5', '2015-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS358697637850', 'Bruce Meyer', 1, '+81 66-782-8622', 1, '234579398377984676', '日本おおさかし平野区加美東四丁目9番20号28階', '1995-01-17', 0, 0, 'brucm222', '2002-05-29', 'brucemeyer1204', '2004-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS595751084968', '熊杰宏', 0, '+81 3-9429-9927', 3, '812259041420476183', '日本東京中央区銀座三丁目12番6号42階', '1996-06-19', 0, 0, 'jiehoxiong3', '2011-12-28', 'xij', '2009-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS832710327576', '橋本翼', 1, '+86 21-0914-5084', 1, '834858815932542092', '中国上海市徐汇区虹桥路579号48楼', '1992-07-17', 0, 0, 'tsubasahashi', '2009-08-08', 'hashimoto54', '2013-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS996550983855', '顧淑怡', 0, '+86 10-790-0579', 3, '284128429591017697', 'No.30 building, 312 028 County Rd, Yanqing District, Beijing, China', '1988-02-06', 0, 0, 'sukyeeku', '2003-09-01', 'sukyeeku8', '2012-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS831697559354', '吕宇宁', 0, '+81 80-3978-1523', 1, '832794140638560510', 'Rm. 6, 6-1-16, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1985-03-30', 0, 0, 'luy', '2009-01-07', 'lu7', '2021-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS381852556217', '任睿', 1, '+81 90-8255-8639', 2, '583224214232831150', '28F, 4 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-11-23', 0, 0, 'rui41', '2005-05-28', 'ruire', '2020-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS079594031304', '胡致远', 1, '+86 755-4222-7667', 1, '888341897564058837', 'No.7 building, 316 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1992-02-18', 0, 0, 'zhu1114', '2010-01-26', 'huzhiyuan', '2017-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS040117234256', '李頴璇', 0, '+81 74-672-2815', 2, '175851185454239007', '日本ならし学園南三丁目9番4号41階', '1985-07-24', 0, 0, 'wingsuenlee10', '2021-12-29', 'leews52', '2015-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS197680213635', '周致远', 0, '+1 330-234-7935', 1, '304703760288116863', '9 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1987-07-09', 0, 0, 'zhiyuan515', '2001-07-27', 'zhou4', '2011-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS213936080397', '佐野涼太', 1, '+86 146-6259-5898', 2, '249462745659158725', '中国成都市成华区双庆路994号44栋', '1994-05-20', 0, 0, 'ryosan', '2009-04-18', 'sanoryo', '2016-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS142150509714', '松井架純', 1, '+81 66-834-3760', 3, '934345211049865522', '日本おおさかし西成区出城一丁目1番13号33階', '1996-02-27', 0, 0, 'kasumi5', '2010-07-21', 'matsui601', '2021-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS159294627516', '郝岚', 0, '+44 (161) 383 5976', 1, '547130535443850879', 'Block 6, 668 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1994-10-02', 0, 0, 'lahao', '2014-01-04', 'lahao', '2013-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS620275554117', '謝淑怡', 1, '+1 330-003-7001', 1, '944372734381840882', '321 West Market Street Apt 5, Akron, OH 44333, United States', '1998-06-19', 0, 0, 'sukyeets63', '2002-07-26', 'tsesukyee1206', '2003-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS148108759337', '曾安琪', 1, '+86 197-7642-8110', 1, '122247434080327905', '中国深圳罗湖区田贝一路856号32室', '1991-11-15', 0, 0, 'anqz8', '2022-01-20', 'zenan226', '2001-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS303130935677', '小島健太', 1, '+86 152-7043-0573', 1, '242591682393091537', '37F, 291 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1990-11-05', 0, 0, 'kentakojima', '2019-10-04', 'kojkenta4', '2018-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS002010507645', 'Amy Ferguson', 0, '+81 74-431-6435', 4, '343279316885886152', 'Rm. 11, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-05-30', 0, 0, 'af316', '2020-10-02', 'fergusonamy', '2000-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS429874496034', '加藤詩乃', 1, '+86 142-7596-7207', 1, '218322497925693888', '中国广州市白云区机场路棠苑街五巷643号华润大厦45室', '1988-08-15', 0, 0, 'katoshino', '2016-12-28', 'kato5', '2020-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS703385231092', '朱安琪', 1, '+86 10-266-8131', 1, '329763149581339587', '23F, 370 Sanlitun Road, Chaoyang District, Beijing, China', '1996-07-13', 0, 0, 'zhua', '2015-03-27', 'anqizhu6', '2004-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS064812721415', '傅岚', 0, '+81 52-566-6815', 2, '835200322430816475', '11F, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1989-11-14', 0, 0, 'lanfu', '2020-08-02', 'lafu59', '2001-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS250114313064', 'Tiffany Grant', 1, '+86 10-3348-9753', 0, '328971012195443623', 'Room 18, CR Building, 627 West Chang''an Avenue, Xicheng District, Beijing, China', '1987-11-19', 0, 0, 'granttiffany908', '2012-09-04', 'granttiffany', '2021-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS806112609203', '萬慧儀', 1, '+1 330-642-0099', 0, '413799434834959162', '732 Ridgewood Road Apartment 45, Akron, OH 44321, United States', '1991-10-25', 0, 0, 'waiyee45', '2014-12-14', 'waiyeem', '2006-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS656685967263', 'Pamela Thompson', 1, '+81 66-710-1681', 3, '280594141699810456', '46F, 3-27-2 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1996-01-04', 0, 0, 'thomppamela816', '2001-08-31', 'thompsonp', '2021-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS526791868381', '曾璐', 1, '+1 212-714-9042', 3, '687607870014720171', '903 Bank Street 3rd Floor, New York, NY 10014, United States', '1990-02-17', 0, 0, 'zenl', '2008-10-24', 'zengl', '2000-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS676388282955', '郑宇宁', 1, '+81 66-685-9591', 0, '804750429929243260', 'Rm. 28, 2-1-10 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1993-05-16', 0, 0, 'zyun826', '2006-01-09', 'zyu', '2004-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS813619988963', '菅原架純', 0, '+81 3-5146-5354', 2, '825809362448446490', 'Rm. 16, 5-2-14 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-06-08', 0, 0, 'kasumisug6', '2009-03-23', 'kasugawara90', '2016-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS524251826582', '任慧嫻', 1, '+44 (116) 789 3509', 1, '616808773002709831', 'No.46 Main building, 885 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-05-04', 0, 0, 'yamwaihan', '2016-09-22', 'yamwaihan4', '2016-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS037395935476', 'Wayne Bennett', 0, '+1 213-936-6461', 1, '171357424140799035', '760 Figueroa Street Apartment 48, Los Angeles, CA 90037, United States', '1987-05-10', 0, 0, 'wayne907', '2018-06-10', 'bennwayn', '2010-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS453007756981', 'Kimberly Lewis', 1, '+86 172-8505-7120', 3, '917448402815389044', 'Room 14, CR Building, 889 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1994-03-18', 0, 0, 'lkimbe', '2006-07-29', 'kimbl', '2021-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS442748532656', '原田花', 1, '+81 90-9875-7985', 3, '415666905550824197', '46-kai, 1-1-15 Deshiro, Nishinari Ward, Osaka, Japan', '1985-06-13', 0, 0, 'hhar', '2020-07-22', 'haha', '2010-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS782920197798', '中村大和', 1, '+81 11-797-7167', 4, '281680741248325935', '16-kai, 2-1-7 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1991-12-01', 0, 0, 'yamato1021', '2006-06-24', 'nyam', '2012-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS281276099914', '山崎玲奈', 1, '+1 330-729-6990', 2, '288182439574780626', '695 Fern Street Apartment 5, Akron, OH 44307, United States', '1996-03-29', 0, 0, 'renayam7', '2016-09-08', 'ryama', '2017-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS583995666669', '石晓明', 0, '+81 90-0917-1231', 2, '789630488437557111', 'Rm. 16, 2-5-8 Chitose, Atsuta Ward, Nagoya, Japan', '1993-11-07', 0, 0, 'shixiaom', '2015-11-14', 'xshi', '2002-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS970898573075', 'Aaron Washington', 0, '+86 28-302-2899', 1, '642049734596243985', '中国成都市锦江区人民南路四段636号23号楼', '1992-11-09', 0, 0, 'aaronw63', '2001-05-11', 'washingtonaa404', '2012-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS906918968159', '林陸', 1, '+1 718-947-7771', 2, '228005404834828890', '494 1st Ave Apt 5, Brooklyn, NY 11220, United States', '1998-07-08', 0, 0, 'har', '2022-01-28', 'hayasrik2', '2005-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS779734966774', '严詩涵', 0, '+81 70-2136-6959', 3, '385750700102518783', '日本ならし大和郡山市本庄町一丁目1番12号6号室', '1991-10-25', 0, 0, 'yanshihan', '2003-11-17', 'shihany917', '2008-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS029756721222', '張學友', 0, '+81 3-2532-4558', 2, '665085601199758723', '10F, 3-15-14 Ginza, Chuo-ku, Tokyo, Japan', '1988-12-26', 0, 0, 'hyc', '2002-01-18', 'hokyau61', '2001-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS698351689714', 'Carlos Mills', 1, '+1 838-256-6912', 2, '140314986195635514', '307 Central Avenue Apartment 28, Albany, NY 12206, United States', '1997-07-09', 0, 0, 'millsc', '2008-10-19', 'cm11', '2014-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS086005363018', '吕致远', 0, '+86 28-663-0065', 3, '545714778362014483', '中国成都市锦江区红星路三段74号48室', '1988-09-21', 0, 0, 'luzhiyu', '2015-11-12', 'luzhiyu', '2000-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS214539947697', '上野美月', 1, '+1 212-780-9453', 2, '170885462347745914', '760 Fifth Avenue Suite 47, New York, NY 10017, United States', '1992-01-24', 0, 0, 'mitsukiueno814', '2005-05-26', 'uem825', '2009-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS310715537734', '韦晓明', 0, '+86 196-9466-2553', 4, '421829811251531107', '中国上海市黄浦区淮海中路895号18号楼', '1995-07-13', 0, 0, 'xiaw1108', '2020-09-23', 'xiaowei06', '2015-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS644003796289', 'Anita Vargas', 0, '+86 755-0626-1463', 2, '608706507019181831', '中国深圳龙岗区布吉镇西环路371号华润大厦16室', '1992-09-02', 0, 0, 'vargasanita8', '2000-01-29', 'vargas54', '2002-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS930343064891', '萧睿', 0, '+81 90-2936-6761', 3, '240113204333363227', '日本札幌中央区宮の森四条六丁目1番20号10階', '1995-02-27', 0, 0, 'ruxia607', '2011-03-01', 'xr2000', '2003-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS365599035900', '侯子异', 1, '+1 614-826-1033', 4, '795920250405075320', '483 East Cooke Road Suite 42, Columbus, GA 43214, United States', '1990-01-27', 0, 0, 'hou1985', '2021-03-31', 'ziyi51', '2008-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS900493942171', '安藤美羽', 1, '+1 838-420-8714', 2, '867282672756095393', '269 State Street Apartment 1, Albany, NY 12203, United States', '1994-02-01', 0, 0, 'ando60', '2004-08-10', 'miuando', '2022-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS893951524665', '岩崎愛梨', 0, '+86 10-7368-3684', 4, '217904087347903643', 'Room 10, 874 Yueliu Rd, Fangshan District, Beijing, China', '1991-03-13', 0, 0, 'iwasakiai', '2003-02-14', 'iairi', '2016-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS362105759736', 'Shannon Rice', 1, '+81 11-404-5563', 1, '157230013718263650', '6-kai, 5-19-20 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1995-06-19', 0, 0, 'riceshannon', '2002-06-03', 'shr6', '2015-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS877463794585', '山崎陸', 1, '+44 5830 291441', 1, '976511360212684503', 'Unit 35, Oxford Eco Centre, 244 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1993-01-27', 0, 0, 'yamazakiriku', '2014-03-30', 'riku51', '2007-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS621895790752', 'Alice Young', 1, '+1 330-063-8051', 3, '161086484948719596', '884 Riverview Road Suite 8, Akron, OH 44313, United States', '1985-08-12', 0, 0, 'ya74', '2007-01-14', 'yalice', '2013-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS555263678773', '金子葵', 0, '+44 (20) 1610 9014', 4, '794031942395220949', 'Block 35, 417 Maddox Street, London, W1S 1PU, United Kingdom', '1987-12-21', 0, 0, 'aoikaneko302', '2004-08-26', 'kaneko1', '2017-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS495383560667', '村上七海', 0, '+86 28-753-1956', 3, '005073974555048142', '中国成都市成华区二仙桥东三路749号14楼', '1991-12-31', 0, 0, 'murakaminanami', '2013-10-20', 'mn717', '2007-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS247700196382', '今井優奈', 0, '+81 3-0975-0435', 2, '203904525900479430', '日本東京千代田区丸の内一丁目6番11号32号室', '1997-01-17', 0, 0, 'yunai', '2018-10-13', 'imai501', '2012-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS193717648097', 'Ann Rice', 1, '+44 5981 623932', 1, '923945527062315912', 'Unit 9, Oxford Eco Centre, 288 New Street, Birmingham, B2 4DB, United Kingdom', '1990-03-05', 0, 0, 'arice', '2012-03-17', 'riceann05', '2003-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS746153856377', '中野詩乃', 1, '+1 718-859-5108', 1, '990587857953650282', '435 Columbia St Apartment 44, Brooklyn, NY 11231, United States', '1989-11-11', 0, 0, 'nakanoshino7', '2018-03-16', 'nakanoshi', '2019-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS083419887418', '馬永權', 0, '+44 (161) 720 3250', 2, '494256300064093408', 'Flat 36, 241 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-03-26', 0, 0, 'ma613', '2003-10-24', 'wingkuen05', '2000-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS625055504202', 'Willie Murphy', 1, '+1 718-973-4071', 2, '467881063742670721', '748 Flatbush Ave Suite 23, Brooklyn, NY 11225, United States', '1998-07-09', 0, 0, 'willie89', '2021-10-14', 'williemurphy', '2015-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS569021882417', '鄭俊宇', 0, '+1 312-276-8594', 3, '359674714976057345', '658 Pedway Suite 30, Chicago, IL 60601, United States', '1994-12-28', 0, 0, 'cyc', '2001-06-14', 'cheng10', '2015-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS577274487221', '杜宇宁', 1, '+86 28-2156-6113', 2, '906116946189575775', '中国成都市成华区玉双路6号719号18栋', '1998-12-19', 0, 0, 'yundu', '2001-09-04', 'duyunin', '2018-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS342660938156', '藤井蒼士', 0, '+1 312-502-1943', 4, '110930313804873681', '30 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1997-04-03', 0, 0, 'aoshi85', '2002-06-16', 'aoshifuji', '2009-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS290414877373', '小林拓哉', 0, '+44 7645 777492', 1, '140852098856970523', 'Block 3, 874 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1998-12-05', 0, 0, 'ktak5', '2010-10-08', 'takuya8', '2006-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS191298080787', 'Nancy Smith', 0, '+1 213-176-0102', 3, '248898615904988515', '402 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1987-06-03', 0, 0, 'smithn6', '2007-06-01', 'nsmith', '2002-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS442675075759', '朱璐', 0, '+86 144-0909-1254', 2, '248521160067494253', '中国北京市延庆区028县道141号26楼', '1995-08-13', 0, 0, 'zhl74', '2011-02-19', 'zhu4', '2003-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS336003797126', 'Crystal Flores', 0, '+81 52-300-1594', 2, '808282210367438077', '25-kai, 3 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1985-11-16', 0, 0, 'crystflore8', '2005-03-21', 'flores113', '2009-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS724142565023', '于杰宏', 0, '+86 760-274-8446', 3, '206269887676290011', 'Room 45, CR Building, 96 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1985-06-30', 0, 0, 'yu1027', '2012-06-10', 'yjie', '2010-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS866015599921', '韩嘉伦', 0, '+86 164-2756-8002', 2, '055235125584999513', '中国成都市成华区玉双路6号743号22号楼', '1992-08-10', 0, 0, 'han15', '2004-10-17', 'jialunha', '2018-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS913831467705', '高橋湊', 0, '+44 5599 208041', 2, '265181222644930353', 'Unit 13, Oxford Eco Centre, 273 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1991-10-07', 0, 0, 'mitakahashi', '2019-03-22', 'takminato', '2004-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS646041964750', '丸山海斗', 1, '+81 70-0397-6941', 3, '686359311204576462', '22F, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1986-04-01', 0, 0, 'maruyamak', '2014-04-20', 'maruyamakaito92', '2006-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS791857555501', 'Sherry Tran', 0, '+86 769-854-8415', 2, '614085584127081713', '21F, 311 Kengmei 15th Alley, Dongguan, China', '1995-09-29', 0, 0, 'sherry10', '2008-04-16', 'shetr9', '2019-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS170912012649', '佐野七海', 1, '+86 755-287-3143', 3, '614951643572262236', '中国深圳福田区景田东一街559号41栋', '1988-08-21', 0, 0, 'nasano68', '2020-04-24', 'sannanami98', '2006-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS929916021995', '甘家文', 1, '+86 190-5152-7262', 1, '220415672697000269', '中国北京市延庆区028县道418号24楼', '1998-03-05', 0, 0, 'kmkam01', '2007-12-27', 'kamankam', '2010-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS887245643526', 'Joshua West', 1, '+1 213-300-5934', 2, '955685865819532189', '342 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1988-03-01', 0, 0, 'wejoshua', '2009-07-17', 'joshuwest', '2016-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS636203447436', '吳明詩', 0, '+81 3-0662-1464', 3, '689227281788538098', '日本東京港区東新橋一丁目5番18号34号室', '1991-12-28', 0, 0, 'msng9', '2007-08-19', 'mingszeng1', '2002-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS470107836019', 'Lucille White', 1, '+1 213-775-3961', 4, '726524751560218552', '420 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1987-06-17', 0, 0, 'whitelucille', '2020-06-25', 'lucillewh', '2018-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS731253429349', '邵宇宁', 1, '+86 10-4305-3619', 1, '599993735677314373', '14F, 58 FuXingMenNei Street, XiCheng District, Beijing, China', '1997-10-25', 0, 0, 'shaoyuning9', '2021-08-07', 'yunins', '2003-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS587479998089', '林架純', 1, '+86 183-9749-5382', 0, '547732407425969818', 'No.32 building, No.637, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1998-05-25', 0, 0, 'hayashi422', '2008-11-03', 'khayas1959', '2003-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS213726695288', '黎惠敏', 0, '+86 192-4205-7916', 4, '723811287067891462', 'No.37 building, 18 Kengmei 15th Alley, Dongguan, China', '1985-01-07', 0, 0, 'laiwaima', '2013-12-09', 'lawm', '2021-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS517731519936', '洪俊宇', 0, '+86 179-4800-4808', 0, '031485754890998071', 'Room 17, CR Building, 918 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1987-11-26', 0, 0, 'hungchunyu8', '2018-11-17', 'hucy818', '2001-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS601069641200', 'Ray Wells', 0, '+81 52-227-5826', 3, '339619810644853058', '日本なごやし北区楠味鋺三丁目80番9号25階', '1991-06-26', 0, 0, 'raw', '2019-08-10', 'raywells10', '2014-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS893873265739', 'Connie Morgan', 1, '+81 52-415-7391', 3, '346522934828534694', 'Rm. 11, 2-5-17 Chitose, Atsuta Ward, Nagoya, Japan', '1993-10-29', 0, 0, 'mc416', '2012-12-28', 'morganconnie2003', '2016-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS581600480119', 'Patricia Burns', 0, '+86 10-0618-6369', 4, '957990088019993110', '中国北京市朝阳区三里屯路251号33栋', '1988-06-03', 0, 0, 'burnspa', '2002-12-21', 'burnspatr614', '2008-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS914645246844', '有村舞', 1, '+1 718-565-4387', 1, '443288849105643862', '967 Columbia St Apartment 31, Brooklyn, NY 11231, United States', '1986-04-05', 0, 0, 'maiarim', '2020-03-08', 'arimura527', '2017-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS132042755820', '鈴木海斗', 0, '+81 52-853-5107', 1, '898148571267571795', '16-kai, 7 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-11-12', 0, 0, 'suzuki18', '2010-04-02', 'ksuzu', '2002-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS126473044967', 'John White', 1, '+81 3-7885-4388', 1, '196791468293598883', '日本東京渋谷区代々木二丁目3番8号21号室', '1992-05-18', 0, 0, 'jwhite', '2007-05-23', 'white48', '2020-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS738463136124', '小島美月', 1, '+81 70-6829-4415', 3, '074864174160327402', '日本札幌中央区宮の森四条六丁目1番7号50号室', '1996-08-20', 0, 0, 'kojima915', '2006-05-03', 'mitsukikoji1940', '2019-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS967842072148', '陶震南', 0, '+81 90-6331-1274', 3, '880443648205343689', '22-kai, 2-3-6 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-08-09', 0, 0, 'tazhennan1123', '2013-02-01', 'zhta', '2015-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS007228502162', '林致远', 1, '+1 213-194-7300', 1, '768843456031122651', '724 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1998-03-18', 0, 0, 'zhiyli50', '2021-11-08', 'zhiyuanlin', '2000-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS711726210986', '阮頴璇', 0, '+86 20-8113-6531', 2, '929827728344066161', 'No.20 building, 802 Xiaoping E Rd, Baiyun , Guangzhou, China', '1994-05-18', 0, 0, 'yuen1', '2005-10-24', 'yuen5', '2014-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS143292012353', '崔永發', 0, '+81 3-6082-1723', 3, '379977709206389959', '日本東京渋谷区代々木二丁目3番13号21階', '1990-02-12', 0, 0, 'chowi514', '2016-07-30', 'choiwf', '2017-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS223943055280', '區安娜', 1, '+44 (151) 345 6051', 4, '075076071336649486', 'Block 35, 941 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1988-05-07', 0, 0, 'onau48', '2010-12-04', 'aonna66', '2002-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS282878466043', '许晓明', 1, '+86 755-3249-6521', 1, '213586262511089966', '中国深圳福田区景田东一街494号34楼', '1990-10-05', 0, 0, 'xuxiaoming', '2013-11-17', 'xiaoming2', '2019-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS039763714987', '千葉湊', 0, '+44 (1865) 19 8855', 3, '801320976407233728', 'Flat 33, 382 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1991-09-07', 0, 0, 'minato3', '2011-11-18', 'minachiba', '2011-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS038240260070', '姜詩涵', 0, '+44 7540 109790', 4, '569447405867579154', 'Unit 16, Oxford Eco Centre, 85 Regent Street, London, W1B 2LX, United Kingdom', '1988-04-07', 0, 0, 'jiangs', '2010-08-20', 'jiashihan', '2016-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS628764442478', '姜杰宏', 0, '+81 52-876-3015', 1, '629524602130161117', '15F, 4 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1987-10-04', 0, 0, 'jiejian', '2001-11-27', 'jiehjiang7', '2014-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS270255284968', 'Peter Long', 0, '+81 70-0911-7245', 1, '846183011809094919', '日本札幌豊平区豊平三条十三丁目3番15号34号室', '1996-10-05', 0, 0, 'peterlong', '2020-04-12', 'pelong', '2001-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS862167748909', '陆子异', 1, '+86 156-2526-0504', 1, '062946345397534446', 'Room 36, 432 Jiangnan West Road, Haizhu District, Guangzhou, China', '1998-10-19', 0, 0, 'luz1029', '2000-07-09', 'lziyi', '2013-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS823231117413', '莫致远', 1, '+81 74-251-4305', 2, '434765871425399640', '11-kai, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1997-10-16', 0, 0, 'zmo', '2000-05-07', 'mozhiy', '2002-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS645645723385', '任心穎', 0, '+81 74-852-2227', 3, '684415437924001770', '日本ならし大和郡山市本庄町一丁目1番6号13階', '1991-09-02', 0, 0, 'sumwing3', '2000-11-17', 'yam9', '2012-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS205848048694', '丸山詩乃', 0, '+81 52-015-8664', 3, '096542851630565149', '日本なごやし北区楠味鋺三丁目80番14号21号室', '1986-04-21', 0, 0, 'marushino', '2003-07-31', 'shm', '2003-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS262788261236', '高思妤', 0, '+81 3-3196-2385', 1, '559752758528306396', '25-kai, 5-2-12 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1989-12-21', 0, 0, 'sykao', '2011-06-30', 'kao10', '2005-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS012746515264', '市川和真', 0, '+81 11-959-6952', 1, '345629007678152026', '39-kai, 5-4-8 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1988-12-17', 0, 0, 'ichikawa8', '2021-04-19', 'kazumaichik', '2017-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS721991838931', '魏晓明', 0, '+44 (20) 2601 7923', 3, '722903502217681018', 'Block 24, 869 Pollen Street, London, W1S 1NG, United Kingdom', '1989-03-06', 0, 0, 'xiaomingw', '2004-07-12', 'wexiaom', '2019-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS477872495650', '梅富城', 0, '+44 7898 640408', 1, '735105392509272188', 'No.42 Main building, 11 Hanover St, Liverpool, L1 4AF, United Kingdom', '1993-11-08', 0, 0, 'fushingmu', '2004-11-16', 'fushingmu814', '2003-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS547819670128', 'Eleanor Castro', 0, '+1 213-965-9314', 0, '608296923215359456', '295 Wall Street Apartment 8, Los Angeles, CA 90003, United States', '1993-03-13', 0, 0, 'castrele1998', '2002-04-03', 'castroeleanor8', '2009-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS880490838991', '原田花', 1, '+86 20-980-4569', 3, '862225879872517573', '中国广州市海珠区江南西路989号华润大厦17室', '1986-09-14', 0, 0, 'hahar', '2009-04-14', 'hana130', '2017-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS512123275266', 'Julia Lopez', 0, '+86 755-2759-3808', 1, '628985416179571074', 'No.27 building, 506 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1998-11-11', 0, 0, 'jullop76', '2014-03-31', 'lopez5', '2012-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS145789516667', '崔家玲', 1, '+81 70-7390-7941', 3, '044293327200334799', '42-kai, 2-3-11 Yoyogi, Shibuya-ku, Tokyo, Japan', '1998-05-20', 0, 0, 'kalingchoi9', '2013-10-23', 'kaling2003', '2017-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS448401180688', 'Walter Wallace', 0, '+1 213-168-7340', 4, '440994726052307933', '311 Sky Way Apt 25, Los Angeles, CA 90043, United States', '1987-05-18', 0, 0, 'wallaw', '2006-09-05', 'wallace9', '2013-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS929197663039', '安藤蒼士', 1, '+81 11-400-8834', 1, '246246151222006923', 'Rm. 29, 5-19-19 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-04-27', 0, 0, 'aoshi9', '2001-12-31', 'andaoshi1222', '2021-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS289716103251', '程秀英', 0, '+81 11-710-5856', 4, '973590614157402755', '33-kai, 5-19-15 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1996-08-01', 0, 0, 'xiuycheng1993', '2004-10-25', 'xcheng518', '2010-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS960481410484', 'Rodney Hunter', 1, '+86 10-860-3049', 3, '723330522614404613', 'Room 45, CR Building, 720 Yueliu Rd, Fangshan District, Beijing, China', '1989-07-15', 0, 0, 'rodh', '2001-09-29', 'hunterrodne', '2000-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS044257394985', '福田陸', 0, '+86 28-261-4098', 2, '390252270662854786', 'Room 34, No. 246, Shuangqing Rd, Chenghua District, Chengdu, China', '1985-03-24', 0, 0, 'riku1', '2013-04-23', 'fukuriku', '2002-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS946064119804', '黃天榮', 1, '+1 614-729-7264', 1, '415218573008572184', '555 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1988-11-30', 0, 0, 'wtinwing1203', '2010-05-18', 'twwong', '2009-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS575337375179', '吴宇宁', 0, '+81 70-8680-0915', 2, '665440981984997373', '日本なごやし北区清水三丁目19番8号2階', '1998-05-11', 0, 0, 'ywu09', '2015-04-20', 'yunwu', '2015-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS296946605989', '唐詠詩', 0, '+81 90-7163-4968', 0, '379690005837630945', '日本なごやし守山区瀬古東二丁目171番5号14階', '1993-07-11', 0, 0, 'tongwingsze1968', '2021-07-02', 'tongwingsze4', '2001-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS434543260126', '岡田大輔', 0, '+44 7493 275567', 1, '850329309929281965', 'Block 24, 306 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1993-11-24', 0, 0, 'daisuke10', '2007-10-20', 'oda', '2021-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS218083649322', 'Kathy Shaw', 1, '+81 70-2989-3650', 0, '086060457010374610', '33-kai, 3-9-5 Gakuenminami, Nara, Japan', '1995-11-06', 0, 0, 'sk411', '2007-01-02', 'katshaw', '2006-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS111614692240', '陶睿', 0, '+1 614-782-5445', 3, '919240345362763176', '135 Wicklow Road Suite 14, Columbus, GA 43204, United States', '1993-11-07', 0, 0, 'ruitao', '2014-03-06', 'taru', '2012-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS634924426927', 'Grace Howard', 0, '+81 66-984-0600', 2, '728958061035263011', '32F, 2-1-17 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1992-05-10', 0, 0, 'hogr404', '2016-11-22', 'howagrace5', '2013-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS354159081777', '孙致远', 1, '+1 838-126-2508', 1, '000981643206581974', '217 Broadway Apartment 31, Albany, NY 12207, United States', '1998-04-16', 0, 0, 'sunzhiyuan1124', '2004-01-30', 'sz1972', '2019-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS515982486517', '于睿', 1, '+86 10-5696-9825', 3, '728670040508297329', '中国北京市东城区东单王府井东街796号华润大厦17室', '1996-09-19', 0, 0, 'yrui', '2007-03-30', 'ryu', '2008-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS172375039243', '夏子异', 0, '+81 90-5987-0197', 4, '254749698425177808', 'Rm. 29, 5 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1989-12-23', 0, 0, 'ziyix219', '2021-12-23', 'xiaziyi', '2013-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS576494470030', 'Maria Smith', 0, '+1 212-788-3236', 2, '959367342405016547', '459 Canal Street Apartment 10, New York, NY 10013, United States', '1992-09-10', 0, 0, 'smithmaria', '2018-11-02', 'smith46', '2010-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS374280634423', 'Debra Patterson', 0, '+1 614-598-0652', 3, '082883220470613722', '417 East Alley Suite 4, Columbus, GA 43201, United States', '1985-11-06', 0, 0, 'depatterson9', '2018-11-22', 'debrapatterson', '2012-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS322849849694', '孙晓明', 0, '+81 66-737-9183', 1, '550706532983041981', '4F, 2-1-3 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-10-13', 0, 0, 'sunx2', '2002-09-10', 'xiaomingsun', '2011-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS619939331315', '高木美咲', 0, '+81 90-1633-4078', 0, '987335829157725641', '日本ならし西大寺赤田町一丁目7番14号35階', '1996-01-05', 0, 0, 'mistakagi', '2012-10-10', 'takagi2', '2001-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS068291668964', '邵詩君', 1, '+44 (116) 768 0264', 2, '979401273088706628', 'Block 7, 734 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1997-07-07', 0, 0, 'siusk', '2001-11-10', 'szekwansiu', '2010-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS479275073374', '清水彩乃', 0, '+81 90-5431-6777', 3, '107969773702326946', 'Rm. 23, 5-2-12 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-06-11', 0, 0, 'shimizuayano', '2014-05-05', 'saya3', '2013-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS692280144342', '尹安琪', 0, '+86 180-6852-9562', 4, '289857662540146839', '中国北京市海淀区清河中街68号268号39号楼', '1987-01-23', 0, 0, 'yina708', '2017-06-14', 'anqiy403', '2020-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS981341933388', '菊地海斗', 1, '+44 7290 981520', 1, '169977296066419754', 'Unit 16, Oxford Eco Centre, 576 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1990-03-13', 0, 0, 'kikuchi3', '2011-09-23', 'kikuchi1', '2001-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS049353896643', '林璐', 0, '+81 90-6933-5036', 2, '220709098705934377', '日本おおさかし西成区天神ノ森二丁目1番19号7階', '1988-02-09', 0, 0, 'linlu', '2004-12-11', 'lulin', '2011-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS218074148383', '今井樹', 0, '+44 (1865) 79 8855', 4, '190207240369412388', 'Flat 50, 613 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1993-12-29', 0, 0, 'imi7', '2013-12-15', 'itimai20', '2000-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS578040740369', 'Eleanor Reynolds', 1, '+81 52-961-9885', 3, '917035399219113420', '15-kai, 4 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-02-07', 0, 0, 'erey80', '2020-08-29', 'reynolds9', '2010-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS061294215551', '佐々木大輔', 1, '+44 (151) 199 8547', 1, '663444402963709418', 'No.46 Main building, 840 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1993-03-22', 0, 0, 'sasakidaisuke', '2012-09-02', 'daisukesasaki18', '2004-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS606506357558', '汪秀文', 1, '+81 11-617-9843', 3, '418854500893637373', '日本札幌中央区宮の森四条六丁目1番11号31階', '1990-06-08', 0, 0, 'wsm', '2009-10-16', 'wong624', '2014-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS872510200247', '許仲賢', 0, '+81 70-6188-0035', 1, '295072822936314337', 'Rm. 5, 1-5-20, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-07-05', 0, 0, 'chunhui', '2007-04-20', 'chunghui5', '2014-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS087201204867', 'Barry Powell', 1, '+1 718-866-2947', 2, '618691326404369697', '181 1st Ave Apt 6, Brooklyn, NY 11220, United States', '1993-07-12', 0, 0, 'powellba', '2017-01-25', 'powell1', '2017-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS076549118952', '孔秀英', 0, '+86 192-5329-5142', 0, '177214190762726010', '中国深圳罗湖区田贝一路201号45楼', '1986-10-28', 0, 0, 'xiukong', '2014-07-22', 'kong718', '2018-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS909563740336', '小島花', 0, '+81 52-487-3712', 3, '587768943741987849', '7-kai, 14 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1988-11-04', 0, 0, 'hanakojima', '2012-05-14', 'hanakojima', '2002-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS802737932671', 'Herbert Rice', 1, '+81 90-4487-9213', 1, '987917753554265341', '日本おおさかし東住吉区東田辺三丁目27番14号21号室', '1999-02-23', 0, 0, 'rh62', '2007-06-17', 'herbrice', '2001-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS799345823246', '田國賢', 0, '+86 20-782-7859', 2, '506286893905492172', 'No.23 building, 384 Tianhe Road, Tianhe District, Guangzhou, China', '1995-12-05', 0, 0, 'tin45', '2016-06-13', 'kwokyint', '2010-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS069925160357', '姜秀英', 0, '+81 80-0306-6062', 0, '839454134906109142', '5F, 3 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-04-12', 0, 0, 'jiangxiuying', '2013-09-29', 'jiangxiuy', '2000-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS509687835690', 'Julia Garcia', 0, '+81 11-125-3121', 0, '378795365297061128', '27F, 6-1-18, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1986-03-19', 0, 0, 'jgarcia55', '2000-11-29', 'garcijulia930', '2012-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS134510856502', '文惠敏', 1, '+86 755-101-5237', 2, '448529310843955630', '19F, 886 Jingtian East 1st St, Futian District, Shenzhen, China', '1992-09-16', 0, 0, 'manwm4', '2020-05-22', 'waimanman', '2002-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS441195045015', '卢睿', 0, '+44 (1865) 08 9996', 0, '509017713007698137', 'No.22 Main building, 313 Park End St, Oxford, OX1 1JD, United Kingdom', '1998-06-03', 0, 0, 'rlu6', '2003-08-29', 'lurui', '2018-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS026686072899', '陈杰宏', 1, '+86 176-4374-9490', 1, '722997114786800382', 'No.14 building, 458 Middle Huaihai Road, Huangpu District, Shanghai, China', '1993-05-07', 0, 0, 'cjiehong47', '2000-09-27', 'jiehong2', '2017-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS626944475229', '菅原蓮', 1, '+1 718-738-7184', 2, '574408859395523889', '426 Columbia St Suite 48, Brooklyn, NY 11231, United States', '1993-08-11', 0, 0, 'rsu810', '2015-08-04', 'sugawararen', '2000-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS993255219571', '狄頴璇', 0, '+81 52-299-7095', 3, '230357298511840972', '日本なごやし瑞穂区河岸町四丁目20番16号16階', '1992-07-22', 0, 0, 'wsti', '2015-11-13', 'wst9', '2008-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS335669397267', 'Randy Coleman', 1, '+44 (116) 614 1335', 2, '805632283677177552', 'Block 4, 800 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1993-06-17', 0, 0, 'randycoleman122', '2014-03-17', 'coleman401', '2019-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS928194121997', '羅麗欣', 1, '+1 213-964-6713', 4, '103094331422929048', '49 Sky Way Apt 4, Los Angeles, CA 90043, United States', '1998-09-10', 0, 0, 'laiyan53', '2001-01-04', 'lo908', '2001-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS180996849053', 'Gloria James', 0, '+81 80-9700-9045', 3, '873455033862886707', '日本東京品川区東五反田五丁目2番15号23階', '1987-02-28', 0, 0, 'gjam9', '2021-08-09', 'jagl', '2011-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS560898045515', 'Norman Castro', 1, '+81 90-9181-9574', 1, '814028507305885110', '日本おおさかし平野区加美東四丁目9番5号9階', '1994-08-04', 0, 0, 'normancastro', '2014-10-23', 'castrn', '2011-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS822712682581', '崔安琪', 0, '+81 52-060-1308', 3, '323213013943196523', '5-kai, 2-5-9 Chitose, Atsuta Ward, Nagoya, Japan', '1994-07-12', 0, 0, 'anqicui00', '2010-12-18', 'cuianqi626', '2010-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS992966653852', '遠藤明菜', 0, '+1 213-100-9023', 0, '940938526796130905', '328 Figueroa Street Apt 48, Los Angeles, CA 90037, United States', '1986-07-30', 0, 0, 'akina1984', '2015-03-24', 'enakina914', '2010-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS670588175854', 'Tiffany Simpson', 1, '+44 7585 221257', 3, '430053674939338898', 'Unit 9, Oxford Eco Centre, 604 Mosley St, Manchester, M2 3AQ, United Kingdom', '1985-06-13', 0, 0, 'tiffany3', '2004-05-07', 'sitiffany7', '2016-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS583426388920', 'Esther Kennedy', 1, '+81 80-3227-7153', 1, '153968675058654800', '35F, 3-19-6 Shimizu, Kita Ward, Nagoya, Japan', '1995-03-21', 0, 0, 'kennedyesther', '2016-01-10', 'estheke1226', '2003-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS572128348693', '三浦拓哉', 1, '+44 (116) 633 2894', 1, '195629363583766678', 'Unit 28, Oxford Eco Centre, 523 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1985-03-18', 0, 0, 'miurtak', '2009-08-26', 'takuymiura49', '2009-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS697033446611', '菅原悠人', 0, '+81 11-535-7097', 1, '501691939829726561', '日本札幌清田区真栄四条五丁目19番5号20階', '1992-05-18', 0, 0, 'yutsug1', '2018-06-24', 'yuto306', '2009-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS612482301914', '杜璐', 1, '+1 213-416-1312', 3, '766633480329633173', '918 Figueroa Street Apt 20, Los Angeles, CA 90037, United States', '1993-06-08', 0, 0, 'ldu', '2003-01-06', 'ldu', '2015-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS729624177274', 'Bernard Morgan', 0, '+86 175-0709-0060', 4, '072733105459042635', '中国北京市西城区西長安街995号27号楼', '1998-08-25', 0, 0, 'bernardmorgan1995', '2019-04-28', 'morganbernard', '2008-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS307168315016', '陆嘉伦', 0, '+86 142-8917-4994', 1, '431939267390999650', '中国深圳福田区景田东一街848号18室', '1992-10-08', 0, 0, 'luj', '2017-12-09', 'luj722', '2014-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS640987103604', '龙杰宏', 0, '+1 614-777-3159', 2, '668953495396433502', '792 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1991-07-24', 0, 0, 'jiehongl', '2021-04-13', 'ljieho', '2005-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS345906253733', '苏嘉伦', 0, '+1 213-793-8752', 1, '333351116063722632', '642 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1989-10-04', 0, 0, 'sujialun', '2017-10-28', 'suj', '2021-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS567974083998', 'Brian Cruz', 0, '+86 138-6912-9576', 3, '569397536449506195', '44F, 780 Huanqu South Street 2nd Alley, Dongguan, China', '1991-06-30', 0, 0, 'brian7', '2021-03-31', 'cruzbrian', '2007-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS829505649373', '武璐', 1, '+44 7040 751095', 1, '263913658471571965', 'Unit 2, Oxford Eco Centre, 960 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1995-02-03', 0, 0, 'lw1', '2013-05-16', 'wulu', '2010-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS918053326083', '宮崎蓮', 0, '+1 330-238-1300', 0, '306996754305022874', '869 West Market Street Suite 37, Akron, OH 44333, United States', '1991-10-13', 0, 0, 'miyaren6', '2016-06-14', 'miyazakiren', '2010-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS716613737587', 'Charles White', 1, '+86 21-4201-2224', 3, '521607421616863191', 'No.38 building, 790 Ganlan Rd, Pudong, Shanghai, China', '1996-03-16', 0, 0, 'charles711', '2017-10-18', 'white7', '2010-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS575489485684', '朱梓晴', 0, '+1 212-630-3279', 2, '380355600071610983', '714 Fifth Avenue Suite 46, New York, NY 10017, United States', '1995-03-10', 0, 0, 'tszchingch', '2013-09-28', 'tszchingchu', '2021-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS770303167897', '太田彩乃', 1, '+1 212-287-9425', 3, '631820121594694163', '3 Wooster Street 3rd Floor, New York, NY 10012, United States', '1997-09-17', 0, 0, 'otaayan', '2010-12-20', 'otayano4', '2017-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS149619937469', '苑國明', 0, '+86 20-422-0112', 0, '714781135737529768', '中国广州市天河区天河路789号17室', '1990-05-15', 0, 0, 'ykwokming923', '2019-03-18', 'ykwokming', '2005-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS629716369774', '谢岚', 1, '+44 5637 963468', 2, '943128572975914817', 'Flat 34, 116 Park End St, Oxford, OX1 1JD, United Kingdom', '1994-03-04', 0, 0, 'lan223', '2012-07-10', 'lan7', '2005-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS543495528448', '千葉舞', 1, '+44 (1865) 66 0843', 4, '231516865018145377', 'Block 27, 906 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1998-09-14', 0, 0, 'chibamai', '2013-03-21', 'chibama', '2005-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS783217723106', 'Curtis Garza', 0, '+81 90-5367-3148', 2, '142902028406717762', '4-kai, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-04-16', 0, 0, 'garzcu50', '2005-01-16', 'garza220', '2021-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS885341316477', '郭浩然', 1, '+86 198-8843-0543', 2, '797334521159987713', 'No.10 building, 187 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1985-08-06', 0, 0, 'hykwok', '2011-11-01', 'hykwok', '2014-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS950506214999', '森田樹', 1, '+81 70-6138-3007', 2, '316691856830200631', '日本おおさかし平野区加美東四丁目9番7号6階', '1986-05-03', 0, 0, 'moritai', '2006-02-10', 'itsuki47', '2011-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS069361678262', 'Charlotte Chen', 0, '+86 21-527-9522', 3, '135924750895653774', 'No.9 building, 689 Jianxiang Rd, Pudong, Shanghai, China', '1990-04-18', 0, 0, 'chencharlotte5', '2006-04-16', 'chen8', '2004-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS758653057490', '薛秀英', 0, '+86 196-4530-0576', 1, '617420428523592390', '中国北京市朝阳区三里屯路118号30楼', '1993-06-09', 0, 0, 'xuexiuying7', '2021-10-22', 'xxue1973', '2010-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS397274219699', 'Eleanor Wilson', 1, '+86 165-9899-9212', 3, '526882934897885728', '3F, 956 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1992-03-21', 0, 0, 'welea2', '2019-02-18', 'eleawils7', '2018-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS404122804472', '李國權', 0, '+81 90-1119-8918', 3, '166681400685128908', 'Rm. 21, 2-3-20 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-07-12', 0, 0, 'leekk', '2011-04-04', 'leekwokkuen', '2011-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS071225863270', '罗秀英', 1, '+1 838-469-5432', 3, '996019792113219661', '663 Lark Street Suite 12, Albany, NY 12210, United States', '1985-11-29', 0, 0, 'luo331', '2014-07-22', 'luoxiuying', '2015-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS030752584068', '崔詠詩', 1, '+1 213-033-8951', 3, '607201180538243528', '154 Figueroa Street Apt 31, Los Angeles, CA 90037, United States', '1993-09-26', 0, 0, 'chwingsze10', '2014-10-22', 'wsc', '2015-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS259282308822', '傅杰倫', 0, '+81 70-9088-4472', 2, '807727748972132623', '15F, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1994-08-25', 0, 0, 'fuch', '2006-02-08', 'chiehlun7', '2002-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS944390218244', '高詩君', 1, '+86 755-946-5261', 0, '517117933150815892', 'No.26 building, 973 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1991-06-17', 0, 0, 'szeka', '2008-06-21', 'kaosk927', '2007-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS933970170936', '孟安琪', 0, '+86 165-3071-5500', 1, '216661141855183830', '7F, 956 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1985-12-05', 0, 0, 'anqi9', '2012-04-18', 'menga3', '2013-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS559963120879', '張仲賢', 0, '+44 5218 383854', 2, '517636296369035177', 'Unit 31, Oxford Eco Centre, 556 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1993-11-07', 0, 0, 'chungyinc7', '2013-01-14', 'checy', '2002-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS402139511070', '郝璐', 1, '+86 175-2092-1707', 0, '078282930227203549', '中国广州市海珠区江南西路690号24栋', '1993-08-15', 0, 0, 'lu10', '2008-06-25', 'lu3', '2004-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS514522279106', '樂仲賢', 0, '+1 213-437-1824', 1, '824976276773215885', '824 Alameda Street Apartment 32, Los Angeles, CA 90002, United States', '1993-05-29', 0, 0, 'cylok10', '2003-10-31', 'cylo', '2016-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS026224166185', '加藤桜', 1, '+81 66-001-8721', 4, '981603943262948665', 'Rm. 16, 4-9-5 Kamihigashi, Hirano Ward, Osaka, Japan', '1995-01-31', 0, 0, 'sakura731', '2003-07-27', 'sakukato1957', '2014-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS027663105118', '加藤架純', 0, '+86 136-1200-5259', 0, '140871244483864000', '中国中山紫马岭商圈中山五路365号38栋', '1998-06-19', 0, 0, 'kasumi98', '2009-07-05', 'kato2014', '2007-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS943680237915', '邱永發', 1, '+44 (121) 775 3952', 0, '745433533406854755', 'Flat 22, 267 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1997-11-04', 0, 0, 'wfya', '2018-09-25', 'wingfatyau618', '2004-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS579663465954', '松本海斗', 1, '+44 (1223) 46 9550', 2, '845269890642104514', 'Block 36, 42 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1986-02-20', 0, 0, 'matkaito', '2006-03-12', 'matskai81', '2018-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS383544764840', '廖宇宁', 1, '+1 213-031-7736', 2, '994711524985100756', '299 S Broadway Suite 21, Los Angeles, CA 90015, United States', '1994-07-28', 0, 0, 'yliao', '2012-10-09', 'liao519', '2021-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS293359230526', '卢子韬', 0, '+86 10-5172-6953', 3, '213813221639924585', '中国北京市西城区复兴门内大街531号2室', '1985-08-08', 0, 0, 'zitaolu77', '2021-07-26', 'lzitao205', '2006-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS889213346328', '朱永權', 1, '+86 755-0646-6534', 1, '610448852512205246', 'Room 3, 769 Jingtian East 1st St, Futian District, Shenzhen, China', '1998-10-09', 0, 0, 'cwing', '2017-05-28', 'cwingkuen', '2002-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS998935260361', '小川結翔', 0, '+86 151-3850-6843', 0, '482850341309874889', '中国深圳罗湖区田贝一路97号37楼', '1991-08-13', 0, 0, 'yuito1948', '2015-11-26', 'yuitoogawa731', '2003-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS154494923154', '沈子异', 1, '+86 755-004-8145', 3, '208711204550756116', '中国深圳龙岗区布吉镇西环路341号11室', '1991-12-25', 0, 0, 'ziysh2', '2020-05-26', 'szi507', '2011-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS984823281637', 'Sheila Murray', 1, '+81 90-7308-5670', 2, '819046279720007206', '日本札幌白石区菊水三条五丁目4番12号37階', '1995-03-18', 0, 0, 'musheila', '2013-05-08', 'mus', '2011-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS832963304917', 'Larry Evans', 0, '+44 5841 888874', 4, '498586090114743996', 'Block 10, 918 Redfern St, Liverpool, L20 8JB, United Kingdom', '1985-11-21', 0, 0, 'evanla72', '2004-10-26', 'evanslarr', '2019-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS856871120422', '中森大和', 1, '+86 10-8621-8307', 4, '500264960499361399', 'Room 6, 512 028 County Rd, Yanqing District, Beijing, China', '1990-11-21', 0, 0, 'ynaka8', '2001-09-07', 'yaman', '2021-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS639742036651', '林慧嫻', 0, '+1 718-649-6460', 2, '531570204642495913', '459 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1995-09-21', 0, 0, 'lamwh', '2000-10-27', 'lamwh', '2013-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS072726370142', '黎慧琳', 0, '+44 5785 660693', 1, '629976721274104256', 'No.47 Main building, 615 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1996-02-13', 0, 0, 'wailamlai', '2021-08-24', 'wllai804', '2012-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS477801492892', '薛永權', 1, '+1 213-597-4382', 1, '676028159090449836', '159 Alameda Street Apartment 16, Los Angeles, CA 90002, United States', '1993-11-27', 0, 0, 'winsit', '2008-07-09', 'sitwingkuen312', '2003-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS163650238595', '増田花', 1, '+86 755-853-0015', 3, '655412436325080043', '19F, 773 Jingtian East 1st St, Futian District, Shenzhen, China', '1991-07-20', 0, 0, 'mash', '2019-06-05', 'mash', '2005-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS664919514575', 'Miguel Weaver', 1, '+86 191-8688-8902', 1, '418768198601561176', '中国中山乐丰六路676号50号楼', '1993-03-04', 0, 0, 'weavermig88', '2016-12-30', 'mweaver107', '2007-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS694636599394', 'Andrea Perry', 1, '+86 28-4097-3331', 0, '902510953975995667', 'No.24 building, 184 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1994-08-15', 0, 0, 'andrea621', '2016-05-23', 'andp', '2010-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS676685217716', '朱子异', 1, '+44 (161) 222 4687', 2, '326631916657883599', 'No.5 Main building, 848 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1998-04-16', 0, 0, 'zhuz85', '2000-01-14', 'ziyi16', '2017-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS785148923065', 'Peggy Ruiz', 0, '+44 5534 379862', 4, '625248823717814452', 'Flat 35, 164 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1992-06-25', 0, 0, 'ruizp10', '2002-01-30', 'peggyru218', '2016-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS203204518106', 'Robin Jordan', 1, '+1 213-559-8275', 0, '785929538564552071', '659 Figueroa Street Apt 36, Los Angeles, CA 90037, United States', '1997-02-20', 0, 0, 'robinj', '2005-01-30', 'jordan75', '2012-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS172216516765', '甘永權', 1, '+86 193-2866-4369', 4, '685355145669472254', '中国深圳龙岗区布吉镇西环路136号华润大厦13室', '1991-04-12', 0, 0, 'kamwk4', '2016-08-04', 'kwk', '2021-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS235624400705', '姜嘉伦', 0, '+44 7735 090217', 1, '985385931929941519', 'Flat 9, 686 Redfern St, Liverpool, L20 8JB, United Kingdom', '1996-12-24', 0, 0, 'jiangjialun3', '2012-10-14', 'jialunjia', '2008-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS306663908354', '張家明', 1, '+81 80-4270-2186', 1, '302793203468139225', 'Rm. 12, 1-7-4 Omido, Higashiosaka, Osaka, Japan', '1992-08-06', 0, 0, 'kmc729', '2020-03-02', 'kmche', '2018-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS501204494426', '近藤愛梨', 0, '+81 52-229-5314', 3, '970252541331249911', '日本なごやし守山区瀬古東二丁目171番7号8階', '1985-09-12', 0, 0, 'akondo', '2008-10-27', 'ka08', '2012-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS914569036694', '近藤彩乃', 0, '+44 7695 355391', 0, '268346841428151821', 'Unit 38, Oxford Eco Centre, 813 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1988-05-27', 0, 0, 'ayanoko', '2005-04-30', 'kondoayano', '2013-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS560854151307', '三浦桜', 1, '+81 80-0002-5519', 0, '686681305664275709', '日本札幌清田区真栄四条五丁目19番19号46階', '1990-06-04', 0, 0, 'sakuramiura', '2004-05-19', 'miurasakura', '2017-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS886723883205', '容秀文', 0, '+1 838-140-1714', 1, '437032667955967948', '541 Central Avenue Suite 3, Albany, NY 12205, United States', '1995-01-26', 0, 0, 'saumany', '2010-03-27', 'smyung9', '2003-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS183159575306', '谢宇宁', 0, '+86 145-8218-0576', 4, '254258243459093739', '中国中山京华商圈华夏街47号17室', '1986-12-30', 0, 0, 'yuning4', '2014-06-01', 'xieyu', '2007-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS745597110188', '伍秀文', 0, '+81 66-950-8907', 1, '835441923752030473', '日本おおさかし西成区天神ノ森二丁目1番2号6号室', '1988-12-27', 0, 0, 'smng07', '2008-08-24', 'ngsauman418', '2009-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS431061220758', 'Leonard Dunn', 0, '+81 66-101-8635', 3, '728721637099004395', '日本おおさかし西成区天神ノ森二丁目1番13号13階', '1995-09-12', 0, 0, 'leondunn', '2013-04-29', 'dunnleona1994', '2009-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS189482337135', '西村陽太', 1, '+44 5694 678901', 3, '074634970282985771', 'Block 49, 863 Hanover Street, London, W1S 1YD, United Kingdom', '1992-06-05', 0, 0, 'yotani1963', '2004-06-27', 'yotanishimura', '2004-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS438241882333', '陶杰宏', 0, '+81 66-862-0072', 0, '347791560949099170', '14F, 2-1-18 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1995-10-17', 0, 0, 'taojiehong', '2012-04-25', 'taj', '2012-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS014626671519', '鄧思妤', 0, '+81 11-262-9664', 0, '087978711526691892', 'Rm. 25, 13-3-7 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1987-08-23', 0, 0, 'szeyu41', '2007-12-26', 'tang1', '2018-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS217865580970', '呂頴璇', 0, '+44 (1865) 33 4494', 2, '506377442554177379', 'Block 36, 135 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1992-08-16', 0, 0, 'luiwin1228', '2008-01-03', 'wslui', '2018-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS417743114408', '山本百恵', 1, '+1 212-280-0424', 2, '463983326766861749', '625 West Houston Street Apartment 29, New York, NY 10014, United States', '1985-12-19', 0, 0, 'momoeyamamoto', '2003-11-28', 'mya', '2006-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS580685005309', '汪子异', 1, '+86 170-7928-8946', 3, '591812004207526950', 'Room 21, CR Building, 391 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1987-03-27', 0, 0, 'ziyi1971', '2003-02-05', 'wang64', '2003-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS729813698004', '小林大輔', 1, '+86 166-4759-7121', 4, '727432885176568574', '中国广州市白云区机场路棠苑街五巷253号42栋', '1995-06-05', 0, 0, 'dak', '2020-08-03', 'kobadaisuke', '2003-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS054526770906', '曹頴璇', 1, '+1 838-456-9864', 1, '164401579546520481', '767 Broadway Suite 21, Albany, NY 12207, United States', '1990-02-22', 0, 0, 'wingsuencho', '2016-08-17', 'cho6', '2003-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS666801818922', '佐野和真', 0, '+81 70-1236-4622', 1, '026254636916010557', '日本おおさかし西成区天神ノ森二丁目1番15号32階', '1994-10-21', 0, 0, 'kazumas', '2015-04-01', 'sano12', '2017-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS156875245419', '千葉美月', 1, '+81 80-9449-9303', 2, '734799557241280120', '4-kai, 3-19-5 Shimizu, Kita Ward, Nagoya, Japan', '1988-04-11', 0, 0, 'chibamitsuki', '2016-02-09', 'mitsuki96', '2013-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS485154577007', '常秀英', 0, '+81 11-689-4446', 4, '387268232425922817', '21F, 2-1-13 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1988-05-17', 0, 0, 'xiuyingcha603', '2019-10-26', 'changx8', '2005-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS000990028423', 'Leonard Jimenez', 0, '+86 144-6674-9346', 2, '405593665384450722', '中国上海市浦东新区橄榄路908号2栋', '1985-08-03', 0, 0, 'leojimenez', '2015-07-16', 'leonajimen', '2017-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS142920259790', '石川蓮', 0, '+44 (161) 373 0972', 1, '618002054082206013', 'Unit 18, Oxford Eco Centre, 178 Mosley St, Manchester, M2 3AQ, United Kingdom', '1990-07-25', 0, 0, 'iren1006', '2021-06-12', 'renishi1981', '2018-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS433516066326', '何富城', 0, '+86 755-073-7258', 2, '446490238945960161', '43F, 775 Shennan Ave, Futian District, Shenzhen, China', '1986-04-12', 0, 0, 'fushingho54', '2009-05-09', 'fushing6', '2001-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS551785262622', '黃德華', 0, '+81 90-3288-5175', 3, '238034377242593010', '27F, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-03-19', 0, 0, 'wongtakwah419', '2003-05-21', 'wongtakwah9', '2017-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS035940218483', 'Roy Alvarez', 0, '+44 5719 852909', 2, '717008850525043804', 'Unit 17, Oxford Eco Centre, 81 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-11-21', 0, 0, 'royalvar', '2005-04-17', 'alvarez9', '2021-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS559547969307', 'Martha Jones', 0, '+81 70-1003-2053', 4, '359725654603576796', '39F, 10 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-01-30', 0, 0, 'jonesma601', '2007-11-26', 'marjones1968', '2014-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS861325979171', '青木葉月', 0, '+81 70-6744-3361', 1, '740480490443492266', 'Rm. 15, 13 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1990-12-25', 0, 0, 'hazukiaoki', '2020-08-07', 'aohaz62', '2004-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS458042988457', '許潤發', 1, '+81 70-4025-6219', 4, '966017045290804196', '日本おおさかし近江堂一丁目7番9号47号室', '1996-12-21', 0, 0, 'yuhui', '2019-01-25', 'yfhui1997', '2000-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS011721677405', 'Jamie Kennedy', 1, '+86 195-9667-4481', 1, '006772263341605341', 'No.39 building, 625 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1988-12-10', 0, 0, 'kjami10', '2011-11-05', 'kennedy810', '2004-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS519322773451', '柴田瑛太', 0, '+44 5520 553666', 2, '434657078079110942', 'Block 1, 951 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1990-06-11', 0, 0, 'eitas604', '2021-06-27', 'eita8', '2014-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS638989952873', '杜頴璇', 1, '+81 74-021-9260', 1, '515348626786339526', '1-kai, 1-7-5 Saidaiji Akodacho, Nara, Japan', '1991-08-18', 0, 0, 'wst', '2016-01-22', 'winto69', '2013-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS398434821173', '陶岚', 0, '+86 760-532-4594', 3, '859371254357304870', '中国中山乐丰六路959号华润大厦27室', '1997-08-26', 0, 0, 'taol929', '2015-06-16', 'lantao', '2017-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS013453867571', '姚睿', 0, '+44 (20) 4358 3563', 3, '177817942979771550', 'Flat 6, 417 Maddox Street, London, W1S 1PU, United Kingdom', '1996-08-07', 0, 0, 'ruiya4', '2003-07-10', 'yaorui', '2004-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS417365451346', 'Nicole Castro', 1, '+86 159-3962-8381', 1, '188500571455372434', '中国成都市锦江区红星路三段919号50室', '1988-09-05', 0, 0, 'ncas', '2001-04-30', 'nicoleca4', '2017-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS578858134907', 'Donald Gonzalez', 0, '+1 614-787-4962', 1, '674463682827872530', '339 Tremont Road Suite 36, Columbus, GA 43212, United States', '1988-08-02', 0, 0, 'gdonald6', '2013-02-25', 'gond624', '2016-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS815698895829', '周潤發', 0, '+86 755-055-1632', 0, '412702026267208175', 'Room 1, CR Building, 309 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1992-12-31', 0, 0, 'yunfatcho3', '2006-01-25', 'choyf1026', '2000-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS084552629725', '駱富城', 0, '+44 (161) 848 3649', 3, '046235470098658725', 'Block 3, 458 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1992-06-04', 0, 0, 'lok714', '2004-02-16', 'fushinglok', '2009-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS756430997808', '卢璐', 1, '+86 141-3059-9439', 4, '345487879513826539', 'Room 4, CR Building, 108 Shanhu Rd, Dongguan, China', '1998-05-23', 0, 0, 'llu', '2005-01-21', 'lulu4', '2017-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS966610673407', '段宇宁', 1, '+1 212-957-2909', 2, '786603944443040904', '424 Wooster Street Apartment 17, New York, NY 10012, United States', '1998-03-04', 0, 0, 'yunidu', '2000-11-27', 'yd9', '2019-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS560084272110', '木村桜', 1, '+81 80-7433-8775', 2, '079675094634244466', '30F, 2-3-17 Yoyogi, Shibuya-ku, Tokyo, Japan', '1992-03-27', 0, 0, 'sakurak7', '2001-01-27', 'sakura515', '2004-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS758333964046', '盧俊宇', 0, '+81 52-820-9734', 2, '954693702760782690', 'Rm. 18, 3-19-16 Shimizu, Kita Ward, Nagoya, Japan', '1995-12-30', 0, 0, 'chunyu1004', '2017-07-24', 'chunyu1117', '2001-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS495899100777', 'George Hunt', 0, '+1 212-355-0121', 1, '521168980489924201', '844 West Houston Street Apt 35, New York, NY 10014, United States', '1985-12-02', 0, 0, 'hgeorge', '2006-09-19', 'huntgeo93', '2010-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS958420118285', 'Paul Jimenez', 1, '+81 66-848-4036', 2, '204648367413912649', '50F, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1998-10-26', 0, 0, 'jimenezpau', '2005-03-07', 'jimenezpaul', '2019-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS769238458667', '向明詩', 0, '+44 5706 993181', 4, '990779614895437632', 'Flat 38, 212 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1986-01-09', 0, 0, 'heung10', '2009-12-21', 'mingsze723', '2000-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS439851340599', '工藤瑛太', 1, '+81 70-8978-5653', 2, '893696613703365649', '日本東京渋谷区代々木二丁目3番15号2階', '1995-09-25', 0, 0, 'eitakud2', '2011-12-25', 'eitak', '2006-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS768884968902', '钟晓明', 1, '+44 7904 525100', 3, '594291990629242171', 'Unit 17, Oxford Eco Centre, 974 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1986-08-09', 0, 0, 'xiaomz530', '2008-11-30', 'zhongxiaoming', '2009-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS590259743535', '高橋詩乃', 1, '+44 (121) 323 2663', 3, '803782879796198417', 'Flat 22, 412 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1988-03-05', 0, 0, 'tshino', '2005-04-30', 'shinotakah1225', '2020-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS932320147153', '前田大地', 0, '+86 760-633-2291', 1, '720948799527280536', '中国中山京华商圈华夏街541号华润大厦44室', '1993-01-31', 0, 0, 'daichimaeda', '2004-02-17', 'daichi93', '2014-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS522192649190', '许震南', 0, '+81 80-9918-9484', 1, '752521675922147280', '日本東京品川区東五反田五丁目2番6号29階', '1993-04-16', 0, 0, 'xu1229', '2001-04-20', 'zhxu2', '2021-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS677464654557', '周子韬', 0, '+1 213-146-4668', 3, '066991261998344731', '640 Wall Street Apartment 37, Los Angeles, CA 90003, United States', '1998-03-11', 0, 0, 'zhozitao1114', '2002-06-10', 'zz212', '2004-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS097167912503', '今井花', 0, '+86 151-6455-1429', 2, '311799564282318492', 'Room 17, 940 Shanhu Rd, Dongguan, China', '1998-10-25', 0, 0, 'hanaima123', '2001-07-08', 'hana2', '2008-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS097786074261', 'Frederick Carter', 1, '+1 213-735-5598', 2, '126744280072506618', '267 Grape Street Apt 33, Los Angeles, CA 90002, United States', '1991-12-22', 0, 0, 'carter1115', '2008-07-25', 'frederickcarter2', '2010-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS804068918975', '渡部美咲', 1, '+86 28-293-7103', 1, '115674777999118750', '中国成都市锦江区红星路三段139号37栋', '1994-02-12', 0, 0, 'misawatanabe', '2000-11-24', 'watamisaki', '2003-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS423639791107', '成曉彤', 0, '+86 769-216-8786', 0, '020616089046874179', 'Room 30, CR Building, 355 Dongtai 5th St, Dongguan, China', '1987-01-28', 0, 0, 'htshing91', '2010-12-08', 'shiutu', '2013-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS402701426864', '湯發', 1, '+86 142-1521-2952', 3, '525999184916298946', '中国北京市东城区东单王府井东街999号43室', '1993-06-26', 0, 0, 'tongfat', '2020-03-18', 'tongfat', '2002-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS728658466411', '翁家輝', 1, '+86 175-5414-6465', 1, '132079332719257852', '中国成都市成华区二仙桥东三路832号28栋', '1996-07-03', 0, 0, 'kafaiyung', '2021-08-31', 'kfyung', '2005-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS147683004878', '加藤光莉', 0, '+86 185-7038-0609', 4, '352320084921955775', '中国北京市西城区西長安街451号13楼', '1988-08-28', 0, 0, 'hikat', '2002-08-04', 'katohikari', '2019-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS560035258024', 'Brian Gray', 1, '+1 213-965-6584', 0, '396766175111305232', '769 Alameda Street Apt 28, Los Angeles, CA 90002, United States', '1993-09-17', 0, 0, 'graybrian8', '2011-12-27', 'brg', '2011-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS798517900178', 'Larry Hunt', 1, '+1 838-978-9082', 3, '276158682779291800', '197 Lark Street 3rd Floor, Albany, NY 12210, United States', '1998-04-03', 0, 0, 'huntl', '2006-07-09', 'larry8', '2007-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS951432330947', '赵子异', 0, '+44 7258 468879', 0, '854240497452217023', 'Flat 27, 399 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1991-12-29', 0, 0, 'zhaoziyi1104', '2011-01-15', 'zhaoziyi1124', '2003-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS035528012163', '段致远', 1, '+44 7293 999623', 2, '603656336612411271', 'Block 35, 392 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1991-04-16', 0, 0, 'zhiydua10', '2005-08-10', 'zhiydua', '2002-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS641137379279', 'Juan Castro', 0, '+86 755-436-6108', 3, '573674353773674594', '22F, 605 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1991-08-02', 0, 0, 'castro49', '2010-01-20', 'casju1107', '2000-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS899207445942', 'Shirley Moore', 0, '+81 66-784-4410', 3, '893581996250468891', '5F, 2-1-15 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1991-02-14', 0, 0, 'shirm', '2007-05-28', 'moore7', '2006-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS987563581243', 'Scott Stone', 1, '+86 755-2913-5615', 1, '343489138834211531', '中国深圳罗湖区蔡屋围深南东路60号1栋', '1996-06-03', 0, 0, 'scottsto', '2005-08-13', 'ssco04', '2012-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS466961990715', '和田蒼士', 1, '+81 66-577-1725', 2, '056158758211670740', '日本おおさかし西成区出城一丁目1番10号46号室', '1990-07-23', 0, 0, 'wadaoshi', '2015-08-31', 'aoshiw1221', '2021-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS240685895855', '翁永權', 1, '+86 769-896-5980', 1, '939198276301127306', 'Room 50, CR Building, 605 Huanqu South Street 2nd Alley, Dongguan, China', '1991-01-05', 0, 0, 'wingkuen4', '2007-10-25', 'yungwk3', '2013-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS598629283276', '遠藤陸', 1, '+81 70-7158-6634', 3, '326419947439419878', 'Rm. 14, 5-2-15 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-02-22', 0, 0, 'endoriku17', '2011-11-12', 'riku712', '2009-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS435235658232', '石秀英', 1, '+1 330-271-4782', 4, '190485028121706289', '837 Collier Road 3rd Floor, Akron, OH 44320, United States', '1991-09-27', 0, 0, 'xiuyingshi', '2010-01-31', 'xiuyingshi', '2003-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS594282775165', 'Craig Kelly', 1, '+44 (116) 215 2612', 0, '863840667321803785', 'No.50 Main building, 825 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1996-12-09', 0, 0, 'kelly7', '2019-08-22', 'ckelly', '2021-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS327657571096', '何嘉欣', 1, '+81 80-4182-1981', 1, '031056917835565219', '日本札幌白石区菊水三条五丁目4番15号42階', '1998-06-30', 0, 0, 'hoky7', '2014-08-18', 'kyho', '2021-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS733280412962', '曾子韬', 1, '+44 (121) 550 8138', 0, '710415870662924928', 'Flat 24, 652 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1988-12-16', 0, 0, 'zz2', '2020-08-07', 'zzitao2', '2000-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS267162148805', 'Donald Butler', 0, '+86 10-701-6924', 2, '634585001441548149', '33F, 815 FuXingMenNei Street, XiCheng District, Beijing, China', '1986-03-01', 0, 0, 'butdonald', '2018-07-14', 'butdo2', '2014-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS503164045882', '方震南', 0, '+1 718-746-4949', 1, '092252608456758570', '864 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1998-07-02', 0, 0, 'fazhennan83', '2000-07-22', 'fangzhe', '2020-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS740153607188', '汪頴璇', 1, '+86 193-9601-6742', 0, '869190339048889781', '中国北京市延庆区028县道318号48室', '1993-04-05', 0, 0, 'wingsuenwong98', '2007-12-10', 'wingsuenw', '2017-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS834165301308', '錢學友', 1, '+44 (161) 541 5309', 2, '982865456916628613', 'Flat 11, 677 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-08-02', 0, 0, 'chinhokyau', '2004-05-26', 'hychin', '2002-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS590617663467', '邱家玲', 0, '+86 199-5893-2073', 2, '718767613097754111', '中国深圳龙岗区学园一巷899号47号楼', '1989-06-07', 0, 0, 'yau7', '2006-01-29', 'yaukaling', '2016-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS275053318034', '高橋美羽', 1, '+86 188-0553-0775', 3, '959241040339963675', 'Room 6, CR Building, 25 Dong Zhi Men, Dongcheng District, Beijing, China', '1997-10-10', 0, 0, 'takahashimi', '2020-01-12', 'miutak7', '2009-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS774139510180', '杨詩涵', 1, '+44 7218 575889', 4, '160172811678847484', 'Block 39, 328 Hanover St, Liverpool, L1 4AF, United Kingdom', '1995-02-16', 0, 0, 'shihan2006', '2011-10-06', 'yashiha', '2016-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS595395307423', '林安琪', 1, '+81 52-924-5876', 3, '267942618735927882', '日本なごやし守山区瀬古東二丁目171番7号24階', '1991-06-02', 0, 0, 'ali7', '2011-06-22', 'anqi907', '2005-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS716886242160', '高橋優奈', 0, '+81 66-046-5284', 1, '741228554952094206', '41F, 3-27-18 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1991-08-29', 0, 0, 'takahashi72', '2001-05-24', 'yunatakahashi', '2011-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS088981571213', '龙詩涵', 0, '+1 212-080-4974', 1, '225260373213006807', '802 Fifth Avenue Suite 21, New York, NY 10017, United States', '1988-07-13', 0, 0, 'shl', '2007-09-19', 'lons211', '2010-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS448564380511', 'Wendy Jordan', 0, '+81 80-8441-6998', 1, '212696969294596731', '日本東京中央区銀座三丁目12番1号17号室', '1990-10-05', 0, 0, 'wendyjordan', '2019-09-27', 'jordanwendy', '2019-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS439994680817', '汪震南', 1, '+1 330-048-5366', 1, '819211119535428176', '356 Riverview Road Suite 12, Akron, OH 44313, United States', '1993-07-14', 0, 0, 'wangz', '2016-11-25', 'zhennanw', '2014-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS831079175053', '小林光莉', 1, '+1 614-875-4368', 2, '815063543133180842', '495 Diplomacy Drive Apartment 24, Columbus, GA 43228, United States', '1985-02-05', 0, 0, 'kobayashi2', '2011-05-16', 'koh1202', '2021-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS646331213911', '斉藤光', 1, '+86 169-8327-7053', 2, '395902068493076186', '中国深圳龙岗区布吉镇西环路521号11楼', '1990-10-27', 0, 0, 'hisait', '2019-01-02', 'hisa', '2021-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS451280390015', '柴田健太', 1, '+86 10-5318-9393', 1, '377360329702756217', '中国北京市東城区東直門內大街174号华润大厦19室', '1991-07-09', 0, 0, 'shibatake59', '2004-04-25', 'keshibata', '2021-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS301687908784', '石川愛梨', 1, '+81 52-550-8258', 4, '236932678816869866', '日本なごやし熱田区千年二丁目5番12号14階', '1988-12-01', 0, 0, 'airi84', '2018-01-10', 'ishairi01', '2008-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS935610015395', '和田舞', 0, '+44 5412 886104', 1, '007811971413889181', 'No.27 Main building, 771 Hanover St, Liverpool, L1 4AF, United Kingdom', '1993-10-28', 0, 0, 'mai62', '2021-05-17', 'mai98', '2000-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS674205402413', '朱惠妹', 0, '+86 21-973-1720', 1, '453018220658202074', 'Room 21, CR Building, 380 Binchuan Rd, Minhang District, Shanghai, China', '1985-09-13', 0, 0, 'chu1230', '2006-01-29', 'chuhuimei', '2016-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS392814571019', '雷嘉伦', 1, '+81 66-814-2523', 3, '556270307031158573', '日本おおさかし東住吉区東田辺三丁目27番11号43階', '1996-09-29', 0, 0, 'jiallei1960', '2001-04-22', 'jialulei', '2019-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS839108202193', '河野大輔', 0, '+81 90-4438-0852', 0, '441242903790210795', 'Rm. 28, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1994-04-14', 0, 0, 'daiskono', '2016-10-03', 'daisukek', '2007-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS598372695876', '汪仲賢', 0, '+86 164-3630-0671', 0, '781936205940182773', 'No.39 building, 810 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1995-01-30', 0, 0, 'wcy', '2004-11-28', 'wongcy', '2003-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS634377725748', '林蒼士', 0, '+44 (121) 783 0468', 0, '786017744347083608', 'Flat 43, 953 New Street, Birmingham, B2 4DB, United Kingdom', '1993-06-03', 0, 0, 'hayashiaos', '2016-06-25', 'aoshi505', '2010-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS688716888515', 'Diane Cooper', 1, '+1 838-209-9039', 2, '067750005200946689', '60 Lark Street Apt 26, Albany, NY 12210, United States', '1993-04-09', 0, 0, 'diane54', '2009-07-14', 'diancooper99', '2019-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS931274720731', '黎岚', 1, '+44 (1223) 25 8997', 1, '307454806157784757', 'No.39 Main building, 938 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1995-03-12', 0, 0, 'lan5', '2005-04-15', 'll403', '2017-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS373153438201', '毛國賢', 1, '+86 755-725-0265', 1, '066332949724416576', '中国深圳龙岗区学园一巷130号4楼', '1998-12-11', 0, 0, 'mokwokyin', '2006-01-04', 'moky', '2012-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS275564597348', 'Mike Brooks', 1, '+86 189-9090-0886', 1, '924265061297939913', '中国中山紫马岭商圈中山五路444号24栋', '1997-08-09', 0, 0, 'mikebrooks3', '2008-10-29', 'brooks8', '2012-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS047609359851', '袁睿', 0, '+44 7394 123846', 2, '096065211633555262', 'Unit 26, Oxford Eco Centre, 355 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1986-07-24', 0, 0, 'ruyuan6', '2016-12-25', 'ryua', '2018-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS115059868440', '傅璐', 0, '+1 718-477-6686', 2, '635870698757728651', '677 Bergen St Apartment 32, Brooklyn, NY 11217, United States', '1996-07-24', 0, 0, 'lufu', '2017-05-27', 'lfu414', '2000-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS414389831404', '雷安琪', 1, '+81 70-7481-8627', 0, '749806691203596569', '24F, 6-1-14, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1996-04-15', 0, 0, 'anle', '2009-01-05', 'alei', '2018-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS586918549375', 'Elaine Jackson', 0, '+86 144-1162-4184', 0, '756219019447048222', '中国中山乐丰六路757号28室', '1989-09-17', 0, 0, 'elainejackson10', '2000-10-28', 'ejackson8', '2020-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS947957093909', 'Luis Myers', 1, '+81 80-6400-9446', 1, '524681717554040847', '日本なごやし守山区瀬古東二丁目171番6号37号室', '1990-03-31', 0, 0, 'myersluis', '2013-11-23', 'luismye1994', '2006-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS358323283862', '侯嘉伦', 1, '+86 10-0339-5194', 4, '178760217425359918', '中国北京市西城区复兴门内大街414号12栋', '1987-10-05', 0, 0, 'jialun03', '2005-07-14', 'jho3', '2021-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS960370976865', '马詩涵', 0, '+1 213-691-2484', 3, '743275347534963580', '104 Wall Street Apartment 25, Los Angeles, CA 90003, United States', '1989-06-15', 0, 0, 'mas', '2000-04-12', 'mashiha', '2021-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS691311417193', '谷慧嫻', 0, '+81 90-9391-4837', 1, '715911355054082819', 'Rm. 17, 5-19-2 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1997-11-11', 0, 0, 'waihan3', '2017-12-27', 'koowaihan16', '2022-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS520955528687', 'Bradley Owens', 0, '+86 21-1879-7181', 0, '276536436322010464', 'Room 5, CR Building, 698 Jianxiang Rd, Pudong, Shanghai, China', '1987-01-11', 0, 0, 'owensbradl1', '2017-12-12', 'bowens', '2020-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS595325540099', '阿部美羽', 0, '+86 769-8731-7523', 4, '703280683869018123', '中国东莞东泰五街158号17栋', '1995-05-03', 0, 0, 'miu68', '2010-08-27', 'miu2', '2021-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS077927049371', '顾岚', 1, '+86 21-352-9411', 3, '032001470647162579', '中国上海市浦东新区健祥路591号5栋', '1987-12-15', 0, 0, 'lan3', '2013-06-23', 'langu', '2019-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS638876436441', '新井蓮', 0, '+1 614-952-4587', 0, '291965112874019895', '272 Tremont Road Suite 45, Columbus, GA 43212, United States', '1990-10-01', 0, 0, 'araren', '2014-03-19', 'arren1', '2016-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS558669554874', '松田健太', 1, '+86 182-3657-4904', 4, '616047509882372823', '中国成都市锦江区人民南路四段564号25楼', '1985-06-14', 0, 0, 'matsuda49', '2021-07-30', 'mkent', '2001-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS374328414047', '严嘉伦', 1, '+44 7429 245421', 3, '145740332444159201', 'Block 25, 616 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1988-12-12', 0, 0, 'jiyan', '2007-03-21', 'jialuny', '2005-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS021666108629', '孔詩涵', 1, '+1 718-979-3741', 1, '781332196834652851', '6 Flatbush Ave Suite 45, Brooklyn, NY 11225, United States', '1997-04-10', 0, 0, 'shkong', '2021-06-03', 'kong4', '2000-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS991677920293', '今井美月', 1, '+86 755-0698-9472', 2, '273695334153319318', 'Room 39, CR Building, 547 Shennan Ave, Futian District, Shenzhen, China', '1992-02-24', 0, 0, 'imamitsuki70', '2019-06-12', 'imaimitsuki', '2009-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS323582319490', '呂朝偉', 0, '+81 80-6651-9134', 0, '698734512627118705', '日本おおさかし近江堂一丁目7番15号21号室', '1998-02-11', 0, 0, 'chiuwlu10', '2004-09-16', 'lcw1', '2002-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS905327306857', '溫榮發', 0, '+44 7620 320248', 3, '734348357070456571', 'Unit 38, Oxford Eco Centre, 395 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1985-02-09', 0, 0, 'wfw', '2016-08-18', 'wanwingfat420', '2020-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS305514069023', 'Lucille Mendez', 1, '+81 90-4817-4079', 1, '906466070165364962', '日本なごやし瑞穂区河岸町四丁目20番2号47号室', '1997-05-27', 0, 0, 'lucmendez', '2008-12-15', 'lucillemendez41', '2014-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS872745231220', '駱梓晴', 0, '+86 193-7521-2965', 1, '263102144737913704', 'No.48 building, 973 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1990-05-20', 0, 0, 'tclok715', '2005-02-07', 'loktc', '2008-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS916820545951', '有村陽太', 0, '+86 760-2299-1152', 2, '910026646773522950', '中国中山天河区大信商圈大信南路236号华润大厦47室', '1991-12-10', 0, 0, 'yarimura75', '2003-05-19', 'yotari', '2006-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS414257725426', '汪致远', 1, '+44 7310 519879', 4, '735547203572995921', 'Flat 34, 656 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1985-07-23', 0, 0, 'wzhi', '2009-02-17', 'zhiyuan3', '2001-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS181175328088', '中野大和', 1, '+81 90-2273-2565', 2, '228776327426807219', '日本札幌白石区菊水三条五丁目2番15号10号室', '1991-07-24', 0, 0, 'yamnakan318', '2014-12-08', 'nyam102', '2008-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS400352041984', 'Peggy Burns', 1, '+86 171-3001-8244', 4, '748430597726558458', '中国上海市浦东新区健祥路849号34室', '1988-08-14', 0, 0, 'peggyburns4', '2003-12-26', 'bpeggy', '2012-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS467600242928', 'Linda Morris', 1, '+86 28-912-7933', 4, '490504512117816952', '中国成都市成华区玉双路6号919号35楼', '1988-08-12', 0, 0, 'linda86', '2019-02-21', 'morrisl1962', '2009-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS595099157229', '戴天榮', 1, '+81 70-3146-4534', 2, '380360647726687411', '日本札幌豊平区豊平三条十三丁目3番1号31号室', '1985-10-17', 0, 0, 'twdai8', '2021-10-16', 'tinwing10', '2012-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS142712472389', '鈴木優奈', 1, '+86 10-542-6541', 3, '123240834155531984', '中国北京市西城区复兴门内大街32号41号楼', '1989-01-26', 0, 0, 'suyuna406', '2002-07-06', 'suzuki425', '2006-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS171743921321', '曹震南', 1, '+81 66-547-7596', 2, '536090173849027894', '日本おおさかし近江堂一丁目7番6号23号室', '1995-10-05', 0, 0, 'czhennan8', '2018-01-03', 'caoz403', '2003-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS580071392387', '梅發', 0, '+81 3-9648-9195', 3, '027734071837880676', '日本東京品川区東五反田五丁目2番15号11号室', '1995-07-02', 0, 0, 'fatmui', '2010-10-12', 'mfat', '2000-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS396339156159', '石安琪', 1, '+44 7960 964264', 0, '907928214007646629', 'Flat 48, 654 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-09-16', 0, 0, 'sanqi00', '2009-09-12', 'anqshi82', '2014-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS089188121871', '石璐', 0, '+44 (1865) 82 2191', 2, '639196742224649170', 'Unit 29, Oxford Eco Centre, 874 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1998-03-26', 0, 0, 'lus', '2001-08-14', 'slu707', '2011-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS273462020030', '郭詩涵', 0, '+86 10-7740-8839', 3, '029075426794844373', 'Room 32, 750 028 County Rd, Yanqing District, Beijing, China', '1990-09-11', 0, 0, 'gshih6', '2005-10-18', 'sg45', '2015-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS641722359800', '江安娜', 0, '+1 312-274-8290', 1, '399039656392033239', '293 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1991-05-28', 0, 0, 'koonna', '2004-07-22', 'kong10', '2012-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS067296419270', 'Julie Nelson', 0, '+81 70-7511-8014', 3, '729481639724513730', '4F, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-05-19', 0, 0, 'julien4', '2013-02-04', 'nelsonjulie', '2012-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS743227369414', '魏岚', 1, '+81 70-6706-4402', 3, '623857609204872639', '日本おおさかし東住吉区東田辺三丁目27番12号13階', '1992-03-02', 0, 0, 'lanwei1129', '2015-04-06', 'lawei', '2011-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS210099040933', 'Phyllis Palmer', 0, '+1 614-837-5508', 2, '515638195394210326', '470 East Cooke Road Apt 3, Columbus, GA 43214, United States', '1988-06-05', 0, 0, 'palmphyllis', '2007-07-08', 'palmerphyl', '2002-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS045474789042', '千葉陽太', 1, '+86 190-9117-6772', 3, '999643086559547268', 'No.37 building, 47 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1997-10-03', 0, 0, 'chibay', '2004-03-05', 'chibayota67', '2002-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS722522368190', '房永發', 1, '+1 614-552-8285', 4, '202241451760979935', '377 East Cooke Road Suite 13, Columbus, GA 43214, United States', '1994-02-25', 0, 0, 'fwf', '2013-08-14', 'wingfat1103', '2020-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS589915207946', '三浦七海', 0, '+86 151-3935-8734', 3, '910596374956903756', 'No.40 building, 558 Dong Zhi Men, Dongcheng District, Beijing, China', '1991-08-20', 0, 0, 'miura1976', '2000-09-20', 'nanamimiur2', '2015-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS046694041043', 'Albert Murray', 0, '+86 20-5085-5031', 4, '338249892093967553', 'No.21 building, 911 Jiangnan West Road, Haizhu District, Guangzhou, China', '1996-09-18', 0, 0, 'albertm313', '2003-06-15', 'albertmurr7', '2018-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS946327824313', '范子异', 0, '+86 10-8850-3943', 1, '810636958856029795', 'No.40 building, 56 68 Qinghe Middle St, Haidian District, Beijing, China', '1987-12-14', 0, 0, 'ziyifan', '2018-05-16', 'ziyifa1', '2003-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS111381229948', '田嘉伦', 0, '+86 174-0098-7004', 3, '831030748844284167', '中国东莞环区南街二巷636号33号楼', '1985-01-01', 0, 0, 'tian1018', '2015-01-21', 'jialuntia', '2004-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS285750966340', '江杰宏', 1, '+1 614-860-5630', 2, '440167479915774023', '738 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1985-12-04', 0, 0, 'jjieh2', '2011-10-11', 'jiehong1126', '2007-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS757546574557', 'Sara Dixon', 0, '+1 718-995-7391', 1, '629549895200498158', '444 Bergen St Suite 10, Brooklyn, NY 11217, United States', '1988-01-05', 0, 0, 'sad', '2002-07-20', 'saradixon', '2006-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS627213282448', '宮本悠人', 0, '+1 312-697-9057', 3, '664012618743407168', '849 Pedway Suite 45, Chicago, IL 60601, United States', '1998-07-24', 0, 0, 'miyamoto304', '2004-09-29', 'yumiy', '2015-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS807194518325', '郭震南', 0, '+44 (20) 5868 8488', 3, '080929466375107831', 'Flat 31, 853 Maddox Street, London, W1S 1PU, United Kingdom', '1986-12-02', 0, 0, 'guozhennan2005', '2001-12-21', 'zhennan1', '2013-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS310710059505', 'Mark Scott', 1, '+81 11-636-0923', 1, '198516499428730858', '32-kai, 5-4-11 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1990-11-25', 0, 0, 'scottma9', '2008-04-03', 'scmar8', '2009-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS810105754947', 'Cindy Gordon', 0, '+81 52-351-7418', 3, '953875721426399824', '日本なごやし瑞穂区河岸町四丁目20番1号10号室', '1995-05-07', 0, 0, 'gordoncindy', '2017-08-24', 'cingordon71', '2005-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS207798033995', '邵學友', 1, '+81 52-703-9028', 3, '154437447294769968', '日本なごやし瑞穂区河岸町四丁目20番7号14号室', '1990-08-06', 0, 0, 'siuhy810', '2012-02-20', 'hysi808', '2007-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS894676430297', '中村涼太', 1, '+81 80-2261-6239', 2, '121841261954603133', 'Rm. 16, 2-3-7 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-11-26', 0, 0, 'ryota4', '2009-11-26', 'nakamurar1945', '2006-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS417426083082', 'Glenn Graham', 0, '+44 7758 108064', 2, '045190882321183358', 'Flat 43, 114 Hanover St, Liverpool, L1 4AF, United Kingdom', '1990-02-14', 0, 0, 'glenn404', '2018-08-03', 'glegrah', '2007-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS739445849859', '田國榮', 0, '+86 755-578-2433', 2, '279575150669813698', '中国深圳龙岗区学园一巷290号21楼', '1989-11-20', 0, 0, 'tin82', '2019-06-19', 'kwokwingti', '2016-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS768918411798', '郝致远', 0, '+81 74-420-3199', 4, '564887636843118793', 'Rm. 7, 3-9-17 Gakuenminami, Nara, Japan', '1991-10-12', 0, 0, 'haozhiy', '2009-01-21', 'zhiyuanhao69', '2021-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS504946963663', 'Barbara Hicks', 0, '+81 70-6048-9194', 3, '609956182763906932', '日本なごやし熱田区千年二丁目5番8号17階', '1988-09-20', 0, 0, 'hickbarbara', '2003-12-31', 'hbarbara622', '2012-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS407096167687', '野口大地', 1, '+81 90-9600-3434', 3, '088149114449881210', '日本なごやし守山区瀬古東二丁目171番7号19号室', '1990-10-24', 0, 0, 'daicnogu10', '2010-05-03', 'daicnoguc', '2012-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS389539040952', '唐秀文', 1, '+81 90-0097-6871', 4, '476435760093947107', '23F, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1994-12-16', 0, 0, 'saumanto', '2005-05-05', 'smton', '2003-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS048151724732', '郭麗欣', 1, '+44 (161) 286 3109', 0, '133223585636922301', 'No.30 Main building, 108 Sackville St, Manchester, M1 3BB, United Kingdom', '1995-09-12', 0, 0, 'lykwok7', '2022-03-01', 'lyk', '2010-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS158765185448', '任嘉伦', 1, '+1 212-495-0132', 1, '648792394192913669', '509 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1995-01-21', 0, 0, 'jire10', '2001-01-13', 'renj6', '2017-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS815648740949', 'Linda Reyes', 0, '+44 (161) 117 1985', 3, '587842792633871546', 'No.47 Main building, 52 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1993-08-27', 0, 0, 'lindareyes', '2003-12-29', 'lindar', '2003-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS965725255039', 'Deborah Aguilar', 0, '+1 718-806-6377', 2, '537746082855173678', '835 Bergen St Apt 5, Brooklyn, NY 11217, United States', '1986-02-22', 0, 0, 'daguilar3', '2003-01-29', 'deborahaguilar51', '2001-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS578321225653', '孙致远', 0, '+1 330-033-6664', 3, '302549040786017030', '148 Collier Road Apt 11, Akron, OH 44320, United States', '1991-04-08', 0, 0, 'szhiyu', '2008-11-19', 'suz', '2002-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS794562505208', '木村聖子', 0, '+86 769-2434-8125', 3, '292664765674263937', '中国东莞环区南街二巷295号37楼', '1988-06-13', 0, 0, 'seikokimura', '2004-06-18', 'skimur5', '2020-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS499978986525', '加藤大和', 1, '+81 52-228-3628', 1, '338728826081369712', '日本なごやし瑞穂区河岸町四丁目20番10号40号室', '1985-12-16', 0, 0, 'ykat', '2020-09-30', 'yamatokato', '2015-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS659741965244', '萧云熙', 0, '+86 20-921-2474', 3, '671412862162540386', 'No.13 building, 898 Tianhe Road, Tianhe District, Guangzhou, China', '1994-02-16', 0, 0, 'xiaoyunxi', '2019-08-02', 'xiyunxi', '2020-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS025253436993', 'Marilyn Edwards', 0, '+44 (1223) 71 9123', 3, '727948300401424813', 'No.33 Main building, 526 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1989-11-14', 0, 0, 'maredwards1994', '2020-01-14', 'edwards73', '2004-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS062453680313', '鐘慧嫻', 0, '+81 70-1597-2236', 0, '444880946718275084', '8-kai, 1 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1991-04-29', 0, 0, 'chungwaihan', '2014-06-24', 'waihanch525', '2010-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS842105239739', 'Anthony Mills', 1, '+44 (1865) 19 7135', 0, '432140188827100342', 'No.29 Main building, 638 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1989-11-26', 0, 0, 'amills', '2020-11-28', 'anthonymill901', '2005-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS375371540550', 'Leroy Hernandez', 1, '+1 213-670-2466', 1, '957570002725169550', '702 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1997-07-22', 0, 0, 'hernandezleroy', '2007-07-14', 'herl', '2015-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS071523642706', 'Timothy Hunt', 1, '+44 7064 906164', 1, '030978176375157770', 'Block 45, 693 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1991-10-04', 0, 0, 'huntt1971', '2011-09-01', 'timhun715', '2016-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS417380515934', '卢宇宁', 0, '+86 189-5833-1125', 1, '408839578743464076', 'No.30 building, 976 Kengmei 15th Alley, Dongguan, China', '1994-05-30', 0, 0, 'yulu', '2017-12-08', 'yunil1', '2017-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS388578488424', '崔詩君', 0, '+44 5651 521331', 0, '877021755816742810', 'No.6 Main building, 731 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1990-02-10', 0, 0, 'szekwanc513', '2003-08-06', 'choiszek', '2015-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS091351599289', '冯岚', 0, '+86 755-764-6184', 2, '975998375656731714', '中国深圳福田区景田东一街158号27楼', '1996-09-15', 0, 0, 'feng9', '2015-08-24', 'lanf52', '2017-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS400470168867', '韦子韬', 0, '+81 70-4642-2511', 2, '085084293495622580', '日本札幌白石区菊水三条五丁目4番17号25号室', '1987-10-01', 0, 0, 'zwei', '2007-12-06', 'zwe', '2018-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS187576633371', 'Angela Gutierrez', 0, '+1 312-497-6881', 1, '224808482711816149', '545 Pedway Apt 48, Chicago, IL 60601, United States', '1992-05-28', 0, 0, 'gutierrezangela', '2019-12-08', 'gutierrezangela620', '2015-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS080132761280', 'Mary Evans', 1, '+81 66-116-7669', 3, '096312155326992436', '日本おおさかし西成区出城一丁目1番6号2階', '1990-08-18', 0, 0, 'mary606', '2019-11-27', 'maeva', '2002-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS665318431594', '加藤拓哉', 1, '+81 11-370-8453', 2, '710981265985665880', 'Rm. 20, 5-4-9 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1995-06-11', 0, 0, 'ktakuya', '2011-11-19', 'katot', '2019-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS146637278940', '柴田美咲', 1, '+86 162-9401-5837', 0, '702926338743362112', '中国深圳罗湖区田贝一路333号40室', '1991-11-07', 0, 0, 'shmisaki', '2020-01-03', 'mis4', '2010-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS257455238636', 'Gerald Daniels', 0, '+44 7772 382171', 3, '832537108169182243', 'Block 16, 409 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1995-05-01', 0, 0, 'gerald2017', '2010-09-19', 'daniels4', '2014-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS765177580650', '邱嘉伦', 1, '+81 70-1586-3581', 1, '481860817811229629', '日本札幌中央区宮の森四条六丁目1番4号43号室', '1996-06-06', 0, 0, 'jialuqiu', '2006-10-21', 'qiujialun61', '2020-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS794457105660', '萬家文', 1, '+81 11-342-0851', 2, '007228482233712565', '日本札幌厚別区上野幌一条二丁目1番13号16号室', '1999-03-01', 0, 0, 'mkm61', '2002-01-22', 'mengkm', '2013-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS090237434005', '梁子韬', 0, '+81 90-7427-5341', 2, '580625967152339606', '日本おおさかし西成区天神ノ森二丁目1番16号22階', '1995-10-03', 0, 0, 'zliang', '2018-12-29', 'zitliang', '2020-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS307042987912', '官祖兒', 0, '+44 7094 194801', 3, '638674825214759308', 'No.16 Main building, 235 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-10-24', 0, 0, 'choyee6', '2019-10-15', 'kocy', '2021-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS323456911597', '蔡安琪', 0, '+44 5809 336959', 2, '939736498909957510', 'Block 46, 438 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1992-01-07', 0, 0, 'okchoi', '2011-08-20', 'okch1956', '2018-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS011171832687', 'Alfred Mendez', 0, '+86 158-4906-1135', 3, '536398294164485367', '中国成都市成华区双庆路34号13号楼', '1995-03-14', 0, 0, 'mendez07', '2021-03-09', 'meal', '2009-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS351070842856', '島田海斗', 0, '+86 178-8325-7869', 2, '610099714518665375', '中国中山京华商圈华夏街388号4栋', '1993-09-21', 0, 0, 'kshima19', '2003-10-31', 'shik8', '2012-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS889011129501', 'Eugene Nguyen', 0, '+86 142-0940-7595', 3, '267786998452313098', '中国成都市成华区二仙桥东三路453号3栋', '1987-03-12', 0, 0, 'eugenenguyen11', '2006-05-20', 'ngeu', '2005-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS134324436159', 'Alexander Taylor', 0, '+86 755-660-5118', 1, '280559477666964582', '中国深圳龙岗区布吉镇西环路298号华润大厦13室', '1998-02-26', 0, 0, 'aletaylor', '2013-04-03', 'tayloa208', '2007-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS337646813530', '杉山拓哉', 1, '+86 157-6332-1624', 2, '066221544383407825', '中国深圳龙岗区学园一巷530号18室', '1998-02-09', 0, 0, 'sugiyamatakuya1027', '2015-01-09', 'sugiyamatakuya', '2019-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS266596528065', 'Bobby Cruz', 1, '+44 (116) 693 8664', 1, '114233369969047114', 'Unit 39, Oxford Eco Centre, 117 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1992-08-26', 0, 0, 'bobbycruz', '2001-05-18', 'cruz5', '2010-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS565074497010', 'Troy Gomez', 0, '+81 90-1314-4846', 1, '594945779361325361', 'Rm. 17, 1-6-16, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1996-04-19', 0, 0, 'gometroy2', '2018-04-06', 'troy717', '2003-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS895376343018', '史杰宏', 1, '+44 (20) 1569 0703', 2, '645992383123406386', 'Flat 2, 722 Hanover Street, London, W1S 1YD, United Kingdom', '1989-02-21', 0, 0, 'sjieh', '2017-12-04', 'jiehongshi18', '2020-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS689844175894', 'George Fisher', 0, '+44 7444 542402', 2, '481472538948583906', 'Block 32, 997 New Street, Birmingham, B2 4DB, United Kingdom', '1989-08-20', 0, 0, 'fig', '2011-08-23', 'georgefishe74', '2003-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS959243787723', 'Mark Holmes', 1, '+86 10-5409-4027', 1, '975417672375441655', '22F, 225 West Chang''an Avenue, Xicheng District, Beijing, China', '1994-03-05', 0, 0, 'mark03', '2001-01-14', 'markholmes511', '2007-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS961843846719', 'Jeffery Peterson', 1, '+44 (1223) 12 2593', 3, '497310211946590236', 'Unit 41, Oxford Eco Centre, 292 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1985-09-01', 0, 0, 'pjeffery', '2020-04-12', 'petj206', '2015-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS848748261963', 'Edward Wilson', 1, '+86 199-2995-9225', 2, '880249834829161980', '中国深圳龙岗区布吉镇西环路363号华润大厦11室', '1998-11-23', 0, 0, 'edward17', '2018-11-22', 'edwwi203', '2017-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS813461551556', '洪永權', 0, '+86 180-7236-9567', 0, '459569936983507942', '中国深圳龙岗区学园一巷290号36栋', '1992-08-04', 0, 0, 'winhung', '2008-09-07', 'huwingkuen', '2007-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS814423740134', 'Michael Rose', 0, '+1 213-926-5729', 4, '003949568543486177', '215 Figueroa Street Suite 44, Los Angeles, CA 90037, United States', '1997-11-13', 0, 0, 'rosm', '2008-01-07', 'microse831', '2008-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS739407933541', '佘梓軒', 0, '+81 66-603-1223', 0, '877662119071411250', 'Rm. 18, 3-27-16 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-01-21', 0, 0, 'sheh1029', '2005-02-01', 'thshe', '2013-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS355141656666', '韓俊宇', 1, '+81 66-756-9158', 3, '439343295760428609', '日本おおさかし西成区出城一丁目1番3号49号室', '1997-05-07', 0, 0, 'hachunyu', '2008-09-18', 'han3', '2006-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS417421261515', '大野愛梨', 0, '+81 90-9767-5273', 3, '963081349352420022', 'Rm. 4, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1990-04-29', 0, 0, 'onoa2', '2007-03-30', 'oairi', '2006-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS037176221904', '石田架純', 1, '+44 7942 374912', 1, '880272143915412806', 'No.14 Main building, 899 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1987-02-11', 0, 0, 'ik1', '2019-03-03', 'isk', '2011-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS289528924299', 'Carrie Washington', 0, '+86 28-897-3164', 1, '997534198621367862', 'Room 36, 688 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1990-11-14', 0, 0, 'carriwashington', '2016-12-25', 'carriewashington', '2004-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS548211984143', '李家輝', 1, '+86 184-5100-7260', 1, '540419905317291646', '中国上海市黄浦区淮海中路297号35栋', '1997-06-29', 0, 0, 'kflee2', '2004-08-30', 'leekf808', '2010-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS307165440670', '中野愛梨', 1, '+86 28-4382-0834', 1, '713477601229684748', 'No.19 building, No. 215, Shuangqing Rd, Chenghua District, Chengdu, China', '1991-03-30', 0, 0, 'nakai', '2021-12-08', 'nakanoai', '2017-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS164972196860', '许安琪', 0, '+81 90-6494-4332', 4, '797332197403379648', '45-kai, 1-6-13, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1994-08-04', 0, 0, 'anxu416', '2005-09-17', 'anqi5', '2006-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS927882862707', '高田舞', 1, '+81 11-872-3685', 2, '806593566508808042', '日本札幌中央区宮の森四条六丁目1番15号26階', '1997-02-11', 0, 0, 'mai67', '2010-07-08', 'maitak4', '2006-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS102946586227', '小林悠人', 0, '+81 70-0618-3614', 4, '814416754990851914', '日本札幌白石区菊水三条五丁目4番16号34階', '1991-01-30', 0, 0, 'yuto07', '2008-06-23', 'kobayashiyut', '2001-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS752494104035', 'Peter Hunt', 1, '+44 (1223) 30 7619', 3, '514387473535980087', 'Block 28, 969 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1985-06-09', 0, 0, 'pethun', '2021-10-03', 'pethunt6', '2010-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS490231569698', '内田美緒', 1, '+86 158-0518-9832', 1, '048543783166935392', 'No.42 building, 657 Shennan Ave, Futian District, Shenzhen, China', '1994-01-17', 0, 0, 'miouchid3', '2018-03-23', 'miouchid', '2004-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS834145844288', '曹淑怡', 1, '+81 66-622-3434', 0, '528137174268283071', '日本おおさかし西成区天神ノ森二丁目1番11号1階', '1998-05-17', 0, 0, 'sukyc', '2001-09-30', 'sycho4', '2002-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS225810693349', '尹睿', 1, '+86 148-3589-7546', 2, '569659318702367398', 'No.26 building, 228 Dong Zhi Men, Dongcheng District, Beijing, China', '1995-07-17', 0, 0, 'ruyin', '2002-06-06', 'ruiy', '2004-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS452653778280', '姜朝偉', 0, '+81 74-958-5478', 3, '417783194902411655', '日本ならし学園南三丁目9番10号34階', '1986-06-09', 0, 0, 'chang1220', '2007-05-02', 'chachiuwai', '2002-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS579898661153', '孟詩涵', 1, '+81 3-5298-3778', 3, '063973737451205349', '日本東京港区東新橋一丁目5番10号6号室', '1987-01-11', 0, 0, 'msh', '2005-02-16', 'mengshi2013', '2011-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS365731920651', '朱玲玲', 0, '+81 11-763-4035', 1, '205491403390773969', '日本札幌清田区真栄四条五丁目19番17号12階', '1997-03-13', 0, 0, 'llchu7', '2010-07-15', 'chulingling', '2001-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS895281707932', 'Jimmy Carter', 1, '+81 80-0246-6818', 3, '065726519904311066', '日本札幌白石区菊水三条五丁目4番18号8階', '1994-02-13', 0, 0, 'carterjimmy53', '2017-07-28', 'jimmyc', '2007-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS408267181991', 'Jennifer James', 1, '+81 3-5927-8047', 1, '411254015978741506', '日本東京品川区東五反田五丁目2番8号29階', '1997-10-02', 0, 0, 'jej9', '2001-07-05', 'james3', '2009-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS831273437729', 'Ricky West', 1, '+86 760-5095-5096', 3, '514253685023828125', 'Room 31, 74 Lefeng 6th Rd, Zhongshan, China', '1991-01-17', 0, 0, 'ricky7', '2016-08-25', 'ricky10', '2016-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS447403483591', '徐震南', 1, '+1 312-477-4424', 3, '751648928799727070', '307 Pedway Suite 47, Chicago, IL 60601, United States', '1991-04-02', 0, 0, 'xuz10', '2014-01-06', 'xuzhennan', '2014-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS505624582872', '韦璐', 1, '+81 80-6517-4021', 1, '301746372369071350', 'Rm. 40, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1994-01-25', 0, 0, 'weilu8', '2005-12-27', 'lu708', '2021-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS146524704275', '福田美緒', 0, '+86 148-5935-4286', 4, '619045513148559159', '中国中山天河区大信商圈大信南路967号华润大厦25室', '1991-10-30', 0, 0, 'fukudam', '2008-12-28', 'fukudam1114', '2012-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS744435099127', '松田桜', 1, '+86 136-4390-6367', 1, '366455362941698569', '34F, 740 Shanhu Rd, Dongguan, China', '1997-09-21', 0, 0, 'sakmatsuda824', '2006-10-11', 'sakura44', '2004-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS200594679152', '王慧珊', 1, '+44 (20) 7720 6164', 1, '936938113825098784', 'Block 28, 906 Hanover Street, London, W1S 1YD, United Kingdom', '1995-11-22', 0, 0, 'wswong', '2016-07-19', 'wswong1126', '2019-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS645485569361', '于云熙', 0, '+44 (151) 392 0650', 3, '828185912012807160', 'Flat 11, 953 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1998-11-22', 0, 0, 'yuyunxi10', '2013-01-01', 'yuy3', '2015-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS923926240467', 'Jeffrey Jones', 0, '+86 10-5546-3239', 0, '824765158111541225', 'No.3 building, 948 Dong Zhi Men, Dongcheng District, Beijing, China', '1994-08-15', 0, 0, 'jeffj3', '2015-12-21', 'jeffjone2016', '2003-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS571390501498', '韓俊宇', 0, '+81 11-363-9974', 3, '999973663323495534', 'Rm. 6, 5-2-5 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-04-23', 0, 0, 'chunyuhan66', '2020-06-14', 'hanchunyu', '2007-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS733613393802', '潘云熙', 1, '+81 90-3816-5817', 3, '502417783379856956', '19-kai, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-03-14', 0, 0, 'pan321', '2011-07-22', 'pany', '2005-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS317279774254', '马嘉伦', 0, '+44 5793 917506', 2, '416288124005341934', 'Flat 9, 295 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1993-09-28', 0, 0, 'jialun75', '2018-10-20', 'jialunma531', '2004-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS319048746956', '車富城', 1, '+81 66-047-5166', 2, '949999454377143504', 'Rm. 19, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1989-01-25', 0, 0, 'fushing7', '2007-07-31', 'che02', '2008-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS893830126829', '樂潤發', 0, '+86 20-8619-3130', 1, '486012723233618757', 'No.31 building, 13 Xiaoping E Rd, Baiyun , Guangzhou, China', '1997-03-22', 0, 0, 'lokyunfat62', '2017-12-24', 'loyf', '2003-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS780621743282', '姜杰宏', 1, '+81 52-354-6797', 1, '416845670476987427', '日本なごやし北区楠味鋺三丁目80番1号35階', '1996-10-14', 0, 0, 'jji48', '2002-06-14', 'jiangji57', '2015-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS093331775648', 'Carolyn Gardner', 0, '+44 (1865) 69 3623', 3, '793654395860191951', 'Block 48, 104 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1987-01-04', 0, 0, 'cgar', '2002-07-29', 'cag1206', '2008-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS143271565772', '薛詠詩', 1, '+1 718-602-5985', 3, '458385751099458437', '771 Bergen St Apartment 32, Brooklyn, NY 11217, United States', '1998-11-23', 0, 0, 'wingszesit', '2016-01-14', 'wingsze79', '2004-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS491886728373', 'Annie Lee', 0, '+44 (1223) 55 3440', 0, '241073278599039350', 'Flat 12, 839 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1986-03-14', 0, 0, 'annie10', '2003-07-19', 'leea7', '2021-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS616351005574', '中森湊', 1, '+44 (1223) 69 3621', 4, '623433896966651296', 'Flat 22, 496 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1986-07-21', 0, 0, 'nakamoriminato1', '2011-08-29', 'mn4', '2018-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS281680283735', '山口樹', 1, '+44 (1223) 30 0197', 2, '562365360883031683', 'Flat 16, 211 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1987-06-19', 0, 0, 'itsukiy', '2012-05-19', 'yamaitsuki', '2008-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS516667639458', 'Eric Lopez', 0, '+1 213-105-1964', 4, '469046122071055507', '495 S Broadway Suite 30, Los Angeles, CA 90015, United States', '1999-03-04', 0, 0, 'elopez', '2012-08-21', 'elopez', '2013-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS849385203276', '侯子异', 1, '+81 3-8740-5628', 2, '091918038879000191', '日本東京中央区銀座三丁目12番3号19階', '1997-12-07', 0, 0, 'zho', '2012-09-09', 'hziyi70', '2008-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS142834206352', 'Rebecca Brooks', 1, '+44 5082 754783', 4, '394548640750848429', 'Block 2, 182 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1995-11-19', 0, 0, 'rb7', '2000-12-28', 'rebecbro4', '2011-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS299223273127', 'Danielle Griffin', 0, '+44 (20) 8771 3103', 4, '922101881222291560', 'Block 49, 549 Hanover Street, London, W1S 1YD, United Kingdom', '1992-02-07', 0, 0, 'danielle1994', '2008-12-19', 'griffin8', '2013-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS592782105551', 'Theresa Wilson', 1, '+1 718-079-2308', 3, '396095539359630835', '910 Bergen St Apt 24, Brooklyn, NY 11217, United States', '1989-08-24', 0, 0, 'wthe', '2016-07-12', 'wilson1004', '2019-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS433936943844', '元國榮', 1, '+81 11-775-7886', 0, '998719721332840523', '1F, 2-1-2 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1987-11-30', 0, 0, 'yukw', '2005-10-28', 'yuenkwo', '2010-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS034304365095', 'Curtis Chen', 1, '+44 7908 364477', 2, '027990067882931276', 'No.43 Main building, 780 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1987-10-23', 0, 0, 'chencurtis3', '2004-07-15', 'chencurtis10', '2020-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS804640585647', '向岚', 1, '+81 3-3285-8027', 3, '118633416829472529', '30F, 3-15-16 Ginza, Chuo-ku, Tokyo, Japan', '1998-06-23', 0, 0, 'xianlan', '2004-07-13', 'lan4', '2000-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS300688399938', '邱家玲', 0, '+1 838-768-9734', 1, '858487140143509976', '347 Broadway Apartment 40, Albany, NY 12207, United States', '1992-02-08', 0, 0, 'kalingyau00', '2019-07-18', 'yaukaling4', '2018-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS345967191428', '近藤葉月', 0, '+86 760-8304-8930', 1, '990469692888327659', 'Room 44, CR Building, 25 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1997-05-21', 0, 0, 'kondo8', '2007-04-20', 'hazuki8', '2015-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS667605787679', '程璐', 1, '+81 66-649-6876', 1, '408188793084311797', '45F, 1-7-15 Omido, Higashiosaka, Osaka, Japan', '1987-02-27', 0, 0, 'lucheng9', '2012-06-05', 'lucheng', '2017-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS687505246810', '蕭天樂', 1, '+1 312-059-7841', 0, '757621517735012558', '316 Rush Street Suite 36, Chicago, IL 60611, United States', '1986-12-03', 0, 0, 'tinloks', '2003-06-26', 'siutinlok', '2022-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS623979728612', '沈岚', 0, '+44 (1865) 94 8601', 2, '911704282451828012', 'Unit 45, Oxford Eco Centre, 330 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1987-04-03', 0, 0, 'lanshen4', '2011-05-27', 'lan1012', '2009-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS938906276337', '王俊宇', 1, '+1 212-656-3708', 4, '205875935937160135', '262 Bank Street Apt 7, New York, NY 10014, United States', '1997-01-04', 0, 0, 'chunyuwon', '2015-10-14', 'wong50', '2015-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS299493201803', '胡子异', 0, '+86 136-6147-9519', 3, '210052109806599588', '中国中山紫马岭商圈中山五路447号11楼', '1988-06-14', 0, 0, 'ziyi81', '2011-07-19', 'zihu', '2003-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS902177073925', 'Margaret Tran', 0, '+1 212-327-9440', 0, '561601022439405637', '108 Wooster Street Apartment 42, New York, NY 10012, United States', '1996-04-23', 0, 0, 'margarettran', '2000-06-16', 'tmarga', '2018-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS037419865427', 'Arthur Gonzalez', 1, '+81 11-419-9065', 2, '681279415139336910', '5F, 5-19-4 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1991-09-20', 0, 0, 'arthurgonzalez', '2008-07-12', 'arthugonzalez', '2001-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS825880023753', '蘇家玲', 0, '+1 312-203-4586', 4, '739970030853517973', '690 Pedway Apt 32, Chicago, IL 60601, United States', '1988-05-20', 0, 0, 'sokali', '2017-02-08', 'kaso', '2008-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS271378021951', '袁國賢', 1, '+1 212-609-3774', 1, '191039657947555482', '52 Wooster Street Apartment 35, New York, NY 10012, United States', '1989-08-13', 0, 0, 'kwokyiny54', '2012-01-23', 'kwokyiny', '2014-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS171068314966', '郭曉彤', 1, '+86 168-6000-7557', 1, '054810875530572146', 'No.3 building, 805 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1997-01-25', 0, 0, 'hiutungkw10', '2003-09-20', 'hiutungkwo3', '2002-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS565961551516', '桜井詩乃', 0, '+81 74-757-0321', 4, '494186942689927518', '2-kai, 1 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-09-05', 0, 0, 'shsakurai', '2000-03-24', 'ssakur6', '2010-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS067013272551', '桜井彩乃', 1, '+86 755-552-5236', 4, '489431614322040510', 'Room 2, CR Building, 258 Jingtian East 1st St, Futian District, Shenzhen, China', '1985-11-24', 0, 0, 'sakuraia', '2002-05-14', 'aysaku', '2012-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS954986428012', '石田蒼士', 0, '+1 213-350-4573', 4, '727732871012994724', '41 Sky Way Suite 32, Los Angeles, CA 90043, United States', '1985-01-01', 0, 0, 'ishidaos', '2010-11-30', 'aoishida', '2005-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS028156898789', '龙子异', 0, '+44 (121) 464 5906', 3, '872816823623545038', 'Unit 35, Oxford Eco Centre, 837 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1995-08-22', 0, 0, 'ziylong', '2009-06-25', 'long01', '2012-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS220353248087', '加藤蒼士', 0, '+44 (116) 534 4378', 2, '011152526631382364', 'Block 35, 174 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1987-10-30', 0, 0, 'akato616', '2013-01-25', 'kaaoshi', '2000-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS344826470327', '戚學友', 0, '+1 213-757-7718', 3, '655440850177235685', '202 Figueroa Street Apt 33, Los Angeles, CA 90037, United States', '1988-02-29', 0, 0, 'hychic', '2018-03-10', 'hychic1967', '2002-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS153883538890', '李晓明', 0, '+86 190-4821-3472', 3, '163909730562697790', '中国北京市东城区东单王府井东街836号华润大厦34室', '1989-02-06', 0, 0, 'lixiaoming', '2011-12-19', 'xiaomingli', '2010-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS993074553444', '汪震南', 1, '+81 90-8142-9122', 1, '525556523335661425', '日本東京中央区銀座三丁目12番3号26階', '1997-06-18', 0, 0, 'zhew1026', '2009-03-13', 'zhenwang6', '2020-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS996997213269', 'Carlos Walker', 1, '+81 52-683-0546', 1, '990632174657813712', '日本なごやし北区楠味鋺三丁目80番5号43階', '1991-04-15', 0, 0, 'carlowalker', '2013-06-20', 'carlos9', '2016-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS595383739963', 'Aaron James', 1, '+86 769-3596-4717', 0, '074549490405680009', '35F, 505 Kengmei 15th Alley, Dongguan, China', '1985-09-18', 0, 0, 'jamesaaron', '2003-07-10', 'jamesaaron1994', '2018-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS078696254837', '范子韬', 1, '+86 177-2943-1432', 3, '960787540563531156', '中国东莞东泰五街97号13楼', '1985-12-14', 0, 0, 'zfan728', '2020-12-14', 'zitfan', '2015-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS134620500140', 'Marilyn Collins', 1, '+81 74-127-5603', 4, '035504993780025475', '32-kai, 1-7-12 Saidaiji Akodacho, Nara, Japan', '1986-08-22', 0, 0, 'collmarilyn2', '2011-12-11', 'marilync5', '2021-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS639714781543', 'Bruce Watson', 1, '+86 164-3564-7061', 2, '197771848331101688', '中国深圳龙岗区布吉镇西环路277号20号楼', '1987-04-15', 0, 0, 'watsbruce', '2000-01-12', 'watsbruce320', '2011-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS349035366340', '元霆鋒', 1, '+44 (161) 513 3311', 2, '513325503697963401', 'No.5 Main building, 676 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-10-27', 0, 0, 'tfyuen68', '2014-06-23', 'tingfungyuen', '2021-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS243324052325', '朱詩涵', 0, '+86 28-9517-0861', 1, '626624836974822819', '中国成都市锦江区人民南路四段421号26室', '1987-07-06', 0, 0, 'zhush1987', '2017-04-01', 'szhu', '2015-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS871397642902', 'Nicole Porter', 1, '+1 718-251-0752', 2, '478956803314845235', '621 Nostrand Ave Apartment 8, Brooklyn, NY 11216, United States', '1998-12-28', 0, 0, 'pnicole', '2021-03-06', 'porternicol3', '2006-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS439261083379', '黃國榮', 1, '+86 10-607-5207', 2, '798715825536128637', 'No.15 building, 856 West Chang''an Avenue, Xicheng District, Beijing, China', '1987-05-17', 0, 0, 'wong52', '2014-05-31', 'wonkw', '2010-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS749513184277', '横山聖子', 1, '+81 3-3740-2993', 1, '790568601012832029', 'Rm. 32, 5-2-11 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1987-04-19', 0, 0, 'seyoko', '2001-02-03', 'yokoyama1001', '2012-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS780162176067', '向岚', 0, '+86 10-7810-0384', 1, '832434975076282828', '中国北京市海淀区清河中街68号261号25号楼', '1996-04-15', 0, 0, 'lanxiang', '2004-03-18', 'xiang9', '2018-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS078585096202', '唐嘉伦', 0, '+81 66-302-1908', 3, '258447759774065819', '日本おおさかし西成区出城一丁目1番16号36号室', '1987-05-28', 0, 0, 'tangjial', '2015-04-29', 'tangj90', '2018-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS521580844531', 'Sharon Mills', 1, '+81 11-037-3006', 3, '470879573513937264', '日本札幌厚別区上野幌一条二丁目1番1号1階', '1995-01-03', 0, 0, 'sharon8', '2019-05-12', 'shamills', '2017-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS393706182133', '杉山葉月', 0, '+86 21-0666-2145', 1, '416031417433516613', 'No.50 building, 346 Ganlan Rd, Pudong, Shanghai, China', '1996-09-17', 0, 0, 'sugiyamah', '2006-01-31', 'sugiyama718', '2019-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS497841441122', '胡嘉伦', 0, '+1 838-892-5501', 4, '633064496970889291', '559 Central Avenue Apartment 7, Albany, NY 12206, United States', '1997-02-23', 0, 0, 'hujialu2', '2000-06-10', 'hu9', '2011-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS300243121014', '村田優奈', 1, '+81 11-724-0150', 1, '815798084424704756', 'Rm. 31, 13-3-10 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1988-06-11', 0, 0, 'murata7', '2001-11-14', 'muyuna', '2017-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS238283376314', '上田百恵', 1, '+86 148-4477-9272', 1, '893034571062082612', 'No.28 building, 65 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1993-02-04', 0, 0, 'momued', '2009-09-15', 'momoeueda2', '2005-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS050128907037', 'Jacob Fernandez', 0, '+81 70-6482-7717', 2, '133238851181449094', '日本ならし大和郡山市本庄町一丁目1番7号47階', '1995-09-28', 0, 0, 'ferjacob', '2002-04-11', 'jacobfern', '2020-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS448866463284', 'Barbara Foster', 1, '+86 168-3190-4212', 0, '171019939597476665', '中国中山紫马岭商圈中山五路448号42栋', '1986-08-19', 0, 0, 'barbara330', '2007-04-28', 'barbara3', '2006-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS866195319438', '福田蒼士', 1, '+44 (151) 919 0217', 4, '248227241694065554', 'Flat 32, 780 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1986-05-20', 0, 0, 'fukudaa6', '2005-05-18', 'aoshifuku', '2019-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS384003181175', 'Kathryn Grant', 0, '+81 52-740-4916', 1, '996459523572972208', '48F, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1985-10-04', 0, 0, 'grantkath94', '2013-01-14', 'katgrant525', '2008-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS321818563777', '有村聖子', 0, '+86 148-0436-4812', 3, '421831172817390874', '中国广州市白云区小坪东路270号22楼', '1986-01-22', 0, 0, 'arimusei', '2020-09-08', 'arimuse', '2018-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS131776974943', 'Marvin Mitchell', 0, '+81 90-9601-5389', 2, '628057849507258538', '日本なごやし北区楠味鋺三丁目80番9号32号室', '1994-05-29', 0, 0, 'marvinmitchell', '2021-07-08', 'marvinmit1', '2002-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS136858448145', '贺詩涵', 1, '+44 (20) 8321 4736', 4, '134243948869344455', 'Flat 12, 590 Pollen Street, London, W1S 1NG, United Kingdom', '1994-08-06', 0, 0, 'hs9', '2020-09-26', 'she', '2011-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS691981980493', '汪云熙', 1, '+81 3-6585-4107', 1, '264505038843383621', '日本東京千代田区丸の内一丁目6番11号36階', '1995-08-30', 0, 0, 'wyunxi928', '2001-12-28', 'wany', '2009-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS026060346904', '谷富城', 1, '+81 52-191-3074', 2, '928444784895189042', '日本なごやし瑞穂区河岸町四丁目20番18号27階', '1994-03-21', 0, 0, 'fsko', '2015-12-02', 'fushingk', '2010-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS425405905496', 'Jamie Nelson', 1, '+1 212-407-2149', 2, '884697036083851116', '287 Fifth Avenue Suite 49, New York, NY 10017, United States', '1998-09-18', 0, 0, 'nelsjamie9', '2002-01-06', 'jamien5', '2011-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS235984230332', '増田翼', 1, '+81 3-3297-1455', 1, '123561684287973530', '日本東京品川区東五反田五丁目2番8号20階', '1990-05-05', 0, 0, 'tsmasuda8', '2004-01-14', 'mastsubasa', '2017-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS641924181763', '董震南', 1, '+44 5313 219152', 1, '973468679687249025', 'Flat 46, 528 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1986-12-31', 0, 0, 'dong929', '2017-03-04', 'dongzhennan', '2001-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS975192570674', 'Ryan Jenkins', 1, '+86 21-174-6857', 1, '446290526016127568', 'Room 45, 68 Binchuan Rd, Minhang District, Shanghai, China', '1988-09-25', 0, 0, 'jenkins1', '2003-01-07', 'jryan', '2004-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS317663782285', '伊藤玲奈', 0, '+81 3-4139-1805', 3, '028571548738108404', '5F, 5-2-16 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1985-06-08', 0, 0, 'renito', '2010-05-02', 'ito68', '2006-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS836847529952', 'Barry Gonzales', 1, '+86 159-1465-1367', 2, '592680475907477612', '中国深圳福田区深南大道791号5楼', '1987-08-11', 0, 0, 'gonzba', '2003-01-02', 'gonzalesb2', '2011-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS955817718250', 'Bobby Baker', 0, '+44 (121) 795 5569', 4, '109178829282108561', 'Unit 18, Oxford Eco Centre, 129 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1988-12-25', 0, 0, 'bakerbobby', '2005-08-12', 'baker2', '2016-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS979916803988', '朱安琪', 1, '+86 760-248-5658', 1, '009603852426150940', '中国中山天河区大信商圈大信南路557号46楼', '1991-02-07', 0, 0, 'azhu601', '2005-11-09', 'zhu415', '2007-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS147685466299', '井上美月', 1, '+81 90-0295-3308', 1, '526577214266218156', '1F, 6-1-18, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-10-27', 0, 0, 'inouemits', '2021-12-09', 'mii', '2018-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS339028699521', '郭小慧', 0, '+86 178-2101-8076', 1, '603061770600401704', '中国成都市成华区玉双路6号403号1室', '1986-08-26', 0, 0, 'siuwaikwok7', '2011-10-04', 'kwoksiuwai', '2019-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS112652358767', 'Heather Jones', 0, '+81 80-7775-4207', 3, '797814525772667789', '日本ならし大和郡山市本庄町一丁目1番4号31階', '1997-07-26', 0, 0, 'heather1029', '2005-12-25', 'hjo', '2014-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS105927398013', '駱永發', 0, '+81 74-208-4785', 1, '050119058807487459', '日本ならし学園南三丁目9番18号5階', '1985-11-06', 0, 0, 'wfl', '2022-03-05', 'wingfatlo', '2014-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS040504128800', 'Jimmy Lee', 1, '+44 5368 042272', 2, '599991655277405900', 'No.6 Main building, 339 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1997-07-15', 0, 0, 'leejimmy', '2005-06-10', 'leejimmy1', '2012-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS719331976637', '贾睿', 0, '+86 20-902-1054', 1, '437143306449670355', '中国广州市白云区小坪东路418号38号楼', '1998-07-10', 0, 0, 'jia127', '2021-11-20', 'ruij', '2017-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS338434567100', '向浩然', 1, '+81 52-344-4936', 3, '540233242996224643', '2F, 3 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1997-02-06', 0, 0, 'hoyinheun', '2003-01-21', 'hoyin3', '2016-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS871886174837', '郝嘉伦', 0, '+1 213-380-3533', 2, '611021877989530536', '836 S Broadway Suite 15, Los Angeles, CA 90015, United States', '1997-12-16', 0, 0, 'jialunh1215', '2019-08-11', 'haoj117', '2011-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS461131226582', '車志遠', 1, '+86 10-4364-7828', 1, '505291126113624523', '中国北京市西城区西長安街231号42室', '1985-03-15', 0, 0, 'cyche', '2004-08-11', 'che324', '2008-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS132340523668', '范晓明', 1, '+1 330-269-7901', 3, '612445898631849077', '560 Fern Street 3rd Floor, Akron, OH 44307, United States', '1998-02-08', 0, 0, 'xiaomfan6', '2014-05-13', 'xiaomfa', '2011-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS377342407269', '高田樹', 0, '+81 11-534-1825', 2, '408110229271171898', '日本札幌清田区真栄四条五丁目19番8号12階', '1990-02-06', 0, 0, 'takadait', '2013-02-22', 'takitsuki', '2016-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS352665956128', '渡辺湊', 0, '+44 7267 730266', 1, '328865962831241676', 'Block 41, 984 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1994-07-12', 0, 0, 'minato9', '2019-10-31', 'sato9', '2000-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS827330427768', 'Glenn West', 0, '+86 21-419-6216', 1, '021569615517093292', '中国上海市浦东新区健祥路451号华润大厦42室', '1994-01-21', 0, 0, 'glennwe824', '2010-03-02', 'westg', '2004-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS013574852062', '彭小慧', 1, '+1 212-269-1015', 1, '110063914250311699', '788 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1998-10-19', 0, 0, 'psiuwai216', '2005-05-28', 'swpan66', '2015-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS861993122494', 'James Wagner', 1, '+81 3-9749-0525', 1, '055069278530327979', '日本東京港区東新橋一丁目5番18号49号室', '1992-10-21', 0, 0, 'jameswa', '2019-04-29', 'wagnjames', '2006-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS087200073562', '何裕玲', 0, '+86 139-4802-9031', 2, '332131009515581089', '18F, 437 Xiaoping E Rd, Baiyun , Guangzhou, China', '1986-02-24', 0, 0, 'yuling829', '2021-12-05', 'hoyl5', '2021-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS422307740192', 'Judith Holmes', 1, '+86 162-5997-0861', 1, '812465379214168725', 'No.29 building, 206 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1986-12-21', 0, 0, 'holmesjudith3', '2021-02-12', 'hj1', '2000-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS390924381528', '柴田大地', 1, '+86 167-3006-2131', 3, '700557935537088948', '中国上海市浦东新区橄榄路33号42号楼', '1991-08-05', 0, 0, 'sdaichi8', '2008-11-09', 'shibatadaich', '2002-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS140055836687', '中川光莉', 1, '+1 212-342-0453', 2, '625020318343221838', '725 Canal Street Suite 7, New York, NY 10013, United States', '1994-06-28', 0, 0, 'hikna', '2021-09-18', 'hikanaka69', '2017-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS273026266007', '冯子韬', 0, '+44 5075 333362', 1, '996844296980173952', 'Flat 23, 189 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1991-05-29', 0, 0, 'fengzit4', '2014-01-05', 'zitaofeng6', '2010-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS704767002272', '酒井美緒', 0, '+81 90-0524-8348', 3, '323730244804763370', '日本おおさかし近江堂一丁目7番16号34階', '1995-01-09', 0, 0, 'mio90', '2012-08-07', 'miosakai', '2003-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS564944782310', '上田陽菜', 1, '+86 165-2413-1300', 2, '375496600431699702', '25F, 527 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1998-06-21', 0, 0, 'hiueda', '2007-05-27', 'uedahina81', '2000-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS397306360568', 'Clifford Harrison', 1, '+86 173-3461-0631', 4, '375116143659462125', 'No.29 building, 161 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1985-07-26', 0, 0, 'harrisoncli2', '2002-02-07', 'charri', '2014-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS823978478555', 'Henry Wells', 0, '+86 20-3847-2761', 0, '658043025523367947', '中国广州市天河区天河路57号华润大厦44室', '1992-06-09', 0, 0, 'henryw', '2014-10-13', 'henrywell', '2007-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS022884163468', '井上葵', 1, '+1 614-656-4603', 2, '602818712406733462', '659 Tremont Road Apartment 43, Columbus, GA 43212, United States', '1995-09-08', 0, 0, 'inaoi4', '2016-01-25', 'aoiinoue', '2012-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS244305650189', '羅天榮', 0, '+86 138-7308-8808', 3, '667743716236106673', 'No.27 building, 588 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1991-12-02', 0, 0, 'lotw00', '2016-08-18', 'lotw1985', '2015-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS440079153990', '佘志明', 1, '+81 66-731-4612', 3, '982475053681889258', '日本おおさかし平野区加美東四丁目9番2号1階', '1995-03-20', 0, 0, 'sheh717', '2000-06-24', 'chiming516', '2015-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS375850543158', '顧家強', 0, '+81 52-171-1316', 4, '037156496349173450', '日本なごやし北区楠味鋺三丁目80番17号25階', '1986-07-07', 0, 0, 'kukakeung', '2020-07-07', 'kukakeung', '2017-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS845079385915', '菅原健太', 1, '+81 74-541-5251', 2, '738416157519629621', 'Rm. 37, 1-7-16 Saidaiji Akodacho, Nara, Japan', '1991-04-02', 0, 0, 'sugawkenta', '2011-09-20', 'sugawara111', '2003-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS471918925049', '田中光', 1, '+1 213-303-5567', 4, '295952763293789631', '59 Alameda Street Suite 46, Los Angeles, CA 90002, United States', '1985-04-15', 0, 0, 'htanaka3', '2014-02-11', 'tanakah', '2010-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS740324433639', '叶岚', 1, '+1 838-441-7240', 3, '200946850314437070', '519 Lark Street Apt 27, Albany, NY 12210, United States', '1995-12-17', 0, 0, 'lanye1105', '2005-10-20', 'lanye', '2013-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS271744985915', '蔡天樂', 0, '+81 74-092-4506', 1, '088685275362575647', '17F, 3-9-20 Gakuenminami, Nara, Japan', '1994-06-11', 0, 0, 'tinlok212', '2010-01-21', 'choitl1207', '2014-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS208923149203', 'Antonio Rodriguez', 1, '+81 90-8844-0131', 1, '524386683910097182', '日本ならし学園南三丁目9番7号13階', '1986-04-17', 0, 0, 'antoniorodri1009', '2014-01-02', 'rodrantonio', '2020-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS152243116967', 'Beverly Lewis', 1, '+86 28-8795-2172', 2, '253404496377245783', '中国成都市成华区二仙桥东三路869号华润大厦35室', '1991-08-05', 0, 0, 'lewisbe10', '2010-02-07', 'bevelew1207', '2015-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS865698410759', '周慧敏', 1, '+81 90-9706-9673', 0, '177321295305330370', '日本なごやし熱田区千年二丁目5番3号45階', '1995-01-30', 0, 0, 'chowwaiman', '2005-01-28', 'chowwm', '2012-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS925573010076', 'Cindy Bryant', 1, '+86 197-7461-1234', 2, '584233423558306165', 'No.40 building, 595 Huanqu South Street 2nd Alley, Dongguan, China', '1992-12-13', 0, 0, 'cbry', '2021-06-30', 'cindybr1', '2004-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS829123708110', '余致远', 0, '+86 184-8038-6596', 2, '146765237782905715', '中国深圳福田区景田东一街105号38号楼', '1990-12-24', 0, 0, 'zhiyu8', '2004-02-13', 'yuzhi10', '2009-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS861594799079', '薛震南', 0, '+81 70-2199-3222', 1, '331783550824791879', '日本東京千代田区丸の内一丁目6番1号6号室', '1986-10-24', 0, 0, 'xuez', '2019-02-15', 'zhennanxue', '2004-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS742742593739', '加藤海斗', 0, '+81 52-327-9386', 2, '549221869365540957', '5F, 13 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1986-12-14', 0, 0, 'kak1970', '2008-07-28', 'kk2', '2018-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS077345569634', '陈岚', 0, '+44 (151) 038 9765', 2, '641650030743256798', 'Block 48, 517 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1992-08-22', 0, 0, 'chenla', '2017-01-07', 'chenlan', '2007-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS659179713576', '周云熙', 1, '+81 52-368-5974', 2, '847942623469195257', '22-kai, 3-19-10 Shimizu, Kita Ward, Nagoya, Japan', '1988-02-24', 0, 0, 'yunxi101', '2018-09-25', 'yzhou205', '2009-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS044444309099', '車安琪', 0, '+81 66-277-6035', 2, '772217340004778665', 'Rm. 38, 1-7-12 Omido, Higashiosaka, Osaka, Japan', '1992-01-09', 0, 0, 'cheok86', '2016-02-11', 'che13', '2012-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS938909198006', '譚惠妹', 1, '+86 183-9203-2987', 4, '385892234488888731', 'No.33 building, 744 Ganlan Rd, Pudong, Shanghai, China', '1987-01-30', 0, 0, 'tamhm', '2022-03-04', 'tahu', '2020-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS722044982759', '莫云熙', 1, '+86 20-549-9570', 1, '984811192366688307', 'Room 27, 156 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1988-10-14', 0, 0, 'yunximo', '2020-03-05', 'moyu416', '2008-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS106478581971', '向安琪', 1, '+86 28-3664-3016', 1, '961025877226895830', 'No.39 building, No. 288, Shuangqing Rd, Chenghua District, Chengdu, China', '1992-10-23', 0, 0, 'heungok1966', '2021-10-28', 'heunonkay9', '2018-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS563363413449', 'Cindy Hayes', 0, '+81 80-4638-1960', 3, '115460900502023398', '日本ならし西大寺赤田町一丁目7番2号10階', '1988-06-24', 0, 0, 'hayesc', '2014-10-06', 'hayecindy', '2001-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS088277194040', 'Amber West', 0, '+86 138-5462-8055', 0, '522251716684322667', 'No.28 building, 465 FuXingMenNei Street, XiCheng District, Beijing, China', '1986-11-22', 0, 0, 'west65', '2013-12-15', 'westamber', '2005-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS417890073221', '甘麗欣', 1, '+81 52-555-4610', 0, '488881604563622533', '4-kai, 3-19-7 Shimizu, Kita Ward, Nagoya, Japan', '1998-01-06', 0, 0, 'kamly', '2006-02-12', 'laiyan51', '2010-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS327559709257', '曾致远', 1, '+81 74-903-3500', 2, '051661098253186562', 'Rm. 45, 1-7-4 Saidaiji Akodacho, Nara, Japan', '1992-01-10', 0, 0, 'zhizeng', '2003-05-28', 'zengzhi1012', '2021-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS242115343280', '吳詩君', 0, '+81 11-897-1212', 2, '486188734380352067', 'Rm. 11, 6-1-16, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1985-03-07', 0, 0, 'ng11', '2020-10-02', 'ng2', '2019-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS314699389179', '孟秀英', 1, '+86 28-445-9292', 4, '494308212543149268', 'Room 36, No.996, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1988-11-28', 0, 0, 'xm4', '2002-08-31', 'meng00', '2016-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS481883617522', '林思妤', 0, '+44 7952 068510', 0, '951753415764862011', 'Block 35, 201 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1992-09-26', 0, 0, 'sylam', '2008-11-06', 'lam5', '2006-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS239395224083', '姚璐', 1, '+44 (151) 680 9901', 2, '227705626341493086', 'Unit 23, Oxford Eco Centre, 296 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1993-05-24', 0, 0, 'yaolu', '2000-11-07', 'yaolu804', '2007-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS308404095496', '姜安琪', 0, '+81 80-2507-6932', 2, '916677325722779103', 'Rm. 23, 1-7-1 Omido, Higashiosaka, Osaka, Japan', '1992-05-02', 0, 0, 'okchang20', '2018-11-06', 'conkay', '2006-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS056119014823', 'Marilyn Sanders', 0, '+44 5108 828102', 4, '527927250374932400', 'Flat 49, 545 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1994-10-01', 0, 0, 'marisanders', '2005-01-22', 'marilynsanders', '2002-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS763818169453', '菊地百花', 0, '+86 760-5126-8410', 2, '781232338740151995', '24F, 789 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1998-01-20', 0, 0, 'momokakiku', '2005-06-30', 'kikumomoka', '2011-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS187329772460', '羅志明', 1, '+44 7490 727870', 1, '729190742999834226', 'Block 29, 509 Mosley St, Manchester, M2 3AQ, United Kingdom', '1988-04-14', 0, 0, 'locm', '2010-08-31', 'chimlo', '2006-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS422926199442', '田詩君', 1, '+44 (151) 526 6197', 1, '253807278896854905', 'Unit 16, Oxford Eco Centre, 471 Redfern St, Liverpool, L20 8JB, United Kingdom', '1991-08-15', 0, 0, 'tinsz', '2006-12-30', 'tsk', '2018-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS974370612581', 'Leroy Ross', 0, '+81 80-1007-4017', 2, '189507537802541132', 'Rm. 24, 13-3-20 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1990-10-15', 0, 0, 'lros2', '2010-10-21', 'rossler6', '2019-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS494775064353', '官力申', 0, '+1 213-471-0675', 4, '927407909947560304', '626 Figueroa Street Apt 37, Los Angeles, CA 90037, United States', '1989-07-12', 0, 0, 'kols71', '2001-11-28', 'kools', '2021-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS331490177289', '菊地架純', 0, '+81 3-2894-4127', 0, '278936086047023184', '17-kai, 3-15-4 Ginza, Chuo-ku, Tokyo, Japan', '1998-03-25', 0, 0, 'kakik', '2016-08-21', 'kikkasum', '2006-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS016248050642', '翁家明', 1, '+44 (161) 280 6065', 2, '639658695865891397', 'Unit 49, Oxford Eco Centre, 803 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-08-30', 0, 0, 'ykm', '2003-09-22', 'yungkamin', '2013-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS307520926196', 'Harold Jones', 0, '+81 52-477-4669', 3, '035154103981474960', '33-kai, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-04-19', 0, 0, 'jhar', '2003-04-12', 'harojones', '2008-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS645407243277', '小山光', 0, '+86 10-1701-2268', 1, '160647608888282980', '中国北京市延庆区028县道984号34号楼', '1996-01-06', 0, 0, 'koyamh', '2014-04-21', 'koyama2', '2002-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS162572342243', '馮曉彤', 1, '+1 312-790-9406', 1, '009994017973590754', '843 Rush Street Suite 38, Chicago, IL 60611, United States', '1992-12-13', 0, 0, 'hiutung612', '2007-11-06', 'fung4', '2016-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS397463699960', '甘杰倫', 0, '+81 11-907-1418', 2, '854396516842933151', '日本札幌白石区菊水三条五丁目4番4号1階', '1991-05-24', 0, 0, 'chiehlunkam', '2010-10-14', 'kamchiehlun', '2012-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS930071728054', '贺秀英', 0, '+81 66-475-8575', 4, '509797487982071444', '日本おおさかし西成区天神ノ森二丁目1番8号31階', '1988-05-02', 0, 0, 'xih', '2005-06-18', 'hex68', '2012-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS977902677143', 'Alan Richardson', 0, '+44 7442 586503', 3, '374524108862637985', 'Unit 44, Oxford Eco Centre, 69 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-01-04', 0, 0, 'alanrichardson', '2001-11-07', 'richardsonal', '2014-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS919427759859', '薛家玲', 1, '+44 (161) 264 8698', 2, '687739291510823132', 'Block 17, 459 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1996-07-05', 0, 0, 'klsit02', '2001-04-01', 'sit820', '2002-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS823239577795', '房詩君', 0, '+86 155-6723-6531', 4, '713313404127322687', '中国广州市越秀区中山二路380号18楼', '1989-03-06', 0, 0, 'szekwanfong', '2014-10-29', 'szekwan414', '2004-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS218466809446', '遠藤百恵', 1, '+1 838-282-9004', 0, '921820787473672753', '248 Central Avenue Apartment 19, Albany, NY 12206, United States', '1989-06-21', 0, 0, 'emomoe1030', '2000-06-26', 'emomoe', '2000-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS333812724789', '王璐', 1, '+86 20-8386-1272', 1, '543753501683981838', '中国广州市海珠区江南西路324号31号楼', '1987-03-09', 0, 0, 'luwang97', '2012-01-29', 'luw', '2005-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS853534731406', '橋本美羽', 1, '+81 3-2075-7429', 0, '608103003843293197', '23F, 2-3-8 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-05-28', 0, 0, 'hmiu', '2001-12-24', 'hashimotom', '2015-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS615149120967', '石井紗良', 0, '+1 312-745-6846', 4, '113441258865479540', '323 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1989-05-12', 0, 0, 'saraishii', '2003-03-13', 'si7', '2003-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS753055306142', '中山陽菜', 1, '+86 755-8917-7428', 1, '405118465958979367', 'No.7 building, 205 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1992-09-30', 0, 0, 'hina8', '2014-01-20', 'nahina', '2008-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS210520091440', '謝潤發', 0, '+86 193-8054-3191', 3, '763298672686071649', '中国北京市海淀区清河中街68号968号42栋', '1987-03-30', 0, 0, 'tyf', '2017-05-05', 'tseyf', '2017-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS349870921242', '余晓明', 0, '+86 159-5959-2735', 2, '051811089613700354', '中国北京市西城区西長安街876号华润大厦47室', '1995-08-11', 0, 0, 'yu3', '2019-07-18', 'xiyu', '2018-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS193273647685', 'Josephine Patel', 1, '+44 (1865) 25 7931', 2, '044761656617797014', 'Flat 38, 895 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-08-18', 0, 0, 'pateljosep', '2008-09-20', 'josephinepat9', '2010-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS991956549709', '余宇宁', 0, '+86 28-165-8485', 0, '115589263099801819', '中国成都市成华区二仙桥东三路89号20号楼', '1996-06-04', 0, 0, 'yuyuning', '2018-09-06', 'yu1103', '2009-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS412796915513', '岩崎七海', 1, '+1 718-806-3497', 4, '210685347648103804', '690 Flatbush Ave Apartment 30, Brooklyn, NY 11225, United States', '1998-08-05', 0, 0, 'naiwasa40', '2007-12-02', 'niw', '2015-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS346227403489', '加藤明菜', 1, '+81 80-8272-4363', 2, '951067677861395196', '日本札幌豊平区豊平三条十三丁目3番10号3階', '1991-12-26', 0, 0, 'katoakina', '2018-10-12', 'katoak916', '2004-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS702955584701', '廖心穎', 0, '+1 614-234-7515', 3, '882585060985664620', '164 East Alley Suite 49, Columbus, GA 43201, United States', '1986-04-05', 0, 0, 'sumwing1208', '2012-02-07', 'swliao70', '2000-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS874514212590', 'Fred Mills', 1, '+86 174-9778-4749', 4, '409667930618340000', '9F, 273 East Wangfujing Street, Dongcheng District , Beijing, China', '1986-02-14', 0, 0, 'mifre67', '2010-04-20', 'millsfr', '2008-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS988218568388', '谭震南', 1, '+1 718-447-5777', 4, '839617008798177582', '651 1st Ave Apt 31, Brooklyn, NY 11220, United States', '1993-04-28', 0, 0, 'tazhen6', '2012-07-18', 'taz04', '2009-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS858549456095', '譚淑怡', 1, '+86 199-2499-6188', 0, '392622044977866500', 'Room 24, 579 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1995-06-01', 0, 0, 'tamsukyee', '2010-07-29', 'tamsukyee1942', '2018-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS081644934799', '斎藤陽太', 0, '+81 3-8090-3556', 4, '242512293095389550', '日本東京渋谷区代々木二丁目3番10号49階', '1992-10-01', 0, 0, 'saito904', '2014-04-22', 'yotas319', '2018-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS302008991414', '溫學友', 1, '+44 7093 713100', 3, '068461154142783347', 'Unit 16, Oxford Eco Centre, 78 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1993-02-20', 0, 0, 'wanhy602', '2000-02-15', 'wan10', '2002-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS368216864205', 'Theresa Edwards', 0, '+1 212-121-5972', 3, '826596029956930623', '54 Fifth Avenue Suite 35, New York, NY 10017, United States', '1989-04-21', 0, 0, 'et1997', '2011-03-10', 'edwtheresa', '2010-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS256646539054', '吉田彩乃', 0, '+86 179-2060-2030', 3, '035862540477904625', '39F, 996 Dong Zhi Men, Dongcheng District, Beijing, China', '1994-01-12', 0, 0, 'yaya', '2013-03-26', 'yoshidaaya1972', '2004-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS634122133685', '高子异', 0, '+86 155-1081-2908', 0, '394068326837826255', 'Room 3, CR Building, 499 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1991-06-22', 0, 0, 'gaoziyi', '2005-05-16', 'ziygao314', '2016-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS139688712455', '遠藤葵', 0, '+86 20-6670-7634', 2, '750919271760409470', 'Room 30, 731 Xiaoping E Rd, Baiyun , Guangzhou, China', '1986-03-23', 0, 0, 'endoaoi1206', '2016-02-23', 'aoi2001', '2001-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS788284299802', '李子异', 0, '+1 212-945-4286', 3, '339892518177013236', '88 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1998-08-04', 0, 0, 'zli', '2004-07-26', 'liziy', '2020-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS693220453755', 'Thomas Boyd', 0, '+81 90-2408-8871', 1, '423279509991694876', '日本東京港区東新橋一丁目5番6号29階', '1996-08-21', 0, 0, 'boyd2', '2018-10-12', 'boyd228', '2012-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS759483082765', '高田紗良', 1, '+44 (1223) 76 7989', 0, '424699512162958750', 'No.9 Main building, 868 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1998-09-14', 0, 0, 'saratak9', '2017-08-30', 'takadsara', '2011-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS581165980072', 'Clarence Shaw', 0, '+86 155-0327-4870', 2, '458047014772759924', 'Room 4, CR Building, 46 Lefeng 6th Rd, Zhongshan, China', '1991-09-12', 0, 0, 'shawclarence', '2008-08-29', 'clarencesh', '2007-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS992544693642', 'Angela Foster', 1, '+81 52-836-5007', 4, '529707480398742910', 'Rm. 16, 2-5-2 Chitose, Atsuta Ward, Nagoya, Japan', '1985-04-28', 0, 0, 'afoster', '2020-05-12', 'fa8', '2008-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS886224200826', '向安娜', 0, '+1 212-143-9917', 0, '164263739298352932', '353 Wooster Street 3rd Floor, New York, NY 10012, United States', '1998-11-13', 0, 0, 'heuonn313', '2018-12-09', 'onheung7', '2013-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS450209462970', '青木百花', 0, '+81 90-0139-6500', 0, '717923550753575488', '日本おおさかし西成区出城一丁目1番2号28階', '1987-05-08', 0, 0, 'ma813', '2010-06-11', 'momoka522', '2014-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS261971103942', '西村涼太', 0, '+86 131-1930-9353', 4, '226078465895594333', '中国上海市徐汇区虹桥路616号46楼', '1993-03-20', 0, 0, 'nishimura914', '2018-02-13', 'ryotanishimura', '2004-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS646838414745', '駱浩然', 1, '+81 3-5793-3451', 1, '592596634435177446', '日本東京中央区銀座三丁目12番11号39号室', '1997-12-27', 0, 0, 'lohy', '2003-03-02', 'hylok', '2008-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS364575181894', '任詩涵', 1, '+1 212-313-5386', 1, '998122181685609307', '265 West Houston Street Apt 6, New York, NY 10014, United States', '1997-11-15', 0, 0, 'rens', '2022-02-27', 'rsh5', '2010-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS641026868572', 'Lori Powell', 0, '+44 (121) 581 9049', 0, '665525226664781975', 'Unit 18, Oxford Eco Centre, 839 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1985-01-04', 0, 0, 'powelll', '2008-10-11', 'powelllo', '2017-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS747120894927', 'Julia Coleman', 0, '+81 80-4752-5287', 1, '622252390668253133', '50-kai, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-01-13', 0, 0, 'juliacoleman', '2002-02-06', 'jcolem', '2013-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS092759104894', '中島大輔', 0, '+1 213-853-2758', 2, '876395577338229435', '285 S Broadway Apartment 7, Los Angeles, CA 90015, United States', '1990-04-10', 0, 0, 'daisukenakajima', '2005-12-02', 'nakajima2005', '2003-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS704193917458', '雷秀英', 0, '+86 149-7942-4919', 1, '811445623299519897', '中国北京市房山区岳琉路336号华润大厦13室', '1994-04-25', 0, 0, 'leixiu', '2006-07-09', 'xiuyilei', '2007-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS917161759614', 'Frances Garcia', 0, '+86 149-1632-8505', 1, '115123213770429294', '中国深圳福田区深南大道208号16楼', '1987-11-11', 0, 0, 'francesgarc87', '2019-10-25', 'garcifran', '2008-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS062538630562', 'Shawn Hernandez', 1, '+81 80-5964-0222', 3, '835211997839551902', 'Rm. 21, 3-9-8 Gakuenminami, Nara, Japan', '1988-02-03', 0, 0, 'hshawn', '2011-12-28', 'hernandezsha8', '2014-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS419149214530', '王國明', 0, '+86 21-9844-0082', 2, '996199491886416372', '1F, 601 Jianxiang Rd, Pudong, Shanghai, China', '1991-01-06', 0, 0, 'wong6', '2013-08-06', 'wongkwokming', '2005-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS588721152212', 'Phillip Barnes', 1, '+81 66-947-7121', 1, '662630856924364276', '日本おおさかし平野区加美東四丁目9番6号31階', '1994-03-23', 0, 0, 'phillipbarnes', '2003-06-17', 'barnes311', '2013-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS335170721284', '村上彩乃', 1, '+86 769-340-2765', 3, '121162500287931095', 'No.2 building, 954 Shanhu Rd, Dongguan, China', '1998-09-28', 0, 0, 'amurakami69', '2002-08-16', 'murakayan', '2004-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS809241680581', 'Robin Chen', 1, '+86 769-4574-9198', 3, '350169018574052889', '中国东莞珊瑚路469号33楼', '1994-09-06', 0, 0, 'crobi8', '2007-01-20', 'crobin', '2015-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS637806327940', '姚富城', 1, '+86 182-7770-6310', 1, '421977667417532582', '中国广州市白云区小坪东路161号41楼', '1990-09-09', 0, 0, 'yeow6', '2020-12-10', 'yeow206', '2009-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS710757225548', '關嘉欣', 0, '+44 5634 321403', 2, '456579193905466605', 'Flat 11, 445 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1991-06-22', 0, 0, 'kykwan', '2020-07-13', 'kwankaryan', '2021-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS698945884438', 'Josephine Fernandez', 0, '+86 755-410-7292', 3, '123694699621834701', 'No.27 building, 517 Jingtian East 1st St, Futian District, Shenzhen, China', '1991-10-01', 0, 0, 'fernandezjo', '2006-08-01', 'fernandezjo', '2009-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS185633581833', '洪國榮', 0, '+81 80-1788-3669', 4, '591396552214761793', '日本なごやし北区清水三丁目19番5号32階', '1997-04-21', 0, 0, 'hungkw', '2010-10-04', 'kwokwinghung', '2002-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS529528629935', '潘岚', 1, '+81 90-4222-8306', 2, '780781028872124894', 'Rm. 47, 3-19-11 Shimizu, Kita Ward, Nagoya, Japan', '1993-10-08', 0, 0, 'panlan', '2015-06-25', 'lanpan', '2014-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS192093765094', '鄺潤發', 1, '+81 70-7450-4065', 2, '226392247724031033', '日本ならし学園南三丁目9番3号4号室', '1987-02-24', 0, 0, 'kwongyu831', '2009-09-19', 'yunfatkwong', '2001-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS896682771353', '麥俊宇', 0, '+44 7658 845178', 1, '100605768625033309', 'Flat 15, 115 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1987-12-29', 0, 0, 'chunyuma', '2020-12-07', 'mak55', '2021-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS315299714992', '方詩涵', 0, '+81 74-422-9117', 1, '044254339647304316', '日本ならし西大寺赤田町一丁目7番12号19号室', '1996-06-14', 0, 0, 'fangs', '2005-02-19', 'shf', '2009-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS217460138331', '蕭天榮', 1, '+1 838-099-4656', 2, '339012635224752762', '659 Central Avenue Apartment 29, Albany, NY 12206, United States', '1995-06-24', 0, 0, 'tinwing4', '2018-10-24', 'twsiu', '2005-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS304090333967', 'Dorothy Miller', 0, '+86 178-4474-7935', 1, '439299533884019647', '中国北京市西城区复兴门内大街505号华润大厦47室', '1997-12-02', 0, 0, 'dorotmi70', '2009-12-10', 'millerdorothy93', '2002-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS943733262313', 'Phillip Robinson', 0, '+81 66-295-4535', 2, '859977097931850007', '日本おおさかし平野区加美東四丁目9番13号50階', '1986-08-18', 0, 0, 'rphillip', '2008-05-05', 'philrobinson', '2002-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS822051942753', '今井葵', 0, '+81 52-847-1220', 1, '240669078900796518', '日本なごやし熱田区千年二丁目5番1号15号室', '1988-03-03', 0, 0, 'imao', '2005-04-21', 'aoiimai', '2018-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS062946249155', '關心穎', 1, '+81 52-044-4485', 1, '261815341431674880', '日本なごやし熱田区千年二丁目5番13号26号室', '1990-10-01', 0, 0, 'kwansw', '2004-05-12', 'kwansumwing1220', '2005-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS736218784580', '藤永發', 1, '+86 755-577-9088', 4, '872651121451005707', '中国深圳福田区景田东一街766号48楼', '1998-02-19', 0, 0, 'tang2', '2013-02-23', 'tanwingfat', '2013-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS895965840794', 'Lillian Schmidt', 0, '+44 7837 657821', 3, '237566831460497972', 'Flat 36, 642 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-12-10', 0, 0, 'sclillian', '2016-03-07', 'schml', '2017-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS057783082404', 'Francis Mason', 1, '+81 90-1325-6065', 0, '924533490455288367', '日本おおさかし西成区天神ノ森二丁目1番16号38号室', '1998-09-28', 0, 0, 'mason1942', '2012-08-01', 'franmason', '2014-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS547020019895', '石川涼太', 0, '+81 11-518-1644', 2, '222302250382194527', '8F, 6-1-1, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1997-09-02', 0, 0, 'iryota', '2019-01-09', 'rish10', '2008-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS975863623696', 'Jimmy Herrera', 0, '+86 10-094-4253', 1, '677369716029839909', '中国北京市海淀区清河中街68号285号6室', '1993-11-26', 0, 0, 'herrerajimmy', '2010-11-20', 'herrerajimm10', '2019-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS345369138180', '莫子异', 1, '+86 184-3471-5842', 0, '918946221240560424', 'Room 25, 301 Binchuan Rd, Minhang District, Shanghai, China', '1996-04-20', 0, 0, 'mo10', '2004-01-16', 'ziym', '2021-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS118657811015', 'Eric Nelson', 0, '+81 80-3001-0891', 2, '247509711269625746', '日本おおさかし西成区天神ノ森二丁目1番10号32階', '1986-01-11', 0, 0, 'nelsoeric82', '2011-12-03', 'erin4', '2011-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS553356738355', '鐘慧珊', 0, '+86 194-9890-1040', 0, '417653381391173432', '中国北京市朝阳区三里屯路162号华润大厦29室', '1994-06-19', 0, 0, 'wsc', '2002-02-18', 'cws02', '2005-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS937807081070', 'Eugene Price', 1, '+81 3-4861-3620', 1, '352286749468530917', '3F, 5-2-13 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1985-09-29', 0, 0, 'preugene', '2007-11-14', 'eugenepric2', '2010-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS733257061955', '上野美月', 0, '+86 131-8369-2330', 2, '589644541496574194', 'Room 37, CR Building, 612 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1987-11-03', 0, 0, 'uemitsuki', '2007-07-02', 'mitsukiue', '2008-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS099064502229', '顾宇宁', 1, '+86 163-2257-5275', 3, '395975682316994068', 'No.6 building, 834 Middle Huaihai Road, Huangpu District, Shanghai, China', '1989-09-04', 0, 0, 'ygu', '2015-09-03', 'guyu', '2019-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS834008225224', 'Phillip Romero', 0, '+81 11-794-8366', 0, '954828498472617735', '日本札幌厚別区上野幌一条二丁目1番18号19号室', '1988-01-07', 0, 0, 'romerophillip7', '2002-03-11', 'phillipromero', '2016-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS363547530929', 'Donald Gutierrez', 1, '+86 760-285-0104', 0, '132786493502026685', '中国中山京华商圈华夏街372号3栋', '1987-04-30', 0, 0, 'gutierrezdo', '2019-05-29', 'doguti44', '2021-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS288486212143', '中山百花', 1, '+81 70-4852-2808', 4, '701092621989395572', 'Rm. 39, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1987-01-21', 0, 0, 'nakm405', '2011-01-07', 'momoka5', '2011-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS741808920790', '斉藤美月', 1, '+86 149-1488-3248', 3, '392294837272123088', '21F, 230 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1993-10-22', 0, 0, 'saitmit1218', '2016-09-05', 'mitsusai', '2021-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS424134845396', '蘇慧珊', 0, '+44 (161) 639 4085', 0, '411242388997290457', 'No.36 Main building, 101 Mosley St, Manchester, M2 3AQ, United Kingdom', '1997-04-13', 0, 0, 'wss827', '2012-02-09', 'waisan76', '2007-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS133571029113', 'Phillip Brooks', 1, '+86 21-9586-8912', 2, '097752597040699848', 'No.10 building, 209 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-03-11', 0, 0, 'phillipbrook', '2008-02-14', 'brookp', '2004-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS589098969905', '范岚', 1, '+44 (161) 856 4089', 3, '407932041330612878', 'No.4 Main building, 984 Mosley St, Manchester, M2 3AQ, United Kingdom', '1996-11-15', 0, 0, 'fan59', '2019-11-15', 'lanfan', '2015-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS746911306479', '高家文', 1, '+81 80-8104-2052', 2, '086339660712757853', '日本おおさかし近江堂一丁目7番1号3階', '1988-04-08', 0, 0, 'kaokaman10', '2019-11-29', 'kaoka520', '2000-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS649311713781', 'Willie Hamilton', 0, '+86 137-7340-0888', 0, '863591790964664493', 'No.25 building, 834 Shanhu Rd, Dongguan, China', '1998-11-23', 0, 0, 'hamw', '2017-09-27', 'williehamilton5', '2021-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS094167717176', '成德華', 1, '+86 197-6956-2514', 3, '644447810181487822', '中国成都市成华区二仙桥东三路832号华润大厦17室', '1996-07-27', 0, 0, 'takwah75', '2002-08-01', 'tws10', '2021-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS223135090635', '邱家明', 1, '+1 614-120-7758', 3, '168945834766200204', '908 East Alley Apt 18, Columbus, GA 43201, United States', '1989-07-05', 0, 0, 'kaming3', '2015-06-17', 'yaukaming101', '2009-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS306066824204', 'Pamela Morris', 0, '+44 5006 709495', 0, '197904414681963097', 'Flat 21, 956 Pollen Street, London, W1S 1NG, United Kingdom', '1998-03-24', 0, 0, 'pamelamo', '2001-11-16', 'pamemor4', '2003-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS806915250697', 'Mario Butler', 1, '+86 190-0275-0570', 1, '446900725510305454', '中国北京市西城区复兴门内大街753号15号楼', '1986-01-16', 0, 0, 'butlmario', '2003-06-07', 'mariobutl5', '2001-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS225586371636', 'Florence Murray', 1, '+44 7329 172146', 1, '599696626965108207', 'Flat 40, 608 Mosley St, Manchester, M2 3AQ, United Kingdom', '1986-12-24', 0, 0, 'flomurray', '2019-09-09', 'muflo', '2008-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS440982327392', '常杰宏', 0, '+1 213-159-2137', 3, '661443914372658492', '979 Alameda Street Suite 13, Los Angeles, CA 90002, United States', '1994-06-10', 0, 0, 'jiehchan', '2010-12-24', 'jichang', '2005-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS845282312035', 'Juanita Wells', 1, '+86 182-9492-2384', 2, '430918830758117751', 'No.10 building, 532 Tianhe Road, Tianhe District, Guangzhou, China', '1996-10-27', 0, 0, 'wejuani', '2012-11-06', 'weljuani', '2010-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS591231962353', 'Henry Mendoza', 0, '+81 70-9921-9233', 0, '475840412595268803', '31F, 13-3-4 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-12-16', 0, 0, 'hme2015', '2016-07-24', 'mendoza64', '2000-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS350011550218', '木村和真', 1, '+81 80-0590-3859', 4, '048715536594566906', '日本札幌白石区菊水三条五丁目2番11号46階', '1985-05-13', 0, 0, 'kimukazuma5', '2005-04-25', 'kimurak', '2016-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS113301602882', 'Michael Rodriguez', 0, '+81 11-013-2912', 2, '215124465748117495', 'Rm. 26, 2-1-3 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1987-12-10', 0, 0, 'michael204', '2019-01-24', 'michaelrodriguez', '2013-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS441640926170', '平野舞', 0, '+81 11-570-1166', 1, '449981311154223133', '日本札幌豊平区豊平三条十三丁目3番17号11階', '1998-11-06', 0, 0, 'hiranma3', '2001-06-24', 'hiranom', '2006-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS658518673751', 'Amber Torres', 0, '+44 7752 885803', 3, '452809966574061817', 'Block 7, 797 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1990-07-02', 0, 0, 'tamber5', '2007-02-17', 'ambert910', '2000-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS271240487116', 'Anthony Young', 1, '+86 755-649-5398', 2, '067326881750480016', 'No.10 building, 409 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1994-03-16', 0, 0, 'youanthony', '2013-07-28', 'anthonyy116', '2011-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS380364776688', 'Marie Tran', 0, '+86 141-4280-5114', 1, '444825620783948836', 'Room 23, CR Building, 140 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1993-01-17', 0, 0, 'marietr', '2008-07-09', 'trma1204', '2009-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS035820147321', '叶詩涵', 1, '+86 156-6547-2875', 2, '610999563745547084', 'Room 26, 393 Yueliu Rd, Fangshan District, Beijing, China', '1993-12-02', 0, 0, 'yeshih', '2003-02-10', 'sye', '2013-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS490128343947', '丁子异', 0, '+1 312-755-0843', 0, '426137074731486927', '262 Pedway Apartment 34, Chicago, IL 60601, United States', '1996-06-25', 0, 0, 'dingziyi', '2003-05-22', 'dziyi62', '2000-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS393777106650', '白慧敏', 0, '+81 90-4240-2625', 3, '198085316394930086', 'Rm. 40, 1-6-16, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1998-09-26', 0, 0, 'wmpak511', '2012-12-31', 'waimanpa75', '2020-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS656616561355', '竹内美緒', 0, '+86 755-4572-9910', 3, '596178038040037872', '中国深圳罗湖区田贝一路593号37室', '1988-04-17', 0, 0, 'takmio', '2017-10-07', 'takeuchi7', '2000-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS761098597790', 'Anthony Aguilar', 0, '+1 213-398-1550', 2, '891650797240670263', '868 S Broadway Apt 5, Los Angeles, CA 90015, United States', '1990-03-06', 0, 0, 'aguilar1996', '2019-02-16', 'aguilaran', '2021-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS043707882096', '村田聖子', 1, '+81 11-562-3217', 1, '098152551041712865', '9F, 5-2-20 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1998-03-10', 0, 0, 'semurata14', '2004-05-06', 'seiko77', '2014-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS216557790010', '原大輔', 1, '+1 838-896-0469', 1, '426810238579091907', '139 Lark Street Apt 2, Albany, NY 12210, United States', '1986-12-19', 0, 0, 'daisuhara', '2018-03-28', 'daisukeh4', '2002-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS217066093509', 'Jennifer Jones', 0, '+86 755-470-9556', 4, '583605508652270550', '中国深圳罗湖区蔡屋围深南东路818号4号楼', '1987-04-15', 0, 0, 'jennifer6', '2011-11-17', 'jennifer405', '2013-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS673244384991', 'Lillian Stephens', 0, '+86 173-9502-9317', 3, '957463845157346213', 'Room 46, 924 West Chang''an Avenue, Xicheng District, Beijing, China', '1989-05-28', 0, 0, 'stephenslillian1', '2002-04-30', 'stephlillian', '2001-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS134287550763', '吴安琪', 1, '+1 614-880-5661', 2, '535934798731810299', '40 Diplomacy Drive Suite 42, Columbus, GA 43228, United States', '1994-04-24', 0, 0, 'wanqi', '2009-06-14', 'wu524', '2019-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS833835425514', '内田陸', 1, '+86 21-472-9644', 1, '703486998254930730', '50F, 641 Jianxiang Rd, Pudong, Shanghai, China', '1987-12-28', 0, 0, 'uriku', '2017-09-08', 'rikuuchida60', '2009-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS705087496684', '范杰宏', 1, '+81 90-2887-8052', 3, '747807417785288670', '日本おおさかし平野区加美東四丁目9番14号9階', '1998-03-12', 0, 0, 'fan430', '2019-06-06', 'jiehf', '2009-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS600641698252', '贺睿', 1, '+81 52-740-7836', 1, '156744279711055170', '29F, 3-19-17 Shimizu, Kita Ward, Nagoya, Japan', '1992-12-07', 0, 0, 'he6', '2021-06-29', 'her', '2005-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS663766300744', '譚榮發', 0, '+81 3-8401-0330', 3, '546475733410750837', '日本東京品川区東五反田五丁目2番11号1階', '1995-10-28', 0, 0, 'tamwingfat', '2005-01-20', 'tamwf', '2001-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS489259074098', '莫安琪', 0, '+86 175-9081-7237', 2, '135126600257400169', 'Room 46, 126 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1994-06-18', 0, 0, 'mokon4', '2002-05-25', 'okmok8', '2022-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS190903080479', '苗慧珊', 1, '+81 74-851-7510', 2, '536324468285187507', '日本ならし学園南三丁目9番7号48階', '1986-08-01', 0, 0, 'wsm', '2010-09-21', 'miuws', '2002-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS626496471227', '樂國榮', 1, '+1 330-502-2843', 1, '397224362062142891', '707 Fern Street Apt 38, Akron, OH 44307, United States', '1985-05-29', 0, 0, 'lok6', '2016-05-18', 'kwl603', '2013-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS450253260580', '白惠敏', 0, '+81 52-603-3964', 0, '011729392057152856', '20-kai, 15 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1996-03-04', 0, 0, 'wmpak', '2004-06-10', 'wmpak', '2004-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS643127889954', '杜榮發', 0, '+81 52-066-9449', 3, '636219691945200823', 'Rm. 49, 20 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-08-26', 0, 0, 'towf', '2019-05-02', 'towf', '2016-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS155493801603', '石井光', 1, '+81 11-505-4687', 3, '194400026589171203', 'Rm. 12, 2-1-11 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1995-07-10', 0, 0, 'ihika1119', '2016-08-24', 'hikaru4', '2014-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS186497205130', 'David Myers', 0, '+81 74-539-5052', 3, '003033727164552279', '44F, 1-7-18 Saidaiji Akodacho, Nara, Japan', '1996-04-25', 0, 0, 'mdavi', '2017-04-10', 'davidmyers', '2002-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS221948611046', '鈴木涼太', 1, '+86 130-8669-4638', 1, '454013504006642669', 'No.13 building, 614 Kengmei 15th Alley, Dongguan, China', '1993-11-14', 0, 0, 'suzukiryota', '2015-10-19', 'ryota5', '2001-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS323413177135', 'Ernest Brooks', 1, '+44 (116) 617 3673', 1, '809295630992161728', 'Block 4, 520 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1991-09-19', 0, 0, 'brerne4', '2006-05-07', 'ernest3', '2002-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS867658223607', '安藤大和', 1, '+81 90-5450-1551', 0, '441550374089080264', '日本なごやし守山区瀬古東二丁目171番12号17階', '1998-04-03', 0, 0, 'yamatando', '2017-12-11', 'yamato55', '2000-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS782177358011', '車青雲', 1, '+44 5359 496544', 3, '325595099399075372', 'Block 36, 853 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1993-06-29', 0, 0, 'chiche', '2021-01-13', 'cwch', '2021-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS634169353670', '張發', 0, '+81 90-3164-7855', 3, '368993302323020727', '35-kai, 2-1-14 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1989-12-27', 0, 0, 'fatche', '2015-02-19', 'fat2008', '2014-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS696202567660', '橋本光', 0, '+86 176-7665-5541', 0, '757739834392539124', 'Room 36, CR Building, 287 FuXingMenNei Street, XiCheng District, Beijing, China', '1987-08-04', 0, 0, 'hh719', '2000-05-04', 'hashimotohikaru', '2011-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS626477610256', '邱震南', 0, '+81 3-4619-2602', 1, '077781033824063563', '23F, 1-6-13, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1990-07-08', 0, 0, 'zqiu411', '2012-02-07', 'zhenq', '2003-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS202070854394', 'Connie Hill', 1, '+81 70-5362-5822', 4, '541681824812682461', 'Rm. 35, 3-15-2 Ginza, Chuo-ku, Tokyo, Japan', '1994-09-19', 0, 0, 'hillco', '2022-01-08', 'hill90', '2001-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS215703669832', '黎思妤', 1, '+1 312-804-6241', 3, '374979433646641213', '719 Rush Street Suite 34, Chicago, IL 60611, United States', '1993-07-19', 0, 0, 'syla10', '2008-12-30', 'sylai10', '2011-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS508695362080', '白俊宇', 0, '+86 180-7162-3177', 1, '121380390722576044', '13F, 969 Middle Huaihai Road, Huangpu District, Shanghai, China', '1994-07-06', 0, 0, 'chunyu1972', '2015-11-13', 'chp69', '2016-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS321816496208', '區學友', 0, '+1 838-064-1184', 4, '964277224399757998', '582 Central Avenue Suite 9, Albany, NY 12206, United States', '1985-01-23', 0, 0, 'auhokyau210', '2004-02-16', 'auhy1', '2005-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS931527264578', '車國賢', 1, '+86 10-222-3023', 2, '997354331678619033', '中国北京市房山区岳琉路650号33号楼', '1989-06-13', 0, 0, 'kwokyinche', '2003-10-25', 'ckwokyin', '2009-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS839119044496', 'Luis Adams', 0, '+81 52-723-7232', 0, '285770922530272130', '9-kai, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-05-05', 0, 0, 'adamsluis113', '2009-10-01', 'adamsl', '2002-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS410960798359', '孔岚', 0, '+86 188-5027-7686', 0, '451491990329786640', '44F, 344 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1996-04-17', 0, 0, 'konla49', '2008-07-25', 'kolan1985', '2007-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS437171076513', 'Lawrence Simmons', 0, '+81 70-8023-9997', 1, '989613339580951562', '41-kai, 1-7-5 Omido, Higashiosaka, Osaka, Japan', '1993-10-03', 0, 0, 'lasimmons', '2015-02-13', 'lawrs5', '2013-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS142049680849', '莫國賢', 1, '+81 3-3765-3175', 2, '037322668193837402', '日本東京品川区東五反田五丁目2番3号7階', '1985-09-07', 0, 0, 'mok221', '2009-01-22', 'mokkwokyin', '2015-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS330700303414', '汪詩涵', 0, '+86 142-7279-0879', 3, '102478925218691283', 'No.10 building, 195 Middle Huaihai Road, Huangpu District, Shanghai, China', '1987-12-26', 0, 0, 'wangsh45', '2001-05-02', 'washih221', '2009-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS041083665269', '竹内結翔', 0, '+86 20-661-6083', 0, '650224338142312090', '中国广州市白云区小坪东路707号华润大厦11室', '1994-03-23', 0, 0, 'yuitotak', '2006-06-15', 'takeuyuito', '2013-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS275185356412', '蒋璐', 1, '+81 11-171-3767', 3, '494530552631910228', '日本札幌厚別区上野幌一条二丁目1番16号28階', '1992-11-22', 0, 0, 'jiang3', '2003-02-04', 'jlu1', '2007-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS926545767957', '青木翼', 0, '+81 74-833-3005', 2, '396383676218450646', '日本ならし大和郡山市本庄町一丁目1番18号16階', '1992-04-12', 0, 0, 'tsubasa1126', '2004-07-12', 'aokitsubasa', '2004-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS737117078828', '河野陸', 1, '+44 (1223) 72 1491', 0, '454604529231960692', 'Unit 48, Oxford Eco Centre, 759 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1992-10-01', 0, 0, 'rikkono', '2011-09-15', 'rikukono96', '2011-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS139619918212', '黄璐', 1, '+86 760-5315-0289', 3, '729595051081555318', '19F, 434 Lefeng 6th Rd, Zhongshan, China', '1986-06-20', 0, 0, 'lh403', '2021-04-17', 'huang00', '2001-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS922110010298', '菊地彩乃', 1, '+86 10-1203-5965', 3, '825157817335955026', '中国北京市东城区东单王府井东街508号华润大厦27室', '1992-09-19', 0, 0, 'kikucayan05', '2011-07-06', 'ayanok', '2004-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS005978364215', '宮崎葉月', 1, '+86 185-2905-7625', 3, '552525763363893615', '中国上海市浦东新区橄榄路118号华润大厦35室', '1993-09-10', 0, 0, 'hazukimiyazaki2004', '2019-10-11', 'hazukimi1023', '2016-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS710188575623', '汤安琪', 0, '+44 (151) 645 7504', 0, '397205868833601942', 'No.21 Main building, 868 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1997-09-12', 0, 0, 'tanga', '2002-01-06', 'tangan3', '2009-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS942086757026', '于子异', 0, '+86 196-1816-7379', 3, '452014541043973127', 'Room 13, CR Building, 539 East Wangfujing Street, Dongcheng District , Beijing, China', '1987-10-21', 0, 0, 'yuziy3', '2001-08-10', 'yuziyi', '2004-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS184080574853', '杜震南', 0, '+44 5063 970358', 2, '199116447164786915', 'Block 9, 91 Portland St, Manchester, M1 3LA, United Kingdom', '1995-04-09', 0, 0, 'duz', '2002-09-02', 'zhennd', '2016-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS616725674362', '陳天樂', 1, '+81 90-6548-3498', 0, '374750587131527986', '30-kai, 3-19-19 Shimizu, Kita Ward, Nagoya, Japan', '1990-08-06', 0, 0, 'ctinlok', '2021-05-24', 'chtinlok', '2021-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS177421218995', 'Anne Fox', 1, '+81 52-124-7591', 1, '325330708218892613', '日本なごやし熱田区千年二丁目5番18号12号室', '1985-06-09', 0, 0, 'annefox411', '2005-05-12', 'foxanne', '2001-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS819872701544', '佐野光', 0, '+1 212-359-1910', 0, '524061777671833031', '832 Wooster Street 3rd Floor, New York, NY 10012, United States', '1985-12-25', 0, 0, 'sanohikar', '2012-05-21', 'sanohikaru1', '2010-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS111751480984', '遠藤大輔', 0, '+81 74-439-5216', 0, '115933323058976206', 'Rm. 46, 3-9-17 Gakuenminami, Nara, Japan', '1991-05-13', 0, 0, 'de14', '2003-06-16', 'daen', '2005-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS373406418403', '马子异', 1, '+81 3-6047-4253', 4, '714387702125104904', '日本東京品川区東五反田五丁目2番17号48階', '1996-04-22', 0, 0, 'zm324', '2009-09-25', 'maziyi', '2015-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS027147064615', '市川一輝', 1, '+86 769-4894-9133', 2, '615430936104873924', '44F, 470 Dongtai 5th St, Dongguan, China', '1986-10-31', 0, 0, 'ichikki', '2017-12-05', 'iikki', '2009-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS050445743957', '文明詩', 1, '+86 10-254-2193', 1, '219511489883535844', '中国北京市海淀区清河中街68号572号华润大厦16室', '1993-03-30', 0, 0, 'mingsze309', '2002-08-19', 'manmingsze', '2020-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS480880527899', '梅詠詩', 1, '+44 (161) 991 9138', 3, '917734239665429908', 'Unit 1, Oxford Eco Centre, 720 Sackville St, Manchester, M1 3BB, United Kingdom', '1985-07-14', 0, 0, 'muiws', '2017-09-26', 'muwingsze', '2017-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS201512241620', '石井蒼士', 0, '+81 70-0688-5582', 2, '125914684697119674', '29-kai, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1989-06-05', 0, 0, 'aishii1228', '2011-10-27', 'aosishii', '2005-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS605329602015', '廖學友', 1, '+44 (1223) 63 1198', 2, '851735412939204099', 'No.14 Main building, 794 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1991-12-14', 0, 0, 'liao10', '2017-06-24', 'hokyaulia', '2004-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS984815395219', '坂本玲奈', 0, '+81 11-942-4448', 3, '385867000494440124', '日本札幌白石区菊水三条五丁目4番3号33階', '1986-03-24', 0, 0, 'renasakamoto', '2021-10-22', 'sakamotor802', '2013-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS363938916660', '陈致远', 0, '+81 80-6033-7681', 2, '074185067339942270', '日本ならし西大寺赤田町一丁目7番3号40階', '1990-03-07', 0, 0, 'chenzhiyuan601', '2000-05-21', 'chenzhiyuan', '2015-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS617815265282', '伍永權', 0, '+1 213-152-7015', 1, '979654969656949379', '739 Figueroa Street Apt 25, Los Angeles, CA 90037, United States', '1994-03-04', 0, 0, 'ng90', '2004-11-29', 'wkng', '2019-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS028781089121', '曹國權', 0, '+81 80-3816-2866', 0, '866739476594601477', '日本ならし西大寺赤田町一丁目7番2号30号室', '1987-08-09', 0, 0, 'kwokkuen90', '2001-02-28', 'chokk', '2008-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS549255544885', '田富城', 1, '+81 52-748-8184', 1, '770164358194641937', 'Rm. 35, 3-19-3 Shimizu, Kita Ward, Nagoya, Japan', '1989-06-01', 0, 0, 'fushingtin6', '2003-11-11', 'tinfs4', '2019-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS800279959575', '横山大和', 0, '+86 755-8274-9860', 1, '180274106994039209', 'No.33 building, 969 Shennan Ave, Futian District, Shenzhen, China', '1991-08-04', 0, 0, 'yokyama1219', '2018-11-12', 'yy1', '2018-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS748960604079', '長谷川美月', 0, '+81 70-8299-0745', 2, '735528285340469427', '日本なごやし北区清水三丁目19番10号46階', '1992-01-30', 0, 0, 'mitshaseg202', '2016-03-19', 'hasegawamitsuki', '2021-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS010489735375', '中森陸', 0, '+81 70-6480-3362', 3, '176038617304351121', '日本なごやし熱田区千年二丁目5番10号4号室', '1985-07-17', 0, 0, 'riku2', '2006-03-22', 'rikunak115', '2011-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS147510867282', '成明詩', 1, '+1 330-964-5030', 0, '610763984526942651', '14 Collier Road 3rd Floor, Akron, OH 44320, United States', '1986-11-22', 0, 0, 'shingmingsze904', '2018-05-05', 'shingms', '2001-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS548724509217', '段致远', 1, '+86 21-8313-4093', 4, '838440203995268990', 'No.29 building, 663 Jianxiang Rd, Pudong, Shanghai, China', '1994-07-02', 0, 0, 'duanz', '2002-12-25', 'duan1958', '2000-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS050766437377', '駱梓軒', 1, '+86 170-5882-7258', 0, '947864874592953956', '中国上海市浦东新区健祥路426号华润大厦34室', '1985-05-22', 0, 0, 'thlo', '2019-02-26', 'thl69', '2013-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS158540750602', '岡田光莉', 0, '+44 5436 854534', 2, '203439434320064234', 'Unit 49, Oxford Eco Centre, 925 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1992-01-11', 0, 0, 'okadahikari', '2003-08-02', 'okadahikari110', '2016-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS930490217277', 'Norma Garcia', 0, '+81 90-9178-9518', 1, '684817115163674984', '40F, 2-5-18 Chitose, Atsuta Ward, Nagoya, Japan', '1993-07-23', 0, 0, 'normagar', '2018-09-06', 'norma916', '2020-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS959444034242', '伍詩君', 0, '+86 28-687-9047', 3, '441439042506588932', 'No.3 building, 477 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1994-04-25', 0, 0, 'ngsze2', '2021-11-23', 'nsk75', '2002-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS219937068974', '郭岚', 1, '+86 167-0123-6571', 1, '299559403302043881', 'Room 47, 278 Shanhu Rd, Dongguan, China', '1992-10-09', 0, 0, 'guolan91', '2021-03-29', 'guol', '2007-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS328614565621', '常秀英', 0, '+86 193-6457-7029', 3, '718571659724748452', '33F, 669 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1994-11-08', 0, 0, 'changx', '2000-11-06', 'changx', '2017-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS764362577480', 'Louis Mendez', 0, '+1 213-983-5312', 1, '998514953288104895', '899 Figueroa Street Apt 9, Los Angeles, CA 90037, United States', '1992-10-28', 0, 0, 'loum86', '2020-09-21', 'ml1220', '2020-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS671826729951', '卢璐', 1, '+1 614-236-6243', 0, '763970203506695584', '300 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1990-02-03', 0, 0, 'lulu', '2013-02-28', 'lul55', '2006-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS861817612614', '梅青雲', 0, '+1 212-451-8497', 2, '622463073730361077', '344 Bank Street 3rd Floor, New York, NY 10014, United States', '1989-10-01', 0, 0, 'mchingwan', '2005-03-02', 'cwmui', '2015-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS680253486205', 'Eric Bailey', 0, '+44 (1865) 17 9422', 4, '580006490993597390', 'Unit 43, Oxford Eco Centre, 362 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1997-02-25', 0, 0, 'bailey219', '2000-06-07', 'bailey3', '2020-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS906986422140', 'Katherine Hamilton', 0, '+86 159-8603-7020', 2, '744364843514316452', 'Room 4, 581 Ganlan Rd, Pudong, Shanghai, China', '1986-04-17', 0, 0, 'hamkathe531', '2016-12-03', 'khamilton803', '2020-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS030065826632', 'Heather Harris', 0, '+86 769-1468-7387', 4, '821092433610531936', '中国东莞坑美十五巷459号35号楼', '1991-07-20', 0, 0, 'heathharris', '2001-06-16', 'harhe40', '2015-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS909395237540', 'Ronald Robertson', 1, '+44 5541 872692', 2, '290024402825071723', 'Flat 9, 331 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1997-08-26', 0, 0, 'rr1', '2005-06-10', 'roberronald', '2016-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS281648147810', '石震南', 1, '+1 838-266-0735', 2, '354012304818817015', '149 State Street Apt 3, Albany, NY 12203, United States', '1985-10-14', 0, 0, 'zshi611', '2014-06-07', 'shizhennan628', '2004-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS629548641116', 'Fred Patterson', 0, '+81 66-612-6727', 0, '688047689070279121', '14-kai, 2-1-9 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1991-01-13', 0, 0, 'fred1950', '2014-02-08', 'pattersonfr48', '2013-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS841802211273', '江榮發', 0, '+81 80-8157-0807', 2, '045010638490602641', '36F, 4 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-03-18', 0, 0, 'wingfatkon113', '2019-06-26', 'kongwingfat4', '2012-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS710393685104', 'Peter Gray', 0, '+44 (1223) 79 1967', 1, '678420234236648622', 'Block 36, 318 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1993-01-09', 0, 0, 'gray1003', '2020-10-03', 'pgray', '2001-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS152255208805', '袁嘉伦', 1, '+81 80-3599-4709', 3, '328665415826261835', '35-kai, 5-2-15 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1994-09-02', 0, 0, 'jialuyuan', '2014-05-22', 'yuajialu', '2017-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS635581327271', '钟震南', 0, '+44 (151) 943 1790', 3, '093698448482276602', 'No.28 Main building, 424 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1990-03-18', 0, 0, 'zhong51', '2008-08-31', 'zhenzhong', '2012-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS846412227780', '杨詩涵', 1, '+44 5795 012359', 3, '477640182553816605', 'Unit 46, Oxford Eco Centre, 242 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1996-12-05', 0, 0, 'shihayang', '2001-02-14', 'shihanya', '2008-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS047655249565', 'Wanda Harrison', 0, '+1 838-019-8477', 1, '896256894998653885', '464 Lark Street Apartment 20, Albany, NY 12210, United States', '1994-06-11', 0, 0, 'harrwanda1979', '2010-11-25', 'wanh', '2008-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS468341312172', '赵致远', 1, '+44 5123 625949', 1, '094934595340908164', 'Unit 21, Oxford Eco Centre, 991 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1986-09-17', 0, 0, 'zhizhao', '2006-01-27', 'zhiyuzhao4', '2014-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS133145659817', '鐘頴璇', 0, '+44 5031 532060', 1, '654655846576208880', 'No.40 Main building, 894 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1986-06-06', 0, 0, 'chungws', '2013-12-03', 'chungws', '2000-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS954792513397', '阿部光莉', 0, '+86 164-0868-8787', 1, '560515523054992493', 'Room 38, 902 Xiaoping E Rd, Baiyun , Guangzhou, China', '1986-07-03', 0, 0, 'hikari7', '2021-09-06', 'ahikari', '2008-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS296187976980', '许晓明', 1, '+86 181-4186-7489', 3, '266986613852660119', '中国东莞坑美十五巷826号24栋', '1991-10-12', 0, 0, 'xiaoming1', '2000-07-15', 'xu3', '2022-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS803220991823', '柴田葵', 1, '+81 74-833-6243', 2, '946068918342836268', '日本ならし学園南三丁目9番17号17階', '1990-12-31', 0, 0, 'aoshibata', '2007-09-08', 'aoish', '2000-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS625802390414', '金子詩乃', 1, '+81 74-284-3328', 2, '770070123577789558', '日本ならし大和郡山市本庄町一丁目1番10号44号室', '1991-10-17', 0, 0, 'kanekoshino', '2013-06-22', 'kaneko8', '2012-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS275667342923', '谷口瑛太', 1, '+86 769-035-9021', 2, '001325934004937329', 'Room 15, CR Building, 39 Kengmei 15th Alley, Dongguan, China', '1995-05-31', 0, 0, 'taniguchieita', '2006-08-21', 'taniguchi9', '2009-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS663839693142', '小林蓮', 1, '+86 135-9421-4689', 2, '532630708870072396', '42F, 531 East Wangfujing Street, Dongcheng District , Beijing, China', '1986-11-13', 0, 0, 'renkobayashi', '2008-11-06', 'ren49', '2009-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS529901962089', 'Kenneth Diaz', 1, '+81 80-5282-5856', 4, '838941931173157055', '日本東京中央区銀座三丁目12番1号10階', '1991-10-31', 0, 0, 'diaz4', '2007-12-28', 'diazken', '2017-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS779653450378', '韓惠敏', 0, '+81 3-7954-3102', 1, '221932352178302060', '日本東京品川区東五反田五丁目2番18号34号室', '1986-04-28', 0, 0, 'waimanh3', '2015-01-23', 'wmha74', '2006-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS165510777294', '前田百花', 1, '+86 21-6834-8421', 0, '531765515048791297', '中国上海市闵行区宾川路785号华润大厦39室', '1990-11-02', 0, 0, 'mmomoka', '2002-02-15', 'maedamomoka45', '2004-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS178104212450', '赵云熙', 0, '+44 5047 739495', 3, '983823061360150470', 'Flat 18, 72 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1988-05-11', 0, 0, 'zhao1985', '2013-08-05', 'yunxizhao', '2020-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS599014639142', '大野聖子', 0, '+86 20-7318-2083', 2, '204916609428787723', '中国广州市天河区天河路887号47楼', '1992-11-19', 0, 0, 'sono5', '2014-06-20', 'oseiko', '2019-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS059113966915', '馮秀文', 1, '+44 5288 453967', 4, '047517017864002393', 'Unit 4, Oxford Eco Centre, 354 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1987-02-02', 0, 0, 'fungsm1106', '2012-08-31', 'saumanfung', '2003-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS350316271846', '大塚葉月', 1, '+1 330-135-4277', 3, '635663196505452432', '879 Fern Street Suite 33, Akron, OH 44307, United States', '1993-01-19', 0, 0, 'otsukah6', '2001-06-24', 'otsuka211', '2007-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS347269365448', '高橋架純', 1, '+86 167-3590-8309', 1, '974970229043192966', '中国成都市锦江区红星路三段15号华润大厦47室', '1993-12-05', 0, 0, 'takahashikasu', '2003-04-02', 'takahashika', '2007-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS629964128586', 'Charles Munoz', 0, '+86 196-1424-3953', 4, '406892832405522971', '中国上海市浦东新区橄榄路401号9楼', '1995-06-11', 0, 0, 'charles306', '2018-11-26', 'charlesmunoz', '2002-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS579879797667', '侯致远', 0, '+81 74-157-6392', 3, '840771154183713660', 'Rm. 10, 3-9-14 Gakuenminami, Nara, Japan', '1990-11-27', 0, 0, 'zhou9', '2002-12-08', 'zhiyuanh', '2016-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS696092247100', '松本玲奈', 1, '+1 212-788-8113', 3, '689850228672497895', '758 Bank Street Apt 29, New York, NY 10014, United States', '1991-02-04', 0, 0, 'matsumoto619', '2020-10-20', 'rena41', '2018-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS492761007532', '内田美月', 1, '+1 312-139-7775', 1, '922168661440634812', '828 North Michigan Ave Apt 19, Chicago, IL 60611, United States', '1992-08-01', 0, 0, 'umitsuki', '2000-10-28', 'uchida5', '2002-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS778238541551', '彭睿', 1, '+86 755-3568-6397', 3, '338922204384272800', 'Room 50, CR Building, 91 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1985-09-01', 0, 0, 'per', '2016-05-22', 'peng5', '2014-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS084714874463', '廖子异', 1, '+81 52-799-1447', 3, '241023437175474561', '31-kai, 7 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-01-04', 0, 0, 'ziliao', '2006-09-26', 'ziliao98', '2011-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS350003465696', '李睿', 1, '+44 (116) 151 7209', 1, '443008330516643169', 'Block 8, 74 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-04-07', 0, 0, 'rul6', '2012-02-19', 'ruli', '2005-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS718402713030', '林淑怡', 0, '+81 66-389-4043', 3, '983515727930736826', '30-kai, 1-1-8 Deshiro, Nishinari Ward, Osaka, Japan', '1997-03-23', 0, 0, 'lamsy10', '2011-02-04', 'lamsy', '2014-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS075677555885', '马晓明', 0, '+86 10-0194-0875', 3, '922292488726951850', '中国北京市东城区东单王府井东街145号华润大厦15室', '1989-03-31', 0, 0, 'maxi', '2010-03-13', 'max', '2009-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS354664496695', '阮慧儀', 0, '+1 312-080-1241', 3, '851146959146084073', '242 Rush Street Apt 14, Chicago, IL 60611, United States', '1996-12-12', 0, 0, 'ywy923', '2002-04-10', 'waiyeey', '2010-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS218325402577', '张璐', 1, '+1 213-033-4644', 2, '270693165348515702', '943 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1985-08-03', 0, 0, 'zhanglu', '2010-08-19', 'lzhang', '2012-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS995154593953', '雷惠敏', 1, '+81 74-140-4624', 3, '874040169474704144', 'Rm. 47, 3-9-2 Gakuenminami, Nara, Japan', '1992-02-11', 0, 0, 'louwm', '2016-03-09', 'wml1986', '2014-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS845022048397', '木下彩乃', 0, '+44 5040 829112', 3, '338124104270644779', 'Block 13, 906 New Street, Birmingham, B2 4DB, United Kingdom', '1994-04-24', 0, 0, 'ayanokino', '2015-11-12', 'kinoshitaayano07', '2002-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS191618350085', '朱世榮', 0, '+86 168-7947-7677', 3, '080075115306492674', '中国上海市浦东新区橄榄路207号4栋', '1988-12-03', 0, 0, 'chsaiwing10', '2021-04-21', 'chusw', '2001-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS238682363638', 'Norma Stephens', 0, '+44 7165 279255', 3, '461641435986878926', 'Block 38, 286 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1985-02-17', 0, 0, 'normastephens6', '2015-05-09', 'stephensnorma', '2009-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS261205690132', '邵仲賢', 0, '+86 28-073-3631', 3, '893096965789257288', 'No.3 building, No. 258, Shuangqing Rd, Chenghua District, Chengdu, China', '1996-04-03', 0, 0, 'chungyinsiu', '2001-02-23', 'sicy619', '2010-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS299173868450', '谷秀文', 0, '+81 90-2021-0634', 1, '571423501840119888', 'Rm. 10, 3-9-9 Gakuenminami, Nara, Japan', '1995-12-27', 0, 0, 'koosauman', '2015-12-11', 'sauman710', '2009-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS504871600760', '胡嘉伦', 1, '+1 213-484-0233', 3, '638961138664704945', '633 Wall Street Suite 14, Los Angeles, CA 90003, United States', '1985-06-28', 0, 0, 'jh918', '2010-02-10', 'hujial', '2001-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS467684075154', '姚永權', 0, '+1 614-578-7782', 1, '822591525081247015', '287 Diplomacy Drive Apt 39, Columbus, GA 43228, United States', '1987-05-27', 0, 0, 'wkyeow8', '2015-06-18', 'yeowwingkuen', '2022-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS572897933894', '清水結翔', 0, '+86 10-4826-0508', 1, '160071124577302015', 'Room 24, CR Building, 942 028 County Rd, Yanqing District, Beijing, China', '1988-11-18', 0, 0, 'yuitshim', '2020-11-20', 'yuito3', '2002-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS123101035791', '范宇宁', 0, '+44 5376 745520', 3, '674881839332948383', 'Flat 14, 422 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1989-10-27', 0, 0, 'fan609', '2013-10-09', 'fayuning2', '2008-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS518234595481', 'Alexander Cox', 0, '+44 7053 965855', 0, '885065620890826294', 'Flat 39, 936 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1998-10-29', 0, 0, 'alexaco', '2017-04-11', 'cox10', '2010-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS878503844739', 'Brandon Russell', 0, '+81 66-189-5502', 1, '273351064896376001', '日本おおさかし平野区加美東四丁目9番12号11号室', '1990-09-14', 0, 0, 'brandon7', '2008-05-18', 'brandon08', '2002-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS342301322957', '桜井陽太', 0, '+86 769-7621-9888', 1, '501819064038029409', '中国东莞环区南街二巷774号38栋', '1994-11-29', 0, 0, 'yotsak', '2010-11-02', 'sakyota1111', '2018-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS094340427503', '熊子韬', 1, '+86 196-5014-4801', 1, '665453903582778676', '中国深圳罗湖区蔡屋围深南东路767号16栋', '1985-02-07', 0, 0, 'zitao88', '2001-08-09', 'zitaxio', '2005-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS454164645084', '郭子异', 1, '+81 80-9158-0789', 2, '651038127170845143', 'Rm. 32, 5-4-16 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1994-05-31', 0, 0, 'ziygu4', '2021-09-23', 'zgu111', '2000-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS164753795875', 'Barbara Freeman', 1, '+1 718-677-7530', 4, '353520852447918567', '791 1st Ave Suite 7, Brooklyn, NY 11220, United States', '1992-06-25', 0, 0, 'freemanbarbara', '2015-07-02', 'freb3', '2015-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS819507698627', 'Margaret Hamilton', 1, '+44 5835 158145', 1, '811574126806702125', 'Block 36, 138 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-02-25', 0, 0, 'marghamilton', '2016-12-10', 'mhami', '2018-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS950874404183', 'Danielle Holmes', 0, '+86 195-0674-5411', 3, '082570254994128642', '中国广州市白云区小坪东路563号8室', '1997-03-22', 0, 0, 'hdanie', '2012-07-09', 'holmesda5', '2009-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS602865032049', '木下百花', 1, '+1 312-979-6870', 0, '217145963581486899', '331 Pedway 3rd Floor, Chicago, IL 60601, United States', '1998-07-07', 0, 0, 'momokakinos2004', '2013-05-06', 'momoka428', '2007-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS226830798323', '高云熙', 1, '+1 330-653-3454', 0, '562419784618563462', '424 Riverview Road Apartment 7, Akron, OH 44313, United States', '1995-10-13', 0, 0, 'yuga', '2011-01-02', 'gyunxi301', '2017-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS296309766515', '江嘉伦', 0, '+86 755-7408-0419', 4, '852743727138618222', '中国深圳罗湖区田贝一路745号华润大厦9室', '1992-04-11', 0, 0, 'jiang5', '2015-10-26', 'jjiang', '2013-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS636475255211', '林大輔', 0, '+86 131-2691-2510', 3, '354677797973978223', 'Room 34, 632 Dong Zhi Men, Dongcheng District, Beijing, China', '1995-03-12', 0, 0, 'daish92', '2017-02-03', 'hayd', '2019-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS731303732860', 'Crystal Scott', 1, '+86 769-0336-6805', 3, '897907589733162016', '中国东莞坑美十五巷407号35栋', '1995-05-12', 0, 0, 'sc1', '2006-05-19', 'crystscott', '2001-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS881537422657', '于杰宏', 1, '+86 188-3796-1345', 0, '517699548373251366', 'Room 46, 276 Huanqu South Street 2nd Alley, Dongguan, China', '1998-11-13', 0, 0, 'jiehong02', '2002-04-04', 'jiyu', '2020-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS892665985957', '钟子异', 0, '+86 760-128-1355', 3, '665979910778788510', '10F, 399 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1986-02-22', 0, 0, 'zhzi719', '2008-12-03', 'zhoziy2', '2018-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS095048737913', 'Christopher Cruz', 0, '+86 769-7688-0103', 4, '291679128199169935', '39F, 89 Shanhu Rd, Dongguan, China', '1989-06-05', 0, 0, 'cruz727', '2005-03-10', 'ccruz', '2021-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS376011603138', 'Allen Parker', 1, '+86 10-336-9436', 0, '681504103655804880', '中国北京市海淀区清河中街68号504号31室', '1987-11-07', 0, 0, 'allen4', '2022-03-05', 'parkall', '2011-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS503866160408', '洪德華', 0, '+86 10-541-8037', 4, '100260680084597068', '15F, 648 FuXingMenNei Street, XiCheng District, Beijing, China', '1990-05-09', 0, 0, 'hungtakwah301', '2013-04-25', 'twhun', '2009-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS406372344431', 'Danny Russell', 0, '+1 213-671-6701', 1, '162320708576246822', '475 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1987-12-22', 0, 0, 'dannyru', '2002-05-23', 'russelldanny423', '2000-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS270186988976', '蔡嘉伦', 1, '+81 80-0433-9961', 2, '825909990460319894', 'Rm. 38, 5-19-3 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-01-13', 0, 0, 'cai719', '2017-08-10', 'jialuncai', '2006-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS242987439286', 'Susan Marshall', 1, '+81 11-544-1367', 1, '934427226593419234', '日本札幌白石区菊水三条五丁目2番20号9階', '1989-04-30', 0, 0, 'susanmars917', '2014-08-17', 'susm', '2009-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS023789167457', '陳安娜', 1, '+81 52-367-8592', 2, '299624449652192515', '日本なごやし瑞穂区河岸町四丁目20番10号11階', '1987-06-03', 0, 0, 'chan3', '2007-07-24', 'onchan', '2021-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS166034222990', '容國權', 0, '+81 74-075-9448', 2, '097775526426738487', '6-kai, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1993-03-31', 0, 0, 'kky', '2012-05-15', 'yukk110', '2016-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS291320093563', '朱子韬', 0, '+81 52-810-3548', 2, '673988435153470482', '1-kai, 13 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-12-29', 0, 0, 'zhu10', '2018-02-21', 'zizhu', '2005-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS522449936754', 'Chris Bell', 1, '+86 189-1650-9419', 2, '989425251764886273', '中国上海市闵行区宾川路944号30楼', '1987-04-24', 0, 0, 'bell1', '2015-08-14', 'chris7', '2013-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS795739330539', '杜家強', 1, '+1 330-596-6636', 1, '737054915153842403', '966 Riverview Road Suite 22, Akron, OH 44313, United States', '1988-06-06', 0, 0, 'to6', '2005-08-05', 'tokk4', '2001-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS804711712045', '邱秀英', 0, '+1 213-125-4326', 3, '059476365659680785', '40 Sky Way Suite 17, Los Angeles, CA 90043, United States', '1988-11-21', 0, 0, 'xq928', '2006-08-05', 'qiuxiuying', '2017-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS582097180504', '馮朝偉', 0, '+86 167-8358-1806', 2, '444977370499401343', 'Room 3, 781 028 County Rd, Yanqing District, Beijing, China', '1993-02-19', 0, 0, 'fung2', '2003-05-20', 'chiuwaifung', '2000-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS063203109039', '孔睿', 0, '+1 330-964-8458', 1, '912190572342231471', '205 Fern Street Apartment 7, Akron, OH 44307, United States', '1985-02-23', 0, 0, 'kongru', '2020-09-12', 'kongrui', '2000-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS931913857371', 'Evelyn Robinson', 1, '+1 614-613-7113', 2, '839169141039324969', '246 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1998-04-08', 0, 0, 'evelyn414', '2006-11-14', 'erobin', '2004-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS676275846744', '増田蓮', 1, '+44 (151) 989 3509', 0, '894254494940974850', 'Unit 33, Oxford Eco Centre, 887 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1998-05-02', 0, 0, 'renm', '2015-03-29', 'masuren', '2013-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS252294328718', 'Gregory Gardner', 1, '+44 (121) 055 3126', 2, '911781883442754143', 'Unit 27, Oxford Eco Centre, 542 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1986-11-17', 0, 0, 'gregory1955', '2016-01-30', 'gardnergrego', '2008-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS693797287818', '任震南', 1, '+44 5368 951234', 3, '793997619726767094', 'Block 15, 329 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1985-04-18', 0, 0, 'zhennan306', '2008-10-27', 'zhere', '2000-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS003595365639', '曹霆鋒', 0, '+81 90-7097-8785', 2, '250982248935895752', 'Rm. 42, 1-7-18 Saidaiji Akodacho, Nara, Japan', '1994-11-04', 0, 0, 'ctingfung', '2016-04-13', 'tingfungcho1956', '2009-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS035978118867', '戚頴思', 0, '+86 156-9592-4409', 0, '728286255664445295', '中国上海市浦东新区橄榄路832号19栋', '1990-11-10', 0, 0, 'wingsze2', '2005-07-26', 'wingszec1014', '2001-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS916067911525', 'Ellen Bennett', 1, '+1 312-367-5467', 2, '563004465646225134', '24 Rush Street Apt 20, Chicago, IL 60611, United States', '1995-04-08', 0, 0, 'ellen52', '2014-05-05', 'bellen', '2012-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS745611680802', '戚慧敏', 1, '+81 80-7609-2387', 1, '422243261178318963', '日本札幌白石区菊水三条五丁目2番3号37階', '1997-05-11', 0, 0, 'chic78', '2017-12-14', 'chicwm', '2002-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS272321647703', '文家文', 0, '+44 7372 133347', 1, '259603001407192111', 'Unit 14, Oxford Eco Centre, 394 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1993-12-06', 0, 0, 'kam', '2000-07-07', 'kmman', '2020-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS522709163168', '中野翼', 1, '+1 212-473-5047', 3, '971880025759610339', '790 Bank Street Apartment 42, New York, NY 10014, United States', '1994-06-10', 0, 0, 'nakanotsuba2', '2003-10-21', 'nakano9', '2011-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS745665419681', '上野拓哉', 1, '+81 90-8746-1557', 1, '683084313389790356', '3F, 6-1-13, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1995-05-30', 0, 0, 'takuya6', '2010-10-29', 'ueno828', '2017-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS688604088246', '菅原七海', 1, '+81 52-033-0301', 3, '937825285700845919', '日本なごやし熱田区千年二丁目5番10号34階', '1991-11-28', 0, 0, 'nanami7', '2012-09-24', 'nsugawara', '2003-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS042066028438', 'Theresa Payne', 0, '+1 838-967-2623', 3, '483752193118908743', '201 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1989-07-18', 0, 0, 'paynether1116', '2000-01-24', 'paynetheresa2', '2011-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS232693110972', '清水葉月', 1, '+1 330-482-7938', 1, '496860703607242915', '98 Fern Street Apartment 46, Akron, OH 44307, United States', '1988-03-19', 0, 0, 'shimizuhazuki', '2002-04-04', 'shimizu17', '2008-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS933290090786', 'Juan Sullivan', 1, '+81 70-7403-7870', 4, '193974151975640739', '38-kai, 2-3-11 Yoyogi, Shibuya-ku, Tokyo, Japan', '1988-08-23', 0, 0, 'sulj617', '2009-08-12', 'sullivan44', '2012-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS829455823477', '官天樂', 1, '+81 66-925-2885', 0, '878525710302684893', '日本おおさかし西成区天神ノ森二丁目1番8号28階', '1985-05-16', 0, 0, 'koontl', '2019-01-15', 'koonti14', '2003-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS936114374389', '汤子韬', 1, '+81 70-0370-8538', 2, '122140032605867315', '日本おおさかし近江堂一丁目7番16号28階', '1987-08-09', 0, 0, 'zitao4', '2015-02-16', 'tang14', '2013-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS361364271042', '陶淑怡', 1, '+81 52-753-2051', 1, '710964815706699590', '日本なごやし北区清水三丁目19番20号27階', '1995-11-17', 0, 0, 'sytao1', '2007-01-06', 'tasu', '2013-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS226385764462', '藤惠妹', 0, '+81 52-688-2342', 3, '656440793217575064', '25-kai, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-05-17', 0, 0, 'huimeitang', '2014-06-17', 'huimeita9', '2010-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS842545977414', 'Brenda Stephens', 1, '+1 330-724-1909', 0, '917327576948783156', '699 Collier Road Apartment 31, Akron, OH 44320, United States', '1986-06-19', 0, 0, 'stephens2', '2010-10-01', 'brendastephens', '2004-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS694615179344', '田中花', 1, '+86 168-5825-3902', 0, '346824218402731381', '2F, 481 028 County Rd, Yanqing District, Beijing, China', '1994-07-10', 0, 0, 'hanatana316', '2019-02-26', 'hanatan210', '2017-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS560634167785', 'Nicholas Carter', 1, '+86 760-184-5385', 4, '660387689049206526', '中国中山乐丰六路38号48栋', '1990-07-17', 0, 0, 'carn10', '2019-01-11', 'nicholascarter', '2010-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS990640661148', 'Elizabeth Owens', 0, '+81 90-3011-4954', 3, '267620505719931217', 'Rm. 44, 2-5-13 Chitose, Atsuta Ward, Nagoya, Japan', '1987-08-31', 0, 0, 'elowens', '2014-04-16', 'oe8', '2014-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS085435680271', '汪岚', 0, '+86 163-0514-3268', 2, '754941542650679925', '中国深圳龙岗区学园一巷215号7楼', '1988-01-01', 0, 0, 'lawan', '2013-05-16', 'wlan', '2003-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS637763086065', '崔榮發', 0, '+86 769-900-3268', 3, '922909791319223267', '中国东莞坑美十五巷712号40室', '1990-06-12', 0, 0, 'wfchoi2007', '2007-06-19', 'chwingfat', '2015-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS725438078356', '江晓明', 1, '+86 161-9550-7872', 2, '531879498889183046', 'No.4 building, 435 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1994-01-01', 0, 0, 'jiang20', '2011-01-12', 'xiaomingjiang1943', '2013-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS567629897103', '小林花', 1, '+44 (20) 2900 6413', 4, '163330734337228633', 'Block 20, 148 Maddox Street, London, W1S 1PU, United Kingdom', '1988-08-31', 0, 0, 'kobayashi7', '2015-09-23', 'hana3', '2009-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS247103093737', '于震南', 1, '+86 20-767-7628', 2, '678338602057456815', '中国广州市白云区机场路棠苑街五巷8号15楼', '1989-06-24', 0, 0, 'zhenyu', '2005-07-02', 'yuz', '2018-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS146106102584', '黃力申', 1, '+44 5371 892378', 3, '215877957698906462', 'Block 14, 436 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-04-08', 0, 0, 'lswong209', '2020-08-02', 'likswong', '2001-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS089483658927', 'Clarence Jackson', 1, '+44 (121) 291 8515', 2, '806206007763124242', 'No.41 Main building, 472 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1998-06-11', 0, 0, 'jacksc6', '2020-08-20', 'clarence1993', '2014-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS904324769466', 'Carrie Clark', 1, '+81 90-5909-0206', 3, '300091823247670308', '日本東京中央区銀座三丁目12番14号6号室', '1997-12-02', 0, 0, 'clcarrie1121', '2020-04-06', 'cclark73', '2020-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS478528022346', 'Tony Myers', 1, '+86 755-4721-4193', 0, '483790636233520622', 'No.14 building, 423 Shennan Ave, Futian District, Shenzhen, China', '1989-10-05', 0, 0, 'myerstony', '2011-05-26', 'myerstony', '2007-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS299215214405', '清水凛', 0, '+1 330-151-9818', 2, '727754782184628516', '700 Riverview Road Apartment 32, Akron, OH 44313, United States', '1996-11-24', 0, 0, 'ris', '2005-06-07', 'shimizu10', '2018-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS255284408760', '甘曉彤', 1, '+81 70-8420-6359', 3, '446801779128863276', '日本東京品川区東五反田五丁目2番3号47号室', '1993-01-15', 0, 0, 'kamht', '2014-03-30', 'hiutungkam12', '2002-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS205709408576', '後藤美羽', 1, '+81 90-0404-9248', 3, '591669435336009516', 'Rm. 8, 3 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1989-07-20', 0, 0, 'gmiu', '2010-04-19', 'miu606', '2005-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS263272897279', 'Sylvia Scott', 1, '+44 (151) 766 8273', 1, '876530617772823535', 'Flat 38, 854 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1998-03-26', 0, 0, 'scottsylvia', '2014-11-05', 'ssyl', '2000-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS611614077190', '丁璐', 0, '+81 80-2620-3445', 1, '529077924041569408', 'Rm. 7, 5-2-20 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1995-01-04', 0, 0, 'luding1021', '2016-10-19', 'dinlu', '2000-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS189910263157', '文心穎', 1, '+44 (1865) 70 9297', 1, '525664276504666931', 'Unit 27, Oxford Eco Centre, 612 Park End St, Oxford, OX1 1JD, United Kingdom', '1998-09-18', 0, 0, 'swman', '2012-09-17', 'masumwing', '2003-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS117785005958', '湯霆鋒', 0, '+44 (116) 871 8086', 3, '239219403331632545', 'Flat 47, 813 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1997-02-10', 0, 0, 'tongtf06', '2010-07-28', 'tftong', '2000-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS112757974641', 'Mike Sanders', 1, '+86 195-0107-7654', 2, '272815408749981170', 'No.1 building, 414 Shennan Ave, Futian District, Shenzhen, China', '1994-03-26', 0, 0, 'mis', '2003-03-02', 'sanders1', '2008-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS517728387295', 'Ruth Alvarez', 1, '+86 760-664-6123', 0, '483228333200330071', '中国中山紫马岭商圈中山五路455号35楼', '1986-05-29', 0, 0, 'ruthalvar210', '2013-12-29', 'ralvarez109', '2019-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS388092402590', '严云熙', 0, '+1 213-427-2421', 2, '250176313334027890', '158 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1988-06-17', 0, 0, 'yanyu', '2016-03-28', 'yayunxi10', '2005-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS901848508087', '周秀英', 1, '+44 (151) 511 6069', 0, '790575458345383497', 'Flat 2, 971 Redfern St, Liverpool, L20 8JB, United Kingdom', '1989-09-10', 0, 0, 'zhoux', '2006-07-22', 'xzh6', '2009-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS082836831828', '餘國榮', 1, '+44 5214 220015', 3, '246098528956949785', 'Unit 9, Oxford Eco Centre, 539 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1998-01-11', 0, 0, 'kwokwingyue', '2015-01-07', 'yuekw', '2012-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS315217552099', '竹内七海', 1, '+44 (1865) 10 1120', 0, '708820085554879396', 'No.22 Main building, 129 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-05-18', 0, 0, 'nanamitakeuchi4', '2014-10-13', 'tanan9', '2001-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS478735633883', 'Earl Murphy', 0, '+86 168-5162-9256', 2, '606057318497907213', '中国广州市海珠区江南西路913号40楼', '1997-09-04', 0, 0, 'earlmurp', '2002-10-15', 'emurphy54', '2019-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS122729700335', '徐麗欣', 1, '+44 7570 156202', 2, '120980979440269144', 'No.2 Main building, 355 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1988-07-03', 0, 0, 'tsuilaiyan', '2001-10-21', 'tsuily', '2015-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS214359914756', '邱青雲', 0, '+1 213-642-6810', 0, '278717865089872360', '25 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1994-06-05', 0, 0, 'cwy', '2006-01-03', 'chingwan513', '2004-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS514065976884', 'Marie Nelson', 1, '+86 20-836-8434', 1, '357465087356608627', '中国广州市越秀区中山二路433号44楼', '1990-11-01', 0, 0, 'nelsonmar1962', '2005-01-16', 'nelsonmar', '2020-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS001406867074', '太田陽太', 1, '+86 21-2989-5138', 1, '814414529242646705', '中国上海市闵行区宾川路761号49号楼', '1994-03-02', 0, 0, 'yotaot', '2004-12-24', 'otayo', '2016-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS608935074320', '森七海', 1, '+81 80-4061-7966', 1, '340324805688973841', '日本おおさかし近江堂一丁目7番15号24号室', '1999-03-02', 0, 0, 'monan512', '2009-08-27', 'nanami2', '2005-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS873296013343', '官家強', 1, '+44 7629 502492', 4, '253108650242233289', 'Unit 40, Oxford Eco Centre, 44 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1987-11-25', 0, 0, 'kkakeung', '2012-04-18', 'kakeung9', '2018-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS941373608921', 'Joshua Meyer', 0, '+86 20-9027-7723', 1, '552535311418718383', 'No.24 building, 575 Xiaoping E Rd, Baiyun , Guangzhou, China', '1997-08-29', 0, 0, 'meyejosh', '2021-07-24', 'joshuameyer', '2018-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS478424027626', 'Joshua Foster', 0, '+44 (161) 703 6493', 2, '695438015205368760', 'Block 12, 105 Mosley St, Manchester, M2 3AQ, United Kingdom', '1995-06-12', 0, 0, 'fosterjoshua80', '2008-09-09', 'jfo', '2000-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS914712786933', '段云熙', 1, '+86 154-0414-0212', 1, '785258112292286409', '33F, 3 Dongtai 5th St, Dongguan, China', '1992-07-09', 0, 0, 'duanyunxi', '2012-07-01', 'duayunxi215', '2006-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS557138443362', '钟秀英', 0, '+86 760-5216-1058', 3, '759266634814823254', 'No.29 building, 710 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1990-03-25', 0, 0, 'xiuyizhong', '2007-06-29', 'xzhon', '2008-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS909269371164', '阎嘉伦', 0, '+81 80-3908-4605', 0, '098527568841067484', '日本おおさかし東住吉区東田辺三丁目27番15号15階', '1985-12-27', 0, 0, 'yajialu1960', '2002-04-19', 'yjia', '2020-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS451779433812', 'Brandon Hunter', 0, '+86 755-411-6913', 2, '150460744522944252', '中国深圳龙岗区布吉镇西环路442号30栋', '1997-01-09', 0, 0, 'hunterb', '2021-12-21', 'hunterbrandon', '2012-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS907764815526', '野口光', 0, '+1 212-025-9476', 0, '382913872757853945', '796 West Houston Street Apartment 42, New York, NY 10014, United States', '1986-05-22', 0, 0, 'hikaru4', '2004-02-11', 'hiknoguchi10', '2020-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS535789794732', 'Frederick Rivera', 1, '+81 80-4012-7327', 4, '752382015377808522', '日本札幌清田区真栄四条五丁目19番11号5号室', '1988-03-29', 0, 0, 'frerivera', '2008-07-01', 'rivfrederick', '2001-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS761598826554', '邹詩涵', 1, '+86 198-5697-2247', 3, '870708042377492217', '中国广州市白云区小坪东路821号27室', '1997-10-25', 0, 0, 'zoushi', '2000-06-22', 'zshihan2009', '2001-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS170829091374', 'Virginia Graham', 0, '+86 155-1502-8394', 2, '703519117014651035', '中国广州市白云区小坪东路952号29楼', '1989-12-25', 0, 0, 'gvirginia', '2009-05-02', 'gravirginia', '2017-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS419618297542', 'Richard Marshall', 0, '+86 755-863-4325', 1, '749001581778571637', 'No.36 building, 319 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1997-03-03', 0, 0, 'mari', '2003-04-17', 'richamars', '2014-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS888665682617', '車天榮', 1, '+81 11-453-3050', 1, '423461676453657835', '日本札幌白石区菊水三条五丁目4番10号28階', '1991-07-20', 0, 0, 'tinwingche', '2002-06-11', 'tiche', '2020-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS389410379609', '叶安琪', 1, '+44 7614 308702', 1, '115181307483808591', 'No.47 Main building, 65 Park End St, Oxford, OX1 1JD, United Kingdom', '1987-09-23', 0, 0, 'anqi78', '2001-11-21', 'yeanqi1941', '2016-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS113531222243', '上田陽太', 1, '+81 80-6240-1495', 2, '597364642129080276', 'Rm. 4, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-09-10', 0, 0, 'yotaueda', '2021-02-15', 'ueyota', '2011-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS598118305236', '葉青雲', 1, '+44 (1865) 82 2874', 4, '085829903425544006', 'No.12 Main building, 61 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1990-08-28', 0, 0, 'chingwanyip05', '2020-04-01', 'chyi20', '2020-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS283783154012', '池田彩乃', 0, '+81 80-2416-9609', 1, '592139199689793218', '日本東京渋谷区代々木二丁目3番2号48号室', '1995-11-17', 0, 0, 'ayanoi', '2003-02-12', 'ayikeda6', '2013-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS174641247914', '严安琪', 0, '+44 (161) 186 1177', 1, '544606005143176837', 'Flat 24, 89 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1987-07-13', 0, 0, 'anqi708', '2008-03-24', 'yananq', '2003-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS470025097354', '渡辺陽菜', 1, '+81 66-944-7507', 3, '640280748752787728', '40F, 2-1-13 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-07-25', 0, 0, 'hina2', '2016-12-31', 'satohina', '2009-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS426500869922', 'Valerie Sullivan', 0, '+1 213-875-5501', 1, '284169226777509515', '241 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1997-01-21', 0, 0, 'valesullivan6', '2004-07-18', 'valerie51', '2008-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS129481843704', '小野舞', 0, '+1 330-401-5750', 4, '101269502182762519', '866 Fern Street Apt 3, Akron, OH 44307, United States', '1986-04-06', 0, 0, 'maiono', '2017-03-16', 'onoma', '2006-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS065808918421', '應力申', 1, '+44 7756 422102', 0, '575888077391213044', 'Block 32, 847 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1992-08-17', 0, 0, 'liksunying7', '2005-01-14', 'lsying', '2018-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS206897318426', '斎藤紗良', 1, '+86 10-5594-3068', 4, '198351179742630985', '中国北京市西城区复兴门内大街133号17栋', '1988-06-21', 0, 0, 'saito98', '2006-10-16', 'sasar', '2021-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS028602341157', '罗震南', 0, '+86 769-381-3258', 0, '579629451408635124', '中国东莞坑美十五巷475号8楼', '1995-05-08', 0, 0, 'lzh', '2015-04-22', 'zluo1203', '2007-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS211293721963', '林慧儀', 1, '+86 10-100-6264', 4, '110912855454001274', '中国北京市延庆区028县道551号华润大厦40室', '1988-03-13', 0, 0, 'waiyee815', '2020-10-01', 'waiyeel', '2004-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS228509341751', '後藤葉月', 0, '+86 10-207-9364', 0, '593234028092603652', 'No.10 building, 125 Sanlitun Road, Chaoyang District, Beijing, China', '1989-02-03', 0, 0, 'gothazuki', '2009-02-23', 'hazuki4', '2005-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS806911289351', 'Steven Clark', 0, '+81 74-127-3332', 1, '821075144816398391', '25F, 1-7-17 Saidaiji Akodacho, Nara, Japan', '1989-03-18', 0, 0, 'clarksteven', '2006-05-21', 'steven80', '2016-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS932522917334', '郑岚', 1, '+86 10-8997-9173', 3, '051428491988478391', 'No.21 building, 805 FuXingMenNei Street, XiCheng District, Beijing, China', '1996-02-18', 0, 0, 'zhenl', '2015-05-20', 'lanzheng1231', '2007-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS441736337700', '向岚', 0, '+44 7792 093624', 1, '778557790610872249', 'Flat 12, 798 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1995-03-13', 0, 0, 'laxia71', '2021-02-17', 'lanxiang', '2019-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS619456332135', '贺杰宏', 0, '+44 5588 711294', 1, '221209725083926013', 'Unit 34, Oxford Eco Centre, 828 Park End St, Oxford, OX1 1JD, United Kingdom', '1995-08-16', 0, 0, 'jihe', '2002-05-01', 'jiehohe', '2003-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS619616868700', 'Edna Lee', 0, '+86 143-1926-0789', 2, '085275566692347278', 'Room 40, 161 Hongqiao Rd., Xu Hui District, Shanghai, China', '1989-06-24', 0, 0, 'edna10', '2021-03-16', 'edna7', '2013-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS458638920438', '徐子韬', 1, '+1 212-497-1232', 4, '974181587246201080', '764 West Houston Street 3rd Floor, New York, NY 10014, United States', '1985-08-05', 0, 0, 'xuzita9', '2006-06-25', 'zitaxu', '2020-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS123276744096', '金子絢斗', 0, '+86 20-526-2575', 2, '406393972350248947', 'No.40 building, 141 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1997-10-16', 0, 0, 'akane', '2017-12-09', 'kanekoayato1', '2007-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS518521172578', '黄嘉伦', 1, '+81 3-3107-9466', 2, '458986493495204825', '日本東京中央区銀座三丁目12番11号39階', '1986-10-14', 0, 0, 'hjial', '2007-07-05', 'jh6', '2003-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS169327154076', '酒井海斗', 0, '+86 149-7095-7337', 0, '804012729144190633', '中国北京市東城区東直門內大街864号华润大厦17室', '1995-06-23', 0, 0, 'sakait', '2011-01-04', 'kasak5', '2008-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS156709364914', '張杰倫', 1, '+86 182-5400-5708', 1, '564885550791413587', '中国深圳福田区深南大道792号49室', '1986-12-19', 0, 0, 'chiehluncheung', '2020-05-13', 'chche', '2009-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS452296072684', 'Jason Vasquez', 1, '+81 90-9715-4526', 3, '344704027743106936', '17F, 3-9-7 Gakuenminami, Nara, Japan', '1998-04-24', 0, 0, 'vajaso68', '2006-11-07', 'vasquezjas61', '2021-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS258716296895', '關慧敏', 1, '+86 20-5881-8561', 2, '606282227273872375', 'No.21 building, 907 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1985-12-21', 0, 0, 'wmkw', '2016-05-26', 'kwaiman', '2017-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS075383054866', 'Andrew Garza', 1, '+81 80-2793-1330', 1, '891606377348404480', '日本なごやし熱田区千年二丁目5番20号23号室', '1989-04-02', 0, 0, 'andrew1970', '2012-02-23', 'garza8', '2006-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS532749773126', 'Jason Kelly', 1, '+86 755-8464-2610', 4, '059922034093018767', 'No.45 building, 450 Shennan Ave, Futian District, Shenzhen, China', '1995-11-24', 0, 0, 'kjason807', '2003-04-13', 'kelljason40', '2012-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS676422788719', '森光莉', 0, '+81 70-6480-5908', 4, '366581672040505993', 'Rm. 15, 3-27-9 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-08-18', 0, 0, 'mohi', '2018-05-07', 'hmori', '2004-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS522173897054', '姚安琪', 1, '+1 312-148-4000', 0, '672330516195300471', '104 Pedway Apartment 32, Chicago, IL 60601, United States', '1991-05-10', 0, 0, 'yeowok', '2003-05-08', 'okyeow', '2020-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS072840440037', '張國榮', 1, '+81 90-0501-9112', 4, '099561980480823564', '日本なごやし瑞穂区河岸町四丁目20番6号40号室', '1998-03-09', 0, 0, 'cheungkw', '2006-03-19', 'kwc4', '2015-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS202825174853', '樊梓晴', 0, '+44 (161) 996 6361', 0, '559814322553205327', 'Block 49, 328 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1986-11-12', 0, 0, 'tszchingfan', '2013-10-31', 'tszchingfan9', '2014-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS258308904262', '木下大和', 0, '+86 162-8074-1948', 1, '159543074191128319', 'Room 1, 231 West Chang''an Avenue, Xicheng District, Beijing, China', '1995-11-11', 0, 0, 'kinosy8', '2001-08-12', 'kyamato9', '2021-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS542559998614', '吕岚', 0, '+81 80-6847-3827', 3, '506566898420162950', '日本なごやし守山区瀬古東二丁目171番9号47階', '1991-02-04', 0, 0, 'lulan1', '2013-10-20', 'llu44', '2014-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS473969590229', '木村蒼士', 1, '+86 159-5641-9478', 2, '482436134825340592', 'No.24 building, 285 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1989-12-16', 0, 0, 'kimuraao', '2004-10-29', 'kaosh8', '2016-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS712559028186', '江子异', 1, '+86 156-5627-6925', 2, '972846761886406213', 'Room 6, CR Building, 236 Kengmei 15th Alley, Dongguan, China', '1989-03-16', 0, 0, 'jiang729', '2002-04-19', 'jiaziy1', '2007-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS912857438113', '萬天榮', 0, '+1 838-336-9669', 1, '195411716497278091', '588 Broadway 3rd Floor, Albany, NY 12207, United States', '1996-07-15', 0, 0, 'mtinwing', '2016-03-14', 'twmeng1963', '2019-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS368929317995', 'Walter Webb', 0, '+81 90-3553-0290', 0, '156357446885322581', '46-kai, 5-19-16 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1991-08-17', 0, 0, 'walterwebb', '2000-12-30', 'walterw08', '2017-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS840941418309', '陶國榮', 1, '+1 213-297-6103', 2, '180233915599982524', '167 Wall Street Apt 34, Los Angeles, CA 90003, United States', '1990-10-11', 0, 0, 'taokwokwing', '2002-06-24', 'tao67', '2002-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS248997511185', '萬明', 0, '+86 151-3146-5354', 1, '794809473132654331', '中国东莞珊瑚路369号25室', '1991-03-10', 0, 0, 'minmeng5', '2007-11-15', 'mingmeng313', '2001-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS338223907868', '市川架純', 0, '+86 195-6585-4672', 0, '087826532840139505', '中国深圳福田区深南大道999号华润大厦12室', '1991-01-23', 0, 0, 'ikas', '2004-03-26', 'ichikkas', '2007-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS215477756401', '長谷川凛', 0, '+44 7697 039121', 4, '081057845584915496', 'Flat 3, 997 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1996-06-15', 0, 0, 'hasegawa8', '2018-07-24', 'hasegawarin', '2004-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS145809439629', 'Christina Murray', 0, '+86 132-5976-6425', 3, '554594911687864541', '中国广州市海珠区江南西路381号34栋', '1993-11-28', 0, 0, 'christinamurray14', '2017-06-03', 'murchristina', '2010-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS223272446230', '赵子韬', 0, '+44 5383 549081', 0, '318139735257033941', 'Block 22, 235 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1988-01-08', 0, 0, 'zizha', '2005-07-22', 'zitaozhao', '2020-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS173280773178', '梁家輝', 1, '+81 74-990-3832', 2, '540419791211924266', '32-kai, 1-7-14 Saidaiji Akodacho, Nara, Japan', '1989-09-17', 0, 0, 'lkafai8', '2021-05-24', 'leungkf6', '2005-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS217149978395', '山田陽菜', 0, '+86 769-483-4204', 3, '490870664412870181', '中国东莞珊瑚路989号29楼', '1987-01-16', 0, 0, 'yamadh2', '2011-10-26', 'yamadahina5', '2014-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS256247697718', 'Antonio Mills', 1, '+1 213-241-6135', 2, '613350433700436931', '81 Alameda Street Apartment 50, Los Angeles, CA 90002, United States', '1988-09-04', 0, 0, 'antmi', '2001-02-04', 'mant', '2019-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS476778493844', '渡辺涼太', 1, '+1 213-329-7515', 1, '729446040669999018', '670 Sky Way Apartment 21, Los Angeles, CA 90043, United States', '1987-02-19', 0, 0, 'ryota521', '2001-02-18', 'satoryo', '2012-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS329253082067', '金子百花', 0, '+1 614-044-5071', 4, '665412649419766820', '2 Wicklow Road Apartment 25, Columbus, GA 43204, United States', '1997-10-29', 0, 0, 'momkaneko', '2000-03-28', 'kanekmomo', '2008-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS492143835356', 'Christina Marshall', 0, '+44 (121) 538 2837', 1, '234118096944907989', 'No.38 Main building, 744 New Street, Birmingham, B2 4DB, United Kingdom', '1986-02-16', 0, 0, 'chrimarsh05', '2018-08-18', 'marshallchristina', '2015-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS688444580762', '徐麗欣', 0, '+1 330-811-0046', 4, '989473701646097758', '171 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1985-12-19', 0, 0, 'tsui416', '2019-05-14', 'tsly1008', '2004-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS819956839692', '岡田光', 0, '+1 212-652-9205', 4, '017113245458362253', '844 Canal Street 3rd Floor, New York, NY 10013, United States', '1994-06-12', 0, 0, 'hikaruokada20', '2001-12-28', 'hikaruok6', '2020-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS330661186801', 'Sarah Cook', 1, '+1 312-532-9042', 1, '931552862733953963', '839 North Michigan Ave Suite 25, Chicago, IL 60611, United States', '1995-11-07', 0, 0, 'sarah423', '2021-01-06', 'cooksarah5', '2018-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS315192980018', '中野陸', 0, '+81 11-565-3862', 1, '830127938871232949', '日本札幌白石区菊水三条五丁目4番20号20号室', '1991-02-16', 0, 0, 'nri', '2013-01-09', 'rikunakan', '2016-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS522268943552', '野村花', 0, '+86 180-6352-8757', 0, '459671074746886311', '中国上海市闵行区宾川路541号9楼', '1991-05-04', 0, 0, 'hananomur', '2012-03-26', 'nomhana', '2019-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS841123168038', '高岚', 1, '+81 74-156-1256', 2, '021550111143201438', 'Rm. 40, 1-7-15 Saidaiji Akodacho, Nara, Japan', '1996-01-30', 0, 0, 'gao2013', '2012-11-30', 'gao1015', '2021-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS455825337646', '羅青雲', 1, '+86 28-9405-3558', 3, '679432042841100786', '中国成都市成华区玉双路6号140号华润大厦26室', '1986-08-30', 0, 0, 'lo1942', '2016-01-01', 'chingwanlo', '2014-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS316848004167', 'Elizabeth Hawkins', 1, '+81 90-0392-7963', 2, '203147699833534773', '日本東京港区東新橋一丁目5番11号50階', '1989-12-25', 0, 0, 'elih4', '2022-01-22', 'hawkielizabeth', '2014-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS689547177359', '岩崎大輔', 1, '+1 838-767-2376', 3, '375750960199172950', '649 State Street Apt 39, Albany, NY 12203, United States', '1997-11-13', 0, 0, 'dai', '2017-09-27', 'diwasaki724', '2017-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS354400673477', '武田陽菜', 0, '+1 718-526-6041', 2, '254852513516190516', '292 Columbia St Apartment 24, Brooklyn, NY 11231, United States', '1998-10-25', 0, 0, 'takeda524', '2017-11-19', 'htakeda5', '2006-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS788772067505', '金子凛', 1, '+86 177-0377-5751', 1, '088882593661454408', 'Room 2, CR Building, 278 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1997-07-20', 0, 0, 'rikane', '2019-09-12', 'kanekor7', '2016-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS047878077320', '佐々木玲奈', 0, '+44 7831 936730', 0, '010382845085618372', 'No.3 Main building, 105 Pollen Street, London, W1S 1NG, United Kingdom', '1994-06-17', 0, 0, 'srena', '2012-09-14', 'rena5', '2014-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS784504072266', 'Margaret Stewart', 1, '+1 330-063-7214', 4, '102349524407563764', '284 West Market Street 3rd Floor, Akron, OH 44333, United States', '1990-02-19', 0, 0, 'stewart3', '2008-02-07', 'stewartmargaret', '2009-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS135844358822', '原田大和', 0, '+1 838-157-1967', 0, '634261421206949267', '550 Broadway Apt 45, Albany, NY 12207, United States', '1989-09-26', 0, 0, 'yamaharada', '2019-11-30', 'haradaya', '2012-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS868408358240', '周致远', 0, '+81 90-6685-7565', 3, '906547777739878532', '日本おおさかし西成区出城一丁目1番11号47号室', '1996-10-02', 0, 0, 'zhz8', '2000-08-01', 'zhozhiyu54', '2021-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS880788723172', '甘發', 0, '+1 213-399-2830', 1, '265685236584306937', '184 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1987-05-01', 0, 0, 'kamfat', '2021-10-12', 'kamf', '2000-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS228546421277', '蔡天樂', 0, '+81 3-7418-5451', 3, '489100380576815168', 'Rm. 31, 3-15-4 Ginza, Chuo-ku, Tokyo, Japan', '1997-04-23', 0, 0, 'chotinlok1970', '2006-03-18', 'choi3', '2021-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS190728601251', '蘇頴璇', 0, '+1 838-404-3684', 3, '713673128804101424', '406 Broadway 3rd Floor, Albany, NY 12207, United States', '1986-04-30', 0, 0, 'so9', '2015-08-01', 'wingss', '2003-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS220682082285', '藍榮發', 0, '+44 7051 605191', 0, '575540385216222122', 'Flat 3, 528 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1996-11-23', 0, 0, 'wingfat61', '2020-01-31', 'wingfatla', '2001-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS321987477689', '孫永發', 0, '+81 11-000-1221', 4, '963436947045068304', '日本札幌清田区真栄四条五丁目19番9号36階', '1988-02-28', 0, 0, 'wfhsua', '2008-06-30', 'hsuan82', '2016-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS201725076288', '田中優奈', 1, '+44 (151) 390 9176', 2, '723562146097728364', 'Flat 14, 154 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1991-05-03', 0, 0, 'ytanaka', '2002-06-26', 'yutanaka620', '2006-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS083157532261', 'Emily Diaz', 0, '+86 184-3683-5410', 0, '122645057468156663', 'Room 46, 329 Ganlan Rd, Pudong, Shanghai, China', '1995-03-07', 0, 0, 'diaz1953', '2014-04-12', 'emdiaz', '2000-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS101395723677', '佐藤舞', 1, '+81 90-6957-9922', 0, '648577600916138544', '日本おおさかし東住吉区東田辺三丁目27番1号14階', '1988-05-17', 0, 0, 'sma70', '2016-07-13', 'masa63', '2003-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS265142729321', '樊國榮', 0, '+44 5980 515371', 0, '214336315599079234', 'Flat 29, 627 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1997-09-13', 0, 0, 'fkw', '2009-06-30', 'kwf', '2019-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS939078033226', '石井優奈', 0, '+81 90-1355-2062', 3, '365566061117565997', '日本なごやし守山区瀬古東二丁目171番8号1階', '1993-03-10', 0, 0, 'ishiiy', '2012-10-01', 'ishy816', '2000-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS450903093890', '雷志遠', 1, '+44 (121) 867 3992', 2, '774026917733672756', 'Block 2, 507 New Street, Birmingham, B2 4DB, United Kingdom', '1994-09-13', 0, 0, 'louichiyuen', '2022-01-23', 'chiyuenlo8', '2020-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS098012961937', '岡本花', 1, '+81 11-315-3692', 2, '275815817345784578', '日本札幌豊平区豊平三条十三丁目3番11号49階', '1997-02-22', 0, 0, 'hokamoto5', '2009-03-08', 'ohan', '2017-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS873325672273', '余詩涵', 0, '+81 11-028-0212', 1, '242148802386093932', '日本札幌豊平区豊平三条十三丁目3番20号18階', '1991-06-24', 0, 0, 'yu97', '2017-06-19', 'yushihan', '2017-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS429781465905', '阎詩涵', 0, '+1 718-738-2960', 3, '655307822040910581', '150 1st Ave Apartment 50, Brooklyn, NY 11220, United States', '1985-11-12', 0, 0, 'yanshih', '2001-11-27', 'yan49', '2020-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS414801477111', 'Frederick Weaver', 0, '+86 755-546-2275', 4, '461828822916588847', 'Room 47, 986 Jingtian East 1st St, Futian District, Shenzhen, China', '1998-02-13', 0, 0, 'fredweaver10', '2011-09-08', 'fweav817', '2019-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS434621289173', '井上樹', 0, '+86 20-396-8933', 4, '738929203243168787', '中国广州市海珠区江南西路158号43室', '1990-03-24', 0, 0, 'inoueits', '2016-03-25', 'inoue2', '2021-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS478307538494', 'Thomas Warren', 1, '+86 182-8941-7950', 2, '651379632858550513', '中国广州市白云区机场路棠苑街五巷579号8号楼', '1985-02-04', 0, 0, 'wtho', '2013-07-18', 'thomaswarr', '2006-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS931890115046', 'Marie Salazar', 0, '+81 3-1023-8923', 3, '962587081102316699', '2-kai, 5-2-16 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1992-11-14', 0, 0, 'salazarmari8', '2010-04-02', 'salazarmari', '2004-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS435681072393', '姚慧敏', 0, '+86 20-1427-8050', 1, '431851563192585353', '10F, 270 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1990-06-16', 0, 0, 'waimany56', '2005-01-28', 'ywm6', '2017-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS856894585983', '樊發', 0, '+1 838-152-9705', 1, '210550670301753508', '325 Broadway Apartment 45, Albany, NY 12207, United States', '1992-12-12', 0, 0, 'faf', '2019-08-25', 'ffat', '2009-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS864070900904', 'Walter Hamilton', 0, '+86 10-6770-0321', 3, '942088553974590596', 'Room 36, 118 68 Qinghe Middle St, Haidian District, Beijing, China', '1985-09-22', 0, 0, 'hamiltonwalter', '2008-07-20', 'hwalter602', '2006-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS293430219565', '陈杰宏', 0, '+81 80-7110-1006', 3, '515608341612753756', '44F, 2-1-12 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1994-11-04', 0, 0, 'jchen4', '2019-01-13', 'jiehongchen', '2005-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS263521947147', 'Lawrence Martinez', 0, '+1 312-663-5554', 2, '722032209506726291', '654 Rush Street Suite 4, Chicago, IL 60611, United States', '1991-12-04', 0, 0, 'lawrencemartinez', '2018-07-31', 'marlawrence', '2006-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS606243971067', '邱璐', 1, '+86 10-7650-0062', 3, '945663770771696146', '中国北京市东城区东单王府井东街154号24楼', '1995-09-21', 0, 0, 'qlu', '2015-07-24', 'qiu1004', '2005-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS301260149294', 'Lawrence Torres', 1, '+44 7850 302309', 3, '568104621855571208', 'Unit 46, Oxford Eco Centre, 707 Regent Street, London, W1B 2LX, United Kingdom', '1988-07-16', 0, 0, 'lawrenceto', '2006-02-04', 'lawrencet', '2017-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS059496908097', '潘安琪', 0, '+44 (1223) 04 2208', 3, '197099775741896376', 'Flat 44, 48 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1991-01-10', 0, 0, 'pan99', '2009-06-21', 'pana', '2022-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS593891382817', '中島和真', 0, '+86 182-9799-9902', 2, '167073469865741587', '中国中山乐丰六路906号7栋', '1993-03-14', 0, 0, 'nakajkazuma', '2017-08-05', 'nakazuma120', '2002-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS242944520384', 'Sheila Stevens', 0, '+44 7807 842368', 4, '872008795077204289', 'Unit 6, Oxford Eco Centre, 640 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1991-05-29', 0, 0, 'stevs', '2008-09-26', 'ssheila', '2000-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS137042347290', 'Sheila Gardner', 1, '+86 162-9419-1583', 2, '214883876339039612', '10F, 495 028 County Rd, Yanqing District, Beijing, China', '1994-01-26', 0, 0, 'gardner5', '2015-03-03', 'gardners', '2002-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS613741945939', 'Grace Snyder', 0, '+86 10-1267-6333', 3, '476878008178185051', 'Room 6, CR Building, 715 FuXingMenNei Street, XiCheng District, Beijing, China', '1992-12-08', 0, 0, 'snydgr1993', '2018-11-10', 'gracesnyder2019', '2002-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS597112066202', '池田美緒', 0, '+81 70-8253-4839', 4, '314825550449677171', '42-kai, 1-1-17 Deshiro, Nishinari Ward, Osaka, Japan', '1994-11-20', 0, 0, 'ikmio', '2003-12-02', 'mioikeda', '2016-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS026956627393', '郑詩涵', 1, '+86 187-4013-7597', 1, '693416441966650708', 'Room 23, 661 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1995-05-28', 0, 0, 'zheng46', '2012-04-16', 'zhenshiha', '2007-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS170683971933', 'Debra Weaver', 1, '+86 10-5914-7595', 1, '576974451465166168', '中国北京市西城区复兴门内大街313号2栋', '1998-08-02', 0, 0, 'debrawea1128', '2000-06-09', 'debraweaver', '2017-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS993792823436', '藤田翼', 0, '+44 (1865) 64 1923', 2, '897068426597979624', 'No.17 Main building, 335 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1995-03-22', 0, 0, 'tsubfujita', '2004-06-16', 'fujtsubasa', '2016-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS112001743843', '邹云熙', 0, '+44 5191 188399', 2, '984120470775026617', 'Flat 5, 603 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1992-01-14', 0, 0, 'yunxizou', '2007-05-16', 'yuzou5', '2021-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS923264008161', 'Patricia Washington', 1, '+81 11-066-5740', 2, '547044477968589977', '日本札幌厚別区上野幌一条二丁目1番1号12階', '1989-08-22', 0, 0, 'washington1120', '2014-06-10', 'patrwas', '2001-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS848942923275', '野口葉月', 1, '+44 7015 458050', 3, '540285701766139971', 'Block 30, 846 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1998-05-23', 0, 0, 'noguchiha63', '2015-12-15', 'hazuki1990', '2001-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS497592138876', '钱致远', 0, '+1 312-196-7959', 1, '894043824246135293', '175 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1987-06-23', 0, 0, 'qianzhiyuan65', '2018-09-25', 'zqia4', '2008-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS207782222235', '譚浩然', 0, '+86 135-3985-6386', 1, '785651254252369732', 'No.24 building, 607 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1998-03-06', 0, 0, 'tahy1955', '2010-10-26', 'hoyintam1992', '2000-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS051464960433', 'Judith Richardson', 0, '+1 213-522-9079', 2, '311464615189548397', '902 Alameda Street Apartment 44, Los Angeles, CA 90002, United States', '1986-12-23', 0, 0, 'richardson10', '2003-05-05', 'richardsonju', '2009-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS588479024835', '邓杰宏', 1, '+86 20-311-2171', 1, '720484601689030693', '36F, 869 Tianhe Road, Tianhe District, Guangzhou, China', '1996-04-17', 0, 0, 'dengjie', '2018-07-12', 'dejiehong1947', '2000-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS958987640329', '郭晓明', 1, '+44 (1223) 12 9512', 2, '074259672266796751', 'Unit 28, Oxford Eco Centre, 339 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-06-05', 0, 0, 'xg3', '2008-08-27', 'gx3', '2002-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS737188807990', 'Allen Crawford', 1, '+44 (1865) 85 1112', 2, '653429196638641929', 'No.37 Main building, 17 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1988-10-25', 0, 0, 'acrawford', '2013-01-01', 'allencrawford', '2014-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS197354144958', 'Jerry White', 0, '+86 10-111-5530', 1, '519137560856199803', 'No.13 building, 355 028 County Rd, Yanqing District, Beijing, China', '1991-12-07', 0, 0, 'jerry56', '2002-01-03', 'whitejerr', '2010-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS459159129837', 'Christopher Patel', 1, '+86 192-7201-2803', 1, '334823140802600627', '中国成都市锦江区人民南路四段711号1号楼', '1985-01-05', 0, 0, 'christopherpatel', '2002-06-03', 'cpatel4', '2008-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS544460145058', '胡浩然', 0, '+81 70-2973-0772', 4, '322550016155215075', '38F, 3-9-20 Gakuenminami, Nara, Japan', '1994-09-02', 0, 0, 'hoyinwu303', '2001-01-17', 'hoyinwu', '2020-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS512558698833', '许詩涵', 1, '+1 718-455-2652', 2, '515695675035955722', '645 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1985-02-19', 0, 0, 'shixu', '2008-03-20', 'xu20', '2002-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS077694128831', '邱頴思', 1, '+86 188-3834-1456', 1, '898665912992000286', '中国成都市成华区双庆路299号39楼', '1989-12-26', 0, 0, 'wingsze6', '2008-09-03', 'yaws1986', '2015-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS676510118909', 'Jonathan Young', 1, '+86 21-7723-1527', 2, '430158771439535559', '中国上海市黄浦区淮海中路216号29楼', '1988-09-03', 0, 0, 'youngjonat10', '2000-02-10', 'jonathanyoun', '2016-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS187206963278', '谭嘉伦', 0, '+1 330-597-8340', 1, '109527643353783565', '815 Fern Street Apartment 37, Akron, OH 44307, United States', '1996-06-27', 0, 0, 'tajial1972', '2009-10-14', 'tanjialun1029', '2007-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS756455768935', '山崎彩乃', 0, '+81 74-330-5005', 0, '962573207931019668', '13-kai, 1-7-16 Saidaiji Akodacho, Nara, Japan', '1993-02-21', 0, 0, 'yamaayano1', '2014-07-11', 'ayanoy', '2001-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS719629613399', '龙秀英', 0, '+81 3-5349-9028', 0, '340446936894782151', '日本東京港区東新橋一丁目5番8号33階', '1997-08-22', 0, 0, 'longxi', '2019-06-01', 'longxiu', '2013-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS114685435410', '中村大和', 1, '+81 80-1053-5851', 1, '903974533332434076', '日本なごやし瑞穂区河岸町四丁目20番1号31号室', '1996-04-05', 0, 0, 'yamato9', '2019-12-20', 'yn5', '2004-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS601470475261', '吳家強', 0, '+81 70-2622-9699', 3, '300793323559622292', 'Rm. 11, 1-1-8 Deshiro, Nishinari Ward, Osaka, Japan', '1985-06-22', 0, 0, 'ng4', '2009-07-15', 'kakeungng', '2008-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS952689811997', '小島架純', 1, '+81 3-3741-0700', 1, '486840914624804308', '16-kai, 3-15-15 Ginza, Chuo-ku, Tokyo, Japan', '1989-07-03', 0, 0, 'kasumik', '2012-11-06', 'kasumikoji', '2006-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS447466845507', '傅永權', 1, '+81 70-9980-0956', 4, '642802742114484922', '日本なごやし熱田区千年二丁目5番11号17階', '1995-09-23', 0, 0, 'fu2', '2004-04-14', 'wkf', '2006-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS174709723454', 'Walter Harris', 0, '+86 21-9763-2081', 1, '050138214656265830', 'No.41 building, 921 Middle Huaihai Road, Huangpu District, Shanghai, China', '1990-08-31', 0, 0, 'harwa', '2022-02-20', 'harris83', '2005-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS829736232536', '谭璐', 0, '+86 21-4268-8556', 0, '464011425812341935', '中国上海市浦东新区橄榄路159号11号楼', '1991-09-23', 0, 0, 'lu1990', '2008-12-05', 'tan916', '2019-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS736863478588', 'Patricia Thomas', 1, '+86 21-088-3917', 2, '683505383481941530', 'No.12 building, 698 Binchuan Rd, Minhang District, Shanghai, China', '1997-06-08', 0, 0, 'thomaspatricia7', '2002-04-06', 'patritho', '2018-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS502992564068', '大野陽太', 0, '+86 147-2768-7876', 0, '575221523184559686', 'No.27 building, 40 Dongtai 5th St, Dongguan, China', '1997-01-30', 0, 0, 'yono1103', '2005-05-04', 'yotaono', '2006-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS178442270383', '蔣國賢', 0, '+86 755-1877-3137', 2, '849095483663867440', '中国深圳龙岗区布吉镇西环路386号28室', '1990-02-06', 0, 0, 'chiangkwokyin', '2013-07-28', 'kwokyinchiang', '2002-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS777482816576', '吳心穎', 0, '+81 80-5307-8586', 0, '875414352345613500', '日本札幌豊平区豊平三条十三丁目3番17号47階', '1990-03-08', 0, 0, 'ngsw', '2015-12-05', 'sumwing723', '2010-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS835607022055', '樊慧珊', 0, '+81 52-620-3626', 3, '358946663921027899', '日本なごやし守山区瀬古東二丁目171番16号26階', '1986-04-02', 0, 0, 'fanwaisan', '2011-08-11', 'fan92', '2001-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS587493005612', '柴田舞', 1, '+86 20-496-6056', 0, '194538048728946448', 'No.3 building, 449 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1991-08-20', 0, 0, 'shibmai719', '2001-02-03', 'shibatamai', '2009-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS252185124995', '马晓明', 1, '+81 11-617-3061', 3, '529259022778270895', '日本札幌厚別区上野幌一条二丁目1番17号19階', '1998-11-21', 0, 0, 'xiaoming2', '2004-04-23', 'maxiaoming', '2019-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS071599724975', '上田七海', 0, '+81 66-828-8135', 3, '173590150187767460', 'Rm. 7, 4-9-14 Kamihigashi, Hirano Ward, Osaka, Japan', '1997-05-03', 0, 0, 'nanami4', '2011-08-14', 'uedanana', '2016-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS775545762890', 'Ernest Hill', 0, '+86 10-9181-8738', 2, '520299381871186017', '中国北京市东城区东单王府井东街316号28号楼', '1995-02-17', 0, 0, 'hillern', '2018-10-06', 'hilernes403', '2017-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS940631896289', '于嘉伦', 1, '+86 146-2734-3094', 3, '501162491602891345', '中国东莞珊瑚路3号39室', '1986-12-09', 0, 0, 'yuji', '2007-08-23', 'jiyu12', '2006-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS523683671601', '駱曉彤', 1, '+81 3-3602-4880', 2, '270029319368543998', '日本東京千代田区丸の内一丁目6番5号1階', '1987-02-10', 0, 0, 'hiulok', '2005-01-07', 'htlok1023', '2020-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS372332366334', '苏岚', 1, '+86 175-8044-8271', 1, '755471136022204192', 'No.12 building, 802 Binchuan Rd, Minhang District, Shanghai, China', '1998-06-04', 0, 0, 'lasu', '2001-02-16', 'lans', '2005-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS972055656341', 'Leonard Jackson', 0, '+81 90-0452-3437', 3, '661491797755299183', '日本なごやし北区楠味鋺三丁目80番13号23号室', '1991-05-06', 0, 0, 'jackleonard', '2005-09-09', 'leonajac1', '2018-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS114477808725', '陆璐', 1, '+44 (121) 019 1986', 1, '379596350673817147', 'No.33 Main building, 830 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1998-02-08', 0, 0, 'lul', '2003-11-14', 'lu9', '2011-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS537466309443', '山崎陸', 0, '+86 184-7827-8257', 0, '716117341796877873', 'Room 34, CR Building, 980 Shennan Ave, Futian District, Shenzhen, China', '1989-04-05', 0, 0, 'yr5', '2011-09-26', 'yamriku', '2015-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS393054589856', 'Leroy Holmes', 1, '+86 150-8989-2484', 0, '690782826236086332', '39F, 871 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1987-05-12', 0, 0, 'hleroy', '2006-10-04', 'holmleroy7', '2015-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS242648289322', 'Anne Lewis', 1, '+86 182-1273-4006', 3, '574227028390095685', '中国深圳罗湖区蔡屋围深南东路200号36栋', '1993-07-17', 0, 0, 'anne1222', '2002-06-06', 'lanne1', '2003-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS003574305322', 'Roger Alvarez', 0, '+86 28-393-9292', 1, '182444892629615970', '中国成都市成华区双庆路524号38楼', '1993-02-20', 0, 0, 'rogera', '2019-09-06', 'alvarez7', '2004-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS602499441909', '中野美月', 0, '+86 21-9595-4045', 1, '333581132926860190', '中国上海市闵行区宾川路529号31栋', '1992-03-11', 0, 0, 'nakanomits', '2014-11-03', 'mitsuki1', '2002-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS060672593453', '菅原大輔', 1, '+81 74-567-3559', 1, '585066485105446440', '日本ならし西大寺赤田町一丁目7番10号5号室', '1988-02-21', 0, 0, 'sugawara1963', '2020-03-22', 'sugawaradaisuke2', '2000-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS440934269934', '江睿', 1, '+81 66-282-8157', 3, '575503218417034786', '日本おおさかし近江堂一丁目7番8号48階', '1991-05-25', 0, 0, 'jrui', '2013-08-22', 'jr8', '2020-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS539955944395', '井上美羽', 1, '+86 20-123-1730', 1, '448844255142035802', '中国广州市白云区机场路棠苑街五巷41号41号楼', '1989-03-27', 0, 0, 'miuinoue', '2011-11-26', 'inoumiu', '2009-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS727447792285', '佘家明', 0, '+86 20-174-6479', 2, '794753884943085754', '中国广州市白云区小坪东路854号24室', '1998-05-23', 0, 0, 'shehkami4', '2003-03-04', 'sheh113', '2015-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS688942299010', '陳國賢', 0, '+81 90-4874-5061', 0, '516250699478422692', '日本東京品川区東五反田五丁目2番18号10階', '1995-12-22', 0, 0, 'kwokyinchan', '2019-11-19', 'kychan923', '2002-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS078405220791', '顾嘉伦', 1, '+81 66-774-7136', 1, '133190905874278193', '日本おおさかし西成区出城一丁目1番11号39階', '1991-06-07', 0, 0, 'jialug', '2008-08-23', 'jialungu', '2015-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS948374280624', 'Thomas Washington', 0, '+86 28-9962-3078', 3, '093529620941528994', '中国成都市成华区二仙桥东三路648号15号楼', '1986-04-06', 0, 0, 'washington813', '2009-11-21', 'washington1', '2019-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS953734961849', 'Jose Rice', 0, '+44 (116) 459 5970', 2, '451747238585867949', 'Flat 14, 412 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1992-05-16', 0, 0, 'joser3', '2019-07-29', 'rice2009', '2012-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS431147926735', '内田七海', 0, '+81 74-722-3921', 1, '270196612694283291', '6F, 1-7-5 Saidaiji Akodacho, Nara, Japan', '1987-09-17', 0, 0, 'nanauchid', '2000-08-14', 'un58', '2021-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS355243807748', '龚宇宁', 0, '+81 3-3122-9490', 2, '184316938259830326', '日本東京渋谷区代々木二丁目3番11号24階', '1995-03-27', 0, 0, 'gonyuning1984', '2006-05-31', 'gyuning325', '2008-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS910020598279', 'Jennifer Boyd', 1, '+86 167-4499-9840', 1, '619446377617794094', 'No.31 building, 18 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1997-06-28', 0, 0, 'boydj', '2020-12-09', 'jenboy6', '2004-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS991559094210', '林慧敏', 1, '+86 20-7745-6687', 3, '961311918353164469', '中国广州市白云区机场路棠苑街五巷349号华润大厦18室', '1994-12-06', 0, 0, 'lamwaiman3', '2006-09-03', 'waiman301', '2014-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS735670098320', '平野大和', 1, '+81 70-3452-4322', 1, '822476817119668193', '日本東京千代田区丸の内一丁目6番15号37階', '1987-07-20', 0, 0, 'hiray', '2002-01-26', 'yamath', '2018-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS526160140742', '前田大輔', 0, '+1 312-833-7777', 3, '120446470283202553', '677 Pedway Apartment 26, Chicago, IL 60601, United States', '1992-02-23', 0, 0, 'daisuke3', '2020-06-24', 'daisuke314', '2003-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS735371593114', '鄧天榮', 0, '+44 7576 301549', 1, '820856345666252315', 'Unit 5, Oxford Eco Centre, 66 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1995-06-10', 0, 0, 'tangtinwing', '2012-06-14', 'tangtw3', '2017-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS186106277641', '莫俊宇', 0, '+81 52-356-5707', 3, '010583340615205521', '47F, 1 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1998-12-16', 0, 0, 'chunyu1005', '2007-02-13', 'mokcy92', '2000-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS064973020661', 'Sherry Allen', 1, '+86 188-5385-7005', 1, '166002199076031876', 'No.15 building, No.743, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1991-07-20', 0, 0, 'sallen10', '2009-04-08', 'sherryall', '2016-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS638863135896', 'Rachel Moore', 0, '+81 70-4164-0215', 1, '357935878567704420', '40-kai, 1-7-16 Omido, Higashiosaka, Osaka, Japan', '1987-05-21', 0, 0, 'moorerach', '2002-08-06', 'moorerachel44', '2000-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS295890060354', 'Cynthia Harris', 1, '+81 52-888-2953', 1, '463497101564209288', 'Rm. 25, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1995-04-14', 0, 0, 'cynthiaharris', '2014-10-31', 'cynharris1', '2020-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS894016107639', 'Valerie Wright', 1, '+1 213-315-9764', 2, '316744949318677673', '147 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1993-04-26', 0, 0, 'valerie1', '2006-02-08', 'valerie2', '2011-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS419657058496', 'Manuel Alexander', 1, '+81 90-2683-3063', 3, '953275348060452055', '日本東京中央区銀座三丁目12番19号2階', '1993-01-29', 0, 0, 'alexanderman10', '2017-06-13', 'male', '2016-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS498967444370', '文曉彤', 1, '+81 11-047-3372', 1, '619089302191293831', '日本札幌豊平区豊平三条十三丁目3番11号17階', '1986-08-26', 0, 0, 'manhiutung4', '2000-03-29', 'htman', '2004-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS301885574783', '原田架純', 0, '+44 (116) 401 7473', 1, '963364964026685516', 'No.44 Main building, 364 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1998-10-21', 0, 0, 'kasumi220', '2002-10-21', 'kasumharada', '2021-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS438801048201', 'Douglas Watson', 1, '+86 28-593-1161', 4, '080327438993431832', '中国成都市锦江区红星路三段734号25室', '1985-04-15', 0, 0, 'wadou', '2011-08-15', 'watson418', '2013-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS155147802814', '安藤光', 0, '+81 80-8630-4048', 4, '323659614759340846', 'Rm. 24, 2-5-17 Chitose, Atsuta Ward, Nagoya, Japan', '1985-12-13', 0, 0, 'hikaruando527', '2002-04-17', 'hikaruand', '2017-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS843033366652', '崔祖兒', 0, '+86 188-3359-2307', 3, '084058643702717705', '中国成都市成华区双庆路658号27楼', '1985-10-06', 0, 0, 'chochoyee329', '2008-01-16', 'cychoi', '2011-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS859868425589', '段震南', 0, '+86 199-6890-7500', 2, '326095572325868697', '31F, 784 Ganlan Rd, Pudong, Shanghai, China', '1995-07-28', 0, 0, 'duaz', '2013-11-23', 'duan10', '2020-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS475629828825', '宋璐', 1, '+81 3-2009-8367', 0, '233646207506013414', '日本東京千代田区丸の内一丁目6番9号47号室', '1988-06-22', 0, 0, 'slu331', '2020-01-05', 'songlu', '2002-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS631312892868', '西村聖子', 0, '+81 52-813-5145', 3, '712322308887692121', '17-kai, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1987-03-20', 0, 0, 'seikonishimura10', '2000-09-11', 'nishimuraseik', '2004-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS910978361680', '吕岚', 1, '+86 166-2012-6613', 3, '685082104452273947', '中国上海市浦东新区橄榄路144号7栋', '1993-08-24', 0, 0, 'lanlu', '2019-02-02', 'llu', '2014-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS159485658560', 'Christopher Flores', 0, '+86 20-600-7147', 3, '352093909085714361', '中国广州市海珠区江南西路273号华润大厦5室', '1987-12-19', 0, 0, 'cflores', '2020-07-31', 'christopherflo', '2020-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS841691121074', 'Louise Lee', 0, '+86 21-4063-4798', 4, '251741193341916512', 'Room 26, 82 Middle Huaihai Road, Huangpu District, Shanghai, China', '1993-04-02', 0, 0, 'leelouise09', '2006-09-06', 'lelouis', '2005-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS210771776492', '龚嘉伦', 1, '+81 11-771-6870', 3, '078141741081431243', '日本札幌白石区菊水三条五丁目2番19号39階', '1991-06-12', 0, 0, 'jialgo77', '2010-09-22', 'jialun1116', '2007-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS549179738691', '盧德華', 0, '+86 755-4167-7626', 2, '719486091604856892', 'Room 49, CR Building, 231 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1996-11-16', 0, 0, 'lotw', '2019-06-16', 'twlo7', '2016-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS004252916700', '鄺家強', 1, '+81 11-604-3135', 1, '003664873272662093', '3-kai, 2-1-2 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-08-27', 0, 0, 'kakeungkwo', '2007-09-02', 'kwokk', '2010-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS995657348061', '萧安琪', 1, '+81 80-7525-4230', 1, '571375869406056373', '3F, 9 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-09-29', 0, 0, 'xiaoanqi', '2019-03-09', 'anqix', '2005-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS925390037532', '杨睿', 0, '+81 90-1728-7045', 3, '539811461403983908', '8F, 5-4-7 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1985-09-22', 0, 0, 'ruiy', '2008-08-24', 'ruiy', '2000-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS020932116406', 'Jamie Graham', 1, '+81 3-5049-9896', 4, '795373043652436450', '26-kai, 3-15-5 Ginza, Chuo-ku, Tokyo, Japan', '1998-08-17', 0, 0, 'grahja71', '2014-07-15', 'jamigra', '2019-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS729736852772', '藤原美咲', 0, '+86 10-6911-9816', 2, '260719280989987223', '中国北京市东城区东单王府井东街238号18楼', '1988-05-08', 0, 0, 'mifujiwara', '2004-11-13', 'misakifu', '2007-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS444826563678', '廖明', 0, '+81 80-2813-4039', 1, '209512287319656701', '日本ならし学園南三丁目9番6号30号室', '1987-02-11', 0, 0, 'mingliao', '2017-07-27', 'liao83', '2010-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS377698340863', '莫致远', 1, '+81 70-9800-1998', 1, '378316136062783305', 'Rm. 39, 3-27-15 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-05-30', 0, 0, 'mo1124', '2017-07-12', 'mo5', '2010-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS472818194257', '譚秀文', 1, '+1 718-244-5001', 2, '525836284145851826', '413 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1992-05-26', 0, 0, 'saumanta', '2007-11-07', 'tsauman7', '2020-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS262299843841', '竹内翼', 1, '+81 70-7705-8901', 2, '671770401462629432', '49F, 2-1-18 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1988-09-13', 0, 0, 'takeuchi8', '2001-10-19', 'tsut126', '2010-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS235255117629', '岩崎海斗', 0, '+86 10-637-1455', 3, '295998422576429085', '47F, 589 68 Qinghe Middle St, Haidian District, Beijing, China', '1985-07-14', 0, 0, 'ikaito', '2017-10-25', 'iwasaki87', '2020-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS314065334097', 'Joseph Hamilton', 0, '+86 196-8476-6768', 1, '256013206248436669', '中国上海市浦东新区健祥路491号华润大厦25室', '1988-12-07', 0, 0, 'josephhamilton426', '2016-08-31', 'jha10', '2000-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS521498316072', '史詩涵', 0, '+81 80-7438-9506', 2, '052972083285679387', '12F, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1995-01-06', 0, 0, 'shihashi', '2012-10-31', 'shshi209', '2003-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS228582453263', '夏致远', 1, '+44 5456 211953', 4, '112230963280592173', 'Flat 14, 471 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1998-03-12', 0, 0, 'zhiyuan719', '2011-05-16', 'zhixia', '2021-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS527080674985', 'Raymond Murray', 0, '+81 11-233-6525', 1, '654353168986057599', '42F, 6-1-5, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1995-04-17', 0, 0, 'raymond7', '2012-09-11', 'raymurray', '2001-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS629682696446', '元家文', 1, '+86 168-5442-2638', 1, '653821432382996696', '26F, 323 FuXingMenNei Street, XiCheng District, Beijing, China', '1995-01-04', 0, 0, 'kaman4', '2017-12-24', 'ykm401', '2007-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS399589817629', '佐々木詩乃', 1, '+86 158-7591-0090', 4, '532421635760686793', '中国广州市天河区天河路742号15号楼', '1996-12-04', 0, 0, 'ss2', '2003-01-03', 'shsasaki', '2017-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS965317836496', '莫致远', 0, '+44 7567 374776', 1, '905202505139872372', 'Unit 37, Oxford Eco Centre, 737 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1993-12-22', 0, 0, 'mzh9', '2006-04-05', 'mzhiyuan', '2016-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS982673885238', '佘杰倫', 1, '+86 20-0972-9546', 3, '864813767347886210', '中国广州市天河区天河路156号30室', '1996-04-02', 0, 0, 'chiehlunshe', '2005-03-22', 'clsheh42', '2007-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS134248427864', 'Victor Williams', 0, '+44 (1865) 21 0765', 4, '943150026838815299', 'Flat 6, 439 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1986-12-20', 0, 0, 'vw07', '2017-10-21', 'victowilliams1103', '2001-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS487207756921', '宋子异', 1, '+44 5784 469312', 0, '891139176972882345', 'Block 23, 227 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1988-03-11', 0, 0, 'ziyi92', '2020-10-05', 'sonziyi1', '2017-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS682692473708', 'Martha Peterson', 1, '+86 10-5386-3507', 3, '100306204915136974', '中国北京市東城区東直門內大街309号8号楼', '1993-04-30', 0, 0, 'mpeterson', '2012-03-09', 'pm813', '2006-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS874927317519', '赵云熙', 1, '+81 66-517-1363', 3, '771206210485098296', '日本おおさかし東住吉区東田辺三丁目27番15号43階', '1985-07-17', 0, 0, 'yunxizhao', '2004-07-31', 'yunxizha', '2017-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS052291265738', '松本陸', 0, '+86 194-2804-3119', 3, '027445383038658080', 'Room 22, 232 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1994-03-30', 0, 0, 'rmat', '2004-09-18', 'matsumoto308', '2013-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS020695419601', 'Joel Mendez', 0, '+81 66-622-8256', 0, '853364433229934606', '日本おおさかし平野区加美東四丁目9番1号23階', '1997-08-01', 0, 0, 'mendezjoel', '2001-10-20', 'joelmendez', '2003-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS609019481648', '區明詩', 1, '+1 312-769-1308', 2, '802769873647478480', '838 Pedway Suite 9, Chicago, IL 60601, United States', '1988-03-26', 0, 0, 'aums1', '2007-02-07', 'aumingsze18', '2002-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS962944425458', '田中架純', 1, '+86 170-2113-9026', 3, '087353667723620313', '中国上海市浦东新区健祥路62号28室', '1996-11-24', 0, 0, 'kasutanaka', '2012-07-11', 'kasumi91', '2000-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS588687328357', '小野美緒', 1, '+86 196-6780-8851', 4, '577624305638888280', '中国北京市东城区东单王府井东街826号41栋', '1997-07-22', 0, 0, 'onmio', '2008-02-03', 'mioono', '2009-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS716107989875', '向震南', 0, '+86 20-0902-0710', 4, '484656676409333654', '中国广州市白云区小坪东路307号1号楼', '1986-07-09', 0, 0, 'zhennxi222', '2010-10-08', 'xiangzhennan64', '2017-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS832320738844', '山田聖子', 0, '+44 7627 374170', 1, '633098593091464675', 'Flat 40, 319 New Street, Birmingham, B2 4DB, United Kingdom', '1989-05-16', 0, 0, 'yamadseiko', '2003-11-07', 'yamseik', '2021-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS414864394152', 'Wendy Jenkins', 0, '+81 80-6236-3009', 3, '135329563626445601', '日本おおさかし西成区天神ノ森二丁目1番2号11号室', '1985-11-05', 0, 0, 'wendyjenk', '2017-08-14', 'wendyj', '2007-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS941659887815', '黎惠妹', 0, '+86 136-8848-8367', 4, '091919402761400188', 'Room 20, 212 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1998-06-23', 0, 0, 'hml2', '2018-09-08', 'lahuimei', '2000-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS900550434605', '黎震南', 1, '+81 70-6403-7824', 0, '723848645493665846', '35F, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1994-07-12', 0, 0, 'lizh', '2010-03-19', 'zhennanli9', '2013-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS502736826529', 'Dennis Daniels', 1, '+81 80-2041-3636', 3, '014681697679854584', '日本札幌豊平区豊平三条十三丁目3番20号3階', '1998-05-09', 0, 0, 'dend3', '2013-01-18', 'danielsd', '2001-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS864098738166', 'Clifford Aguilar', 0, '+81 70-2450-0314', 0, '223248609544855401', '日本おおさかし西成区天神ノ森二丁目1番16号29階', '1990-02-18', 0, 0, 'caguilar', '2016-06-29', 'clifford209', '2003-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS627036767123', '许睿', 0, '+86 133-4164-1946', 3, '079110915162481510', '中国北京市東城区東直門內大街544号26号楼', '1986-01-14', 0, 0, 'ruixu1977', '2009-02-12', 'xurui', '2009-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS340841638044', '于岚', 1, '+81 80-8960-7088', 3, '381055274890404503', '日本札幌豊平区豊平三条十三丁目3番13号10階', '1989-08-02', 0, 0, 'lanyu705', '2014-09-20', 'lany', '2002-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS308255577325', '鐘家強', 1, '+81 90-3971-3296', 3, '537916806145353222', '43F, 2-1-4 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1996-11-11', 0, 0, 'kakeungchu', '2021-11-12', 'chunkk2006', '2011-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS248631803340', '藤田花', 1, '+44 7604 168896', 1, '223682968093990635', 'No.14 Main building, 625 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1996-05-23', 0, 0, 'hana105', '2014-08-06', 'fujitahana90', '2012-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS620012686331', 'Rachel Wallace', 1, '+86 10-976-4634', 3, '273988433039979815', '中国北京市东城区东单王府井东街508号26室', '1986-04-22', 0, 0, 'wallarachel1205', '2000-04-19', 'racwallace10', '2000-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS852087285639', '冯秀英', 0, '+81 70-3658-1207', 1, '989501622337015161', '日本なごやし北区清水三丁目19番9号18階', '1985-03-31', 0, 0, 'feng1947', '2022-01-11', 'fxiuying405', '2011-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS981820817174', 'Jamie Snyder', 1, '+81 66-134-1733', 3, '605836823759618123', '49F, 1-1-7 Deshiro, Nishinari Ward, Osaka, Japan', '1986-09-27', 0, 0, 'snydej', '2014-01-07', 'jamie123', '2012-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS911040540437', '史詩涵', 1, '+86 769-1140-3502', 1, '296983206632969340', '中国东莞珊瑚路885号23栋', '1989-10-22', 0, 0, 'shis', '2011-03-05', 'shishiha', '2019-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS653981396865', 'Samuel Snyder', 1, '+1 838-051-9921', 1, '307118033210625325', '430 Central Avenue Apt 6, Albany, NY 12205, United States', '1988-06-16', 0, 0, 'snyder70', '2005-08-08', 'samusnyd1', '2020-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS072875134506', 'Norman Howard', 0, '+86 10-498-4759', 4, '855376934844527486', '中国北京市房山区岳琉路166号50栋', '1988-04-20', 0, 0, 'howard319', '2021-05-29', 'hnorman', '2020-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS026638285050', '溫秀文', 0, '+86 178-0354-1046', 1, '414948662308122859', '中国成都市成华区二仙桥东三路682号5号楼', '1990-10-12', 0, 0, 'wsm710', '2012-05-19', 'wan2', '2007-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS249100250007', '清水凛', 0, '+81 74-068-9496', 4, '136066212544361681', '日本ならし学園南三丁目9番8号18号室', '1988-02-05', 0, 0, 'shri', '2000-10-27', 'shimizurin16', '2010-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS140226312261', '何詩涵', 1, '+86 769-0977-5015', 1, '198868722923086080', '中国东莞坑美十五巷377号17室', '1989-03-19', 0, 0, 'she8', '2013-08-31', 'shihanhe301', '2016-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS191948059914', '菅原海斗', 0, '+81 11-314-6066', 0, '403023245607847902', '39F, 5-4-14 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-01-20', 0, 0, 'kaitosuga1961', '2015-09-01', 'sugawarakaito', '2020-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS115330229222', 'Jason Washington', 1, '+86 158-1523-3236', 1, '600234551750903237', '中国成都市锦江区人民南路四段452号华润大厦6室', '1989-09-30', 0, 0, 'jasonwashington', '2006-02-21', 'jasonwashington', '2013-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS634997454425', 'Jeff Wilson', 1, '+86 193-2864-8761', 3, '876512922702450580', '中国深圳罗湖区田贝一路730号28栋', '1985-10-31', 0, 0, 'jeffwilso6', '2021-08-15', 'jeff2', '2017-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS640157918258', 'Allen Turner', 1, '+44 7322 809380', 4, '821250508513182598', 'Block 41, 256 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1991-11-30', 0, 0, 'turnall93', '2000-04-25', 'turner6', '2006-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS728772768442', '崔頴思', 0, '+86 166-9859-4210', 1, '788616018548794692', '中国深圳罗湖区蔡屋围深南东路764号14室', '1993-05-10', 0, 0, 'wingszech', '2002-04-26', 'choiwingsze', '2022-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS402447979282', '松本樹', 1, '+81 66-076-8547', 4, '339939837012372878', '1F, 1-1-10 Deshiro, Nishinari Ward, Osaka, Japan', '1996-09-19', 0, 0, 'itsukim', '2002-02-05', 'itsukimatsu1216', '2020-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS674481217150', '内田凛', 0, '+86 10-344-2621', 2, '583107381825403194', 'Room 20, 892 FuXingMenNei Street, XiCheng District, Beijing, China', '1987-01-02', 0, 0, 'uchida423', '2010-02-12', 'rin222', '2004-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS871342792341', '韓德華', 1, '+86 177-4799-4765', 2, '504777715476963285', '4F, 898 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1986-08-16', 0, 0, 'takwahhan', '2016-07-02', 'htw', '2006-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS719428467777', '邱睿', 1, '+81 66-634-5001', 3, '273335556198585572', '日本おおさかし西成区天神ノ森二丁目1番2号19階', '1995-04-23', 0, 0, 'qiu66', '2012-03-29', 'qiurui524', '2001-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS870076087258', '杜力申', 0, '+86 148-6317-4691', 1, '861128874225979994', 'Room 4, CR Building, 213 68 Qinghe Middle St, Haidian District, Beijing, China', '1990-01-30', 0, 0, 'liksunto40', '2021-03-15', 'liksunt', '2019-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS876517525938', '蔡富城', 1, '+86 755-562-8262', 3, '802981567343983228', 'Room 19, CR Building, 284 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1993-01-23', 0, 0, 'fushingcho806', '2016-11-11', 'choifushing9', '2021-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS641609633438', 'Mildred Moore', 1, '+86 155-9483-9755', 1, '440784442044212632', '中国深圳罗湖区蔡屋围深南东路544号36室', '1994-03-13', 0, 0, 'mmi2', '2008-09-21', 'moom', '2019-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS291275228677', '中島葉月', 1, '+81 11-621-7367', 2, '808836162145777136', '日本札幌厚別区上野幌一条二丁目1番11号16階', '1993-09-24', 0, 0, 'haznak1128', '2021-10-29', 'hazuki9', '2015-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS024855097262', '西村陽菜', 1, '+81 74-475-7450', 3, '799313844207903738', '日本ならし大和郡山市本庄町一丁目1番16号12号室', '1987-12-18', 0, 0, 'nhina', '2010-09-17', 'nishihina', '2015-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS876615369133', '上田光', 1, '+86 179-8537-7958', 3, '999266597793504661', 'No.50 building, No. 914, Shuangqing Rd, Chenghua District, Chengdu, China', '1993-11-12', 0, 0, 'uedahikaru', '2012-07-30', 'uedahikaru', '2017-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS882920344841', 'Carrie Porter', 1, '+44 5304 629162', 2, '944801149733281200', 'Flat 1, 633 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1993-07-17', 0, 0, 'carrie2', '2017-01-12', 'carp54', '2004-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS212421371989', '莫宇宁', 0, '+1 330-437-0134', 4, '348978134057034126', '732 Ridgewood Road Apt 9, Akron, OH 44321, United States', '1989-06-18', 0, 0, 'moy1108', '2008-01-25', 'moyuning10', '2012-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS048305077664', '河野凛', 1, '+81 11-955-8441', 0, '775328126435182739', '28F, 5-4-20 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1992-01-15', 0, 0, 'kr15', '2011-09-16', 'konorin', '2017-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS942421365679', '藤原和真', 0, '+1 312-598-1715', 3, '335358202435220449', '874 Rush Street Apt 18, Chicago, IL 60611, United States', '1998-10-16', 0, 0, 'fujiwarakazuma', '2000-02-03', 'fujiwarakazuma808', '2013-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS549615671541', '龚致远', 1, '+81 80-5945-5155', 3, '604956482025001602', '4-kai, 2-3-20 Yoyogi, Shibuya-ku, Tokyo, Japan', '1998-02-20', 0, 0, 'zgo', '2008-11-16', 'gongzhi', '2007-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS163807503124', '安藤七海', 0, '+86 28-245-2477', 0, '023355403657322011', 'No.21 building, 255 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1994-03-08', 0, 0, 'nanamiando819', '2009-04-30', 'nanamiando', '2001-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS848925682496', 'Randy Tran', 1, '+86 167-4131-2492', 2, '513102358306932290', '中国北京市東城区東直門內大街798号5室', '1994-12-30', 0, 0, 'randtra', '2014-01-20', 'randyt', '2000-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS268831020889', '柴田葵', 0, '+86 139-1148-2182', 1, '613344865084635876', '中国广州市海珠区江南西路166号华润大厦39室', '1989-07-18', 0, 0, 'shibataao', '2018-07-31', 'saoi', '2020-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS529698857743', '官發', 0, '+81 70-0621-4838', 3, '609247743856538175', '日本なごやし熱田区千年二丁目5番8号30号室', '1995-06-03', 0, 0, 'kofat', '2017-03-27', 'koon1', '2012-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS390771247862', '蒋震南', 1, '+81 90-4894-3696', 3, '573317464528309426', '25-kai, 18 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-06-28', 0, 0, 'jiang10', '2021-09-14', 'jiang61', '2020-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS300174745142', '應嘉欣', 1, '+1 838-071-1588', 2, '627546641672199026', '299 State Street Apt 43, Albany, NY 12203, United States', '1993-10-28', 0, 0, 'karyany', '2006-05-09', 'yingky410', '2004-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS423972559963', '千葉大輔', 1, '+86 21-5280-7793', 3, '903407836151952449', '中国上海市闵行区宾川路284号华润大厦44室', '1988-12-27', 0, 0, 'chd', '2012-02-21', 'daisuch', '2006-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS420999499665', 'Shawn Hernandez', 1, '+81 90-8549-0056', 3, '432922977240140229', '10F, 2-5-14 Chitose, Atsuta Ward, Nagoya, Japan', '1992-11-20', 0, 0, 'hersh5', '2019-10-20', 'hsha226', '2001-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS737371284970', '傅俊宇', 1, '+1 838-446-2041', 1, '491855605301125085', '435 Broadway 3rd Floor, Albany, NY 12207, United States', '1994-04-27', 0, 0, 'cyf', '2004-08-01', 'cyfu', '2010-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS743922027307', '上野蓮', 0, '+81 90-6068-1282', 3, '658512668319496270', '日本おおさかし東住吉区東田辺三丁目27番5号44階', '1993-08-30', 0, 0, 'uenoren1985', '2016-11-15', 'ueren1975', '2015-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS440252321143', 'Ann Salazar', 1, '+44 7622 025060', 1, '705083882339111012', 'No.31 Main building, 372 Redfern St, Liverpool, L20 8JB, United Kingdom', '1992-01-31', 0, 0, 'ann2020', '2013-09-30', 'as7', '2014-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS872887338780', '薛青雲', 1, '+81 11-285-7551', 2, '425232702624606219', '日本札幌白石区菊水三条五丁目2番17号42号室', '1992-05-18', 0, 0, 'cws', '2014-12-26', 'cwsi6', '2017-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS100103084046', 'Amanda Bailey', 1, '+86 188-9503-0240', 1, '678721560372772144', 'No.35 building, 942 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1994-04-17', 0, 0, 'baileyamanda', '2008-08-19', 'bailam', '2004-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS422983142454', '宋岚', 1, '+81 90-6316-6172', 1, '461556199096928858', '日本なごやし瑞穂区河岸町四丁目20番19号38号室', '1990-09-14', 0, 0, 'lsong', '2008-09-07', 'lansong', '2016-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS627378683314', '田中架純', 1, '+81 70-5788-2307', 3, '806999028182952504', '26F, 6 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-08-10', 0, 0, 'tanaka10', '2018-11-23', 'kasumt1', '2012-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS977714219413', '杨睿', 0, '+86 769-358-0469', 3, '588713552170829774', '中国东莞坑美十五巷755号华润大厦44室', '1993-01-20', 0, 0, 'ryang11', '2021-07-03', 'ruiya', '2011-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS524365343213', '董秀英', 0, '+1 312-429-3912', 2, '108247754696445374', '127 North Michigan Ave Apt 8, Chicago, IL 60611, United States', '1992-08-15', 0, 0, 'xiuyingdong407', '2015-05-16', 'xidong', '2003-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS585101634267', '中野陸', 1, '+81 66-294-6727', 2, '030816922104556493', '日本おおさかし東住吉区東田辺三丁目27番7号41階', '1996-12-27', 0, 0, 'riku1980', '2004-08-25', 'nakrik', '2006-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS118679130532', '鄭慧琳', 0, '+86 755-6548-3867', 0, '791935849819751136', '中国深圳福田区景田东一街881号21号楼', '1991-07-22', 0, 0, 'wailamche5', '2009-10-29', 'wailamc', '2007-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS956881684085', '房發', 0, '+86 198-5252-0521', 2, '282190222435400760', 'No.6 building, No. 732, Shuangqing Rd, Chenghua District, Chengdu, China', '1987-05-07', 0, 0, 'fongfa', '2014-10-19', 'fongfat', '2002-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS023161634887', 'Sherry Moore', 1, '+44 (161) 991 2146', 1, '713267474377774680', 'Flat 35, 32 Mosley St, Manchester, M2 3AQ, United Kingdom', '1992-02-12', 0, 0, 'sherry4', '2018-02-02', 'shermoore', '2009-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS477165826922', '石井美羽', 1, '+1 838-448-9067', 4, '538910249777539516', '283 Lark Street Apt 15, Albany, NY 12210, United States', '1991-01-23', 0, 0, 'ishmi701', '2016-10-26', 'ishiimi526', '2013-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS640726858118', '鈴木陽菜', 0, '+81 70-4714-2134', 0, '304627770305550690', '35F, 2-1-4 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1989-01-06', 0, 0, 'suhi9', '2003-08-14', 'hina12', '2001-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS783089045922', '崔富城', 1, '+86 145-0181-5197', 4, '947231808648637103', 'No.43 building, 373 Ganlan Rd, Pudong, Shanghai, China', '1989-04-06', 0, 0, 'choifushing906', '2015-10-06', 'fushing816', '2017-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS624463186014', '田中大和', 0, '+81 80-4361-2858', 2, '747078842627794745', '日本札幌白石区菊水三条五丁目4番18号35号室', '1993-12-16', 0, 0, 'tanaka10', '2011-08-09', 'tanaka1970', '2005-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS215996496556', 'Edna Vasquez', 1, '+86 755-084-2649', 3, '080499703888357427', '中国深圳罗湖区蔡屋围深南东路559号华润大厦37室', '1991-10-13', 0, 0, 'ednavas10', '2017-03-03', 'vasquez98', '2007-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS284559463513', '横山明菜', 0, '+44 5929 998624', 1, '909339213534278089', 'Block 7, 850 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1988-06-16', 0, 0, 'yokoyama422', '2021-11-16', 'akinayokoy15', '2018-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS807526310278', '餘嘉欣', 0, '+81 90-5827-1354', 3, '058899829450239357', '48-kai, 13-3-11 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1985-08-18', 0, 0, 'karyanyue', '2005-08-03', 'yky93', '2011-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS442977797301', 'Lisa Gonzalez', 0, '+44 (151) 939 9815', 0, '656319896368560865', 'Unit 5, Oxford Eco Centre, 56 Redfern St, Liverpool, L20 8JB, United Kingdom', '1989-11-27', 0, 0, 'lisa2', '2012-01-25', 'lisa1987', '2002-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS170837504392', '程秀英', 1, '+44 5173 584012', 3, '780832484658045052', 'Block 15, 717 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1996-04-07', 0, 0, 'cxi', '2003-03-08', 'chengxiuy405', '2006-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS358480149602', '韩致远', 0, '+1 614-665-1610', 1, '537205570697806318', '613 Tremont Road Suite 2, Columbus, GA 43212, United States', '1989-12-26', 0, 0, 'zhan', '2010-12-08', 'hazhi', '2013-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS192047989978', '韓家文', 1, '+44 (1865) 04 2692', 3, '867317363551537869', 'Unit 4, Oxford Eco Centre, 470 Park End St, Oxford, OX1 1JD, United Kingdom', '1993-05-15', 0, 0, 'hankaman', '2007-08-20', 'kmhan1', '2014-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS455660801270', '戴晓明', 0, '+1 838-089-2959', 1, '627699460437668765', '19 Central Avenue Apt 24, Albany, NY 12205, United States', '1986-11-05', 0, 0, 'xiaoming4', '2005-08-03', 'xida7', '2004-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS215926481317', '鄭秀文', 0, '+1 212-381-9888', 3, '287012551626877646', '234 Wooster Street Apartment 31, New York, NY 10012, United States', '1985-11-12', 0, 0, 'saumancheng2', '2001-09-26', 'sauman2', '2010-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS975912914969', '木下蒼士', 0, '+86 10-003-8465', 1, '320564287097578624', 'Room 36, CR Building, 157 East Wangfujing Street, Dongcheng District , Beijing, China', '1988-04-14', 0, 0, 'aoshi4', '2004-09-18', 'kinoshitaa', '2001-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS265173591014', '鈴木彩乃', 0, '+44 7593 342709', 1, '407206421484671678', 'No.35 Main building, 606 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1986-05-09', 0, 0, 'suzukiayano', '2018-05-29', 'ayanosuz', '2018-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS736053522093', '田村百恵', 0, '+81 80-3044-4285', 1, '110546609022553609', '日本おおさかし平野区加美東四丁目9番5号34号室', '1993-01-14', 0, 0, 'momoetamu', '2012-11-13', 'tamuramomoe', '2016-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS494800612207', 'Heather Jones', 1, '+44 (151) 876 7416', 0, '636703351219023236', 'Unit 13, Oxford Eco Centre, 657 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1985-04-25', 0, 0, 'jonehe', '2002-12-02', 'heather1996', '2014-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS689349729200', 'Troy Hunter', 0, '+81 11-851-7117', 2, '003655592288165688', '日本札幌白石区菊水三条五丁目4番2号35号室', '1997-07-23', 0, 0, 'ht02', '2010-01-10', 'hutroy', '2000-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS610182940815', '區富城', 0, '+86 760-7967-6780', 3, '470891253499294696', '中国中山京华商圈华夏街721号3号楼', '1998-10-05', 0, 0, 'fsau', '2000-11-26', 'fsa1951', '2018-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS132256483754', '餘浩然', 1, '+86 10-241-0930', 3, '780391914333044079', '中国北京市东城区东单王府井东街100号华润大厦2室', '1996-11-06', 0, 0, 'hyyue', '2000-03-25', 'yue425', '2016-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS828172367169', '平野湊', 0, '+1 330-135-3784', 4, '150549812145291836', '29 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1994-06-10', 0, 0, 'minato1023', '2006-09-27', 'minatohi', '2016-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS176476592393', '杨震南', 0, '+86 185-4660-9178', 1, '267070739047950891', '中国上海市徐汇区虹桥路662号40号楼', '1985-12-28', 0, 0, 'zhennan5', '2015-05-15', 'yzhenn', '2001-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS733064447733', '江世榮', 1, '+1 212-075-3294', 3, '849080985271839423', '940 Fifth Avenue Suite 44, New York, NY 10017, United States', '1996-10-09', 0, 0, 'saiwing716', '2013-11-04', 'kosaiwing', '2017-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS210143525995', 'Debra Boyd', 0, '+81 70-9677-4389', 3, '549988492578051269', '日本おおさかし平野区加美東四丁目9番16号14階', '1992-04-04', 0, 0, 'debra829', '2014-04-10', 'debboyd', '2020-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS315810613867', '蔡安琪', 1, '+86 181-9507-7687', 1, '354649827415697476', '中国北京市海淀区清河中街68号710号11楼', '1992-08-11', 0, 0, 'anqicai', '2019-08-14', 'caanqi9', '2012-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS079901064797', 'Maria Thompson', 0, '+81 90-5853-5311', 1, '995944841903423057', '日本札幌豊平区豊平三条十三丁目3番10号39階', '1992-03-06', 0, 0, 'mthompson', '2004-10-24', 'thompsonm', '2009-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS878181222496', '小林蓮', 0, '+44 (1223) 82 5294', 0, '320642373927190066', 'No.3 Main building, 384 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1988-10-13', 0, 0, 'rkobayashi', '2003-11-23', 'kren', '2006-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS447561827524', 'Wanda Richardson', 1, '+86 10-689-1513', 4, '617096725181490470', 'Room 39, 411 Sanlitun Road, Chaoyang District, Beijing, China', '1986-08-25', 0, 0, 'wandar', '2004-03-20', 'riw7', '2014-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS336722522102', 'Douglas Grant', 0, '+81 52-245-7778', 3, '388185560153020419', '日本なごやし守山区瀬古東二丁目171番10号43階', '1990-12-13', 0, 0, 'grdoug', '2011-05-05', 'douglasgran', '2001-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS015309117818', '田中美咲', 1, '+1 718-989-8647', 1, '851310288158539753', '948 Flatbush Ave Apartment 27, Brooklyn, NY 11225, United States', '1991-02-26', 0, 0, 'tanm', '2013-09-27', 'misaki1', '2019-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS813612835487', '坂本湊', 0, '+1 330-804-9346', 1, '652913401064176809', '481 Fern Street Apt 27, Akron, OH 44307, United States', '1987-10-21', 0, 0, 'sminato', '2010-06-05', 'sakamoto1', '2011-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS266550558686', '彭璐', 1, '+44 (151) 970 0362', 3, '543189513568856033', 'Flat 38, 23 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1998-09-08', 0, 0, 'lu82', '2009-02-24', 'lupeng915', '2019-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS375286392374', '白梓軒', 0, '+86 769-8312-3830', 2, '469934780054149392', '中国东莞东泰五街334号2栋', '1990-07-09', 0, 0, 'tszhin10', '2021-08-28', 'tszhin10', '2009-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS616948352313', '内田美咲', 0, '+1 614-770-9254', 3, '967122576201176870', '367 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1989-12-23', 0, 0, 'uchida02', '2017-06-01', 'ucm', '2000-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS875016215176', '顾子韬', 0, '+86 177-7619-0547', 1, '467398143808922058', '中国上海市闵行区宾川路640号50室', '1986-05-29', 0, 0, 'gu46', '2008-07-06', 'zgu425', '2010-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS953425379330', '餘秀文', 0, '+1 213-023-1050', 3, '818349952034370626', '448 Wall Street Apartment 31, Los Angeles, CA 90003, United States', '1993-11-13', 0, 0, 'yuesm', '2018-11-04', 'smyue', '2016-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS678934614261', '董云熙', 0, '+86 21-615-5730', 0, '080974821674315770', '中国上海市徐汇区虹桥路427号12楼', '1992-03-21', 0, 0, 'dongyunxi', '2006-09-26', 'dongyunx', '2012-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS609518893975', 'Glenn Russell', 0, '+81 66-555-7907', 0, '174674295614612972', '日本おおさかし東住吉区東田辺三丁目27番6号49号室', '1989-06-17', 0, 0, 'russell9', '2008-12-05', 'gleru', '2016-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS274931386897', '卢秀英', 0, '+86 760-367-8390', 2, '098931786150274535', 'No.31 building, 906 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1990-04-20', 0, 0, 'xiuyl', '2002-09-15', 'lxiuying4', '2020-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS383441263024', '吳國賢', 0, '+44 (116) 893 8321', 1, '908601448033844453', 'Block 5, 844 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-03-18', 0, 0, 'ng10', '2007-11-29', 'kwokyin1105', '2006-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS478362300218', '顧秀文', 0, '+86 769-6804-3912', 0, '704187274543256399', 'No.16 building, 588 Shanhu Rd, Dongguan, China', '1998-04-30', 0, 0, 'kusm402', '2021-11-30', 'ku907', '2002-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS869794706925', 'George Owens', 1, '+44 7231 009321', 3, '359833605297203780', 'No.8 Main building, 787 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1989-05-27', 0, 0, 'geowen48', '2004-09-18', 'owegeorge', '2003-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS128950568135', '韩子异', 0, '+81 70-8847-7570', 2, '836268533075693148', '38F, 2-3-19 Yoyogi, Shibuya-ku, Tokyo, Japan', '1986-07-23', 0, 0, 'ziyihan', '2006-01-07', 'hanziyi', '2000-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS852999068197', '大塚美月', 0, '+44 5679 087451', 1, '989123106372278161', 'Unit 1, Oxford Eco Centre, 917 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1993-04-03', 0, 0, 'miotsuka', '2012-01-03', 'om9', '2004-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS002983243534', '曾睿', 1, '+1 330-185-5581', 3, '864622629400466085', '283 Fern Street Apt 5, Akron, OH 44307, United States', '1988-06-06', 0, 0, 'zengrui', '2009-11-08', 'zeng3', '2007-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS163480286737', '苗志明', 1, '+44 (116) 551 6226', 3, '211148274667335422', 'No.41 Main building, 311 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1994-04-10', 0, 0, 'chiming125', '2015-03-20', 'chiming816', '2010-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS099747333248', '區慧儀', 1, '+1 614-397-4659', 4, '676782925272746717', '774 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1991-06-11', 0, 0, 'au927', '2013-02-06', 'waiyeeau', '2014-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS660933175422', '張朝偉', 0, '+86 152-7753-0948', 1, '926193034482283591', '中国北京市西城区西長安街571号17室', '1986-03-27', 0, 0, 'cwcheu', '2016-11-23', 'chiuwaicheu', '2015-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS695928077911', '黎云熙', 1, '+1 213-181-1019', 3, '097255665477940252', '334 Sky Way Apartment 4, Los Angeles, CA 90043, United States', '1987-06-01', 0, 0, 'yunxili1', '2010-02-20', 'yli1971', '2012-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS767594590049', '莫國權', 0, '+86 28-211-1578', 0, '084842398167817076', '中国成都市锦江区红星路三段919号华润大厦19室', '1994-12-03', 0, 0, 'kkmok', '2018-12-15', 'mokkwokkuen', '2012-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS835630351549', 'Brandon Simmons', 1, '+86 20-0157-3803', 1, '892605132180084704', '中国广州市白云区小坪东路903号13栋', '1998-04-08', 0, 0, 'brandon10', '2012-12-01', 'simbrandon', '2011-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS539407049147', '姚家玲', 0, '+86 195-6972-7203', 0, '982796812830303092', '中国北京市海淀区清河中街68号411号24号楼', '1993-12-25', 0, 0, 'ykalin', '2004-12-10', 'yeowkaling', '2002-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS059084254265', 'Willie Kennedy', 1, '+81 66-427-2232', 4, '218693184553932862', '日本おおさかし平野区加美東四丁目9番15号32階', '1998-11-18', 0, 0, 'williekennedy', '2006-05-28', 'williekennedy505', '2020-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS404474667055', '譚裕玲', 1, '+1 330-966-0038', 0, '814409673490132109', '593 Riverview Road Apt 39, Akron, OH 44313, United States', '1998-08-02', 0, 0, 'tamyuling', '2016-06-06', 'tayuling5', '2020-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS963574490122', '常岚', 1, '+1 212-785-4975', 3, '903834232473240269', '388 Wooster Street Apartment 5, New York, NY 10012, United States', '1994-10-04', 0, 0, 'clan', '2005-03-22', 'changlan315', '2004-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS820677138521', 'Tammy Long', 0, '+81 80-1782-8607', 2, '296267785701197698', '日本なごやし守山区瀬古東二丁目171番7号33階', '1997-12-04', 0, 0, 'lotammy2', '2001-02-28', 'tlong3', '2000-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS125412862692', '范璐', 0, '+86 20-780-6469', 3, '768916318148346494', '中国广州市越秀区中山二路959号39室', '1988-01-15', 0, 0, 'fanl8', '2019-06-04', 'falu', '2017-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS154955599744', '陳霆鋒', 0, '+44 (121) 959 7926', 3, '526658070024464924', 'Unit 14, Oxford Eco Centre, 187 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1998-11-16', 0, 0, 'chan5', '2018-02-03', 'chatingfung', '2011-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS189046507961', '沈云熙', 1, '+86 155-3263-1633', 1, '308878132541772958', '中国广州市白云区机场路棠苑街五巷54号9楼', '1994-07-28', 0, 0, 'shey', '2006-12-12', 'yunshe', '2007-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS468049351485', '姜子异', 0, '+81 66-034-8184', 1, '178762910668717527', '日本おおさかし東住吉区東田辺三丁目27番14号5階', '1992-11-02', 0, 0, 'ziyi5', '2008-07-31', 'zijiang', '2006-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS098159898840', '黃梓晴', 0, '+86 154-4608-3864', 3, '761546754711036103', '中国成都市锦江区红星路三段562号18室', '1989-04-25', 0, 0, 'wotszching', '2002-10-13', 'wong3', '2020-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS084965616179', '汪致远', 1, '+81 74-563-7951', 4, '194842112235502231', '日本ならし西大寺赤田町一丁目7番4号31階', '1993-05-02', 0, 0, 'zhiyuanwang', '2002-02-25', 'zwa', '2016-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS833715296240', '岩崎一輝', 0, '+81 80-2060-8951', 4, '953495432017818776', 'Rm. 42, 2-5-13 Chitose, Atsuta Ward, Nagoya, Japan', '1997-10-19', 0, 0, 'ikki5', '2003-11-27', 'ikkiw', '2021-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS358502663912', '高祖兒', 1, '+44 (121) 338 0463', 4, '710580400088411654', 'Flat 47, 176 New Street, Birmingham, B2 4DB, United Kingdom', '1999-01-24', 0, 0, 'kcy1014', '2005-01-13', 'kaochoyee6', '2004-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS436157129002', '龚子韬', 0, '+1 312-609-9931', 3, '804453696057701543', '470 North Michigan Ave Apartment 28, Chicago, IL 60611, United States', '1997-08-03', 0, 0, 'zitao4', '2007-09-03', 'zitao120', '2016-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS899666323754', '狄志遠', 1, '+1 212-692-3549', 3, '997799956410349690', '196 Canal Street Suite 40, New York, NY 10013, United States', '1987-11-22', 0, 0, 'cyt1', '2013-06-05', 'cyti905', '2015-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS934191031252', '狄頴思', 1, '+81 90-5789-5713', 0, '454258259590218402', 'Rm. 7, 1 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1998-10-14', 0, 0, 'ti10', '2000-03-20', 'wingsze9', '2018-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS696209394596', 'Edwin Jenkins', 0, '+81 11-466-4462', 3, '053187785838848927', '48-kai, 5-4-12 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-01-31', 0, 0, 'jenkins1227', '2017-01-23', 'jenkiedwin', '2011-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS961765388704', '佐々木架純', 1, '+44 7283 994653', 2, '714447049632207210', 'Block 1, 814 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1989-11-18', 0, 0, 'kasumisas1949', '2013-09-05', 'kasas', '2005-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS466324135507', 'Paula Ross', 0, '+81 52-695-3154', 3, '288240433611781206', '40F, 10 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-08-24', 0, 0, 'paula924', '2004-05-23', 'pross', '2008-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS425137994670', 'Margaret Gray', 0, '+44 (161) 253 2233', 2, '346797517033126185', 'Unit 2, Oxford Eco Centre, 486 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-12-13', 0, 0, 'margray', '2014-06-17', 'marggray', '2005-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS360177740980', '文天樂', 0, '+1 718-556-5016', 2, '758511430367415756', '200 Flatbush Ave Apt 25, Brooklyn, NY 11225, United States', '1998-03-13', 0, 0, 'tlma', '2010-10-26', 'mantinlok', '2011-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS450838491178', 'Edwin Chen', 1, '+81 80-4263-7111', 1, '472363894535656054', 'Rm. 39, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-02-01', 0, 0, 'chenedwi', '2001-12-17', 'chen2', '2004-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS603440424937', '林詩君', 1, '+1 718-397-0548', 4, '931486573082675483', '246 Columbia St Apartment 37, Brooklyn, NY 11231, United States', '1988-03-18', 0, 0, 'laszekwan1103', '2020-05-21', 'skl2009', '2015-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS806775133663', 'Sheila Nguyen', 0, '+44 (1865) 93 8987', 3, '494723324050097316', 'Flat 5, 839 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1985-02-27', 0, 0, 'nguyesheila', '2009-07-01', 'nguyensh', '2005-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS910759006186', '傅震南', 0, '+1 312-523-6174', 4, '362688879013723127', '891 Pedway 3rd Floor, Chicago, IL 60601, United States', '1993-08-12', 0, 0, 'zhennanf', '2000-10-20', 'zhefu', '2016-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS997939407380', 'Susan Adams', 0, '+81 90-1253-0779', 0, '569061482551730591', '日本おおさかし平野区加美東四丁目9番11号4号室', '1985-10-12', 0, 0, 'adamssusan', '2014-01-16', 'susana', '2007-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS871896077134', '河野凛', 1, '+1 330-524-7081', 4, '760009810854732738', '53 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1985-08-20', 0, 0, 'krin', '2017-07-08', 'rink', '2004-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS456822989974', 'Craig Henderson', 0, '+86 181-1853-7048', 3, '353541476382459107', 'No.15 building, 643 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-05-23', 0, 0, 'hendcr1', '2021-07-12', 'craig212', '2005-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS603751422092', '中野愛梨', 0, '+1 330-369-5477', 3, '422793782024614037', '573 West Market Street Suite 34, Akron, OH 44333, United States', '1995-01-26', 0, 0, 'nakanoa', '2004-08-15', 'nakanoairi1130', '2019-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS465561895652', '邓杰宏', 1, '+86 154-0330-5079', 0, '026226237978676939', 'Room 14, 122 Shanhu Rd, Dongguan, China', '1995-07-17', 0, 0, 'jdeng', '2020-04-19', 'dejieho1', '2012-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS264845341271', '丁晓明', 0, '+86 171-7243-0629', 1, '874972518492634078', '中国广州市越秀区中山二路539号4楼', '1992-06-13', 0, 0, 'xding', '2017-07-23', 'dxiaom2013', '2010-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS969799104682', '池田蒼士', 0, '+86 169-2729-8129', 2, '244280895051475403', '中国成都市成华区二仙桥东三路871号22号楼', '1993-09-05', 0, 0, 'ai85', '2021-11-20', 'aikeda811', '2004-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS819372234860', '吕致远', 0, '+81 80-3785-2339', 1, '833325033802786351', '日本ならし西大寺赤田町一丁目7番5号6階', '1995-11-14', 0, 0, 'zlu', '2013-08-22', 'luzhiy2', '2011-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS690319224420', '曾岚', 1, '+86 21-9465-9573', 2, '140779099892191419', '中国上海市浦东新区橄榄路732号13号楼', '1993-11-14', 0, 0, 'lzeng1958', '2017-03-21', 'lanzeng', '2003-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS385411916102', '韓曉彤', 0, '+81 80-3050-6530', 4, '261052581796828219', '日本東京港区東新橋一丁目5番1号50階', '1996-07-28', 0, 0, 'hiutung307', '2002-01-05', 'hthan', '2003-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS496769840834', '蔣梓晴', 1, '+81 52-972-4936', 4, '229582916420055783', '9-kai, 10 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-12-19', 0, 0, 'tcchian9', '2010-05-05', 'tcchi2003', '2005-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS963604989312', '中村彩乃', 1, '+86 10-164-4635', 1, '589999457085859170', 'No.19 building, 130 028 County Rd, Yanqing District, Beijing, China', '1998-04-11', 0, 0, 'anakamura', '2020-12-09', 'nakaayano', '2020-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS863228219697', '龚詩涵', 0, '+86 10-6477-2458', 3, '085003404772568921', '中国北京市东城区东单王府井东街71号华润大厦32室', '1996-11-08', 0, 0, 'gongs', '2020-06-30', 'shihagong', '2019-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS209894455149', '戴世榮', 0, '+86 10-251-6818', 1, '037770616849980002', '中国北京市延庆区028县道146号49楼', '1998-04-02', 0, 0, 'dasw', '2011-02-10', 'swdai04', '2017-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS903337232382', '金震南', 0, '+81 90-1214-3204', 4, '732483749631624071', '日本札幌清田区真栄四条五丁目19番9号40階', '1987-12-13', 0, 0, 'zhennan5', '2009-12-13', 'zhennanjin', '2000-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS671823713983', '酒井涼太', 1, '+81 3-1677-8554', 3, '458688991944880566', '日本東京渋谷区代々木二丁目3番18号40階', '1985-10-03', 0, 0, 'sakair46', '2017-12-02', 'sakairyota93', '2001-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS513589142282', '林子韬', 1, '+1 312-549-6936', 2, '844796355437646984', '326 North Michigan Ave Apt 29, Chicago, IL 60611, United States', '1993-03-29', 0, 0, 'lzi1944', '2021-05-24', 'zilin', '2015-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS183415402060', '佐野一輝', 1, '+81 11-172-4395', 2, '516363545041235755', 'Rm. 31, 6-1-5, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1994-03-04', 0, 0, 'iks', '2014-12-05', 'iksan', '2001-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS849181702933', 'Rodney Hayes', 1, '+81 80-1382-9452', 0, '444450818466401543', '日本おおさかし平野区加美東四丁目9番16号34階', '1994-07-08', 0, 0, 'rodney4', '2002-10-27', 'hayes2', '2012-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS724690866963', '西村蓮', 0, '+86 157-5263-7077', 1, '165819834678390217', 'No.11 building, 343 68 Qinghe Middle St, Haidian District, Beijing, China', '1988-03-19', 0, 0, 'nishimura125', '2005-07-24', 'nir', '2008-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS133681748429', '苗曉彤', 0, '+86 146-7828-2580', 4, '595358550324847506', '中国上海市黄浦区淮海中路792号50楼', '1986-05-14', 0, 0, 'mhiutung', '2003-11-27', 'hiutungmi1', '2015-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS430547453091', '後藤凛', 1, '+1 614-516-0263', 2, '856742038234680149', '683 Diplomacy Drive Apt 44, Columbus, GA 43228, United States', '1989-10-15', 0, 0, 'ringoto', '2003-03-01', 'ring', '2002-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS947227167803', '邵梓晴', 1, '+44 (161) 168 5452', 1, '256752063356170290', 'Unit 14, Oxford Eco Centre, 673 Portland St, Manchester, M1 3LA, United Kingdom', '1996-01-13', 0, 0, 'tcsiu8', '2001-09-22', 'siutszching1125', '2019-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS865396129928', '孔秀英', 1, '+44 5704 527292', 2, '730816393429928732', 'Flat 36, 285 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-08-18', 0, 0, 'xiuyingkong', '2001-02-19', 'koxiuying65', '2006-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS512673871852', '野口美緒', 1, '+44 (151) 606 9689', 1, '868560511298951806', 'Flat 45, 971 Hanover St, Liverpool, L1 4AF, United Kingdom', '1996-12-28', 0, 0, 'noguchimi1231', '2008-06-20', 'mio3', '2016-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS131975689844', '黄安琪', 0, '+44 7684 924266', 4, '030989148870003662', 'Unit 45, Oxford Eco Centre, 969 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1991-09-24', 0, 0, 'anqihu', '2019-01-11', 'huaanqi', '2001-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS847149981744', '林百花', 1, '+1 718-914-4568', 1, '832184618275838606', '26 Columbia St Apt 13, Brooklyn, NY 11231, United States', '1986-10-21', 0, 0, 'hayashimo711', '2012-03-27', 'mh825', '2007-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS623904462343', '萧云熙', 1, '+86 138-0697-6915', 4, '025134586840486548', 'Room 28, CR Building, 665 Jingtian East 1st St, Futian District, Shenzhen, China', '1998-04-01', 0, 0, 'yunxixiao43', '2006-02-16', 'yunxi1940', '2001-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS265966472069', '程璐', 0, '+86 149-9744-2485', 1, '247996602244269853', 'Room 18, CR Building, 284 Jianxiang Rd, Pudong, Shanghai, China', '1997-01-15', 0, 0, 'lucheng7', '2008-11-14', 'luch', '2014-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS216257998674', 'Gladys Gutierrez', 0, '+81 90-6035-1943', 3, '174603391023037720', '14-kai, 5-2-9 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-03-12', 0, 0, 'gutgla8', '2000-03-19', 'gladys5', '2020-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS040045923654', 'Donald Wright', 1, '+81 74-255-9268', 3, '316950979870055516', 'Rm. 18, 3-9-16 Gakuenminami, Nara, Japan', '1988-05-12', 0, 0, 'donaldwri', '2016-05-16', 'wright206', '2016-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS275188739754', 'Jeffrey Gonzales', 1, '+1 718-564-7796', 4, '461117685472106821', '493 1st Ave Apartment 14, Brooklyn, NY 11220, United States', '1995-04-19', 0, 0, 'jefgonzales14', '2018-01-01', 'gonzalesj81', '2009-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS735340813938', 'Anthony Torres', 1, '+86 131-5700-0692', 3, '972018616334240817', 'No.27 building, 533 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1987-10-25', 0, 0, 'anthonytorres7', '2012-08-08', 'torresantho4', '2017-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS857561796868', '薛曉彤', 0, '+1 838-619-2195', 2, '824799561408759236', '529 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1987-05-20', 0, 0, 'hiutung5', '2015-09-28', 'hiutusi8', '2021-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS759421232683', '胡秀文', 1, '+81 52-384-1667', 2, '538980063511129680', '日本なごやし北区楠味鋺三丁目80番8号41階', '1990-02-17', 0, 0, 'smw922', '2012-12-16', 'wsauman', '2009-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS624765627166', '西村大輔', 1, '+81 80-0193-9771', 1, '843555663073078314', 'Rm. 45, 3-15-10 Ginza, Chuo-ku, Tokyo, Japan', '1995-06-08', 0, 0, 'daisukenishimura', '2000-06-10', 'nishimura217', '2018-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS688944736435', '许宇宁', 1, '+81 90-6242-7541', 2, '315498852830039759', '日本東京中央区銀座三丁目12番7号7号室', '1997-01-19', 0, 0, 'xu1114', '2003-01-20', 'xu608', '2016-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS870805306493', '蔡致远', 0, '+86 137-7170-4776', 1, '417153933846501928', '中国深圳龙岗区学园一巷794号33号楼', '1994-02-08', 0, 0, 'zhiyuancai', '2008-07-31', 'zhiyuancai', '2004-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS008330475702', 'Nancy Davis', 0, '+1 838-574-6379', 2, '570611254078046603', '846 Central Avenue Suite 31, Albany, NY 12206, United States', '1985-08-02', 0, 0, 'nancy1', '2016-02-13', 'nancy54', '2000-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS049455911880', '沈云熙', 0, '+86 20-450-6048', 2, '103666067544660936', '中国广州市白云区小坪东路32号21栋', '1989-09-21', 0, 0, 'yunxishen3', '2016-12-25', 'yunxi125', '2007-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS743235639613', '麥青雲', 1, '+81 3-8327-5889', 1, '324892231142516880', '日本東京港区東新橋一丁目5番11号34階', '1998-07-22', 0, 0, 'chingmak', '2008-01-24', 'makchingwan', '2014-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS317238693757', '严子异', 1, '+81 70-2451-7029', 3, '893822433727477724', '41F, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-08-13', 0, 0, 'yanziyi', '2020-03-04', 'yan820', '2007-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS430542372684', '戴晓明', 0, '+86 755-790-4667', 4, '900508053357560147', '中国深圳罗湖区蔡屋围深南东路434号6室', '1988-07-13', 0, 0, 'xdai10', '2005-11-09', 'dai60', '2002-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS623243080032', '谭致远', 1, '+81 66-726-4386', 1, '027456273317694793', '日本おおさかし平野区加美東四丁目9番5号2階', '1986-10-27', 0, 0, 'tazh67', '2005-01-20', 'zhta123', '2022-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS937564478204', 'Jose Rose', 0, '+1 312-918-4934', 1, '796841755330756337', '597 Rush Street Apartment 37, Chicago, IL 60611, United States', '1995-03-05', 0, 0, 'josrose8', '2015-01-09', 'rose224', '2022-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS532201363875', '杜嘉欣', 0, '+86 178-9553-9545', 3, '324065701252996945', '中国深圳罗湖区蔡屋围深南东路523号华润大厦13室', '1985-09-09', 0, 0, 'karyant', '2014-01-18', 'karto47', '2021-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS568945805136', 'Frances Hayes', 1, '+1 718-346-4711', 3, '797404067229123468', '240 Bergen St Suite 4, Brooklyn, NY 11217, United States', '1997-08-18', 0, 0, 'francesha', '2004-08-09', 'hayesfrances712', '2011-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS489238076278', '池田瑛太', 0, '+44 (20) 7938 1368', 1, '426960421187486663', 'Flat 33, 920 Maddox Street, London, W1S 1PU, United Kingdom', '1994-12-08', 0, 0, 'eitaikeda', '2001-06-25', 'eitaikeda10', '2019-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS071162992228', 'Howard Hawkins', 1, '+81 11-308-7013', 1, '865734881288695656', 'Rm. 31, 2-1-3 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1998-11-18', 0, 0, 'howhawkins1943', '2022-02-01', 'hhawk', '2001-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS367979404839', '村田大輔', 0, '+1 838-365-1323', 3, '356889883290408547', '691 State Street 3rd Floor, Albany, NY 12203, United States', '1992-09-16', 0, 0, 'daisukem1', '2019-01-12', 'muratada08', '2015-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS598712771489', '原百恵', 0, '+81 3-6088-1582', 2, '743676515881101732', '日本東京渋谷区代々木二丁目3番10号16号室', '1988-09-16', 0, 0, 'momoe5', '2005-08-07', 'haramomoe2007', '2013-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS254175867094', 'Pauline Bell', 0, '+81 3-1279-1388', 1, '165085983186517782', '13-kai, 3-15-17 Ginza, Chuo-ku, Tokyo, Japan', '1997-06-19', 0, 0, 'bell6', '2002-09-12', 'paulinebe', '2016-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS893297148839', '安藤樹', 0, '+44 5111 389028', 1, '310294550460927626', 'Unit 22, Oxford Eco Centre, 490 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1987-12-09', 0, 0, 'ando00', '2006-08-12', 'ando5', '2013-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS522950391562', '羅發', 1, '+1 213-153-2743', 1, '698945592793789115', '153 S Broadway Apt 1, Los Angeles, CA 90015, United States', '1993-01-08', 0, 0, 'fatlo5', '2013-08-29', 'falo', '2021-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS023625310891', 'Stanley Graham', 1, '+81 66-917-9405', 1, '673196030247562088', '日本おおさかし西成区天神ノ森二丁目1番8号29号室', '1990-07-15', 0, 0, 'gstanley', '2009-09-10', 'stangraham6', '2016-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS193968097477', '藤永權', 1, '+86 755-2248-2669', 3, '128983485458004968', 'Room 35, 764 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1989-05-03', 0, 0, 'twk', '2019-09-13', 'wingkuen9', '2014-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS880989658388', '高木健太', 0, '+86 760-018-3704', 2, '673252230195529524', 'No.43 building, 170 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1986-07-27', 0, 0, 'taken1210', '2015-11-18', 'takagi9', '2015-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS174556239882', '佐々木美緒', 1, '+81 66-336-8369', 4, '506810260372807736', '49-kai, 1-1-3 Deshiro, Nishinari Ward, Osaka, Japan', '1985-04-12', 0, 0, 'mio9', '2020-03-07', 'sasakimi', '2003-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS235853018260', 'Rosa Adams', 0, '+1 312-038-3261', 4, '723983096261386196', '978 North Michigan Ave Apt 40, Chicago, IL 60611, United States', '1995-06-26', 0, 0, 'adamsrosa', '2018-03-05', 'radam', '2013-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS978584731954', 'Ruth Fernandez', 1, '+86 175-2082-7872', 0, '085592026676728747', 'No.47 building, 987 West Chang''an Avenue, Xicheng District, Beijing, China', '1989-07-10', 0, 0, 'rutf99', '2011-01-06', 'fernruth72', '2014-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS350475601460', '梁慧敏', 0, '+1 330-538-4101', 2, '214405931292258435', '591 Collier Road Suite 32, Akron, OH 44320, United States', '1985-06-29', 0, 0, 'leungwm', '2002-03-08', 'leunwm70', '2008-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS340834418472', '朱宇宁', 1, '+86 187-4534-3918', 3, '139398839988017830', '中国北京市東城区東直門內大街781号34楼', '1985-06-29', 0, 0, 'yzhu', '2017-10-22', 'zhuyuning', '2016-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS910939964710', '莫璐', 1, '+86 755-2205-5694', 2, '215224964561477009', '中国深圳罗湖区田贝一路35号1栋', '1997-04-05', 0, 0, 'lu5', '2001-08-14', 'lum', '2014-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS249813223030', '車發', 0, '+1 330-941-2181', 1, '952056650834384352', '170 Riverview Road Suite 26, Akron, OH 44313, United States', '1996-03-16', 0, 0, 'chefa5', '2019-10-24', 'fatc5', '2021-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS328125162431', '金云熙', 1, '+81 80-9558-9803', 2, '321715210696249719', '45-kai, 5-2-12 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-01-17', 0, 0, 'jinyunxi', '2008-08-24', 'yunxjin', '2008-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS526435778222', '有村優奈', 1, '+86 150-7413-1005', 3, '086427426735115407', '中国中山紫马岭商圈中山五路281号华润大厦40室', '1994-12-12', 0, 0, 'arimura602', '2019-02-18', 'arimyuna722', '2018-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS396430952632', 'Martha Miller', 0, '+81 74-649-4842', 3, '567685070572862213', 'Rm. 28, 19 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-10-09', 0, 0, 'milmar', '2006-09-11', 'mmart', '2017-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS332341053544', '邱發', 0, '+81 70-8570-4273', 2, '977297384419244969', 'Rm. 38, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-11-22', 0, 0, 'fyau', '2005-07-03', 'faty2011', '2004-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS607677514881', '汤致远', 0, '+1 718-029-5602', 1, '051875367492097607', '190 Bergen St Apartment 16, Brooklyn, NY 11217, United States', '1991-08-06', 0, 0, 'zhiyuan1940', '2014-05-30', 'zhiyuantang612', '2007-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS367308933648', 'Theresa Ryan', 0, '+81 70-6337-5019', 4, '488281761420586545', 'Rm. 38, 5-2-2 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1985-01-16', 0, 0, 'ryan6', '2016-03-08', 'ryather', '2000-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS452420680933', '藤井光莉', 1, '+81 90-5463-2791', 3, '009938209220850706', '日本なごやし北区清水三丁目19番10号38号室', '1988-09-05', 0, 0, 'hikarfujii122', '2003-06-23', 'hikarifujii', '2015-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS286011550932', 'Eleanor Long', 1, '+44 7856 036573', 3, '758399786843250392', 'Block 12, 271 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1993-12-08', 0, 0, 'elo1227', '2010-05-05', 'longe71', '2003-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS691433147394', '莫宇宁', 1, '+81 11-345-8494', 2, '316578475094656615', '日本札幌白石区菊水三条五丁目4番10号36階', '1997-05-04', 0, 0, 'yunmo', '2019-03-10', 'yuningmo', '2006-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS070313260986', 'Marilyn Wells', 1, '+1 312-676-8785', 2, '372696900473821304', '647 Pedway 3rd Floor, Chicago, IL 60601, United States', '1985-10-05', 0, 0, 'marilynwells2', '2007-11-12', 'wemari', '2006-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS720723650086', 'Jacob Phillips', 1, '+86 170-5689-8779', 2, '366871407084494553', '中国中山乐丰六路329号3楼', '1988-10-27', 0, 0, 'jacobphillips', '2002-12-11', 'phillipsj123', '2005-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS558982949858', '木村明菜', 0, '+44 (151) 872 7798', 0, '048253304244403864', 'No.42 Main building, 881 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1987-02-07', 0, 0, 'kia77', '2005-04-19', 'kimuraaki1996', '2006-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS748935599845', '後藤大和', 1, '+86 163-3354-6620', 1, '398900503024528528', 'Room 27, 440 East Wangfujing Street, Dongcheng District , Beijing, China', '1990-07-03', 0, 0, 'yamatogoto1019', '2001-02-28', 'yamato50', '2001-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS791115690439', '渡部優奈', 1, '+44 5446 477300', 0, '128420833687626677', 'Flat 8, 162 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1995-09-30', 0, 0, 'ywatanabe', '2016-06-14', 'yunaw10', '2018-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS171673207763', 'Eleanor Hayes', 1, '+86 195-9811-2641', 4, '340135677372408677', '中国深圳龙岗区布吉镇西环路838号36楼', '1996-12-15', 0, 0, 'hayeseleanor', '2011-10-21', 'hayes2014', '2001-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS955361295700', '關天榮', 1, '+44 7428 679622', 4, '788764933656432804', 'Unit 48, Oxford Eco Centre, 772 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1992-05-01', 0, 0, 'tinwingk', '2013-03-29', 'kwtinwing', '2015-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS445311402384', '汪震南', 1, '+86 178-0808-6689', 1, '743146100377166746', '12F, 174 Kengmei 15th Alley, Dongguan, China', '1998-12-06', 0, 0, 'wangz', '2014-11-02', 'zwang', '2003-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS695364283999', '蕭國明', 0, '+1 312-122-8855', 4, '591524193288190003', '426 Pedway Suite 21, Chicago, IL 60601, United States', '1991-01-03', 0, 0, 'kwokmingsi', '2016-03-13', 'siukwokming', '2017-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS166704566129', '田志遠', 1, '+81 90-4140-7741', 2, '517769156090200833', '日本札幌豊平区豊平三条十三丁目3番18号17号室', '1985-09-22', 0, 0, 'tincy79', '2019-05-28', 'tcy7', '2010-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS369895309632', '樂朝偉', 0, '+1 718-755-3853', 4, '861884133241799078', '427 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1991-11-29', 0, 0, 'lok1111', '2019-09-10', 'lokcw10', '2003-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS630943162468', '應思妤', 0, '+1 212-609-5172', 2, '326864292625891251', '853 Wooster Street 3rd Floor, New York, NY 10012, United States', '1986-01-09', 0, 0, 'yingszeyu', '2003-10-19', 'szeyuy', '2005-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS915199430408', '河野健太', 1, '+86 20-552-4558', 2, '532084012876747849', 'Room 47, 672 Xiaoping E Rd, Baiyun , Guangzhou, China', '1988-05-20', 0, 0, 'kenkono', '2022-01-27', 'konok', '2008-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS459639385346', '方安娜', 1, '+86 184-7697-2702', 3, '124258399640890273', '中国广州市越秀区中山二路816号6号楼', '1990-02-18', 0, 0, 'onfo', '2019-01-12', 'onfong', '2019-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS901644885889', 'Marjorie Turner', 1, '+44 7411 428331', 2, '843871593320605622', 'Block 42, 9 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1987-04-04', 0, 0, 'turnermarjorie', '2002-10-18', 'marjorieturner', '2002-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS717015861012', 'Jean Roberts', 1, '+1 614-521-6847', 1, '988250159087386291', '42 East Alley Suite 18, Columbus, GA 43201, United States', '1994-09-09', 0, 0, 'robertsje', '2012-11-18', 'robertsjea', '2016-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS627826059733', '橋本瑛太', 1, '+1 718-469-3173', 0, '306040218050035132', '432 Nostrand Ave Apt 47, Brooklyn, NY 11216, United States', '1996-01-15', 0, 0, 'eitahashimoto920', '2019-03-14', 'hasheita', '2014-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS543292679778', '毛慧儀', 0, '+81 90-5597-4698', 3, '782397245335139407', '25F, 3-9-15 Gakuenminami, Nara, Japan', '1985-03-22', 0, 0, 'mowaiyee', '2019-12-27', 'waiyee1028', '2007-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS671284096363', '田村拓哉', 1, '+44 (161) 504 6180', 3, '417103372269407043', 'No.48 Main building, 651 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-10-07', 0, 0, 'tamura2', '2014-07-23', 'tamurtakuya', '2017-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS202128630940', '菊地愛梨', 1, '+81 3-7971-8811', 4, '686896454661323241', '日本東京千代田区丸の内一丁目6番11号27階', '1988-02-23', 0, 0, 'airikikuc419', '2003-07-10', 'ka1202', '2009-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS823596320446', '沈子韬', 0, '+86 193-8057-8633', 2, '667532186300946748', 'No.24 building, 10 Xiaoping E Rd, Baiyun , Guangzhou, China', '1988-10-12', 0, 0, 'zitashen', '2017-06-16', 'zits', '2011-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS752793055794', '谢秀英', 1, '+86 193-5579-5654', 3, '483365528313664104', '中国广州市白云区小坪东路945号23栋', '1993-04-04', 0, 0, 'xiexiuy527', '2018-06-28', 'xiexiuying72', '2012-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS492567726024', '駱家文', 1, '+44 (1223) 05 5821', 3, '932098103259940350', 'Flat 32, 656 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1989-02-10', 0, 0, 'kaman8', '2001-06-10', 'lokkaman', '2010-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS366702830001', '江霆鋒', 0, '+44 (151) 046 9530', 2, '142703520707184151', 'Unit 50, Oxford Eco Centre, 47 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1992-01-28', 0, 0, 'kongtingfung', '2013-06-05', 'kong8', '2013-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS507234178549', 'Kim Williams', 0, '+1 330-996-6195', 3, '023693506905086122', '645 Collier Road Apt 44, Akron, OH 44320, United States', '1989-02-25', 0, 0, 'kim10', '2011-03-28', 'williamski', '2005-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS724506126686', '吉田愛梨', 0, '+44 (1865) 64 9050', 1, '345228406106241295', 'Block 15, 599 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1998-10-11', 0, 0, 'airiyosh5', '2020-03-18', 'yairi', '2003-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS102386396825', '蔡慧嫻', 1, '+86 20-223-9654', 2, '329442815461088624', '中国广州市天河区天河路52号12楼', '1987-07-30', 0, 0, 'whchoi', '2010-04-18', 'choi930', '2011-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS879834435521', 'Cheryl Hernandez', 0, '+44 (161) 976 1306', 1, '288131580697045357', 'Unit 39, Oxford Eco Centre, 640 Portland St, Manchester, M1 3LA, United Kingdom', '1997-01-10', 0, 0, 'chh2', '2018-10-29', 'hercher', '2018-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS124639745934', 'Heather Ross', 0, '+44 5129 847105', 3, '923923827568688864', 'Block 26, 444 Pollen Street, London, W1S 1NG, United Kingdom', '1996-07-30', 0, 0, 'heatross', '2009-01-18', 'heatherross605', '2021-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS978262810412', '邹璐', 0, '+44 5360 566132', 2, '931767686146435677', 'Block 18, 436 Mosley St, Manchester, M2 3AQ, United Kingdom', '1986-03-25', 0, 0, 'zolu1006', '2018-09-15', 'zlu3', '2021-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS406065046362', '石川大和', 0, '+1 213-544-8251', 0, '852832032043523258', '707 Alameda Street Apartment 49, Los Angeles, CA 90002, United States', '1989-08-08', 0, 0, 'iyama', '2007-04-02', 'ishiyamato5', '2014-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS443412037969', '孫淑怡', 1, '+81 90-0982-2654', 0, '132067880165040881', 'Rm. 6, 1-6-8, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-05-08', 0, 0, 'syhsuan1025', '2005-11-02', 'hsuansukyee', '2021-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS983603138974', '姜仲賢', 1, '+86 20-1430-6511', 2, '473413992870930409', '中国广州市白云区机场路棠苑街五巷290号17号楼', '1993-11-13', 0, 0, 'chungyin2018', '2013-04-05', 'chcy', '2005-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS342387378954', '小野百恵', 0, '+81 90-3030-6408', 1, '533051487540312295', '日本なごやし瑞穂区河岸町四丁目20番4号16階', '1992-11-03', 0, 0, 'momoe6', '2002-01-19', 'onomomoe', '2007-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS338897082273', 'Kyle Harris', 1, '+86 132-9581-7239', 1, '390160936787600580', 'Room 34, CR Building, 224 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1999-01-07', 0, 0, 'kyleh75', '2022-02-20', 'kylehar1028', '2011-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS547524300063', '曾詩涵', 1, '+81 52-569-9796', 3, '756109801266136478', '日本なごやし北区清水三丁目19番20号18号室', '1986-09-14', 0, 0, 'shihazeng215', '2014-06-06', 'zenshihan', '2019-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS563796647046', 'Bruce Clark', 1, '+44 7797 549571', 3, '446626061890783899', 'Unit 39, Oxford Eco Centre, 466 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1993-05-31', 0, 0, 'clarkbruce', '2004-03-24', 'brucec', '2003-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS694819442641', '森田彩乃', 0, '+81 3-4843-5073', 0, '191848685598281106', '日本東京中央区銀座三丁目12番6号27号室', '1998-10-18', 0, 0, 'amori', '2001-06-28', 'moritayano', '2016-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS785398113013', '菅原一輝', 0, '+81 90-2476-1769', 1, '284367183322371209', '23-kai, 2-3-10 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-11-07', 0, 0, 'sugawara19', '2009-01-03', 'sugikki509', '2015-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS878088946825', '廖子韬', 1, '+1 614-601-7444', 2, '808154248507801253', '253 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1988-04-07', 0, 0, 'zitaoliao229', '2017-01-02', 'liaoz5', '2021-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS218859325246', '梅霆鋒', 1, '+81 70-8104-2526', 2, '014202791104529827', '日本札幌白石区菊水三条五丁目4番6号5階', '1992-07-24', 0, 0, 'tfmui9', '2020-04-05', 'mui7', '2004-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS803504419888', 'Eric Long', 0, '+1 718-844-1623', 2, '946236167732380533', '351 1st Ave Suite 20, Brooklyn, NY 11220, United States', '1991-02-15', 0, 0, 'ericlong1218', '2014-12-19', 'leric2', '2001-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS868152806412', '馮惠妹', 0, '+1 330-202-6907', 3, '608312005509059747', '792 Collier Road Apt 49, Akron, OH 44320, United States', '1988-05-28', 0, 0, 'huimeifung512', '2007-08-16', 'huimei5', '2011-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS192835789210', '丸山陸', 1, '+86 755-617-8505', 3, '334666940792734510', '中国深圳龙岗区布吉镇西环路979号35栋', '1995-05-23', 0, 0, 'maruyamariku', '2002-04-23', 'maruyriku', '2014-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS112605918730', '福田樹', 1, '+81 3-0014-0326', 3, '516432899933568636', '日本東京中央区銀座三丁目12番17号21階', '1986-05-07', 0, 0, 'fuki4', '2021-07-16', 'itsukifukuda', '2009-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS044104207310', '傅嘉欣', 0, '+1 614-929-3579', 0, '318571668846571094', '570 East Cooke Road Apartment 47, Columbus, GA 43214, United States', '1993-04-07', 0, 0, 'karyan1212', '2015-11-14', 'kyfu', '2006-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS124963348842', '斉藤翼', 1, '+1 330-024-6450', 1, '973417187462901558', '106 Collier Road Suite 27, Akron, OH 44320, United States', '1985-03-21', 0, 0, 'saitsub2', '2001-11-03', 'tsubasa10', '2002-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS470589537124', '范宇宁', 1, '+86 755-833-7878', 1, '395462781258056093', '33F, 535 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1987-05-23', 0, 0, 'yfan', '2007-11-07', 'fanyuning', '2004-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS285751855173', '吕杰宏', 1, '+81 70-3551-5571', 2, '942971054394471332', '日本おおさかし近江堂一丁目7番9号31号室', '1997-08-12', 0, 0, 'jieholu', '2005-09-13', 'jiehonglu', '2010-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS820261436191', '梅德華', 0, '+1 614-287-2235', 1, '531879909098560870', '506 East Alley 3rd Floor, Columbus, GA 43201, United States', '1997-09-01', 0, 0, 'takwahmui', '2016-03-25', 'twmui', '2008-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS142704490042', '松田明菜', 0, '+81 70-4706-2159', 3, '484211455193952385', 'Rm. 34, 1-5-8, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1988-04-17', 0, 0, 'akinamatsuda', '2001-01-04', 'akinamatsuda819', '2006-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS262780838096', '橋本悠人', 0, '+44 7911 415877', 4, '056095722618569897', 'No.41 Main building, 592 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1986-07-20', 0, 0, 'yutoh7', '2004-06-19', 'yutoh', '2003-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS974669189960', '石川明菜', 1, '+81 66-503-6549', 4, '530955513886505800', '29-kai, 1-7-5 Omido, Higashiosaka, Osaka, Japan', '1987-12-03', 0, 0, 'akinishikawa', '2016-11-26', 'ishakina6', '2012-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS889095941032', '中山桜', 0, '+44 7029 753533', 3, '450425653377713656', 'Unit 33, Oxford Eco Centre, 493 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1996-12-07', 0, 0, 'nakayama7', '2016-06-27', 'sakuranaka1012', '2020-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS369404839946', '邓詩涵', 1, '+81 70-5058-8159', 2, '268798289303975268', 'Rm. 24, 5-4-9 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1987-07-23', 0, 0, 'denshiha1941', '2011-07-01', 'dengshihan', '2018-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS922911429970', 'Ethel Rodriguez', 1, '+86 168-9289-0359', 3, '885645460219973786', 'No.29 building, 54 FuXingMenNei Street, XiCheng District, Beijing, China', '1992-05-13', 0, 0, 'rodrie', '2021-10-16', 'rodriguezet', '2001-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS363432697790', '潘子异', 0, '+86 156-2948-1690', 4, '406145969560315427', '中国北京市海淀区清河中街68号817号27号楼', '1989-04-19', 0, 0, 'ziyipan3', '2009-08-11', 'panziy', '2011-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS278241862233', '應青雲', 1, '+1 718-226-0835', 2, '425427543804494886', '885 Columbia St Suite 25, Brooklyn, NY 11231, United States', '1996-07-26', 0, 0, 'chingwanyin104', '2009-10-07', 'yingchingwan', '2016-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS984759707856', '佐野凛', 0, '+86 147-6158-0076', 1, '044707381431436289', '中国广州市天河区天河路526号48号楼', '1985-05-11', 0, 0, 'sanri', '2015-10-25', 'sano809', '2016-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS949331704032', 'Rebecca Martin', 0, '+86 163-1387-7272', 2, '798666775328963562', '中国北京市海淀区清河中街68号380号18号楼', '1998-10-10', 0, 0, 'remar2', '2003-07-21', 'rebeccamartin', '2019-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS529498105330', 'Benjamin Garza', 1, '+86 161-5355-9953', 2, '292752915161543311', 'Room 34, CR Building, 551 Binchuan Rd, Minhang District, Shanghai, China', '1985-04-25', 0, 0, 'garza10', '2021-02-13', 'bgarza', '2015-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS608806516247', '孟睿', 0, '+81 90-4279-0823', 3, '502265995255472874', '40-kai, 13 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-12-27', 0, 0, 'ruimeng', '2010-08-08', 'meng1', '2003-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS076138843070', 'Gerald Foster', 0, '+86 188-0029-7340', 0, '771052539647298661', 'No.2 building, 107 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1986-12-21', 0, 0, 'gerald1941', '2005-01-09', 'fostegerald', '2006-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS397405309615', '张宇宁', 1, '+81 66-658-3528', 1, '419461006324299807', 'Rm. 50, 1-7-11 Omido, Higashiosaka, Osaka, Japan', '1997-08-12', 0, 0, 'zhangy', '2010-07-05', 'yunizhang45', '2003-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS148822291347', '野村涼太', 0, '+81 52-404-7157', 2, '127393486692672636', '31-kai, 2-5-2 Chitose, Atsuta Ward, Nagoya, Japan', '1995-04-19', 0, 0, 'nomura1211', '2014-10-08', 'ryotanom', '2017-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS999543049802', '田杰倫', 1, '+44 7959 792908', 2, '529215246960813473', 'Unit 46, Oxford Eco Centre, 440 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1987-02-21', 0, 0, 'chiehlunt', '2009-06-10', 'clti', '2015-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS135721493392', '市川聖子', 1, '+1 213-356-8226', 3, '327172819738106252', '609 Grape Street Apt 4, Los Angeles, CA 90002, United States', '1987-02-08', 0, 0, 'ichikawaseik', '2006-01-17', 'is1', '2000-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS258445054853', 'Michael Walker', 0, '+86 21-1232-0573', 1, '367401245690281461', '中国上海市黄浦区淮海中路140号华润大厦15室', '1990-03-31', 0, 0, 'mwalker626', '2008-12-28', 'walker10', '2001-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS878001266439', '中村大地', 1, '+86 135-5014-2326', 2, '725212702344417874', '中国广州市海珠区江南西路562号华润大厦7室', '1985-09-09', 0, 0, 'nakamuradaichi', '2011-06-18', 'daichnakamura1015', '2011-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS522241850399', '馬浩然', 1, '+86 28-573-5931', 2, '889933973697154522', '中国成都市成华区玉双路6号6号42楼', '1986-08-11', 0, 0, 'mahy1954', '2002-12-04', 'hyma89', '2014-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS443009858784', '杉山大和', 0, '+86 186-7692-1297', 2, '049314717344811137', 'No.21 building, 349 Shanhu Rd, Dongguan, China', '1986-04-24', 0, 0, 'yamato06', '2022-01-15', 'sugiyamayamato10', '2018-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS606864478484', '井上涼太', 1, '+86 142-2334-3951', 2, '380967431373883367', '6F, 666 68 Qinghe Middle St, Haidian District, Beijing, China', '1986-07-29', 0, 0, 'inry', '2002-09-03', 'ryotainoue412', '2004-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS075107511125', '江富城', 1, '+81 11-743-7004', 3, '474925937967049259', '日本札幌厚別区上野幌一条二丁目1番5号43階', '1990-01-03', 0, 0, 'fushikong66', '2001-02-24', 'kong8', '2007-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS821154100849', '蕭頴思', 1, '+44 5932 547886', 0, '833734943644094111', 'Unit 40, Oxford Eco Centre, 653 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-09-26', 0, 0, 'swingsze', '2008-01-08', 'wssi', '2020-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS855474716904', 'Lillian Palmer', 1, '+86 157-5659-7960', 2, '533064544773450468', 'No.7 building, 664 Tianhe Road, Tianhe District, Guangzhou, China', '1996-07-06', 0, 0, 'lillian426', '2016-10-18', 'lp7', '2020-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS517277199646', '青木桜', 1, '+1 838-658-9035', 1, '628785721725173654', '814 State Street Apartment 27, Albany, NY 12203, United States', '1997-04-23', 0, 0, 'sakura1', '2013-09-05', 'aokisa', '2004-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS909474128308', 'Helen Robertson', 1, '+1 614-650-2284', 4, '741644773172176167', '93 Diplomacy Drive Apt 6, Columbus, GA 43228, United States', '1987-09-22', 0, 0, 'rhele', '2012-02-27', 'hrobertson', '2001-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS964392956689', '佐野瑛太', 1, '+81 11-397-3314', 1, '306098503595937940', '日本札幌豊平区豊平三条十三丁目3番1号48階', '1990-09-14', 0, 0, 'sanoeit13', '2002-07-20', 'saeit7', '2013-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS772934245086', '林朝偉', 1, '+81 66-029-7090', 0, '291933113886251868', '日本おおさかし平野区加美東四丁目9番4号4階', '1994-06-15', 0, 0, 'chiuwai615', '2000-12-04', 'chiuwailam', '2012-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS047601187257', '姜秀文', 0, '+44 7615 549319', 0, '558618631074777574', 'Block 32, 282 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1997-01-24', 0, 0, 'sauman8', '2021-04-05', 'csauman1959', '2002-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS937588445549', '于云熙', 0, '+81 3-7731-2128', 1, '947586378855945728', '18F, 2-3-1 Yoyogi, Shibuya-ku, Tokyo, Japan', '1994-12-23', 0, 0, 'yunxiyu', '2011-10-14', 'yu6', '2004-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS468032743180', '蔡詩涵', 1, '+81 80-9534-0915', 3, '765260819443149258', '37F, 17 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-08-08', 0, 0, 'shihan8', '2013-01-17', 'caishihan905', '2010-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS582104581523', 'Susan Perez', 0, '+1 212-596-0279', 2, '717442739224961384', '62 Bank Street Apartment 41, New York, NY 10014, United States', '1989-05-19', 0, 0, 'pes', '2016-05-04', 'susanper', '2010-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS145891944868', 'Gloria White', 1, '+1 213-800-6726', 2, '514881994986900328', '686 Figueroa Street Apartment 12, Los Angeles, CA 90037, United States', '1995-10-07', 0, 0, 'gwhite1', '2001-03-16', 'whitegloria', '2014-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS008038381662', '容學友', 1, '+81 70-3600-4905', 4, '062331939879000611', '31-kai, 2-1-6 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-09-07', 0, 0, 'yunghy1958', '2001-03-10', 'yhy', '2011-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS458671536615', '岩崎大輔', 1, '+86 167-8004-9854', 4, '005084209919678127', 'Room 47, CR Building, 261 Hongqiao Rd., Xu Hui District, Shanghai, China', '1992-10-03', 0, 0, 'iwasakid', '2015-04-25', 'daiiwas', '2017-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS343968469198', '加藤玲奈', 0, '+81 3-1654-9506', 1, '531679621108979335', '日本東京千代田区丸の内一丁目6番14号23階', '1996-03-02', 0, 0, 'renk', '2011-11-23', 'rena611', '2010-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS708445459656', 'Betty Dixon', 0, '+86 146-4019-4374', 3, '665568643010925917', '中国上海市浦东新区健祥路776号8楼', '1985-05-09', 0, 0, 'dixobe', '2019-07-25', 'dib', '2007-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS057841840481', '毛秀英', 0, '+81 11-264-2861', 0, '692507846716944789', '46F, 13-3-17 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1990-08-03', 0, 0, 'xiumao1966', '2014-08-28', 'maoxiuy', '2015-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS502568989876', 'Leslie Lewis', 0, '+86 140-9878-6975', 2, '955298060959901211', '中国北京市東城区東直門內大街36号27楼', '1985-07-02', 0, 0, 'leslilewis4', '2007-01-22', 'lewis1104', '2011-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS407080137528', '赵詩涵', 0, '+86 10-2360-5925', 0, '102325427523928095', '中国北京市西城区复兴门内大街260号华润大厦4室', '1994-08-30', 0, 0, 'zhashiha42', '2017-06-11', 'zhaoshihan', '2016-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS634059050751', '秦岚', 1, '+86 769-137-9056', 2, '707527798117555447', 'No.8 building, 464 Shanhu Rd, Dongguan, China', '1991-09-21', 0, 0, 'laqi3', '2021-03-20', 'lan1120', '2015-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS135532807960', 'Manuel Anderson', 1, '+86 20-1175-1522', 3, '512286422421012426', 'Room 48, CR Building, 138 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1988-05-07', 0, 0, 'andersonma', '2012-12-20', 'andem17', '2008-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS525471324416', '甘青雲', 0, '+86 28-810-6310', 2, '952592775818181095', '1F, No. 849, Shuangqing Rd, Chenghua District, Chengdu, China', '1990-03-26', 0, 0, 'cwkam', '2006-10-24', 'kamcw', '2019-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS845130617989', 'Barbara Ramos', 0, '+81 80-8572-4196', 0, '108721667265224162', '7F, 2-1-17 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1991-05-27', 0, 0, 'barbara06', '2004-07-07', 'ramos624', '2018-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS107906286052', '谢安琪', 0, '+81 80-4594-7874', 2, '029946322407190620', '9-kai, 1-1-18 Deshiro, Nishinari Ward, Osaka, Japan', '1992-06-14', 0, 0, 'xa10', '2019-10-01', 'anqixie9', '2012-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS578022868161', '丁嘉伦', 1, '+81 80-0579-5951', 4, '933233641778732537', '7F, 15 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-04-18', 0, 0, 'dinji', '2015-11-11', 'dingjialun', '2003-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS934986068468', '雷曉彤', 0, '+81 90-2976-0373', 2, '155551397943619160', '日本おおさかし西成区天神ノ森二丁目1番6号12階', '1991-09-21', 0, 0, 'lohiutung8', '2002-08-16', 'loui429', '2015-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS883649481691', '宮本美緒', 1, '+44 (1865) 82 4760', 2, '001509618892690518', 'Block 46, 684 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1985-04-04', 0, 0, 'miymi', '2018-02-03', 'miyamotomio', '2020-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS798171110921', '魏岚', 0, '+86 165-0486-2991', 3, '766267799134876531', 'No.24 building, 584 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1989-10-24', 0, 0, 'weilan', '2000-08-19', 'lanwe', '2019-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS913411957504', 'Leslie Gonzalez', 0, '+44 (151) 883 9086', 4, '915137632451224839', 'Flat 16, 657 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1991-04-29', 0, 0, 'lesliegonzalez', '2006-11-17', 'lesliegonzalez10', '2002-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS495290495708', '黎杰宏', 0, '+1 330-625-5053', 1, '295361891036999038', '234 Ridgewood Road Suite 2, Akron, OH 44321, United States', '1989-07-28', 0, 0, 'jili', '2021-10-03', 'lijieh', '2017-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS322222403797', '傅祖兒', 0, '+81 90-1723-3853', 0, '630333894717990415', 'Rm. 27, 1-7-15 Omido, Higashiosaka, Osaka, Japan', '1998-09-22', 0, 0, 'fu10', '2010-01-20', 'choyeefu', '2017-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS352272188136', '田村結翔', 1, '+81 70-1374-0244', 3, '726475308354302126', '48F, 5-2-5 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-12-11', 0, 0, 'tyuito', '2009-02-02', 'tamurayui', '2007-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS353375198986', '金嘉伦', 1, '+44 7045 926337', 3, '005625123307480159', 'Flat 20, 926 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1986-09-08', 0, 0, 'jinjialun10', '2004-08-12', 'jj823', '2020-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS385232596548', '曹永權', 1, '+86 145-5882-3743', 3, '817161850819439406', 'No.49 building, 970 West Chang''an Avenue, Xicheng District, Beijing, China', '1998-05-08', 0, 0, 'chwingkuen', '2013-04-23', 'wingkuen87', '2008-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS368959945274', 'Tiffany King', 1, '+86 755-575-8404', 3, '360798053773390188', 'Room 11, 51 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1997-05-26', 0, 0, 'kingtiffany', '2021-09-28', 'king403', '2004-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS360870995671', '郭心穎', 1, '+86 179-5773-6055', 2, '398266259103261358', 'No.4 building, 884 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1988-10-29', 0, 0, 'kwoksw', '2018-12-18', 'kwok125', '2017-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS731362853393', '宮本百花', 0, '+44 5101 527210', 2, '256560006216516018', 'Unit 48, Oxford Eco Centre, 516 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1996-04-17', 0, 0, 'miyamotomomoka', '2016-10-20', 'momoka49', '2019-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS166217922788', '藤原光', 0, '+81 90-6556-1209', 2, '071064805242217457', '日本札幌白石区菊水三条五丁目4番18号42号室', '1992-09-19', 0, 0, 'hifujiwara2010', '2001-03-04', 'fhikaru', '2017-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS311193712464', '蔡睿', 0, '+81 11-136-1739', 2, '687319291819076693', '日本札幌清田区真栄四条五丁目19番1号12階', '1994-04-24', 0, 0, 'ruica', '2015-07-30', 'rca', '2006-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS490477093284', '梁德華', 0, '+86 755-452-8494', 2, '703655631406497160', 'Room 17, 579 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1992-03-17', 0, 0, 'leutw', '2020-06-20', 'twleu', '2014-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS846550142225', 'Jose Reed', 1, '+86 760-2874-2004', 1, '721127554580794966', 'Room 7, CR Building, 907 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1988-08-14', 0, 0, 'rej', '2002-11-07', 'reedjose57', '2005-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS246160240222', 'Louise Sullivan', 0, '+86 198-7208-2552', 2, '967429913411240434', '中国成都市锦江区人民南路四段327号25号楼', '1991-07-03', 0, 0, 'ls1211', '2002-01-02', 'sulllo', '2019-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS943122441232', '三浦美咲', 1, '+81 52-973-5732', 1, '919741772243502647', '日本なごやし北区楠味鋺三丁目80番16号25階', '1997-08-24', 0, 0, 'mm40', '2021-09-26', 'misaki409', '2009-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS712098709037', '冯安琪', 1, '+86 21-3586-9087', 3, '012516244398249151', '中国上海市徐汇区虹桥路823号37栋', '1990-06-26', 0, 0, 'anqifeng10', '2009-05-27', 'anqifeng', '2003-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS364271652825', '前田葵', 1, '+86 164-1241-6317', 4, '367989264764220616', 'Room 1, 501 Huanqu South Street 2nd Alley, Dongguan, China', '1990-11-16', 0, 0, 'maaoi319', '2015-06-19', 'aoi8', '2010-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS681699876849', 'Dennis Griffin', 0, '+86 148-2600-0525', 1, '780513121808280019', 'No.18 building, 661 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1988-04-25', 0, 0, 'griffind', '2015-11-20', 'dennig', '2014-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS305407195128', '田慧儀', 0, '+44 7108 058470', 2, '491106336876123138', 'No.15 Main building, 17 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1986-02-07', 0, 0, 'tinwaiyee', '2016-12-17', 'tinwaiyee', '2013-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS305991055460', '邱德華', 0, '+81 70-9568-5993', 1, '353824501973460698', 'Rm. 43, 1-6-13, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1993-04-26', 0, 0, 'yautakwah', '2004-04-20', 'takwah80', '2000-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS038443031975', '郭嘉伦', 1, '+81 52-848-5559', 1, '193822299929764936', '日本なごやし北区楠味鋺三丁目80番12号27階', '1995-06-22', 0, 0, 'gujia', '2000-01-14', 'jialun1', '2019-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS502413366839', '阿部愛梨', 0, '+86 21-3592-7470', 3, '183659083269836823', '中国上海市浦东新区橄榄路27号44栋', '1985-07-15', 0, 0, 'abea1967', '2014-10-19', 'abe10', '2000-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS999678072713', 'Wayne Warren', 0, '+81 80-2539-2561', 3, '493135945945574152', '日本札幌清田区真栄四条五丁目19番7号32階', '1997-09-20', 0, 0, 'waywarr03', '2015-06-28', 'wwarre', '2013-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS989572213035', '翁安娜', 1, '+44 (1865) 09 7692', 3, '634127902212302341', 'Block 29, 127 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1986-10-10', 0, 0, 'yung803', '2013-12-11', 'yungon', '2016-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS809160815831', '伊藤樹', 0, '+1 718-707-7448', 4, '386022796095056066', '535 Flatbush Ave Apartment 17, Brooklyn, NY 11225, United States', '1995-07-06', 0, 0, 'ito67', '2002-10-18', 'itoitsu', '2011-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS471558382718', '内田健太', 0, '+81 70-0549-6847', 3, '926734872111640971', '23F, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1994-04-07', 0, 0, 'kentuchida', '2007-01-16', 'kentauchi', '2004-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS088099083760', 'Gerald Mendez', 0, '+44 5665 067794', 3, '590679748477916287', 'No.16 Main building, 930 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1997-02-01', 0, 0, 'mendgera7', '2011-08-22', 'mendegera919', '2021-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS931857031523', '曹宇宁', 0, '+81 3-5143-7138', 4, '806029946455745279', '日本東京品川区東五反田五丁目2番20号1階', '1992-03-12', 0, 0, 'cayuni4', '2015-12-29', 'yuningca96', '2007-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS636252628638', '严宇宁', 0, '+86 182-0263-9357', 2, '134317759183075186', '中国北京市延庆区028县道767号44栋', '1995-09-01', 0, 0, 'yan2', '2017-05-29', 'yanyunin81', '2011-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS537813508516', 'Don Jackson', 1, '+81 80-4643-4924', 1, '121642874438783228', '日本札幌豊平区豊平三条十三丁目3番9号34階', '1994-12-26', 0, 0, 'jdon', '2021-12-21', 'djac705', '2013-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS672677374876', '駱慧珊', 0, '+86 196-4362-1136', 2, '882392888993435315', 'Room 7, 322 Jiangnan West Road, Haizhu District, Guangzhou, China', '1994-05-04', 0, 0, 'wslok', '2013-08-08', 'waislok', '2009-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS951859275961', 'Miguel Ramos', 0, '+86 183-4268-6607', 1, '167854589633742541', 'No.44 building, 347 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1998-03-02', 0, 0, 'miguel608', '2009-12-22', 'ramos2013', '2018-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS256751587570', '加藤玲奈', 0, '+44 (1223) 07 2223', 3, '838278865835953143', 'No.3 Main building, 70 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1987-10-25', 0, 0, 'karena', '2015-12-17', 'kato3', '2008-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS377522135854', '彭詩涵', 1, '+86 183-4209-1742', 3, '730201997312281412', '中国深圳福田区深南大道166号20楼', '1998-10-08', 0, 0, 'peng905', '2010-09-15', 'pengshihan', '2007-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS303146361369', '袁心穎', 0, '+86 136-2221-3602', 0, '896103567801802540', 'Room 1, CR Building, 951 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1996-07-29', 0, 0, 'swy', '2007-09-28', 'sumwingy', '2009-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS982023996264', 'Mike Burns', 1, '+86 10-620-1328', 2, '877988217015181519', 'Room 44, 405 FuXingMenNei Street, XiCheng District, Beijing, China', '1993-12-24', 0, 0, 'mikebu', '2000-06-02', 'burns330', '2010-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS337363320438', '李岚', 1, '+86 769-9126-7709', 0, '137317261192624436', '中国东莞坑美十五巷539号17室', '1998-11-19', 0, 0, 'lanli8', '2021-08-15', 'lilan', '2019-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS848087911463', '蘇安琪', 1, '+44 7170 271690', 4, '761191267501468866', 'Block 23, 78 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1986-05-13', 0, 0, 'onso', '2021-06-29', 'sook', '2000-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS169089149608', '丸山葉月', 1, '+81 90-0498-2701', 2, '837967540053142717', '日本札幌白石区菊水三条五丁目4番5号25階', '1990-03-31', 0, 0, 'hazukmaruyama', '2019-11-23', 'hazukimar', '2014-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS894659901073', '郑子韬', 0, '+81 90-7045-0640', 3, '158112459017628518', '日本札幌白石区菊水三条五丁目2番7号11階', '1986-08-18', 0, 0, 'zitaz', '2005-12-11', 'zzitao709', '2010-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS648593845503', '呂志明', 1, '+81 52-853-9242', 3, '105613494283104992', '日本なごやし北区楠味鋺三丁目80番1号11号室', '1987-11-14', 0, 0, 'chiming2', '2001-11-15', 'luichiming', '2011-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS622680389986', '高木涼太', 1, '+86 755-975-3234', 2, '023030887078975157', '中国深圳福田区景田东一街502号23号楼', '1988-02-02', 0, 0, 'ryotaka', '2001-05-29', 'ryotatakagi', '2007-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS479236479413', 'Donald Owens', 0, '+81 70-8385-4376', 3, '493034597898281606', 'Rm. 4, 3 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1987-02-09', 0, 0, 'owensdon', '2021-10-14', 'donaldow805', '2008-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS090266202854', '谢詩涵', 0, '+44 5737 528574', 1, '410911585821540585', 'Flat 49, 17 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1986-10-15', 0, 0, 'sxie', '2008-01-31', 'xieshih', '2016-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS693103922230', '江岚', 0, '+1 718-794-4745', 1, '328525079002570031', '355 1st Ave Suite 45, Brooklyn, NY 11220, United States', '1993-01-26', 0, 0, 'lanjiang', '2014-01-06', 'jilan', '2013-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS626409967942', '餘明', 0, '+81 3-7801-4881', 1, '846630350769631525', '日本東京中央区銀座三丁目12番8号28階', '1989-11-04', 0, 0, 'myue', '2015-11-22', 'yumin1951', '2005-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS395246487770', '魏璐', 1, '+81 80-1729-5442', 1, '293825411083950610', '日本札幌厚別区上野幌一条二丁目1番16号41階', '1994-11-03', 0, 0, 'lu830', '2002-10-31', 'wei1945', '2001-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS057280383543', '譚青雲', 1, '+44 (151) 048 3961', 3, '069323124121430030', 'Block 32, 405 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1993-11-06', 0, 0, 'tcw7', '2011-06-08', 'chingwant', '2006-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS555638341857', '馬慧珊', 0, '+81 11-828-9544', 2, '555137241271794412', '15-kai, 5-2-17 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-10-15', 0, 0, 'waisanm', '2014-12-25', 'maws', '2002-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS224554876762', '萬德華', 1, '+86 139-3238-6070', 4, '244944957891697549', '中国深圳龙岗区布吉镇西环路824号华润大厦38室', '1986-08-01', 0, 0, 'meng2', '2004-11-30', 'mengtakwah', '2015-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS518292470674', '斉藤凛', 1, '+81 80-6839-7144', 4, '200434411596352719', '日本なごやし熱田区千年二丁目5番4号17号室', '1985-09-02', 0, 0, 'rinsa', '2012-01-21', 'sar41', '2018-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS446231393392', '高震南', 0, '+86 755-488-1722', 3, '558942433038339927', '中国深圳罗湖区清水河一路761号12室', '1995-06-08', 0, 0, 'zhenga', '2021-02-22', 'gao609', '2018-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS627137470976', '木下百花', 0, '+1 614-327-8286', 3, '341642949611719486', '343 Wicklow Road Apartment 27, Columbus, GA 43204, United States', '1995-07-11', 0, 0, 'kinomomoka1129', '2006-10-17', 'momokakinos', '2020-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS226771133645', '廖志遠', 0, '+1 213-799-0857', 1, '606236450228237610', '51 S Broadway Apt 38, Los Angeles, CA 90015, United States', '1985-03-17', 0, 0, 'chiyuenl', '2011-05-16', 'chiyuenlia', '2018-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS868566611409', 'Harold Evans', 0, '+44 (151) 924 1214', 1, '459649664848757263', 'Unit 31, Oxford Eco Centre, 653 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1995-04-13', 0, 0, 'harold6', '2018-07-12', 'hae703', '2003-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS195005917231', '罗震南', 1, '+86 153-3717-0872', 1, '074487579291766211', 'Room 42, 718 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1996-03-18', 0, 0, 'zheluo909', '2006-01-26', 'zhenluo911', '2012-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS918208815913', '顧家強', 0, '+86 10-492-6450', 3, '742669935561908321', '中国北京市东城区东单王府井东街710号42栋', '1990-08-08', 0, 0, 'kukakeung', '2004-02-27', 'kkku00', '2021-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS213272112327', '森花', 0, '+1 212-907-6254', 1, '800787307908750620', '738 Canal Street Apt 48, New York, NY 10013, United States', '1998-06-10', 0, 0, 'hanm', '2012-08-29', 'morhana', '2007-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS608494295002', '小野七海', 0, '+86 28-3176-7069', 1, '037596088969199892', 'No.28 building, 668 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1992-03-23', 0, 0, 'onnanami', '2018-05-12', 'onanami2', '2022-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS750204659733', '鄺富城', 1, '+44 (151) 337 7675', 1, '998948152465403539', 'No.24 Main building, 971 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1986-09-09', 0, 0, 'kfs9', '2017-12-10', 'fsk1217', '2018-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS196347600441', 'Juan Marshall', 1, '+86 10-984-5568', 2, '044035241431478560', '中国北京市房山区岳琉路704号13室', '1991-01-14', 0, 0, 'mj718', '2011-08-17', 'marshallj6', '2011-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS992577973875', '樂慧珊', 1, '+86 155-1531-2647', 2, '389935206623586795', 'No.50 building, 62 Kengmei 15th Alley, Dongguan, China', '1998-04-07', 0, 0, 'waisanlo', '2016-07-24', 'waisanl8', '2011-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS609153714138', '崔杰宏', 0, '+86 10-789-7452', 1, '514064689268922438', '中国北京市西城区西長安街716号19楼', '1994-06-11', 0, 0, 'jiehongcu906', '2006-06-27', 'jiehcui', '2017-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS890995452899', '邵子韬', 1, '+44 (121) 116 2438', 4, '658916860684433463', 'No.21 Main building, 359 New Street, Birmingham, B2 4DB, United Kingdom', '1986-08-11', 0, 0, 'shaozita6', '2000-12-19', 'szit6', '2006-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS199965588727', '戴睿', 0, '+1 838-933-7277', 3, '600162566168369144', '624 Central Avenue Apt 24, Albany, NY 12205, United States', '1989-10-15', 0, 0, 'rui1', '2012-03-20', 'dai7', '2015-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS990392025572', '尹宇宁', 1, '+86 769-8555-6574', 2, '946465517328745847', 'Room 4, CR Building, 558 Dongtai 5th St, Dongguan, China', '1995-04-13', 0, 0, 'yuningyin', '2015-09-07', 'yin02', '2017-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS787791031524', '常嘉伦', 1, '+86 157-7358-6011', 3, '810691979897271759', 'Room 42, CR Building, 999 Hongqiao Rd., Xu Hui District, Shanghai, China', '1994-02-23', 0, 0, 'chang525', '2016-02-21', 'changj9', '2012-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS285210968748', 'Lois Hicks', 1, '+1 212-995-7668', 2, '260897398880725717', '794 Fifth Avenue Apartment 44, New York, NY 10017, United States', '1987-08-19', 0, 0, 'hicks627', '2019-10-11', 'loh5', '2012-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS981960720369', 'Gregory Nguyen', 0, '+44 5862 115617', 4, '243435424001499542', 'Flat 45, 91 Hanover Street, London, W1S 1YD, United Kingdom', '1989-07-23', 0, 0, 'grenguy', '2019-04-16', 'gregoryn', '2015-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS821379687558', '贾杰宏', 0, '+44 (1865) 96 1633', 1, '410704495958462091', 'Block 34, 596 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1992-01-07', 0, 0, 'jiajiehong', '2005-04-10', 'jiejia', '2018-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS088747033721', '崔璐', 1, '+44 7660 200624', 1, '632726314860768104', 'Flat 18, 926 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-11-14', 0, 0, 'cuilu1', '2000-04-14', 'culu63', '2004-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS409793162374', '樂家玲', 0, '+86 760-8697-6988', 2, '648210415940273031', '中国中山乐丰六路355号43楼', '1986-02-10', 0, 0, 'lokkl', '2009-02-25', 'lokkaling', '2002-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS792693405286', '阮浩然', 1, '+44 (151) 535 6239', 2, '853897273445999277', 'Unit 43, Oxford Eco Centre, 733 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1997-06-26', 0, 0, 'yuenhoyin725', '2007-09-20', 'yuenhoyin', '2017-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS895813054063', 'Cynthia Lewis', 1, '+86 28-8875-3548', 0, '038565674126238988', '中国成都市锦江区红星路三段568号37楼', '1985-11-11', 0, 0, 'lewcynthia', '2007-03-01', 'lewicynth6', '2016-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS084742837393', 'Scott Sanchez', 0, '+1 838-648-0432', 4, '504164358268922701', '729 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1989-03-15', 0, 0, 'ssanchez8', '2011-02-20', 'scottsa', '2018-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS418357781815', '谷朝偉', 1, '+1 330-173-2220', 3, '829050794727304793', '468 Collier Road Apartment 10, Akron, OH 44320, United States', '1987-07-14', 0, 0, 'koo8', '2002-12-04', 'chiuwai1030', '2005-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS990884390036', '成俊宇', 1, '+81 80-9691-4447', 3, '814405247056083816', 'Rm. 46, 1-7-5 Omido, Higashiosaka, Osaka, Japan', '1992-04-14', 0, 0, 'shing1029', '2011-02-21', 'shing523', '2016-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS299494838063', 'Samuel Cooper', 1, '+44 7641 688921', 1, '818786357559309629', 'Block 30, 439 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1990-05-04', 0, 0, 'cooper504', '2015-03-08', 'csamu', '2012-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS970357903443', '贾震南', 1, '+81 66-870-7545', 4, '956553035164286675', '日本おおさかし西成区出城一丁目1番5号17階', '1986-07-20', 0, 0, 'zhennan91', '2004-03-20', 'zhennanj', '2006-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS796391291302', '甘淑怡', 1, '+44 7891 718020', 1, '672825641013079273', 'Flat 40, 550 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-03-08', 0, 0, 'kamsukyee', '2018-03-31', 'kamsukyee', '2006-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS459945196414', '近藤彩乃', 0, '+86 191-4356-2226', 3, '310438275422368315', '中国深圳福田区景田东一街220号34室', '1986-06-01', 0, 0, 'kay', '2010-02-03', 'kondoay', '2012-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS986133293690', '阮仲賢', 1, '+81 90-5866-6053', 2, '402942365066077285', '日本札幌清田区真栄四条五丁目19番13号22階', '1990-10-12', 0, 0, 'chungyinyu9', '2004-11-18', 'yuen3', '2020-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS097165437211', '岡本翼', 1, '+1 838-241-7838', 2, '997422907725247476', '294 Broadway Apartment 2, Albany, NY 12207, United States', '1991-03-12', 0, 0, 'okamoto326', '2017-02-20', 'otsu1110', '2010-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS780148434224', '常岚', 1, '+44 5993 667782', 1, '870930912630870954', 'Block 43, 318 Park End St, Oxford, OX1 1JD, United Kingdom', '1985-03-26', 0, 0, 'chang55', '2009-06-27', 'lachang8', '2015-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS932799655788', '邱子韬', 1, '+81 90-4031-9965', 1, '182815164549648000', 'Rm. 42, 3-15-9 Ginza, Chuo-ku, Tokyo, Japan', '1988-10-31', 0, 0, 'qiuzitao75', '2008-12-21', 'qzitao', '2005-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS640181885812', '何嘉伦', 0, '+81 3-0177-7949', 1, '357070784921513040', '日本東京渋谷区代々木二丁目3番8号20階', '1990-06-27', 0, 0, 'jialunh', '2014-06-16', 'hejialun', '2006-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS197027952588', 'Jose Clark', 1, '+1 838-763-1358', 4, '135227993862345216', '134 Central Avenue Suite 31, Albany, NY 12206, United States', '1989-11-30', 0, 0, 'clarkjose', '2013-11-02', 'clajose10', '2003-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS409341258597', '郝震南', 1, '+1 212-121-5549', 4, '539978122880242182', '189 West Houston Street Apartment 41, New York, NY 10014, United States', '1998-12-18', 0, 0, 'haozhen3', '2022-01-22', 'haoz1968', '2000-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS276763242381', 'Norman Collins', 1, '+81 70-4436-2045', 1, '892196471221318013', 'Rm. 50, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1994-08-05', 0, 0, 'normacol1', '2004-01-07', 'ncollins2002', '2019-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS464304684047', 'Scott James', 0, '+1 312-740-7436', 4, '204604827908085522', '9 North Michigan Ave Apartment 23, Chicago, IL 60611, United States', '1990-12-13', 0, 0, 'jscott517', '2020-02-02', 'jamesscott', '2015-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS617962926279', '石井瑛太', 0, '+81 80-0972-0939', 3, '065918558379239014', '日本札幌厚別区上野幌一条二丁目1番13号30号室', '1995-04-17', 0, 0, 'eitais', '2009-06-16', 'ise', '2000-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS101837043392', '湯家明', 0, '+81 52-347-3828', 1, '136191161376476498', '日本なごやし守山区瀬古東二丁目171番3号18階', '1991-11-22', 0, 0, 'tongkm', '2017-01-10', 'tonkaming9', '2014-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS409608883814', 'Theodore Gibson', 0, '+1 213-548-8570', 1, '711677520365024186', '145 S Broadway Suite 15, Los Angeles, CA 90015, United States', '1985-11-24', 0, 0, 'gibsontheod', '2005-10-09', 'gibson2', '2015-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS592941015012', '高田拓哉', 1, '+86 10-6483-4648', 1, '825450954725822126', 'No.50 building, 118 Dong Zhi Men, Dongcheng District, Beijing, China', '1986-02-02', 0, 0, 'tt1119', '2017-08-16', 'tt9', '2011-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS766230127762', '程秀英', 1, '+1 212-979-6820', 3, '168950847635571862', '354 Fifth Avenue Suite 42, New York, NY 10017, United States', '1996-09-13', 0, 0, 'xiuyingche', '2009-06-26', 'cheng509', '2001-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS708157188211', 'Patricia Rivera', 0, '+44 (20) 9739 6202', 3, '476898265255301679', 'Block 23, 137 Pollen Street, London, W1S 1NG, United Kingdom', '1986-12-06', 0, 0, 'patriver', '2014-10-24', 'pri1994', '2020-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS780544616151', '古惠妹', 1, '+81 11-655-5649', 2, '317991057826047977', '5-kai, 2-1-1 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-03-21', 0, 0, 'huimku10', '2009-08-08', 'huimeiku', '2012-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS168032926502', '後藤玲奈', 1, '+44 (1865) 90 5558', 1, '179047030550630797', 'Block 31, 344 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1992-11-12', 0, 0, 'regoto', '2019-11-02', 'gotor15', '2007-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS156372415263', '梁志遠', 1, '+86 21-0359-9106', 2, '445505645904134039', '中国上海市黄浦区淮海中路353号18楼', '1994-06-19', 0, 0, 'chiyuen13', '2011-03-27', 'cyl807', '2006-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS108943526197', '盧慧嫻', 0, '+44 7887 604094', 3, '163176919948037837', 'Unit 23, Oxford Eco Centre, 940 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1986-07-30', 0, 0, 'lowaihan', '2006-06-03', 'waihanlo506', '2009-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS917114377245', '吳思妤', 1, '+81 11-126-9603', 3, '052472232814936114', '47-kai, 6-1-8, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1992-10-05', 0, 0, 'syng1', '2002-10-26', 'ngszeyu', '2015-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS022447663625', '苏安琪', 1, '+86 769-4800-4426', 2, '477842172355471305', '30F, 835 Kengmei 15th Alley, Dongguan, China', '1986-11-05', 0, 0, 'suanqi9', '2006-09-10', 'su3', '2010-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS739629856258', 'Marcus Kim', 0, '+1 213-838-3887', 2, '543003163578512113', '564 Alameda Street Suite 19, Los Angeles, CA 90002, United States', '1987-02-15', 0, 0, 'marcuski1106', '2007-08-01', 'kma6', '2002-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS101146788458', '上田海斗', 0, '+86 769-883-7710', 3, '164895916938886279', 'No.28 building, 34 Dongtai 5th St, Dongguan, China', '1997-09-09', 0, 0, 'uedakaito', '2009-11-24', 'kaito1128', '2012-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS409880274270', '島田大輔', 0, '+81 80-4349-8577', 1, '501141802062961900', '43-kai, 5-2-11 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1995-10-28', 0, 0, 'shimd06', '2012-12-29', 'shimadais', '2011-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS658914731686', '丁致远', 1, '+86 769-5013-1074', 4, '298628389998547101', 'No.45 building, 866 Dongtai 5th St, Dongguan, China', '1992-02-09', 0, 0, 'dingz1969', '2011-05-15', 'dinzhiyuan5', '2010-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS972523470465', 'Bernard Griffin', 0, '+81 74-959-3625', 0, '958073941460128397', '日本ならし学園南三丁目9番13号36階', '1992-02-05', 0, 0, 'bernard1947', '2008-03-29', 'bernard1', '2011-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS470681068861', '宮本翼', 1, '+81 52-329-1673', 0, '072243202240292655', '日本なごやし北区楠味鋺三丁目80番20号46号室', '1988-06-22', 0, 0, 'miytsuba', '2004-12-16', 'mitsubasa421', '2016-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS617268765143', '任詩涵', 0, '+81 11-339-4727', 0, '128953632542876709', '日本札幌厚別区上野幌一条二丁目1番6号9号室', '1988-07-06', 0, 0, 'ren61', '2005-08-03', 'renshi17', '2009-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS010175446160', '贾子韬', 1, '+86 28-7135-9946', 2, '278652038184945315', '中国成都市成华区二仙桥东三路251号48室', '1999-01-24', 0, 0, 'zjia3', '2006-08-29', 'zjia1961', '2012-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS971227205416', '山本翼', 0, '+81 66-766-9203', 0, '989041735491863700', '日本おおさかし平野区加美東四丁目9番18号30階', '1996-11-05', 0, 0, 'yamamotot', '2019-11-30', 'yamamoto2', '2006-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS900965477072', 'Karen Rivera', 1, '+86 151-2920-5286', 3, '801683487301414902', '中国北京市西城区西長安街443号华润大厦46室', '1988-11-03', 0, 0, 'riverakaren', '2017-09-03', 'riverkaren2012', '2000-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS064036281936', '宮本架純', 1, '+81 52-850-6500', 3, '403860410530482705', '42F, 9 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-12-30', 0, 0, 'miyamotokasumi', '2016-02-27', 'kasumi2006', '2014-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS579445684264', '長谷川詩乃', 0, '+81 70-0521-2380', 4, '241577053050333847', '32-kai, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1991-10-20', 0, 0, 'hs910', '2011-05-30', 'shinohasegawa', '2007-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS567569433003', '藤田樹', 1, '+81 70-5182-0987', 2, '397145430143706387', '日本東京港区東新橋一丁目5番15号30階', '1998-04-03', 0, 0, 'itsukfujita8', '2020-12-21', 'ifujit1', '2019-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS716383865747', '横山玲奈', 0, '+81 66-957-7366', 1, '434156668904271418', '9-kai, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1996-07-02', 0, 0, 'renayokoyama617', '2003-03-23', 'yokoyama2006', '2021-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS552746431269', 'Amber Chavez', 1, '+86 187-8556-2459', 0, '543857353085825673', '中国北京市東城区東直門內大街309号12室', '1998-07-29', 0, 0, 'chaveza2', '2000-08-01', 'amberc', '2015-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS978191656952', '村上紗良', 1, '+44 5718 823174', 2, '809548591842274337', 'Unit 17, Oxford Eco Centre, 862 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1996-02-06', 0, 0, 'murakami9', '2018-07-15', 'mursara403', '2002-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS978892339799', '甘家強', 0, '+81 3-0829-1569', 2, '013474903129170802', '日本東京千代田区丸の内一丁目6番16号50号室', '1993-09-08', 0, 0, 'kakeungk', '2020-12-25', 'kkk8', '2008-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS339727545616', '汪安琪', 1, '+81 52-186-6845', 2, '644182393713983347', 'Rm. 15, 2-5-20 Chitose, Atsuta Ward, Nagoya, Japan', '1987-07-07', 0, 0, 'anqi00', '2012-02-04', 'waanqi', '2018-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS604373220149', '鄺曉彤', 0, '+81 90-5986-1392', 0, '889513352505856573', '日本東京港区東新橋一丁目5番19号22号室', '1997-06-28', 0, 0, 'kwhiutung99', '2002-04-22', 'khiutung', '2006-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS693487779288', '曾岚', 0, '+86 148-7158-6857', 0, '518155452660941624', 'Room 5, CR Building, 440 Tianhe Road, Tianhe District, Guangzhou, China', '1993-07-08', 0, 0, 'lanzeng8', '2003-03-01', 'lanzeng', '2010-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS830330257680', '藤田美緒', 0, '+1 213-841-1754', 1, '466298789798288505', '277 S Broadway Apartment 45, Los Angeles, CA 90015, United States', '1993-06-09', 0, 0, 'fujitamio7', '2012-10-04', 'mio10', '2003-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS297284131660', '柴田涼太', 1, '+86 755-7904-9974', 4, '877296999224709214', 'No.10 building, 633 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1986-10-31', 0, 0, 'shiryot', '2019-01-15', 'shibatary', '2021-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS233329645749', '伊藤涼太', 0, '+81 66-946-2588', 3, '420973319195947959', '日本おおさかし近江堂一丁目7番10号27号室', '1998-12-03', 0, 0, 'itr1201', '2001-11-10', 'ito06', '2011-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS264463137213', '村上海斗', 1, '+81 3-0384-6099', 3, '333121463355965757', '14-kai, 2-3-17 Yoyogi, Shibuya-ku, Tokyo, Japan', '1986-02-19', 0, 0, 'murakamikaito1025', '2003-07-10', 'kaitomur', '2014-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS915754864910', 'Peggy Castillo', 1, '+81 90-6665-2207', 3, '184016438145533730', '日本札幌清田区真栄四条五丁目19番3号4階', '1986-04-02', 0, 0, 'castillo6', '2009-04-08', 'castillop85', '2013-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS743052412396', '吉田百恵', 0, '+86 197-7332-3055', 3, '807201479600436891', '中国成都市成华区双庆路907号15栋', '1986-03-06', 0, 0, 'ym3', '2003-04-01', 'yoshmo1019', '2021-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS433803512043', '桜井一輝', 0, '+44 5956 041388', 1, '724362611449664498', 'Flat 25, 261 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1994-10-24', 0, 0, 'ikki1213', '2018-09-04', 'sakurikki', '2015-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS895025623195', '區祖兒', 1, '+86 20-062-0513', 3, '270278849117464905', '中国广州市天河区天河路985号42楼', '1992-08-16', 0, 0, 'auchoyee', '2013-02-02', 'choyeea1', '2019-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS437367971155', '安藤凛', 0, '+81 70-6731-2568', 1, '936129445401547021', '15-kai, 6-1-17, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1998-09-09', 0, 0, 'andorin', '2018-06-17', 'rin4', '2015-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS279489642829', '溫家文', 0, '+86 150-4102-7702', 2, '557793657573550543', '中国东莞东泰五街899号华润大厦38室', '1996-09-02', 0, 0, 'kmwan8', '2004-12-02', 'kamanwan92', '2007-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS007766197487', '贺秀英', 0, '+1 330-444-1207', 1, '546611389301339833', '655 Collier Road Suite 38, Akron, OH 44320, United States', '1989-08-21', 0, 0, 'he72', '2001-11-19', 'xiuyhe', '2018-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS064495595855', '石田美月', 0, '+1 614-686-9429', 2, '520380584973796212', '702 Tremont Road Suite 48, Columbus, GA 43212, United States', '1994-09-10', 0, 0, 'mishid', '2019-09-23', 'mitsukiis', '2011-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS218269609137', '熊云熙', 0, '+1 614-879-7385', 1, '786433549883570277', '234 East Cooke Road Apt 14, Columbus, GA 43214, United States', '1990-11-30', 0, 0, 'yunxiong', '2009-02-13', 'yunxix', '2010-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS703023090952', '林大和', 1, '+1 614-745-0681', 1, '368130047273248274', '524 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1991-05-17', 0, 0, 'yamah', '2001-04-24', 'yhaya1993', '2022-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS425995863023', '駱慧嫻', 0, '+44 5352 843557', 2, '010043389745413292', 'Block 36, 970 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1996-07-12', 0, 0, 'waihanlok10', '2001-06-25', 'lokwh', '2011-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS336506561064', '白浩然', 1, '+1 213-987-1847', 3, '562784350809515426', '956 S Broadway Suite 32, Los Angeles, CA 90015, United States', '1987-01-27', 0, 0, 'phy1973', '2010-12-09', 'hypak', '2001-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS363909685477', '马云熙', 0, '+81 66-349-6203', 3, '001730440090821269', '46F, 1-1-7 Deshiro, Nishinari Ward, Osaka, Japan', '1997-03-07', 0, 0, 'ma81', '2020-01-16', 'myun212', '2003-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS336914597965', '餘嘉欣', 1, '+81 80-8596-5113', 3, '919291374009410619', '19-kai, 4-9-13 Kamihigashi, Hirano Ward, Osaka, Japan', '1986-05-22', 0, 0, 'yueky78', '2004-04-04', 'kyyue', '2014-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS996384138938', '今井湊', 1, '+86 760-455-3231', 3, '302159697751901968', '中国中山乐丰六路845号2号楼', '1992-12-22', 0, 0, 'imamin129', '2018-06-21', 'imamin', '2018-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS523864850223', 'Ruth Peterson', 0, '+81 11-509-2569', 1, '647868547317032123', '31-kai, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-01-18', 0, 0, 'peruth', '2018-11-03', 'pr822', '2014-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS495377328526', 'Brenda Jenkins', 0, '+81 90-8724-4926', 1, '243984820546807195', '日本札幌厚別区上野幌一条二丁目1番11号2号室', '1990-11-05', 0, 0, 'jebrend8', '2009-03-13', 'jenkbrenda2', '2008-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS262631786305', 'Marcus Freeman', 1, '+44 5513 931937', 0, '198685294088157473', 'Flat 35, 429 Hanover St, Liverpool, L1 4AF, United Kingdom', '1994-09-16', 0, 0, 'freeman51', '2017-05-23', 'freeman1', '2021-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS763298960540', '大野架純', 1, '+1 718-727-8076', 2, '297354062048472418', '943 1st Ave Suite 24, Brooklyn, NY 11220, United States', '1993-07-21', 0, 0, 'onokasumi', '2013-01-26', 'onkasumi', '2015-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS123801000758', 'Lori Perez', 1, '+1 838-817-3906', 0, '245975000206209627', '426 Lark Street 3rd Floor, Albany, NY 12210, United States', '1994-10-04', 0, 0, 'lorip70', '2006-12-04', 'loriperez1', '2006-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS656779484284', '狄國榮', 0, '+44 (161) 666 8006', 3, '454593425884640246', 'Unit 17, Oxford Eco Centre, 930 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-10-21', 0, 0, 'kwokwing8', '2006-07-30', 'kwti6', '2002-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS697377562738', '黎宇宁', 1, '+86 28-239-6761', 2, '446760488465209356', 'No.16 building, 339 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1988-05-02', 0, 0, 'yuningl1973', '2001-09-27', 'liyuni5', '2013-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS357268160353', '譚國權', 1, '+86 760-6003-3244', 3, '540015063943542286', 'No.29 building, 831 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1993-05-17', 0, 0, 'tkwokkuen', '2021-08-12', 'tamkwokkuen', '2017-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS838216862025', '上野七海', 1, '+1 330-723-3862', 2, '167814302913156430', '731 Fern Street 3rd Floor, Akron, OH 44307, United States', '1997-11-04', 0, 0, 'nanami86', '2003-10-11', 'unana312', '2018-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS082979408191', 'Jessica Sanchez', 0, '+81 52-413-9811', 2, '440482013057253646', '日本なごやし北区楠味鋺三丁目80番6号23階', '1988-02-18', 0, 0, 'jessan', '2004-06-06', 'jessicasanchez', '2011-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS190968058881', 'Theodore Rose', 1, '+86 10-930-0602', 0, '687220947451870551', '中国北京市房山区岳琉路934号21室', '1985-10-08', 0, 0, 'rosetheo', '2005-09-30', 'theodore5', '2009-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS498687264236', '严宇宁', 1, '+81 70-3549-6079', 2, '300614355184228373', '27-kai, 2-1-9 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1988-12-01', 0, 0, 'yuning3', '2006-08-21', 'yuning218', '2020-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS086920458319', '常子异', 0, '+86 140-2555-5549', 4, '252938094096510202', 'Room 1, 784 FuXingMenNei Street, XiCheng District, Beijing, China', '1997-02-07', 0, 0, 'changziy', '2014-09-19', 'ziyich4', '2016-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS564497436976', 'Anita Butler', 1, '+81 80-0357-4250', 2, '561993720935073389', '日本ならし学園南三丁目9番4号16階', '1990-05-18', 0, 0, 'anb', '2002-02-27', 'anitabutl', '2018-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS188636162855', '王睿', 0, '+86 149-2099-9715', 1, '209417157119885094', 'Room 3, 276 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1994-05-14', 0, 0, 'ruiw', '2019-01-01', 'wangrui', '2002-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS188304822683', '毛慧嫻', 1, '+44 (1223) 50 7348', 2, '301788594604295410', 'No.16 Main building, 155 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1995-10-06', 0, 0, 'waihan1123', '2019-06-04', 'waihan83', '2010-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS663394817957', '錢慧琳', 1, '+81 66-933-2468', 4, '875708104613690947', '日本おおさかし東住吉区東田辺三丁目27番8号27号室', '1986-04-13', 0, 0, 'chinwl901', '2016-02-04', 'wailam01', '2011-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS992434476280', '岩崎健太', 0, '+44 5161 609950', 3, '116325976590695523', 'Unit 23, Oxford Eco Centre, 838 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1986-08-19', 0, 0, 'kiwasaki', '2014-10-15', 'iwasakik', '2010-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS001060207153', 'Margaret Griffin', 1, '+86 755-0576-9860', 0, '986612518303399260', '中国深圳罗湖区清水河一路431号17室', '1994-03-08', 0, 0, 'griffinmargaret', '2017-08-11', 'margaretg', '2009-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS344209288285', '孟子韬', 1, '+86 760-557-9324', 2, '316236736798689510', '中国中山天河区大信商圈大信南路440号40栋', '1986-02-12', 0, 0, 'mengzitao', '2009-08-22', 'mengzitao6', '2012-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS619347479689', 'Michelle Schmidt', 0, '+44 7358 760590', 4, '667512255681364733', 'Block 42, 352 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1994-12-29', 0, 0, 'michelle627', '2017-08-23', 'smichelle92', '2014-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS911427437814', '木村大地', 1, '+44 (151) 990 6415', 2, '550922709102975553', 'Block 44, 641 Redfern St, Liverpool, L20 8JB, United Kingdom', '1986-06-13', 0, 0, 'dak', '2008-06-27', 'kimura3', '2008-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS317860787087', '廖震南', 1, '+44 7546 587896', 1, '206797557430411806', 'No.40 Main building, 498 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1998-12-08', 0, 0, 'zhennanli01', '2000-09-04', 'liazhen', '2010-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS398428334228', 'Janet King', 0, '+86 181-7936-2365', 2, '166783586333341669', '中国广州市越秀区中山二路866号28号楼', '1993-04-11', 0, 0, 'king57', '2001-09-21', 'janet65', '2019-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS293359509861', 'Debra Silva', 1, '+44 5904 283846', 1, '741344554609752532', 'Unit 36, Oxford Eco Centre, 890 Pollen Street, London, W1S 1NG, United Kingdom', '1996-05-24', 0, 0, 'silva620', '2000-06-16', 'silva726', '2020-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS975228950779', '池田光', 0, '+44 5195 855364', 1, '664964869961528560', 'Block 46, 719 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1985-09-15', 0, 0, 'hikaiked18', '2017-01-17', 'hike', '2006-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS545062168074', '伍俊宇', 1, '+81 80-7428-1505', 0, '552117039992160272', '日本おおさかし東住吉区東田辺三丁目27番18号45号室', '1990-10-31', 0, 0, 'chunyu1029', '2003-10-20', 'ng4', '2020-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS707898027193', '董子异', 1, '+81 70-8580-3286', 3, '682038859474472696', '日本おおさかし近江堂一丁目7番11号30号室', '1992-05-26', 0, 0, 'zdong2', '2018-10-29', 'zdong', '2000-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS168534123532', '徐詠詩', 1, '+81 90-2204-5971', 2, '020792750527495388', '日本なごやし北区清水三丁目19番13号12階', '1991-12-21', 0, 0, 'tws', '2004-11-03', 'tsuws', '2013-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS300296585210', '岩崎悠人', 1, '+44 7254 545455', 0, '489744498524695119', 'No.37 Main building, 587 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-10-17', 0, 0, 'yuto303', '2004-11-11', 'yuto229', '2004-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS787589274811', '任明詩', 1, '+1 718-384-9473', 3, '809227957854776721', '589 Columbia St Suite 5, Brooklyn, NY 11231, United States', '1992-06-03', 0, 0, 'yammingsze4', '2005-08-22', 'mingszeyam', '2002-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS754286808686', '段安琪', 0, '+86 189-2183-8839', 2, '875039858120998076', 'Room 8, CR Building, 660 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1985-05-02', 0, 0, 'da7', '2011-11-01', 'anqiduan821', '2005-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS422417456233', 'Henry Thomas', 1, '+81 80-5500-8599', 3, '026356511675218830', '日本札幌白石区菊水三条五丁目2番13号3階', '1997-11-27', 0, 0, 'hent', '2021-11-24', 'thomahe', '2019-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS175201000677', 'Leonard Moore', 0, '+1 614-379-3353', 4, '139254640860133404', '972 East Cooke Road Suite 32, Columbus, GA 43214, United States', '1987-07-20', 0, 0, 'moore72', '2020-09-30', 'mooreleon3', '2017-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS736056777108', '薛安琪', 0, '+86 10-7716-9587', 2, '842296545845832540', '中国北京市西城区西長安街971号29栋', '1992-04-26', 0, 0, 'xueanqi5', '2007-11-25', 'xue6', '2010-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS815609636446', '藤天榮', 1, '+44 (116) 919 1190', 3, '792133527718281176', 'No.19 Main building, 756 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1993-10-13', 0, 0, 'tangtw', '2016-08-09', 'tinwingtang', '2001-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS226286376983', '梅富城', 0, '+1 718-115-3491', 1, '842136161098343143', '884 Bergen St Apt 49, Brooklyn, NY 11217, United States', '1989-06-14', 0, 0, 'fushingmui16', '2005-08-03', 'fsmu8', '2009-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS367172543854', 'Kathleen Gomez', 1, '+1 212-466-7670', 2, '583127243405212677', '831 Wooster Street Apt 19, New York, NY 10012, United States', '1988-09-14', 0, 0, 'gomezkathleen', '2006-03-30', 'gomkat', '2003-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS821498615301', '山口陽太', 1, '+86 21-4266-6847', 2, '595557200012280471', 'Room 4, 125 Hongqiao Rd., Xu Hui District, Shanghai, China', '1988-10-22', 0, 0, 'yotyamaguchi', '2001-08-29', 'yamy', '2004-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS782863182079', '宣惠敏', 0, '+86 769-2240-1861', 2, '601819139271755621', '33F, 59 Kengmei 15th Alley, Dongguan, China', '1991-05-21', 0, 0, 'waimanhs', '2015-01-04', 'hsuanwai', '2007-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS086773241437', 'Matthew Chavez', 1, '+1 312-228-9895', 3, '842868701229240882', '997 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1989-09-05', 0, 0, 'chavmatthew', '2002-01-07', 'matthew1', '2009-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS786728848486', 'Ralph Jordan', 0, '+44 5918 041936', 3, '853556563232954771', 'Flat 24, 503 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1986-08-07', 0, 0, 'rj5', '2016-12-30', 'ralphj', '2005-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS570170368642', 'Ricky Warren', 1, '+1 718-870-8757', 4, '253073218849205932', '855 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1994-02-10', 0, 0, 'warreric1110', '2015-04-02', 'rickywarren', '2009-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS434557555172', '丁致远', 1, '+81 3-0217-0396', 3, '037122868876824371', '25F, 2-3-10 Yoyogi, Shibuya-ku, Tokyo, Japan', '1993-10-28', 0, 0, 'dinz', '2013-06-26', 'zhiyuan9', '2002-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS265407208254', '小島瑛太', 1, '+81 80-7560-2231', 2, '804580407202160197', 'Rm. 18, 2-1-2 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1996-08-14', 0, 0, 'ekojima', '2009-02-20', 'eitak907', '2016-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS761055604643', '小林蓮', 0, '+44 5780 694287', 3, '278704287933292719', 'Block 4, 150 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1988-04-24', 0, 0, 'renkob8', '2010-11-01', 'kobayashir2', '2010-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS437169968099', '太田一輝', 0, '+1 212-339-7817', 3, '213105395497699617', '840 Wooster Street Suite 45, New York, NY 10012, United States', '1990-08-15', 0, 0, 'io5', '2000-11-23', 'ikkiota88', '2011-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS095343690072', '斎藤絢斗', 0, '+81 80-2840-2400', 2, '558385855098757512', '12-kai, 2-3-12 Yoyogi, Shibuya-ku, Tokyo, Japan', '1989-01-01', 0, 0, 'ayas', '2005-04-16', 'as1209', '2008-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS292404236932', '傅安琪', 0, '+86 20-095-2381', 1, '509539605695502875', '中国广州市海珠区江南西路896号25栋', '1997-12-16', 0, 0, 'anqfu2', '2012-03-31', 'fu7', '2011-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS591450219286', '蕭家玲', 0, '+81 74-503-9326', 3, '959439291268750722', '日本ならし大和郡山市本庄町一丁目1番5号13号室', '1996-12-05', 0, 0, 'klsiu', '2005-04-16', 'kaling311', '2014-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS441899893366', '汪國榮', 0, '+81 11-432-6515', 2, '323123275198478663', '24F, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1988-09-10', 0, 0, 'wongkw115', '2016-10-12', 'wokwokwing', '2012-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS603751067824', '常云熙', 0, '+81 3-7706-5212', 4, '820369425871698661', '48-kai, 1-5-10, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-08-11', 0, 0, 'chang1996', '2004-06-15', 'yunxcha', '2017-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS155747287269', '宣學友', 0, '+81 52-876-4835', 2, '253079450568135834', '23F, 2-5-8 Chitose, Atsuta Ward, Nagoya, Japan', '1989-12-05', 0, 0, 'hsuan127', '2005-08-18', 'hsuhokyau', '2012-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS416399867099', '林優奈', 0, '+44 (20) 3773 4486', 1, '287559911430164141', 'No.22 Main building, 85 Hanover Street, London, W1S 1YD, United Kingdom', '1989-08-05', 0, 0, 'hy910', '2012-10-06', 'yunah91', '2010-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS050442963527', '黃嘉欣', 1, '+86 183-8221-4951', 2, '709031479063914108', '中国广州市越秀区中山二路14号1室', '1992-06-22', 0, 0, 'wongky', '2001-11-06', 'kywong', '2011-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS881563421264', '宋子异', 1, '+1 213-711-6136', 3, '774691284896268704', '92 Sky Way Apt 23, Los Angeles, CA 90043, United States', '1995-01-11', 0, 0, 'songziyi', '2015-02-06', 'zsong', '2008-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS952120323294', '佘永權', 0, '+81 70-3658-9919', 3, '207479787237414355', '日本なごやし北区楠味鋺三丁目80番16号14階', '1988-07-20', 0, 0, 'wksheh', '2019-11-11', 'shwin', '2002-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS684688551683', '石田陸', 1, '+1 213-921-1087', 3, '491722073998532270', '284 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1987-01-25', 0, 0, 'ishida8', '2003-10-26', 'ri07', '2008-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS505172207441', '程致远', 1, '+1 718-029-0157', 2, '858000563873969536', '784 Bergen St Apt 34, Brooklyn, NY 11217, United States', '1998-01-27', 0, 0, 'zhiyuanchen8', '2013-06-07', 'zhiyuanc', '2014-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS592126514528', 'Jesse Rice', 0, '+1 212-416-2580', 2, '343210861372017617', '445 Bank Street Apt 39, New York, NY 10014, United States', '1995-09-17', 0, 0, 'jesserice', '2004-03-02', 'jessr', '2015-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS618646848039', 'Eddie Palmer', 0, '+1 330-748-4269', 1, '828169036241070419', '897 West Market Street 3rd Floor, Akron, OH 44333, United States', '1988-07-17', 0, 0, 'eddie412', '2015-08-18', 'palmer10', '2001-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS505768617464', '鄺天樂', 1, '+86 28-443-0982', 1, '031792016709828238', '中国成都市锦江区人民南路四段594号华润大厦11室', '1989-04-14', 0, 0, 'kwongtinlok', '2019-03-07', 'kwontinlok', '2007-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS744960505107', 'Harold White', 0, '+1 212-794-3491', 1, '980923785948840042', '125 West Houston Street 3rd Floor, New York, NY 10014, United States', '1998-09-14', 0, 0, 'harold8', '2013-10-25', 'wharold', '2005-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS385878843282', '長谷川絢斗', 0, '+86 158-3418-0243', 1, '950728999081990759', '中国广州市白云区小坪东路100号华润大厦25室', '1998-09-01', 0, 0, 'ayatohasegawa', '2000-11-14', 'ayathasegawa', '2020-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS362869960240', '程震南', 0, '+81 70-0731-3136', 3, '337857959311645433', '16-kai, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-03-20', 0, 0, 'cheng1944', '2010-01-21', 'chezhen5', '2008-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS163192530294', '伊藤美羽', 0, '+86 21-3279-5456', 3, '876749967291063775', 'Room 17, 533 Ganlan Rd, Pudong, Shanghai, China', '1985-08-14', 0, 0, 'imiu', '2017-03-03', 'itmiu', '2016-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS320088734731', '藤原海斗', 1, '+1 213-204-7730', 2, '460214321808776292', '674 Alameda Street Suite 45, Los Angeles, CA 90002, United States', '1998-08-10', 0, 0, 'kfujiwara', '2020-04-08', 'fujkaito', '2009-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS151499447677', 'Monica Alvarez', 1, '+44 7720 637193', 1, '209397268782340167', 'Unit 42, Oxford Eco Centre, 782 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1989-02-05', 0, 0, 'monicaalvarez', '2009-04-10', 'amonica', '2000-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS332285624453', '上田彩乃', 1, '+86 191-9804-1295', 1, '345564650023537152', 'No.46 building, No.193, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1989-10-05', 0, 0, 'ua6', '2016-03-22', 'ayanoue', '2008-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS375833357457', '和田和真', 0, '+86 760-2814-4190', 1, '720390694261033030', 'No.30 building, 984 Lefeng 6th Rd, Zhongshan, China', '1994-04-29', 0, 0, 'wadakazu44', '2016-03-23', 'wada1973', '2002-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS317318953895', '彭宇宁', 0, '+1 212-948-9743', 3, '795686071376092617', '491 Canal Street Apartment 38, New York, NY 10013, United States', '1996-11-19', 0, 0, 'ypeng', '2005-11-25', 'yunipeng215', '2013-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS510627711233', '曹秀英', 0, '+1 212-491-7921', 1, '700338353539455815', '364 West Houston Street Apartment 3, New York, NY 10014, United States', '1997-04-05', 0, 0, 'caoxiu', '2009-03-22', 'caoxi89', '2012-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS177404892423', '前田百恵', 1, '+44 5658 712429', 2, '816315578262262013', 'No.9 Main building, 725 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1989-08-01', 0, 0, 'mamom', '2008-01-04', 'momoe4', '2015-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS859842591455', '羅天榮', 0, '+44 7970 536671', 2, '655106040075399343', 'Block 12, 705 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1985-06-10', 0, 0, 'lotw511', '2005-08-31', 'twlo626', '2011-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS267298002288', '毛霆鋒', 1, '+86 21-575-5212', 0, '449610210605775076', '中国上海市浦东新区橄榄路951号18号楼', '1994-05-06', 0, 0, 'tfmo', '2016-08-19', 'mo10', '2010-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS605007544795', '郭國賢', 0, '+86 198-0644-6194', 2, '313717662967889398', '40F, 55 028 County Rd, Yanqing District, Beijing, China', '1990-07-21', 0, 0, 'kwok1', '2012-09-17', 'kwokkwokyin', '2011-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS893934800747', '丁宇宁', 1, '+81 66-217-6885', 4, '767809923286854668', 'Rm. 16, 4-9-12 Kamihigashi, Hirano Ward, Osaka, Japan', '1996-09-21', 0, 0, 'diyuni', '2001-08-22', 'ding313', '2010-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS275870017994', '汪秀英', 0, '+81 52-097-9900', 3, '845618813664121278', '22-kai, 6 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1987-05-11', 0, 0, 'wangx2003', '2007-07-19', 'xiuyingwa', '2019-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS395335532347', 'Sara Powell', 1, '+81 66-971-9882', 0, '119740076185469377', '35-kai, 4-9-10 Kamihigashi, Hirano Ward, Osaka, Japan', '1993-10-08', 0, 0, 'sarapowe47', '2000-10-07', 'sarapowell', '2021-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS751147704641', '甘潤發', 0, '+86 158-8904-5090', 2, '456645992526064292', '40F, 195 Ganlan Rd, Pudong, Shanghai, China', '1991-12-24', 0, 0, 'yunfk8', '2015-03-03', 'yfkam', '2008-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS222723471596', '严詩涵', 1, '+44 5648 693451', 3, '191480778096793706', 'Flat 25, 351 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1998-07-06', 0, 0, 'shiya', '2009-05-19', 'yans', '2015-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS372924745009', '熊云熙', 0, '+86 150-4280-3352', 0, '378859884749217092', '中国北京市延庆区028县道655号3栋', '1986-07-08', 0, 0, 'yunxxio8', '2002-07-30', 'yunxixi310', '2016-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS596153171836', '石秀英', 1, '+44 (121) 646 3700', 4, '876226269079014534', 'Unit 10, Oxford Eco Centre, 144 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1985-04-14', 0, 0, 'xiuyings', '2015-05-14', 'sxiuy', '2011-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS732449971740', '許曉彤', 1, '+81 66-118-1100', 1, '728432879941753738', '日本おおさかし西成区出城一丁目1番14号27階', '1996-01-07', 0, 0, 'hiutunghui', '2017-03-12', 'hiutung1990', '2020-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS987942838640', '中山大地', 1, '+81 52-142-3373', 0, '792587182968079114', '24-kai, 18 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1994-12-27', 0, 0, 'daichi5', '2013-07-16', 'daichi110', '2012-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS418907407445', '武田湊', 1, '+1 614-966-3243', 0, '828226499219589526', '385 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1991-08-13', 0, 0, 'mintake', '2013-05-23', 'takedami719', '2020-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS285489467743', '柴田明菜', 1, '+1 718-511-8124', 3, '148912878525720089', '598 Bergen St Apartment 15, Brooklyn, NY 11217, United States', '1987-11-24', 0, 0, 'shiaki1992', '2002-12-21', 'shia', '2013-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS919473067133', 'Douglas Mills', 0, '+1 330-645-8920', 1, '249981640888240272', '660 Fern Street Apt 24, Akron, OH 44307, United States', '1992-03-20', 0, 0, 'midouglas', '2020-02-15', 'douglasmil', '2008-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS371821366486', '湯永發', 1, '+81 80-0165-6181', 1, '858543054129284473', 'Rm. 42, 2-1-4 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1992-09-21', 0, 0, 'twingfat', '2021-07-13', 'wftong59', '2016-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS208760070442', '松本樹', 1, '+81 90-0981-0094', 2, '612771025008367315', '日本ならし大和郡山市本庄町一丁目1番4号40号室', '1988-06-26', 0, 0, 'matsumoto2', '2008-09-24', 'matsumotoitsuki', '2019-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS773759880700', '柴田蓮', 1, '+81 74-711-3380', 3, '429389498370291174', '日本ならし西大寺赤田町一丁目7番12号12号室', '1991-07-13', 0, 0, 'rens1', '2013-10-28', 'shibataren', '2007-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS135883254346', 'Carlos Harrison', 1, '+81 70-0181-0271', 2, '363721986884555643', '日本おおさかし近江堂一丁目7番15号36階', '1988-08-27', 0, 0, 'carloshar509', '2015-11-17', 'charrison', '2012-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS505525395888', '今井悠人', 0, '+1 718-645-7726', 1, '591123446827540983', '32 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1999-01-22', 0, 0, 'iyuto', '2015-04-23', 'yuto1944', '2016-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS776501855363', '彭永權', 0, '+86 132-7971-1669', 1, '774872229448265670', '中国深圳罗湖区蔡屋围深南东路912号4号楼', '1994-08-27', 0, 0, 'wingkuenpa', '2008-08-30', 'panwing90', '2002-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS820807516368', 'Leroy Warren', 1, '+44 (1223) 19 7043', 2, '751455260237367378', 'Block 14, 289 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1990-10-20', 0, 0, 'warrleroy8', '2007-03-28', 'wleroy', '2021-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS727391828973', '中島美月', 1, '+81 90-7272-6791', 3, '462870944776389519', '日本東京千代田区丸の内一丁目6番1号39階', '1994-10-12', 0, 0, 'mitsukinaka', '2001-08-05', 'mitsukina1024', '2009-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS137912348553', '許俊宇', 1, '+81 70-5377-1494', 3, '891128670949784927', '40F, 1-5-8, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1990-12-06', 0, 0, 'hucy3', '2021-01-20', 'hui8', '2013-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS241233771128', '斉藤美羽', 1, '+1 212-413-6494', 2, '008335674425744959', '944 Wooster Street Apt 14, New York, NY 10012, United States', '1986-10-13', 0, 0, 'sami', '2020-04-16', 'sm7', '2015-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS666714557745', '鐘明', 0, '+86 192-2183-4170', 4, '376034848422278040', '中国成都市成华区二仙桥东三路585号32楼', '1990-09-07', 0, 0, 'mc12', '2016-04-10', 'chunming7', '2011-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS528073320909', '鐘青雲', 0, '+81 11-545-5940', 1, '027531121852728973', 'Rm. 34, 5-19-10 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1993-11-13', 0, 0, 'chchingwan2', '2021-12-03', 'chungcw', '2001-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS622915524399', '孫慧儀', 0, '+86 28-0949-7722', 3, '719619754941532653', 'No.15 building, 982 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1997-05-23', 0, 0, 'waiyhs', '2002-11-01', 'hsuwaiy', '2014-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS819217008518', '樊學友', 0, '+81 66-452-3740', 1, '564335770808919928', '日本おおさかし西成区出城一丁目1番20号18階', '1992-07-21', 0, 0, 'fahy', '2017-09-18', 'fan4', '2015-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS966772196363', '應霆鋒', 1, '+81 80-5992-6558', 0, '251975567900706697', 'Rm. 41, 3-27-5 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1985-05-03', 0, 0, 'tfying', '2019-11-21', 'tingfung803', '2004-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS939760087002', '林晓明', 0, '+1 718-413-0339', 2, '184599788583682535', '850 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1991-09-06', 0, 0, 'lix', '2002-09-24', 'xiaolin4', '2008-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS772361955802', '木下愛梨', 1, '+44 5152 635521', 4, '448348833311326887', 'Flat 41, 879 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1988-07-09', 0, 0, 'kinoairi', '2021-03-30', 'kairi', '2012-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS471510935460', 'Clifford Mills', 1, '+1 838-817-7211', 4, '085151581690841517', '740 Central Avenue Suite 33, Albany, NY 12205, United States', '1996-09-04', 0, 0, 'millsclif2020', '2009-06-24', 'clm', '2020-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS847408108919', '金睿', 0, '+86 131-5150-5802', 1, '384760838830836145', '15F, 545 Xiaoping E Rd, Baiyun , Guangzhou, China', '1985-03-13', 0, 0, 'rj1', '2008-11-21', 'jin90', '2021-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS859793887853', '内田愛梨', 1, '+86 10-396-6475', 2, '658402542656563322', '47F, 520 Yueliu Rd, Fangshan District, Beijing, China', '1989-02-12', 0, 0, 'airiuchida', '2015-01-03', 'uchiairi', '2000-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS207517711370', '小山光莉', 0, '+86 131-2939-4438', 2, '978366376539729549', 'No.35 building, 651 Dongtai 5th St, Dongguan, China', '1985-08-30', 0, 0, 'koyamahikari', '2012-04-09', 'koyama317', '2002-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS377321770048', '谷國權', 1, '+86 28-710-9224', 1, '997961351959449727', 'No.14 building, 810 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1988-07-17', 0, 0, 'kookwokkuen', '2014-06-16', 'kkk1994', '2010-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS105097362737', '戴心穎', 1, '+81 90-7850-8406', 2, '659133376799551561', 'Rm. 11, 12 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-12-03', 0, 0, 'swda9', '2021-10-23', 'daisumwi', '2007-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS967221966986', '鈴木和真', 0, '+44 7284 822188', 2, '461761023334672264', 'Block 9, 153 Maddox Street, London, W1S 1PU, United Kingdom', '1993-06-11', 0, 0, 'suzuki57', '2012-08-20', 'kazumas', '2017-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS432069830157', '藤惠妹', 0, '+86 180-2914-4581', 3, '145393266177296895', '中国成都市成华区二仙桥东三路777号18栋', '1989-04-28', 0, 0, 'tanghm', '2020-09-27', 'tanghuimei', '2019-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS120809937295', '菅原百恵', 1, '+44 (161) 352 7543', 0, '989310830238360307', 'Block 45, 213 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1991-05-31', 0, 0, 'msugawara', '2008-01-11', 'momsu', '2004-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS492917933687', '洪俊宇', 1, '+81 90-7529-4169', 2, '877026638139977026', '14F, 13-3-12 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-06-04', 0, 0, 'hcy', '2018-10-21', 'cyh820', '2018-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS357334071051', 'Sean Torres', 1, '+81 70-5701-3035', 1, '849661010901035867', '日本おおさかし近江堂一丁目7番2号7階', '1985-03-30', 0, 0, 'stor', '2004-04-02', 'torressean2', '2000-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS934329062011', '山田葉月', 0, '+86 760-9317-6983', 0, '094639858189937542', '中国中山天河区大信商圈大信南路381号24楼', '1993-10-14', 0, 0, 'yamahazuki2020', '2019-11-04', 'yhazu1985', '2020-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS255422418231', '戚安娜', 0, '+44 5307 401630', 3, '283017319048754741', 'Flat 6, 591 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-12-23', 0, 0, 'chiconna', '2012-04-16', 'chon', '2007-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS961365609829', '姜子韬', 1, '+86 755-026-8191', 4, '648621008530821950', '中国深圳福田区景田东一街65号华润大厦10室', '1994-09-24', 0, 0, 'zitjiang', '2014-03-14', 'zjiang', '2012-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS935942728261', '杜家玲', 1, '+86 755-090-4949', 1, '825820013653427931', 'Room 50, CR Building, 542 Jingtian East 1st St, Futian District, Shenzhen, China', '1988-03-02', 0, 0, 'tokaling', '2009-10-28', 'klto', '2010-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS708962135367', '小林一輝', 0, '+86 169-8982-2559', 0, '166003935743505990', 'Room 24, 65 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1987-04-14', 0, 0, 'ikkikobayashi', '2011-08-10', 'ikkikob', '2016-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS093399395551', 'Charles Romero', 1, '+1 330-733-6927', 1, '310481893771574678', '338 Riverview Road Apartment 1, Akron, OH 44313, United States', '1988-02-08', 0, 0, 'romero1952', '2016-06-16', 'rch', '2019-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS481457113999', '严子异', 1, '+86 179-7582-5037', 0, '881282328234156067', 'No.23 building, 340 Huanqu South Street 2nd Alley, Dongguan, China', '1997-09-08', 0, 0, 'yaziyi', '2006-09-16', 'yan2', '2013-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS478771930690', '叶岚', 1, '+44 7724 146859', 1, '912682859740353128', 'No.49 Main building, 537 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1997-09-12', 0, 0, 'lany', '2021-08-28', 'lanye', '2008-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS433286166800', '陆宇宁', 1, '+81 90-5650-8051', 4, '648786012659430264', '日本東京港区東新橋一丁目5番14号3号室', '1996-11-26', 0, 0, 'luyuni', '2019-03-13', 'luy5', '2020-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS877156446410', 'Sean Simpson', 1, '+44 7412 421229', 4, '432745066435911219', 'Unit 8, Oxford Eco Centre, 938 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1996-10-07', 0, 0, 'ssean7', '2017-07-19', 'seasim10', '2002-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS311816878352', 'Debra Nelson', 0, '+1 312-404-0900', 0, '557761521193158301', '181 North Michigan Ave Suite 36, Chicago, IL 60611, United States', '1991-03-18', 0, 0, 'nelsondebra', '2018-04-27', 'nede', '2004-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS832907317078', '陶發', 0, '+81 90-8769-7726', 0, '258465703484656210', '日本ならし学園南三丁目9番4号11階', '1985-01-20', 0, 0, 'tfat', '2020-05-25', 'fat', '2015-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS196168314767', '岡本悠人', 0, '+86 196-4840-4872', 0, '338670336634397063', 'Room 11, 243 West Chang''an Avenue, Xicheng District, Beijing, China', '1996-01-01', 0, 0, 'okamoyuto78', '2012-08-26', 'okyut8', '2013-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS009446951775', '阿部瑛太', 1, '+44 (121) 179 1002', 3, '909696684648440947', 'No.7 Main building, 308 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1988-04-03', 0, 0, 'eitaabe', '2006-03-21', 'eita1999', '2019-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS814325377936', 'Ryan Baker', 0, '+81 80-2030-4391', 1, '206087407352883937', '日本なごやし守山区瀬古東二丁目171番12号23階', '1991-12-26', 0, 0, 'ryanbaker2', '2007-03-01', 'bakerr', '2005-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS256322723070', '陆璐', 1, '+1 718-239-3433', 1, '051310726217211291', '813 1st Ave Apt 2, Brooklyn, NY 11220, United States', '1994-11-02', 0, 0, 'lulu', '2014-03-19', 'lulu', '2011-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS715091109685', '陈安琪', 0, '+81 11-849-5419', 1, '075230666720452138', '日本札幌中央区宮の森四条六丁目1番15号42階', '1993-03-26', 0, 0, 'anchen', '2018-09-28', 'chenanqi', '2005-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS306608253779', '邓詩涵', 0, '+1 312-766-8940', 0, '696627860008208322', '697 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1988-03-07', 0, 0, 'sdeng', '2019-01-03', 'dengshi', '2015-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS506969132518', '沈嘉伦', 1, '+1 213-743-1580', 4, '264295962796237289', '759 Figueroa Street Apt 38, Los Angeles, CA 90037, United States', '1997-08-30', 0, 0, 'shjialun2', '2008-10-17', 'shenjial', '2005-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS791762049527', '徐天樂', 1, '+1 212-421-6595', 3, '034921404874110860', '301 Fifth Avenue Apt 7, New York, NY 10017, United States', '1987-01-06', 0, 0, 'tinlok119', '2001-07-23', 'tsuitinlok220', '2006-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS021535952355', '阮富城', 1, '+86 157-2157-3899', 3, '799915304442008225', 'No.45 building, 883 Hongqiao Rd., Xu Hui District, Shanghai, China', '1987-10-23', 0, 0, 'yuefs', '2010-01-14', 'yuenfs2', '2002-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS916500369416', 'Anthony Ross', 0, '+86 755-2370-4926', 2, '474908739036476846', '1F, 382 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1989-03-21', 0, 0, 'rossantho', '2018-05-26', 'rossanthony', '2012-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS389526614657', 'Leslie Diaz', 1, '+86 755-3829-6638', 3, '936869392749532746', '中国深圳龙岗区布吉镇西环路57号40楼', '1986-09-06', 0, 0, 'lesliediaz915', '2016-04-23', 'dleslie307', '2012-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS961646717126', '林青雲', 1, '+1 212-289-5847', 2, '688678268962500795', '948 West Houston Street 3rd Floor, New York, NY 10014, United States', '1999-02-11', 0, 0, 'cwl2', '2002-04-11', 'lamcw', '2020-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS113021411259', '原結翔', 0, '+86 28-029-8194', 1, '417143376113017827', '中国成都市锦江区人民南路四段787号46号楼', '1992-03-03', 0, 0, 'yuito05', '2007-11-01', 'hyuito2', '2010-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS985786237163', '羅家文', 0, '+86 172-5838-9229', 1, '542288784770234466', '中国北京市朝阳区三里屯路631号49栋', '1985-01-30', 0, 0, 'kamanlo', '2003-11-15', 'kaman9', '2017-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS742132022526', '西村詩乃', 0, '+86 142-9977-4924', 2, '135608194872740080', '中国中山天河区大信商圈大信南路141号9室', '1988-06-09', 0, 0, 'nishimurashino501', '2007-03-26', 'shino319', '2015-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS447441470465', '鄭志明', 1, '+86 10-9873-7078', 0, '236889190118430002', 'No.18 building, 107 West Chang''an Avenue, Xicheng District, Beijing, China', '1998-10-05', 0, 0, 'chchiming', '2006-02-19', 'cheng10', '2018-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS346870703792', '黎震南', 1, '+86 10-003-4678', 3, '816482622345869068', 'Room 20, CR Building, 179 East Wangfujing Street, Dongcheng District , Beijing, China', '1987-08-10', 0, 0, 'zhennanli1981', '2021-09-04', 'zhennan1106', '2001-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS397358265038', '顾震南', 1, '+86 143-2387-5553', 3, '031248006054418092', 'No.41 building, 230 028 County Rd, Yanqing District, Beijing, China', '1989-10-05', 0, 0, 'zhennan6', '2016-10-19', 'zhenngu', '2000-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS061794753874', '薛德華', 1, '+1 614-169-7372', 4, '756264145096758337', '289 East Cooke Road Suite 23, Columbus, GA 43214, United States', '1987-03-13', 0, 0, 'stakwah', '2004-12-22', 'sitakwah', '2018-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS483464170821', '金子翼', 1, '+44 5995 160866', 3, '169793919457596561', 'Unit 3, Oxford Eco Centre, 461 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1986-11-06', 0, 0, 'ktsubasa', '2017-03-06', 'tska', '2001-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS944578842007', '木村悠人', 0, '+86 188-2953-0681', 3, '729224890545273172', '43F, 18 Yueliu Rd, Fangshan District, Beijing, China', '1987-06-14', 0, 0, 'yuto1950', '2001-03-12', 'ykimura3', '2011-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS880782070281', 'Denise Diaz', 0, '+1 312-372-4925', 2, '310259835893312642', '459 Rush Street Apt 44, Chicago, IL 60611, United States', '1993-02-04', 0, 0, 'ded95', '2010-06-11', 'diazdenise', '2011-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS435100552269', '甘明詩', 0, '+86 136-2834-9860', 3, '908768194831164635', 'No.10 building, 694 Sanlitun Road, Chaoyang District, Beijing, China', '1987-12-09', 0, 0, 'mska', '2019-01-15', 'mingsze68', '2021-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS760750701930', '常安琪', 0, '+1 838-035-5179', 4, '161224225274967990', '573 Lark Street Apt 31, Albany, NY 12210, United States', '1985-04-21', 0, 0, 'anqi3', '2005-07-29', 'changanqi2', '2002-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS398604267392', '林家玲', 0, '+86 177-2863-2416', 1, '045976593171122056', '33F, 356 Lefeng 6th Rd, Zhongshan, China', '1991-07-12', 0, 0, 'kll', '2019-10-19', 'lkl811', '2020-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS039396902757', '蘇國賢', 0, '+81 70-5811-2815', 3, '676020506720566834', '9F, 3-19-5 Shimizu, Kita Ward, Nagoya, Japan', '1986-10-10', 0, 0, 'kwokyin7', '2007-08-10', 'kwokyinso728', '2011-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS734903332955', '杨云熙', 1, '+1 213-806-1257', 3, '982944957150817857', '925 Alameda Street Apartment 46, Los Angeles, CA 90002, United States', '1986-01-22', 0, 0, 'yuyang1027', '2019-08-22', 'yang1102', '2018-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS801997306779', '侯睿', 0, '+44 (1223) 26 6024', 0, '143954040327411937', 'Flat 21, 978 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1987-06-22', 0, 0, 'rhou', '2019-09-23', 'hourui69', '2010-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS260701334733', '吳世榮', 1, '+86 20-662-8110', 2, '217948794869129962', 'No.27 building, 611 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1997-05-28', 0, 0, 'ngsw', '2001-01-15', 'ng701', '2004-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS368048885297', 'Alfred Perez', 0, '+1 212-684-7913', 2, '607959740157659923', '835 Fifth Avenue Suite 23, New York, NY 10017, United States', '1999-01-25', 0, 0, 'perez5', '2021-08-15', 'aperez5', '2018-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS204670772625', '杉山優奈', 1, '+86 21-377-1341', 2, '573613131717501618', '3F, 689 Ganlan Rd, Pudong, Shanghai, China', '1991-06-08', 0, 0, 'yusugiyama', '2006-05-05', 'yunasu', '2018-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS935734537274', '彭明', 0, '+86 755-413-1728', 4, '330900484571881711', '40F, 257 Jingtian East 1st St, Futian District, Shenzhen, China', '1998-10-13', 0, 0, 'pang9', '2000-09-14', 'pang418', '2004-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS039204615137', 'Aaron Olson', 0, '+81 3-0961-0118', 3, '945463790472388840', '日本東京千代田区丸の内一丁目6番16号36号室', '1997-09-10', 0, 0, 'aaron4', '2011-08-12', 'olsoaar', '2008-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS704931276605', '湯頴思', 1, '+86 170-8999-2824', 2, '831024031879160066', '中国东莞珊瑚路298号49楼', '1989-03-18', 0, 0, 'wingsze7', '2016-08-30', 'tongwings1110', '2003-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS995312092629', '廖家強', 0, '+81 74-809-0034', 4, '435664592365323741', '25-kai, 3-9-19 Gakuenminami, Nara, Japan', '1986-11-27', 0, 0, 'liaokk729', '2002-10-05', 'liaokak', '2018-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS911990184691', '胡宇宁', 1, '+86 10-5762-1849', 3, '259597617396611516', '中国北京市延庆区028县道334号华润大厦4室', '1991-07-28', 0, 0, 'yuninghu1128', '2006-09-27', 'yuhu5', '2017-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS666013089552', '有村葵', 1, '+81 74-488-6092', 3, '958010416253783217', '日本ならし学園南三丁目9番15号41階', '1994-04-22', 0, 0, 'aoiarim121', '2017-08-08', 'araoi', '2021-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS516366340204', '梁震南', 0, '+86 21-8221-1601', 3, '476230219901558683', 'No.34 building, 324 Binchuan Rd, Minhang District, Shanghai, China', '1995-06-19', 0, 0, 'zliang93', '2010-10-02', 'liangzhennan7', '2021-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS949693128899', 'Mike Russell', 1, '+86 10-9822-3622', 0, '008120233349374595', 'No.14 building, 262 028 County Rd, Yanqing District, Beijing, China', '1991-01-11', 0, 0, 'miker51', '2002-04-03', 'russemi', '2015-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS190395780879', '苏致远', 0, '+1 330-083-8945', 3, '624410791426184765', '384 Ridgewood Road Suite 28, Akron, OH 44321, United States', '1994-11-30', 0, 0, 'suz', '2003-07-10', 'suzh4', '2017-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS264908620589', 'Anna Kelley', 0, '+86 142-2147-5701', 1, '470168239834530015', '中国深圳龙岗区布吉镇西环路880号40楼', '1987-07-03', 0, 0, 'kelley4', '2010-02-04', 'ak913', '2013-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS661800731618', '王子异', 1, '+44 5748 945223', 3, '020506356121225190', 'Block 24, 144 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1997-05-08', 0, 0, 'wangziyi', '2000-10-26', 'zwang816', '2009-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS782114365267', '郭俊宇', 0, '+1 838-244-6779', 3, '090527210310581339', '133 State Street Apt 49, Albany, NY 12203, United States', '1991-06-21', 0, 0, 'chunyu10', '2014-03-26', 'chunyu7', '2012-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS124229873350', '陆睿', 0, '+86 160-0246-9789', 3, '718707925611166705', '中国深圳福田区深南大道66号47楼', '1998-12-22', 0, 0, 'lur', '2002-03-28', 'lu5', '2009-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS429671196085', '龚睿', 1, '+81 52-364-4264', 2, '420781886733266719', '日本なごやし北区清水三丁目19番5号31階', '1994-04-26', 0, 0, 'gong8', '2006-06-26', 'rugong', '2020-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS442255804966', '劉力申', 0, '+81 74-429-4107', 3, '244633685031088125', '41-kai, 2 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1988-06-02', 0, 0, 'liklau01', '2020-03-08', 'lauliksun66', '2009-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS915985485305', '福田美月', 0, '+1 212-049-2798', 0, '508960870197542783', '700 Bank Street Suite 32, New York, NY 10014, United States', '1998-10-22', 0, 0, 'mitsfukud', '2014-12-30', 'fmitsuki222', '2000-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS104837261152', '原田絢斗', 1, '+81 3-6769-5300', 3, '348034870255875685', '日本東京渋谷区代々木二丁目3番18号24階', '1986-06-22', 0, 0, 'ayatohara', '2021-12-26', 'haraaya', '2015-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS800700798662', '宋子异', 1, '+44 7080 477338', 2, '130418149941561120', 'Unit 25, Oxford Eco Centre, 303 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1994-08-16', 0, 0, 'ziyisong81', '2016-07-09', 'ziyi90', '2016-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS263149915181', '高橋詩乃', 1, '+1 718-268-2505', 3, '943963321407056119', '734 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1988-08-02', 0, 0, 'tshino', '2018-11-28', 'shino2003', '2014-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS102053955034', '崔慧嫻', 1, '+81 80-4748-7767', 0, '865288580396204664', '日本札幌清田区真栄四条五丁目19番5号42階', '1992-07-27', 0, 0, 'whchoi', '2018-02-13', 'whc', '2003-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS596548934254', '郑云熙', 0, '+1 838-940-5655', 1, '905329299835430999', '336 State Street 3rd Floor, Albany, NY 12203, United States', '1992-03-21', 0, 0, 'yunzheng', '2012-07-07', 'yunxizheng', '2004-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS999563944977', '吴睿', 0, '+86 157-7283-6135', 1, '957616581558665636', 'No.25 building, 560 Huanqu South Street 2nd Alley, Dongguan, China', '1989-12-29', 0, 0, 'wurui', '2000-10-19', 'wur', '2004-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS304717165916', '木下美緒', 1, '+1 212-696-0712', 3, '812955386837511766', '829 Canal Street Suite 1, New York, NY 10013, United States', '1986-12-06', 0, 0, 'kinom', '2001-05-06', 'kmi', '2006-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS806857438067', '酒井結翔', 1, '+81 80-3526-4105', 4, '541193302198830272', '日本おおさかし西成区天神ノ森二丁目1番6号2号室', '1989-08-23', 0, 0, 'sakai9', '2009-03-11', 'sakai14', '2011-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS111434907793', '邱安琪', 0, '+86 174-8293-8565', 1, '867440008227745853', 'Room 2, CR Building, 207 FuXingMenNei Street, XiCheng District, Beijing, China', '1985-08-19', 0, 0, 'qianqi509', '2006-05-15', 'qa418', '2015-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS464324828587', '成裕玲', 0, '+86 10-3878-3605', 2, '164789414384538069', 'Room 14, CR Building, 685 FuXingMenNei Street, XiCheng District, Beijing, China', '1989-01-04', 0, 0, 'syuling2001', '2018-01-17', 'yushing', '2016-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS552618005777', '崔慧嫻', 1, '+81 70-3712-5931', 3, '919227528841835587', '日本ならし西大寺赤田町一丁目7番11号4号室', '1994-06-04', 0, 0, 'whchoi', '2004-05-05', 'choiwa', '2017-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS500279649289', 'Frederick King', 0, '+1 212-733-3454', 1, '624128215466951685', '371 Bank Street 3rd Floor, New York, NY 10014, United States', '1991-03-05', 0, 0, 'kifrederick', '2019-02-11', 'kingfrede5', '2012-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS233089364083', 'Jonathan Washington', 1, '+1 312-301-2150', 0, '025389081059196916', '829 North Michigan Ave Suite 12, Chicago, IL 60611, United States', '1985-02-09', 0, 0, 'jonathanwashi59', '2005-11-16', 'jonathanwashington', '2018-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS557474268791', 'Keith Holmes', 1, '+86 10-4544-7868', 0, '392946151758852087', '中国北京市朝阳区三里屯路634号26栋', '1998-09-20', 0, 0, 'keithholmes7', '2009-09-05', 'keithholm', '2022-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS563131133159', '近藤一輝', 1, '+81 74-984-0362', 2, '167070564938599564', '48-kai, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1995-03-10', 0, 0, 'kondo48', '2022-03-02', 'kikki6', '2017-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS809773443491', '林晓明', 0, '+44 (121) 644 2135', 3, '154375687891531506', 'Unit 5, Oxford Eco Centre, 66 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1996-09-18', 0, 0, 'xil1219', '2016-10-25', 'lxiaoming623', '2019-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS340218256783', '遠藤絢斗', 0, '+44 7054 234201', 1, '069733817945085024', 'Flat 23, 694 Hanover St, Liverpool, L1 4AF, United Kingdom', '1987-08-09', 0, 0, 'eay724', '2002-05-11', 'aendo8', '2012-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS937104217082', '關慧嫻', 0, '+81 80-7271-4978', 1, '956666931242499676', '4F, 15 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-04-09', 0, 0, 'kwanwaihan5', '2005-11-24', 'kwanwaihan10', '2015-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS215138091289', '和田海斗', 0, '+81 80-6326-7703', 2, '047701258134013437', 'Rm. 36, 3-19-10 Shimizu, Kita Ward, Nagoya, Japan', '1995-01-28', 0, 0, 'kaiw', '2009-01-21', 'kaito91', '2014-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS534209378124', '吳國權', 0, '+1 838-151-4579', 3, '440104167295096726', '642 State Street Suite 22, Albany, NY 12203, United States', '1997-09-22', 0, 0, 'nkk', '2001-09-04', 'kwokkuenng', '2008-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS373393169297', '文詠詩', 1, '+86 152-9659-5351', 4, '426497759494837120', '35F, 877 Jianxiang Rd, Pudong, Shanghai, China', '1990-01-27', 0, 0, 'wingsze430', '2021-06-15', 'wingsze6', '2003-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS761761696401', 'Earl Robertson', 0, '+86 760-3232-2869', 2, '366322228704017511', 'No.41 building, 77 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1994-02-05', 0, 0, 'roea', '2004-10-22', 'erobertson5', '2001-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS794477496623', '田頴璇', 0, '+81 80-5193-3302', 3, '541330398471580772', '45F, 4-9-20 Kamihigashi, Hirano Ward, Osaka, Japan', '1987-03-15', 0, 0, 'tws1212', '2012-10-17', 'wingsuen17', '2011-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS197418922417', '車家強', 0, '+86 769-0872-9988', 1, '761842129255204418', '中国东莞坑美十五巷706号华润大厦42室', '1993-09-21', 0, 0, 'ckk', '2019-03-09', 'kakeung05', '2021-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS016657475416', 'Michelle Ramirez', 0, '+86 10-232-5002', 0, '572753626023845574', '中国北京市東城区東直門內大街151号32号楼', '1992-02-12', 0, 0, 'rmic', '2006-06-02', 'mra', '2019-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS981350387097', '何宇宁', 1, '+44 (1223) 81 2334', 1, '921521748252195592', 'No.50 Main building, 24 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1993-03-17', 0, 0, 'yunhe', '2014-09-18', 'he1', '2010-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS068609225534', '黄杰宏', 0, '+81 80-4259-7389', 3, '819894514645389635', '21F, 2-1-3 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1990-11-24', 0, 0, 'jih74', '2018-07-13', 'jiehonghuang7', '2014-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS970438329815', 'Curtis Chavez', 1, '+81 70-7367-2078', 3, '989035616805700667', 'Rm. 9, 3 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1995-06-07', 0, 0, 'curcha1016', '2014-07-29', 'curchave2', '2021-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS664198457900', '何麗欣', 0, '+86 20-967-4234', 2, '511859955051651619', 'Room 26, CR Building, 474 Xiaoping E Rd, Baiyun , Guangzhou, China', '1985-11-30', 0, 0, 'holy', '2011-08-17', 'hola', '2008-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS191828405104', '廖詩涵', 1, '+44 5716 328337', 4, '022173840441177731', 'No.43 Main building, 33 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1997-05-25', 0, 0, 'liao06', '2003-07-20', 'liao1022', '2021-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS048758574680', '後藤詩乃', 1, '+1 330-024-2160', 3, '647473428789767786', '279 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1989-04-11', 0, 0, 'gshino', '2002-11-26', 'gotoshin1020', '2003-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS660712165264', '任晓明', 1, '+44 5130 896353', 3, '822579115425414221', 'Unit 29, Oxford Eco Centre, 296 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1988-10-12', 0, 0, 'renx', '2010-12-23', 'xiaoming220', '2016-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS272915214938', '應麗欣', 1, '+44 7435 871459', 4, '724225034438767899', 'Block 47, 384 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1985-06-25', 0, 0, 'laiyan213', '2015-03-31', 'ying72', '2019-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS665384710783', '長谷川瑛太', 0, '+81 70-1248-7609', 4, '917255446547804573', '日本おおさかし西成区天神ノ森二丁目1番18号42階', '1990-07-09', 0, 0, 'hasegawa8', '2002-04-07', 'haeita47', '2003-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS181957747315', 'Clifford Gutierrez', 1, '+86 130-3022-5632', 0, '052453029140733022', '43F, 745 Kengmei 15th Alley, Dongguan, China', '1987-06-29', 0, 0, 'gc131', '2020-10-03', 'clifford10', '2018-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS949628875229', '翁裕玲', 1, '+1 213-772-0916', 2, '912801815636284384', '789 Sky Way Apt 42, Los Angeles, CA 90043, United States', '1990-05-08', 0, 0, 'yungyuling', '2008-06-12', 'yuling1028', '2000-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS360888464139', '河野陽太', 1, '+86 192-6699-7559', 3, '602699977590299447', 'No.17 building, 602 028 County Rd, Yanqing District, Beijing, China', '1997-01-13', 0, 0, 'koyo', '2004-02-29', 'konoy', '2011-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS415980603748', '三浦花', 0, '+86 755-692-7789', 2, '759673267421905524', '中国深圳罗湖区田贝一路65号37楼', '1991-07-12', 0, 0, 'hamiura1', '2021-07-09', 'miura107', '2011-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS947298678712', '後藤優奈', 0, '+81 90-4828-4384', 1, '854859783948007420', '日本おおさかし平野区加美東四丁目9番9号30階', '1985-08-23', 0, 0, 'goyuna6', '2020-08-01', 'yuna91', '2003-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS354016108497', '邵心穎', 0, '+44 7827 008560', 4, '516194121802234998', 'No.25 Main building, 485 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1987-05-27', 0, 0, 'siu42', '2001-07-12', 'swsiu', '2003-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS446563761326', '沈璐', 1, '+86 191-6293-4386', 1, '731351633890229658', '39F, 282 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1996-11-20', 0, 0, 'lushe6', '2017-08-02', 'slu', '2017-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS614336493390', '中島結翔', 0, '+1 330-384-5024', 2, '184738636124939977', '908 Riverview Road Apartment 12, Akron, OH 44313, United States', '1995-11-09', 0, 0, 'yunakajima', '2001-12-08', 'yuna77', '2010-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS992267630178', 'Francis Jimenez', 1, '+81 66-920-5698', 2, '426491740421307746', 'Rm. 10, 3-27-16 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1999-02-08', 0, 0, 'francisj', '2011-11-12', 'francisjimenez', '2008-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS115316545371', 'Shawn Gutierrez', 0, '+1 212-185-4172', 2, '321542312798938764', '584 West Houston Street Apartment 3, New York, NY 10014, United States', '1989-02-18', 0, 0, 'gutierrez616', '2012-06-27', 'gsha', '2008-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS529987089984', '谢晓明', 0, '+86 755-473-3162', 0, '469785356048244155', '中国深圳龙岗区学园一巷888号17栋', '1985-10-18', 0, 0, 'xxie', '2017-11-19', 'xiaoming1226', '2014-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS636623756817', '西村明菜', 0, '+44 (1865) 39 0124', 1, '349827125452249302', 'Unit 47, Oxford Eco Centre, 248 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1987-03-20', 0, 0, 'nishimura3', '2007-03-03', 'nishimuraa', '2014-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS794073251538', 'Jean Davis', 1, '+44 7040 797949', 0, '599806167674888249', 'Block 20, 954 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1995-07-10', 0, 0, 'jdavis7', '2013-03-25', 'jeadavis87', '2017-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS337521628168', '石川紗良', 0, '+1 614-685-3696', 1, '147916590499228309', '609 Wicklow Road Apartment 29, Columbus, GA 43204, United States', '1986-01-10', 0, 0, 'sarais', '2017-05-30', 'ishsar', '2010-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS606293824809', '方睿', 1, '+86 20-1865-7596', 4, '241227530377806814', '中国广州市海珠区江南西路497号华润大厦40室', '1990-09-17', 0, 0, 'fr2013', '2013-07-26', 'fang5', '2017-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS232565126472', 'Todd Cole', 0, '+86 10-5484-1240', 0, '086209988295997278', '中国北京市西城区复兴门内大街473号12栋', '1990-03-06', 0, 0, 'toddc', '2000-02-26', 'toddcole', '2021-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS108410777393', '樂麗欣', 0, '+44 (20) 6147 8610', 1, '362638285630003051', 'No.37 Main building, 955 Hanover Street, London, W1S 1YD, United Kingdom', '1997-11-30', 0, 0, 'loly', '2005-01-31', 'loklaiyan', '2014-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS414779382905', '胡杰宏', 1, '+81 90-3410-3859', 2, '010589431199374115', '日本おおさかし近江堂一丁目7番3号10階', '1986-02-08', 0, 0, 'jiehonghu', '2016-10-26', 'jiehong1114', '2018-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS548179449804', 'Lisa Olson', 0, '+81 90-5483-9290', 2, '635843758552152876', '日本東京港区東新橋一丁目5番10号25号室', '1988-10-09', 0, 0, 'olson3', '2008-05-10', 'lio', '2000-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS236870077709', '魏震南', 0, '+81 3-6033-0726', 1, '828403357992502203', '42F, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1990-08-13', 0, 0, 'wezh', '2006-11-03', 'wezhen', '2019-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS701655189773', '彭淑怡', 0, '+44 (1865) 52 2339', 4, '039802142182275750', 'No.39 Main building, 108 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1990-05-09', 0, 0, 'sukyeepa10', '2021-05-05', 'pangsukyee64', '2021-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS811512964292', '雷致远', 1, '+81 52-689-8921', 1, '980686838063005539', 'Rm. 42, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1991-01-30', 0, 0, 'zl3', '2014-02-14', 'lei8', '2005-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS153385302366', 'Albert Mendoza', 1, '+44 5251 894533', 0, '986625504423593795', 'Flat 14, 325 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1989-02-01', 0, 0, 'albertmendoza', '2000-12-27', 'albertmend05', '2001-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS320089125692', '陆宇宁', 0, '+1 212-203-4144', 0, '288416448776082369', '489 Canal Street Apt 35, New York, NY 10013, United States', '1995-01-28', 0, 0, 'yuninglu', '2016-01-22', 'yuning9', '2003-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS158374599491', '佘朝偉', 0, '+86 176-7135-1114', 2, '891302518547007571', '中国北京市东城区东单王府井东街86号华润大厦27室', '1988-01-01', 0, 0, 'chiuwai808', '2021-12-01', 'shehchiuw', '2009-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS441068762503', 'Kelly Phillips', 0, '+81 90-9299-3352', 1, '663218645934079068', '日本おおさかし東住吉区東田辺三丁目27番1号28階', '1992-12-20', 0, 0, 'phillips96', '2014-03-07', 'kphil', '2020-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS282619709199', '小島絢斗', 0, '+1 614-021-6120', 3, '557342095110745515', '737 East Alley 3rd Floor, Columbus, GA 43201, United States', '1994-12-30', 0, 0, 'ayatokoj411', '2012-12-23', 'kayato', '2005-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS991036183167', '黃家輝', 1, '+1 212-071-4492', 3, '419604442352636027', '504 Canal Street Suite 42, New York, NY 10013, United States', '1994-08-16', 0, 0, 'kfwo14', '2007-06-01', 'kfwong811', '2002-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS454481064788', 'Allen Hamilton', 1, '+81 90-1299-4175', 3, '095247885805720520', '4-kai, 5-2-5 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-12-10', 0, 0, 'allenhamilton', '2005-08-26', 'hamalle9', '2018-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS362194284349', '區秀文', 0, '+81 66-288-5385', 3, '558727356480148622', '11F, 3-27-5 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1994-01-23', 0, 0, 'sma', '2006-01-03', 'sma531', '2015-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS176224289378', '孔詩涵', 1, '+81 52-883-3735', 3, '332870550722657689', '日本なごやし瑞穂区河岸町四丁目20番15号26階', '1999-01-27', 0, 0, 'sk5', '2018-08-23', 'shihan4', '2009-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS113617289748', '谷口絢斗', 0, '+44 (121) 045 3679', 0, '739941324200650804', 'Block 41, 570 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1991-04-11', 0, 0, 'taniguchiayato47', '2009-06-08', 'ayato6', '2015-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS059142418959', '加藤和真', 0, '+81 90-9338-6325', 0, '122838758675239120', '日本東京品川区東五反田五丁目2番10号30階', '1998-01-31', 0, 0, 'katokaz', '2016-05-25', 'kazumakato', '2014-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS290290610286', '藤田百恵', 1, '+81 90-1533-3297', 4, '249156645688105196', '日本札幌白石区菊水三条五丁目2番5号50階', '1998-11-07', 0, 0, 'fmom', '2015-12-24', 'momoe6', '2002-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS000299787414', '今井紗良', 1, '+1 212-024-8219', 3, '798154254661919852', '982 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1988-11-10', 0, 0, 'sara831', '2018-01-11', 'sarimai113', '2019-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS945621198513', 'Florence Bell', 0, '+44 7138 142011', 1, '687235851753264964', 'Flat 8, 71 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1992-01-03', 0, 0, 'fbell', '2021-09-01', 'bflorence1', '2002-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS594072662120', '谷慧敏', 1, '+1 213-691-0143', 3, '784567997170478184', '570 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1990-01-04', 0, 0, 'wako7', '2005-08-23', 'koowm', '2013-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS842543978628', '阮家明', 0, '+86 156-7229-2492', 2, '632935385587029588', '22F, 877 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1995-07-24', 0, 0, 'yuenkaming823', '2014-08-13', 'kamingyu', '2002-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS613829002288', '冯致远', 0, '+44 7655 117346', 1, '595794554981027933', 'Flat 28, 147 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1985-04-30', 0, 0, 'zhiyuanfen', '2021-01-31', 'fengzhiyu', '2011-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS105496024708', '安藤陽太', 0, '+1 838-766-0029', 1, '995905042183025210', '806 Central Avenue Apartment 30, Albany, NY 12206, United States', '1986-09-12', 0, 0, 'yotaan', '2002-05-02', 'andoyot', '2014-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS877248741433', '藍德華', 0, '+86 21-535-5123', 4, '138182765600140544', '中国上海市黄浦区淮海中路691号46号楼', '1997-04-16', 0, 0, 'takwah1990', '2003-04-16', 'twla908', '2007-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS792872561574', '宣裕玲', 0, '+81 3-2710-9774', 1, '649014419966374475', '48-kai, 2-3-1 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-10-12', 0, 0, 'hsuyl', '2002-08-02', 'yulinghsuan', '2018-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS349693332755', '田村光莉', 1, '+86 169-2981-9177', 1, '277065348188160153', 'Room 42, CR Building, 637 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1991-04-07', 0, 0, 'tamurahikari', '2003-07-05', 'hitam', '2000-02-29'); +INSERT INTO "public"."userinfo" VALUES ('TS140573768106', '宮本蒼士', 1, '+81 90-0204-1506', 3, '396183370062551239', '日本札幌白石区菊水三条五丁目2番19号47階', '1994-09-17', 0, 0, 'maoshi', '2014-09-18', 'miyamotoa4', '2013-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS149626115520', '薛家玲', 1, '+81 74-496-6195', 3, '873266948675510256', '日本ならし学園南三丁目9番5号35階', '1986-08-02', 0, 0, 'kalingsi831', '2009-10-12', 'kalingsi5', '2000-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS641691465958', 'Chad Rice', 0, '+81 74-524-6348', 2, '389843108202615556', '日本ならし大和郡山市本庄町一丁目1番17号33階', '1991-03-06', 0, 0, 'crice', '2001-01-05', 'cr9', '2002-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS717740118255', '苏杰宏', 1, '+86 21-374-5783', 1, '120933181760420153', 'No.34 building, 328 Middle Huaihai Road, Huangpu District, Shanghai, China', '1991-08-28', 0, 0, 'sjiehong', '2001-02-21', 'su85', '2003-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS822831877379', '邵致远', 0, '+81 66-296-2752', 1, '632566854823135559', '日本おおさかし東住吉区東田辺三丁目27番2号27階', '1986-03-06', 0, 0, 'zshao91', '2018-02-13', 'zhiyuan1130', '2007-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS732050002666', '木村紗良', 1, '+44 (1223) 74 0533', 1, '729751522481461992', 'Block 15, 197 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1992-01-12', 0, 0, 'sarkimura505', '2013-04-25', 'kimurasar3', '2016-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS231481264539', '應裕玲', 0, '+86 147-2205-5442', 1, '773067632702170073', 'No.24 building, 394 Xiaoping E Rd, Baiyun , Guangzhou, China', '1986-06-18', 0, 0, 'ying3', '2009-02-15', 'yuling7', '2010-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS692446246726', 'Jeffery Gonzales', 1, '+44 (1865) 24 8425', 4, '044058474646740513', 'Flat 50, 603 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1998-03-06', 0, 0, 'jefferygonz1225', '2018-07-24', 'jeffegon6', '2001-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS348005733744', 'Gary Ruiz', 1, '+44 (1223) 30 0012', 0, '770462448224215526', 'Unit 20, Oxford Eco Centre, 129 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1994-06-09', 0, 0, 'ruig', '2020-07-12', 'garyr', '2018-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS553782466028', 'Martha Jenkins', 1, '+86 21-4350-9966', 4, '016119744096283607', 'Room 20, CR Building, 220 Hongqiao Rd., Xu Hui District, Shanghai, China', '1990-06-16', 0, 0, 'marthajenki', '2006-10-01', 'jenkins89', '2018-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS592497457453', '樊朝偉', 0, '+44 7536 378264', 1, '665866043618451697', 'Unit 5, Oxford Eco Centre, 444 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1991-02-08', 0, 0, 'fchiuwai', '2013-10-01', 'chiuwai1223', '2009-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS214210669637', '楊麗欣', 1, '+81 3-1935-2689', 0, '627945676964592958', '9F, 1-6-18, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1995-04-28', 0, 0, 'lyyeung', '2021-04-23', 'lyy1', '2009-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS701170525921', '曾安琪', 1, '+86 179-8535-3137', 2, '594006759514013738', '中国深圳福田区深南大道343号17室', '1994-05-06', 0, 0, 'tsangok', '2012-08-30', 'tsang3', '2001-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS693662524819', '傅子韬', 1, '+86 172-4998-7500', 3, '378932735295329248', 'Room 22, CR Building, 362 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1991-04-03', 0, 0, 'zitafu', '2020-03-28', 'zitaofu', '2013-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS417758939251', '文曉彤', 1, '+1 838-566-3871', 2, '724510959854188767', '565 Central Avenue Suite 7, Albany, NY 12205, United States', '1995-06-04', 0, 0, 'man1211', '2007-11-11', 'manht1021', '2020-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS704735120577', 'Roy Wallace', 1, '+86 199-5015-2413', 2, '958721073029511735', 'No.10 building, 563 Jingtian East 1st St, Futian District, Shenzhen, China', '1990-12-15', 0, 0, 'wallacero4', '2000-06-12', 'roy328', '2005-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS154760628023', '钟晓明', 1, '+1 718-923-8490', 2, '800265212022986900', '305 Columbia St Suite 25, Brooklyn, NY 11231, United States', '1990-09-22', 0, 0, 'zhongx', '2004-02-02', 'zhongxiaoming', '2001-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS972529939327', '井上七海', 1, '+86 150-6260-5300', 3, '843194063302036489', '中国广州市海珠区江南西路788号华润大厦5室', '1997-10-03', 0, 0, 'nanamiinoue', '2008-04-26', 'nanami1', '2017-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS813307150978', '谷慧敏', 0, '+81 90-5455-3131', 4, '127898492473840858', '日本ならし大和郡山市本庄町一丁目1番2号11号室', '1986-07-11', 0, 0, 'koowaiman', '2014-11-08', 'koowm', '2022-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS964192221609', '村上大輔', 0, '+1 330-513-7263', 1, '998435711277291642', '129 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1988-03-19', 0, 0, 'mdai69', '2017-01-22', 'daisukemurakami', '2009-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS776790489379', '韓嘉欣', 1, '+86 171-4614-3878', 2, '013494151996138663', '中国成都市成华区双庆路93号22楼', '1991-01-12', 0, 0, 'kyhan75', '2016-05-23', 'haky', '2008-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS782570487910', 'Janet Henderson', 0, '+1 614-054-5859', 4, '603707433662395841', '933 Wicklow Road Suite 40, Columbus, GA 43204, United States', '1992-08-12', 0, 0, 'janet2007', '2015-06-22', 'hejanet5', '2003-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS770268411486', 'Marjorie Rose', 0, '+81 70-5623-6806', 1, '552102102010221982', '日本東京港区東新橋一丁目5番9号6階', '1998-12-08', 0, 0, 'rosemarjorie63', '2014-04-22', 'mrose', '2010-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS002432450512', 'Frank Ford', 0, '+1 330-570-8952', 2, '602779676591662907', '58 West Market Street Suite 16, Akron, OH 44333, United States', '1998-04-14', 0, 0, 'frankford', '2019-01-15', 'fordfran', '2022-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS942805050712', '朱詩涵', 1, '+81 11-583-6735', 1, '005724929456845939', '6-kai, 13-3-4 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1998-04-25', 0, 0, 'zhushihan', '2003-10-08', 'zhu421', '2013-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS536971031519', '佐藤拓哉', 1, '+86 760-9114-1206', 1, '986644633046414476', 'No.42 building, 469 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1989-12-03', 0, 0, 'takuyas', '2019-08-19', 'satot', '2019-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS794268943377', 'Howard Sanders', 0, '+44 5513 483689', 2, '060574294903470060', 'Block 10, 110 Regent Street, London, W1B 2LX, United Kingdom', '1993-08-03', 0, 0, 'sanh15', '2014-07-31', 'howarsanders', '2010-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS659272671977', 'Judy Lopez', 0, '+86 146-2952-8674', 0, '641769511806207212', '中国广州市海珠区江南西路626号32号楼', '1995-06-08', 0, 0, 'lopezjudy3', '2011-07-23', 'lopezjudy', '2014-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS598760228649', 'Rhonda Barnes', 0, '+1 838-196-4130', 0, '378260439821909520', '178 State Street Apartment 42, Albany, NY 12203, United States', '1998-06-29', 0, 0, 'rhondbarnes5', '2020-01-24', 'barnesr819', '2014-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS150204366799', '徐曉彤', 1, '+81 11-989-7797', 1, '908724929982127403', 'Rm. 13, 5-19-18 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1985-09-18', 0, 0, 'tsuiht3', '2008-02-11', 'htt', '2016-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS154631119532', '郭震南', 0, '+1 213-053-9243', 1, '970046811677091023', '753 Figueroa Street Apt 18, Los Angeles, CA 90037, United States', '1997-09-07', 0, 0, 'guzhennan1225', '2013-11-13', 'guozhenn17', '2004-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS017670971781', '樊國明', 1, '+44 (116) 690 2465', 2, '470546282314538306', 'Block 24, 615 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1999-01-18', 0, 0, 'kwokmfan93', '2015-04-24', 'fakm', '2008-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS196410446380', '贺云熙', 1, '+1 838-911-3821', 3, '331434639324492097', '826 Central Avenue Apartment 9, Albany, NY 12206, United States', '1998-11-22', 0, 0, 'hey', '2018-02-13', 'he92', '2007-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS229954081346', 'Stanley Murray', 1, '+81 52-475-7621', 1, '556895503411098316', '17F, 11 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1994-11-30', 0, 0, 'murray906', '2009-02-19', 'stanley814', '2009-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS141061200016', '丸山百花', 1, '+81 52-039-0997', 2, '135050654922661317', '34F, 2-5-16 Chitose, Atsuta Ward, Nagoya, Japan', '1995-02-11', 0, 0, 'momomaruyama', '2013-08-25', 'maruyamam43', '2003-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS024417177878', '邓宇宁', 0, '+81 70-5166-0222', 3, '816308263466146931', 'Rm. 50, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1989-08-23', 0, 0, 'dy1', '2002-05-16', 'dengyuning', '2008-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS674826042596', '石秀英', 1, '+81 3-8732-6191', 3, '166161037471501768', 'Rm. 40, 5-2-20 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1988-07-25', 0, 0, 'xiuyish', '2004-02-16', 'sxiuying', '2008-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS559768596534', '彭惠妹', 0, '+86 10-340-6852', 1, '468270819420054915', '中国北京市西城区复兴门内大街27号华润大厦48室', '1998-07-24', 0, 0, 'panghm43', '2014-05-20', 'pang1', '2011-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS984333645917', '梅玲玲', 1, '+86 141-2258-2382', 1, '350946805466101287', 'Room 45, CR Building, 67 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1992-12-11', 0, 0, 'muiling', '2011-12-07', 'llmui', '2009-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS260661311041', '劉惠敏', 0, '+81 74-879-2037', 2, '938148585951749421', 'Rm. 43, 1-7-4 Saidaiji Akodacho, Nara, Japan', '1987-10-12', 0, 0, 'lawaiman', '2014-03-07', 'lauwaiman12', '2017-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS827856121839', '孫世榮', 1, '+86 196-7337-2526', 2, '312018161155501463', '48F, No. 945, Shuangqing Rd, Chenghua District, Chengdu, China', '1990-03-16', 0, 0, 'swhsu8', '2018-03-10', 'hsuansaiwing', '2000-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS516460187317', '田家玲', 0, '+81 90-2524-1588', 1, '311941726784007404', '日本おおさかし近江堂一丁目7番14号19階', '1989-02-12', 0, 0, 'kalitin', '2016-10-27', 'tinkl616', '2019-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS724936134993', '中山大和', 0, '+1 212-229-3734', 0, '748490973211815776', '229 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1996-10-14', 0, 0, 'yamatn', '2009-03-17', 'ynakayama', '2019-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS597312813682', '唐青雲', 1, '+1 718-186-5737', 3, '959343258891678414', '733 Nostrand Ave Apartment 28, Brooklyn, NY 11216, United States', '1998-06-29', 0, 0, 'tcw', '2012-07-25', 'chingwan8', '2013-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS090150738723', '马子韬', 1, '+81 80-3207-6362', 3, '497940724653033447', '49F, 2-1-6 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1988-06-07', 0, 0, 'zitaoma', '2007-05-11', 'zm420', '2014-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS522900407618', '雷慧儀', 0, '+81 74-219-9181', 2, '718488958925445569', '16F, 1-7-20 Saidaiji Akodacho, Nara, Japan', '1992-03-16', 0, 0, 'wyloui', '2009-04-09', 'waiyee10', '2009-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS935995058663', '成裕玲', 0, '+1 213-183-7418', 0, '068285532712931725', '956 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1995-06-12', 0, 0, 'yulings6', '2011-07-02', 'shingyuling', '2003-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS292749244204', '鄺志明', 1, '+44 (121) 840 0562', 0, '535876051937886830', 'Block 12, 258 New Street, Birmingham, B2 4DB, United Kingdom', '1988-05-21', 0, 0, 'chimingkw', '2006-12-02', 'cmkwong', '2005-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS526238247636', '阎安琪', 0, '+81 90-4474-3648', 2, '887099981326432298', 'Rm. 14, 2-5-16 Chitose, Atsuta Ward, Nagoya, Japan', '1995-10-13', 0, 0, 'yananq', '2011-05-28', 'yan314', '2019-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS858870012009', '菅原一輝', 0, '+81 70-2107-6966', 1, '245208387138145067', '16F, 3-27-13 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-10-12', 0, 0, 'sugi', '2006-10-31', 'sugawara208', '2007-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS684646402709', '邹杰宏', 0, '+81 80-8997-1292', 1, '981600969072023693', '38F, 1-5-3, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1987-10-24', 0, 0, 'jiezou', '2014-09-24', 'zou620', '2007-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS687849803127', '尹杰宏', 1, '+86 193-3208-6124', 3, '288664881148955738', '中国广州市越秀区中山二路493号26栋', '1988-06-23', 0, 0, 'yinji', '2010-10-22', 'jiehyin', '2010-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS196418719415', 'Paul Jones', 1, '+81 74-959-8212', 1, '635293622819090849', '日本ならし大和郡山市本庄町一丁目1番13号29階', '1985-12-03', 0, 0, 'jonespaul', '2017-02-26', 'paul5', '2003-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS093216223435', '洪秀文', 0, '+81 3-2673-7725', 2, '031223749489863163', '日本東京港区東新橋一丁目5番1号35階', '1996-09-25', 0, 0, 'saumanhu', '2017-03-12', 'hungsm8', '2018-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS527461920961', '吉田健太', 0, '+44 (161) 221 6829', 2, '258379902549784570', 'Flat 29, 575 Portland St, Manchester, M1 3LA, United Kingdom', '1995-08-07', 0, 0, 'yke', '2020-12-08', 'kentayo49', '2017-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS970507158234', '鄺發', 1, '+1 212-805-1125', 1, '201827017486740293', '784 West Houston Street Suite 12, New York, NY 10014, United States', '1998-12-08', 0, 0, 'fat410', '2021-12-10', 'kfat', '2014-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS007999167694', '秦岚', 1, '+86 155-7973-8295', 2, '838937527066326534', '中国广州市白云区小坪东路847号28号楼', '1990-03-02', 0, 0, 'laqin4', '2006-12-18', 'qinl', '2020-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS907299367586', 'Theresa Ramirez', 1, '+1 212-613-4627', 4, '034504614676074140', '12 West Houston Street Apartment 5, New York, NY 10014, United States', '1998-10-03', 0, 0, 'therami', '2007-07-19', 'thramirez2016', '2002-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS677585711648', 'Lee Gray', 1, '+44 (121) 039 5504', 3, '345716764931035021', 'No.33 Main building, 604 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1994-12-21', 0, 0, 'lgray', '2002-05-26', 'leegray', '2002-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS559250793651', '山本樹', 1, '+86 760-550-2249', 1, '559542429994707121', '中国中山紫马岭商圈中山五路664号10楼', '1996-10-02', 0, 0, 'iyamamoto', '2016-06-01', 'itsuki1', '2007-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS523653791479', '韓麗欣', 0, '+81 70-6372-4435', 1, '049994522944683179', '32F, 1-5-12, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1992-06-01', 0, 0, 'hanlaiyan8', '2001-04-30', 'laiyanh', '2015-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS412258784981', '崔家輝', 0, '+86 160-2857-5177', 1, '359770333982288374', '中国上海市徐汇区虹桥路567号28楼', '1994-01-31', 0, 0, 'chkafai323', '2011-06-18', 'kafc', '2008-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS966987395882', '阮思妤', 0, '+81 52-212-4731', 2, '343313556855363360', 'Rm. 42, 2-5-3 Chitose, Atsuta Ward, Nagoya, Japan', '1992-11-22', 0, 0, 'szeyuyuen920', '2014-09-09', 'yuen6', '2014-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS083006275131', 'Carol Warren', 1, '+81 90-3341-1610', 4, '509540418891027730', '5F, 3-27-17 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1990-08-19', 0, 0, 'carol9', '2008-09-18', 'wacar', '2001-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS663865182789', '胡慧儀', 1, '+86 130-8163-9689', 3, '094996859344495213', '中国成都市锦江区红星路三段274号华润大厦4室', '1997-12-04', 0, 0, 'waiwu', '2000-08-25', 'wuwy', '2015-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS540250489277', '加藤美緒', 0, '+81 90-2778-8555', 0, '966089545264928650', 'Rm. 31, 12 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1991-11-11', 0, 0, 'mikato45', '2014-01-26', 'miok', '2000-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS743700654903', '松田百花', 0, '+86 20-5440-9610', 1, '723490805582863964', '中国广州市白云区机场路棠苑街五巷107号35室', '1989-09-24', 0, 0, 'momokamatsuda', '2013-04-05', 'matsuda2015', '2008-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS857336748747', 'Danielle Torres', 0, '+81 52-277-5774', 2, '070084602430077367', '日本なごやし守山区瀬古東二丁目171番8号14号室', '1987-11-25', 0, 0, 'danielle2', '2013-02-25', 'torresdani', '2011-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS036808526405', 'Cindy Medina', 0, '+81 70-2003-6215', 3, '086867744143320822', '日本おおさかし東住吉区東田辺三丁目27番5号41階', '1991-07-04', 0, 0, 'cindym', '2005-11-13', 'medinacindy812', '2015-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS477457543358', '應永權', 0, '+44 5878 340258', 1, '292718981522673772', 'Unit 47, Oxford Eco Centre, 864 Pollen Street, London, W1S 1NG, United Kingdom', '1985-01-13', 0, 0, 'yingwingkuen1028', '2001-05-23', 'yingwk219', '2014-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS859483854386', '高木美緒', 1, '+81 3-2956-8058', 4, '785368984851972323', '5-kai, 3-15-16 Ginza, Chuo-ku, Tokyo, Japan', '1990-04-28', 0, 0, 'tmio', '2000-11-02', 'takmio', '2004-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS462082500204', '田村凛', 1, '+1 330-623-3741', 0, '275442646008236288', '643 Riverview Road Suite 47, Akron, OH 44313, United States', '1990-07-11', 0, 0, 'tamurarin9', '2005-04-28', 'tamr', '2021-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS661502686672', '加藤葉月', 1, '+1 213-217-7237', 2, '481623272117687603', '618 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1985-09-30', 0, 0, 'katohazuki', '2014-10-20', 'hazukikato', '2004-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS784821317594', '顧安琪', 1, '+44 (151) 739 5113', 2, '607292930068351333', 'Unit 23, Oxford Eco Centre, 571 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1998-07-17', 0, 0, 'onkayku6', '2013-12-05', 'kuok', '2010-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS441291286040', '程子韬', 0, '+44 7997 106826', 4, '694238952328290350', 'Unit 39, Oxford Eco Centre, 786 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1987-09-12', 0, 0, 'zitaocheng416', '2015-10-26', 'zicheng', '2001-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS631365987258', '桜井健太', 0, '+1 838-516-2949', 3, '058575607924468439', '248 Broadway Apartment 38, Albany, NY 12207, United States', '1986-08-08', 0, 0, 'sakke409', '2007-12-03', 'ksakur', '2016-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS291595285502', '丁震南', 1, '+86 138-8082-5218', 4, '377229823385821792', 'No.18 building, 519 Yueliu Rd, Fangshan District, Beijing, China', '1996-01-14', 0, 0, 'zhennan60', '2010-05-16', 'dinz925', '2020-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS276735995169', '常璐', 1, '+81 90-8944-3365', 2, '851264319778232120', '日本札幌白石区菊水三条五丁目4番1号6階', '1991-09-27', 0, 0, 'clu', '2007-01-13', 'luchang', '2013-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS052830997533', '工藤七海', 0, '+81 90-2783-2315', 1, '780704668636311016', 'Rm. 20, 6-1-19, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1988-10-19', 0, 0, 'nanamkudo8', '2021-02-02', 'nanamikudo2006', '2014-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS619978108363', 'Angela Munoz', 1, '+86 755-781-5351', 2, '336646285032903102', 'No.49 building, 163 Shennan Ave, Futian District, Shenzhen, China', '1996-03-02', 0, 0, 'mange', '2014-01-21', 'angelamun5', '2013-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS295283383359', '邹安琪', 1, '+81 66-966-4266', 2, '688627177543635869', '日本おおさかし平野区加美東四丁目9番9号14階', '1988-12-11', 0, 0, 'anqizo', '2003-02-02', 'za9', '2020-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS863522186567', '小川彩乃', 0, '+44 (121) 609 5581', 1, '940406650846924291', 'Flat 46, 494 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1985-09-24', 0, 0, 'ogawaaya', '2015-05-10', 'ogawaayano', '2006-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS032245655177', '小島愛梨', 0, '+81 70-4058-5211', 3, '522230078260321052', '日本おおさかし近江堂一丁目7番10号46階', '1997-10-04', 0, 0, 'kojima1', '2009-04-27', 'kojimaai1', '2010-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS383158965023', '樂國賢', 1, '+81 90-7741-7328', 2, '688206212902109911', '7F, 1-6-14, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1995-08-04', 0, 0, 'kwolo', '2012-10-19', 'kylok6', '2019-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS889793075376', '山口陸', 1, '+44 (1865) 55 6017', 3, '188765460429389833', 'Unit 5, Oxford Eco Centre, 588 Park End St, Oxford, OX1 1JD, United Kingdom', '1993-01-10', 0, 0, 'riya', '2016-07-07', 'ryamaguchi7', '2013-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS753700235323', '雷惠妹', 1, '+86 153-4514-5690', 1, '174059585277173521', '中国东莞环区南街二巷244号50室', '1987-11-17', 0, 0, 'huimeiloui125', '2006-02-01', 'hmloui', '2012-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS119911686650', '森田葉月', 1, '+81 3-3606-5541', 2, '462983112949850523', '日本東京中央区銀座三丁目12番7号26号室', '1985-05-30', 0, 0, 'hazukimorita', '2001-09-13', 'hazukimori', '2002-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS551148124385', 'Beverly Anderson', 0, '+81 74-938-1517', 1, '456089756934017645', '日本ならし学園南三丁目9番19号34号室', '1993-10-17', 0, 0, 'andeb7', '2012-10-05', 'beverlya', '2005-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS626519987605', '戴宇宁', 0, '+81 3-8124-9654', 0, '670264382856843656', '23F, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1996-01-18', 0, 0, 'daiyuning', '2002-01-16', 'yuningdai', '2001-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS848363671320', '桜井百恵', 0, '+86 150-7970-7217', 4, '562081790343360997', '中国深圳龙岗区布吉镇西环路716号26号楼', '1988-10-08', 0, 0, 'samomoe', '2018-07-02', 'momoesakurai3', '2007-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS734078390652', '石子韬', 0, '+86 135-4432-6679', 2, '485054584927944362', 'Room 3, CR Building, 454 Ganlan Rd, Pudong, Shanghai, China', '1985-01-20', 0, 0, 'zitaosh2013', '2014-07-02', 'zishi3', '2000-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS378895720278', '酒井凛', 0, '+81 3-1111-9986', 3, '050993336980147397', '19-kai, 5-2-19 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1993-02-28', 0, 0, 'sakrin', '2011-03-15', 'rin4', '2015-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS031004379822', '江宇宁', 0, '+44 (121) 571 7228', 1, '965268058413739036', 'Unit 48, Oxford Eco Centre, 991 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1998-07-10', 0, 0, 'jiangyun5', '2020-10-25', 'yuning101', '2016-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS077957969699', '蔡震南', 0, '+81 74-548-0553', 1, '989798072459428313', '17-kai, 3-9-16 Gakuenminami, Nara, Japan', '1988-12-23', 0, 0, 'caizhennan', '2001-08-15', 'zcai', '2008-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS132073607981', '常睿', 0, '+86 28-8102-6339', 2, '659549308306050598', '中国成都市锦江区人民南路四段930号11号楼', '1990-10-02', 0, 0, 'ruichang', '2011-05-13', 'ruchang', '2001-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS096263040047', '高田優奈', 1, '+1 330-447-0800', 3, '686864464570211366', '36 Ridgewood Road Suite 16, Akron, OH 44321, United States', '1991-06-28', 0, 0, 'yutakada', '2002-02-23', 'tyu', '2020-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS992509567549', '龙秀英', 0, '+81 11-645-3209', 1, '195659839186441318', '日本札幌豊平区豊平三条十三丁目3番20号8階', '1993-11-15', 0, 0, 'xiulong1947', '2012-05-03', 'xiuying85', '2002-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS695712899854', 'Joanne Peterson', 1, '+44 5571 038939', 0, '098140479576284386', 'Block 18, 27 Hanover St, Liverpool, L1 4AF, United Kingdom', '1996-12-09', 0, 0, 'peterson67', '2002-05-23', 'pj929', '2014-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS072620235332', '松本悠人', 1, '+1 330-147-8527', 0, '949702751547762121', '922 Ridgewood Road Apartment 41, Akron, OH 44321, United States', '1990-07-12', 0, 0, 'matsumotoy', '2018-05-09', 'matsumotoyuto324', '2013-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS824525734295', '山下聖子', 0, '+81 11-800-2009', 3, '547249666486796075', '日本札幌白石区菊水三条五丁目4番1号26階', '1990-07-26', 0, 0, 'seikoy', '2012-06-01', 'yamashitaseiko', '2003-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS537317786895', 'Jacob Jordan', 0, '+81 11-690-8334', 2, '797741843093414704', '日本札幌厚別区上野幌一条二丁目1番19号11階', '1989-09-30', 0, 0, 'jordan9', '2002-04-19', 'jacob1208', '2018-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS525365209979', '成志遠', 1, '+81 3-6906-8534', 4, '276588428937357752', '7-kai, 5-2-17 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1991-04-07', 0, 0, 'shichiyuen608', '2000-02-11', 'chiyuenshin', '2016-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS189448573833', '小野拓哉', 0, '+1 212-072-4983', 4, '018071588248651775', '196 West Houston Street 3rd Floor, New York, NY 10014, United States', '1991-07-08', 0, 0, 'onot', '2004-02-22', 'ontak8', '2016-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS915943729025', '錢麗欣', 1, '+81 3-4148-9393', 1, '752576711702917775', '日本東京港区東新橋一丁目5番4号34階', '1985-12-18', 0, 0, 'chinly1', '2019-10-12', 'claiyan4', '2012-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS848333252646', 'Allen Patel', 0, '+1 614-568-0906', 0, '339065625785573462', '322 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1997-02-21', 0, 0, 'patelallen', '2006-09-09', 'alpatel', '2019-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS416126934136', 'Ryan Hughes', 1, '+81 80-2950-1496', 2, '838371216504139918', '日本おおさかし平野区加美東四丁目9番16号21号室', '1987-05-16', 0, 0, 'hryan416', '2001-12-21', 'hr05', '2021-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS814653874033', '金子一輝', 1, '+1 213-960-4325', 3, '064974918801996191', '840 Alameda Street Suite 50, Los Angeles, CA 90002, United States', '1999-03-01', 0, 0, 'kaneikki', '2019-05-10', 'ikki7', '2012-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS290212551496', '袁慧珊', 1, '+86 130-2213-9310', 4, '686928679466768571', '中国北京市朝阳区三里屯路57号3楼', '1993-06-11', 0, 0, 'wsyu', '2021-07-15', 'yuenws', '2016-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS975577080046', '新井凛', 0, '+44 7849 651214', 4, '446343769031184150', 'Unit 9, Oxford Eco Centre, 597 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1996-03-20', 0, 0, 'rarai', '2020-06-20', 'riarai', '2002-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS963618174972', '魏嘉伦', 1, '+86 189-3940-6434', 2, '600188667283496906', '中国成都市成华区二仙桥东三路756号42栋', '1998-01-15', 0, 0, 'jialunwei', '2021-10-02', 'weijial416', '2002-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS546725757685', '周璐', 0, '+81 90-7175-5179', 1, '830511478648456320', '21-kai, 5-2-17 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-12-03', 0, 0, 'luzhou', '2001-11-30', 'zhoul', '2001-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS726877074411', '今井健太', 1, '+81 3-7700-8237', 4, '069802216544353362', '34F, 5-2-20 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1986-05-30', 0, 0, 'imkenta7', '2003-12-11', 'imai8', '2020-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS767546844914', '曾嘉伦', 0, '+44 7802 967532', 4, '614852981433668115', 'Block 30, 501 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1997-10-16', 0, 0, 'jialze', '2021-12-30', 'zengjia88', '2016-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS041945871881', 'Rebecca Rodriguez', 0, '+81 3-2613-8951', 2, '926429833611651371', '日本東京港区東新橋一丁目5番13号27階', '1997-08-27', 0, 0, 'rebeccarodr', '2010-11-05', 'rebecca97', '2019-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS530886469779', '石井樹', 1, '+1 312-869-9305', 3, '507376702450416280', '177 Pedway 3rd Floor, Chicago, IL 60601, United States', '1997-01-10', 0, 0, 'itsuki421', '2011-07-04', 'itsukiish228', '2021-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS841548768258', 'Carl Taylor', 1, '+81 80-8290-5188', 3, '007575824853968240', '日本おおさかし西成区天神ノ森二丁目1番10号1階', '1998-08-13', 0, 0, 'taylor46', '2004-12-25', 'carl1210', '2008-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS451173844537', 'Jeffery Spencer', 1, '+44 (151) 400 8318', 2, '013702583121094582', 'Block 18, 303 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1986-08-05', 0, 0, 'spejeff', '2009-12-17', 'spencjef', '2003-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS415156701644', 'Eugene Palmer', 1, '+1 312-903-7795', 1, '865540406301654086', '875 North Michigan Ave Apt 5, Chicago, IL 60611, United States', '1985-02-15', 0, 0, 'eugene2', '2009-04-22', 'eugene718', '2021-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS485610990277', '冯震南', 1, '+1 213-051-0359', 2, '381202039827103851', '933 Grape Street Suite 12, Los Angeles, CA 90002, United States', '1989-02-08', 0, 0, 'fenzhenn', '2009-10-21', 'zf4', '2018-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS036161760562', '傅慧嫻', 0, '+86 755-855-1415', 3, '439487297960842973', '10F, 59 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1998-12-13', 0, 0, 'fu8', '2006-01-22', 'waihafu3', '2011-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS686773301933', '野村拓哉', 1, '+86 162-8771-0309', 4, '513393031216952635', '中国北京市朝阳区三里屯路973号华润大厦32室', '1992-01-13', 0, 0, 'nomuratakuy66', '2015-02-21', 'takunomura', '2017-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS417165074088', '秦子异', 0, '+44 7378 669230', 1, '010100715689308198', 'Unit 18, Oxford Eco Centre, 975 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1986-03-27', 0, 0, 'ziqin', '2011-01-07', 'ziyqin', '2014-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS639479486726', '钟晓明', 1, '+81 70-1753-4709', 2, '180323106988572150', '日本おおさかし西成区天神ノ森二丁目1番10号20号室', '1986-06-02', 0, 0, 'xiaoz1965', '2019-04-23', 'xiaomingzhong88', '2012-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS535471168099', '蔡云熙', 1, '+44 7866 097630', 3, '230008949266890280', 'Block 49, 56 Hanover St, Liverpool, L1 4AF, United Kingdom', '1989-05-17', 0, 0, 'cai3', '2000-11-19', 'cyunxi407', '2019-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS954828151746', '杜嘉伦', 0, '+44 7658 461927', 1, '409849727401345845', 'No.28 Main building, 183 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-03-04', 0, 0, 'jialun424', '2018-09-27', 'du88', '2005-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS536003618337', '遠藤海斗', 1, '+86 28-027-2643', 2, '907040123268484401', '中国成都市成华区二仙桥东三路52号华润大厦7室', '1989-11-13', 0, 0, 'kaitoend', '2011-09-23', 'endokait3', '2010-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS342431589852', '藤原結翔', 0, '+1 838-399-5374', 3, '797683505287260804', '729 Central Avenue Suite 29, Albany, NY 12205, United States', '1988-09-03', 0, 0, 'fujiwarayuit17', '2009-02-15', 'fujiwara95', '2005-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS711376138142', 'Sharon Peterson', 1, '+86 21-128-9492', 2, '170985805408373409', '33F, 334 Middle Huaihai Road, Huangpu District, Shanghai, China', '1998-06-26', 0, 0, 'sharon6', '2020-05-27', 'sharonpet', '2015-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS225694348595', '大野陽太', 0, '+86 10-6554-1872', 1, '668713142832583107', '中国北京市朝阳区三里屯路692号28楼', '1995-01-11', 0, 0, 'yota2', '2017-10-19', 'yotaono805', '2005-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS052770461952', '蔡子韬', 1, '+81 80-6683-0519', 2, '689317016500504972', '日本札幌白石区菊水三条五丁目2番5号48号室', '1993-07-06', 0, 0, 'czita', '2019-01-30', 'caiz', '2021-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS927179277606', '武睿', 1, '+86 10-6131-9969', 1, '046812506896031342', '中国北京市延庆区028县道31号5室', '1992-03-03', 0, 0, 'rw1963', '2006-01-09', 'ruiwu', '2018-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS130393987423', '長谷川舞', 1, '+44 5597 344421', 0, '069207983412924680', 'No.13 Main building, 340 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-04-01', 0, 0, 'hasegawam', '2002-01-06', 'maihasegawa', '2007-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS873217830865', '宋璐', 1, '+81 74-806-4145', 1, '492230816507175834', '日本ならし西大寺赤田町一丁目7番17号10階', '1991-11-01', 0, 0, 'songlu', '2005-05-21', 'songlu417', '2012-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS293144513777', '上田愛梨', 1, '+86 139-7500-6798', 1, '142075772967373704', 'No.25 building, 126 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1989-05-29', 0, 0, 'ueda86', '2007-04-22', 'ueda86', '2001-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS957055867128', 'Scott Martinez', 1, '+44 (151) 877 7760', 2, '384910066777190888', 'Block 12, 950 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1988-06-26', 0, 0, 'scmart', '2002-03-08', 'scott8', '2016-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS979096025755', '曾安琪', 1, '+44 7930 420069', 4, '089555384421724470', 'Flat 7, 647 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1987-08-22', 0, 0, 'zanqi', '2012-09-12', 'zeanqi', '2017-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS982268086622', '蔡震南', 0, '+81 90-6356-0329', 1, '445265230638333363', '日本おおさかし平野区加美東四丁目9番13号8階', '1990-10-11', 0, 0, 'cazhenn', '2003-09-11', 'caizhennan6', '2015-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS017520870866', '龚詩涵', 1, '+86 163-9483-0222', 2, '771881554854653378', '中国中山京华商圈华夏街216号华润大厦38室', '1992-12-15', 0, 0, 'sgong', '2008-06-08', 'gongs', '2007-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS516026845379', '小林彩乃', 1, '+44 (116) 469 7550', 2, '753603946228356697', 'Flat 19, 95 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1991-09-27', 0, 0, 'koayano', '2013-06-01', 'kobayashia', '2001-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS024933062901', '中村彩乃', 1, '+44 5906 941999', 1, '225386367783019409', 'No.31 Main building, 958 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1997-03-30', 0, 0, 'ayanonakamura', '2010-09-14', 'ayano1999', '2018-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS734177854717', 'Ellen Diaz', 0, '+81 90-5177-6558', 3, '797409230681676824', '日本なごやし熱田区千年二丁目5番9号17階', '1997-02-28', 0, 0, 'edia', '2016-01-10', 'ellendia8', '2014-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS477024406061', 'Sherry Ramirez', 1, '+86 152-1822-5516', 3, '531776376539318891', 'Room 26, 86 Dongtai 5th St, Dongguan, China', '1989-03-04', 0, 0, 'ramirez11', '2014-12-27', 'ramirezsherry902', '2000-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS561459203588', 'Bruce Holmes', 1, '+81 90-0167-4505', 3, '003515312751545075', '日本おおさかし東住吉区東田辺三丁目27番12号22階', '1991-04-02', 0, 0, 'holmesbru', '2019-11-06', 'hobru', '2007-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS400834967823', '小山光莉', 0, '+44 (116) 296 5439', 4, '196698893647048523', 'Block 6, 31 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1996-11-21', 0, 0, 'hikakoyam', '2001-05-13', 'hikarkoyam', '2018-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS295567711692', 'Charlotte Howard', 0, '+86 176-9626-7174', 3, '701842526070543916', 'No.12 building, 737 Middle Huaihai Road, Huangpu District, Shanghai, China', '1998-06-07', 0, 0, 'charlottehowar', '2019-10-07', 'howardcharlotte5', '2013-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS496831005954', '阎璐', 0, '+44 7210 314419', 0, '851310396973404465', 'Flat 18, 555 Regent Street, London, W1B 2LX, United Kingdom', '1990-04-13', 0, 0, 'ly519', '2005-06-01', 'lu3', '2005-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS598439372490', 'Harold Cole', 0, '+86 153-7796-2824', 1, '164589136525977820', 'No.5 building, 228 West Chang''an Avenue, Xicheng District, Beijing, China', '1996-05-13', 0, 0, 'cole53', '2010-07-22', 'hc10', '2008-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS679822880283', '卢宇宁', 0, '+44 7791 424455', 1, '500598587672764493', 'No.47 Main building, 778 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1986-01-07', 0, 0, 'yuninglu9', '2019-08-19', 'yuningl', '2013-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS237694613025', 'Wendy Vargas', 1, '+81 66-748-9705', 2, '227786379605633882', '日本おおさかし東住吉区東田辺三丁目27番11号43階', '1998-08-29', 0, 0, 'wendyvar', '2006-04-29', 'vargaw1996', '2013-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS006892172945', 'Lisa Diaz', 0, '+1 330-021-5076', 3, '346080171578693115', '370 West Market Street Apt 4, Akron, OH 44333, United States', '1992-09-21', 0, 0, 'lisad', '2021-10-11', 'dlisa', '2002-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS472566719687', '車頴思', 0, '+81 3-4527-6718', 3, '527607143967276873', '1F, 1-6-2, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-07-21', 0, 0, 'wingsze8', '2019-10-21', 'wingszec', '2013-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS535391019945', 'Rosa Richardson', 1, '+86 769-600-2621', 1, '777774039940759783', 'Room 35, 259 Dongtai 5th St, Dongguan, China', '1993-03-30', 0, 0, 'richardsonrosa', '2017-12-26', 'richrosa', '2013-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS723050476512', 'Charles Stone', 0, '+44 (1865) 40 0189', 1, '502583300030844527', 'Block 49, 683 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1990-09-11', 0, 0, 'charlstone', '2009-01-25', 'stonecharl511', '2012-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS696254240012', '石井七海', 1, '+44 5153 432523', 0, '997115653036792956', 'Flat 26, 610 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1987-12-10', 0, 0, 'ishnanam', '2017-02-07', 'in74', '2011-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS442613831266', 'Jessica Washington', 1, '+86 21-3074-3677', 1, '153265311633795998', '中国上海市徐汇区虹桥路635号31楼', '1995-08-09', 0, 0, 'jeswashington6', '2003-11-02', 'jeswa50', '2011-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS776248403124', '中島絢斗', 0, '+44 7065 631304', 4, '930558600575928958', 'Flat 26, 205 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1990-02-21', 0, 0, 'nakajima4', '2017-04-22', 'ayaton4', '2000-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS025694997527', 'Tina Reed', 1, '+86 21-896-4126', 1, '716749361266205594', '中国上海市闵行区宾川路748号24楼', '1998-08-12', 0, 0, 'reed1223', '2009-11-27', 'reed1962', '2003-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS536022279281', '顾睿', 1, '+81 52-041-8407', 1, '724264533570312912', '日本なごやし北区清水三丁目19番3号50号室', '1989-04-19', 0, 0, 'gurui624', '2019-06-03', 'guru', '2005-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS239737799119', '何嘉欣', 1, '+44 (116) 381 0277', 1, '968152926499772578', 'Block 24, 454 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-02-28', 0, 0, 'karyanho01', '2004-08-01', 'kyho', '2006-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS654309812604', '杨秀英', 0, '+1 213-744-8423', 2, '627157319559980113', '142 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1993-09-26', 0, 0, 'xiyang420', '2016-11-17', 'xiuyiyang', '2019-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS070556277631', 'Frederick Boyd', 1, '+44 7040 089006', 1, '493207028758993828', 'Unit 50, Oxford Eco Centre, 171 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1993-02-01', 0, 0, 'boyd5', '2020-12-21', 'fboy', '2006-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS879391632050', '大塚一輝', 1, '+44 5879 290568', 1, '580711011788103023', 'Flat 30, 321 Portland St, Manchester, M1 3LA, United Kingdom', '1985-09-25', 0, 0, 'io611', '2003-01-06', 'otsuka8', '2005-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS471381889840', 'Eva Garza', 1, '+81 90-2054-5334', 3, '840844960360562955', '日本なごやし瑞穂区河岸町四丁目20番19号27階', '1997-06-21', 0, 0, 'garzaeva4', '2000-02-07', 'eva57', '2009-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS678989399453', '官明', 1, '+44 (151) 285 6067', 3, '072198991308096822', 'Flat 28, 837 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1999-01-22', 0, 0, 'miko', '2003-12-10', 'mik', '2010-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS087865501429', '黎國明', 0, '+81 90-4863-7902', 4, '839525780272319851', '10-kai, 12 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1985-01-22', 0, 0, 'kmlai8', '2003-02-22', 'lakm', '2016-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS813244738347', 'Thelma Mason', 1, '+86 150-8058-8339', 3, '380190702378551670', '中国成都市成华区二仙桥东三路853号16栋', '1991-12-22', 0, 0, 'masonthelma', '2017-06-11', 'thelmamason', '2004-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS585537210929', '姚富城', 0, '+1 614-129-6932', 1, '030829726787070600', '198 East Alley 3rd Floor, Columbus, GA 43201, United States', '1996-08-24', 0, 0, 'fsy', '2006-07-16', 'yeow55', '2008-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS172800316528', '邹嘉伦', 1, '+1 312-430-6377', 1, '308735924507725281', '959 North Michigan Ave Apt 22, Chicago, IL 60611, United States', '1988-06-08', 0, 0, 'zouj', '2004-08-25', 'jialun3', '2018-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS471822568726', '唐慧嫻', 1, '+81 90-1218-1051', 3, '589775973857893199', '31-kai, 5-2-4 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-06-16', 0, 0, 'waihan407', '2007-01-30', 'tongwaihan', '2003-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS293554067286', '曾俊宇', 0, '+81 70-5484-8899', 3, '568126970404429985', '日本おおさかし近江堂一丁目7番7号16階', '1998-12-12', 0, 0, 'tsancy', '2013-06-30', 'cytsang10', '2003-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS657817937006', '井上桜', 0, '+81 80-0338-8891', 2, '392180403045247956', '日本おおさかし東住吉区東田辺三丁目27番15号46階', '1993-04-28', 0, 0, 'inoue79', '2009-09-20', 'inouesakura', '2011-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS272291742561', '邵睿', 0, '+86 28-672-6090', 1, '412323802193924950', '中国成都市成华区玉双路6号470号40号楼', '1990-06-02', 0, 0, 'shaor', '2005-11-15', 'sharui', '2006-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS671722885765', '酒井拓哉', 0, '+86 21-432-6786', 1, '888077758824456357', '中国上海市黄浦区淮海中路548号15号楼', '1987-07-17', 0, 0, 'takuyasakai', '2011-06-30', 'takuyasakai6', '2017-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS704821510822', '黃天樂', 0, '+1 838-170-5171', 1, '705190092647575799', '11 Central Avenue Apt 45, Albany, NY 12206, United States', '1997-04-14', 0, 0, 'wongtinlok58', '2007-03-06', 'wongtl', '2008-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS267370609404', '岡田明菜', 0, '+81 11-988-2499', 2, '098817002943665066', '日本札幌中央区宮の森四条六丁目1番3号40階', '1998-05-05', 0, 0, 'okada1960', '2016-07-02', 'okadakina10', '2004-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS368426485240', '邱睿', 1, '+86 28-8515-0718', 4, '355345649542544233', 'No.13 building, 62 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1985-06-22', 0, 0, 'ruiq501', '2009-04-21', 'ruiq', '2015-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS280700266023', 'Daniel Graham', 1, '+81 66-302-5572', 0, '254626010359377533', '26F, 1-7-13 Omido, Higashiosaka, Osaka, Japan', '1990-03-08', 0, 0, 'gdan', '2012-12-07', 'danielgra10', '2019-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS120533373630', '薛曉彤', 1, '+86 755-962-9429', 2, '220570485106969258', '中国深圳罗湖区田贝一路312号6室', '1991-07-22', 0, 0, 'hiutungs85', '2000-09-14', 'sht', '2010-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS086835678671', 'Kenneth Harris', 1, '+86 10-342-3655', 2, '963461767411282029', 'Room 13, 624 Yueliu Rd, Fangshan District, Beijing, China', '1992-05-19', 0, 0, 'harrk', '2003-12-12', 'harriskenn10', '2017-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS080837435743', 'Betty Long', 1, '+81 80-9570-5713', 2, '026201007469960320', '14-kai, 13-3-9 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1995-03-11', 0, 0, 'bettlo', '2015-09-19', 'belong', '2003-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS914213540913', '金子舞', 0, '+86 21-101-8075', 1, '062399258187717125', '中国上海市徐汇区虹桥路245号35室', '1992-03-01', 0, 0, 'mai1029', '2006-07-29', 'kanekomai96', '2011-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS585187548729', '贺子韬', 1, '+81 90-5223-4237', 1, '134842340511924495', '日本札幌清田区真栄四条五丁目19番6号20号室', '1987-04-24', 0, 0, 'zitao3', '2020-08-18', 'he10', '2014-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS507899772568', '郭心穎', 1, '+81 66-796-6931', 1, '528234947411609543', 'Rm. 36, 1-7-8 Omido, Higashiosaka, Osaka, Japan', '1990-03-09', 0, 0, 'sumwkwok6', '2014-12-30', 'sumwing5', '2009-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS680285562908', '田中聖子', 1, '+81 80-8964-0762', 2, '963764578312310342', '38-kai, 6 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-08-31', 0, 0, 'seikot9', '2000-06-11', 'seitan3', '2004-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS327809781943', '新井翼', 0, '+81 90-6070-6078', 0, '211045498941580977', '日本札幌厚別区上野幌一条二丁目1番6号38階', '1986-01-27', 0, 0, 'tsubasa20', '2019-09-13', 'tsubasaarai', '2009-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS162245832602', '袁志明', 0, '+86 28-301-5233', 1, '141426458679764827', 'Room 22, 905 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1989-10-31', 0, 0, 'yuecm', '2004-04-02', 'yuenchim', '2007-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS154985898783', '坂本蒼士', 0, '+81 11-910-5738', 2, '589499906987241591', 'Rm. 43, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1988-10-17', 0, 0, 'sakamotoaosh', '2007-08-11', 'aosakamoto', '2019-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS760664638650', '姜力申', 1, '+44 5367 822010', 3, '303010526783205180', 'Block 44, 165 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1986-11-25', 0, 0, 'cliksun7', '2004-05-23', 'changliksun', '2003-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS855423369401', '邱震南', 1, '+81 11-243-5649', 1, '251782725314045125', '日本札幌清田区真栄四条五丁目19番17号28階', '1990-10-06', 0, 0, 'zqiu518', '2004-06-20', 'zhennanqiu1996', '2014-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS938633244410', '夏震南', 0, '+86 140-5251-5430', 1, '213135889611656612', '中国深圳罗湖区蔡屋围深南东路268号3栋', '1998-03-05', 0, 0, 'zhennan61', '2015-10-13', 'zhennanxi', '2015-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS037296664866', 'Edwin Mendez', 1, '+81 11-013-9001', 3, '022081458171789929', '日本札幌白石区菊水三条五丁目2番10号8号室', '1995-03-28', 0, 0, 'mendezedwin1', '2003-04-02', 'medwin9', '2009-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS135933489457', 'Rosa Taylor', 0, '+81 70-2455-1635', 2, '203670448021568659', '日本なごやし北区清水三丁目19番6号12階', '1997-12-22', 0, 0, 'rosa40', '2000-04-23', 'trosa', '2017-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS407824003519', 'Leslie Ruiz', 0, '+86 194-0142-7616', 2, '157452694950460448', 'Room 49, 378 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1999-01-19', 0, 0, 'leslie77', '2002-09-09', 'ruiz1125', '2006-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS127681705881', 'Randy Payne', 0, '+81 52-501-5127', 3, '062907904977293298', '日本なごやし北区清水三丁目19番9号29階', '1988-02-05', 0, 0, 'paynerandy', '2018-07-05', 'rpayne', '2007-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS727025185447', '高田聖子', 1, '+1 718-018-5374', 2, '988828197889382301', '644 1st Ave Apt 39, Brooklyn, NY 11220, United States', '1995-12-07', 0, 0, 'seikota3', '2008-09-23', 'takada17', '2013-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS792192146008', '戚慧琳', 1, '+86 755-5019-5195', 3, '069986748963767168', '中国深圳龙岗区学园一巷993号1室', '1989-01-30', 0, 0, 'wailamchi1028', '2020-08-15', 'cwa', '2012-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS208323764570', 'Manuel Tran', 0, '+44 (121) 932 8686', 1, '607000543796427118', 'Unit 6, Oxford Eco Centre, 282 New Street, Birmingham, B2 4DB, United Kingdom', '1993-05-17', 0, 0, 'tranmanu', '2010-12-31', 'tranman', '2017-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS560069416908', '木村一輝', 0, '+81 3-8353-5059', 2, '012539278851649115', '39-kai, 2-3-9 Yoyogi, Shibuya-ku, Tokyo, Japan', '1986-01-13', 0, 0, 'ikkikimura523', '2014-11-24', 'ikkimura1202', '2006-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS243116050824', '河野絢斗', 1, '+86 760-1738-5115', 2, '860913794929582568', '中国中山紫马岭商圈中山五路941号26栋', '1987-02-18', 0, 0, 'konoayato', '2018-12-21', 'konoa', '2002-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS805879893715', '田震南', 1, '+1 213-056-5633', 3, '359484855433363269', '388 S Broadway Apartment 27, Los Angeles, CA 90015, United States', '1989-04-22', 0, 0, 'zhennant409', '2013-07-23', 'zhentian', '2018-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS407006560114', 'Lawrence Ford', 1, '+86 153-0402-9572', 3, '063160459740140752', '中国深圳罗湖区蔡屋围深南东路224号4号楼', '1993-01-04', 0, 0, 'lawrencefor1', '2019-03-01', 'flawre', '2006-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS510930210199', '毛明詩', 0, '+44 (151) 039 2178', 0, '478864190722719642', 'Block 15, 300 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1994-12-15', 0, 0, 'msmo701', '2009-10-10', 'mingszemo7', '2004-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS711767586828', '村田愛梨', 0, '+81 3-1092-3952', 4, '451034827291103783', '日本東京渋谷区代々木二丁目3番17号41号室', '1992-08-20', 0, 0, 'aim', '2006-06-30', 'murataair', '2011-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS809130640573', '薛晓明', 0, '+81 66-486-3880', 3, '816530324142839315', '日本おおさかし近江堂一丁目7番8号38階', '1991-06-11', 0, 0, 'xiaomingxue', '2000-10-23', 'xiaoming10', '2013-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS494354974522', '藤井優奈', 1, '+81 52-520-9048', 2, '164516857038690929', '日本なごやし守山区瀬古東二丁目171番14号47階', '1996-11-30', 0, 0, 'yunfuji93', '2012-02-04', 'yunafu18', '2003-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS816105688573', '洪杰倫', 0, '+81 3-6390-3051', 1, '186407724548322740', '日本東京品川区東五反田五丁目2番15号21階', '1997-05-20', 0, 0, 'chiehlun96', '2015-05-03', 'hucl18', '2012-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS854993825137', '彭宇宁', 1, '+1 330-914-3452', 3, '615393460125492427', '791 Riverview Road Suite 6, Akron, OH 44313, United States', '1992-07-03', 0, 0, 'peng04', '2015-12-12', 'yuningpeng4', '2006-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS193329403579', 'Lisa Gardner', 0, '+81 52-050-0237', 2, '573663247268361478', '40F, 6 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-08-25', 0, 0, 'ligardner', '2011-06-03', 'gardnlisa', '2018-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS442596458361', 'Craig Robertson', 1, '+81 70-9608-0702', 2, '006983230151244344', '日本東京中央区銀座三丁目12番3号5号室', '1998-03-12', 0, 0, 'craigrobertson2020', '2000-01-11', 'rcraig', '2006-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS787746377213', '陳德華', 0, '+44 5067 946724', 3, '672973560652643792', 'Unit 43, Oxford Eco Centre, 150 Hanover Street, London, W1S 1YD, United Kingdom', '1993-06-04', 0, 0, 'takwah7', '2001-02-11', 'takwahchan', '2021-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS571437019492', '严宇宁', 1, '+1 838-180-7597', 3, '647605390383975560', '290 Broadway Apartment 35, Albany, NY 12207, United States', '1990-08-27', 0, 0, 'yunyan72', '2020-04-17', 'yan1', '2017-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS146887793848', '岡田架純', 1, '+81 66-850-4734', 3, '579133398441282098', '45-kai, 1-1-2 Deshiro, Nishinari Ward, Osaka, Japan', '1997-01-31', 0, 0, 'ko8', '2020-08-31', 'okada8', '2020-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS103323534698', '戴秀英', 0, '+86 755-5168-2426', 3, '270734291988353026', 'Room 50, CR Building, 964 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1988-12-31', 0, 0, 'xdai820', '2010-09-30', 'xiuyingdai401', '2012-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS352514416493', '雷宇宁', 1, '+44 (20) 6751 1966', 3, '569393503509279776', 'Block 45, 535 Maddox Street, London, W1S 1PU, United Kingdom', '1997-04-11', 0, 0, 'lei1014', '2001-01-14', 'yuning211', '2012-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS372062845386', 'Patrick Lee', 0, '+86 184-4283-0826', 1, '360822940880294430', '中国成都市成华区二仙桥东三路974号33号楼', '1995-06-27', 0, 0, 'patrickl', '2008-08-19', 'leepatri', '2008-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS647366572721', '後藤美羽', 1, '+1 718-554-3293', 1, '448877956661300403', '891 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1994-03-11', 0, 0, 'miug', '2017-05-25', 'gotomi', '2005-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS647078507638', '佐野拓哉', 0, '+86 173-3972-4157', 2, '758648954114292988', '中国北京市延庆区028县道854号3室', '1989-09-11', 0, 0, 'sanota', '2004-07-22', 'stakuya', '2018-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS058211029853', 'Juanita Johnson', 0, '+1 212-418-5793', 1, '230327993352989512', '992 Canal Street 3rd Floor, New York, NY 10013, United States', '1997-06-20', 0, 0, 'juanitaj', '2010-02-01', 'juanjohnson', '2008-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS598030056440', '蕭慧儀', 1, '+81 80-6003-1555', 3, '379899196888535061', 'Rm. 11, 2-5-8 Chitose, Atsuta Ward, Nagoya, Japan', '1998-10-13', 0, 0, 'waiyes1003', '2022-01-13', 'waiyee8', '2009-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS653291366586', 'Albert Carter', 0, '+81 74-576-7269', 2, '388625703118934259', '日本ならし西大寺赤田町一丁目7番4号2号室', '1994-10-17', 0, 0, 'albecarter1', '2003-11-02', 'cartera', '2007-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS666264857278', '加藤一輝', 0, '+86 182-7570-8722', 1, '546637253615365057', '中国东莞珊瑚路41号华润大厦23室', '1987-05-28', 0, 0, 'kato6', '2007-10-23', 'kato09', '2001-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS319582901764', '大塚海斗', 1, '+86 159-6618-5389', 2, '822611041795054745', 'No.16 building, 298 East Wangfujing Street, Dongcheng District , Beijing, China', '1992-05-21', 0, 0, 'okai', '2000-09-18', 'otsuk', '2008-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS296267502494', '崔杰宏', 0, '+86 21-4072-5889', 4, '542184180703306320', '中国上海市闵行区宾川路940号华润大厦2室', '1989-02-03', 0, 0, 'cujie5', '2015-02-12', 'cuijiehong', '2009-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS192110438051', 'Craig Wood', 1, '+81 90-2534-1310', 2, '672814084925057070', 'Rm. 38, 18 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1991-07-25', 0, 0, 'woodc', '2013-05-28', 'craiwood', '2000-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS008068779749', '後藤蒼士', 0, '+81 90-9967-4453', 2, '562302232111774855', '39F, 1-7-15 Saidaiji Akodacho, Nara, Japan', '1998-03-24', 0, 0, 'goto214', '2020-02-09', 'gaoshi1206', '2017-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS572095583379', 'Eddie Williams', 0, '+1 212-300-3831', 1, '401092599901360177', '553 Wooster Street Suite 16, New York, NY 10012, United States', '1991-02-13', 0, 0, 'ewill', '2019-10-22', 'weddie', '2003-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS068394132691', 'Carol Wallace', 1, '+1 213-509-3290', 1, '444489018826015823', '699 Wall Street Suite 3, Los Angeles, CA 90003, United States', '1998-11-09', 0, 0, 'wallacecarol', '2003-04-15', 'carol417', '2012-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS276695428421', '樊惠敏', 0, '+44 (1223) 93 8951', 0, '540565385758547063', 'Flat 5, 15 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1994-09-22', 0, 0, 'fanwm', '2012-06-04', 'fanwaiman7', '2021-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS180402969422', '徐震南', 0, '+86 20-9854-2432', 4, '448403991020679027', '15F, 167 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1992-05-01', 0, 0, 'xuzhen107', '2014-09-23', 'xu118', '2007-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS454161339965', 'Troy Olson', 0, '+86 769-906-5958', 4, '146619390549881388', '中国东莞珊瑚路361号25室', '1987-02-15', 0, 0, 'troy1957', '2003-06-02', 'olsontroy88', '2003-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS026107147826', 'Mike Alvarez', 1, '+81 70-6792-8447', 1, '863521382409954397', '28F, 2-5-14 Chitose, Atsuta Ward, Nagoya, Japan', '1985-09-18', 0, 0, 'mikealvarez', '2007-05-23', 'malva5', '2007-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS195650928383', '葉學友', 0, '+81 11-082-9522', 0, '815727131268871718', '日本札幌豊平区豊平三条十三丁目3番4号20号室', '1991-06-04', 0, 0, 'hokyauyip5', '2002-09-07', 'yiphy', '2021-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS995511479625', '朱慧儀', 0, '+81 90-9980-0953', 3, '470665949776496010', '日本なごやし北区楠味鋺三丁目80番7号2階', '1994-09-19', 0, 0, 'chuwaiyee', '2001-10-31', 'wychu1963', '2005-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS801370188390', '崔天榮', 1, '+81 90-6864-9200', 3, '397122434834780773', 'Rm. 32, 5-19-12 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1986-09-11', 0, 0, 'twchoi', '2019-05-03', 'choitw', '2000-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS463769433134', 'Dale Carter', 0, '+1 614-167-5015', 3, '625076501589824127', '370 Wicklow Road Apartment 1, Columbus, GA 43204, United States', '1994-05-17', 0, 0, 'carter4', '2000-07-03', 'dcarter', '2005-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS996810871320', '酒井優奈', 1, '+81 80-4428-6610', 1, '879379395590855435', '日本東京品川区東五反田五丁目2番19号43階', '1987-10-26', 0, 0, 'sakaiy', '2008-08-08', 'yunasakai01', '2013-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS477187072765', 'Barbara Johnson', 0, '+44 7596 796170', 3, '815115706516937564', 'Block 33, 548 Park End St, Oxford, OX1 1JD, United Kingdom', '1995-08-07', 0, 0, 'bj3', '2014-09-19', 'baj', '2010-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS536505616944', 'Sarah Baker', 0, '+81 66-321-6093', 4, '765306298408659661', '日本おおさかし近江堂一丁目7番3号18階', '1988-12-18', 0, 0, 'baker609', '2008-03-13', 'sabaker6', '2009-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS464076987587', '伊藤架純', 0, '+1 614-293-7705', 3, '256875737972667834', '372 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1988-09-29', 0, 0, 'ito111', '2003-09-27', 'itokasumi46', '2008-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS809740618484', 'Charlotte Olson', 1, '+81 70-8346-2228', 2, '048510535084636300', '日本おおさかし東住吉区東田辺三丁目27番16号14階', '1986-11-24', 0, 0, 'olson2', '2018-03-09', 'olcharlotte', '2017-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS145559919690', '史致远', 0, '+86 10-6713-9084', 3, '162573776701823614', 'No.50 building, 896 East Wangfujing Street, Dongcheng District , Beijing, China', '1993-04-25', 0, 0, 'zhiyuanshi41', '2006-12-21', 'shizhiyuan', '2013-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS070582052653', '工藤健太', 1, '+81 70-3400-7123', 3, '584552697544148159', '35F, 5-4-11 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1990-04-10', 0, 0, 'kudokenta', '2013-05-03', 'kenta613', '2013-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS991440757706', '苏秀英', 1, '+86 149-1285-9747', 3, '515539741721551083', 'Room 34, 346 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1997-01-01', 0, 0, 'su7', '2015-11-14', 'xiuyingsu', '2009-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS398866998070', '田云熙', 1, '+81 66-881-2442', 0, '347227652837960115', '日本おおさかし西成区天神ノ森二丁目1番3号30階', '1997-05-10', 0, 0, 'ytian1948', '2000-12-25', 'tiyunx3', '2002-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS028661914342', 'Maria Grant', 1, '+81 66-215-8184', 2, '116629438138284262', '日本おおさかし東住吉区東田辺三丁目27番2号22号室', '1998-08-09', 0, 0, 'gramaria5', '2018-03-08', 'mariagrant', '2003-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS738127966406', '遠藤愛梨', 0, '+44 (161) 718 7282', 3, '210288133992679264', 'Unit 47, Oxford Eco Centre, 521 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1986-10-07', 0, 0, 'endoairi', '2017-01-11', 'aend', '2019-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS669275672328', '蔡致远', 0, '+86 185-0987-1682', 1, '850566358935481959', '中国深圳罗湖区田贝一路615号31室', '1985-05-03', 0, 0, 'cai1', '2013-05-30', 'zhiyuan04', '2016-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS170990674236', '陆子韬', 0, '+81 80-1313-9154', 0, '124586530042876151', '36F, 3-9-11 Gakuenminami, Nara, Japan', '1991-03-21', 0, 0, 'zitlu5', '2004-07-08', 'zitaolu', '2017-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS929474851091', '中島一輝', 1, '+1 838-064-2792', 1, '684737230987977611', '257 Central Avenue Apt 41, Albany, NY 12206, United States', '1992-10-21', 0, 0, 'nakajimaikki', '2004-05-21', 'ikkinakaj', '2012-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS678195801574', '狄安琪', 0, '+86 755-035-5627', 1, '478476075857184591', 'No.4 building, 352 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1993-11-17', 0, 0, 'onkayti10', '2008-05-18', 'tionkay77', '2018-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS311583515812', '洪慧珊', 1, '+44 5512 301501', 2, '999714089553530548', 'No.10 Main building, 11 Redfern St, Liverpool, L20 8JB, United Kingdom', '1997-10-19', 0, 0, 'hungwaisan5', '2015-06-27', 'hws', '2013-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS244221256962', '中山健太', 1, '+1 312-284-4070', 4, '910419309359821547', '75 Pedway Apt 21, Chicago, IL 60601, United States', '1998-03-10', 0, 0, 'kenakayama', '2006-11-04', 'kenta78', '2002-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS622183221311', 'Andrea Cooper', 0, '+81 52-311-7048', 4, '584478207260151169', '日本なごやし守山区瀬古東二丁目171番2号15階', '1997-12-20', 0, 0, 'cooper14', '2018-05-13', 'cooper419', '2012-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS694231560415', 'Brian Flores', 1, '+44 7046 195856', 2, '333439997528827514', 'Flat 10, 769 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1986-08-06', 0, 0, 'florbrian11', '2014-04-08', 'brfl', '2019-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS435579760979', '中島翼', 1, '+81 52-102-2613', 0, '686550925396348631', '日本なごやし守山区瀬古東二丁目171番1号42階', '1991-12-01', 0, 0, 'nakajima7', '2013-01-12', 'tn49', '2018-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS726448781290', '廖秀英', 1, '+86 21-452-2416', 2, '740018894089318606', '6F, 893 Hongqiao Rd., Xu Hui District, Shanghai, China', '1987-04-11', 0, 0, 'xliao', '2020-11-08', 'xiuyingliao6', '2018-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS088371390871', '野村悠人', 1, '+81 70-9370-4866', 4, '135759042124484214', '日本おおさかし西成区天神ノ森二丁目1番1号30号室', '1986-04-01', 0, 0, 'yutonomu', '2002-05-02', 'yutonomu', '2009-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS680279629928', '元明詩', 0, '+86 10-0926-1339', 4, '573815855137963915', '47F, 708 028 County Rd, Yanqing District, Beijing, China', '1995-08-25', 0, 0, 'yuen723', '2012-07-21', 'ymingsze9', '2015-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS251662122458', '阮朝偉', 0, '+86 193-8782-1587', 3, '126117472493916268', '中国成都市成华区双庆路495号华润大厦12室', '1996-11-02', 0, 0, 'ychiuwai', '2006-07-26', 'cwyu', '2020-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS186866207485', 'Connie Guzman', 0, '+81 52-514-7708', 4, '208147951901428272', '48-kai, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-05-19', 0, 0, 'connieguzman', '2021-11-09', 'coguz', '2020-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS740386018753', '蔡子异', 0, '+44 (1865) 59 9010', 3, '590903713076258972', 'Unit 8, Oxford Eco Centre, 300 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1998-04-03', 0, 0, 'ziyicai', '2005-04-29', 'caziyi', '2000-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS907851790922', '田致远', 1, '+81 74-433-1764', 2, '144171696809147897', '日本ならし学園南三丁目9番18号24階', '1991-03-15', 0, 0, 'zhiyutian1', '2016-06-01', 'zhiyut', '2016-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS776862537184', '郭俊宇', 1, '+44 (161) 696 7370', 1, '189841560685086766', 'No.8 Main building, 353 Portland St, Manchester, M1 3LA, United Kingdom', '1988-08-28', 0, 0, 'kwok10', '2000-02-26', 'cykwok', '2020-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS452480362655', 'Tiffany Palmer', 0, '+86 28-4514-3897', 0, '691831156657821565', '中国成都市成华区玉双路6号673号华润大厦21室', '1985-01-29', 0, 0, 'tiffapa5', '2000-04-15', 'tifpalme', '2017-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS555565459112', '原田桜', 1, '+44 7865 993879', 4, '180021283089580588', 'Unit 19, Oxford Eco Centre, 525 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1999-02-01', 0, 0, 'sakurh', '2019-05-19', 'haradas', '2021-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS026550458082', 'Alice Ferguson', 0, '+81 66-548-1915', 4, '587232929556548272', '日本おおさかし東住吉区東田辺三丁目27番8号49号室', '1994-01-15', 0, 0, 'ferguson6', '2008-07-21', 'fergusona', '2019-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS913030924011', '酒井詩乃', 0, '+86 21-202-2623', 1, '768769862229077044', '中国上海市浦东新区健祥路491号48栋', '1986-04-01', 0, 0, 'sakaishino725', '2015-08-07', 'sashino', '2003-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS791228288126', '竹内湊', 1, '+1 718-895-1105', 4, '795842500123133319', '399 1st Ave Apartment 44, Brooklyn, NY 11220, United States', '1989-05-10', 0, 0, 'minatotakeuchi', '2019-08-01', 'minato3', '2008-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS686563453301', '張小慧', 1, '+86 168-7848-3883', 3, '260531233435146145', 'No.5 building, No.292, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-05-20', 0, 0, 'swcheu', '2003-11-11', 'swcheu9', '2017-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS850645360816', '龚岚', 1, '+86 21-018-3850', 2, '380422959759514830', 'No.37 building, 674 Jianxiang Rd, Pudong, Shanghai, China', '1989-01-24', 0, 0, 'lago', '2007-08-27', 'gonglan', '2009-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS764293855170', '今井明菜', 1, '+44 7722 396794', 3, '952233411510784580', 'No.23 Main building, 978 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1991-04-28', 0, 0, 'ai1129', '2002-01-02', 'imai86', '2007-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS167567912474', '陶家強', 0, '+1 718-007-8768', 3, '832992777326100285', '185 Bergen St Apartment 18, Brooklyn, NY 11217, United States', '1993-02-23', 0, 0, 'taokakeung', '2005-09-29', 'kakeungtao617', '2013-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS870144284197', '袁心穎', 1, '+1 330-739-5787', 4, '017716909759121152', '180 West Market Street 3rd Floor, Akron, OH 44333, United States', '1988-05-12', 0, 0, 'yuen630', '2012-09-12', 'ysumwing', '2010-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS332430411266', '清水百恵', 1, '+81 80-1273-5011', 1, '245561157408424759', '日本東京渋谷区代々木二丁目3番13号41階', '1998-05-17', 0, 0, 'sm1942', '2009-05-29', 'mshimizu815', '2005-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS205756064715', '韩睿', 0, '+81 90-3703-4103', 1, '112116342604482557', 'Rm. 20, 5-4-7 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1993-10-06', 0, 0, 'ruihan', '2000-05-08', 'hrui7', '2019-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS419794478544', 'Steve Jordan', 1, '+86 769-7611-0648', 3, '205468103217822129', '中国东莞坑美十五巷911号25栋', '1992-01-27', 0, 0, 'jordan1', '2011-08-16', 'stevj109', '2019-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS637025547954', '韦秀英', 1, '+1 212-178-0740', 1, '924351431850803922', '14 Bank Street 3rd Floor, New York, NY 10014, United States', '1994-03-02', 0, 0, 'xiuying9', '2003-11-01', 'xwe', '2001-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS520003949002', 'Annie Snyder', 0, '+86 164-2027-2696', 2, '260236680145283022', 'Room 9, CR Building, 219 Huanqu South Street 2nd Alley, Dongguan, China', '1993-03-09', 0, 0, 'asnyder', '2016-10-09', 'snyderannie', '2012-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS249624849922', '原田湊', 0, '+86 769-8451-7198', 2, '078882685608096611', '中国东莞环区南街二巷256号24栋', '1992-05-06', 0, 0, 'minato4', '2011-02-24', 'minath1209', '2009-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS477871633730', '廖云熙', 0, '+81 90-1631-7171', 0, '335405075264431569', 'Rm. 23, 3-27-7 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-11-30', 0, 0, 'yunxi69', '2002-05-30', 'yunxi74', '2001-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS833938340927', '山口蒼士', 0, '+1 718-071-9206', 1, '794585894260370535', '738 Bergen St Apartment 1, Brooklyn, NY 11217, United States', '1987-08-31', 0, 0, 'aoshi77', '2017-03-11', 'yamaguchia', '2011-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS109930606031', '藍明', 1, '+81 90-4491-0220', 1, '689519147451989655', '日本おおさかし西成区出城一丁目1番3号33階', '1986-05-16', 0, 0, 'lamin221', '2004-02-12', 'mlam', '2001-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS123933915854', '區世榮', 1, '+81 11-345-9293', 4, '042639904237666495', '21-kai, 5-19-12 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1998-05-22', 0, 0, 'saiwing702', '2008-08-06', 'ausaiwing', '2001-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS622689614318', 'Jeremy Hunter', 1, '+1 838-681-9695', 4, '032647798559121922', '21 Central Avenue Suite 13, Albany, NY 12206, United States', '1992-04-27', 0, 0, 'jerehunte518', '2009-01-14', 'huntejeremy', '2011-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS018126199615', '近藤蓮', 1, '+81 80-5892-5563', 3, '287560267147747902', '日本なごやし守山区瀬古東二丁目171番17号30階', '1998-12-13', 0, 0, 'renko', '2021-08-21', 'renkondo3', '2003-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS959844841727', '溫祖兒', 0, '+81 80-4022-9832', 3, '069344202074071775', 'Rm. 1, 3-19-12 Shimizu, Kita Ward, Nagoya, Japan', '1985-04-13', 0, 0, 'choyewan', '2010-11-27', 'cywa', '2009-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS423156971047', '莫家強', 1, '+81 11-167-3581', 0, '559022709803490916', 'Rm. 9, 5-19-17 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1989-07-18', 0, 0, 'mokkk', '2022-02-02', 'mokkk75', '2015-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS331465340030', '朱晓明', 0, '+86 189-8554-3842', 1, '148399535063182222', 'No.8 building, 806 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1988-10-22', 0, 0, 'xiaomingz', '2001-04-27', 'xiazhu1973', '2008-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS740305957057', '森聖子', 0, '+44 5469 979099', 3, '155232326249818151', 'No.22 Main building, 472 Sackville St, Manchester, M1 3BB, United Kingdom', '1990-05-25', 0, 0, 'smo', '2005-02-15', 'moseik116', '2008-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS710599635476', '佐々木海斗', 1, '+1 330-380-7259', 1, '598192358767416558', '530 West Market Street 3rd Floor, Akron, OH 44333, United States', '1995-02-07', 0, 0, 'sasakikaito', '2016-07-04', 'saskaito5', '2010-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS586926561945', 'Bonnie Soto', 0, '+86 160-4079-5800', 1, '676947523016530377', '中国北京市房山区岳琉路116号1号楼', '1994-05-20', 0, 0, 'sb9', '2006-10-17', 'bonso', '2021-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS187358292641', '佐藤樹', 0, '+86 173-2608-3897', 4, '167721178393178530', '中国北京市朝阳区三里屯路887号37号楼', '1986-02-06', 0, 0, 'satoitsuki121', '2021-11-16', 'satoitsuk', '2002-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS859797344011', 'Benjamin Morgan', 1, '+1 718-738-5952', 4, '100999363933734718', '326 Nostrand Ave Suite 41, Brooklyn, NY 11216, United States', '1997-05-08', 0, 0, 'bemo', '2019-03-19', 'mb8', '2011-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS891955977412', '藤明', 0, '+44 (151) 802 0652', 0, '561664513712822953', 'Unit 5, Oxford Eco Centre, 757 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1989-03-19', 0, 0, 'tam803', '2011-07-20', 'mint', '2010-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS879729547380', 'Sharon Warren', 1, '+81 90-0888-8513', 0, '690252496904643230', '日本東京港区東新橋一丁目5番15号13階', '1993-05-04', 0, 0, 'sharwarren', '2008-09-23', 'sw9', '2021-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS766262163959', '傅秀英', 0, '+44 5156 548102', 0, '598444418060101689', 'Block 25, 887 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1992-12-12', 0, 0, 'fu9', '2002-06-17', 'xiuyingfu1222', '2008-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS370337223234', '今井大地', 1, '+81 70-7910-0011', 3, '737692521876119855', '日本ならし大和郡山市本庄町一丁目1番20号44階', '1993-12-26', 0, 0, 'imdaichi', '2013-01-30', 'daichiimai', '2001-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS657028193871', '孙震南', 0, '+86 21-6679-5181', 3, '204711570402936198', '中国上海市浦东新区橄榄路861号华润大厦7室', '1997-05-19', 0, 0, 'suzhenn', '2007-05-24', 'zhens', '2004-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS600080290635', '森田美羽', 1, '+81 52-747-6719', 2, '229528115162961934', '日本なごやし熱田区千年二丁目5番2号23階', '1997-08-23', 0, 0, 'mimorita7', '2019-10-23', 'morimiu', '2019-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS592594535052', 'Katherine Porter', 0, '+86 755-647-9878', 2, '184410720734694821', 'No.34 building, 217 Shennan Ave, Futian District, Shenzhen, China', '1985-01-15', 0, 0, 'portkatherine', '2002-11-25', 'kathporter76', '2016-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS790494998060', '沈子韬', 1, '+1 718-269-6744', 1, '986640573751085682', '520 Nostrand Ave Suite 16, Brooklyn, NY 11216, United States', '1994-09-14', 0, 0, 'zshen', '2020-10-13', 'shezitao', '2012-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS817734980012', 'Sara Murphy', 1, '+81 80-7312-9974', 1, '799179182834728140', '日本東京港区東新橋一丁目5番2号23号室', '1995-09-08', 0, 0, 'sm5', '2001-01-16', 'mursara45', '2021-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS531366615428', 'Ernest Lewis', 0, '+86 755-474-5355', 2, '433078583634652356', '中国深圳龙岗区布吉镇西环路966号华润大厦19室', '1999-02-17', 0, 0, 'lewernest', '2019-06-05', 'lee1991', '2014-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS208671966567', '冯震南', 0, '+86 158-4197-2472', 4, '219599654733361236', '中国东莞坑美十五巷390号6室', '1991-06-20', 0, 0, 'fengzhennan3', '2012-02-26', 'fengzhen3', '2022-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS544428176897', '戴嘉伦', 1, '+86 173-8224-5630', 4, '678698420412506301', 'Room 4, CR Building, 936 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1997-02-02', 0, 0, 'daijialu', '2007-01-22', 'jialundai', '2015-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS869461338053', 'Kathleen Green', 1, '+81 70-6795-7248', 3, '406105848435088563', '1F, 1-5-10, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-04-30', 0, 0, 'kathleen1207', '2001-10-30', 'kgreen', '2014-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS485772271425', '岡田玲奈', 1, '+81 66-834-0504', 2, '560231252438389636', '24F, 4-9-3 Kamihigashi, Hirano Ward, Osaka, Japan', '1998-11-25', 0, 0, 'okadarena', '2007-11-16', 'renaokada', '2015-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS886246869557', 'Raymond Webb', 0, '+86 20-248-9018', 0, '761072077684405170', '中国广州市白云区机场路棠苑街五巷707号35室', '1985-11-19', 0, 0, 'webbraymond', '2013-05-30', 'rawe', '2009-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS242933233253', '田秀英', 0, '+81 80-5658-6444', 1, '356641886364359648', '日本札幌清田区真栄四条五丁目19番9号1階', '1994-04-11', 0, 0, 'tian8', '2008-10-04', 'xiutian', '2019-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS567942860067', '周岚', 1, '+44 7973 316979', 3, '510015006945267692', 'Block 43, 986 Hanover Street, London, W1S 1YD, United Kingdom', '1992-02-18', 0, 0, 'lan04', '2010-12-21', 'lanz', '2006-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS131122347383', 'Nathan Mitchell', 1, '+86 166-2900-5615', 2, '199769217685212832', 'No.50 building, 821 Jingtian East 1st St, Futian District, Shenzhen, China', '1994-05-07', 0, 0, 'nmitchell', '2012-09-10', 'mnathan2006', '2004-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS720702321177', 'Paul Russell', 0, '+86 769-372-0814', 3, '004007765951038955', '中国东莞东泰五街657号38栋', '1986-11-04', 0, 0, 'paurussell', '2009-04-19', 'russell53', '2010-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS534384402947', '橋本拓哉', 0, '+44 7370 908032', 4, '315197817174507028', 'No.18 Main building, 181 Redfern St, Liverpool, L20 8JB, United Kingdom', '1990-11-05', 0, 0, 'takuhashimoto609', '2013-02-08', 'hashimototakuya', '2000-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS042530235237', 'Rose Lewis', 1, '+86 760-397-9409', 3, '516275233341550980', '13F, 824 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1994-04-24', 0, 0, 'roselewis', '2015-11-13', 'roslewis', '2002-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS046500852540', '李秀英', 1, '+86 21-2075-3532', 0, '065595272640756179', 'No.28 building, 728 Binchuan Rd, Minhang District, Shanghai, China', '1995-03-23', 0, 0, 'li94', '2001-11-12', 'xiuyili', '2018-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS661160612665', '小野海斗', 0, '+1 614-039-6797', 2, '636663282450482750', '785 Wicklow Road Suite 19, Columbus, GA 43204, United States', '1988-07-06', 0, 0, 'kon99', '2021-07-25', 'okaito', '2016-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS524011865233', '野口大輔', 0, '+1 718-285-3385', 1, '648587813657830877', '856 Bergen St Apartment 40, Brooklyn, NY 11217, United States', '1990-06-17', 0, 0, 'dno', '2012-06-08', 'noguchidaisuke', '2011-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS478163546249', '溫富城', 0, '+1 212-249-6727', 2, '025692338326890473', '164 Canal Street Apt 28, New York, NY 10013, United States', '1991-03-12', 0, 0, 'fushing6', '2019-07-11', 'wfushi4', '2014-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS584410392840', '杜嘉伦', 0, '+86 157-2405-3759', 2, '665734759336185210', '中国中山紫马岭商圈中山五路6号1栋', '1996-11-20', 0, 0, 'dujia1', '2017-06-14', 'du1101', '2005-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS154635313112', '野村玲奈', 1, '+86 10-245-1060', 3, '815151644510635358', '中国北京市西城区西長安街682号19室', '1989-02-13', 0, 0, 'nomura2004', '2008-05-13', 'nomura530', '2010-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS709672449146', '毛家明', 0, '+1 212-593-8604', 4, '742363876816171955', '532 West Houston Street Suite 5, New York, NY 10014, United States', '1986-02-26', 0, 0, 'mo1986', '2003-01-06', 'kamingm78', '2013-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS985212720098', '周岚', 0, '+86 131-1025-0392', 3, '557437171200034598', '34F, 11 Dong Zhi Men, Dongcheng District, Beijing, China', '1996-06-06', 0, 0, 'laz', '2009-09-29', 'lzhou8', '2010-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS263256666728', '安藤翼', 1, '+1 213-913-3558', 2, '402820716912205723', '133 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1994-05-17', 0, 0, 'tan', '2007-08-18', 'tsubasaand', '2018-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS820776599597', '元家強', 0, '+81 70-9099-3254', 1, '256004337902055748', '日本なごやし瑞穂区河岸町四丁目20番19号14号室', '1993-05-29', 0, 0, 'ykk1225', '2002-10-31', 'yuenkk213', '2002-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS732384915221', '麥慧珊', 0, '+1 614-685-4850', 1, '896205594793307118', '28 Wicklow Road Apartment 8, Columbus, GA 43204, United States', '1985-07-13', 0, 0, 'maws2', '2000-04-30', 'mwaisan', '2018-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS903332088646', '陆致远', 1, '+1 213-768-6637', 1, '122415635265682394', '760 Sky Way Apt 27, Los Angeles, CA 90043, United States', '1986-01-10', 0, 0, 'lu2', '2016-01-30', 'luzhiyuan9', '2020-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS662691415605', '石井大輔', 1, '+81 90-7013-3732', 1, '083924249556968411', 'Rm. 33, 5-2-3 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1991-01-22', 0, 0, 'ishiidaisuke', '2006-08-29', 'id79', '2004-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS926930215625', '石田海斗', 0, '+81 66-269-8511', 2, '781979422016560591', '日本おおさかし西成区出城一丁目1番17号34階', '1996-09-11', 0, 0, 'kaitishi', '2003-03-21', 'ishikaito1023', '2021-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS180863595863', '龚宇宁', 1, '+81 66-341-9946', 0, '114378994086950934', '35F, 1-1-19 Deshiro, Nishinari Ward, Osaka, Japan', '1992-04-19', 0, 0, 'yunigong', '2015-12-05', 'gyun', '2019-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS580402991482', 'Kyle Stewart', 1, '+86 144-5382-5458', 3, '227825756030188441', 'No.29 building, No.250, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-05-06', 0, 0, 'stewartky3', '2017-09-11', 'skyl', '2014-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS182997149393', '朱國明', 0, '+1 718-493-4467', 1, '449255759701334795', '786 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1998-02-17', 0, 0, 'kmch9', '2013-06-25', 'kmchu', '2013-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS036476441673', '車慧珊', 0, '+1 212-983-6325', 1, '186340471598311301', '644 West Houston Street Apt 34, New York, NY 10014, United States', '1987-08-30', 0, 0, 'chewaisan', '2003-09-18', 'wsch', '2007-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS908186757557', 'Christina Grant', 1, '+81 70-0338-0740', 0, '876426429438723920', '日本なごやし北区楠味鋺三丁目80番11号3階', '1995-01-09', 0, 0, 'cg70', '2020-11-07', 'cgrant', '2009-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS267597572854', 'Michael Cruz', 0, '+44 7061 569999', 3, '031259836328379805', 'Block 44, 591 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1993-09-11', 0, 0, 'cruzmichael3', '2007-01-28', 'michaelcruz', '2015-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS880489857905', '董震南', 1, '+1 838-417-4255', 3, '427799299900614009', '803 Central Avenue Apt 3, Albany, NY 12206, United States', '1996-02-05', 0, 0, 'dongzhennan', '2006-04-12', 'dozhennan', '2014-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS291461509558', '张秀英', 0, '+81 90-9110-9045', 0, '968863802651758607', '日本東京千代田区丸の内一丁目6番13号44号室', '1990-05-06', 0, 0, 'xizhang14', '2019-06-20', 'xzhang', '2016-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS456409609188', '太田大和', 1, '+81 11-148-2153', 3, '664833205295596507', '日本札幌豊平区豊平三条十三丁目3番16号22階', '1994-05-25', 0, 0, 'yamatota', '2013-07-26', 'yamaota', '2006-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS750206589095', '曹嘉伦', 1, '+86 769-108-9250', 1, '055086206773768257', '中国东莞珊瑚路590号30室', '1992-06-25', 0, 0, 'cajialun504', '2017-02-25', 'jca', '2015-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS112900127227', '白天樂', 1, '+86 175-7736-8100', 1, '853516726251127037', '中国深圳龙岗区布吉镇西环路572号华润大厦44室', '1987-02-13', 0, 0, 'tinlokpak', '2012-02-26', 'paktinlok', '2001-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS973278161301', '森田蓮', 1, '+1 614-406-8122', 0, '698886834378324880', '517 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1985-08-11', 0, 0, 'renmorita', '2021-09-01', 'rmorita717', '2018-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS866754026540', '姚慧琳', 0, '+44 5267 431919', 2, '264907592065195037', 'Block 18, 459 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1996-05-04', 0, 0, 'yeowwl', '2018-02-13', 'wailamyeow', '2005-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS273515028738', '山口詩乃', 0, '+86 755-1982-1336', 3, '348464444205509026', '中国深圳罗湖区蔡屋围深南东路672号48号楼', '1998-12-02', 0, 0, 'yamaguchi525', '2020-09-21', 'yamshino1', '2014-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS483171336069', 'Adam Gonzales', 1, '+86 755-2972-0182', 3, '115479569670083662', 'No.17 building, 248 Jingtian East 1st St, Futian District, Shenzhen, China', '1990-10-27', 0, 0, 'gadam', '2009-08-17', 'gonzalesada1963', '2013-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS189123096782', 'Ashley Moore', 0, '+1 213-529-3664', 2, '925403393990785191', '715 Figueroa Street Apartment 26, Los Angeles, CA 90037, United States', '1998-04-03', 0, 0, 'ashlmoore207', '2010-05-03', 'moorea', '2000-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS702292898716', 'Roger Campbell', 0, '+81 11-524-6579', 3, '628738984508733399', '日本札幌清田区真栄四条五丁目19番9号2号室', '1995-01-09', 0, 0, 'cro', '2000-04-22', 'rogerc1', '2019-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS362882631228', '工藤聖子', 1, '+86 28-216-1676', 3, '234383482055595092', '29F, No.149, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-08-26', 0, 0, 'kudoseik', '2017-02-10', 'seikokud', '2013-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS423292219614', '梅家文', 0, '+86 184-7019-8821', 4, '232481833516299747', '44F, 428 Binchuan Rd, Minhang District, Shanghai, China', '1985-03-28', 0, 0, 'kmm105', '2016-01-21', 'kaman3', '2012-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS459151249299', '陶安娜', 1, '+86 755-864-4066', 1, '884958013589522338', '中国深圳龙岗区学园一巷909号华润大厦9室', '1997-02-24', 0, 0, 'onnatao', '2000-01-24', 'taoon', '2018-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS276613040502', 'Martin Dixon', 1, '+86 153-0536-4474', 4, '725405687077639116', '中国深圳罗湖区田贝一路212号华润大厦40室', '1989-12-10', 0, 0, 'dixon731', '2012-07-26', 'dixonm', '2001-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS963027844550', 'April Mendoza', 1, '+86 165-5166-8500', 3, '807105022565316865', 'No.27 building, 770 Sanlitun Road, Chaoyang District, Beijing, China', '1986-01-12', 0, 0, 'mendapr9', '2017-03-21', 'mapril', '2004-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS661789270665', 'April Phillips', 0, '+81 70-3381-9778', 0, '939044131167722895', 'Rm. 25, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1993-02-15', 0, 0, 'aprilphillips6', '2016-08-13', 'phillips10', '2008-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS483532776781', '萬世榮', 1, '+86 755-650-2527', 4, '462056510107514717', '中国深圳龙岗区布吉镇西环路52号28室', '1992-12-30', 0, 0, 'msw', '2016-11-04', 'saiwingm1115', '2012-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS288975400819', '孟安琪', 0, '+86 769-297-6923', 3, '366215463051021388', '中国东莞坑美十五巷765号华润大厦18室', '1988-10-14', 0, 0, 'anqimeng', '2002-10-08', 'anqme', '2005-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS325555539021', 'Roy Gutierrez', 1, '+81 90-0582-8452', 3, '006615951628372371', 'Rm. 15, 5-2-2 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1994-02-10', 0, 0, 'roygut', '2000-05-16', 'roygut', '2003-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS037028060421', '岡本陽太', 0, '+44 (151) 461 4766', 2, '420895378010268746', 'No.33 Main building, 58 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1987-03-24', 0, 0, 'okamoyot', '2004-07-26', 'yota5', '2013-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS169564994733', 'Clarence Griffin', 1, '+81 70-4494-5414', 4, '244905700397516989', '日本なごやし瑞穂区河岸町四丁目20番12号50号室', '1985-10-30', 0, 0, 'clarence1964', '2019-05-15', 'clarence62', '2015-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS632099245197', 'Pamela Simmons', 1, '+81 3-3243-9482', 2, '227107177943227281', 'Rm. 48, 5-2-18 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1997-04-06', 0, 0, 'simp58', '2018-04-01', 'simmons69', '2005-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS221836636875', 'Clara Brooks', 1, '+86 141-1363-8288', 1, '841995110675817213', 'Room 3, 333 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1992-06-26', 0, 0, 'clarab4', '2015-11-06', 'cbroo', '2012-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS971572996005', '薛睿', 1, '+81 11-667-8961', 1, '937393546204696544', '日本札幌清田区真栄四条五丁目19番4号44階', '1990-01-21', 0, 0, 'xurui', '2005-05-26', 'rui10', '2003-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS312885111439', '鄭秀文', 1, '+81 80-4459-9606', 0, '147404862902077302', '14F, 1-7-14 Saidaiji Akodacho, Nara, Japan', '1986-04-29', 0, 0, 'sauman809', '2010-02-25', 'saumancheng16', '2013-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS180311064067', '陆致远', 1, '+81 3-6144-8153', 1, '179607654434305423', '21-kai, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1995-07-12', 0, 0, 'lzhiy80', '2005-12-08', 'zhiyuanlu', '2000-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS409352063465', '汪秀英', 1, '+81 66-485-7041', 2, '681102725665518763', 'Rm. 35, 4-9-18 Kamihigashi, Hirano Ward, Osaka, Japan', '1997-02-18', 0, 0, 'wxiuying9', '2005-06-01', 'xiuying1973', '2004-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS406223955965', '戴致远', 1, '+86 10-332-5565', 1, '264084359760046766', '中国北京市东城区东单王府井东街445号42栋', '1998-11-12', 0, 0, 'zhiyuandai', '2009-02-14', 'zhiydai8', '2004-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS545963324371', '汤宇宁', 1, '+81 90-5895-1701', 2, '282140483003357687', '日本おおさかし東住吉区東田辺三丁目27番15号39階', '1996-01-22', 0, 0, 'yuning4', '2002-01-18', 'tangyuning', '2006-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS632340921786', '孫安琪', 1, '+81 11-842-7439', 0, '236537933903486803', 'Rm. 14, 5-2-11 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1994-07-12', 0, 0, 'hsuanon10', '2015-03-25', 'hsuanok1999', '2009-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS172717658519', '阮志明', 0, '+44 5243 410596', 0, '324747413644164984', 'Unit 49, Oxford Eco Centre, 82 Mosley St, Manchester, M2 3AQ, United Kingdom', '1997-04-04', 0, 0, 'yuencm7', '2012-08-25', 'yuenchiming10', '2011-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS068953637554', '邓安琪', 0, '+86 755-557-9538', 4, '608087399045188686', '中国深圳罗湖区清水河一路251号48号楼', '1997-04-04', 0, 0, 'dena1983', '2003-10-12', 'anqi1', '2002-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS436232918412', '野村拓哉', 1, '+1 330-496-1938', 3, '191655749036287459', '533 Collier Road Suite 22, Akron, OH 44320, United States', '1995-08-18', 0, 0, 'nomuratak', '2002-04-28', 'takuya1', '2011-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS159452779846', '山本絢斗', 0, '+86 199-4543-6699', 1, '825033141273531410', 'Room 16, CR Building, 543 Lefeng 6th Rd, Zhongshan, China', '1999-02-11', 0, 0, 'ayatoyamamoto', '2013-08-07', 'yayato72', '2013-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS216894262515', 'Theresa Wilson', 1, '+44 (121) 154 1484', 2, '228998024482487582', 'Unit 37, Oxford Eco Centre, 223 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1997-11-15', 0, 0, 'wt615', '2013-09-21', 'therwilso', '2005-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS539178005633', 'Rebecca Hunter', 0, '+81 3-9512-2662', 2, '969361769016854583', '日本東京千代田区丸の内一丁目6番14号15号室', '1993-05-20', 0, 0, 'hunterrebecca1948', '2020-06-29', 'hunterrebe2010', '2016-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS447777909182', '加藤蒼士', 0, '+86 139-0579-3282', 0, '623002196012529413', 'Room 15, CR Building, 195 Shennan Ave, Futian District, Shenzhen, China', '1989-09-24', 0, 0, 'aoshik', '2021-05-01', 'kao6', '2009-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS421212152566', '松本大地', 0, '+81 66-608-7243', 1, '405999590545685605', '25-kai, 1-7-15 Omido, Higashiosaka, Osaka, Japan', '1991-12-11', 0, 0, 'matsumotod', '2016-08-16', 'mda', '2007-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS336680590411', '郑璐', 1, '+81 90-3017-9325', 3, '588509730491563696', '12-kai, 3-27-3 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1986-11-26', 0, 0, 'luzheng9', '2021-06-09', 'luzheng3', '2018-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS971326035828', '田中光莉', 1, '+81 70-4445-4955', 4, '762146436923864131', '47-kai, 12 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-07-25', 0, 0, 'hikat', '2006-02-21', 'tahik', '2005-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS274992389175', '薛力申', 0, '+1 212-544-7214', 3, '177055273289971795', '321 West Houston Street Suite 33, New York, NY 10014, United States', '1993-04-29', 0, 0, 'sls', '2006-07-20', 'sitliksun', '2012-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS832248538545', '餘天樂', 0, '+81 11-454-7138', 2, '696264869806322975', '9-kai, 5-2-12 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-06-12', 0, 0, 'tinlokyu1956', '2009-01-10', 'tinlokyue115', '2002-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS229579375129', '宮本蒼士', 0, '+86 10-079-8610', 1, '296145410255990831', '中国北京市东城区东单王府井东街196号30楼', '1985-08-11', 0, 0, 'ma10', '2010-04-08', 'miyamotoao', '2013-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS254230559208', '吉田聖子', 0, '+1 614-700-1128', 0, '449874960432650257', '774 Diplomacy Drive Suite 9, Columbus, GA 43228, United States', '1986-04-02', 0, 0, 'seikyosh', '2004-03-22', 'yoshidas', '2014-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS676515293558', '吴安琪', 1, '+81 52-814-7375', 3, '892397172565414450', '日本なごやし北区楠味鋺三丁目80番20号9号室', '1993-05-16', 0, 0, 'awu824', '2021-07-18', 'anqiwu2', '2004-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS506975387940', '莫安娜', 1, '+86 156-0535-6456', 3, '696832350570064636', '35F, 253 Lefeng 6th Rd, Zhongshan, China', '1986-10-10', 0, 0, 'mokon', '2017-04-14', 'moon02', '2013-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS580928447802', '狄慧琳', 0, '+86 769-9604-5759', 2, '124446427242956746', 'Room 15, CR Building, 865 Dongtai 5th St, Dongguan, China', '1992-08-20', 0, 0, 'ti6', '2003-07-29', 'ti10', '2004-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS038463708098', '橋本光', 1, '+44 5513 490411', 3, '244348971334901893', 'Unit 3, Oxford Eco Centre, 712 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-12-03', 0, 0, 'hah', '2004-01-18', 'hikaru7', '2018-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS607783884209', '袁慧嫻', 1, '+81 70-7097-4885', 0, '895959565281761213', '日本札幌豊平区豊平三条十三丁目3番3号41階', '1993-10-06', 0, 0, 'yuen212', '2010-07-26', 'yuen2018', '2008-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS757587709253', '陳慧敏', 0, '+86 176-3289-9912', 1, '982641586643083803', 'Room 35, CR Building, 522 East Wangfujing Street, Dongcheng District , Beijing, China', '1996-10-30', 0, 0, 'chanwm', '2019-01-06', 'chanwm89', '2012-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS134456988668', '郭力申', 0, '+44 (20) 6257 6699', 2, '754954993166968488', 'No.36 Main building, 583 Hanover Street, London, W1S 1YD, United Kingdom', '1999-02-14', 0, 0, 'kls', '2020-07-23', 'kwok506', '2012-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS538551267879', '尹晓明', 1, '+44 (1223) 43 6273', 1, '487991795310393177', 'Unit 22, Oxford Eco Centre, 354 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1988-03-30', 0, 0, 'yinxiao', '2007-02-26', 'yin709', '2005-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS204558406300', '马睿', 1, '+1 213-031-3660', 3, '501695915026576156', '495 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1994-03-29', 0, 0, 'ruima', '2013-10-17', 'rm8', '2015-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS898620665110', 'Jacqueline Johnson', 0, '+81 90-1291-0727', 2, '202320290288051968', '4F, 1-6-1, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1997-03-29', 0, 0, 'johjacqu', '2011-04-26', 'jacquelinej2', '2020-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS763441926509', '郝晓明', 0, '+81 74-138-8546', 2, '202614329075246907', 'Rm. 5, 14 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-11-16', 0, 0, 'xiaomhao10', '2013-02-03', 'xha', '2001-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS903519877581', 'Randall Lee', 1, '+1 213-596-8557', 4, '538613193098331445', '54 Figueroa Street Suite 48, Los Angeles, CA 90037, United States', '1986-02-01', 0, 0, 'lee87', '2003-09-28', 'lrandall', '2021-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS482857883848', '田中絢斗', 1, '+81 74-015-7089', 3, '065915412161913344', '20F, 3-9-7 Gakuenminami, Nara, Japan', '1987-09-08', 0, 0, 'tanaka14', '2020-08-26', 'tanakayato4', '2017-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS786840578105', 'Lee Mitchell', 1, '+86 21-580-4208', 0, '148955021463762009', '37F, 194 Ganlan Rd, Pudong, Shanghai, China', '1991-10-04', 0, 0, 'lemitchell4', '2011-03-21', 'lm74', '2001-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS573188847541', 'Marie Romero', 1, '+86 755-7370-6534', 4, '539567266336329927', 'No.47 building, 928 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1987-05-09', 0, 0, 'romero73', '2003-02-11', 'marieromer3', '2022-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS844457355563', 'Cheryl Howard', 1, '+86 198-5521-2399', 1, '223952284198933917', '45F, 935 028 County Rd, Yanqing District, Beijing, China', '1994-06-02', 0, 0, 'cherh', '2007-05-25', 'howard5', '2010-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS016075952883', '原田瑛太', 0, '+81 80-8348-3917', 4, '603843433886512750', '日本おおさかし西成区出城一丁目1番10号49号室', '1993-08-05', 0, 0, 'haradaei', '2004-02-03', 'haraei', '2019-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS050911940294', '楊詩君', 0, '+1 312-800-5340', 2, '903986143208414226', '424 Pedway 3rd Floor, Chicago, IL 60601, United States', '1985-10-20', 0, 0, 'yeungsk19', '2017-05-17', 'yeung93', '2014-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS387810012992', '戴詩涵', 1, '+1 838-564-6765', 1, '510253458332442658', '55 Central Avenue Apt 17, Albany, NY 12206, United States', '1998-07-31', 0, 0, 'dshihan', '2021-03-08', 'shid', '2021-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS383681786912', '中森桜', 1, '+44 7827 975274', 4, '699142954422326598', 'Flat 14, 244 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1990-02-04', 0, 0, 'sakurnaka', '2014-07-11', 'nakamori613', '2019-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS412021775250', '山崎聖子', 1, '+81 11-658-8441', 2, '594544528682660066', '43-kai, 13-3-18 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1996-01-22', 0, 0, 'syamazaki', '2013-01-12', 'yase3', '2009-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS751849206712', '莫安琪', 0, '+1 718-776-8641', 4, '850332812918431772', '621 Nostrand Ave Suite 20, Brooklyn, NY 11216, United States', '1994-06-11', 0, 0, 'mo1993', '2004-09-19', 'anqimo', '2001-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS117801770240', 'Russell Nguyen', 0, '+86 21-422-4653', 4, '115869647920507182', 'No.36 building, 422 Jianxiang Rd, Pudong, Shanghai, China', '1993-08-12', 0, 0, 'nguyen2', '2008-11-09', 'nguyenru', '2019-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS093398429817', '溫慧嫻', 1, '+44 5173 895718', 4, '455616846468946768', 'Flat 45, 932 Sackville St, Manchester, M1 3BB, United Kingdom', '1993-02-27', 0, 0, 'wwaiha10', '2003-12-06', 'whwan1951', '2020-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS817425544787', '野村蒼士', 0, '+44 (151) 677 7044', 1, '626506041870956666', 'No.50 Main building, 23 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1997-09-06', 0, 0, 'nomura1007', '2019-09-03', 'naoshi8', '2015-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS256979956472', '坂本彩乃', 0, '+86 10-919-8980', 0, '548213600037783405', 'Room 39, CR Building, 693 East Wangfujing Street, Dongcheng District , Beijing, China', '1993-02-14', 0, 0, 'sa2', '2012-12-25', 'asa', '2016-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS439924902337', '傅慧儀', 1, '+1 614-139-0934', 1, '673389259761954780', '922 Tremont Road Apartment 9, Columbus, GA 43212, United States', '1992-03-10', 0, 0, 'fuwaiyee', '2004-01-08', 'fwaiyee', '2017-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS237869067651', '袁家輝', 1, '+44 7175 887253', 4, '298676832293973793', 'Flat 50, 268 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1985-11-24', 0, 0, 'kfyu', '2016-10-07', 'yuen1015', '2004-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS350945360034', '孫慧儀', 0, '+44 (161) 760 6839', 4, '124412661444911824', 'Unit 1, Oxford Eco Centre, 429 Portland St, Manchester, M1 3LA, United Kingdom', '1986-02-23', 0, 0, 'hswaiy2009', '2008-10-08', 'hwai', '2010-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS769100084898', 'Juanita Garza', 0, '+1 838-666-9443', 2, '693685587361547365', '781 Central Avenue Suite 17, Albany, NY 12206, United States', '1996-02-07', 0, 0, 'garzjuanita', '2003-07-24', 'juanitagarza', '2008-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS179208507476', '廖致远', 1, '+86 10-3282-5585', 3, '496274450965944637', '中国北京市延庆区028县道268号华润大厦27室', '1988-04-30', 0, 0, 'zhiyuanlia', '2021-07-28', 'liz65', '2010-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS279802880235', '蔣杰倫', 1, '+81 80-1238-5846', 2, '465121634566913706', '日本東京千代田区丸の内一丁目6番15号22階', '1985-12-08', 0, 0, 'chiangcl90', '2019-03-05', 'chiangcl', '2004-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS107972220949', '阎杰宏', 0, '+1 212-714-1242', 3, '356383746429502771', '97 Bank Street Suite 7, New York, NY 10014, United States', '1988-05-01', 0, 0, 'jiehoy', '2000-04-15', 'yanjiehong', '2007-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS683111489533', '村上瑛太', 1, '+81 70-4296-7064', 1, '453755813792309910', '日本札幌豊平区豊平三条十三丁目3番4号29号室', '1997-09-27', 0, 0, 'muraeit', '2013-03-13', 'murakami324', '2014-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS007523666520', '毛宇宁', 1, '+86 21-7274-3519', 4, '397132467801158850', '中国上海市闵行区宾川路963号35号楼', '1994-04-14', 0, 0, 'maoyuning', '2018-01-18', 'yuning5', '2019-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS168267982624', '菅原優奈', 0, '+81 80-8244-0392', 3, '008554722590864292', 'Rm. 15, 19 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-06-13', 0, 0, 'yunasug', '2002-03-28', 'yuna8', '2003-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS332688114121', '池田光莉', 1, '+44 5846 076620', 1, '651358423134469899', 'Flat 39, 693 Portland St, Manchester, M1 3LA, United Kingdom', '1990-10-06', 0, 0, 'hikarii80', '2018-04-25', 'ikhikari5', '2007-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS567105837702', '宣國權', 1, '+44 (121) 694 8140', 3, '123203640732525575', 'No.49 Main building, 108 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1995-03-10', 0, 0, 'kkhsuan', '2010-07-14', 'hsuankk', '2008-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS195883477556', '董秀英', 1, '+81 11-773-7690', 0, '365088972759406932', '4-kai, 5-4-11 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1996-10-31', 0, 0, 'dong115', '2021-01-29', 'dongx2', '2010-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS450247887090', 'Aaron Owens', 0, '+86 28-2210-9199', 1, '767585037030645143', 'No.13 building, No.957, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1991-09-28', 0, 0, 'aaronowens9', '2014-03-14', 'oaaron', '2016-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS973392161871', 'Jesse Dunn', 1, '+86 21-0324-4812', 2, '120007082522739038', '中国上海市浦东新区橄榄路529号42楼', '1990-07-16', 0, 0, 'djesse', '2006-11-14', 'jesse522', '2000-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS226994342550', 'Carol Wells', 0, '+1 614-940-7799', 3, '980438779361091071', '555 East Alley Suite 22, Columbus, GA 43201, United States', '1987-05-02', 0, 0, 'wecarol', '2009-09-19', 'wcarol', '2004-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS446105775779', '周安琪', 0, '+81 70-1119-8857', 1, '342424194666275741', '日本ならし学園南三丁目9番10号48階', '1996-07-13', 0, 0, 'anqi825', '2020-07-10', 'zan821', '2004-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS941529419997', '吉田絢斗', 1, '+44 5034 179835', 3, '885007591867011562', 'Unit 13, Oxford Eco Centre, 10 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1991-12-23', 0, 0, 'yoshidaayato', '2012-12-14', 'ayato3', '2006-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS849382034995', '佐野詩乃', 1, '+86 156-9087-3817', 1, '229586330123168743', '中国东莞坑美十五巷599号7室', '1994-04-08', 0, 0, 'shino9', '2011-10-13', 'shino814', '2004-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS953053228715', '顾詩涵', 1, '+81 74-543-0595', 2, '837816492476927070', 'Rm. 5, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1988-08-04', 0, 0, 'shg', '2013-10-19', 'gus', '2013-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS698177990011', 'Carrie Johnson', 1, '+81 52-199-2462', 1, '228875436678755581', '42F, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-04-11', 0, 0, 'carrijohnson8', '2020-02-21', 'jcarr', '2017-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS129189448281', '中島紗良', 0, '+86 10-9259-6780', 0, '580386037219971268', '中国北京市房山区岳琉路54号华润大厦7室', '1997-02-19', 0, 0, 'nakajimas7', '2001-06-28', 'sarnak', '2006-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS775942137317', '陶安娜', 0, '+81 74-635-6766', 0, '411922538028547377', '日本ならし西大寺赤田町一丁目7番9号41階', '1996-04-19', 0, 0, 'taoon8', '2020-08-26', 'onnata', '2015-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS393414382307', '山田美羽', 1, '+44 (116) 257 0357', 1, '271845929327204080', 'Block 28, 34 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1993-10-18', 0, 0, 'miuy', '2001-10-15', 'miuyamada', '2002-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS557772020970', 'Thelma Warren', 1, '+81 11-888-7836', 2, '239129258492206620', '日本札幌厚別区上野幌一条二丁目1番9号2号室', '1989-01-01', 0, 0, 'warren1006', '2001-10-15', 'thelma47', '2018-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS456521443894', '田中湊', 1, '+86 133-9767-4766', 2, '896201993061631538', 'Room 50, 43 Xiaoping E Rd, Baiyun , Guangzhou, China', '1999-01-26', 0, 0, 'tm2', '2012-04-10', 'minato615', '2012-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS453965966673', '陈詩涵', 0, '+1 212-421-3800', 1, '497731362129478435', '701 West Houston Street Suite 35, New York, NY 10014, United States', '1986-04-02', 0, 0, 'chenshihan114', '2018-02-08', 'shihan723', '2014-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS920791191306', '陈安琪', 0, '+1 330-068-4454', 1, '430261632189953054', '788 Fern Street Apt 15, Akron, OH 44307, United States', '1997-11-14', 0, 0, 'chenanqi', '2008-11-16', 'achen', '2010-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS942441119520', '萬頴思', 0, '+81 11-205-2499', 1, '736490367817054205', '日本札幌清田区真栄四条五丁目19番2号3号室', '1991-06-23', 0, 0, 'mengws', '2008-07-06', 'mengws', '2012-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS610257812234', 'Josephine Rodriguez', 1, '+86 172-7230-4838', 1, '711814481332576573', '中国成都市锦江区红星路三段967号19号楼', '1992-09-25', 0, 0, 'rodriguezjosep', '2018-04-05', 'josephinerod', '2017-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS029728863990', 'Lois Young', 0, '+81 66-200-6270', 3, '981214157862595246', 'Rm. 47, 1-1-10 Deshiro, Nishinari Ward, Osaka, Japan', '1987-09-03', 0, 0, 'loisyoun', '2001-05-18', 'lois4', '2018-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS229348259952', '中野明菜', 0, '+81 90-8335-1572', 4, '439084919006180495', 'Rm. 10, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1988-12-19', 0, 0, 'akinaka', '2019-08-12', 'akina10', '2005-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS052343438124', 'Thelma Butler', 1, '+86 178-6414-3533', 3, '646300929767992277', 'Room 32, 843 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1996-08-11', 0, 0, 'thelmabutler', '2014-11-30', 'bthelma', '2006-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS208099757652', 'Teresa White', 1, '+86 156-4491-3570', 2, '943568205651165033', 'No.41 building, 378 Jiangnan West Road, Haizhu District, Guangzhou, China', '1990-03-05', 0, 0, 'white5', '2019-08-14', 'white85', '2021-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS516857267731', '范嘉伦', 1, '+86 20-706-1382', 1, '074001817191329062', 'Room 15, CR Building, 24 Tianhe Road, Tianhe District, Guangzhou, China', '1988-12-28', 0, 0, 'fan1', '2001-04-17', 'fjia', '2009-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS605864420609', '周家輝', 0, '+81 70-5705-7381', 1, '920242584525846751', '日本おおさかし東住吉区東田辺三丁目27番1号27号室', '1991-03-22', 0, 0, 'chow1962', '2000-02-12', 'kafaicho', '2005-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS808058046095', '郑岚', 0, '+86 10-656-6268', 4, '222118642344389986', '中国北京市朝阳区三里屯路139号31楼', '1988-03-28', 0, 0, 'lanzhen88', '2020-09-11', 'lan5', '2001-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS191151237120', 'Cindy Collins', 0, '+81 66-662-1255', 3, '823628647200010265', '日本おおさかし西成区出城一丁目1番7号27階', '1986-01-10', 0, 0, 'collinscin5', '2008-11-28', 'cindycol', '2022-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS641212948458', '邵杰宏', 0, '+44 (1223) 58 7633', 3, '749661390897406663', 'Unit 45, Oxford Eco Centre, 721 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1996-01-05', 0, 0, 'shao9', '2006-03-28', 'shjieho69', '2009-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS652992329507', '卢云熙', 1, '+86 195-2677-2565', 4, '979132650962437284', 'No.6 building, 3 Sanlitun Road, Chaoyang District, Beijing, China', '1991-12-08', 0, 0, 'yl06', '2022-02-14', 'yunxi07', '2016-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS757182500398', 'Luis Carter', 0, '+81 11-979-7469', 1, '423834120778693539', '39F, 2-1-14 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-03-14', 0, 0, 'carter324', '2001-09-01', 'carterluis81', '2015-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS970349060258', '後藤葵', 0, '+86 143-1013-7727', 2, '189736131740638645', '中国成都市锦江区人民南路四段499号23号楼', '1985-02-20', 0, 0, 'gotaoi85', '2007-08-10', 'aoigoto', '2002-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS835912870863', 'Annie Coleman', 1, '+86 169-0803-2964', 1, '410991034798567280', '中国东莞环区南街二巷457号32室', '1989-01-17', 0, 0, 'ca11', '2004-10-09', 'coleman1982', '2003-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS204927351055', '向明詩', 1, '+44 (161) 559 8999', 0, '866429054116310169', 'No.46 Main building, 211 Portland St, Manchester, M1 3LA, United Kingdom', '1988-01-18', 0, 0, 'mingszeheung', '2001-03-27', 'mingsze84', '2003-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS208286293160', 'Doris Olson', 1, '+86 769-248-2694', 1, '450062527450397363', '中国东莞环区南街二巷196号17室', '1998-01-13', 0, 0, 'olsondor', '2015-07-17', 'olsodor', '2021-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS347272490130', '孙致远', 1, '+44 (161) 343 9084', 1, '961090138806868802', 'Unit 15, Oxford Eco Centre, 370 Sackville St, Manchester, M1 3BB, United Kingdom', '1996-04-18', 0, 0, 'sunz', '2014-12-03', 'zhiyuansun', '2021-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS718026183306', 'Ellen Ramos', 1, '+1 838-187-5944', 0, '210668069078852616', '991 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1987-09-07', 0, 0, 'ellenramos', '2013-11-08', 'ramos4', '2017-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS427933345751', '汪惠妹', 1, '+86 21-195-9668', 3, '713028922648935012', 'No.40 building, 762 Ganlan Rd, Pudong, Shanghai, China', '1988-01-28', 0, 0, 'whm11', '2001-10-11', 'wonghm', '2019-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS066310925445', 'Helen Snyder', 0, '+86 20-5300-9843', 1, '277841328451510715', '中国广州市海珠区江南西路365号15号楼', '1997-09-17', 0, 0, 'helensnyder85', '2014-02-26', 'helsnyder10', '2013-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS493007235156', '唐朝偉', 1, '+86 145-4907-9860', 1, '177382134135106172', '中国上海市徐汇区虹桥路985号华润大厦20室', '1988-05-11', 0, 0, 'tcw', '2019-11-11', 'chiuwai70', '2017-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS709781682275', '渡部大和', 0, '+81 52-320-7751', 1, '379365799230011931', 'Rm. 28, 3-19-13 Shimizu, Kita Ward, Nagoya, Japan', '1985-11-06', 0, 0, 'watanabeyam201', '2003-08-18', 'yamato02', '2019-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS664553209187', 'Frances Freeman', 1, '+86 769-8687-1910', 2, '103343218110367079', '中国东莞环区南街二巷806号3室', '1986-04-16', 0, 0, 'freeman10', '2015-03-30', 'ffran2004', '2013-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS902499893826', '戴志明', 0, '+86 21-9735-4137', 3, '317513497422296355', '中国上海市浦东新区健祥路318号37栋', '1987-05-05', 0, 0, 'cmdai63', '2021-12-31', 'dai7', '2001-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS229924139236', '呂詩君', 1, '+81 11-489-9240', 1, '400992165639235504', '日本札幌白石区菊水三条五丁目4番14号40階', '1992-03-25', 0, 0, 'sklu10', '2004-09-07', 'szekwanlu5', '2019-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS561929639875', 'Stephanie Soto', 0, '+44 7757 471967', 2, '206321999175822838', 'No.30 Main building, 970 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1989-01-05', 0, 0, 'ssoto59', '2004-06-11', 'sotostephanie', '2005-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS416594174471', '林嘉伦', 1, '+1 838-717-5508', 3, '185036349817878602', '720 Central Avenue Apt 33, Albany, NY 12206, United States', '1991-10-15', 0, 0, 'jialun06', '2005-06-17', 'lin913', '2003-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS514869619828', '杜天榮', 0, '+81 70-1776-9045', 1, '205950441188845794', 'Rm. 17, 6-1-2, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1993-05-01', 0, 0, 'tinwing9', '2016-03-05', 'totw621', '2011-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS040916294112', '戴嘉伦', 0, '+81 70-3828-6807', 1, '028530215013930531', '34F, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1989-02-21', 0, 0, 'dajial01', '2008-02-21', 'jialun2017', '2000-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS344202990061', '叶晓明', 0, '+86 145-9872-2055', 2, '860790379058043217', 'Room 27, 925 Shennan Ave, Futian District, Shenzhen, China', '1985-04-17', 0, 0, 'ye69', '2007-12-05', 'ye85', '2020-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS737679440961', '區淑怡', 1, '+81 90-1992-6728', 0, '945883537782207877', 'Rm. 11, 13-3-14 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1997-07-27', 0, 0, 'au10', '2003-04-17', 'asy1957', '2016-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS913919589770', 'Angela Adams', 0, '+81 74-811-6455', 2, '007070413205260739', '日本ならし大和郡山市本庄町一丁目1番11号49階', '1987-05-13', 0, 0, 'adamang', '2002-12-25', 'adamsangela1949', '2006-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS758682509569', '松田紗良', 0, '+86 755-9223-7102', 1, '369430751479306990', '中国深圳罗湖区田贝一路286号38室', '1990-03-03', 0, 0, 'matsus', '2017-04-26', 'matsudasa', '2021-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS181444047934', '韓惠敏', 0, '+81 11-252-4394', 0, '499140234967623468', '日本札幌豊平区豊平三条十三丁目3番3号29階', '1992-12-23', 0, 0, 'hawm', '2007-04-21', 'wmha', '2010-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS979743331098', '周睿', 0, '+1 213-849-8935', 3, '560810401363576786', '473 S Broadway Apartment 15, Los Angeles, CA 90015, United States', '1987-01-12', 0, 0, 'ruizho', '2003-01-06', 'zhourui7', '2006-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS542524804141', '孙宇宁', 0, '+44 (151) 611 3306', 1, '859734526037621083', 'No.4 Main building, 493 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1998-07-11', 0, 0, 'ysun', '2004-05-19', 'yuning416', '2020-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS226096462545', 'Rita Ellis', 1, '+81 70-9511-5784', 3, '157925542586436389', '日本札幌中央区宮の森四条六丁目1番15号36階', '1985-10-06', 0, 0, 'ritaell8', '2020-07-07', 'erit', '2006-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS017174427105', 'Ricky Payne', 0, '+81 90-2576-5803', 1, '334822061614448962', '日本ならし西大寺赤田町一丁目7番17号31階', '1988-10-16', 0, 0, 'payne8', '2011-10-27', 'ricky96', '2000-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS929483655608', 'Scott Nichols', 0, '+81 11-387-5055', 3, '826983099410640525', '日本札幌白石区菊水三条五丁目4番14号11階', '1986-12-14', 0, 0, 'nicholsscot', '2009-06-01', 'nicholsscott5', '2020-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS772154191495', '伍霆鋒', 0, '+86 755-7938-5789', 4, '878986154346275567', 'Room 10, 794 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1996-10-09', 0, 0, 'tingfung828', '2000-01-14', 'ng4', '2009-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS420307046930', 'Nathan Stewart', 0, '+81 66-981-6768', 1, '743982571261989155', 'Rm. 22, 4-9-19 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-09-15', 0, 0, 'stewart2', '2021-05-27', 'natste906', '2010-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS898901226013', '邓璐', 0, '+44 (1865) 98 8161', 0, '394069529434984052', 'Block 18, 681 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1985-04-06', 0, 0, 'ludeng2', '2006-12-09', 'lu84', '2021-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS506651879041', '山口凛', 0, '+81 74-803-8115', 4, '208104164416594915', '49-kai, 3-9-2 Gakuenminami, Nara, Japan', '1997-05-29', 0, 0, 'yamaguchir', '2006-01-18', 'riyamaguchi', '2021-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS140036786199', 'Richard Shaw', 0, '+81 90-4263-7738', 3, '128203435065035975', '日本東京品川区東五反田五丁目2番8号40号室', '1995-06-18', 0, 0, 'richashaw1102', '2003-04-10', 'shawrichard5', '2016-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS661791681079', 'Tammy Rivera', 0, '+44 5532 264479', 2, '812235429928242791', 'No.45 Main building, 979 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1995-12-16', 0, 0, 'rivera207', '2012-12-04', 'triver', '2019-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS212740875579', '藤原結翔', 1, '+86 769-918-6625', 3, '970967622318373027', '中国东莞坑美十五巷708号7楼', '1994-08-10', 0, 0, 'fyu2001', '2018-01-27', 'fujiwarayuit', '2015-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS549394616828', '藤田花', 0, '+86 760-4087-4059', 3, '109278546786946709', 'No.24 building, 11 Lefeng 6th Rd, Zhongshan, China', '1995-02-15', 0, 0, 'hanfujit', '2012-12-13', 'fuhan', '2020-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS934005743794', '吕詩涵', 0, '+44 (1223) 91 0081', 4, '496698313657780589', 'Block 45, 255 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1985-03-12', 0, 0, 'lushihan3', '2003-09-19', 'shihanlu', '2014-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS061264638107', 'Jack Mason', 1, '+86 194-3534-3567', 3, '328229183651868865', '中国上海市浦东新区橄榄路943号48室', '1996-11-23', 0, 0, 'masonjack1230', '2006-01-07', 'masja4', '2013-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS197849305329', '陳裕玲', 0, '+81 66-213-6236', 1, '993398746393344546', '日本おおさかし西成区出城一丁目1番14号42号室', '1997-08-11', 0, 0, 'yulingch5', '2017-12-03', 'chan407', '2018-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS287070932077', '橋本詩乃', 1, '+86 139-2365-2664', 2, '769952459572410542', '中国深圳罗湖区清水河一路653号49号楼', '1996-03-21', 0, 0, 'shinoh', '2009-04-29', 'hshino710', '2013-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS511838563647', '邵宇宁', 1, '+86 769-220-7457', 0, '439352859157476015', '中国东莞坑美十五巷29号27栋', '1988-01-26', 0, 0, 'ysha51', '2007-04-11', 'yshao', '2015-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS550479431713', 'Christopher Gray', 1, '+81 11-470-0953', 0, '743615864329423076', '日本札幌中央区宮の森四条六丁目1番4号42号室', '1985-03-01', 0, 0, 'graychri1102', '2008-01-24', 'gchristopher1996', '2008-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS154632457322', '苏睿', 1, '+81 90-6893-7978', 4, '160617167709946550', '日本東京中央区銀座三丁目12番5号45階', '1994-06-14', 0, 0, 'suru', '2021-03-23', 'rus04', '2001-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS811504158582', 'Judy Alexander', 1, '+1 614-764-1007', 1, '557167314728445177', '932 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1991-12-20', 0, 0, 'aju8', '2017-12-12', 'alexander00', '2009-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS375709400873', '夏晓明', 1, '+81 70-9020-5130', 3, '080035612787993148', 'Rm. 40, 10 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1996-03-28', 0, 0, 'xxiaoming311', '2005-12-16', 'xiaxiaoming', '2003-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS916312581186', 'Rose Black', 0, '+81 70-7949-4110', 4, '431199344597422691', '30-kai, 2-1-20 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1998-11-19', 0, 0, 'roseblack7', '2021-03-01', 'black8', '2000-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS836467234919', '井上葵', 0, '+44 7641 548773', 1, '475721234550604123', 'Unit 5, Oxford Eco Centre, 271 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1991-10-01', 0, 0, 'inoue308', '2020-07-28', 'iaoi', '2006-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS248098347089', 'Steven Boyd', 1, '+81 74-054-1748', 2, '761261436787844977', '日本ならし学園南三丁目9番1号25階', '1994-10-25', 0, 0, 'bst', '2020-12-01', 'stevenboyd70', '2005-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS856704262784', '金子紗良', 0, '+81 66-688-9654', 3, '159180737244153333', '日本おおさかし西成区出城一丁目1番19号13号室', '1991-12-17', 0, 0, 'kanekos7', '2014-12-24', 'sakan', '2007-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS632679975168', '翁安琪', 0, '+86 755-046-4980', 4, '883708141570972619', 'No.17 building, 465 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1989-06-16', 0, 0, 'yung2', '2001-02-21', 'yunonkay', '2014-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS821065317355', '邱惠妹', 1, '+44 (1865) 36 3688', 1, '987168452604417446', 'Block 3, 959 Park End St, Oxford, OX1 1JD, United Kingdom', '1992-12-15', 0, 0, 'yauhm', '2007-09-22', 'yauhuimei1964', '2003-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS363656068875', '加藤光莉', 1, '+1 614-090-4309', 2, '647773605423461310', '536 East Cooke Road Apartment 31, Columbus, GA 43214, United States', '1993-10-20', 0, 0, 'katohika', '2012-05-30', 'hikarkat', '2004-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS415816727432', '周思妤', 1, '+86 166-4647-0620', 3, '316897090015858102', 'No.4 building, 959 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1993-08-21', 0, 0, 'chsy78', '2009-01-28', 'sych', '2008-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS936625693869', '野村玲奈', 1, '+81 3-4808-5412', 1, '294702428816262295', '日本東京千代田区丸の内一丁目6番17号22号室', '1992-08-22', 0, 0, 'nrena3', '2009-01-26', 'nomura810', '2007-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS262245514833', 'Joe Anderson', 1, '+81 70-6407-7727', 2, '074028578163589996', '40F, 2-3-14 Yoyogi, Shibuya-ku, Tokyo, Japan', '1992-03-05', 0, 0, 'anderjoe4', '2015-07-17', 'andersonjoe13', '2001-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS062347741078', 'Roger Scott', 1, '+81 70-5896-6239', 2, '549035764755099301', '日本おおさかし西成区出城一丁目1番13号39号室', '1992-07-04', 0, 0, 'scottrog1221', '2008-04-25', 'rscott', '2017-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS863542652011', '溫家明', 1, '+86 28-415-9087', 3, '571179034866715094', '中国成都市成华区双庆路206号华润大厦46室', '1992-09-20', 0, 0, 'wanka730', '2011-04-10', 'kmwan', '2002-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS025503953707', '野村樹', 1, '+44 (121) 395 7401', 3, '129677791601200592', 'Unit 15, Oxford Eco Centre, 927 New Street, Birmingham, B2 4DB, United Kingdom', '1986-03-14', 0, 0, 'nomurait', '2001-01-19', 'inomura', '2021-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS592347206943', '严嘉伦', 1, '+81 80-8365-9571', 4, '227065083474676805', '日本東京渋谷区代々木二丁目3番7号6階', '1993-10-03', 0, 0, 'yanjia323', '2017-06-28', 'jialun1227', '2002-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS692098704972', 'Lucille Bell', 1, '+1 614-490-4790', 3, '660791360263854354', '435 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1986-10-22', 0, 0, 'belll3', '2007-05-09', 'blucil', '2021-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS910884563353', '孟安琪', 0, '+81 70-9132-1093', 2, '084007938613338709', '日本なごやし守山区瀬古東二丁目171番7号23号室', '1991-10-19', 0, 0, 'meng707', '2004-06-20', 'anqimeng204', '2003-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS211729364145', 'Beverly Snyder', 1, '+86 10-0490-6938', 4, '045197922948534644', '中国北京市西城区复兴门内大街713号24楼', '1998-12-13', 0, 0, 'snyderbev', '2021-05-10', 'beves', '2005-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS434683818100', '西村光', 0, '+44 7878 566581', 2, '850791716821882808', 'Flat 27, 435 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1987-07-22', 0, 0, 'nishimurah506', '2018-03-02', 'nishimurahikar', '2012-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS261287352148', '陈安琪', 1, '+86 130-1077-6505', 4, '936801577338671600', '中国中山天河区大信商圈大信南路619号13楼', '1990-03-31', 0, 0, 'cheanq', '2010-11-20', 'anqich', '2019-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS247707083580', 'Curtis Daniels', 0, '+81 52-970-3690', 2, '134454851208215752', '日本なごやし瑞穂区河岸町四丁目20番20号50号室', '1991-09-11', 0, 0, 'dancu', '2003-03-28', 'daniec', '2000-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS675967199245', 'Rosa Lewis', 1, '+81 80-3834-9427', 2, '588324525412125724', '18-kai, 3-15-9 Ginza, Chuo-ku, Tokyo, Japan', '1998-07-23', 0, 0, 'rosalewis', '2021-03-05', 'rolewi', '2021-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS783413820089', 'Larry Moore', 1, '+86 28-1079-4118', 1, '668375370581412148', '19F, 461 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1986-04-21', 0, 0, 'larrymoore903', '2015-05-27', 'larrymoore1979', '2010-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS491938899013', '藤井美緒', 0, '+86 755-7318-3536', 2, '213715540081335975', 'Room 48, 660 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1995-04-19', 0, 0, 'fumio127', '2006-02-14', 'miofu', '2011-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS291617478213', '餘秀文', 0, '+86 755-3404-6562', 4, '657099680685767959', '中国深圳福田区深南大道201号33室', '1986-08-16', 0, 0, 'ysm', '2022-01-20', 'yuesauman', '2016-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS339350427124', '廖志遠', 1, '+44 (161) 834 4000', 0, '012497024832981144', 'Flat 33, 551 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1992-08-05', 0, 0, 'chiyuen1002', '2020-09-13', 'cyliao2', '2010-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS117683595158', '郭子异', 0, '+81 66-278-7662', 1, '000869240213080270', '日本おおさかし西成区天神ノ森二丁目1番13号3号室', '1985-01-24', 0, 0, 'ziyiguo79', '2002-03-24', 'ziyi7', '2019-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS716214070694', '譚麗欣', 1, '+1 614-225-8606', 3, '013952678155944272', '146 East Alley Apt 50, Columbus, GA 43201, United States', '1998-03-16', 0, 0, 'tamlaiyan626', '2005-03-31', 'tamly419', '2009-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS887269870501', '徐發', 0, '+81 70-3791-5667', 1, '718455774551554493', 'Rm. 44, 6-1-20, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1990-06-03', 0, 0, 'fattsu1985', '2005-08-08', 'fatt', '2009-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS777176285572', '山崎凛', 1, '+86 28-9588-4143', 2, '966898534333556767', '中国成都市锦江区红星路三段352号50室', '1990-10-02', 0, 0, 'rinyam', '2021-05-17', 'yamazakiri', '2001-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS740934510290', 'Janice Brooks', 0, '+1 718-357-8758', 3, '712680767051767244', '245 Flatbush Ave Apt 12, Brooklyn, NY 11225, United States', '1994-09-13', 0, 0, 'brooks425', '2010-09-22', 'janbrooks69', '2001-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS475012427189', '魏云熙', 0, '+86 28-716-2074', 4, '248277880825338957', 'No.38 building, No. 618, Shuangqing Rd, Chenghua District, Chengdu, China', '1992-10-04', 0, 0, 'wei428', '2010-04-12', 'weiyunxi', '2012-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS881081171125', '龚秀英', 0, '+81 74-303-8762', 1, '583256729899468750', '9F, 1-7-4 Saidaiji Akodacho, Nara, Japan', '1993-04-09', 0, 0, 'gxiu605', '2016-04-28', 'gongxiuying220', '2015-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS831830172898', 'Dawn Reyes', 0, '+81 66-036-0260', 3, '945828854887987068', '日本おおさかし平野区加美東四丁目9番8号23階', '1997-08-05', 0, 0, 'dareyes', '2020-01-12', 'reyes83', '2016-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS224698506323', '馬永權', 0, '+81 11-829-5412', 2, '385076956070097441', '日本札幌白石区菊水三条五丁目4番5号9階', '1992-04-13', 0, 0, 'wingkuen1', '2006-10-25', 'wkma', '2011-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS774067750991', '吉田玲奈', 1, '+81 3-4306-9221', 1, '198542157088034823', 'Rm. 46, 1-6-8, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1990-11-07', 0, 0, 'rena8', '2009-11-30', 'yrena', '2002-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS298972886829', 'Albert Rogers', 0, '+86 183-1970-9199', 2, '616457609814245881', '中国成都市锦江区人民南路四段859号6栋', '1994-09-27', 0, 0, 'rogersal', '2006-06-03', 'albertr2', '2002-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS443890243175', '吉田百恵', 0, '+1 838-033-5715', 2, '730662275666956802', '288 Broadway Apt 19, Albany, NY 12207, United States', '1985-07-07', 0, 0, 'ymomoe', '2015-04-11', 'yoshidamomoe5', '2000-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS473756879358', '丁子异', 1, '+81 70-6925-2034', 4, '960189103378473924', 'Rm. 10, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-10-26', 0, 0, 'ding605', '2003-12-28', 'dingziy7', '2009-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS669362171468', '樊惠敏', 0, '+86 10-770-4893', 3, '814455887691321096', '中国北京市東城区東直門內大街603号31楼', '1995-06-12', 0, 0, 'wmfan', '2014-12-14', 'fanwm', '2008-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS924202572781', 'Janice Evans', 0, '+1 330-051-7439', 1, '734248609121668453', '767 West Market Street Apartment 2, Akron, OH 44333, United States', '1994-06-24', 0, 0, 'evansjanice1', '2012-11-11', 'janiceeva', '2006-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS040334959948', '佘淑怡', 0, '+81 3-8972-5462', 0, '431179125882155376', '日本東京中央区銀座三丁目12番11号31階', '1986-08-03', 0, 0, 'sukyee8', '2007-05-18', 'shehsuk1018', '2011-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS434269308568', '曹睿', 0, '+86 166-9853-3959', 1, '527491526136582242', 'Room 15, 984 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1990-02-14', 0, 0, 'ruicao', '2020-03-06', 'rcao5', '2018-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS756978703623', '胡國明', 0, '+86 148-4149-6152', 1, '012644782150474467', '中国广州市天河区天河路615号24楼', '1988-02-26', 0, 0, 'kmw', '2015-01-22', 'wu86', '2018-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS922040711923', 'Esther Adams', 1, '+81 66-261-2063', 3, '866181173404087450', '日本おおさかし西成区天神ノ森二丁目1番11号16階', '1988-12-23', 0, 0, 'esthera', '2020-04-13', 'adamsesther', '2005-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS230049419949', 'Frances Olson', 1, '+81 80-8677-9602', 3, '133015771651190064', '日本おおさかし西成区出城一丁目1番5号26階', '1995-11-05', 0, 0, 'folson', '2011-01-11', 'olsf44', '2021-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS656265673369', '林淑怡', 1, '+86 184-4232-3656', 1, '107335727648282960', '中国上海市徐汇区虹桥路694号3楼', '1994-12-01', 0, 0, 'lsy425', '2000-01-10', 'lasy', '2008-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS734801502518', '严云熙', 1, '+81 80-6813-2428', 2, '575909829165241215', '日本東京千代田区丸の内一丁目6番12号26階', '1992-05-28', 0, 0, 'yunxiyan8', '2018-09-13', 'yanyunxi', '2008-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS693998906283', '曹嘉伦', 1, '+86 148-8781-7157', 1, '547654248000398186', '中国中山天河区大信商圈大信南路355号6栋', '1995-11-30', 0, 0, 'jialc', '2011-07-13', 'jca', '2001-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS151369789840', '金震南', 0, '+81 70-0886-8086', 4, '652383819563056634', '8F, 16 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-09-17', 0, 0, 'jinzhennan1963', '2005-04-12', 'zhennanji69', '2021-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS574292826694', '上野優奈', 0, '+44 7594 831531', 3, '056148272001406995', 'No.28 Main building, 152 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1989-04-25', 0, 0, 'uenoyuna', '2013-02-12', 'yunaueno89', '2006-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS455597233707', '餘霆鋒', 1, '+86 183-5570-0707', 1, '885391676918462663', '中国广州市越秀区中山二路380号华润大厦33室', '1992-09-26', 0, 0, 'yue9', '2020-03-30', 'yutf96', '2019-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS272573062839', '叶子韬', 1, '+81 11-195-3588', 2, '390143412853108735', '日本札幌白石区菊水三条五丁目2番4号13号室', '1989-02-20', 0, 0, 'ziye918', '2007-08-14', 'zye', '2016-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS844906545444', '邵仲賢', 1, '+44 7522 987167', 1, '156858275665263950', 'Block 6, 726 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-11-04', 0, 0, 'chungyin5', '2018-09-21', 'siu8', '2022-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS041046377789', '金致远', 0, '+81 3-6776-4924', 4, '574524545085501820', '日本東京港区東新橋一丁目5番13号33階', '1997-10-23', 0, 0, 'jz2', '2013-12-25', 'jz1', '2007-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS037975049212', '小島樹', 1, '+81 3-6938-9915', 2, '607325652503673848', '12F, 5-2-2 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-10-16', 0, 0, 'ikoj1', '2014-07-14', 'kojiit', '2000-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS225525574848', '邵嘉伦', 1, '+1 212-865-7208', 0, '419451703098442419', '30 Canal Street 3rd Floor, New York, NY 10013, United States', '1997-07-26', 0, 0, 'shaji1009', '2002-12-13', 'shaojialun8', '2016-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS008201047479', '原田湊', 0, '+44 (20) 8195 8311', 1, '030298925251188647', 'Flat 39, 46 Maddox Street, London, W1S 1PU, United Kingdom', '1988-11-22', 0, 0, 'minato9', '2019-09-20', 'hminato1989', '2005-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS611503650799', '謝榮發', 0, '+81 3-6046-3508', 1, '529779022420790220', 'Rm. 37, 1-6-12, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1990-08-14', 0, 0, 'tse4', '2015-07-21', 'tsewf809', '2014-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS361323385859', '尹麗欣', 0, '+81 11-142-9202', 1, '331125889315052419', '43F, 5-4-20 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-09-22', 0, 0, 'yinly919', '2016-10-20', 'lay', '2000-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS222291965206', 'April Schmidt', 1, '+81 74-756-5786', 3, '857988497045420726', '日本ならし西大寺赤田町一丁目7番11号47号室', '1989-11-29', 0, 0, 'asch', '2016-09-01', 'aprischmidt', '2011-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS188645829313', '市川葉月', 0, '+86 131-9711-6992', 3, '415421296349698594', 'Room 9, 550 Jingtian East 1st St, Futian District, Shenzhen, China', '1991-12-16', 0, 0, 'ih623', '2012-11-29', 'hazukichikawa', '2013-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS790083696657', '藤井陽菜', 0, '+44 5206 362264', 1, '221964528423750966', 'Block 31, 231 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1993-01-22', 0, 0, 'fuh826', '2003-04-27', 'hinfujii', '2003-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS918549914948', '前田桜', 0, '+86 21-7134-2658', 2, '531976817776433790', '中国上海市浦东新区橄榄路938号36号楼', '1985-04-25', 0, 0, 'maedasakura', '2010-11-30', 'sakuram', '2009-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS086398411165', '田杰宏', 0, '+1 213-555-9134', 3, '794231775346720465', '681 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1986-10-01', 0, 0, 'tiajiehong', '2004-03-29', 'jieht', '2008-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS720978525607', 'Catherine Foster', 1, '+1 718-328-6968', 1, '444538497241575656', '135 Nostrand Ave Apartment 24, Brooklyn, NY 11216, United States', '1992-11-06', 0, 0, 'focath', '2012-04-04', 'foster9', '2000-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS974836681257', '文永發', 1, '+81 74-398-5779', 1, '394371674941345434', '日本ならし大和郡山市本庄町一丁目1番16号7階', '1987-07-07', 0, 0, 'manwf', '2012-02-13', 'manwf', '2009-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS957461325908', '湯榮發', 0, '+81 70-9366-5254', 0, '417098740426014397', '日本なごやし北区楠味鋺三丁目80番13号22階', '1995-12-24', 0, 0, 'wingtong', '2019-02-22', 'wingfattong', '2003-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS497023453176', '段云熙', 0, '+44 5829 790636', 4, '700798721369804763', 'Unit 40, Oxford Eco Centre, 627 Mosley St, Manchester, M2 3AQ, United Kingdom', '1989-06-07', 0, 0, 'yd1940', '2011-03-09', 'yduan', '2011-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS208472614918', '黎子韬', 0, '+81 80-4171-2340', 3, '281336531315507845', '日本札幌清田区真栄四条五丁目19番2号41号室', '1985-10-21', 0, 0, 'zitao7', '2019-06-20', 'zitaoli2002', '2008-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS170454516319', '袁嘉伦', 1, '+44 5367 638859', 3, '915364968908552943', 'Flat 12, 876 Redfern St, Liverpool, L20 8JB, United Kingdom', '1989-09-12', 0, 0, 'jialunyu4', '2021-04-12', 'jialunyuan', '2002-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS707582982954', 'Brenda Owens', 1, '+86 140-4156-8206', 0, '697282080459356002', '中国东莞坑美十五巷62号20室', '1985-06-15', 0, 0, 'owensb', '2011-09-26', 'brendaowens41', '2013-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS456492150968', '工藤葉月', 1, '+44 7741 805144', 3, '483885657580371036', 'Flat 9, 740 Sackville St, Manchester, M1 3BB, United Kingdom', '1985-12-26', 0, 0, 'kudohazuk121', '2010-12-09', 'kudohazuk', '2019-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS129806908887', 'Elaine Martin', 1, '+81 74-800-8130', 2, '324604584571448798', '日本ならし学園南三丁目9番18号11階', '1989-03-05', 0, 0, 'martinelai', '2013-07-21', 'marel107', '2007-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS895968194590', '郭秀英', 1, '+86 755-4298-5809', 2, '293355057152447996', '中国深圳罗湖区蔡屋围深南东路39号15栋', '1985-04-04', 0, 0, 'guoxiuying', '2018-08-06', 'xiuyingg4', '2015-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS571652057418', '翁浩然', 1, '+81 70-1064-9888', 2, '946617295138705487', '日本東京品川区東五反田五丁目2番9号22階', '1992-05-19', 0, 0, 'hoyin6', '2011-05-26', 'yung1118', '2020-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS693129434114', '古裕玲', 1, '+81 3-9486-8345', 1, '921539600485762212', '日本東京港区東新橋一丁目5番19号14階', '1997-07-07', 0, 0, 'yuling2', '2004-02-10', 'yulingku', '2021-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS315047786999', '陳天樂', 0, '+81 66-763-8997', 1, '096429708199384601', 'Rm. 29, 1-7-19 Omido, Higashiosaka, Osaka, Japan', '1991-01-10', 0, 0, 'tinlokchan326', '2007-03-31', 'chtl', '2020-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS192577247639', 'Margaret Morgan', 0, '+1 213-744-0110', 2, '758829736101539129', '771 S Broadway Apartment 44, Los Angeles, CA 90015, United States', '1986-02-18', 0, 0, 'morganmargaret', '2000-03-09', 'marm9', '2000-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS951014571265', '姜詩涵', 1, '+81 66-213-3269', 3, '591418856722338584', '20-kai, 3-27-10 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-01-24', 0, 0, 'shihanjia', '2017-12-24', 'shihanj', '2018-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS445335042713', 'Kelly Hill', 0, '+1 213-976-1417', 2, '627949776070027338', '522 Alameda Street Apartment 34, Los Angeles, CA 90002, United States', '1992-07-25', 0, 0, 'kelly228', '2014-10-26', 'kellyhi', '2018-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS960521988743', '邱德華', 1, '+86 142-3978-3028', 4, '192815035473408758', '中国成都市成华区二仙桥东三路357号28栋', '1987-09-18', 0, 0, 'yautw2', '2018-11-10', 'ytw1116', '2020-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS532866600073', '高子异', 1, '+1 718-039-4916', 0, '089987291296475066', '764 Bergen St Apt 4, Brooklyn, NY 11217, United States', '1996-04-19', 0, 0, 'zig7', '2012-07-09', 'zg422', '2011-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS898706099729', '菊地翼', 0, '+44 7193 782057', 3, '829581094367893819', 'Unit 44, Oxford Eco Centre, 596 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1989-02-04', 0, 0, 'tsubakikuchi10', '2000-05-12', 'kitsubasa9', '2020-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS235062856170', '山下光莉', 1, '+81 66-389-4224', 3, '596508623313837215', 'Rm. 50, 4-9-17 Kamihigashi, Hirano Ward, Osaka, Japan', '1987-06-21', 0, 0, 'yhikari8', '2007-06-29', 'hyamashita1', '2020-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS985233200502', 'Anthony Gutierrez', 1, '+86 192-1312-5216', 2, '364062987133707357', '中国上海市黄浦区淮海中路815号华润大厦15室', '1992-01-18', 0, 0, 'gutierreza214', '2012-07-11', 'gutierrezant601', '2015-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS547941586590', '邹致远', 0, '+86 769-080-0655', 1, '245602822437222860', '中国东莞坑美十五巷308号14室', '1992-04-07', 0, 0, 'zhiyuanzou208', '2007-09-05', 'zhiyuanzo47', '2019-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS257865368026', 'Timothy Turner', 1, '+86 21-7114-1946', 4, '137473031451333510', '中国上海市徐汇区虹桥路924号50楼', '1996-11-10', 0, 0, 'ttim', '2005-04-15', 'turner129', '2002-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS572350057838', 'Lillian Rogers', 1, '+86 164-8638-8464', 2, '859271340061524715', '中国成都市锦江区红星路三段823号华润大厦34室', '1985-12-02', 0, 0, 'roglill', '2012-03-23', 'rogli', '2015-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS155883323004', '丁詩涵', 0, '+81 90-6049-6603', 3, '056354717496233285', '24F, 19 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-12-06', 0, 0, 'shiding', '2015-05-13', 'shihadin', '2008-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS736466997118', '杉山一輝', 0, '+86 755-512-0902', 3, '990025741811945692', 'No.28 building, 296 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1989-09-17', 0, 0, 'sugiyama10', '2016-10-03', 'iksugiyama', '2005-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS041801122698', '田中陽太', 1, '+86 176-0901-0439', 2, '496424786957012607', '2F, 28 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1990-07-25', 0, 0, 'tay', '2000-05-09', 'tanakayota', '2000-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS257490970567', '萬家輝', 0, '+86 164-9993-3872', 0, '552819358196337382', 'Room 40, CR Building, 478 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1987-02-19', 0, 0, 'kafaimeng', '2010-05-18', 'kfmeng410', '2002-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS530751448372', '中川湊', 0, '+81 74-103-8983', 2, '543595014002952030', 'Rm. 12, 15 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1993-05-04', 0, 0, 'nakagminato130', '2014-07-30', 'nakagawa3', '2005-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS702868027779', 'Kelly Gardner', 0, '+81 52-178-4825', 3, '970652413890782897', '日本なごやし北区清水三丁目19番17号22階', '1987-11-20', 0, 0, 'kelly2', '2004-06-15', 'gardnke', '2010-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS709780720943', '傅晓明', 1, '+81 74-969-9637', 1, '448763064363605798', '日本ならし西大寺赤田町一丁目7番5号47階', '1986-04-06', 0, 0, 'xf74', '2006-12-06', 'xfu', '2015-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS926135912270', 'John Baker', 0, '+86 20-2106-3471', 1, '748041845667375630', 'Room 43, CR Building, 437 Jiangnan West Road, Haizhu District, Guangzhou, China', '1988-08-15', 0, 0, 'bakerjo', '2018-11-28', 'bakejohn', '2019-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS761820045222', '戴惠妹', 0, '+86 134-1590-3223', 3, '620234337193415671', 'No.14 building, 69 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1987-01-08', 0, 0, 'hmdai', '2007-01-01', 'dai1214', '2016-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS651951901903', '前田美緒', 1, '+1 718-600-4336', 2, '548645276670273949', '976 1st Ave Apartment 16, Brooklyn, NY 11220, United States', '1988-12-18', 0, 0, 'maedmi1', '2007-08-09', 'maeda2', '2016-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS318495050220', '藤梓軒', 1, '+86 155-2723-3351', 3, '355713340210258600', 'No.41 building, 653 FuXingMenNei Street, XiCheng District, Beijing, China', '1987-07-16', 0, 0, 'tszhin1991', '2019-08-18', 'tszhint2003', '2012-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS647492806596', '戚朝偉', 0, '+86 135-3574-2119', 2, '920482774158234726', '中国成都市锦江区人民南路四段950号22室', '1995-05-17', 0, 0, 'cchiuwai', '2010-12-25', 'chiuwai10', '2010-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS194100634473', '小山優奈', 1, '+81 3-9277-3273', 3, '403760272039911544', '日本東京渋谷区代々木二丁目3番8号41階', '1986-02-20', 0, 0, 'yunkoyama6', '2007-07-04', 'yunakoyama', '2003-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS154704031116', '坂本明菜', 1, '+44 (121) 588 2575', 3, '166909017978080234', 'Unit 46, Oxford Eco Centre, 446 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1998-01-26', 0, 0, 'sakamoto08', '2016-03-15', 'sakamoto114', '2014-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS600671317926', '黄宇宁', 1, '+81 80-7140-4696', 1, '684413968718334246', '16F, 2-5-1 Chitose, Atsuta Ward, Nagoya, Japan', '1994-04-07', 0, 0, 'huangy40', '2010-02-26', 'yuningh', '2009-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS657412935053', 'Thelma Perry', 1, '+44 (116) 287 0484', 0, '866860599984091897', 'No.9 Main building, 91 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1989-09-29', 0, 0, 'thelmaperr', '2008-06-26', 'thelmaperr', '2006-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS529648755419', 'Bonnie Washington', 0, '+1 312-930-5397', 0, '233347477892692077', '735 Pedway 3rd Floor, Chicago, IL 60601, United States', '1988-12-06', 0, 0, 'bonnie50', '2004-02-03', 'washingtonbonnie', '2014-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS081180792554', '小野湊', 1, '+81 80-8330-6946', 0, '560241481500215651', '49-kai, 3-9-3 Gakuenminami, Nara, Japan', '1995-04-11', 0, 0, 'onomi', '2018-11-15', 'onminato3', '2010-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS477759841507', '江梓晴', 0, '+44 5202 231391', 2, '610602782838359487', 'No.13 Main building, 80 Mosley St, Manchester, M2 3AQ, United Kingdom', '1985-05-16', 0, 0, 'kongtszching9', '2003-01-28', 'tszchingko', '2013-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS314361856684', '竹内結翔', 0, '+1 212-123-7937', 3, '067125721537837225', '230 Wooster Street Suite 19, New York, NY 10012, United States', '1996-06-25', 0, 0, 'takeuchi709', '2016-11-25', 'yuitota', '2005-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS896819537453', 'Brian Sanchez', 1, '+81 70-8474-8977', 4, '857335624244843391', '日本札幌清田区真栄四条五丁目19番9号39号室', '1992-02-09', 0, 0, 'sanchez2', '2004-11-04', 'brian4', '2016-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS604606466382', '小林樹', 1, '+44 (151) 904 4490', 4, '449740640027846779', 'No.14 Main building, 888 Redfern St, Liverpool, L20 8JB, United Kingdom', '1993-11-19', 0, 0, 'itsuki1952', '2012-04-01', 'kitsuki', '2014-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS198925569517', '阮裕玲', 1, '+86 21-295-0221', 4, '888226936060092838', '中国上海市黄浦区淮海中路227号华润大厦42室', '1995-01-19', 0, 0, 'yulingyuen', '2019-11-09', 'yueyuling4', '2016-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS483534235921', 'Samuel Boyd', 0, '+81 70-8473-3887', 0, '389703321375178688', '日本札幌厚別区上野幌一条二丁目1番13号37号室', '1994-01-08', 0, 0, 'sboy', '2003-02-06', 'samueb', '2019-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS911228365671', '孟詩涵', 0, '+86 141-2376-9647', 2, '740090200017482753', '中国广州市白云区机场路棠苑街五巷286号6楼', '1998-08-30', 0, 0, 'sm5', '2016-05-13', 'meng92', '2000-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS103448641440', '梅榮發', 1, '+86 190-8577-4172', 2, '087185832012468635', 'No.9 building, 661 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1988-05-10', 0, 0, 'muiwf', '2010-11-10', 'muwf', '2000-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS115789434446', '邵安琪', 0, '+44 (116) 466 3946', 1, '211314397335045758', 'Unit 34, Oxford Eco Centre, 547 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1991-12-14', 0, 0, 'ans', '2011-04-07', 'shao12', '2000-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS195162418608', '谢璐', 0, '+86 155-1377-5725', 2, '236868344023902652', '中国中山天河区大信商圈大信南路228号24号楼', '1988-12-22', 0, 0, 'xiel911', '2008-05-26', 'xielu', '2014-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS273716055464', '木下涼太', 0, '+81 74-978-6853', 0, '676347180711527484', '8-kai, 3-9-12 Gakuenminami, Nara, Japan', '1989-09-23', 0, 0, 'kryota', '2016-08-22', 'kiryota4', '2016-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS255533212358', '應浩然', 1, '+86 28-2037-2225', 1, '615367009716137803', '中国成都市成华区玉双路6号575号23栋', '1994-04-17', 0, 0, 'yinhoyi', '2009-10-12', 'hyying', '2007-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS729066467426', 'Philip Diaz', 0, '+81 66-493-2654', 2, '824392078596248230', 'Rm. 26, 2-1-18 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1994-11-13', 0, 0, 'philip6', '2014-02-12', 'diazphili', '2017-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS314024692800', '工藤美月', 0, '+44 5134 936445', 0, '496344071158361690', 'Block 12, 534 Portland St, Manchester, M1 3LA, United Kingdom', '1989-03-02', 0, 0, 'kudmi', '2016-03-08', 'mitsukikudo2', '2003-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS351912268441', 'Kathleen Morales', 0, '+86 10-835-3210', 4, '437075858419851564', '中国北京市西城区西長安街134号48室', '1998-03-21', 0, 0, 'kathlmo', '2001-02-02', 'morales406', '2003-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS310880294265', '潘嘉伦', 0, '+86 10-3106-4806', 0, '859175317314769598', '中国北京市東城区東直門內大街675号41楼', '1995-02-14', 0, 0, 'jiapa', '2002-04-21', 'jialunpan2008', '2012-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS744599152177', '韩云熙', 0, '+81 11-091-6391', 3, '355042707876787932', '日本札幌清田区真栄四条五丁目19番2号47階', '1987-07-29', 0, 0, 'yunxi8', '2010-05-30', 'yunxihan2', '2019-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS490084614356', 'Curtis Owens', 0, '+44 7738 954884', 2, '518723595627143957', 'Unit 5, Oxford Eco Centre, 194 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1992-09-02', 0, 0, 'curtisow1213', '2001-01-21', 'curtisowens', '2018-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS384855293463', 'Amanda Salazar', 0, '+1 614-720-0824', 2, '742385495417443730', '947 East Alley Apartment 12, Columbus, GA 43201, United States', '1997-02-02', 0, 0, 'samanda329', '2003-04-23', 'salazaramanda', '2000-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS023969645284', 'Todd Watson', 1, '+44 7293 310712', 1, '270471464341671095', 'No.39 Main building, 362 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1995-09-16', 0, 0, 'watson5', '2012-12-07', 'towatson', '2011-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS383490353480', 'Lillian Woods', 0, '+81 52-905-7801', 4, '673791037377992478', '日本なごやし北区楠味鋺三丁目80番17号2号室', '1990-11-29', 0, 0, 'lwoo', '2014-11-08', 'wli', '2007-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS490465326690', '薛世榮', 1, '+86 755-3204-5584', 4, '844444468226693723', 'No.30 building, 409 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1989-11-07', 0, 0, 'swsit', '2016-05-26', 'saiwingsit3', '2002-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS031175400836', '譚杰倫', 0, '+81 74-565-0594', 4, '800548696928644938', '50F, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1992-08-27', 0, 0, 'tam41', '2007-12-10', 'tamchiehlun6', '2018-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS930752807701', '雷潤發', 0, '+1 213-398-2076', 1, '092974257527237995', '284 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1994-07-01', 0, 0, 'yfloui7', '2021-04-25', 'yfloui98', '2015-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS233797705297', '沈宇宁', 1, '+81 11-328-3343', 1, '049865931575568222', '日本札幌厚別区上野幌一条二丁目1番8号36階', '1990-08-25', 0, 0, 'shenyuning', '2007-07-03', 'yuninshen', '2001-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS496933087397', '陶玲玲', 0, '+81 66-079-4503', 1, '471517347104428833', '26-kai, 1-7-20 Omido, Higashiosaka, Osaka, Japan', '1997-11-06', 0, 0, 'talingling', '2009-07-19', 'linglingtao9', '2020-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS813033688882', '江杰宏', 0, '+86 185-8151-1610', 0, '979285600583782757', '中国深圳罗湖区蔡屋围深南东路447号20栋', '1989-07-24', 0, 0, 'jiehong8', '2015-09-24', 'jiangjiehong', '2007-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS142820934003', '韓富城', 1, '+44 7762 651107', 2, '468242041264387442', 'Flat 35, 589 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1992-03-19', 0, 0, 'fushingha708', '2006-08-29', 'fush76', '2004-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS625118160927', '韩杰宏', 0, '+81 66-137-7586', 4, '930453782896313005', 'Rm. 6, 3-27-3 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1988-05-11', 0, 0, 'jiehhan731', '2012-07-20', 'hanjiehong617', '2018-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS273400800412', '萧致远', 0, '+1 312-247-2910', 2, '041996334696785527', '818 Pedway 3rd Floor, Chicago, IL 60601, United States', '1985-03-04', 0, 0, 'xiaozhiyuan630', '2003-03-04', 'zhiyuan67', '2011-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS930003918766', '周致远', 0, '+81 90-5941-1325', 3, '911264175064978140', 'Rm. 1, 5-19-7 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1995-05-31', 0, 0, 'zhouzhiyuan218', '2014-08-29', 'zzhi', '2016-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS295749947795', 'Juan Perez', 1, '+44 (151) 703 8381', 1, '273248894468523311', 'Unit 41, Oxford Eco Centre, 654 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1992-03-27', 0, 0, 'perjuan', '2018-05-03', 'pj96', '2019-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS670612873040', '周璐', 1, '+81 11-408-8042', 2, '123992801848981232', '日本札幌白石区菊水三条五丁目4番16号5階', '1993-07-18', 0, 0, 'zhoulu1989', '2014-06-30', 'zhou7', '2004-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS472018471616', '向岚', 0, '+81 11-850-9105', 0, '329558417619725503', '30F, 5-4-5 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1988-01-23', 0, 0, 'xiangla1', '2019-02-08', 'lanxiang77', '2014-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS942190150116', '胡家輝', 1, '+86 21-028-0931', 0, '899266113942480576', '50F, 135 Jianxiang Rd, Pudong, Shanghai, China', '1995-07-04', 0, 0, 'wukf4', '2000-06-09', 'kfw', '2002-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS544824745305', '侯杰宏', 1, '+86 755-8844-7282', 1, '094369225716213486', 'No.11 building, 782 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1985-06-22', 0, 0, 'houjiehong8', '2005-11-01', 'jiehongho', '2008-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS225136945524', '郝詩涵', 0, '+1 212-514-3992', 3, '926940361511116007', '467 Canal Street 3rd Floor, New York, NY 10013, United States', '1986-04-08', 0, 0, 'hao78', '2004-12-18', 'sh1213', '2010-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS753435456557', 'Juanita Schmidt', 0, '+86 153-8729-3731', 1, '315830992097090544', '42F, 78 Middle Huaihai Road, Huangpu District, Shanghai, China', '1990-01-18', 0, 0, 'schmidt10', '2003-11-11', 'juanitaschmidt93', '2021-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS504398541192', '桜井樹', 0, '+1 718-667-9411', 3, '152582766940930007', '582 1st Ave Apt 3, Brooklyn, NY 11220, United States', '1985-09-10', 0, 0, 'sakuraii', '2003-04-09', 'sakuitsuk1110', '2019-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS927498977322', 'John Gordon', 1, '+81 3-5641-7714', 0, '162756777702762205', '10F, 3-15-16 Ginza, Chuo-ku, Tokyo, Japan', '1992-07-27', 0, 0, 'gordonjohn', '2012-09-22', 'john7', '2005-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS851089363106', '秦睿', 0, '+86 28-097-1841', 3, '851432154807705807', '中国成都市锦江区人民南路四段662号1室', '1992-11-17', 0, 0, 'rui93', '2013-11-10', 'qrui65', '2018-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS068861752791', '薛安琪', 0, '+86 769-282-4645', 2, '680886736592979994', '中国东莞东泰五街205号8楼', '1990-01-20', 0, 0, 'xuea', '2011-09-02', 'xuea', '2003-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS352311962318', '張國賢', 1, '+81 90-5283-7807', 1, '233083812599458218', '36-kai, 5-2-4 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-08-26', 0, 0, 'kwokyinche', '2017-12-07', 'cheunkwokyin66', '2004-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS046503240576', '福田和真', 0, '+1 330-256-0921', 2, '782036668185013679', '774 Fern Street Apartment 12, Akron, OH 44307, United States', '1989-02-05', 0, 0, 'kazumfuk1205', '2020-10-20', 'kazuma1206', '2004-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS616404903619', '中村桜', 1, '+86 198-6239-9681', 1, '550362028901764238', '中国上海市浦东新区健祥路507号46室', '1993-04-15', 0, 0, 'naksaku', '2000-10-31', 'nasa', '2017-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS700928746320', 'Jonathan Chavez', 0, '+86 195-2448-2015', 0, '816282076017701683', '中国成都市成华区二仙桥东三路339号9楼', '1990-04-07', 0, 0, 'jonathan6', '2019-07-06', 'chavezjona', '2019-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS499010109722', '戴震南', 0, '+81 70-5825-5218', 1, '398489134247557085', '日本東京渋谷区代々木二丁目3番11号45階', '1985-03-05', 0, 0, 'dazhen906', '2018-04-26', 'daizhen78', '2017-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS187446107016', '熊詩涵', 1, '+1 212-204-8742', 2, '773523342164103248', '613 Bank Street Apt 39, New York, NY 10014, United States', '1990-05-21', 0, 0, 'sxion', '2014-01-02', 'shix1995', '2001-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS084256885095', '谭杰宏', 0, '+44 5694 298357', 3, '626359549544868237', 'Block 6, 864 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1996-10-14', 0, 0, 'jiehongt', '2015-08-14', 'jiehongta47', '2019-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS381334141786', '譚詩君', 1, '+86 136-5329-8360', 1, '554913971264014233', '中国广州市海珠区江南西路897号1号楼', '1994-03-21', 0, 0, 'szekta', '2013-06-04', 'szekwantam', '2012-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS909360931582', 'Ryan Davis', 1, '+81 74-476-8889', 3, '511673637131233523', 'Rm. 44, 3-9-11 Gakuenminami, Nara, Japan', '1999-01-11', 0, 0, 'davisryan125', '2017-03-29', 'davis1972', '2011-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS900113825276', '田志明', 0, '+44 (1865) 37 6336', 1, '659227108077371962', 'Flat 1, 356 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1989-04-06', 0, 0, 'tchiming', '2020-03-03', 'cmtin07', '2006-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS628018623332', 'Julie Long', 1, '+86 769-0058-9127', 1, '953728389681397649', '中国东莞东泰五街38号华润大厦7室', '1989-11-28', 0, 0, 'julilon', '2009-12-02', 'longj', '2003-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS975594334837', '毛朝偉', 0, '+86 149-1247-1479', 3, '971620621990154544', 'No.41 building, 99 Shennan Ave, Futian District, Shenzhen, China', '1997-09-17', 0, 0, 'mocw', '2002-01-14', 'chiuwaimo', '2008-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS181777069676', '向安琪', 1, '+86 148-0760-9642', 4, '751145938073454345', '7F, 489 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1998-07-13', 0, 0, 'anqi908', '2003-08-27', 'anqixiang18', '2006-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS879695345141', '橋本光莉', 0, '+81 90-4811-7822', 1, '860187093271612121', '日本東京港区東新橋一丁目5番15号5号室', '1991-02-02', 0, 0, 'hikarihashimoto', '2016-03-16', 'hashimotohikari', '2012-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS333480828970', '李嘉伦', 1, '+86 139-4201-0674', 0, '466084480590209039', '中国广州市天河区天河路232号华润大厦45室', '1999-01-13', 0, 0, 'li4', '2019-06-20', 'lij5', '2016-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS738086609445', '中村美緒', 1, '+86 165-9076-3415', 4, '347187118690248307', 'No.19 building, 226 Dong Zhi Men, Dongcheng District, Beijing, China', '1994-02-17', 0, 0, 'mionakamura', '2019-09-25', 'mionakamura', '2020-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS342863167910', '清水彩乃', 0, '+81 3-0174-9214', 2, '127021636802048712', '日本東京千代田区丸の内一丁目6番1号25階', '1997-03-16', 0, 0, 'shiayano730', '2007-12-22', 'shimayano2014', '2005-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS890044707748', '山田玲奈', 0, '+81 11-168-4887', 4, '793459840622846894', '日本札幌厚別区上野幌一条二丁目1番8号15階', '1991-04-30', 0, 0, 'yamadar', '2014-04-11', 'yamada10', '2013-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS158252782146', '山口玲奈', 0, '+86 10-0909-8008', 4, '034357480047164270', 'No.38 building, 801 FuXingMenNei Street, XiCheng District, Beijing, China', '1988-06-10', 0, 0, 'yamaguchi55', '2013-09-24', 'yrena', '2011-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS603765045531', '鄧慧儀', 1, '+1 212-984-2637', 2, '975149649730703992', '829 Bank Street Apartment 25, New York, NY 10014, United States', '1993-09-24', 0, 0, 'wyt1', '2012-02-17', 'waiyeetang', '2006-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS326118064353', 'Amanda Black', 1, '+81 70-4014-8619', 2, '870416510820764175', '日本なごやし熱田区千年二丁目5番17号10階', '1996-05-07', 0, 0, 'amanda8', '2001-02-13', 'amandabla51', '2016-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS195189526374', '邱祖兒', 0, '+44 (161) 161 0026', 4, '724225972384449502', 'Unit 13, Oxford Eco Centre, 9 Mosley St, Manchester, M2 3AQ, United Kingdom', '1989-10-03', 0, 0, 'yaucy', '2014-01-09', 'yachoyee', '2015-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS141045132911', '千葉陸', 1, '+86 760-6334-9533', 2, '142671070780188904', 'No.7 building, 799 Lefeng 6th Rd, Zhongshan, China', '1995-05-30', 0, 0, 'chibari3', '2020-12-03', 'chibriku1129', '2004-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS651839865149', '田中明菜', 1, '+44 5614 651348', 2, '340154656256416694', 'Flat 13, 772 Sackville St, Manchester, M1 3BB, United Kingdom', '1987-04-17', 0, 0, 'akinatana2', '2017-10-23', 'taa', '2021-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS383355504049', '于晓明', 0, '+1 212-931-7726', 1, '273110436167934703', '728 Bank Street Apartment 10, New York, NY 10014, United States', '1986-06-15', 0, 0, 'yxiaoming', '2019-08-26', 'xyu', '2011-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS426554705395', '余致远', 1, '+81 3-8284-1844', 2, '031451367986658691', '日本東京品川区東五反田五丁目2番2号10階', '1997-03-05', 0, 0, 'yuzhiyuan', '2008-04-15', 'zhiyuanyu4', '2006-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS934494201787', '唐杰宏', 1, '+44 (20) 8623 9306', 2, '664107885326823830', 'Unit 34, Oxford Eco Centre, 829 Hanover Street, London, W1S 1YD, United Kingdom', '1995-03-02', 0, 0, 'tjiehong', '2013-10-29', 'jiehongtang', '2005-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS270753263442', '孙詩涵', 1, '+81 11-729-2150', 1, '557063784873652194', '50F, 5-2-19 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-02-03', 0, 0, 'ssun69', '2009-03-31', 'shihansun', '2012-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS661186337781', '中野悠人', 0, '+1 718-659-9928', 1, '711361177839438220', '795 Flatbush Ave Apartment 9, Brooklyn, NY 11225, United States', '1988-09-06', 0, 0, 'yutn', '2006-04-18', 'yutnaka', '2017-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS244959616470', 'Diana Turner', 0, '+81 11-689-3655', 3, '657865234738498894', '3F, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1996-11-30', 0, 0, 'turndi4', '2004-02-09', 'turner5', '2007-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS184219585520', '韓嘉欣', 1, '+86 153-7447-6984', 2, '568941858203819748', '中国成都市成华区玉双路6号351号12号楼', '1986-01-31', 0, 0, 'karyha', '2017-02-14', 'han3', '2011-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS346338627360', '田村優奈', 0, '+44 7512 316253', 4, '704229740196063597', 'Unit 38, Oxford Eco Centre, 142 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1985-03-31', 0, 0, 'yunat1989', '2000-08-28', 'tyuna1954', '2010-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS063603838018', '吳俊宇', 1, '+86 183-5537-1306', 1, '155597687132458833', 'No.22 building, 959 Ganlan Rd, Pudong, Shanghai, China', '1996-04-19', 0, 0, 'ncy', '2006-08-05', 'chunyung110', '2003-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS293039465052', 'Sarah James', 1, '+1 213-589-7261', 4, '642808360441752640', '421 Wall Street Apartment 46, Los Angeles, CA 90003, United States', '1994-02-19', 0, 0, 'jamesarah4', '2021-03-22', 'sarahjames', '2012-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS910076875088', '萧震南', 0, '+86 135-7614-5330', 3, '893450692536863752', '中国北京市東城区東直門內大街992号48号楼', '1991-05-17', 0, 0, 'zxia414', '2011-03-10', 'xiaozhennan', '2014-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS103262907854', '馬榮發', 1, '+81 52-644-0267', 3, '699557738135226185', '38F, 18 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1987-05-16', 0, 0, 'wfma4', '2004-06-28', 'mawingfat', '2018-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS455715561878', '鄧安娜', 0, '+81 11-154-2247', 2, '868546986144718727', 'Rm. 9, 6-1-20, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1989-09-30', 0, 0, 'tangon327', '2000-05-30', 'onnata1', '2009-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS365532335339', '任國賢', 0, '+86 21-8593-0337', 4, '735101206730559421', 'No.46 building, 924 Jianxiang Rd, Pudong, Shanghai, China', '1990-08-30', 0, 0, 'kwokyyam10', '2019-07-22', 'kwokyinyam', '2015-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS122959721880', '遠藤健太', 1, '+1 718-414-1376', 3, '981997092735349082', '581 Flatbush Ave Apartment 5, Brooklyn, NY 11225, United States', '1991-02-22', 0, 0, 'kenta908', '2006-10-10', 'kenta1214', '2022-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS074076325485', 'Ruth Howard', 0, '+86 28-967-4489', 1, '858176892862970583', '12F, No. 267, Shuangqing Rd, Chenghua District, Chengdu, China', '1985-04-03', 0, 0, 'howard604', '2006-10-31', 'howard118', '2015-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS425512772453', '吕晓明', 0, '+44 5256 893813', 1, '103479572692935117', 'Block 9, 185 Hanover Street, London, W1S 1YD, United Kingdom', '1995-10-15', 0, 0, 'lux', '2006-01-15', 'lx601', '2021-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS630246886124', '劉浩然', 0, '+81 80-2000-6952', 4, '201743687771450099', '日本おおさかし東住吉区東田辺三丁目27番15号11階', '1990-12-17', 0, 0, 'hoyinla624', '2020-10-12', 'lhoyin', '2011-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS767663983606', '罗子异', 0, '+81 3-1620-2364', 1, '308809785062435859', '41-kai, 5-2-10 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-09-18', 0, 0, 'luz', '2003-05-12', 'lziyi', '2009-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS046554113733', '韩云熙', 1, '+1 312-885-0749', 1, '793243273480111876', '56 Pedway Suite 1, Chicago, IL 60601, United States', '1988-10-11', 0, 0, 'yhan10', '2003-09-30', 'hayunxi', '2005-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS182619070782', '斉藤海斗', 1, '+86 194-8764-8920', 3, '429381710903959296', '中国中山乐丰六路391号40室', '1990-06-12', 0, 0, 'kaito10', '2000-01-10', 'saitokai620', '2015-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS256673491450', 'Jacqueline Rose', 0, '+81 74-133-6289', 2, '461624823344857554', '47F, 1-7-15 Saidaiji Akodacho, Nara, Japan', '1994-08-04', 0, 0, 'rjacqueline10', '2006-02-26', 'rose517', '2015-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS080662000809', '宋睿', 1, '+1 212-479-7086', 1, '176365904445426655', '392 Wooster Street Suite 46, New York, NY 10012, United States', '1990-07-19', 0, 0, 'song1227', '2010-06-08', 'srui', '2004-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS055201198626', '廖杰宏', 0, '+86 193-4745-2808', 4, '945886381017875207', '44F, 497 Tianhe Road, Tianhe District, Guangzhou, China', '1987-10-08', 0, 0, 'jili', '2006-08-02', 'jiehong40', '2010-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS555729566184', '毛小慧', 1, '+81 74-470-6249', 3, '651650009286447330', '5-kai, 1-7-9 Saidaiji Akodacho, Nara, Japan', '1996-07-03', 0, 0, 'simo', '2010-01-13', 'mo703', '2020-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS681312356357', 'Vincent Hayes', 1, '+81 70-0558-5866', 3, '518420918709585008', '日本札幌白石区菊水三条五丁目2番14号36階', '1998-02-18', 0, 0, 'hayesv', '2005-01-27', 'vincehayes', '2012-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS161476236685', '潘安琪', 1, '+81 74-452-3156', 3, '404296332644282339', '7F, 16 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-12-12', 0, 0, 'anqipan', '2013-07-04', 'apan', '2002-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS242272047375', 'Ronald Fox', 1, '+86 174-0613-4142', 4, '507866412762259095', '中国中山京华商圈华夏街460号18楼', '1985-07-12', 0, 0, 'rfox', '2012-01-18', 'ronf1954', '2006-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS775711709427', '袁淑怡', 1, '+44 7148 723310', 0, '852065551410161079', 'Block 29, 79 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1989-07-04', 0, 0, 'suyue55', '2000-08-17', 'sukyeey', '2012-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS376273163060', '盧青雲', 1, '+86 10-6871-5684', 4, '136087690735975456', '中国北京市朝阳区三里屯路132号19室', '1990-05-19', 0, 0, 'chingwan1', '2007-12-23', 'chingwanlo', '2013-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS901003920737', '木村涼太', 0, '+81 52-712-1327', 1, '526156244868612308', '6-kai, 2-5-17 Chitose, Atsuta Ward, Nagoya, Japan', '1990-12-20', 0, 0, 'ryokimu', '2015-03-18', 'ryotaki', '2009-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS797648557210', 'Billy Sanders', 0, '+86 157-6678-5718', 3, '649056684255990713', '中国中山紫马岭商圈中山五路520号华润大厦33室', '1995-11-08', 0, 0, 'billy2015', '2016-04-01', 'billysa53', '2011-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS700638347219', '刘安琪', 0, '+86 755-6659-0284', 3, '409174722709199262', 'Room 47, 836 Jingtian East 1st St, Futian District, Shenzhen, China', '1996-08-21', 0, 0, 'aliu', '2003-11-25', 'liua', '2000-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS478745502462', '任小慧', 1, '+1 614-817-3241', 0, '635365101600274835', '369 Tremont Road Suite 2, Columbus, GA 43212, United States', '1993-01-12', 0, 0, 'yamsiuwai', '2009-11-14', 'yamsiuwai', '2014-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS900748529926', '劉詩君', 0, '+86 139-4993-6159', 1, '326716281566082421', '中国北京市延庆区028县道293号25栋', '1998-12-14', 0, 0, 'lausk9', '2009-05-05', 'sklau', '2018-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS961846488215', '郭晓明', 0, '+86 198-3112-8191', 1, '422398546049628160', 'No.21 building, 45 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1999-02-17', 0, 0, 'xiaoming79', '2014-01-18', 'guoxia91', '2002-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS698787645060', '谭致远', 0, '+81 11-561-4131', 3, '382325940889556267', '日本札幌厚別区上野幌一条二丁目1番1号10階', '1985-08-03', 0, 0, 'zhtan47', '2006-08-30', 'zhiyuantan7', '2004-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS286132418047', '伍家強', 0, '+86 137-2411-2838', 1, '293676602177991133', '中国北京市海淀区清河中街68号270号26室', '1989-01-28', 0, 0, 'ng2', '2001-09-04', 'kakeungng', '2008-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS725743288730', '谷口和真', 1, '+86 21-6599-9351', 0, '492553026188488594', 'No.26 building, 536 Ganlan Rd, Pudong, Shanghai, China', '1991-01-18', 0, 0, 'tkazu', '2015-10-30', 'kazumatani429', '2002-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS851895873030', '李詩涵', 0, '+81 3-2068-1398', 1, '292588498453032740', '日本東京品川区東五反田五丁目2番7号10階', '1988-01-07', 0, 0, 'lis', '2012-07-10', 'shihal', '2013-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS387237960455', '蔣杰倫', 1, '+86 199-8274-4064', 2, '852038375121393685', 'No.25 building, 569 Huanqu South Street 2nd Alley, Dongguan, China', '1992-09-04', 0, 0, 'chiehlunch', '2009-05-10', 'chiangcl', '2006-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS972734084877', 'Arthur Campbell', 0, '+81 74-980-3474', 2, '308960861439674676', '日本ならし学園南三丁目9番1号35階', '1991-04-17', 0, 0, 'arthc', '2015-03-15', 'arthur1031', '2016-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS420451651319', '徐杰宏', 0, '+44 (116) 481 0017', 3, '257645050376112616', 'Block 4, 899 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1995-07-07', 0, 0, 'xujiehong803', '2012-01-16', 'jxu', '2017-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS942151035034', '加藤明菜', 0, '+86 152-5932-6836', 2, '754475461769710948', 'Room 31, CR Building, 937 Xiaoping E Rd, Baiyun , Guangzhou, China', '1997-07-14', 0, 0, 'katoakina6', '2021-02-13', 'akina309', '2005-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS060296093399', '孟璐', 1, '+1 718-447-1827', 0, '763518467966601173', '840 1st Ave Apartment 18, Brooklyn, NY 11220, United States', '1990-08-07', 0, 0, 'lumeng', '2016-12-17', 'meng56', '2002-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS850130333632', '傅思妤', 0, '+44 5863 891048', 0, '886433606498463874', 'Block 19, 203 New Street, Birmingham, B2 4DB, United Kingdom', '1994-10-21', 0, 0, 'szeyu16', '2008-07-09', 'fuszeyu', '2005-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS557477378248', 'Teresa Scott', 1, '+86 133-7919-9062', 2, '396351751821006430', '中国北京市西城区复兴门内大街877号16室', '1986-04-17', 0, 0, 'scter10', '2008-09-20', 'teresscot923', '2002-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS258467787839', '譚明', 0, '+86 21-248-5949', 1, '071807183679680914', '中国上海市浦东新区健祥路890号17栋', '1990-01-11', 0, 0, 'tam83', '2008-09-03', 'mtam', '2006-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS102684097468', '渡部光莉', 1, '+81 66-082-9362', 4, '732939831120624642', '2F, 4-9-16 Kamihigashi, Hirano Ward, Osaka, Japan', '1996-03-22', 0, 0, 'watanabe1006', '2015-08-16', 'hikwatanabe', '2006-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS060552050246', 'Wendy Long', 0, '+81 3-4557-8063', 3, '397240234636080764', '日本東京中央区銀座三丁目12番5号24階', '1992-04-10', 0, 0, 'wendy87', '2020-09-23', 'wlong1002', '2020-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS721788132390', '朱杰宏', 1, '+86 186-1993-3235', 2, '090852298821360130', '中国上海市黄浦区淮海中路812号华润大厦6室', '1995-12-04', 0, 0, 'jzh', '2015-07-23', 'zhujie', '2003-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS628912220227', 'Stanley Nguyen', 0, '+1 213-378-2778', 3, '780114590848221611', '244 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1988-06-12', 0, 0, 'nguyen7', '2007-12-02', 'stanleynguy', '2001-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS638374045681', '馬家強', 0, '+44 5805 442801', 1, '874978632500069481', 'Block 20, 521 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1994-04-25', 0, 0, 'kkma412', '2020-11-30', 'kakeungm', '2018-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS467715683693', '徐國賢', 1, '+44 5498 513684', 0, '854482589757096421', 'No.17 Main building, 305 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1992-12-19', 0, 0, 'tsuiky', '2015-01-02', 'kytsu2', '2014-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS841361490256', 'Josephine Reyes', 1, '+44 (116) 001 5560', 2, '583267594383106789', 'Block 9, 883 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-01-23', 0, 0, 'josephine5', '2002-04-30', 'rjose', '2020-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS839214130123', '程晓明', 1, '+86 152-5812-3873', 2, '998022293816797633', 'No.27 building, 914 Lefeng 6th Rd, Zhongshan, China', '1996-08-18', 0, 0, 'cx1990', '2015-07-14', 'chexi', '2010-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS599052960656', '孙璐', 1, '+86 179-6274-5198', 3, '885541648029119727', '中国上海市浦东新区橄榄路741号28室', '1986-09-22', 0, 0, 'sunlu', '2001-01-27', 'lusun', '2020-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS125859905570', '岡田大輔', 0, '+44 7444 100113', 1, '494327139488091719', 'Unit 2, Oxford Eco Centre, 680 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1988-09-05', 0, 0, 'odaisu', '2019-03-18', 'okadadaisuke', '2002-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS072271618554', 'Russell Kelly', 1, '+44 7329 249915', 3, '174326293259954423', 'Block 42, 823 Redfern St, Liverpool, L20 8JB, United Kingdom', '1995-11-29', 0, 0, 'rkell', '2015-10-29', 'ker1017', '2000-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS219386905810', '伍慧儀', 1, '+81 80-8032-5001', 3, '292224128548653867', '日本札幌中央区宮の森四条六丁目1番7号46階', '1992-05-23', 0, 0, 'waiyeeng406', '2008-04-05', 'wyng6', '2003-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS980930696425', '佘麗欣', 0, '+86 10-8911-5791', 2, '177340614393347003', '中国北京市房山区岳琉路365号7楼', '1987-09-09', 0, 0, 'sheh48', '2010-01-15', 'slaiyan', '2005-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS858391002749', '林愛梨', 0, '+86 21-1232-6181', 3, '000601411882203381', 'No.44 building, 23 Jianxiang Rd, Pudong, Shanghai, China', '1990-09-30', 0, 0, 'hayashiairi', '2019-02-13', 'hayasair', '2000-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS305453980786', 'Hazel Smith', 1, '+1 718-516-4845', 2, '376381116698658791', '252 Flatbush Ave Suite 18, Brooklyn, NY 11225, United States', '1992-12-12', 0, 0, 'smithhaze', '2016-02-26', 'hazel7', '2002-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS480076210197', '山崎光', 1, '+86 20-8140-5886', 1, '934821279306887729', '中国广州市白云区小坪东路41号17栋', '1994-09-02', 0, 0, 'yamazakihikaru87', '2005-10-31', 'yamazakih5', '2000-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS360323889164', '中川蓮', 0, '+86 21-9592-4319', 1, '405750592153429896', '中国上海市浦东新区健祥路679号41号楼', '1996-08-17', 0, 0, 'renakagawa', '2002-12-27', 'rennakagawa', '2007-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS089674569334', 'Heather Henry', 0, '+44 (151) 247 8831', 1, '072402851360146140', 'Block 49, 595 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1994-03-05', 0, 0, 'hhenry', '2004-08-28', 'henry1', '2005-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS946347995221', '熊睿', 0, '+44 7390 463212', 1, '189491446317335572', 'Flat 50, 1 Pollen Street, London, W1S 1NG, United Kingdom', '1990-06-13', 0, 0, 'xionr7', '2019-01-21', 'xiongru', '2009-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS489204124463', '中山悠人', 0, '+86 183-0183-6959', 2, '664280708737956990', '中国深圳龙岗区布吉镇西环路335号5栋', '1995-12-21', 0, 0, 'nakayama406', '2000-08-17', 'nyu', '2007-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS662892541916', '官安娜', 0, '+81 66-984-6615', 0, '516786985790897583', '日本おおさかし東住吉区東田辺三丁目27番19号8階', '1990-09-02', 0, 0, 'onnakoon113', '2020-02-05', 'konna', '2018-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS646052958919', '斎藤大輔', 1, '+44 7851 028999', 4, '054843872391396618', 'Flat 34, 753 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-03-09', 0, 0, 'saitdaisu', '2014-02-28', 'sdaisuke3', '2004-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS454533971845', '今井結翔', 0, '+86 21-702-9892', 0, '213753852110312357', '中国上海市黄浦区淮海中路562号华润大厦32室', '1985-03-22', 0, 0, 'yuitoimai', '2018-02-10', 'yuitoimai01', '2000-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS502086599410', 'Robert Guzman', 1, '+81 80-8758-3070', 2, '875221295391114328', '日本東京渋谷区代々木二丁目3番5号7号室', '1987-08-24', 0, 0, 'robeguzman', '2010-11-17', 'guzman81', '2019-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS550509475125', '傅杰宏', 1, '+44 (151) 470 1255', 4, '418443430119620610', 'Block 43, 476 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1994-01-10', 0, 0, 'fjiehong2017', '2018-08-21', 'fujie', '2005-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS688734484399', 'Evelyn Kennedy', 1, '+86 755-499-4365', 1, '554570836133573590', 'No.49 building, 558 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1989-01-06', 0, 0, 'evkennedy', '2013-07-06', 'evken', '2015-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS871497050304', '車麗欣', 0, '+81 3-9166-0381', 1, '000301586896907887', '39-kai, 1-5-20, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1989-02-19', 0, 0, 'laiyan83', '2003-11-29', 'che2000', '2003-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS966064047405', '羅慧嫻', 0, '+81 70-4077-9168', 2, '991424502986217285', '17F, 5-19-12 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1989-08-24', 0, 0, 'lowh106', '2016-04-20', 'lowh', '2013-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS518875878532', '村上絢斗', 0, '+81 80-6505-8131', 3, '172625867121088608', '13F, 3 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1991-12-19', 0, 0, 'mayat', '2002-05-15', 'mayato1', '2012-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS112144146012', 'Ellen Martinez', 0, '+86 155-8544-3603', 1, '017541075392702143', '中国广州市白云区机场路棠苑街五巷713号34室', '1988-08-25', 0, 0, 'ellen419', '2010-08-13', 'ellenmartinez1952', '2015-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS348124097534', '藤玲玲', 0, '+81 90-3915-8010', 4, '467800032588296031', '日本札幌清田区真栄四条五丁目19番15号50階', '1990-09-08', 0, 0, 'linglingtang', '2006-01-26', 'lltang', '2020-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS501292314394', '上田愛梨', 1, '+86 28-8636-6043', 2, '827310157376536720', 'Room 22, CR Building, No.971, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1986-10-12', 0, 0, 'airiued', '2015-10-28', 'airiue', '2002-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS888506905264', '龚秀英', 1, '+86 760-002-0036', 2, '296304287964200966', '中国中山乐丰六路869号12栋', '1986-02-04', 0, 0, 'gonxiuying', '2010-11-14', 'xiugong', '2019-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS448252236516', '莫子异', 1, '+86 182-6503-7250', 1, '969941695430161268', 'Room 10, CR Building, No. 849, Shuangqing Rd, Chenghua District, Chengdu, China', '1992-01-24', 0, 0, 'mo09', '2014-12-31', 'ziyim', '2005-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS422989889579', 'Leroy Castillo', 1, '+44 (1223) 09 0762', 2, '271705595728419951', 'Block 35, 524 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1991-06-17', 0, 0, 'calero805', '2017-04-01', 'leroycastillo318', '2019-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS661244938786', '藍家文', 0, '+81 70-5901-8099', 2, '581072108671817906', '日本なごやし守山区瀬古東二丁目171番20号33号室', '1990-12-08', 0, 0, 'lamkama320', '2009-09-10', 'kamlam', '2017-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS237737606401', '陳祖兒', 1, '+1 330-019-5090', 3, '290678822368828525', '913 Fern Street Apt 49, Akron, OH 44307, United States', '1992-04-25', 0, 0, 'chan64', '2005-07-02', 'ccy6', '2002-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS401522230684', 'Louise Long', 0, '+86 755-936-8327', 2, '480664969417077726', '中国深圳罗湖区蔡屋围深南东路261号华润大厦3室', '1990-04-29', 0, 0, 'llong', '2000-03-30', 'll6', '2020-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS452512112447', '野口蒼士', 0, '+86 196-0431-0389', 3, '378887228348175232', 'Room 6, 625 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1996-08-05', 0, 0, 'aoshin01', '2001-01-27', 'aoshi05', '2004-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS597429260260', 'Christina Cooper', 1, '+86 196-3634-1859', 1, '894279581301978019', '中国成都市成华区二仙桥东三路111号26室', '1995-03-20', 0, 0, 'coopechristina', '2011-07-05', 'cochristina', '2007-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS316878219978', '苑慧儀', 0, '+86 191-3484-8773', 0, '178293217673815238', '中国成都市成华区双庆路375号43号楼', '1990-01-18', 0, 0, 'wyyuen', '2007-12-17', 'waiyee91', '2015-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS093165858281', '吳小慧', 0, '+44 (1223) 36 4021', 2, '584251780031813699', 'Unit 3, Oxford Eco Centre, 710 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-02-05', 0, 0, 'ngsiuwai', '2008-03-23', 'siuwang', '2010-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS096294195788', '佐藤絢斗', 0, '+86 755-5785-5813', 1, '782249512517484051', 'No.40 building, 168 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1990-09-03', 0, 0, 'satoay', '2004-08-12', 'aysato', '2002-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS792962945043', '文惠敏', 1, '+1 614-390-9304', 2, '660904963797274435', '967 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1988-02-19', 0, 0, 'wmman', '2013-08-02', 'man1961', '2002-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS082921195248', 'James Jimenez', 1, '+44 5254 699739', 3, '995689208310289674', 'Flat 15, 697 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1997-05-03', 0, 0, 'jijame', '2019-05-18', 'jimenezjame', '2018-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS309864610490', '沈睿', 0, '+44 5071 910422', 2, '107208137125184692', 'Block 5, 610 Park End St, Oxford, OX1 1JD, United Kingdom', '1994-09-21', 0, 0, 'rshen05', '2014-05-15', 'rui1962', '2005-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS771302164189', 'Diana Alvarez', 1, '+86 138-1992-3992', 3, '054115067156566154', 'Room 25, 759 68 Qinghe Middle St, Haidian District, Beijing, China', '1989-02-24', 0, 0, 'dianaalv7', '2019-09-11', 'adiana', '2016-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS158992649690', '蕭德華', 1, '+1 213-185-4808', 1, '921986218873736797', '818 Wall Street Apt 23, Los Angeles, CA 90003, United States', '1992-06-23', 0, 0, 'twsiu', '2010-08-27', 'takwahsiu', '2018-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS047364837624', '遠藤湊', 1, '+81 3-8030-4207', 4, '538006046018662867', '日本東京品川区東五反田五丁目2番10号49階', '1991-07-09', 0, 0, 'endmi', '2006-02-02', 'minatoendo604', '2010-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS759032368897', '林富城', 0, '+86 21-3389-1140', 2, '725546170311087753', '中国上海市黄浦区淮海中路128号36室', '1998-12-27', 0, 0, 'lafs75', '2018-10-30', 'lam98', '2014-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS856067684941', '邵睿', 1, '+1 213-914-9064', 3, '167426505441002179', '478 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1985-10-14', 0, 0, 'ruisha', '2000-08-20', 'sharu', '2012-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS516197914978', '金子葵', 1, '+86 20-459-6568', 4, '877701142780874746', '中国广州市天河区天河路188号28栋', '1997-04-25', 0, 0, 'kao', '2012-06-30', 'aoi2', '2021-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS937582760997', 'Laura Mills', 0, '+81 80-5428-4233', 3, '331945628284916614', '日本なごやし北区楠味鋺三丁目80番8号45号室', '1999-01-05', 0, 0, 'laumills', '2017-08-02', 'laura120', '2017-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS398405321150', 'Travis Young', 0, '+81 74-353-4718', 2, '466315779751938725', '日本ならし西大寺赤田町一丁目7番1号34階', '1986-11-01', 0, 0, 'young4', '2015-05-02', 'travisyou1203', '2009-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS252755571647', '李嘉伦', 1, '+81 11-425-4644', 2, '455850784289471269', 'Rm. 29, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1994-09-16', 0, 0, 'jli112', '2000-02-02', 'li8', '2006-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS551583741466', '上田葉月', 1, '+81 11-946-2837', 1, '850470409311026915', '日本札幌白石区菊水三条五丁目4番2号43階', '1987-01-25', 0, 0, 'uedhazu', '2018-02-25', 'hazu', '2010-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS837414797296', '中川蒼士', 1, '+86 10-5794-6856', 3, '953477743364844108', 'No.8 building, 873 FuXingMenNei Street, XiCheng District, Beijing, China', '1988-07-26', 0, 0, 'nakagawaa1102', '2019-11-13', 'aoshinak9', '2002-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS756152546911', '佐野涼太', 1, '+81 70-3942-6167', 1, '758863900649406675', '日本ならし西大寺赤田町一丁目7番16号21階', '1996-09-24', 0, 0, 'saryot', '2016-02-07', 'sanoryota530', '2010-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS115150222324', 'Lee Spencer', 0, '+86 165-3358-1756', 3, '297772203096016375', '26F, 228 028 County Rd, Yanqing District, Beijing, China', '1998-08-06', 0, 0, 'leespenc', '2019-09-07', 'splee5', '2003-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS529680796216', '木下瑛太', 1, '+1 614-579-2467', 1, '200198110380157831', '899 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1993-02-19', 0, 0, 'kinoshitaeit1128', '2014-08-25', 'keita507', '2016-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS399575013062', '内田舞', 1, '+81 70-3716-5168', 2, '650396421869868960', 'Rm. 25, 18 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1997-05-22', 0, 0, 'uchidamai7', '2006-12-26', 'maiuchida', '2009-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS051454366081', 'Henry Allen', 0, '+1 614-067-0995', 3, '766353090193671449', '972 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1998-10-31', 0, 0, 'allenh', '2004-07-22', 'henall', '2016-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS950518328619', 'Theresa Hughes', 0, '+1 838-890-9463', 4, '461336881885948880', '855 Broadway Apt 5, Albany, NY 12207, United States', '1998-08-06', 0, 0, 'huthere', '2014-04-19', 'hughet87', '2014-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS211052807166', '袁秀英', 0, '+81 52-757-9562', 3, '319953132648267458', '日本なごやし瑞穂区河岸町四丁目20番3号38号室', '1985-02-24', 0, 0, 'yuanx', '2008-01-18', 'yuanxiuying609', '2006-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS667256050396', '孙宇宁', 1, '+1 213-330-5019', 1, '871548385260686925', '933 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1995-08-04', 0, 0, 'yusun', '2022-01-11', 'suyun229', '2018-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS829150955451', '市川紗良', 0, '+1 213-180-7867', 3, '377866236210637330', '637 Figueroa Street Apartment 15, Los Angeles, CA 90037, United States', '1985-09-20', 0, 0, 'ichisara1111', '2001-08-18', 'sara417', '2009-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS152302658159', '顧梓晴', 1, '+86 20-932-6057', 1, '957189997538928192', 'No.37 building, 704 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1989-12-10', 0, 0, 'tcku', '2007-01-04', 'tszchingk', '2021-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS211496438881', '黎力申', 1, '+1 330-385-2532', 1, '256581776667259843', '695 Fern Street 3rd Floor, Akron, OH 44307, United States', '1992-08-19', 0, 0, 'lailiksun', '2003-04-03', 'lsla', '2013-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS804757170312', '廖宇宁', 0, '+86 21-1853-7194', 1, '141237391734803146', 'No.45 building, 468 Middle Huaihai Road, Huangpu District, Shanghai, China', '1987-06-21', 0, 0, 'yuning46', '2009-11-26', 'yuninglia4', '2000-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS034488987217', '尹志遠', 1, '+86 140-4341-5378', 3, '855607704629332382', 'No.48 building, 172 East Wangfujing Street, Dongcheng District , Beijing, China', '1991-10-05', 0, 0, 'chiyuen7', '2016-06-24', 'chiyuen5', '2015-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS922796921872', '高田優奈', 0, '+81 52-895-3952', 3, '634049117886574133', '日本なごやし北区清水三丁目19番14号45階', '1988-09-01', 0, 0, 'yunat', '2011-09-08', 'takadayuna2008', '2009-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS298847370361', '胡安琪', 0, '+86 21-370-6352', 3, '435240045557308575', '中国上海市闵行区宾川路570号21室', '1991-04-09', 0, 0, 'hu1003', '2011-12-22', 'hanqi', '2020-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS322838932350', '村田明菜', 1, '+86 155-0438-3558', 0, '678072698395544450', '中国北京市西城区西長安街332号45室', '1987-03-28', 0, 0, 'akina612', '2019-10-24', 'akinamurata', '2009-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS876417001044', 'Wanda Owens', 1, '+1 614-711-2903', 4, '855700742139071265', '776 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1992-09-14', 0, 0, 'wao', '2014-12-06', 'wano', '2000-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS930182760721', '梅家文', 1, '+81 90-4075-2639', 3, '589217192643412083', '36F, 3-27-11 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1988-01-25', 0, 0, 'mui41', '2018-06-20', 'muikaman107', '2018-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS824815171849', '郑睿', 1, '+86 760-5997-5336', 0, '063643981208838648', 'Room 17, CR Building, 970 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1993-08-16', 0, 0, 'zhrui', '2004-06-24', 'rui927', '2002-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS103214882458', 'Carmen Walker', 1, '+1 212-949-4269', 1, '238084946945880406', '615 Canal Street Apt 1, New York, NY 10013, United States', '1993-11-02', 0, 0, 'carmenwalker46', '2020-07-23', 'cwalker', '2015-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS048900734060', 'Edith Sanchez', 1, '+81 90-3597-6806', 2, '773692581732225982', '11-kai, 1-5-4, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1989-11-10', 0, 0, 'esanchez', '2008-05-04', 'sanchezedith', '2007-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS542422620134', '加藤美咲', 1, '+81 3-0926-3915', 1, '242512130119111481', '日本東京港区東新橋一丁目5番20号45階', '1985-01-08', 0, 0, 'kato3', '2009-06-24', 'misakikato', '2010-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS929705612854', '房霆鋒', 1, '+81 3-5045-2136', 4, '867245661843737036', 'Rm. 44, 1-6-8, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1993-06-08', 0, 0, 'fong48', '2013-04-10', 'tingfung48', '2018-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS314177698435', '大野大和', 1, '+81 52-328-2264', 4, '507200461890599398', '日本なごやし北区楠味鋺三丁目80番13号44階', '1992-10-14', 0, 0, 'onoy', '2013-04-09', 'yo115', '2002-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS598982701874', '毛嘉欣', 0, '+86 193-2517-3101', 4, '676782812779464605', 'No.44 building, 178 Ganlan Rd, Pudong, Shanghai, China', '1997-08-12', 0, 0, 'moky', '2012-08-24', 'moky', '2003-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS775974969437', '苏睿', 1, '+86 190-3286-5112', 2, '489590531849870522', '中国东莞环区南街二巷204号华润大厦50室', '1989-06-04', 0, 0, 'sur1028', '2008-02-08', 'ruisu02', '2010-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS246993453568', '湯天樂', 1, '+86 161-5812-1152', 2, '360661111776915864', '中国上海市徐汇区虹桥路90号1栋', '1997-02-03', 0, 0, 'tongtl', '2002-10-26', 'ttl', '2009-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS183140780232', '應家玲', 1, '+81 11-907-4069', 3, '331723957304803884', '8-kai, 13-3-5 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1998-12-18', 0, 0, 'kalingying124', '2019-07-03', 'klying', '2002-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS070536675815', '朱家明', 0, '+86 194-2128-0665', 2, '053708936490848641', '中国中山乐丰六路965号31号楼', '1986-01-06', 0, 0, 'kamingchu', '2000-08-11', 'chu10', '2008-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS732672735656', 'Debra Sanders', 0, '+81 80-8863-8391', 0, '679681328424645278', '日本東京中央区銀座三丁目12番13号38号室', '1997-03-22', 0, 0, 'debrasa', '2002-04-16', 'debra1104', '2010-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS434744972995', '夏云熙', 1, '+81 90-6425-7893', 0, '211991558360646445', '日本東京中央区銀座三丁目12番2号30階', '1996-01-08', 0, 0, 'xiay', '2003-07-03', 'yunxixia513', '2008-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS765574048122', 'Mike Dixon', 1, '+44 5523 909636', 1, '622147015642531570', 'No.33 Main building, 296 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1993-08-14', 0, 0, 'dimike', '2001-08-14', 'dixonmik', '2017-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS547782250640', '馬淑怡', 0, '+44 (151) 344 8697', 2, '377196563959199686', 'Flat 49, 842 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1991-06-10', 0, 0, 'masukyee', '2021-07-03', 'masu', '2014-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS589048347704', '樊浩然', 0, '+1 312-222-2703', 2, '454008725170124669', '925 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1988-10-29', 0, 0, 'fahy69', '2014-05-24', 'fanhy1112', '2002-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS339913267808', '谷口大輔', 0, '+81 70-4889-8242', 2, '575060558677067845', '29-kai, 1 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-10-07', 0, 0, 'tdaisuke46', '2000-08-04', 'taniguchidaisuke', '2002-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS770888137105', 'Amanda Simmons', 1, '+1 614-588-1568', 2, '069863358532818497', '31 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1993-02-09', 0, 0, 'simmonsamanda', '2008-05-21', 'amanda3', '2020-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS198426374307', '薛慧琳', 1, '+1 312-830-3605', 4, '171442325280868518', '464 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1987-06-22', 0, 0, 'sitwailam', '2008-09-20', 'wlsit', '2016-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS641057044259', 'Jeffrey Morales', 0, '+44 5024 235463', 1, '619539807808665170', 'No.44 Main building, 900 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1987-05-19', 0, 0, 'jeffreymorales', '2017-04-14', 'moralesje6', '2009-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS552564941547', '馮志遠', 0, '+44 (121) 728 4386', 1, '765864404216964703', 'Unit 48, Oxford Eco Centre, 808 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1987-07-20', 0, 0, 'fung04', '2013-04-07', 'fungcy', '2007-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS820838272685', '方震南', 0, '+81 74-127-6335', 0, '381149224146882523', '日本ならし西大寺赤田町一丁目7番5号9階', '1989-08-10', 0, 0, 'fangzhenn', '2019-07-20', 'zhefang', '2020-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS523406248343', 'Shannon Powell', 1, '+86 162-1825-1847', 4, '627672485282320109', '43F, 893 Hongqiao Rd., Xu Hui District, Shanghai, China', '1986-05-03', 0, 0, 'powelshannon02', '2018-09-30', 'shannonp', '2003-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS747830050627', 'Shawn Hamilton', 0, '+86 760-4267-3210', 0, '535285943890800281', '中国中山天河区大信商圈大信南路896号27栋', '1989-07-16', 0, 0, 'hams7', '2014-09-04', 'shawnhamilton05', '2010-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS601079129435', 'Ethel Medina', 0, '+86 180-6816-2333', 1, '498374110712693591', 'No.2 building, 274 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1989-02-03', 0, 0, 'ethelmedin820', '2009-08-31', 'ethelmedina', '2001-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS308580196712', '馮發', 0, '+86 755-919-8968', 3, '671314803357504026', '中国深圳罗湖区清水河一路775号39室', '1993-12-06', 0, 0, 'fungfat', '2002-10-01', 'fat7', '2000-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS537254233919', 'Judith Owens', 0, '+44 (20) 0224 6482', 1, '877089220796094379', 'Flat 49, 688 Regent Street, London, W1B 2LX, United Kingdom', '1988-11-29', 0, 0, 'jowens', '2008-03-02', 'judiow78', '2014-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS861531925382', '郝云熙', 1, '+1 614-734-6973', 3, '471647730374949664', '279 East Alley Apartment 20, Columbus, GA 43201, United States', '1995-12-01', 0, 0, 'yunxihao', '2021-11-04', 'hao808', '2011-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS188364291187', '區淑怡', 1, '+81 3-2999-4528', 3, '303277267001720684', '日本東京渋谷区代々木二丁目3番15号18号室', '1989-02-26', 0, 0, 'syau113', '2008-11-30', 'ausukyee427', '2018-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS989452359378', '官霆鋒', 1, '+86 133-4559-9204', 3, '233463212715995127', 'No.27 building, 295 Jingtian East 1st St, Futian District, Shenzhen, China', '1988-07-22', 0, 0, 'koontf', '2012-01-30', 'tfkoon1943', '2012-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS860106969455', '渡辺翼', 1, '+44 (1865) 89 2881', 2, '191449759284667605', 'No.12 Main building, 87 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1995-12-31', 0, 0, 'st3', '2008-10-05', 'tsubasasato', '2000-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS300390509012', 'Manuel Griffin', 1, '+86 755-5841-2919', 2, '046310149872945323', 'Room 42, 191 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1985-03-30', 0, 0, 'griffin4', '2020-02-17', 'manuelgriffin', '2008-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS273763873825', 'Doris Green', 1, '+81 66-864-4343', 1, '966614372969103868', '日本おおさかし西成区出城一丁目1番16号22階', '1998-07-17', 0, 0, 'greendo', '2011-03-29', 'greendo', '2018-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS283304314588', '官力申', 0, '+86 755-5548-2712', 1, '098144505961393073', '中国深圳福田区深南大道482号43栋', '1988-04-25', 0, 0, 'liksun71', '2015-06-01', 'liksun725', '2001-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS351145251081', '朱天榮', 0, '+81 80-7786-8941', 0, '741793175709924482', 'Rm. 15, 5-19-1 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1997-11-06', 0, 0, 'tinwingchu', '2005-11-03', 'twchu2', '2016-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS314420671535', 'Justin Shaw', 0, '+44 5286 222407', 2, '123798893814919896', 'Flat 5, 802 Pollen Street, London, W1S 1NG, United Kingdom', '1990-05-16', 0, 0, 'justins2', '2006-10-01', 'justin1218', '2005-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS348170533619', '邵家輝', 0, '+86 21-2830-5443', 3, '116130294242075368', 'No.18 building, 322 Binchuan Rd, Minhang District, Shanghai, China', '1995-01-27', 0, 0, 'kfs', '2007-03-22', 'kafaisiu', '2009-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS146723108493', '加藤優奈', 1, '+81 70-7832-3777', 1, '618191140697416753', '日本東京渋谷区代々木二丁目3番1号3階', '1985-08-18', 0, 0, 'yunak1', '2011-04-14', 'yunaka1113', '2016-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS489918890381', '姜霆鋒', 0, '+86 20-872-5372', 0, '305645992580294026', '中国广州市天河区天河路366号35栋', '1993-11-07', 0, 0, 'changtf', '2014-02-09', 'tingfungch7', '2007-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS261185326749', '木下花', 0, '+86 131-5854-1357', 1, '803683750598597673', 'No.24 building, 725 FuXingMenNei Street, XiCheng District, Beijing, China', '1987-04-08', 0, 0, 'hanakinoshita', '2010-12-11', 'kinhan', '2010-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS949049039042', '中島詩乃', 1, '+44 (161) 854 6482', 0, '634228133549721368', 'Block 20, 751 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1990-01-29', 0, 0, 'sn1942', '2004-05-15', 'nakajima1', '2004-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS859056659077', '盧潤發', 0, '+81 70-2869-6888', 0, '135228939347453164', 'Rm. 12, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1992-03-07', 0, 0, 'yflo2', '2011-08-09', 'loyunfat', '2000-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS462101423136', '傅震南', 0, '+86 760-4506-7578', 2, '726524358953167007', '中国中山乐丰六路900号31号楼', '1992-01-15', 0, 0, 'fuzhennan', '2016-04-30', 'zhfu', '2002-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS013661850567', '梁子异', 0, '+1 614-952-8386', 0, '614908539659542241', '608 Diplomacy Drive Apartment 36, Columbus, GA 43228, United States', '1997-07-30', 0, 0, 'liang6', '2006-11-24', 'liang6', '2014-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS030581483958', '邵璐', 1, '+44 (1223) 33 5840', 4, '334619919792892762', 'Flat 13, 349 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1986-12-10', 0, 0, 'lush1', '2002-06-13', 'lusha', '2015-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS678943309728', '苑永權', 1, '+86 161-4126-6530', 0, '921672518217474036', 'Room 16, CR Building, 628 Lefeng 6th Rd, Zhongshan, China', '1988-02-04', 0, 0, 'wingkuenyuen', '2014-06-06', 'wingkueny', '2014-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS591711992926', 'Howard Murray', 1, '+44 (116) 933 4445', 2, '758413820149547140', 'Flat 49, 414 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1995-03-15', 0, 0, 'murray10', '2015-06-30', 'howard1', '2010-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS885391454380', '工藤明菜', 1, '+86 179-6427-1371', 3, '033146209374378550', 'No.39 building, 299 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1997-07-16', 0, 0, 'kudoaki', '2016-09-03', 'kudo71', '2009-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS345928225042', '洪曉彤', 0, '+86 28-5178-7758', 3, '718240416767959290', 'Room 23, CR Building, 437 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1985-11-06', 0, 0, 'hunght8', '2008-07-20', 'hht', '2003-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS747577897399', '萬志明', 1, '+81 66-526-1279', 0, '707655895259634547', '10F, 3-27-9 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1991-05-19', 0, 0, 'meng524', '2003-04-25', 'mengcm', '2011-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS984940931607', '余子异', 0, '+86 28-622-2883', 1, '766685598127859129', '中国成都市锦江区红星路三段123号7号楼', '1987-02-22', 0, 0, 'yu2008', '2020-02-09', 'yu1972', '2017-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS721716544056', 'Susan Garcia', 0, '+44 (116) 254 7659', 2, '645649705307134957', 'Block 45, 668 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1991-03-01', 0, 0, 'garcia613', '2020-09-11', 'susang01', '2003-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS207733338289', '石田大地', 1, '+86 131-0127-8391', 3, '998583498284488600', 'Room 35, 858 Huanqu South Street 2nd Alley, Dongguan, China', '1987-05-27', 0, 0, 'ishidda8', '2003-01-31', 'daiishid', '2015-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS236883475132', '邓睿', 0, '+81 3-0615-1604', 2, '447688839725904899', '日本東京渋谷区代々木二丁目3番12号46階', '1995-11-10', 0, 0, 'rdeng', '2010-01-10', 'rudeng', '2007-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS267481376235', 'Alice Murphy', 1, '+86 755-6165-4881', 3, '112568928541454838', '中国深圳罗湖区清水河一路750号华润大厦47室', '1991-09-27', 0, 0, 'alicemurph', '2005-08-25', 'alicemurphy707', '2007-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS723911978686', '林蒼士', 1, '+86 20-305-1048', 2, '810680356043424598', '47F, 287 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1985-02-05', 0, 0, 'hayashi1', '2015-09-16', 'aoshi9', '2014-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS981359504505', 'Sherry Rivera', 1, '+81 90-7665-9279', 4, '210772626608298288', '日本おおさかし東住吉区東田辺三丁目27番13号50階', '1987-05-30', 0, 0, 'rives1126', '2002-11-02', 'rivsher', '2012-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS434474875180', '區祖兒', 1, '+81 80-6322-6547', 2, '726404412025300827', '4-kai, 5-4-14 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-06-13', 0, 0, 'choyau', '2018-04-22', 'cyau91', '2020-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS738030225873', 'Brandon Price', 0, '+86 188-1813-5626', 1, '741304728814124159', '中国北京市东城区东单王府井东街462号10栋', '1988-06-13', 0, 0, 'brandon2', '2008-02-13', 'brandonprice', '2016-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS824434258371', '山本百恵', 0, '+44 5065 837934', 3, '261496568071892796', 'Unit 22, Oxford Eco Centre, 173 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1990-07-29', 0, 0, 'momyamamoto7', '2014-02-26', 'yamamotom', '2006-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS405688157411', 'Hazel Hamilton', 0, '+81 52-536-4541', 3, '071942586023961287', '46F, 7 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-11-28', 0, 0, 'hamiltonhaze604', '2008-07-20', 'hamha', '2001-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS349534220405', '樂永權', 0, '+81 90-9030-0748', 2, '479791281271236685', '日本東京中央区銀座三丁目12番6号12階', '1985-12-04', 0, 0, 'lok3', '2005-08-09', 'wingkuen1956', '2017-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS925675718511', '马睿', 0, '+81 70-3803-3602', 2, '024432107806520880', '37F, 5-2-1 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-03-17', 0, 0, 'mr00', '2018-10-25', 'ruim', '2013-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS354537914659', 'Joel Stone', 1, '+81 70-2735-3089', 2, '265267889527985629', 'Rm. 49, 5-19-2 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1990-07-26', 0, 0, 'stonejoel', '2010-03-04', 'stoj', '2019-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS833043440450', '方宇宁', 0, '+81 66-589-1183', 3, '314690419836757982', 'Rm. 12, 1-7-2 Omido, Higashiosaka, Osaka, Japan', '1994-04-16', 0, 0, 'yuningfa', '2007-08-09', 'yuningfan', '2008-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS217443439035', '藤井絢斗', 0, '+86 755-8796-9104', 0, '947585173493897149', '中国深圳罗湖区蔡屋围深南东路844号18栋', '1997-01-28', 0, 0, 'fujiiayato', '2000-06-21', 'ayatofujii4', '2014-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS807889327361', '鄺慧敏', 1, '+1 312-178-6792', 0, '249697282833804953', '765 Pedway Suite 26, Chicago, IL 60601, United States', '1993-11-04', 0, 0, 'waimankwong', '2018-03-18', 'waimankwong', '2013-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS459901722529', 'Denise Walker', 0, '+81 66-022-7558', 2, '942101609764329708', '日本おおさかし西成区出城一丁目1番1号23階', '1990-02-13', 0, 0, 'dwalker44', '2015-03-04', 'waden', '2000-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS475506021145', '卢宇宁', 0, '+44 5810 212951', 1, '626631206214351904', 'Unit 4, Oxford Eco Centre, 332 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-07-10', 0, 0, 'luyuning', '2018-11-13', 'yuningl', '2016-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS178134596436', '毛國權', 0, '+81 70-4336-7196', 3, '648019786948087735', '日本おおさかし西成区天神ノ森二丁目1番4号39号室', '1988-06-02', 0, 0, 'mokk', '2019-11-26', 'kwokkuenm4', '2003-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS999414513019', '長谷川結翔', 0, '+81 3-5311-9717', 3, '414794861031464619', '日本東京港区東新橋一丁目5番3号27階', '1990-10-04', 0, 0, 'hasegyuito3', '2004-11-05', 'hy10', '2011-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS309969327953', '黄安琪', 1, '+81 70-7389-4614', 1, '409727456075680772', '21-kai, 1-7-15 Saidaiji Akodacho, Nara, Japan', '1993-03-06', 0, 0, 'huanganq5', '2002-12-19', 'huanganqi1115', '2004-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS014815168363', 'Josephine Mitchell', 0, '+1 718-005-6582', 3, '312614974337042478', '904 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1987-07-15', 0, 0, 'mitjosep', '2018-12-13', 'mitcj89', '2012-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS202555917790', 'Linda Rice', 1, '+81 3-1036-5161', 1, '465024044775391749', '日本東京品川区東五反田五丁目2番12号44階', '1988-11-21', 0, 0, 'ricelind', '2019-03-25', 'lindari1963', '2011-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS133209564821', '鄺慧珊', 0, '+1 614-075-6048', 3, '970165748625586239', '727 East Cooke Road Apt 38, Columbus, GA 43214, United States', '1997-10-28', 0, 0, 'kwonwaisan', '2014-07-26', 'kwowaisan', '2017-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS698686626332', 'Kathryn Kelley', 1, '+86 755-8971-0777', 3, '259510334063896836', '中国深圳龙岗区学园一巷526号46号楼', '1992-01-23', 0, 0, 'kelley4', '2012-04-05', 'kelleykathryn8', '2012-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS979253537191', 'Jesus Williams', 0, '+81 90-5583-9379', 4, '969832771279605977', '日本東京千代田区丸の内一丁目6番16号35階', '1991-07-16', 0, 0, 'williams5', '2006-06-12', 'jesuswilliams1117', '2007-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS291155046875', '上野葉月', 1, '+44 (1865) 83 3163', 1, '109244001877942696', 'Unit 20, Oxford Eco Centre, 990 Park End St, Oxford, OX1 1JD, United Kingdom', '1990-01-06', 0, 0, 'hazukiuen', '2002-06-20', 'uenoh', '2014-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS580190102692', '市川陸', 1, '+1 614-402-2820', 4, '560468576459141598', '798 Tremont Road Apartment 9, Columbus, GA 43212, United States', '1997-07-15', 0, 0, 'riku8', '2002-12-22', 'ichikawariku95', '2009-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS635699101340', '森架純', 1, '+44 5221 032182', 3, '364148926657089393', 'Flat 26, 18 Hanover St, Liverpool, L1 4AF, United Kingdom', '1996-08-04', 0, 0, 'morikasumi', '2009-07-17', 'mori6', '2001-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS061607022329', '鄭詠詩', 0, '+81 11-820-8953', 2, '484961347839967188', '13-kai, 2-1-6 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1996-07-03', 0, 0, 'wingsc', '2006-03-22', 'cwingsze', '2001-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS500588999139', 'Grace Ramos', 1, '+86 21-5999-7765', 3, '188072646278967229', '中国上海市浦东新区橄榄路485号10号楼', '1991-10-07', 0, 0, 'ramgrac', '2005-09-25', 'ragrace1960', '2004-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS043985472567', '彭思妤', 0, '+44 (116) 109 6953', 3, '275299582823160029', 'Flat 7, 91 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1996-01-11', 0, 0, 'pansze', '2020-07-31', 'szeyupang', '2009-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS515357360877', '盧梓晴', 0, '+81 3-9138-4702', 2, '486573450266440881', '13-kai, 2-3-19 Yoyogi, Shibuya-ku, Tokyo, Japan', '1986-10-06', 0, 0, 'tclo3', '2019-04-01', 'tclo8', '2002-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS453657244365', '李慧儀', 1, '+86 174-9381-7475', 1, '950240578571485880', '中国上海市浦东新区健祥路40号24号楼', '1997-11-17', 0, 0, 'waiyeelee', '2020-06-05', 'leewaiyee9', '2014-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS994836189196', 'Rebecca Olson', 1, '+81 90-1461-1524', 2, '633559823825536235', '日本札幌豊平区豊平三条十三丁目3番20号7号室', '1990-01-13', 0, 0, 'rebeccaolson7', '2006-02-28', 'rebolson80', '2018-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS157658221162', '古世榮', 1, '+86 172-4419-3708', 4, '758176789611805470', 'Room 46, 618 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1986-08-15', 0, 0, 'saiwingku1', '2007-08-06', 'kusw', '2008-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS637532937680', '何震南', 1, '+1 212-596-8813', 3, '395683250909451097', '23 Fifth Avenue Apt 10, New York, NY 10017, United States', '1986-02-02', 0, 0, 'zhe102', '2010-07-24', 'zhhe8', '2007-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS437151071315', '戚永權', 0, '+1 838-583-9323', 2, '240990278216793597', '345 Broadway Apt 12, Albany, NY 12207, United States', '1997-06-27', 0, 0, 'chicwing5', '2008-12-13', 'chiwingkuen98', '2022-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS647588952158', '太田明菜', 0, '+86 760-542-2784', 1, '497460909782681322', '中国中山京华商圈华夏街55号1楼', '1996-12-12', 0, 0, 'akinota', '2018-01-01', 'akota', '2008-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS625327826507', 'Thomas Harrison', 1, '+81 80-0863-5159', 3, '523649657588485381', '日本ならし大和郡山市本庄町一丁目1番15号19階', '1991-01-05', 0, 0, 'harrisonth', '2020-04-30', 'harrit7', '2016-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS136353261431', '郭杰宏', 0, '+81 74-331-3615', 2, '197959091941878405', '23F, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1985-07-08', 0, 0, 'jiehongg', '2001-03-25', 'gjie', '2018-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS682598653782', '中川健太', 1, '+86 179-1813-4505', 4, '376034696108686065', '中国广州市越秀区中山二路119号华润大厦37室', '1991-09-29', 0, 0, 'kennaka828', '2012-02-11', 'ken', '2022-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS610812052663', 'Jason Walker', 0, '+81 90-8642-7923', 1, '970014856039508113', '36F, 9 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1990-03-19', 0, 0, 'jasonwalker924', '2017-05-20', 'walkjason5', '2008-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS153264594082', '松井彩乃', 1, '+1 330-933-0913', 4, '736812804487867905', '454 Collier Road 3rd Floor, Akron, OH 44320, United States', '1985-06-05', 0, 0, 'matsuiayano', '2016-02-13', 'maaya', '2014-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS642045663028', '中森瑛太', 1, '+81 3-3573-1039', 2, '844407484173809063', '日本東京千代田区丸の内一丁目6番13号48号室', '1997-05-16', 0, 0, 'nakamoriei', '2010-03-20', 'nakamori63', '2020-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS426383588810', 'Kathryn Mendoza', 0, '+86 171-5072-4522', 1, '565698513891575002', 'Room 16, CR Building, 644 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1995-07-06', 0, 0, 'kam', '2018-06-24', 'kmend', '2002-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS178046217225', 'Keith Green', 0, '+44 (20) 1216 7878', 1, '910503553831468911', 'No.36 Main building, 315 Maddox Street, London, W1S 1PU, United Kingdom', '1990-06-25', 0, 0, 'greenkeith521', '2004-12-09', 'gk502', '2002-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS814893141100', '彭富城', 1, '+86 760-471-1988', 2, '722574943474966808', 'Room 22, CR Building, 203 Lefeng 6th Rd, Zhongshan, China', '1990-02-21', 0, 0, 'fspang', '2020-05-07', 'pangfs', '2014-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS269811895199', 'Curtis Mendoza', 0, '+44 5552 773579', 3, '469226208336852224', 'No.40 Main building, 660 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1989-01-29', 0, 0, 'mcurt718', '2015-07-26', 'curtism', '2007-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS855347496047', '汪世榮', 0, '+81 3-4174-4610', 3, '802888437481574938', '日本東京渋谷区代々木二丁目3番17号43階', '1995-07-03', 0, 0, 'saiwingw', '2008-04-17', 'wonsaiwing218', '2001-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS575555673570', '石田大和', 0, '+81 66-508-3217', 0, '128383879468375153', '日本おおさかし西成区天神ノ森二丁目1番8号3号室', '1990-03-30', 0, 0, 'ishida1', '2011-06-29', 'ishida108', '2005-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS190860712577', '西村愛梨', 0, '+81 66-413-8335', 1, '554404882785767739', '日本おおさかし西成区出城一丁目1番9号41階', '1992-09-15', 0, 0, 'anishimura3', '2021-08-20', 'nishimuraai46', '2002-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS546320574468', '菊地美月', 0, '+1 330-263-2781', 2, '688599745754962393', '263 West Market Street Apartment 49, Akron, OH 44333, United States', '1998-09-05', 0, 0, 'mitsukiki', '2008-05-30', 'kmitsuki', '2010-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS603887528053', '何安琪', 0, '+81 70-7851-6500', 4, '269475971543963244', '日本おおさかし東住吉区東田辺三丁目27番1号36階', '1992-02-12', 0, 0, 'hean', '2011-06-16', 'hanqi', '2003-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS599026269858', '前田大輔', 1, '+81 66-234-4244', 4, '359374690188396711', 'Rm. 9, 4-9-10 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-09-08', 0, 0, 'daisumae', '2009-12-31', 'maeda8', '2016-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS977847201220', 'Don Washington', 0, '+86 176-6838-4151', 1, '940932697145751978', 'No.19 building, No.422, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1990-01-30', 0, 0, 'donwashington4', '2002-03-10', 'washingtondon', '2004-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS655681826972', '鐘明詩', 0, '+86 21-5121-5958', 1, '115668894721278747', 'No.33 building, 572 Jianxiang Rd, Pudong, Shanghai, China', '1989-03-18', 0, 0, 'cmingsze', '2013-10-24', 'chungms', '2015-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS447260654813', '梅發', 0, '+44 7039 861478', 3, '696241693638398959', 'Flat 20, 111 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1994-12-17', 0, 0, 'fatmui414', '2017-07-28', 'muifat414', '2018-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS468970382319', '宣發', 0, '+81 52-486-4627', 3, '894071290739117102', '日本なごやし熱田区千年二丁目5番10号43階', '1995-09-18', 0, 0, 'faths', '2014-12-22', 'fhsuan4', '2015-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS243988575525', '蕭俊宇', 0, '+81 11-193-1281', 2, '011465372599161091', '日本札幌厚別区上野幌一条二丁目1番2号38階', '1995-03-19', 0, 0, 'sicy', '2008-05-03', 'schunyu', '2015-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS646466333628', 'Fred Rogers', 0, '+44 5398 584078', 2, '065387795957552216', 'No.6 Main building, 229 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1987-09-07', 0, 0, 'fredrogers', '2014-07-31', 'fredrogers', '2021-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS641492444206', '贾安琪', 1, '+86 178-1960-6029', 1, '416859136225409692', '中国北京市东城区东单王府井东街67号34室', '1992-05-19', 0, 0, 'jiaan', '2000-10-10', 'anj4', '2000-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS610403730115', '清水美月', 1, '+86 152-3151-2336', 2, '155000900974058045', 'Room 4, 382 Jianxiang Rd, Pudong, Shanghai, China', '1989-09-02', 0, 0, 'smitsuki', '2021-06-02', 'mitsukishimizu', '2008-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS799711924767', 'Marvin Meyer', 0, '+86 760-503-5579', 0, '485124204533026086', '35F, 181 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1985-11-17', 0, 0, 'meyemarvin08', '2014-10-20', 'meyermarvin', '2005-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS225323929835', 'Robert Chavez', 1, '+81 80-5720-8995', 1, '001026563853045884', '20F, 1-5-3, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1995-04-30', 0, 0, 'chavez8', '2010-09-11', 'robert8', '2015-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS609829765387', 'Janet Soto', 0, '+1 212-304-5718', 1, '250012472750517890', '722 Wooster Street Apt 17, New York, NY 10012, United States', '1996-08-31', 0, 0, 'sj57', '2004-04-02', 'sotojane', '2017-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS988095645290', '段宇宁', 0, '+1 212-999-3949', 2, '637595227657797384', '216 Fifth Avenue Apartment 36, New York, NY 10017, United States', '1999-01-17', 0, 0, 'duan10', '2005-06-02', 'dyuning', '2008-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS141454581990', '汪家強', 1, '+81 80-7423-6306', 3, '597605554168319609', '10-kai, 2-3-13 Yoyogi, Shibuya-ku, Tokyo, Japan', '1990-01-12', 0, 0, 'kakeung96', '2019-07-27', 'kakeungwong', '2001-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS360021850270', 'Anthony Thomas', 1, '+44 (151) 827 7202', 3, '163178682503479221', 'Flat 38, 380 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-10-14', 0, 0, 'at6', '2008-04-19', 'anthony91', '2011-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS911902664149', '高田湊', 0, '+1 838-983-7910', 1, '971036809121208328', '591 Central Avenue Apt 50, Albany, NY 12205, United States', '1997-06-23', 0, 0, 'mtakada1949', '2011-04-24', 'takadaminat8', '2009-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS532971560580', '梅學友', 1, '+81 80-7927-7870', 1, '963935083990173142', '33-kai, 1-7-12 Omido, Higashiosaka, Osaka, Japan', '1998-08-17', 0, 0, 'hymui', '2013-07-24', 'muihokyau', '2000-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS917441991675', 'Victoria Gibson', 0, '+86 10-2037-6867', 2, '051567078144954459', '中国北京市東城区東直門內大街468号30号楼', '1997-04-21', 0, 0, 'gvictoria', '2016-11-29', 'gibsonvic', '2011-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS223751149835', '杉山悠人', 0, '+86 180-4717-3358', 0, '466107834554079336', 'Room 2, CR Building, 371 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1990-03-10', 0, 0, 'yutosugiyama', '2014-12-27', 'sugiyyu811', '2016-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS958595242529', '野村玲奈', 1, '+1 213-935-3192', 1, '794336506271792877', '877 Grape Street Suite 5, Los Angeles, CA 90002, United States', '1989-09-27', 0, 0, 'nre', '2005-11-19', 'nr7', '2021-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS936134274806', '後藤美緒', 1, '+86 177-4274-5993', 3, '298209523252394858', '中国广州市天河区天河路283号13号楼', '1996-08-18', 0, 0, 'gomio', '2007-06-23', 'mio814', '2006-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS018415437915', '中森翼', 1, '+86 28-4092-8919', 3, '816410633736747262', '中国成都市成华区双庆路344号9楼', '1993-02-01', 0, 0, 'nt710', '2009-03-21', 'tsubasanak913', '2001-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS822616587153', '黃裕玲', 0, '+81 74-369-9126', 0, '220501632579800423', '日本ならし西大寺赤田町一丁目7番11号20号室', '1986-03-29', 0, 0, 'ylw5', '2002-10-10', 'yuling44', '2019-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS156333166380', '松田百恵', 0, '+86 175-8370-1354', 1, '380746630049578454', '中国成都市成华区双庆路338号34号楼', '1988-12-10', 0, 0, 'momoem', '2006-09-25', 'momoem', '2009-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS573961366614', '黃家明', 0, '+1 312-429-9691', 0, '756152437054517602', '69 Pedway Apartment 50, Chicago, IL 60601, United States', '1994-05-12', 0, 0, 'wongkaming819', '2007-04-30', 'kaming43', '2019-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS568683487830', '贺嘉伦', 1, '+44 (1865) 54 2077', 3, '788622804011969847', 'No.23 Main building, 49 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1988-12-25', 0, 0, 'jiahe57', '2015-03-28', 'hejial', '2021-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS458366349166', '武田百花', 0, '+81 90-2088-8555', 4, '201046368594544831', '日本東京中央区銀座三丁目12番20号6階', '1997-01-07', 0, 0, 'takedamomok', '2017-10-23', 'momta', '2020-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS108111280595', '宮崎光', 1, '+44 5719 069234', 3, '866371787611527552', 'Flat 42, 958 Portland St, Manchester, M1 3LA, United Kingdom', '1997-04-30', 0, 0, 'mihikaru4', '2010-09-11', 'hikarumiyazaki', '2010-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS517127011113', '馮玲玲', 0, '+1 838-997-1412', 0, '690543975326023712', '341 Broadway Apt 45, Albany, NY 12207, United States', '1990-10-07', 0, 0, 'linglingfu12', '2007-05-17', 'fll', '2008-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS347741838136', '宮本陽太', 1, '+86 132-9048-8343', 2, '036950343494126713', '17F, 363 Shennan Ave, Futian District, Shenzhen, China', '1997-08-02', 0, 0, 'miyamoto57', '2015-03-10', 'miyamoto71', '2003-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS900847788318', '有村大和', 1, '+81 74-030-9904', 2, '653814553820973103', '日本ならし西大寺赤田町一丁目7番9号9階', '1990-08-14', 0, 0, 'yaar84', '2003-07-17', 'ya5', '2011-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS609608865504', 'Jason Fernandez', 1, '+86 769-380-3781', 3, '961762726092867387', '中国东莞环区南街二巷191号华润大厦5室', '1994-12-09', 0, 0, 'fernandezj', '2013-03-20', 'fjason', '2002-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS352123305970', 'Todd Young', 0, '+81 66-068-5627', 1, '342611554915216309', '13-kai, 4-9-4 Kamihigashi, Hirano Ward, Osaka, Japan', '1998-03-05', 0, 0, 'young311', '2000-07-21', 'todd8', '2014-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS037321279150', 'Edward Fisher', 1, '+81 11-892-9588', 2, '341548870292662972', '2-kai, 2-1-15 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1988-01-18', 0, 0, 'fisher1960', '2005-06-20', 'edfisher', '2017-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS930707336398', '谢詩涵', 1, '+81 74-972-4338', 3, '333607843131340432', '34-kai, 1-7-1 Saidaiji Akodacho, Nara, Japan', '1990-05-17', 0, 0, 'shihanxie', '2019-02-17', 'xies503', '2015-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS293427577605', '陆安琪', 0, '+86 142-2746-6189', 2, '790577803205887106', '中国上海市黄浦区淮海中路132号华润大厦25室', '1987-01-23', 0, 0, 'luanqi420', '2014-09-12', 'alu', '2016-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS212600615009', '小島樹', 0, '+86 21-828-9591', 3, '832622176617713894', '17F, 87 Middle Huaihai Road, Huangpu District, Shanghai, China', '1987-07-27', 0, 0, 'ik10', '2018-12-23', 'itsukikoji', '2013-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS107782480605', '橋本桜', 0, '+44 (121) 152 9229', 3, '386053419075393167', 'Unit 19, Oxford Eco Centre, 663 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1991-09-05', 0, 0, 'sakurahashimoto9', '2011-11-23', 'hashimotosakur', '2004-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS791960105336', '黃慧珊', 0, '+1 718-362-6851', 2, '360324010184917635', '942 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1990-03-31', 0, 0, 'wowa9', '2011-05-06', 'waiswo4', '2014-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS857868383062', 'Kyle Morales', 0, '+86 191-8231-5351', 1, '496847190639470127', '中国广州市海珠区江南西路512号43室', '1997-06-15', 0, 0, 'moralkyle', '2014-12-21', 'mk3', '2005-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS135892881827', 'Steve Patterson', 0, '+81 3-0236-7859', 2, '179369698346596225', 'Rm. 30, 5-2-9 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1987-01-06', 0, 0, 'pattesteve', '2003-02-13', 'stevepatt', '2020-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS770857813462', '廖璐', 1, '+44 (151) 137 1772', 4, '724444312025139933', 'No.36 Main building, 719 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1997-01-14', 0, 0, 'liaolu', '2000-02-13', 'lul', '2008-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS397523721912', '梁曉彤', 1, '+86 10-1819-7182', 1, '523307733268712904', '10F, 53 Sanlitun Road, Chaoyang District, Beijing, China', '1992-05-17', 0, 0, 'leunghiu5', '2006-11-10', 'htleung', '2019-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS760882223896', '藍祖兒', 0, '+81 3-9917-2085', 4, '652368707865035166', 'Rm. 14, 1-5-2, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1993-06-19', 0, 0, 'choyee77', '2002-06-25', 'choyeelam', '2003-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS891943994566', '袁家玲', 0, '+86 138-2984-6592', 3, '905362680077864898', 'No.33 building, 637 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1992-11-21', 0, 0, 'yuenkl309', '2017-03-31', 'kaliy', '2002-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS373350220206', 'Earl Ford', 0, '+81 80-3044-5771', 0, '086324343560021328', '日本おおさかし西成区天神ノ森二丁目1番5号45号室', '1997-07-10', 0, 0, 'fordear', '2013-04-04', 'earlfor', '2007-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS362191062665', '葉安琪', 0, '+86 182-3159-4304', 3, '758114311618468152', '中国广州市白云区小坪东路257号华润大厦9室', '1997-05-23', 0, 0, 'yipok1962', '2011-10-07', 'yonkay7', '2014-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS955060417206', '市川葵', 0, '+86 20-4458-2503', 4, '536452106725610849', 'Room 50, 542 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-05-10', 0, 0, 'aoiichikawa', '2005-01-08', 'ichikawa1983', '2017-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS371081356849', '韩嘉伦', 0, '+1 213-045-8438', 3, '331342195574266734', '846 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1993-03-13', 0, 0, 'hanjialun', '2007-11-18', 'jh120', '2014-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS052558099580', 'Douglas Parker', 1, '+81 80-1516-1228', 2, '493053451904743415', '24F, 5-4-16 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-10-27', 0, 0, 'dp308', '2020-05-13', 'parkdo12', '2017-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS511540650724', '何璐', 1, '+86 20-534-9840', 1, '044635381612079813', '中国广州市海珠区江南西路636号14号楼', '1985-07-09', 0, 0, 'helu03', '2019-07-17', 'lu8', '2007-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS713257684379', 'Tammy Hunter', 0, '+44 5259 725556', 1, '395632490314484775', 'Flat 45, 235 Regent Street, London, W1B 2LX, United Kingdom', '1997-01-24', 0, 0, 'huntertam', '2006-08-02', 'tahunter', '2008-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS998210987509', '侯璐', 1, '+86 149-2893-4068', 2, '927351416888484000', 'Room 42, CR Building, 520 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1986-03-07', 0, 0, 'hlu', '2005-09-25', 'lhou', '2007-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS252640462809', '馮詩君', 0, '+44 7750 279312', 0, '879527307521984867', 'Flat 34, 37 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1989-05-20', 0, 0, 'szekwanfung93', '2004-01-13', 'szekwanfun', '2019-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS590936505249', '陶仲賢', 0, '+86 10-4265-3466', 3, '065674169627875201', 'No.35 building, 658 West Chang''an Avenue, Xicheng District, Beijing, China', '1993-04-23', 0, 0, 'tacy10', '2003-10-11', 'chungyintao', '2003-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS980392104269', 'Allen Jones', 0, '+86 139-2977-9932', 0, '694374352541588626', 'No.50 building, 470 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1998-02-07', 0, 0, 'jones120', '2004-10-24', 'jonesallen', '2012-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS822997406143', '戴國榮', 0, '+44 7865 627257', 2, '910953304188671643', 'Unit 21, Oxford Eco Centre, 79 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1997-10-18', 0, 0, 'kwokwingda2', '2008-06-05', 'daikwokwing1019', '2018-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS444725481216', 'Kathryn Castro', 0, '+86 769-249-7794', 1, '316390854957947130', 'No.18 building, 365 Shanhu Rd, Dongguan, China', '1987-07-17', 0, 0, 'ckath', '2005-12-30', 'castro4', '2006-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS694878262935', '中村光', 1, '+86 134-6247-6803', 2, '923676074976839040', '39F, 55 028 County Rd, Yanqing District, Beijing, China', '1993-09-15', 0, 0, 'nakhi', '2006-12-04', 'nakamurahikaru', '2017-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS961869455633', '羅玲玲', 1, '+81 66-290-0716', 2, '898213042039067683', '日本おおさかし東住吉区東田辺三丁目27番8号50号室', '1987-02-12', 0, 0, 'lllo94', '2005-02-13', 'lingling1', '2004-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS097827473221', '伊藤湊', 1, '+44 5310 710078', 2, '786122341265723036', 'Unit 47, Oxford Eco Centre, 350 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1994-06-03', 0, 0, 'itominat', '2019-12-10', 'minait', '2012-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS675820670164', '車思妤', 1, '+81 80-3157-0936', 3, '255362042576849440', '22F, 1-6-9, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1990-08-22', 0, 0, 'chesy', '2017-09-02', 'cszeyu9', '2019-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS999925234210', '萬志遠', 0, '+1 312-446-8623', 2, '160479392371411789', '620 North Michigan Ave Apt 47, Chicago, IL 60611, United States', '1993-11-05', 0, 0, 'chiyuenm08', '2007-07-08', 'cym', '2021-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS955225855137', '藤田一輝', 1, '+44 (1223) 13 0738', 3, '079082820076699765', 'Unit 32, Oxford Eco Centre, 895 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1990-10-21', 0, 0, 'ikkifuji2017', '2013-01-24', 'ikkifu', '2002-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS503366482711', 'Paula Adams', 1, '+86 21-719-1647', 0, '503691423441990673', 'No.31 building, 610 Middle Huaihai Road, Huangpu District, Shanghai, China', '1989-06-11', 0, 0, 'paulaadams', '2008-03-22', 'adamspau', '2007-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS582435804243', '佘祖兒', 0, '+44 (161) 720 2030', 2, '051523330093685909', 'No.13 Main building, 636 Portland St, Manchester, M1 3LA, United Kingdom', '1987-08-24', 0, 0, 'shehcy46', '2020-08-23', 'shehchoyee', '2010-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS952503765971', '苑惠敏', 1, '+86 20-859-2902', 2, '807257604247296401', '40F, 823 Xiaoping E Rd, Baiyun , Guangzhou, China', '1998-11-06', 0, 0, 'wmyuen', '2011-06-08', 'yuen2019', '2016-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS883794218019', '原大地', 0, '+86 144-8983-9449', 4, '287101597859070461', '中国广州市白云区小坪东路959号31室', '1992-09-03', 0, 0, 'haradaich', '2000-11-02', 'daichhar', '2015-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS871342341167', '斉藤詩乃', 1, '+86 159-4527-0658', 0, '515851470081480686', '中国深圳罗湖区田贝一路175号华润大厦39室', '1998-06-21', 0, 0, 'sashino', '2012-11-25', 'shinsaito605', '2013-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS788039194693', '孔云熙', 0, '+86 20-6170-0096', 3, '970974371136058802', 'No.2 building, 703 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1999-01-10', 0, 0, 'yko1', '2019-12-03', 'yukon3', '2017-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS079119830881', '林花', 0, '+1 614-777-1217', 2, '374295241398744653', '479 East Alley Suite 32, Columbus, GA 43201, United States', '1991-09-27', 0, 0, 'hayashih', '2008-12-05', 'hanahayashi226', '2017-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS917322464021', '周嘉伦', 1, '+1 838-326-6491', 3, '451082243468647325', '327 Central Avenue Apartment 30, Albany, NY 12206, United States', '1995-08-24', 0, 0, 'jialunzho1954', '2021-10-14', 'zjialun', '2008-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS663617165405', 'Robert Hamilton', 0, '+81 90-1645-8602', 0, '035383978306518738', 'Rm. 2, 2-1-3 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1985-07-01', 0, 0, 'roberhamilton', '2019-07-11', 'hamilton66', '2010-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS157866029747', '蔡頴璇', 1, '+1 718-944-6107', 0, '252649661719104524', '495 Columbia St Apt 21, Brooklyn, NY 11231, United States', '1995-06-05', 0, 0, 'chowingsuen5', '2021-02-25', 'cws1955', '2014-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS274588068563', '顾安琪', 0, '+86 168-6263-3726', 3, '737472916120958080', '中国上海市浦东新区健祥路346号4栋', '1996-07-23', 0, 0, 'anqgu10', '2003-01-04', 'gu2', '2017-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS638798750007', '鐘安琪', 0, '+81 90-2000-9777', 3, '361171354935888097', '40-kai, 5-2-4 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-05-09', 0, 0, 'onkaychun1979', '2002-02-28', 'chuok', '2004-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS516508246831', '苏詩涵', 1, '+86 196-9972-9596', 4, '035767944844096632', 'No.32 building, 701 Shanhu Rd, Dongguan, China', '1999-01-10', 0, 0, 'sushih', '2000-02-22', 'sushihan1994', '2018-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS596336015763', 'Peter Garcia', 1, '+1 614-540-2485', 1, '797768881850451899', '355 East Cooke Road Apt 45, Columbus, GA 43214, United States', '1987-06-01', 0, 0, 'garcia8', '2010-02-14', 'garciapeter', '2020-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS674775909130', '宣安娜', 1, '+1 212-298-8631', 2, '726033825453876775', '569 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1988-05-29', 0, 0, 'onnah49', '2004-03-30', 'onnahsua', '2018-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS690272168926', 'Pamela Reed', 1, '+81 90-9278-2725', 1, '533378519065850974', '39-kai, 9 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-04-28', 0, 0, 'rep', '2003-05-03', 'reedpamela', '2009-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS097646459260', '鄧梓晴', 0, '+81 90-0796-0535', 0, '233705546660256142', '日本おおさかし近江堂一丁目7番9号5階', '1986-05-31', 0, 0, 'tctang84', '2002-08-29', 'tantszching', '2014-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS990965394618', '渡辺翼', 1, '+86 10-3573-9858', 2, '018779640341634465', '中国北京市海淀区清河中街68号643号28室', '1991-07-27', 0, 0, 'sato1', '2003-07-29', 'sato729', '2001-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS421329729774', '汪詩君', 1, '+86 10-591-8802', 2, '352760969662959387', '中国北京市海淀区清河中街68号386号31室', '1991-07-17', 0, 0, 'szwong', '2011-04-04', 'skw', '2021-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS728358704922', '成俊宇', 0, '+86 191-7521-3899', 1, '189195790183098438', '中国东莞珊瑚路699号43室', '1986-07-24', 0, 0, 'shingchunyu3', '2019-11-14', 'shinchunyu', '2016-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS933808449925', '楊家強', 0, '+81 80-9182-5172', 2, '859395108781135937', '日本おおさかし西成区天神ノ森二丁目1番19号49階', '1999-01-25', 0, 0, 'kkye', '2020-04-19', 'yeungkakeung4', '2009-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS564839134632', '崔惠敏', 1, '+86 21-6043-3016', 2, '951064730702821131', 'No.29 building, 227 Ganlan Rd, Pudong, Shanghai, China', '1991-02-04', 0, 0, 'choi415', '2005-05-06', 'wmchoi1112', '2021-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS624702231731', '邓宇宁', 0, '+81 52-594-0410', 4, '084432105581422228', '日本なごやし守山区瀬古東二丁目171番20号26階', '1999-02-05', 0, 0, 'dyun', '2006-04-06', 'deng6', '2005-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS166357753451', 'Laura Carter', 0, '+81 70-1584-7635', 3, '491775679151335068', 'Rm. 30, 5-2-6 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1993-05-09', 0, 0, 'cal3', '2021-03-24', 'calau48', '2005-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS604574823856', 'Joseph Smith', 1, '+44 5759 870278', 2, '424855463774415455', 'Flat 23, 234 Mosley St, Manchester, M2 3AQ, United Kingdom', '1989-08-08', 0, 0, 'joseph56', '2021-01-20', 'smith10', '2007-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS583195918630', '劉曉彤', 1, '+81 70-9993-0323', 4, '983010632545109221', '日本東京渋谷区代々木二丁目3番9号4号室', '1992-08-02', 0, 0, 'htlau', '2008-07-05', 'hiutung7', '2005-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS893234420665', '戴嘉伦', 1, '+44 7113 185156', 0, '903525678406730728', 'Block 19, 644 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1986-10-01', 0, 0, 'daj', '2015-09-20', 'djialun', '2012-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS667499065088', '宮崎和真', 0, '+86 156-9495-1659', 3, '383899252327746665', '中国深圳罗湖区蔡屋围深南东路903号36室', '1994-06-06', 0, 0, 'kazmiyazaki10', '2006-12-09', 'mik', '2015-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS703992134604', '秦嘉伦', 0, '+44 7356 697395', 3, '747551087769953664', 'Flat 38, 992 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-08-17', 0, 0, 'jialunqin', '2016-08-09', 'qin1124', '2006-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS969064831300', 'Jeffery Flores', 1, '+81 70-8958-8366', 4, '286514365601941677', '43F, 10 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-02-24', 0, 0, 'floresj', '2003-09-05', 'fljeffery', '2017-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS114986040034', '有村舞', 1, '+1 330-194-4167', 0, '927220970263325502', '861 West Market Street Apartment 42, Akron, OH 44333, United States', '1992-09-24', 0, 0, 'maia1975', '2019-11-29', 'amai', '2004-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS576078217510', 'Virginia King', 0, '+86 10-3082-8736', 3, '338694975203526542', 'No.49 building, 260 Sanlitun Road, Chaoyang District, Beijing, China', '1986-12-12', 0, 0, 'kingvi', '2000-08-04', 'virginia503', '2007-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS945391375507', '小島健太', 0, '+86 760-082-7789', 0, '385020742868576986', '中国中山京华商圈华夏街276号3室', '1989-05-16', 0, 0, 'kojima1221', '2001-11-28', 'kentakojim', '2008-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS317366189702', 'Henry Hall', 0, '+81 74-852-4625', 2, '907908934655699041', 'Rm. 45, 1-7-5 Saidaiji Akodacho, Nara, Japan', '1989-09-14', 0, 0, 'hall101', '2017-05-08', 'hallhenry', '2000-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS987571344256', 'Bradley Hayes', 1, '+86 159-1119-8783', 3, '626823542945377272', '中国成都市成华区玉双路6号947号4栋', '1998-10-08', 0, 0, 'hayesbr', '2019-04-28', 'bhayes7', '2022-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS869226272130', 'Amanda James', 1, '+1 718-224-7822', 1, '978883221142598487', '671 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1990-10-15', 0, 0, 'aj1941', '2004-11-19', 'amandajames69', '2019-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS958753005972', '许子异', 1, '+86 28-126-1313', 1, '983456799032730512', 'Room 24, CR Building, 372 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1998-03-10', 0, 0, 'xuzi', '2012-07-06', 'ziyi5', '2021-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS753032495959', '胡嘉欣', 1, '+44 (1865) 50 6854', 3, '378246324702140188', 'Block 40, 391 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1990-04-26', 0, 0, 'kywu', '2005-08-17', 'karyanwu', '2009-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS076194124901', '酒井光莉', 0, '+81 66-756-6491', 1, '273169220793998918', '日本おおさかし西成区天神ノ森二丁目1番9号41号室', '1996-06-29', 0, 0, 'shik', '2017-07-21', 'sakaihikari9', '2002-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS933786002259', '許天榮', 0, '+86 760-7603-4611', 2, '684000368139311891', '中国中山紫马岭商圈中山五路320号38楼', '1992-12-13', 0, 0, 'tinwinghui', '2017-11-14', 'twhu', '2012-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS321176713461', 'Danny Richardson', 0, '+86 176-2214-4133', 2, '080343251733149101', '中国北京市海淀区清河中街68号831号20室', '1987-12-29', 0, 0, 'danny9', '2005-05-10', 'danny7', '2019-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS837062452698', '梅惠敏', 0, '+86 755-277-1373', 0, '984317938006991519', 'Room 35, CR Building, 815 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1993-02-07', 0, 0, 'mui11', '2008-10-24', 'muwm', '2007-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS750428483707', 'Anna Johnson', 0, '+1 212-070-9292', 0, '721029273590221125', '27 Bank Street Apt 35, New York, NY 10014, United States', '1995-06-17', 0, 0, 'anjohnson', '2009-03-20', 'johnsonanna5', '2020-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS985237056596', 'Gregory Henry', 1, '+81 52-870-0508', 2, '544346265943500425', '4-kai, 1 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1986-01-21', 0, 0, 'gregohenr7', '2002-08-30', 'henrygregory', '2005-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS155670608147', 'John Dunn', 0, '+1 330-295-1908', 3, '030057284607578559', '212 Collier Road Suite 33, Akron, OH 44320, United States', '1988-09-14', 0, 0, 'dujohn6', '2017-12-31', 'johndunn', '2003-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS909506439162', 'Jerry Robertson', 1, '+81 66-460-8574', 1, '805766982283957948', '日本おおさかし平野区加美東四丁目9番8号18階', '1989-04-05', 0, 0, 'robjerry9', '2003-11-23', 'robejerry1114', '2018-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS135476062161', '文詠詩', 0, '+86 755-2947-1028', 2, '665595015869134102', 'No.18 building, 66 Shennan Ave, Futian District, Shenzhen, China', '1988-08-21', 0, 0, 'wingszeman', '2021-04-10', 'man1029', '2010-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS008091452628', '尹岚', 1, '+81 70-0101-5870', 4, '315488004807127381', '日本ならし西大寺赤田町一丁目7番9号24階', '1991-08-11', 0, 0, 'lan4', '2015-11-28', 'lan501', '2018-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS908542223434', 'Rosa Miller', 1, '+81 70-8649-3840', 0, '568090249514695443', '47F, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1989-12-24', 0, 0, 'miller6', '2002-08-01', 'mirosa4', '2007-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS892225457169', 'Bonnie Tucker', 1, '+81 66-743-5401', 2, '469948823046853238', '日本おおさかし近江堂一丁目7番10号47階', '1991-06-03', 0, 0, 'tucker1963', '2005-09-19', 'tuckbonn', '2006-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS609469812492', '马子异', 1, '+81 74-029-6415', 3, '477690410527741446', '日本ならし大和郡山市本庄町一丁目1番11号33階', '1987-12-06', 0, 0, 'ma112', '2017-12-01', 'zma', '2005-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS056696035574', '罗子韬', 1, '+81 70-1607-8883', 3, '272949903873951784', 'Rm. 42, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1997-11-23', 0, 0, 'zl9', '2006-09-22', 'luozit', '2018-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS521027552580', 'Maria Reynolds', 0, '+81 11-614-5408', 2, '650257177945936124', '日本札幌白石区菊水三条五丁目4番4号38階', '1996-04-03', 0, 0, 'reynmari', '2012-06-22', 'maria424', '2000-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS830580740384', '郝云熙', 1, '+1 312-706-9992', 3, '233845992763747968', '32 North Michigan Ave Apartment 48, Chicago, IL 60611, United States', '1991-05-19', 0, 0, 'hy4', '2019-05-11', 'yhao', '2012-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS816017066698', '任裕玲', 1, '+1 838-159-3764', 3, '858088642253650873', '271 Lark Street Apartment 14, Albany, NY 12210, United States', '1998-02-11', 0, 0, 'yulingyam71', '2018-02-05', 'yamyl1', '2017-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS382881221656', 'Phillip Miller', 0, '+86 755-9297-1722', 3, '888051289034926124', '中国深圳罗湖区蔡屋围深南东路829号21栋', '1990-12-26', 0, 0, 'miller6', '2004-08-17', 'phillipm917', '2008-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS144007969182', '阎杰宏', 1, '+86 159-9850-8840', 1, '003424148118629431', 'Room 42, CR Building, 261 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1998-04-03', 0, 0, 'jieyan5', '2016-05-20', 'yan84', '2000-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS406361406172', '毛晓明', 1, '+81 90-2408-0950', 3, '152645699775150561', '23-kai, 3-27-6 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1997-11-09', 0, 0, 'xiaoming5', '2018-07-05', 'maoxiaoming116', '2002-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS276416485455', '馮惠敏', 1, '+86 10-3576-2703', 2, '469806555346669972', '中国北京市海淀区清河中街68号681号22室', '1992-08-04', 0, 0, 'fungwm81', '2000-10-31', 'fwaiman', '2018-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS190987148430', '錢潤發', 0, '+44 (151) 055 7841', 1, '928206544703806043', 'Unit 42, Oxford Eco Centre, 317 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1991-10-01', 0, 0, 'chyf', '2020-12-09', 'yfc', '2005-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS077454508103', '上田一輝', 0, '+81 90-5912-6230', 2, '787456241976405337', '日本おおさかし西成区天神ノ森二丁目1番9号32階', '1987-05-18', 0, 0, 'uikki', '2012-09-04', 'uedai', '2017-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS597189266320', '工藤紗良', 0, '+86 769-7242-4455', 4, '625978735121567545', 'No.19 building, 349 Dongtai 5th St, Dongguan, China', '1992-05-13', 0, 0, 'sarakud', '2009-03-01', 'kusa', '2017-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS392912616981', '藍青雲', 1, '+86 21-4416-0517', 4, '401203779333665986', 'Room 33, CR Building, 746 Middle Huaihai Road, Huangpu District, Shanghai, China', '1995-04-24', 0, 0, 'lamchingwan', '2012-03-01', 'lamcw', '2019-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS410502590101', '斎藤光莉', 0, '+44 (1223) 42 2583', 1, '124336921541766437', 'Unit 21, Oxford Eco Centre, 634 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1989-04-22', 0, 0, 'saitohikari', '2021-07-30', 'saitohikari7', '2010-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS331133666927', '森田陸', 1, '+81 80-7393-9474', 2, '224252941282980296', '8F, 1-5-3, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1998-03-02', 0, 0, 'rikumorita3', '2014-08-05', 'rmorita', '2016-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS051708459354', '村上架純', 0, '+1 212-674-2391', 1, '700414880998513263', '185 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1998-10-13', 0, 0, 'murkasu', '2018-11-16', 'kasumimurakami6', '2005-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS799112704329', '橋本悠人', 0, '+44 (161) 425 7096', 2, '565779837659087487', 'Block 18, 415 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-11-17', 0, 0, 'yuto2', '2016-01-21', 'yuhashi1949', '2009-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS918480589642', '有村涼太', 0, '+86 181-8235-6083', 0, '408439084035215067', 'Room 9, CR Building, 217 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1992-07-01', 0, 0, 'arryota', '2009-04-18', 'ryotaarimura', '2013-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS349042844196', 'Teresa Miller', 1, '+86 154-3389-2650', 2, '934693717349773178', 'No.43 building, 945 Hongqiao Rd., Xu Hui District, Shanghai, China', '1990-09-18', 0, 0, 'miller10', '2011-05-12', 'teresa5', '2004-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS360307233128', '李詩涵', 1, '+81 90-6683-6568', 3, '165598647107168391', '日本なごやし守山区瀬古東二丁目171番11号37階', '1995-11-04', 0, 0, 'shihli411', '2001-02-19', 'lishihan', '2021-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS339837092523', '田村玲奈', 0, '+81 3-0621-0527', 3, '402536533385847042', 'Rm. 38, 3-15-12 Ginza, Chuo-ku, Tokyo, Japan', '1995-09-07', 0, 0, 'renata7', '2013-01-31', 'tare', '2005-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS536159964359', '宮崎光莉', 1, '+86 10-367-1106', 2, '481624522371907193', '中国北京市东城区东单王府井东街595号41号楼', '1994-04-17', 0, 0, 'miyazakihik', '2011-03-22', 'miyahi', '2000-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS929935807363', '武子异', 0, '+81 80-3978-9310', 0, '939716537824464881', '日本おおさかし近江堂一丁目7番15号34階', '1992-05-17', 0, 0, 'ziyiwu', '2017-06-29', 'ziywu', '2010-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS335935628220', 'Jeffrey Bailey', 1, '+44 7055 695742', 3, '103788855799708586', 'Flat 31, 193 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1985-01-02', 0, 0, 'jeffbai', '2008-10-18', 'jeffreybailey', '2001-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS316830411880', 'Samuel Edwards', 1, '+86 192-2299-1098', 4, '300260886318087329', '41F, 136 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1985-12-04', 0, 0, 'samuel5', '2001-10-02', 'samuel309', '2010-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS624710039779', '青木樹', 1, '+44 (1865) 81 3798', 1, '050399913231786950', 'Flat 32, 416 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1996-09-27', 0, 0, 'itsuki1210', '2003-01-12', 'aokits', '2020-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS531110396146', '苏云熙', 1, '+81 90-8167-4113', 2, '924020549633537681', 'Rm. 17, 2-1-19 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-05-12', 0, 0, 'yunxis10', '2014-05-09', 'yunxsu', '2016-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS287098533807', 'Joanne Anderson', 1, '+1 718-474-0762', 2, '819627841416813937', '268 Flatbush Ave Suite 40, Brooklyn, NY 11225, United States', '1996-10-01', 0, 0, 'andersonjoanne', '2017-03-04', 'anjoanne16', '2003-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS721019386407', 'Janet Rodriguez', 0, '+1 614-421-6930', 4, '339089929833780270', '605 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1987-06-25', 0, 0, 'rodja', '2000-08-11', 'jarod3', '2005-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS861158415591', '松本悠人', 1, '+86 28-1810-4332', 0, '054165479907958714', '中国成都市成华区玉双路6号90号49号楼', '1990-06-12', 0, 0, 'mayut', '2021-12-31', 'mayut', '2019-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS082204969526', 'Mildred Stone', 0, '+86 755-0242-3959', 4, '266622930627123670', 'Room 31, 496 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1988-04-24', 0, 0, 'stonemildred5', '2005-05-09', 'mis', '2016-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS218038034892', 'Bobby Miller', 0, '+86 20-881-2712', 1, '033741694117305972', '中国广州市海珠区江南西路885号15室', '1986-08-05', 0, 0, 'bmiller', '2018-06-20', 'bm1211', '2010-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS563553181959', 'Alfred Ward', 0, '+44 (20) 3252 1332', 1, '806109579607930970', 'Unit 36, Oxford Eco Centre, 708 Hanover Street, London, W1S 1YD, United Kingdom', '1993-04-09', 0, 0, 'alfredwar', '2022-03-01', 'alfred1', '2000-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS539602109463', '汤睿', 1, '+86 133-3584-1646', 3, '817737587048502352', '中国东莞环区南街二巷697号49栋', '1989-10-16', 0, 0, 'tangrui', '2019-05-20', 'ruitang530', '2011-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS360256507581', 'Leonard Hunt', 1, '+86 760-127-4295', 1, '923432177437259564', 'Room 10, 123 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1986-06-11', 0, 0, 'hunt217', '2013-03-25', 'leonhunt', '2021-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS543847691560', '酒井花', 1, '+44 (161) 813 8023', 1, '190740417342211424', 'Block 50, 72 Mosley St, Manchester, M2 3AQ, United Kingdom', '1990-03-03', 0, 0, 'sakaha', '2009-01-03', 'hanas7', '2002-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS877310331659', '莫世榮', 0, '+81 70-9057-7378', 0, '646665050764707784', '日本東京渋谷区代々木二丁目3番12号35階', '1996-08-21', 0, 0, 'moksw', '2002-07-22', 'moksa60', '2009-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS168674626539', '小島健太', 0, '+44 5943 068886', 2, '940985330987556913', 'No.19 Main building, 958 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1987-09-10', 0, 0, 'kentako6', '2021-05-25', 'kojima806', '2005-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS424118786445', 'Ray Morales', 0, '+81 80-2518-4865', 1, '692590734862418206', 'Rm. 6, 5-2-5 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-10-24', 0, 0, 'ray1', '2008-02-21', 'rmorales', '2016-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS915499303084', '梅永權', 1, '+44 5050 687859', 3, '851091794459410246', 'Unit 23, Oxford Eco Centre, 855 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1993-12-29', 0, 0, 'wkm1130', '2021-09-18', 'muiwingkuen527', '2016-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS157697282952', '池田大和', 0, '+86 10-760-7071', 3, '281297851188152067', '中国北京市东城区东单王府井东街463号33栋', '1998-01-28', 0, 0, 'yamato612', '2019-03-27', 'yamato9', '2016-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS981566373220', '薛嘉欣', 1, '+81 80-1913-6649', 3, '260231252870218459', '日本おおさかし西成区出城一丁目1番7号12階', '1995-01-18', 0, 0, 'karyansit', '2016-09-06', 'skaryan', '2006-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS068033846669', '孫家輝', 1, '+81 90-1252-8724', 2, '011289092854126954', '日本東京中央区銀座三丁目12番16号38号室', '1987-10-14', 0, 0, 'hkf75', '2006-09-28', 'hsukafai', '2006-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS423334651744', '小林悠人', 0, '+81 66-669-1844', 2, '523456130675385123', '日本おおさかし平野区加美東四丁目9番13号23階', '1997-08-10', 0, 0, 'yutkobayashi', '2002-01-04', 'yutokobayashi', '2007-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS271321501585', '青木蓮', 0, '+81 3-4519-8915', 2, '846577743936437865', 'Rm. 49, 2-3-6 Yoyogi, Shibuya-ku, Tokyo, Japan', '1994-06-17', 0, 0, 'aoki5', '2019-01-08', 'raoki', '2013-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS045670031855', '桜井一輝', 0, '+81 90-6296-5692', 0, '171429221484577403', '日本おおさかし平野区加美東四丁目9番17号7階', '1994-09-16', 0, 0, 'ikkisakurai129', '2001-08-27', 'ikkisakurai416', '2004-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS535717266127', '元思妤', 1, '+1 213-322-4670', 1, '380772937161820337', '943 Sky Way Apt 33, Los Angeles, CA 90043, United States', '1995-05-31', 0, 0, 'yuesy88', '2011-04-21', 'yuenszeyu', '2002-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS947195745485', 'Marjorie Schmidt', 0, '+1 614-108-4144', 4, '926038262973630078', '419 Diplomacy Drive Apt 9, Columbus, GA 43228, United States', '1986-03-12', 0, 0, 'marjorie10', '2012-08-28', 'marjorieschm', '2010-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS180483694370', '尹家輝', 1, '+86 168-6981-7111', 4, '833776497615939427', '中国东莞珊瑚路223号33楼', '1987-10-06', 0, 0, 'kfy', '2003-09-30', 'yin7', '2005-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS123420383359', '曾云熙', 0, '+1 718-658-3061', 2, '411670909969401896', '388 Columbia St Suite 43, Brooklyn, NY 11231, United States', '1987-09-26', 0, 0, 'yuzeng', '2021-07-07', 'zyun09', '2021-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS853704634564', '任浩然', 0, '+81 70-3277-0363', 3, '785301348653898569', 'Rm. 36, 1-7-12 Omido, Higashiosaka, Osaka, Japan', '1990-01-30', 0, 0, 'hoyin9', '2020-06-09', 'yamhy7', '2007-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS877860380626', '遠藤美緒', 0, '+1 614-140-4655', 1, '544058440026353729', '364 Tremont Road Apt 3, Columbus, GA 43212, United States', '1996-04-03', 0, 0, 'endo9', '2000-09-13', 'endomio', '2000-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS573362709839', '佐々木葵', 0, '+86 146-4239-9668', 2, '749346919822522282', '29F, 16 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1991-06-13', 0, 0, 'sasakiaoi2', '2013-08-30', 'sasaki122', '2019-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS722552914991', '橋本樹', 0, '+86 165-2023-7134', 2, '213280961863322422', '中国北京市海淀区清河中街68号873号华润大厦36室', '1996-05-06', 0, 0, 'hashimotoi', '2012-10-19', 'ith3', '2018-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS007526828178', '杨杰宏', 0, '+86 141-0422-5667', 1, '076444939695479983', '中国上海市徐汇区虹桥路175号31号楼', '1986-11-06', 0, 0, 'jiehongyang1117', '2007-07-02', 'yjiehong', '2007-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS553449279225', '成心穎', 1, '+1 838-371-4251', 2, '694794433839856621', '112 Broadway 3rd Floor, Albany, NY 12207, United States', '1993-05-25', 0, 0, 'shing3', '2011-09-26', 'shing10', '2001-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS403533871308', '史子异', 0, '+86 184-8565-0873', 3, '577991713197999143', 'Room 9, 109 East Wangfujing Street, Dongcheng District , Beijing, China', '1995-09-19', 0, 0, 'shiziyi910', '2015-11-28', 'shizi', '2005-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS006292728074', '高田翼', 1, '+86 194-2940-5925', 4, '651566571905851983', '中国中山乐丰六路899号40室', '1995-04-01', 0, 0, 'ttak', '2004-03-13', 'tsubasatakad1206', '2014-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS466007180352', '平野湊', 1, '+81 90-5341-1140', 4, '920281919030806739', '38F, 2-1-15 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1992-09-18', 0, 0, 'hirm1950', '2013-12-18', 'minatohi1978', '2004-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS305850239180', '宋睿', 1, '+81 74-950-9344', 0, '492459315289151466', 'Rm. 7, 1-7-1 Saidaiji Akodacho, Nara, Japan', '1988-09-27', 0, 0, 'rui53', '2012-09-15', 'ruisong', '2019-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS684517602537', '野村光莉', 0, '+86 10-5317-5445', 1, '093082463812152903', '中国北京市海淀区清河中街68号735号36楼', '1999-01-08', 0, 0, 'hikari03', '2002-06-11', 'nomurahikar', '2015-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS781860118836', 'Cynthia Porter', 0, '+86 755-8186-7067', 2, '603651636704688338', 'Room 39, 921 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1995-02-17', 0, 0, 'portcyn2020', '2016-12-23', 'porterc206', '2001-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS412633816177', 'Marjorie Nguyen', 1, '+81 80-2063-5012', 2, '136267009068564439', '20F, 5-4-4 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-12-23', 0, 0, 'marn', '2020-03-28', 'marjn', '2013-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS087159933970', '胡嘉伦', 1, '+81 52-679-8427', 2, '803540270467304392', 'Rm. 31, 11 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1998-09-11', 0, 0, 'jihu', '2014-03-19', 'hujial', '2014-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS878694845413', '汤安琪', 1, '+81 52-848-4625', 3, '249154644886372172', '45-kai, 3-19-1 Shimizu, Kita Ward, Nagoya, Japan', '1993-04-07', 0, 0, 'tangan', '2006-02-20', 'anqit806', '2018-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS146348541580', '橋本彩乃', 1, '+81 70-4225-8332', 0, '712519416947178220', '17F, 2-5-15 Chitose, Atsuta Ward, Nagoya, Japan', '1987-12-07', 0, 0, 'ayanohashimoto1226', '2001-01-08', 'hashimotoa', '2006-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS926053307063', 'Ralph Reed', 0, '+44 7468 513918', 4, '674740319983741180', 'No.46 Main building, 810 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1987-04-20', 0, 0, 'ralpreed', '2020-06-11', 'reedr', '2020-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS822461600037', '李安琪', 0, '+86 28-563-7903', 3, '469286030501864801', '中国成都市成华区双庆路149号17室', '1988-10-12', 0, 0, 'leeok', '2019-11-21', 'oklee6', '2012-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS262309268266', '方世榮', 1, '+86 769-572-6686', 1, '752878073973834050', '中国东莞珊瑚路347号48楼', '1996-02-17', 0, 0, 'saiwingfon', '2009-07-05', 'fonsaiwing', '2021-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS556766143797', 'Wanda Murphy', 0, '+44 7665 299458', 2, '574312091262321304', 'No.1 Main building, 682 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1995-07-06', 0, 0, 'murw', '2007-01-27', 'murphywanda127', '2018-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS-202200141', '小优', 0, 'Z7aKblOdOULSmO21jJs4IsA2wUHFUwm6UvdgtuB/wv97xH9wL0O/iYqeAEMdZfPm9YW2a3NhTM+1b4R+FUb2oJ6H0UAKvXHCc9kdYqIvQsI9yl5W9YcNWKFyMIqVPVgJavz311inZWLzMx8f1curueHGf/xWctqI95F7gqGw3tQ=·Fi0agF0DHDHa☆D0☆0☆F(b34b116d0691f721)', 0, 'HEACqzhKX8FE3Rij7wbpnQtU9ZhJc6J7LkSJ0zkhkYv08226EADCPrjT8OrJ+vbxoOyr/jGHZpsWgmlxIrZQIBcWcNELXnWgTwoTgHGsV1xSRAMMc01uZa00MPnByDJWVL9lu2HRr4U2fAS+4dHfCtzUa/09fUh27lUYOgej+IA=·Fi0agF0DHDg☆BDi0DiF(6dc6398f5b0a2663)', '广东省', '1995-12-14', 0, 0, 'WK010', '2022-03-13', NULL, '0001-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS-202200136', '路三强', 1, 'hFxwk9iEl220yf/BbiTKcsqfUS2O4fIM2aJ/jr7hSG0oAhUPYMzLcBmd2Y4ueJHT3bPhnzR1NExGt1zBZjw0E8yopzig8J+HUyOJbdZUAwxw0lq1wKiyxNQxNeqC17c22+tUjrJqOL49+JB5Y762A6FY/vOvtA0sWhTlBAYzBEw=·Fi0BaigigaHcFgcaciB(3b1b9dd4e2d17c65)', 4, '4eJan7AJXgytIw2DYAbAVf8cAHkjbJtm+jLcrMrZ/N0xTNBJI/bDYabBRW94nbAHM9WUpN6VirUoPowBCZqPRDq2p3kg4Udcxik7W39kLpgvM/FzBRzat2WYBX6h7ghVDkLXrzXRP/n7sSsK66ofGBGCYRHmdWHwogifbpnNkYo=·Fi0Baigigag☆BHD☆caB(be460370b9c35ac9)', '广东省茂名市信宜县', '1988-12-14', 0, 0, 'WK010', '2022-02-26', 'WK010', '2022-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS-202200157', '测试数据库', 1, 'ick03wvvih/c4jgaianmRZK7O9hyDfxYfa1Ax+prhujRYrxu45GbhggXqY1oSkJ20o8XM+548jwzVUC4mycLtvACuKLDUux/JqsYiI5B6Kz6YMvOamS9GG4B4K8JbxylD2nVyev/bpk/SHykUnoW6JYmY7g/O2psN88Fs7L8N4c=·Fic00FHHHgB0cDgi☆☆B(6054d4c5ef8f99fe)', 0, 'hIfUG+Sllx8bHn3ASpL1UtLvJBBnlXga2xDkBNnT0sP5ieITWXVi6QmZ5T6LSVZvUpCcDLidXp6cOwbtcWVnb25nd+/N9JQXO+tnRor7wanIK9yq8kiRcDu9UVxtMCjs8V+95+uWhVxn6/pUc8iP9XhJLVfNuKoU/CsvEyKnEMQ=·Fic00FHHHgaa☆ciiaFH(85afd5a43ee0160d)', '广东省茂名市信宜县', '1999-07-12', 0, 0, 'WK010', '2022-05-30', NULL, '0001-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS-20220099', '雷电芽衣', 0, 'd1WKY5Djs6OZG4P9T8ush1uS4WS9jL3llu7S3Yit+Zpva8eNpTODxtfJoQnjYbRwFo3yQn5uK61WGF320TANKkOVOgGsfEPvGDX/5JWAHV3ttw8+iKbLzH0L3uQIzs6WI74ktGfRaSbPxdJ/PhwZvfHkZob+aMvVTjmw1ZBEefw=·FiiBaHiic☆gHHg☆BHiF(940e360b8f6386f8)', 4, 'cl5IEpTMw9VNUTC9lTZyLpeTjDiRKxR0MJMgeZJDYf2Qda+LZbaWAMEkFd6YWRu/AXFqd9N8AeXsNrEiSu+DAxwKCjgro9w88UmgK2eh3J27k84clBxQ/33G29vByeLzKYF/ICpTgEkSd2691rqMKj9YsSQGrRT8V8qaz1vT2+0=·FiiBaHiic☆gc00cBFD0(a0a4996b0ea50c89)', '东京', '1905-02-14', 0, 0, 'WK010', '2022-02-02', 'WK010', '2022-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS-202200165', '卡卡西', 1, 'W/BVS6jOjo2Qbv+39JDVpbrBwGvq5QrPxQaMyHOtqlJjDDR62zn8JDH+XhhsEjRpmlKWFC/YAm/gOPj4NZM3OFToeRS1Uo5G54Zr6WLEbGYqUziMp+dwOm65MT6pQtYGpmfwokq4+EPJK5qt7/4DHTPvZfFQ4GRcoVWASbCbZ84=·FiiBaiaac0BBaFgDDiF(85de1f8139bac816)', 4, 'V5mVwqn6bQkfw+QVZy1vGA/R5qGeLhNvw2YwKaVlPGM+3U1HahDSy5RCCKI9SRgLJodNNUOx2Rvr6n++H7PISxdtb6+iN8b1vgLSJaIvxk/nZYHEovoI/JV+d8qimCkbZonrzg0XbEGSqqT83lJhzmhdYlREnOEp5e8gOodXCGw=·FiiBaiaac0aFgaDH☆DD(9d4eecaeac9c4e0d)', '木叶村', '2020-11-24', 0, 0, 'WK010', '2022-11-18', NULL, '0001-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS-202200166', '新海诚', 1, 'Nu0i7h3QKPPHZEHyo5U2AyZTmcfITqU8cyTToFM9SMZKmT6u+b+xnzT+rbmzHbwmLEtKdBCgZyoUNO9+S0jQruKIwBFplHV9i+k586SBZvm8RooSezQsyYwrZggkGlCv6xU+R6aGmN8NkGOSDcFcoAjJ02pHxR5QcrK2QWdnSyY=·FiiBaiaDFaFig☆aiFaF(50c21fc296138b4d)', 4, 'BAyEAY+Mx66U1Rhb8jXEgt2O7Yg3TKu71v+SE4n581+mH5Z31TulF0ax+Olkhjh6sLiQ3YJURzGHWRn1Tl/pIb47wTv5elcSECj0gWvMYiTWFnfHYS1tnTt4oIMstxcLulZoWyCdVXACnsR+shkAf6ENL8JLPUw8337cShVF+eU=·FiiBaiaDFaF☆acHBBgB(a76bb1bd976ee509)', '大阪', '2020-11-24', 0, 0, 'WK010', '2022-11-18', NULL, '0001-01-01'); + +-- ---------------------------- +-- Table structure for usertype +-- ---------------------------- +DROP TABLE IF EXISTS "public"."usertype"; +CREATE TABLE "public"."usertype" ( + "UserType" int4 NOT NULL, + "TypeName" varchar(10) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."usertype"."UserType" IS '客户类型ID'; +COMMENT ON COLUMN "public"."usertype"."TypeName" IS '客户类型名称'; +COMMENT ON COLUMN "public"."usertype"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."usertype"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."usertype"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."usertype"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."usertype"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."usertype" IS '用户类型表'; + +-- ---------------------------- +-- Records of usertype +-- ---------------------------- +INSERT INTO "public"."usertype" VALUES (0, '普通用户', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."usertype" VALUES (1, '钻石会员', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."usertype" VALUES (2, '白金会员', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."usertype" VALUES (3, '黄金会员', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for vip_rule +-- ---------------------------- +DROP TABLE IF EXISTS "public"."vip_rule"; +CREATE TABLE "public"."vip_rule" ( + "id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "rule_id" varchar(64) COLLATE "pg_catalog"."default" NOT NULL, + "rule_name" varchar(128) COLLATE "pg_catalog"."default" NOT NULL, + "rule_value" numeric(32,2) NOT NULL, + "type_id" int4 NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."vip_rule"."id" IS '索引ID'; +COMMENT ON COLUMN "public"."vip_rule"."rule_id" IS '会员规则流水号'; +COMMENT ON COLUMN "public"."vip_rule"."rule_name" IS '会员规则名称'; +COMMENT ON COLUMN "public"."vip_rule"."rule_value" IS '预设数值'; +COMMENT ON COLUMN "public"."vip_rule"."type_id" IS '会员等级'; +COMMENT ON COLUMN "public"."vip_rule"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."vip_rule"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."vip_rule"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."vip_rule"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."vip_rule"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."vip_rule" IS '会员等级规则表'; + +-- ---------------------------- +-- Records of vip_rule +-- ---------------------------- +INSERT INTO "public"."vip_rule" VALUES (1, 'VR-202107170003', '升级到钻石会员的规则', 70000.00, 1, 0, 'admin', '2021-07-17', NULL, '0001-01-01'); +INSERT INTO "public"."vip_rule" VALUES (2, 'VR-202107170007', '升级到黄金会员的规则', 50000.00, 3, 0, 'admin', '2021-07-17', NULL, '0001-01-01'); +INSERT INTO "public"."vip_rule" VALUES (3, 'VR-2021071700010', '升级到白金会员的规则', 30000.00, 2, 0, 'admin', '2021-07-17', NULL, '0001-01-01'); +INSERT INTO "public"."vip_rule" VALUES (0, 'VR-2022022600052', '尊贵会员', 150000.00, 1, 0, 'admin', '2022-02-26', NULL, '0001-01-01'); + +-- ---------------------------- +-- Table structure for worker +-- ---------------------------- +DROP TABLE IF EXISTS "public"."worker"; +CREATE TABLE "public"."worker" ( + "WorkerId" varchar(12) COLLATE "pg_catalog"."default" NOT NULL, + "WorkerName" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, + "WorkerBirthday" timestamp(6) NOT NULL, + "WorkerSex" int4 NOT NULL, + "WorkerTel" varchar(300) COLLATE "pg_catalog"."default" NOT NULL, + "WorkerClub" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, + "WorkerNation" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, + "WorkerAddress" varchar(600) COLLATE "pg_catalog"."default" NOT NULL, + "WorkerPosition" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, + "CardID" varchar(600) COLLATE "pg_catalog"."default" NOT NULL, + "WorkerPwd" varchar(600) COLLATE "pg_catalog"."default", + "WorkerTime" timestamp(6) NOT NULL, + "WorkerFace" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, + "WorkerEducation" varchar(255) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."worker"."WorkerId" IS '工号'; +COMMENT ON COLUMN "public"."worker"."WorkerName" IS '名字'; +COMMENT ON COLUMN "public"."worker"."WorkerBirthday" IS '出生日期'; +COMMENT ON COLUMN "public"."worker"."WorkerSex" IS '性别'; +COMMENT ON COLUMN "public"."worker"."WorkerTel" IS '电话'; +COMMENT ON COLUMN "public"."worker"."WorkerClub" IS '部门'; +COMMENT ON COLUMN "public"."worker"."WorkerNation" IS '民族'; +COMMENT ON COLUMN "public"."worker"."WorkerAddress" IS '居住地址'; +COMMENT ON COLUMN "public"."worker"."WorkerPosition" IS '职位'; +COMMENT ON COLUMN "public"."worker"."CardID" IS '证件号码'; +COMMENT ON COLUMN "public"."worker"."WorkerPwd" IS '系统密码'; +COMMENT ON COLUMN "public"."worker"."WorkerTime" IS '入职时间'; +COMMENT ON COLUMN "public"."worker"."WorkerFace" IS '面貌'; +COMMENT ON COLUMN "public"."worker"."WorkerEducation" IS '学历'; +COMMENT ON COLUMN "public"."worker"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."worker"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."worker"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."worker"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."worker"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."worker" IS '员工表'; + +-- ---------------------------- +-- Records of worker +-- ---------------------------- +INSERT INTO "public"."worker" VALUES ('WK018', '十二月', '1929-10-11 00:00:00', 0, '', 'D-007', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK017', '十一月', '1939-10-11 00:00:00', 0, '', 'D-004', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK016', '十月', '1949-10-11 00:00:00', 0, '', 'D-004', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK015', '十元', '1959-10-11 00:00:00', 1, '', 'D-007', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK014', '九月', '1969-10-11 00:00:00', 1, '', 'D-004', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK013', '八月', '1979-10-11 00:00:00', 1, '', 'D-004', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK011', '六月', '1900-01-18 00:00:00', 1, '', 'D-002', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK009', '老铁', '1989-12-05 00:00:00', 1, '', 'D-004', 'N-00001', '市区', 'P-0003', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK012', '七月', '1989-10-11 00:00:00', 1, '', 'D-002', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK008', '林淑仪', '1999-12-05 00:00:00', 0, '', 'D-008', 'N-00001', '市区', 'P-2021001', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-04-10'); +INSERT INTO "public"."worker" VALUES ('WK007', '罗良建', '2000-12-05 00:00:00', 1, '', 'D-003', 'N-00001', '市区', 'P-0002', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-17'); +INSERT INTO "public"."worker" VALUES ('WK024', '四北', '1996-10-11 00:00:00', 1, '', 'D-003', 'N-00001', '斗门', 'P-0003', '', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK023', '三男', '1995-10-11 00:00:00', 1, '', 'D-006', 'N-00001', '斗门', 'P-0003', '', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK006', '陈洪汉', '1999-10-05 00:00:00', 1, '', 'D-002', 'N-00001', '南屏', 'P-0002', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-18'); +INSERT INTO "public"."worker" VALUES ('WK010', '杨俊杰', '1999-07-20 00:00:00', 1, 'B6CCShOF+ezaHM3LdXEDWPmWHBRpYmEl0DVl/p/Ate8D/LT88ksL9wa35D6vkQqzvnAtzUXkDT5Rpavw8LWgceXalSgDTcEPsopL+KbiHw/1NlTxCeRB4ldpj5Djwi57oRBgzqH7h053DYNmtgLPuGV3DcsDgSawRXY1y1ziYrk=·FHHiDagiBgg0Bg0DaBH(a1226e938724d985)', 'D-001', 'N-00001', '广东珠海', 'P-0001', '', 'admin', '2011-04-20 00:00:00', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2022-02-07'); +INSERT INTO "public"."worker" VALUES ('WK033', '沙宣', '1979-10-11 00:00:00', 1, '', 'D-005', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK032', '瞎小', '1969-10-11 00:00:00', 0, '', 'D-011', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK031', '阿力', '1959-10-11 00:00:00', 1, '', 'D-003', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK030', '阿狸', '1949-10-11 00:00:00', 1, '', 'D-005', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK029', '阿里', '1939-10-11 00:00:00', 0, '', 'D-005', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK028', '支付宝', '1929-10-11 00:00:00', 1, '', 'D-003', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK027', '余额宝', '1919-10-11 00:00:00', 1, '', 'D-003', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK026', '蚂蚁', '1998-10-11 00:00:00', 1, '', 'D-003', 'N-00001', '斗门', 'P-0003', '', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK025', '花呗', '1997-10-11 00:00:00', 0, '', 'D-003', 'N-00001', '斗门', 'P-0003', '', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('Duyen', '阿娟', '1969-10-11 00:00:00', 0, '', 'D-011', 'N-00001', '市区', 'P-0003', '', '123456', '2020-07-05 02:20:31', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK020', '十五年', '1992-10-11 00:00:00', 0, '', 'D-006', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK019', '十四年', '1911-10-11 00:00:00', 0, '', 'D-007', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK005', '付金鑫', '1999-06-05 00:00:00', 1, '', 'D-202200114', 'N-00001', '市区', 'P-0002', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2022-01-31'); +INSERT INTO "public"."worker" VALUES ('WK004', '杨旭东', '1999-02-15 00:00:00', 1, '', 'D-006', 'N-00001', '井岸', 'P-0001', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-17'); +INSERT INTO "public"."worker" VALUES ('WK003', '陈伟瀚', '1999-11-20 00:00:00', 1, '', 'D-005', 'N-00001', '斗门', 'P-0002', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-17'); +INSERT INTO "public"."worker" VALUES ('WK002', '李杰峰', '1999-10-15 00:00:00', 1, '', 'D-003', 'N-00001', '市区', 'P-0003', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK001', '谭国平', '1999-12-05 00:00:00', 1, '', 'D-004', 'N-00001', '红旗', 'P-0002', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-16'); +INSERT INTO "public"."worker" VALUES ('Shenyou', '申酉', '1999-07-20 00:00:00', 1, '', 'D-001', 'N-00001', '金湾', 'P-0003', '', '123456', '2020-07-05 02:18:19', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('Lien', '阿蓮', '1969-10-11 00:00:00', 0, '', 'D-011', 'N-00001', '市区', 'P-0003', '', '123456', '2020-07-05 02:16:44', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('Lam', '阿隆', '1969-10-11 00:00:00', 0, '', 'D-005', 'N-00001', '市区', 'P-0003', '', '123456', '2020-07-05 02:21:52', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('Huong', '阿香', '1969-10-11 00:00:00', 0, '', 'D-011', 'N-00001', '市区', 'P-0003', '', '123456', '2020-07-05 02:17:25', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('Hien', '阿賢', '1969-10-11 00:00:00', 0, '', 'D-005', 'N-00001', '市区', 'P-0003', '', '123456', '2020-07-05 02:19:53', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK202102004', '潞州', '2020-11-24 22:50:37', 1, '4AEE3E28DF37EA1AF64BD636ECA59DCB', 'D-008', 'N-00007', '广东珠海', 'P-0003', '79D8861186EB60E3611CD4A5D0BCAE', '123456', '2020-11-24 22:50:37', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK202102007', '江小白', '1993-07-20 00:00:00', 1, 'A89CDE93F692F546F0BEC375DC9E60FB', 'D-010', 'N-00001', '广东省茂名市信宜县', 'P-0003', '3D7640EF7C9B756E75C276FF9C8D233', '123456', '2020-11-24 22:50:37', '群众', 'E-00006', 0, 'admin', '2021-02-14', 'admin', '2021-02-14'); +INSERT INTO "public"."worker" VALUES ('WK775', '凌峰', '1995-07-14 00:00:00', 1, '', 'D-003', 'N-00001', '广东省茂名市信宜县', 'P-0003', '', '123456', '2020-05-04 12:57:15', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK2021040024', '赤羽业', '1999-07-20 00:00:00', 1, '', 'D-011', 'N-00001', '广东省茂名市信宜县', 'P-0003', '', '123456', '2020-11-24 22:50:37', '群众', 'E-00007', 0, 'admin', '2021-04-18', NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK034', '沙县', '1989-10-11 00:00:00', 1, '', 'D-005', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('Xingxue', '興學', '1999-07-20 00:00:00', 1, '', 'D-001', 'N-00001', '金湾', 'P-0003', '123121313132X3', '123456', '2020-07-05 02:18:53', '团员', 'E-00005', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK388', '张三', '1998-06-27 00:00:00', 1, 'A+XROKGquR9JRSlRmWEIzmz/yA5BvTK8jbGUg3bAT7S3Qc3oxcsJlftz4r45JKDOoP45Ip+Mh7C0DhRLsr8z0GJ/NAdneBkOtKZk1j686EeIMueXRphpU0/hRC4m0aISGSNdn8wr5KFp7U8k/uLdJgfBAgVloy3rAPSiICK66sE=·FHHgci☆BciiHiccHaaB(fc82c054c807242a)', 'D-002', 'N-00001', '广西壮族自治区防城港市上思县', 'P-0003', '', '123456', '2020-08-20 09:33:45', '群众', 'E-00005', 0, NULL, NULL, 'admin', '2022-02-01'); +INSERT INTO "public"."worker" VALUES ('WK2021040026', '古河渚', '1996-12-15 00:00:00', 0, 'TqXplZEAJiCJ34jERPTDwnH4vcojLfOX6isZGyHe1M7ThNEiTAa7ZtHrmstzF25S5YjQR4eCbr3Gy+V8qdpQJqn7jh4Rn9vXnzneCBCP5WsvFC+wpoaILCCOpeOrgkZfBt36itg2rhV6h/FT4yrX7wAHly1WFxW1WVGawfAQEZY=·FHHgciDaFB0DgH0cciB(c2ae638db2d0dd83)', 'D-010', 'N-00001', '大阪', 'P-0003', '', '123456', '2020-11-24 22:50:37', '群众', 'E-00003', 0, 'admin', '2021-04-18', 'admin', '2022-02-01'); +INSERT INTO "public"."worker" VALUES ('WK2021040025', '冈崎朋也', '1999-07-20 00:00:00', 1, 'bEJDqDv3W/o1p69Y2JXPj5H4kCninKF0LrnVJH9plJyOZAXEOaWTolwnnM99GQSEorYGVfZNYtBqt2ohO4vKO6OrgWtBTg4Kh1KjKL6wrBEK42mghcursCod6G73fdbQITFRHMSJmhK68PQNbi/tVw0EUn4aGsxsy6THx2KsK6A=·FHHgciDFiHcHcgDiaB0(2dfb79318b734469)', 'D-010', 'N-00001', '广东省茂名市信宜县', 'P-0003', '', '123456', '2020-11-24 22:50:37', '群众', 'E-00003', 0, 'admin', '2021-04-18', 'admin', '2022-02-01'); +INSERT INTO "public"."worker" VALUES ('WK022', '二南', '1994-10-11 00:00:00', 1, '', 'D-006', 'N-00001', '斗门', 'P-0003', '', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK2022020042', '夜莺', '1988-12-13 00:00:00', 0, 'YJmmD35b13Ojc2UJPXXntwk+xpnKSTsCqzkzJBkbsadc3skEyGqlVIJUFU4Em0tjbv0IsTJnLskVB8VjZ95YyhKRJcksmdNXHyR1PF6dvaJ8nv9FHQ93V66I06ObgVXB+/ysSOAuL7DM3Ndj5UxgiAlK2DDE1eKjNttliIq6zvg=·FHHgcaFc☆F☆a☆iga0gB(376e5910042923d5)', 'D-202200114', 'N-00009', '广东省茂名市信宜县', 'P-2021001', 'DjM0t5DO0oIckI4JlN+z9Bkosi/SV0mQllIT6U3515hzns4FSRExxunfW9BEbQoldRlKoifXFXnKz6sulj5rf0yi1lPl+plA+NQ0LA8goCiQAyfEUEBwbCOgvhPjKbptdS3R3y46v4AEy6gcaYS3A4Zrc3m/ipqD2xXchsKuBrM=·FHHgcaFc☆FDa☆c0cFH0(ee00c65e12fee5a2)', '123456', '2020-11-24 22:50:37', '群众', 'E-00005', 0, 'admin', '2022-02-01', NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK021', '一楠', '1993-10-11 00:00:00', 0, '', 'D-006', 'N-00001', '斗门', 'P-0003', '', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for workercheck +-- ---------------------------- +DROP TABLE IF EXISTS "public"."workercheck"; +CREATE TABLE "public"."workercheck" ( + "Id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "WorkerNo" varchar(20) COLLATE "pg_catalog"."default", + "CheckTime" timestamp(6), + "CheckWay" varchar(80) COLLATE "pg_catalog"."default", + "CheckState" int4, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."workercheck"."Id" IS '自增长ID'; +COMMENT ON COLUMN "public"."workercheck"."WorkerNo" IS '工号'; +COMMENT ON COLUMN "public"."workercheck"."CheckTime" IS '打卡时间'; +COMMENT ON COLUMN "public"."workercheck"."CheckWay" IS '打卡方式'; +COMMENT ON COLUMN "public"."workercheck"."CheckState" IS '打卡状态'; +COMMENT ON COLUMN "public"."workercheck"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."workercheck"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."workercheck"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."workercheck"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."workercheck"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."workercheck" IS '员工打卡表'; + +-- ---------------------------- +-- Records of workercheck +-- ---------------------------- +INSERT INTO "public"."workercheck" VALUES (66, 'WK010', '2022-02-21 20:31:19', '系统界面', 0, 0, 'WK010', '2022-02-21', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (72, 'WK010', '2022-02-22 23:16:46', '系统界面', 0, 0, 'WK010', '2022-02-22', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (75, 'WK010', '2022-02-25 22:13:30', '系统界面', 0, 0, 'WK010', '2022-02-25', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (86, 'WK010', '2022-02-26 12:28:59', '系统界面', 0, 0, 'WK010', '2022-02-26', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (211, 'WK010', '2022-02-27 01:10:54', '系统界面', 0, 0, 'WK010', '2022-02-27', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (225, 'WK010', '2022-02-28 00:03:49', '系统界面', 0, 0, 'WK010', '2022-02-28', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (251, 'WK010', '2022-03-13 14:53:36', '系统界面', 0, 0, 'WK010', '2022-03-13', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (279, 'WK010', '2022-03-14 19:54:55', '系统界面', 0, 0, 'WK010', '2022-03-14', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (295, 'WK010', '2022-03-15 19:38:47', '系统界面', 0, 0, 'WK010', '2022-03-15', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (298, 'WK010', '2022-03-16 23:08:10', '系统界面', 0, 0, 'WK010', '2022-03-16', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (300, 'WK010', '2022-03-17 23:14:22', '系统界面', 0, 0, 'WK010', '2022-03-17', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (303, 'WK010', '2022-03-20 16:05:51', '系统界面', 0, 0, 'WK010', '2022-03-20', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (310, 'WK010', '2022-03-22 16:46:34', '系统界面', 0, 0, 'WK010', '2022-03-22', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (312, 'WK010', '2022-03-23 19:45:31', '系统界面', 0, 0, 'WK010', '2022-03-23', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (314, 'WK010', '2022-03-24 23:03:07', '系统界面', 0, 0, 'WK010', '2022-03-24', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (318, 'WK010', '2022-03-26 20:44:57', '系统界面', 0, 0, 'WK010', '2022-03-26', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (320, 'WK010', '2022-03-28 23:05:26', '系统界面', 0, 0, 'WK010', '2022-03-28', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (326, 'WK010', '2022-03-29 15:26:24', '系统界面', 0, 0, 'WK010', '2022-03-29', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (333, 'WK010', '2022-03-30 19:13:08', '系统界面', 0, 0, 'WK010', '2022-03-30', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (337, 'WK010', '2022-03-31 23:11:43', '系统界面', 0, 0, 'WK010', '2022-03-31', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (340, 'WK010', '2022-04-03 12:48:31', '系统界面', 0, 0, 'WK010', '2022-04-03', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (368, 'WK010', '2022-04-06 15:15:19', '系统界面', 0, 0, 'WK010', '2022-04-06', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (380, 'WK010', '2022-04-07 16:19:50', '系统界面', 0, 0, 'WK010', '2022-04-07', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (388, 'WK010', '2022-04-10 10:01:25', '系统界面', 0, 0, 'WK010', '2022-04-10', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (391, 'WK010', '2022-04-14 13:35:58', '系统界面', 0, 0, 'WK010', '2022-04-14', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (397, 'WK010', '2022-04-16 20:31:07', '系统界面', 0, 0, 'WK010', '2022-04-16', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (399, 'WK010', '2022-04-18 19:19:48', '系统界面', 0, 0, 'WK010', '2022-04-18', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (406, 'WK010', '2022-04-22 14:05:23', '系统界面', 0, 0, 'WK010', '2022-04-22', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (410, 'WK010', '2022-04-26 23:29:45', '系统界面', 0, 0, 'WK010', '2022-04-26', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (420, 'WK010', '2022-04-29 11:37:28', '系统界面', 0, 0, 'WK010', '2022-04-29', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (425, 'WK010', '2022-05-02 00:52:02', '系统界面', 0, 0, 'WK010', '2022-05-02', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (443, 'WK010', '2022-05-12 20:57:55', '系统界面', 0, 0, 'WK010', '2022-05-12', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (468, 'WK010', '2022-05-21 09:39:15', '系统界面', 0, 0, 'WK010', '2022-05-21', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (477, 'WK010', '2022-05-23 17:22:10', '系统界面', 0, 0, 'WK010', '2022-05-23', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (498, 'WK010', '2022-05-29 23:55:06', '系统界面', 0, 0, 'WK010', '2022-05-29', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (506, 'WK010', '2022-05-30 19:43:13', '系统界面', 0, 0, 'WK010', '2022-05-30', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (519, 'WK010', '2022-06-04 11:25:48', '系统界面', 0, 0, 'WK010', '2022-06-04', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (533, 'WK010', '2022-06-05 19:19:41', '系统界面', 0, 0, 'WK010', '2022-06-05', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (536, 'WK010', '2022-06-12 01:07:20', '系统界面', 0, 0, 'WK010', '2022-06-12', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (538, 'WK010', '2022-06-14 23:14:27', '系统界面', 0, 0, 'WK010', '2022-06-14', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (546, 'WK010', '2022-06-26 16:00:51', '系统界面', 0, 0, 'WK010', '2022-06-26', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (553, 'WK010', '2022-07-01 20:22:20', '系统界面', 0, 0, 'WK010', '2022-07-01', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (556, 'WK010', '2022-07-13 23:29:18', '系统界面', 0, 0, 'WK010', '2022-07-13', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (558, 'WK010', '2022-07-18 21:38:15', '系统界面', 0, 0, 'WK010', '2022-07-18', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (564, 'WK010', '2022-08-02 23:07:48', '系统界面', 0, 0, 'WK010', '2022-08-02', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (575, 'WK010', '2022-09-11 01:43:53', '系统界面', 0, 0, 'WK010', '2022-09-11', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (583, 'WK010', '2022-09-18 23:38:34', '系统界面', 0, 0, 'WK010', '2022-09-18', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (588, 'WK010', '2022-09-24 19:49:00', '系统界面', 0, 0, 'WK010', '2022-09-24', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (594, 'WK010', '2022-10-04 00:49:14', '系统界面', 0, 0, 'WK010', '2022-10-04', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (610, 'WK010', '2022-11-17 10:24:54', '系统界面', 0, 0, 'WK010', '2022-11-17', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (655, 'WK010', '2022-11-18 14:10:44', '系统界面', 0, 0, 'WK010', '2022-11-18', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (664, 'WK010', '2022-11-20 23:50:41', '系统界面', 0, 0, 'WK010', '2022-11-20', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (683, 'WK010', '2022-12-04 13:20:45', '系统界面', 0, 0, 'WK010', '2022-12-04', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (738, 'WK010', '2022-12-05 13:53:18', '系统界面', 0, 0, 'WK010', '2022-12-05', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (774, 'WK010', '2022-12-06 09:20:10', '系统界面', 0, 0, 'WK010', '2022-12-06', NULL, '0001-01-01'); + +-- ---------------------------- +-- Table structure for workergoodbad +-- ---------------------------- +DROP TABLE IF EXISTS "public"."workergoodbad"; +CREATE TABLE "public"."workergoodbad" ( + "Id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "WorkNo" varchar(50) COLLATE "pg_catalog"."default", + "GBInfo" varchar(255) COLLATE "pg_catalog"."default", + "GBType" int4, + "GBOperation" varchar(200) COLLATE "pg_catalog"."default", + "GBTime" timestamp(6), + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."workergoodbad"."Id" IS '自增长ID'; +COMMENT ON COLUMN "public"."workergoodbad"."WorkNo" IS '工号'; +COMMENT ON COLUMN "public"."workergoodbad"."GBInfo" IS '奖惩信息'; +COMMENT ON COLUMN "public"."workergoodbad"."GBType" IS '奖惩类型'; +COMMENT ON COLUMN "public"."workergoodbad"."GBOperation" IS '录入人'; +COMMENT ON COLUMN "public"."workergoodbad"."GBTime" IS '录入时间'; +COMMENT ON COLUMN "public"."workergoodbad"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."workergoodbad"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."workergoodbad"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."workergoodbad"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."workergoodbad"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."workergoodbad" IS '员工奖惩记录表'; + +-- ---------------------------- +-- Records of workergoodbad +-- ---------------------------- +INSERT INTO "public"."workergoodbad" VALUES (1, 'WK008', '牛逼就完事了!', 0, '杨俊杰', '2020-04-21 21:02:30', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."workergoodbad" VALUES (2, 'WK775', '被评为优秀的“五四”行业青年', 0, '杨俊杰', '2020-05-04 13:01:17', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."workergoodbad" VALUES (3, 'WK010', '测试', 1, 'admin', '2020-11-24 22:50:37', 0, 'admin', '2021-02-15', NULL, '0001-01-01'); +INSERT INTO "public"."workergoodbad" VALUES (4, 'WK010', '测试', 1, 'admin', '2020-11-24 22:50:37', 0, 'admin', '2021-02-15', NULL, '0001-01-01'); +INSERT INTO "public"."workergoodbad" VALUES (5, 'WK010', '测试', 1, 'admin', '2020-11-24 22:50:37', 0, 'admin', '2021-02-15', NULL, '0001-01-01'); +INSERT INTO "public"."workergoodbad" VALUES (6, 'WK001', '666666666', 0, 'admin', '2020-11-24 22:50:37', 0, 'admin', '2021-02-16', NULL, '0001-01-01'); + +-- ---------------------------- +-- Table structure for workerhistory +-- ---------------------------- +DROP TABLE IF EXISTS "public"."workerhistory"; +CREATE TABLE "public"."workerhistory" ( + "Id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "WorkerId" varchar(12) COLLATE "pg_catalog"."default" NOT NULL, + "StartDate" timestamp(6) NOT NULL, + "EndDate" timestamp(6) NOT NULL, + "Position" varchar(255) COLLATE "pg_catalog"."default" NOT NULL, + "Company" varchar(255) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."workerhistory"."Id" IS '自增长ID'; +COMMENT ON COLUMN "public"."workerhistory"."WorkerId" IS '工号'; +COMMENT ON COLUMN "public"."workerhistory"."StartDate" IS '开始时间'; +COMMENT ON COLUMN "public"."workerhistory"."EndDate" IS '结束时间'; +COMMENT ON COLUMN "public"."workerhistory"."Position" IS '职务'; +COMMENT ON COLUMN "public"."workerhistory"."Company" IS '公司'; +COMMENT ON COLUMN "public"."workerhistory"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."workerhistory"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."workerhistory"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."workerhistory"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."workerhistory"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."workerhistory" IS '员工履历表'; + +-- ---------------------------- +-- Records of workerhistory +-- ---------------------------- +INSERT INTO "public"."workerhistory" VALUES (1, 'WK010', '2005-03-05 00:00:00', '2008-03-05 00:00:00', '部门经理', '海湾大酒店', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."workerhistory" VALUES (2, 'WK010', '2009-06-23 00:00:00', '2010-02-02 00:00:00', '总经理', '非凡大酒店', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."workerhistory" VALUES (3, 'WK775', '2015-07-17 12:57:15', '2018-05-04 12:57:15', '财务会计', '非凡会计所', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."workerhistory" VALUES (4, 'WK261', '2020-07-16 21:13:33', '2020-07-16 21:13:33', '', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."workerhistory" VALUES (5, 'WK100', '2020-07-16 21:13:42', '2020-07-16 21:13:42', '', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."workerhistory" VALUES (6, 'WK388', '2020-08-20 09:33:45', '2020-08-20 09:33:45', '', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."workerhistory" VALUES (7, 'WK202102004', '2020-11-24 22:50:37', '2020-11-24 22:50:37', '', '', 0, NULL, '0001-01-01', NULL, '0001-01-01'); +INSERT INTO "public"."workerhistory" VALUES (8, 'WK202102007', '2020-11-24 22:50:37', '2020-11-24 22:50:37', '', '', 0, NULL, '0001-01-01', NULL, '0001-01-01'); +INSERT INTO "public"."workerhistory" VALUES (9, 'WK2021040024', '2019-05-06 00:00:00', '2020-11-24 22:50:37', '餐饮专员', '比利王大酒店', 0, NULL, '0001-01-01', NULL, '0001-01-01'); +INSERT INTO "public"."workerhistory" VALUES (10, 'WK2021040025', '2020-11-24 22:50:37', '2020-11-24 22:50:37', '', '', 0, NULL, '0001-01-01', NULL, '0001-01-01'); +INSERT INTO "public"."workerhistory" VALUES (11, 'WK2021040026', '2020-11-24 22:50:37', '2020-11-24 22:50:37', '', '', 0, NULL, '0001-01-01', NULL, '0001-01-01'); +INSERT INTO "public"."workerhistory" VALUES (12, 'WK2022020042', '2015-03-01 00:00:00', '2019-03-03 00:00:00', '质量测试主管', '园南计算机科技有限公司', 0, NULL, '0001-01-01', NULL, '0001-01-01'); + +-- ---------------------------- +-- Table structure for workerpic +-- ---------------------------- +DROP TABLE IF EXISTS "public"."workerpic"; +CREATE TABLE "public"."workerpic" ( + "Id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "WorkerId" varchar(17) COLLATE "pg_catalog"."default", + "Pic" varchar(255) COLLATE "pg_catalog"."default" +) +; +COMMENT ON COLUMN "public"."workerpic"."Id" IS '自增长流水号'; +COMMENT ON COLUMN "public"."workerpic"."WorkerId" IS '工号'; +COMMENT ON COLUMN "public"."workerpic"."Pic" IS '照片路径'; + +-- ---------------------------- +-- Records of workerpic +-- ---------------------------- +INSERT INTO "public"."workerpic" VALUES (1, 'WK2022020042', 'a212e035-62f7-4b7b-be5e-c1cacce6ab94.png'); +INSERT INTO "public"."workerpic" VALUES (2, 'WK2021040026', '98d6f138-3f86-4d76-ae33-6d4cbc436a93.jpg'); +INSERT INTO "public"."workerpic" VALUES (3, 'WK2021040025', '0c0b42d9-41f2-487e-8ac8-fc686cb5f5fe.jpg'); +INSERT INTO "public"."workerpic" VALUES (4, 'WK2021040024', 'cacacfaa-fef5-4beb-a87a-e4d52e56ae50.jpg'); +INSERT INTO "public"."workerpic" VALUES (9, 'WK001', 'fb4bc453-29b8-495f-82d1-36e02f10e3d0.png'); +INSERT INTO "public"."workerpic" VALUES (10, 'WK002', '36caf9bd-f3db-4d8b-834d-cf6c39581de3.png'); +INSERT INTO "public"."workerpic" VALUES (206, 'Shenyou', 'cea9d22e-cd3e-4ea8-adfd-6d43e9e80698.png'); +INSERT INTO "public"."workerpic" VALUES (207, 'WK775', '68137280-5cec-473a-a0d8-6a8538a6daf3.png'); +INSERT INTO "public"."workerpic" VALUES (277, 'WK026', '3f7f0972-ccf8-4682-8c44-c4f4bd8b4105.png'); +INSERT INTO "public"."workerpic" VALUES (530, 'WK010', 'e0095072-2848-4097-94f7-a3cebc419783.png'); + +-- ---------------------------- +-- Table structure for wtinfo +-- ---------------------------- +DROP TABLE IF EXISTS "public"."wtinfo"; +CREATE TABLE "public"."wtinfo" ( + "RoomNo" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, + "UseDate" timestamp(6) NOT NULL, + "EndDate" timestamp(6), + "WaterUse" numeric(6,2) NOT NULL, + "PowerUse" numeric(6,2) NOT NULL, + "Record" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, + "CustoNo" varchar(15) COLLATE "pg_catalog"."default", + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date, + "WtiNo" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass) +) +; +COMMENT ON COLUMN "public"."wtinfo"."RoomNo" IS '房间编号'; +COMMENT ON COLUMN "public"."wtinfo"."UseDate" IS '开始时间'; +COMMENT ON COLUMN "public"."wtinfo"."EndDate" IS '结束时间'; +COMMENT ON COLUMN "public"."wtinfo"."WaterUse" IS '用水情况'; +COMMENT ON COLUMN "public"."wtinfo"."PowerUse" IS '用电情况'; +COMMENT ON COLUMN "public"."wtinfo"."Record" IS '记录人'; +COMMENT ON COLUMN "public"."wtinfo"."CustoNo" IS '客户编号'; +COMMENT ON COLUMN "public"."wtinfo"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."wtinfo"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."wtinfo"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."wtinfo"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."wtinfo"."datachg_date" IS '资料更新时间'; +COMMENT ON COLUMN "public"."wtinfo"."WtiNo" IS 'ID'; +COMMENT ON TABLE "public"."wtinfo" IS '水电费信息表'; + +-- ---------------------------- +-- Records of wtinfo +-- ---------------------------- +INSERT INTO "public"."wtinfo" VALUES ('BD002', '2022-03-29 00:00:00', '2022-03-29 16:46:33', 2.56, 48.00, 'admin', 'TS000299787414', 0, NULL, '0001-01-01', NULL, '0001-01-01', 674); +INSERT INTO "public"."wtinfo" VALUES ('BS002', '2022-03-28 00:00:00', '2022-12-04 13:20:17', 40.00, 750.00, 'admin', 'TS900880194151', 0, NULL, '0001-01-01', NULL, '0001-01-01', 681); +INSERT INTO "public"."wtinfo" VALUES ('BD009', '2022-03-13 00:00:00', '2022-12-05 22:56:12', 42.72, 801.00, 'admin', 'TS003574305322', 0, NULL, '0001-01-01', NULL, '0001-01-01', 744); +INSERT INTO "public"."wtinfo" VALUES ('BS003', '2022-03-20 00:00:00', '2022-12-05 23:01:11', 41.60, 780.00, 'admin', 'TS006957585451', 0, NULL, '0001-01-01', NULL, '0001-01-01', 747); +INSERT INTO "public"."wtinfo" VALUES ('BS010', '2022-03-28 00:00:00', '2022-12-05 23:01:32', 40.32, 756.00, 'admin', 'TS040379060037', 0, NULL, '0001-01-01', NULL, '0001-01-01', 749); +INSERT INTO "public"."wtinfo" VALUES ('BS011', '2022-03-14 00:00:00', '2022-12-05 23:02:39', 42.56, 798.00, 'admin', 'TS015253323658', 0, NULL, '0001-01-01', NULL, '0001-01-01', 752); +INSERT INTO "public"."wtinfo" VALUES ('HD004', '2022-03-13 00:00:00', '2022-12-05 23:03:15', 42.72, 801.00, 'admin', 'TS006957585451', 0, NULL, '0001-01-01', NULL, '0001-01-01', 754); +INSERT INTO "public"."wtinfo" VALUES ('BS014', '2022-03-14 00:00:00', '2022-12-06 08:52:22', 42.72, 801.00, 'admin', 'TS026428262056', 0, NULL, '0001-01-01', NULL, '0001-01-01', 757); +INSERT INTO "public"."wtinfo" VALUES ('BS007', '2022-03-15 00:00:00', '2022-12-06 08:52:44', 42.56, 798.00, 'admin', 'TS012832200601', 0, NULL, '0001-01-01', NULL, '0001-01-01', 759); +INSERT INTO "public"."wtinfo" VALUES ('BD007', '2022-03-13 00:00:00', '2022-12-06 08:53:36', 42.88, 804.00, 'admin', 'TS001535098782', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); +INSERT INTO "public"."wtinfo" VALUES ('BD014', '2022-03-13 00:00:00', '2022-12-06 08:53:49', 42.88, 804.00, 'admin', 'TS096263040047', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); +INSERT INTO "public"."wtinfo" VALUES ('BS008', '2022-03-13 00:00:00', '2022-12-06 08:54:00', 42.88, 804.00, 'admin', 'TS039625402835', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); +INSERT INTO "public"."wtinfo" VALUES ('HD001', '2022-02-26 00:00:00', '2022-12-06 08:54:11', 45.28, 849.00, 'admin', 'TS-20220089', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); +INSERT INTO "public"."wtinfo" VALUES ('HD006', '2022-03-14 00:00:00', '2022-12-06 08:54:24', 42.72, 801.00, 'admin', 'TS006292728074', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); +INSERT INTO "public"."wtinfo" VALUES ('HS002', '2022-03-28 00:00:00', '2022-12-06 08:54:37', 40.48, 759.00, 'admin', 'TS053630244707', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); +INSERT INTO "public"."wtinfo" VALUES ('HS007', '2022-12-06 00:00:00', '2022-12-06 08:54:51', 42.72, 801.00, 'admin', 'TS001535098782', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); +INSERT INTO "public"."wtinfo" VALUES ('ZT003', '2022-12-06 00:00:00', '2022-12-06 08:55:08', 42.72, 801.00, 'admin', 'TS063603838018', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); + +-- ---------------------------- +-- Primary Key structure for table admininfo +-- ---------------------------- +ALTER TABLE "public"."admininfo" ADD CONSTRAINT "admininfo_pkey" PRIMARY KEY ("Id", "AdminAccount"); + +-- ---------------------------- +-- Primary Key structure for table admintype +-- ---------------------------- +ALTER TABLE "public"."admintype" ADD CONSTRAINT "admintype_pkey" PRIMARY KEY ("Id"); + +-- ---------------------------- +-- Primary Key structure for table applicationversion +-- ---------------------------- +ALTER TABLE "public"."applicationversion" ADD CONSTRAINT "applicationversion_pkey" PRIMARY KEY ("base_versionId"); + +-- ---------------------------- +-- Primary Key structure for table backinfo +-- ---------------------------- +ALTER TABLE "public"."backinfo" ADD CONSTRAINT "backinfo_pkey" PRIMARY KEY ("BackNo"); + +-- ---------------------------- +-- Primary Key structure for table base +-- ---------------------------- +ALTER TABLE "public"."base" ADD CONSTRAINT "base_pkey" PRIMARY KEY ("url_no"); + +-- ---------------------------- +-- Primary Key structure for table cardcodes +-- ---------------------------- +ALTER TABLE "public"."cardcodes" ADD CONSTRAINT "cardcodes_pkey" PRIMARY KEY ("id"); + +-- ---------------------------- +-- Primary Key structure for table cashinfo +-- ---------------------------- +ALTER TABLE "public"."cashinfo" ADD CONSTRAINT "cashinfo_pkey" PRIMARY KEY ("CashNo"); + +-- ---------------------------- +-- Primary Key structure for table checkinfo +-- ---------------------------- +ALTER TABLE "public"."checkinfo" ADD CONSTRAINT "checkinfo_pkey" PRIMARY KEY ("CheckNo"); + +-- ---------------------------- +-- Primary Key structure for table counterrule +-- ---------------------------- +ALTER TABLE "public"."counterrule" ADD CONSTRAINT "counterrule_pkey" PRIMARY KEY ("rule_id"); + +-- ---------------------------- +-- Primary Key structure for table customer +-- ---------------------------- +ALTER TABLE "public"."customer" ADD CONSTRAINT "customer_pkey" PRIMARY KEY ("custo_no"); + +-- ---------------------------- +-- Primary Key structure for table custospend +-- ---------------------------- +ALTER TABLE "public"."custospend" ADD CONSTRAINT "custospend_pkey" PRIMARY KEY ("SpendId"); + +-- ---------------------------- +-- Primary Key structure for table dept +-- ---------------------------- +ALTER TABLE "public"."dept" ADD CONSTRAINT "dept_pkey" PRIMARY KEY ("dept_no"); + +-- ---------------------------- +-- Primary Key structure for table education +-- ---------------------------- +ALTER TABLE "public"."education" ADD CONSTRAINT "education_pkey" PRIMARY KEY ("education_no"); + +-- ---------------------------- +-- Primary Key structure for table fonts +-- ---------------------------- +ALTER TABLE "public"."fonts" ADD CONSTRAINT "fonts_pkey" PRIMARY KEY ("FontsId"); + +-- ---------------------------- +-- Primary Key structure for table gbtype +-- ---------------------------- +ALTER TABLE "public"."gbtype" ADD CONSTRAINT "gbtype_pkey" PRIMARY KEY ("GBTypeId"); + +-- ---------------------------- +-- Primary Key structure for table module +-- ---------------------------- +ALTER TABLE "public"."module" ADD CONSTRAINT "module_pkey" PRIMARY KEY ("module_id"); + +-- ---------------------------- +-- Primary Key structure for table module_zero +-- ---------------------------- +ALTER TABLE "public"."module_zero" ADD CONSTRAINT "module_zero_pkey" PRIMARY KEY ("module_id"); + +-- ---------------------------- +-- Primary Key structure for table nation +-- ---------------------------- +ALTER TABLE "public"."nation" ADD CONSTRAINT "nation_pkey" PRIMARY KEY ("nation_no", "nation_name"); + +-- ---------------------------- +-- Primary Key structure for table nav_bar +-- ---------------------------- +ALTER TABLE "public"."nav_bar" ADD CONSTRAINT "nav_bar_pkey" PRIMARY KEY ("nav_id"); + +-- ---------------------------- +-- Primary Key structure for table operationlog +-- ---------------------------- +ALTER TABLE "public"."operationlog" ADD CONSTRAINT "operationlog_pkey" PRIMARY KEY ("OperationId"); + +-- ---------------------------- +-- Primary Key structure for table passporttype +-- ---------------------------- +ALTER TABLE "public"."passporttype" ADD CONSTRAINT "passporttype_pkey" PRIMARY KEY ("PassportId"); + +-- ---------------------------- +-- Primary Key structure for table position +-- ---------------------------- +ALTER TABLE "public"."position" ADD CONSTRAINT "position_pkey" PRIMARY KEY ("position_no"); + +-- ---------------------------- +-- Primary Key structure for table reser +-- ---------------------------- +ALTER TABLE "public"."reser" ADD CONSTRAINT "reser_pkey" PRIMARY KEY ("ReserId"); + +-- ---------------------------- +-- Primary Key structure for table room +-- ---------------------------- +ALTER TABLE "public"."room" ADD CONSTRAINT "room_pkey" PRIMARY KEY ("room_no"); + +-- ---------------------------- +-- Primary Key structure for table roomstate +-- ---------------------------- +ALTER TABLE "public"."roomstate" ADD CONSTRAINT "roomstate_pkey" PRIMARY KEY ("RoomStateId"); + +-- ---------------------------- +-- Primary Key structure for table roomtype +-- ---------------------------- +ALTER TABLE "public"."roomtype" ADD CONSTRAINT "roomtype_pkey" PRIMARY KEY ("RoomType"); + +-- ---------------------------- +-- Primary Key structure for table sellthing +-- ---------------------------- +ALTER TABLE "public"."sellthing" ADD CONSTRAINT "sellthing_pkey" PRIMARY KEY ("SellNo"); + +-- ---------------------------- +-- Primary Key structure for table sextype +-- ---------------------------- +ALTER TABLE "public"."sextype" ADD CONSTRAINT "sextype_pkey" PRIMARY KEY ("sexId"); + +-- ---------------------------- +-- Primary Key structure for table uploadinfo +-- ---------------------------- +ALTER TABLE "public"."uploadinfo" ADD CONSTRAINT "uploadinfo_pkey" PRIMARY KEY ("NoticeNo"); + +-- ---------------------------- +-- Primary Key structure for table user_log +-- ---------------------------- +ALTER TABLE "public"."user_log" ADD CONSTRAINT "user_log_pkey" PRIMARY KEY ("id"); + +-- ---------------------------- +-- Primary Key structure for table userinfo +-- ---------------------------- +ALTER TABLE "public"."userinfo" ADD CONSTRAINT "userinfo_pkey" PRIMARY KEY ("CustoNo"); + +-- ---------------------------- +-- Primary Key structure for table usertype +-- ---------------------------- +ALTER TABLE "public"."usertype" ADD CONSTRAINT "usertype_pkey" PRIMARY KEY ("UserType"); + +-- ---------------------------- +-- Primary Key structure for table vip_rule +-- ---------------------------- +ALTER TABLE "public"."vip_rule" ADD CONSTRAINT "vip_rule_pkey" PRIMARY KEY ("id", "rule_id"); + +-- ---------------------------- +-- Primary Key structure for table worker +-- ---------------------------- +ALTER TABLE "public"."worker" ADD CONSTRAINT "worker_pkey" PRIMARY KEY ("WorkerId"); + +-- ---------------------------- +-- Primary Key structure for table workercheck +-- ---------------------------- +ALTER TABLE "public"."workercheck" ADD CONSTRAINT "workercheck_pkey" PRIMARY KEY ("Id"); + +-- ---------------------------- +-- Primary Key structure for table workergoodbad +-- ---------------------------- +ALTER TABLE "public"."workergoodbad" ADD CONSTRAINT "workergoodbad_pkey" PRIMARY KEY ("Id"); + +-- ---------------------------- +-- Primary Key structure for table workerhistory +-- ---------------------------- +ALTER TABLE "public"."workerhistory" ADD CONSTRAINT "workerhistory_pkey" PRIMARY KEY ("Id"); + +-- ---------------------------- +-- Primary Key structure for table workerpic +-- ---------------------------- +ALTER TABLE "public"."workerpic" ADD CONSTRAINT "workerpic_pkey" PRIMARY KEY ("Id"); diff --git "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/PostgreSQL\347\211\210\346\234\254/data.sql" "b/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/PostgreSQL\347\211\210\346\234\254/data.sql" deleted file mode 100644 index 1eb5822..0000000 --- "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/PostgreSQL\347\211\210\346\234\254/data.sql" +++ /dev/null @@ -1,5096 +0,0 @@ -INSERT INTO "admininfo" ("Id", "AdminAccount", "AdminPassword", "AdminType", "AdminName", "IsAdmin", "DeleteMk", "datains_usr", "datains_time", "datachg_usr", "datachg_time") VALUES (1, 'admin', 'admin', 'Admin', '杨俊杰', 1, 0, NULL, NULL, NULL, NULL); -INSERT INTO "admininfo" ("Id", "AdminAccount", "AdminPassword", "AdminType", "AdminName", "IsAdmin", "DeleteMk", "datains_usr", "datains_time", "datachg_usr", "datachg_time") VALUES (2, 'bha', 'hotelmin', 'HotelManager', '宾华安', 0, 0, NULL, NULL, NULL, NULL); -INSERT INTO "admininfo" ("Id", "AdminAccount", "AdminPassword", "AdminType", "AdminName", "IsAdmin", "DeleteMk", "datains_usr", "datains_time", "datachg_usr", "datachg_time") VALUES (3, 'testmin', 'testmin', 'GeneralManager', '测试', 0, 1, '', '2021-05-16', NULL, NULL); -INSERT INTO "admininfo" ("Id", "AdminAccount", "AdminPassword", "AdminType", "AdminName", "IsAdmin", "DeleteMk", "datains_usr", "datains_time", "datachg_usr", "datachg_time") VALUES (4, 'xym', 'cashmin', 'FinanceManager', '熊越明', 0, 0, NULL, NULL, NULL, NULL); -INSERT INTO "admininfo" ("Id", "AdminAccount", "AdminPassword", "AdminType", "AdminName", "IsAdmin", "DeleteMk", "datains_usr", "datains_time", "datachg_usr", "datachg_time") VALUES (5, 'lishun', 'lishun', 'GeneralManager', '李顺', 0, 0, 'admin', '2021-05-18', NULL, NULL); -INSERT INTO "admininfo" ("Id", "AdminAccount", "AdminPassword", "AdminType", "AdminName", "IsAdmin", "DeleteMk", "datains_usr", "datains_time", "datachg_usr", "datachg_time") VALUES (6, 'hr', '123456', 'HRManager', '人力经理', 0, 0, 'admin', '2021-05-22', NULL, NULL); -INSERT INTO "admininfo" ("Id", "AdminAccount", "AdminPassword", "AdminType", "AdminName", "IsAdmin", "DeleteMk", "datains_usr", "datains_time", "datachg_usr", "datachg_time") VALUES (9, 'test1', '6666', 'test', '测试', 0, 1, 'admin', '2021-07-31', NULL, NULL); -INSERT INTO "admintype" ("Id", "type_id", "type_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (1, 'Admin', '超级管理员', 0, NULL, NULL, NULL, NULL); -INSERT INTO "admintype" ("Id", "type_id", "type_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (2, 'FinanceManager', '财务经理', 0, NULL, NULL, NULL, NULL); -INSERT INTO "admintype" ("Id", "type_id", "type_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (3, 'GeneralManager', '总经理', 0, NULL, NULL, NULL, NULL); -INSERT INTO "admintype" ("Id", "type_id", "type_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (4, 'HotelManager', '酒店经理', 0, NULL, NULL, NULL, NULL); -INSERT INTO "admintype" ("Id", "type_id", "type_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (5, 'HRManager', '人力资源经理', 0, NULL, NULL, NULL, NULL); -INSERT INTO "admintype" ("Id", "type_id", "type_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (6, 'LogisticsManager', '后勤经理', 0, NULL, NULL, NULL, NULL); -INSERT INTO "admintype" ("Id", "type_id", "type_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (7, 'CheckGroup', '监管小组', 0, NULL, NULL, NULL, NULL); -INSERT INTO "applicationversion" ("base_versionId", "base_version") VALUES (1, '1.5.0.7'); -INSERT INTO "backinfo" ("BackNo", "BackName", "BackSource", "BackCash", "BackType", "BackPerson", "ControlClub", "BackClub", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('B001', '一次性毛巾', '超市', '1000.00', 1, '李杰峰', '财务部', '餐饮部', 0, NULL, NULL, NULL, NULL); -INSERT INTO "backinfo" ("BackNo", "BackName", "BackSource", "BackCash", "BackType", "BackPerson", "ControlClub", "BackClub", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('B002', '一次性牙刷', '超市', '2000.00', 2, '李杰峰', '财务部', '酒店部', 0, NULL, NULL, NULL, NULL); -INSERT INTO "base" ("url_no", "url_addr") VALUES (1, 'https://gitee.com/java-and-net/TopskyHotelManagerSystem/releases'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1, '北京市', NULL, '东城区', '110101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2, '北京市', NULL, '西城区', '110102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3, '北京市', NULL, '崇文区', '110103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4, '北京市', NULL, '宣武区', '110104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (5, '北京市', NULL, '朝阳区', '110105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (6, '北京市', NULL, '丰台区', '110106'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (7, '北京市', NULL, '石景山区', '110107'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (8, '北京市', NULL, '海淀区', '110108'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (9, '北京市', NULL, '门头沟区', '110109'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (10, '北京市', NULL, '燕山区', '110110'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (11, '北京市', NULL, '房山区', '110111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (12, '北京市', NULL, '通州区', '110112'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (13, '北京市', NULL, '顺义区', '110113'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (14, '北京市', NULL, '昌平区', '110114'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (15, '北京市', NULL, '大兴区', '110115'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (16, '北京市', NULL, '怀柔区', '110116'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (17, '北京市', NULL, '平谷区', '110117'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (18, '北京市', NULL, '昌平县', '110221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (19, '北京市', NULL, '顺义县', '110222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (20, '北京市', NULL, '通县', '110223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (21, '北京市', NULL, '大兴县', '110224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (22, '北京市', NULL, '房山县', '110225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (23, '北京市', NULL, '平谷县', '110226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (24, '北京市', NULL, '怀柔县', '110227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (25, '北京市', NULL, '密云县', '110228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (26, '北京市', NULL, '延庆县', '110229'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (27, '天津市', NULL, '和平区', '120101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (28, '天津市', NULL, '河东区', '120102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (29, '天津市', NULL, '河西区', '120103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (30, '天津市', NULL, '南开区', '120104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (31, '天津市', NULL, '河北区', '120105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (32, '天津市', NULL, '红桥区', '120106'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (33, '天津市', NULL, '塘沽区', '120107'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (34, '天津市', NULL, '汉沽区', '120108'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (35, '天津市', NULL, '大港区', '120109'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (36, '天津市', NULL, '东丽区', '120110'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (37, '天津市', NULL, '西青区', '120111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (38, '天津市', NULL, '津南区', '120112'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (39, '天津市', NULL, '北辰区', '120113'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (40, '天津市', NULL, '武清区', '120114'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (41, '天津市', NULL, '宝坻区', '120115'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (42, '天津市', NULL, '宁河县', '120221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (43, '天津市', NULL, '武清县', '120222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (44, '天津市', NULL, '静海县', '120223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (45, '天津市', NULL, '宝坻县', '120224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (46, '天津市', NULL, '蓟县', '120225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (47, '河北省', '石家庄市', '市辖区', '130101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (48, '河北省', '石家庄市', '长安区', '130102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (49, '河北省', '石家庄市', '桥东区', '130103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (50, '河北省', '石家庄市', '桥西区', '130104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (51, '河北省', '石家庄市', '新华区', '130105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (52, '河北省', '石家庄市', '郊区', '130106'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (53, '河北省', '石家庄市', '井陉矿区', '130107'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (54, '河北省', '石家庄市', '裕华区', '130108'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (55, '河北省', '石家庄市', '井陉县', '130121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (56, '河北省', '石家庄市', '获鹿县', '130122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (57, '河北省', '石家庄市', '正定县', '130123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (58, '河北省', '石家庄市', '栾城县', '130124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (59, '河北省', '石家庄市', '行唐县', '130125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (60, '河北省', '石家庄市', '灵寿县', '130126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (61, '河北省', '石家庄市', '高邑县', '130127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (62, '河北省', '石家庄市', '深泽县', '130128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (63, '河北省', '石家庄市', '赞皇县', '130129'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (64, '河北省', '石家庄市', '无极县', '130130'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (65, '河北省', '石家庄市', '平山县', '130131'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (66, '河北省', '石家庄市', '元氏县', '130132'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (67, '河北省', '石家庄市', '赵县', '130133'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (68, '河北省', '石家庄市', '辛集市', '130181'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (69, '河北省', '石家庄市', '藁城市', '130182'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (70, '河北省', '石家庄市', '晋州市', '130183'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (71, '河北省', '石家庄市', '新乐市', '130184'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (72, '河北省', '石家庄市', '鹿泉市', '130185'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (73, '河北省', '唐山市', '市辖区', '130201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (74, '河北省', '唐山市', '路南区', '130202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (75, '河北省', '唐山市', '路北区', '130203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (76, '河北省', '唐山市', '古冶区', '130204'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (77, '河北省', '唐山市', '开平区', '130205'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (78, '河北省', '唐山市', '新区', '130206'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (79, '河北省', '唐山市', '丰南区', '130207'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (80, '河北省', '唐山市', '丰润区', '130208'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (81, '河北省', '唐山市', '丰润县', '130221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (82, '河北省', '唐山市', '丰南县', '130222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (83, '河北省', '唐山市', '滦县', '130223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (84, '河北省', '唐山市', '滦南县', '130224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (85, '河北省', '唐山市', '乐亭县', '130225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (86, '河北省', '唐山市', '迁安县', '130226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (87, '河北省', '唐山市', '迁西县', '130227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (88, '河北省', '唐山市', '遵化县', '130228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (89, '河北省', '唐山市', '玉田县', '130229'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (90, '河北省', '唐山市', '唐海县', '130230'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (91, '河北省', '唐山市', '遵化市', '130281'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (92, '河北省', '唐山市', '丰南市', '130282'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (93, '河北省', '唐山市', '迁安市', '130283'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (94, '河北省', '秦皇岛市', '市辖区', '130301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (95, '河北省', '秦皇岛市', '海港区', '130302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (96, '河北省', '秦皇岛市', '山海关区', '130303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (97, '河北省', '秦皇岛市', '北戴河区', '130304'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (98, '河北省', '秦皇岛市', '青龙满族自治县', '130321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (99, '河北省', '秦皇岛市', '昌黎县', '130322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (100, '河北省', '秦皇岛市', '抚宁县', '130323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (101, '河北省', '秦皇岛市', '卢龙县', '130324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (102, '河北省', '邯郸市', '市辖区', '130401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (103, '河北省', '邯郸市', '邯山区', '130402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (104, '河北省', '邯郸市', '丛台区', '130403'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (105, '河北省', '邯郸市', '复兴区', '130404'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (106, '河北省', '邯郸市', '郊区', '130405'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (107, '河北省', '邯郸市', '峰峰矿区', '130406'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (108, '河北省', '邯郸市', '邯郸县', '130421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (109, '河北省', '邯郸市', '武安县', '130422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (110, '河北省', '邯郸市', '临漳县', '130423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (111, '河北省', '邯郸市', '成安县', '130424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (112, '河北省', '邯郸市', '大名县', '130425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (113, '河北省', '邯郸市', '涉县', '130426'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (114, '河北省', '邯郸市', '磁县', '130427'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (115, '河北省', '邯郸市', '肥乡县', '130428'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (116, '河北省', '邯郸市', '永年县', '130429'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (117, '河北省', '邯郸市', '邱县', '130430'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (118, '河北省', '邯郸市', '鸡泽县', '130431'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (119, '河北省', '邯郸市', '广平县', '130432'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (120, '河北省', '邯郸市', '馆陶县', '130433'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (121, '河北省', '邯郸市', '魏县', '130434'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (122, '河北省', '邯郸市', '曲周县', '130435'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (123, '河北省', '邯郸市', '武安市', '130481'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (124, '河北省', '邢台市', '市辖区', '130501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (125, '河北省', '邢台市', '桥东区', '130502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (126, '河北省', '邢台市', '桥西区', '130503'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (127, '河北省', '邢台市', '邢台县', '130521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (128, '河北省', '邢台市', '临城县', '130522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (129, '河北省', '邢台市', '内丘县', '130523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (130, '河北省', '邢台市', '柏乡县', '130524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (131, '河北省', '邢台市', '隆尧县', '130525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (132, '河北省', '邢台市', '任县', '130526'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (133, '河北省', '邢台市', '南和县', '130527'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (134, '河北省', '邢台市', '宁晋县', '130528'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (135, '河北省', '邢台市', '巨鹿县', '130529'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (136, '河北省', '邢台市', '新河县', '130530'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (137, '河北省', '邢台市', '广宗县', '130531'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (138, '河北省', '邢台市', '平乡县', '130532'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (139, '河北省', '邢台市', '威县', '130533'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (140, '河北省', '邢台市', '清河县', '130534'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (141, '河北省', '邢台市', '临西县', '130535'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (142, '河北省', '邢台市', '南宫市', '130581'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (143, '河北省', '邢台市', '沙河市', '130582'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (144, '河北省', '保定市', '市辖区', '130601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (145, '河北省', '保定市', '新市区', '130602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (146, '河北省', '保定市', '北市区', '130603'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (147, '河北省', '保定市', '南市区', '130604'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (148, '河北省', '保定市', '满城县', '130621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (149, '河北省', '保定市', '清苑县', '130622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (150, '河北省', '保定市', '涞水县', '130623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (151, '河北省', '保定市', '阜平县', '130624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (152, '河北省', '保定市', '徐水县', '130625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (153, '河北省', '保定市', '定兴县', '130626'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (154, '河北省', '保定市', '唐县', '130627'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (155, '河北省', '保定市', '高阳县', '130628'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (156, '河北省', '保定市', '容城县', '130629'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (157, '河北省', '保定市', '涞源县', '130630'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (158, '河北省', '保定市', '望都县', '130631'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (159, '河北省', '保定市', '安新县', '130632'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (160, '河北省', '保定市', '易县', '130633'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (161, '河北省', '保定市', '曲阳县', '130634'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (162, '河北省', '保定市', '蠡县', '130635'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (163, '河北省', '保定市', '顺平县', '130636'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (164, '河北省', '保定市', '博野县', '130637'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (165, '河北省', '保定市', '雄县', '130638'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (166, '河北省', '保定市', '涿州市', '130681'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (167, '河北省', '保定市', '定州市', '130682'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (168, '河北省', '保定市', '安国市', '130683'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (169, '河北省', '保定市', '高碑店市', '130684'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (170, '河北省', '张家口市', '市辖区', '130701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (171, '河北省', '张家口市', '桥东区', '130702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (172, '河北省', '张家口市', '桥西区', '130703'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (173, '河北省', '张家口市', '宣化区', '130705'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (174, '河北省', '张家口市', '下花园区', '130706'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (175, '河北省', '张家口市', '宣化县', '130721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (176, '河北省', '张家口市', '张北县', '130722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (177, '河北省', '张家口市', '康保县', '130723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (178, '河北省', '张家口市', '沽源县', '130724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (179, '河北省', '张家口市', '尚义县', '130725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (180, '河北省', '张家口市', '蔚县', '130726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (181, '河北省', '张家口市', '阳原县', '130727'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (182, '河北省', '张家口市', '怀安县', '130728'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (183, '河北省', '张家口市', '万全县', '130729'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (184, '河北省', '张家口市', '怀来县', '130730'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (185, '河北省', '张家口市', '涿鹿县', '130731'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (186, '河北省', '张家口市', '赤城县', '130732'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (187, '河北省', '张家口市', '崇礼县', '130733'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (188, '河北省', '承德市', '市辖区', '130801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (189, '河北省', '承德市', '双桥区', '130802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (190, '河北省', '承德市', '双滦区', '130803'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (191, '河北省', '承德市', '鹰手营子矿区', '130804'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (192, '河北省', '承德市', '承德县', '130821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (193, '河北省', '承德市', '兴隆县', '130822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (194, '河北省', '承德市', '平泉县', '130823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (195, '河北省', '承德市', '滦平县', '130824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (196, '河北省', '承德市', '隆化县', '130825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (197, '河北省', '承德市', '丰宁满族自治县', '130826'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (198, '河北省', '承德市', '宽城满族自治县', '130827'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (199, '河北省', '承德市', '围场满族蒙古族自治县', '130828'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (200, '河北省', '沧州市', '市辖区', '130901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (201, '河北省', '沧州市', '新华区', '130902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (202, '河北省', '沧州市', '运河区', '130903'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (203, '河北省', '沧州市', '郊区', '130904'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (204, '河北省', '沧州市', '沧县', '130921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (205, '河北省', '沧州市', '青县', '130922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (206, '河北省', '沧州市', '东光县', '130923'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (207, '河北省', '沧州市', '海兴县', '130924'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (208, '河北省', '沧州市', '盐山县', '130925'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (209, '河北省', '沧州市', '肃宁县', '130926'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (210, '河北省', '沧州市', '南皮县', '130927'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (211, '河北省', '沧州市', '吴桥县', '130928'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (212, '河北省', '沧州市', '献县', '130929'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (213, '河北省', '沧州市', '孟村回族自治县', '130930'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (214, '河北省', '沧州市', '泊头市', '130981'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (215, '河北省', '沧州市', '任丘市', '130982'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (216, '河北省', '沧州市', '黄骅市', '130983'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (217, '河北省', '沧州市', '河间市', '130984'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (218, '河北省', '廊坊市', '市辖区', '131001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (219, '河北省', '廊坊市', '安次区', '131002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (220, '河北省', '廊坊市', '广阳区', '131003'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (221, '河北省', '廊坊市', '三河县', '131021'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (222, '河北省', '廊坊市', '固安县', '131022'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (223, '河北省', '廊坊市', '永清县', '131023'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (224, '河北省', '廊坊市', '香河县', '131024'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (225, '河北省', '廊坊市', '大城县', '131025'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (226, '河北省', '廊坊市', '文安县', '131026'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (227, '河北省', '廊坊市', '霸县', '131027'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (228, '河北省', '廊坊市', '大厂回族自治县', '131028'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (229, '河北省', '廊坊市', '霸州市', '131081'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (230, '河北省', '廊坊市', '三河市', '131082'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (231, '河北省', '衡水市', '市辖区', '131101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (232, '河北省', '衡水市', '桃城区', '131102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (233, '河北省', '衡水市', '枣强县', '131121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (234, '河北省', '衡水市', '武邑县', '131122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (235, '河北省', '衡水市', '武强县', '131123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (236, '河北省', '衡水市', '饶阳县', '131124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (237, '河北省', '衡水市', '安平县', '131125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (238, '河北省', '衡水市', '故城县', '131126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (239, '河北省', '衡水市', '景县', '131127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (240, '河北省', '衡水市', '阜城县', '131128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (241, '河北省', '衡水市', '冀州市', '131181'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (242, '河北省', '衡水市', '深州市', '131182'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (243, '河北省', '邯郸地区', '邯郸市', '132101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (244, '河北省', '邯郸地区', '大名县', '132121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (245, '河北省', '邯郸地区', '魏县', '132122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (246, '河北省', '邯郸地区', '曲周县', '132123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (247, '河北省', '邯郸地区', '丘县', '132124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (248, '河北省', '邯郸地区', '鸡泽县', '132125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (249, '河北省', '邯郸地区', '肥乡县', '132126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (250, '河北省', '邯郸地区', '广平县', '132127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (251, '河北省', '邯郸地区', '成安县', '132128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (252, '河北省', '邯郸地区', '临漳县', '132129'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (253, '河北省', '邯郸地区', '磁县', '132130'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (254, '河北省', '邯郸地区', '武安县', '132131'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (255, '河北省', '邯郸地区', '涉县', '132132'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (256, '河北省', '邯郸地区', '永年县', '132133'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (257, '河北省', '邯郸地区', '邯郸县', '132134'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (258, '河北省', '邯郸地区', '馆陶县', '132135'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (259, '河北省', '邢台地区', '南宫市', '132201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (260, '河北省', '邢台地区', '沙河市', '132202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (261, '河北省', '邢台地区', '邢台县', '132221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (262, '河北省', '邢台地区', '沙河县', '132222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (263, '河北省', '邢台地区', '临城县', '132223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (264, '河北省', '邢台地区', '内丘县', '132224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (265, '河北省', '邢台地区', '柏乡县', '132225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (266, '河北省', '邢台地区', '隆尧县', '132226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (267, '河北省', '邢台地区', '任县', '132227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (268, '河北省', '邢台地区', '南和县', '132228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (269, '河北省', '邢台地区', '宁晋县', '132229'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (270, '河北省', '邢台地区', '南宫县', '132230'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (271, '河北省', '邢台地区', '巨鹿县', '132231'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (272, '河北省', '邢台地区', '新河县', '132232'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (273, '河北省', '邢台地区', '广宗县', '132233'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (274, '河北省', '邢台地区', '平乡县', '132234'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (275, '河北省', '邢台地区', '威县', '132235'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (276, '河北省', '邢台地区', '清河县', '132236'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (277, '河北省', '邢台地区', '临西县', '132237'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (278, '河北省', '石家庄市', '辛集市', '132301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (279, '河北省', '石家庄市', '藁城市', '132302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (280, '河北省', '石家庄市', '束鹿县', '132321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (281, '河北省', '石家庄市', '晋县', '132322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (282, '河北省', '石家庄市', '深泽县', '132323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (283, '河北省', '石家庄市', '无极县', '132324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (284, '河北省', '石家庄市', '藁城县', '132325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (285, '河北省', '石家庄市', '赵县', '132326'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (286, '河北省', '石家庄市', '栾城县', '132327'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (287, '河北省', '石家庄市', '正定县', '132328'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (288, '河北省', '石家庄市', '新乐县', '132329'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (289, '河北省', '石家庄市', '高邑县', '132330'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (290, '河北省', '石家庄市', '元氏县', '132331'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (291, '河北省', '石家庄市', '赞皇县', '132332'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (292, '河北省', '石家庄市', '井陉县', '132333'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (293, '河北省', '石家庄市', '获鹿县', '132334'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (294, '河北省', '石家庄市', '平山县', '132335'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (295, '河北省', '石家庄市', '灵寿县', '132336'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (296, '河北省', '石家庄市', '行唐县', '132337'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (297, '河北省', '保定地区', '定州市', '132401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (298, '河北省', '保定地区', '涿州市', '132402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (299, '河北省', '保定地区', '安国市', '132403'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (300, '河北省', '保定地区', '高碑店市', '132404'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (301, '河北省', '保定地区', '易县', '132421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (302, '河北省', '保定地区', '满城县', '132422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (303, '河北省', '保定地区', '徐水县', '132423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (304, '河北省', '保定地区', '涞源县', '132424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (305, '河北省', '保定地区', '定兴县', '132425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (306, '河北省', '保定地区', '完县', '132426'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (307, '河北省', '保定地区', '唐县', '132427'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (308, '河北省', '保定地区', '望都县', '132428'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (309, '河北省', '保定地区', '涞水县', '132429'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (310, '河北省', '保定地区', '涿县', '132430'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (311, '河北省', '保定地区', '清苑县', '132431'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (312, '河北省', '保定地区', '高阳县', '132432'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (313, '河北省', '保定地区', '安新县', '132433'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (314, '河北省', '保定地区', '雄县', '132434'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (315, '河北省', '保定地区', '容城县', '132435'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (316, '河北省', '保定地区', '新城县', '132436'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (317, '河北省', '保定地区', '曲阳县', '132437'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (318, '河北省', '保定地区', '阜平县', '132438'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (319, '河北省', '保定地区', '定县', '132439'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (320, '河北省', '保定地区', '安国县', '132440'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (321, '河北省', '保定地区', '博野县', '132441'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (322, '河北省', '保定地区', '蠡县', '132442'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (323, '河北省', '张家口地区', '张家口市', '132501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (324, '河北省', '张家口地区', '张北市', '132521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1332, '上海市', NULL, '宝山县', '310223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (325, '河北省', '张家口地区', '康保县', '132522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (326, '河北省', '张家口地区', '沽源县', '132523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (327, '河北省', '张家口地区', '尚义县', '132524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (328, '河北省', '张家口地区', '蔚县', '132525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (329, '河北省', '张家口地区', '阳原县', '132526'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (330, '河北省', '张家口地区', '怀安县', '132527'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (331, '河北省', '张家口地区', '万全县', '132528'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (332, '河北省', '张家口地区', '怀来县', '132529'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (333, '河北省', '张家口地区', '涿鹿县', '132530'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (334, '河北省', '张家口地区', '宣化县', '132531'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (335, '河北省', '张家口地区', '赤城县', '132532'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (336, '河北省', '张家口地区', '崇礼县', '132533'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (337, '河北省', '承德地区', '承德市', '132601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (338, '河北省', '承德地区', '青龙县', '132621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (339, '河北省', '承德地区', '宽城满族自治县', '132622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (340, '河北省', '承德地区', '兴隆县', '132623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (341, '河北省', '承德地区', '平泉县', '132624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (342, '河北省', '承德地区', '承德县', '132625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (343, '河北省', '承德地区', '滦平县', '132626'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (344, '河北省', '承德地区', '丰宁满族自治县', '132627'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (345, '河北省', '承德地区', '隆化县', '132628'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (346, '河北省', '承德地区', '围场满族蒙古族自治县', '132629'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (347, '河北省', '廊坊地区', '廊坊市', '132801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (348, '河北省', '廊坊地区', '三河县', '132821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (349, '河北省', '廊坊地区', '大厂回族自治县', '132822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (350, '河北省', '廊坊地区', '香河县', '132823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (351, '河北省', '廊坊地区', '永清县', '132825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (352, '河北省', '廊坊地区', '固安县', '132826'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (353, '河北省', '廊坊地区', '霸县', '132827'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (354, '河北省', '廊坊地区', '文安县', '132828'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (355, '河北省', '廊坊地区', '大城县', '132829'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (356, '河北省', '沧州地区', '沧州市', '132901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (357, '河北省', '沧州地区', '泊头市', '132902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (358, '河北省', '沧州地区', '任丘市', '132903'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (359, '河北省', '沧州地区', '黄骅市', '132904'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (360, '河北省', '沧州地区', '河间市', '132905'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (361, '河北省', '沧州地区', '沧县', '132921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (362, '河北省', '沧州地区', '河间县', '132922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (363, '河北省', '沧州地区', '肃宁县', '132923'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (364, '河北省', '沧州地区', '献县', '132924'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (365, '河北省', '沧州地区', '交河县', '132925'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (366, '河北省', '沧州地区', '吴桥县', '132926'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (367, '河北省', '沧州地区', '东光县', '132927'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (368, '河北省', '沧州地区', '南皮县', '132928'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (369, '河北省', '沧州地区', '盐山县', '132929'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (370, '河北省', '沧州地区', '黄骅县', '132930'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (371, '河北省', '沧州地区', '孟村回族自治县', '132931'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (372, '河北省', '沧州地区', '青县', '132932'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (373, '河北省', '沧州地区', '任丘县', '132933'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (374, '河北省', '沧州地区', '海兴县', '132934'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (375, '河北省', '衡水地区', '衡水市', '133001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (376, '河北省', '衡水地区', '冀州市', '133002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (377, '河北省', '衡水地区', '衡水县', '133021'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (378, '河北省', '衡水地区', '冀县', '133022'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (379, '河北省', '衡水地区', '枣强县', '133023'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (380, '河北省', '衡水地区', '武邑县', '133024'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (381, '河北省', '衡水地区', '深县', '133025'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (382, '河北省', '衡水地区', '武强县', '133026'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (383, '河北省', '衡水地区', '饶阳县', '133027'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (384, '河北省', '衡水地区', '安平县', '133028'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (385, '河北省', '衡水地区', '故城县', '133029'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (386, '河北省', '衡水地区', '景县', '133030'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (387, '河北省', '衡水地区', '阜城县', '133031'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (388, '河北省', NULL, '武安市', '139001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (389, '山西省', '太原市', '市辖区', '140101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (390, '山西省', '太原市', '南城区', '140102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (391, '山西省', '太原市', '北城区', '140103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (392, '山西省', '太原市', '河西区', '140104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (393, '山西省', '太原市', '小店区', '140105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (394, '山西省', '太原市', '迎泽区', '140106'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (395, '山西省', '太原市', '杏花岭区', '140107'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (396, '山西省', '太原市', '尖草坪区', '140108'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (397, '山西省', '太原市', '万柏林区', '140109'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (398, '山西省', '太原市', '晋源区', '140110'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (399, '山西省', '太原市', '古交工矿区', '140111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (400, '山西省', '太原市', '南郊区', '140112'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (401, '山西省', '太原市', '北郊区', '140113'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (402, '山西省', '太原市', '清徐县', '140121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (403, '山西省', '太原市', '阳曲县', '140122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (404, '山西省', '太原市', '娄烦县', '140123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (405, '山西省', '太原市', '古交市', '140181'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (406, '山西省', '大同市', '市辖区', '140201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (407, '山西省', '大同市', '城区', '140202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (408, '山西省', '大同市', '矿区', '140203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (409, '山西省', '大同市', '南郊区', '140211'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (410, '山西省', '大同市', '新荣区', '140212'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (411, '山西省', '大同市', '阳高县', '140221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (412, '山西省', '大同市', '天镇县', '140222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (413, '山西省', '大同市', '广灵县', '140223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (414, '山西省', '大同市', '灵丘县', '140224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (415, '山西省', '大同市', '浑源县', '140225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (416, '山西省', '大同市', '左云县', '140226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (417, '山西省', '大同市', '大同县', '140227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (418, '山西省', '大同市', '左云县', '140230'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (419, '山西省', '大同市', '大同县', '140232'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (420, '山西省', '阳泉市', '市辖区', '140301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (421, '山西省', '阳泉市', '城区', '140302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (422, '山西省', '阳泉市', '矿区', '140303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (423, '山西省', '阳泉市', '郊区', '140311'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (424, '山西省', '阳泉市', '平定县', '140321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (425, '山西省', '阳泉市', '盂县', '140322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (426, '山西省', '长治市', '市辖区', '140401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (427, '山西省', '长治市', '城区', '140402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (428, '山西省', '长治市', '郊区', '140411'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (429, '山西省', '长治市', '长治县', '140421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (430, '山西省', '长治市', '襄垣县', '140423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (431, '山西省', '长治市', '屯留县', '140424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (432, '山西省', '长治市', '平顺县', '140425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (433, '山西省', '长治市', '黎城县', '140426'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (434, '山西省', '长治市', '壶关县', '140427'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (435, '山西省', '长治市', '长子县', '140428'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (436, '山西省', '长治市', '武乡县', '140429'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (437, '山西省', '长治市', '沁县', '140430'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (438, '山西省', '长治市', '沁源县', '140431'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (439, '山西省', '长治市', '潞城市', '140481'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (440, '山西省', '晋城市', '市辖区', '140501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (441, '山西省', '晋城市', '城区', '140502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (442, '山西省', '晋城市', '郊区', '140511'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (443, '山西省', '晋城市', '沁水县', '140521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (444, '山西省', '晋城市', '阳城县', '140522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (445, '山西省', '晋城市', '高平县', '140523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (446, '山西省', '晋城市', '陵川县', '140524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (447, '山西省', '晋城市', '泽州县', '140525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (448, '山西省', '晋城市', '高平市', '140581'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (449, '山西省', '朔州市', '市辖区', '140601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (450, '山西省', '朔州市', '朔城区', '140602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (451, '山西省', '朔州市', '平鲁区', '140603'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (452, '山西省', '朔州市', '山阴县', '140621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (453, '山西省', '朔州市', '应县', '140622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (454, '山西省', '朔州市', '右玉县', '140623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (455, '山西省', '朔州市', '怀仁县', '140624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (456, '山西省', '晋中市', '市辖区', '140701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (457, '山西省', '晋中市', '榆次区', '140702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (458, '山西省', '晋中市', '榆社县', '140721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (459, '山西省', '晋中市', '左权县', '140722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (460, '山西省', '晋中市', '和顺县', '140723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (461, '山西省', '晋中市', '昔阳县', '140724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (462, '山西省', '晋中市', '寿阳县', '140725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (463, '山西省', '晋中市', '太谷县', '140726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (464, '山西省', '晋中市', '祁县', '140727'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (465, '山西省', '晋中市', '平遥县', '140728'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (466, '山西省', '晋中市', '灵石县', '140729'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (467, '山西省', '晋中市', '介休市', '140781'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (468, '山西省', '运城市', '市辖区', '140801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (469, '山西省', '运城市', '盐湖区', '140802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (470, '山西省', '运城市', '临猗县', '140821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (471, '山西省', '运城市', '万荣县', '140822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (472, '山西省', '运城市', '闻喜县', '140823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (473, '山西省', '运城市', '稷山县', '140824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (474, '山西省', '运城市', '新绛县', '140825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (475, '山西省', '运城市', '绛县', '140826'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (476, '山西省', '运城市', '垣曲县', '140827'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (477, '山西省', '运城市', '夏县', '140828'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (478, '山西省', '运城市', '平陆县', '140829'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (479, '山西省', '运城市', '芮城县', '140830'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (480, '山西省', '运城市', '永济市', '140881'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (481, '山西省', '运城市', '河津市', '140882'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (482, '山西省', '忻州市', '市辖区', '140901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (483, '山西省', '忻州市', '忻府区', '140902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (484, '山西省', '忻州市', '定襄县', '140921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (485, '山西省', '忻州市', '五台县', '140922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (486, '山西省', '忻州市', '代县', '140923'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (487, '山西省', '忻州市', '繁峙县', '140924'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (488, '山西省', '忻州市', '宁武县', '140925'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (489, '山西省', '忻州市', '静乐县', '140926'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (490, '山西省', '忻州市', '神池县', '140927'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (491, '山西省', '忻州市', '五寨县', '140928'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (492, '山西省', '忻州市', '岢岚县', '140929'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (493, '山西省', '忻州市', '河曲县', '140930'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (494, '山西省', '忻州市', '保德县', '140931'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (495, '山西省', '忻州市', '偏关县', '140932'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (496, '山西省', '忻州市', '原平市', '140981'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (497, '山西省', '临汾市', '市辖区', '141001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (498, '山西省', '临汾市', '尧都区', '141002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (499, '山西省', '临汾市', '曲沃县', '141021'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (500, '山西省', '临汾市', '翼城县', '141022'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (501, '山西省', '临汾市', '襄汾县', '141023'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (502, '山西省', '临汾市', '洪洞县', '141024'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (503, '山西省', '临汾市', '古县', '141025'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (504, '山西省', '临汾市', '安泽县', '141026'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (505, '山西省', '临汾市', '浮山县', '141027'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (506, '山西省', '临汾市', '吉县', '141028'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (507, '山西省', '临汾市', '乡宁县', '141029'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (508, '山西省', '临汾市', '大宁县', '141030'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (509, '山西省', '临汾市', '隰县', '141031'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (510, '山西省', '临汾市', '永和县', '141032'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (511, '山西省', '临汾市', '蒲县', '141033'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (512, '山西省', '临汾市', '汾西县', '141034'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (513, '山西省', '临汾市', '侯马市', '141081'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (514, '山西省', '临汾市', '霍州市', '141082'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (515, '山西省', '吕梁市', '市辖区', '141101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (516, '山西省', '吕梁市', '离石区', '141102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (517, '山西省', '吕梁市', '文水县', '141121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (518, '山西省', '吕梁市', '交城县', '141122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (519, '山西省', '吕梁市', '兴县', '141123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (520, '山西省', '吕梁市', '临县', '141124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (521, '山西省', '吕梁市', '柳林县', '141125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (522, '山西省', '吕梁市', '石楼县', '141126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (523, '山西省', '吕梁市', '岚县', '141127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (524, '山西省', '吕梁市', '方山县', '141128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (525, '山西省', '吕梁市', '中阳县', '141129'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (526, '山西省', '吕梁市', '交口县', '141130'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (527, '山西省', '吕梁市', '孝义市', '141181'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (528, '山西省', '吕梁市', '汾阳市', '141182'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (529, '山西省', '雁北地区', '阳高县', '142121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (530, '山西省', '雁北地区', '天镇县', '142122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (531, '山西省', '雁北地区', '广灵县', '142123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (532, '山西省', '雁北地区', '灵丘县', '142124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (533, '山西省', '雁北地区', '浑源县', '142125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (534, '山西省', '雁北地区', '应县', '142126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (535, '山西省', '雁北地区', '山阴县', '142127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (536, '山西省', '雁北地区', '朔县', '142128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (537, '山西省', '雁北地区', '平鲁县', '142129'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (538, '山西省', '雁北地区', '左云县', '142130'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (539, '山西省', '雁北地区', '右玉县', '142131'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (540, '山西省', '雁北地区', '大同县', '142132'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (541, '山西省', '雁北地区', '怀仁县', '142133'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (542, '山西省', '忻州地区', '忻州市', '142201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (543, '山西省', '忻州地区', '原平市', '142202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (544, '山西省', '忻州地区', '定襄县', '142222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (545, '山西省', '忻州地区', '五台县', '142223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (546, '山西省', '忻州地区', '代县', '142225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (547, '山西省', '忻州地区', '繁峙县', '142226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (548, '山西省', '忻州地区', '宁武县', '142227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (549, '山西省', '忻州地区', '静乐县', '142228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (550, '山西省', '忻州地区', '神池县', '142229'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (551, '山西省', '忻州地区', '五寨县', '142230'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (552, '山西省', '忻州地区', '岢岚县', '142231'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (553, '山西省', '忻州地区', '河曲县', '142232'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (554, '山西省', '忻州地区', '保德县', '142233'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (555, '山西省', '忻州地区', '偏关县', '142234'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (556, '山西省', '吕梁地区', '孝义市', '142301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (557, '山西省', '吕梁地区', '离石市', '142302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (558, '山西省', '吕梁地区', '汾阳市', '142303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (559, '山西省', '吕梁地区', '汾阳县', '142321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (560, '山西省', '吕梁地区', '文水县', '142322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (561, '山西省', '吕梁地区', '交城县', '142323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (562, '山西省', '吕梁地区', '兴县', '142325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (563, '山西省', '吕梁地区', '临县', '142326'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (564, '山西省', '吕梁地区', '柳林县', '142327'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (565, '山西省', '吕梁地区', '石楼县', '142328'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (566, '山西省', '吕梁地区', '岚县', '142329'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (567, '山西省', '吕梁地区', '方山县', '142330'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (568, '山西省', '吕梁地区', '中阳县', '142332'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (569, '山西省', '吕梁地区', '交口县', '142333'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (570, '山西省', '晋中地区', '榆次市', '142401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (571, '山西省', '晋中地区', '介休市', '142402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (572, '山西省', '晋中地区', '榆社县', '142421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (573, '山西省', '晋中地区', '左权县', '142422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (574, '山西省', '晋中地区', '和顺县', '142423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (575, '山西省', '晋中地区', '昔阳县', '142424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (576, '山西省', '晋中地区', '寿阳县', '142427'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (577, '山西省', '晋中地区', '太谷县', '142429'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (578, '山西省', '晋中地区', '祁县', '142430'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (579, '山西省', '晋中地区', '平遥县', '142431'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (580, '山西省', '晋中地区', '灵石县', '142433'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (581, '山西省', '临汾地区', '临汾市', '142601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (582, '山西省', '临汾地区', '侯马市', '142602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (583, '山西省', '临汾地区', '霍州市', '142603'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (584, '山西省', '临汾地区', '曲沃县', '142621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (585, '山西省', '临汾地区', '翼城县', '142622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (586, '山西省', '临汾地区', '襄汾县', '142623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (587, '山西省', '临汾地区', '洪洞县', '142625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (588, '山西省', '临汾地区', '古县', '142627'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (589, '山西省', '临汾地区', '安泽县', '142628'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (590, '山西省', '临汾地区', '浮山县', '142629'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (591, '山西省', '临汾地区', '吉县', '142630'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (592, '山西省', '临汾地区', '乡宁县', '142631'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (593, '山西省', '临汾地区', '蒲县', '142632'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (594, '山西省', '临汾地区', '大宁县', '142633'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (595, '山西省', '临汾地区', '永和县', '142634'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (596, '山西省', '临汾地区', '隰县', '142635'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (597, '山西省', '临汾地区', '汾西县', '142636'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (598, '山西省', '运城地区', '运城市', '142701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (599, '山西省', '运城地区', '永济市', '142702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (600, '山西省', '运城地区', '河津市', '142703'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (601, '山西省', '运城地区', '芮城县', '142723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (602, '山西省', '运城地区', '临猗县', '142724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (603, '山西省', '运城地区', '万荣县', '142725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (604, '山西省', '运城地区', '新绛县', '142726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (605, '山西省', '运城地区', '稷山县', '142727'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (606, '山西省', '运城地区', '闻喜县', '142729'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (607, '山西省', '运城地区', '夏县', '142730'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (608, '山西省', '运城地区', '绛县', '142731'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (609, '山西省', '运城地区', '平陆县', '142732'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (610, '山西省', '运城地区', '垣曲县', '142733'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (611, '山西省', NULL, '古交市', '149001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (612, '内蒙古自治区', '呼和浩特市', '市辖区', '150101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (613, '内蒙古自治区', '呼和浩特市', '新城区', '150102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (614, '内蒙古自治区', '呼和浩特市', '回民区', '150103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (615, '内蒙古自治区', '呼和浩特市', '玉泉区', '150104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (616, '内蒙古自治区', '呼和浩特市', '郊区', '150105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (617, '内蒙古自治区', '呼和浩特市', '土默特左旗', '150121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (618, '内蒙古自治区', '呼和浩特市', '托克托县', '150122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (619, '内蒙古自治区', '呼和浩特市', '和林格尔县', '150123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (620, '内蒙古自治区', '呼和浩特市', '清水河县', '150124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (621, '内蒙古自治区', '呼和浩特市', '武川县', '150125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (622, '内蒙古自治区', '包头市', '市辖区', '150201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (623, '内蒙古自治区', '包头市', '东河区', '150202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (624, '内蒙古自治区', '包头市', '昆都伦区', '150203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (625, '内蒙古自治区', '包头市', '青山区', '150204'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (626, '内蒙古自治区', '包头市', '石拐矿区', '150205'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (627, '内蒙古自治区', '包头市', '白云矿区', '150206'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (628, '内蒙古自治区', '包头市', '郊区', '150207'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (629, '内蒙古自治区', '包头市', '土默特右旗', '150221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (630, '内蒙古自治区', '包头市', '固阳县', '150222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (631, '内蒙古自治区', '包头市', '达尔罕茂明安联合旗', '150223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (632, '内蒙古自治区', '乌海市', '市辖区', '150301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (633, '内蒙古自治区', '乌海市', '海勃湾区', '150302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (634, '内蒙古自治区', '乌海市', '海南区', '150303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (635, '内蒙古自治区', '乌海市', '乌达区', '150304'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (636, '内蒙古自治区', '赤峰市', '市辖区', '150401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (637, '内蒙古自治区', '赤峰市', '红山区', '150402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (638, '内蒙古自治区', '赤峰市', '元宝山区', '150403'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (639, '内蒙古自治区', '赤峰市', '松山区', '150404'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (640, '内蒙古自治区', '赤峰市', '阿鲁科尔沁旗', '150421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (641, '内蒙古自治区', '赤峰市', '巴林左旗', '150422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (642, '内蒙古自治区', '赤峰市', '巴林右旗', '150423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (643, '内蒙古自治区', '赤峰市', '林西县', '150424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (644, '内蒙古自治区', '赤峰市', '克什克腾旗', '150425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (645, '内蒙古自治区', '赤峰市', '翁牛特旗', '150426'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (646, '内蒙古自治区', '赤峰市', '喀喇沁旗', '150428'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (647, '内蒙古自治区', '赤峰市', '宁城县', '150429'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (648, '内蒙古自治区', '赤峰市', '敖汉旗', '150430'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (649, '内蒙古自治区', '通辽市', '市辖区', '150501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (650, '内蒙古自治区', '通辽市', '科尔沁区', '150502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (651, '内蒙古自治区', '通辽市', '科尔沁左翼中旗', '150521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (652, '内蒙古自治区', '通辽市', '科尔沁左翼后旗', '150522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (653, '内蒙古自治区', '通辽市', '开鲁县', '150523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (654, '内蒙古自治区', '通辽市', '库伦旗', '150524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (655, '内蒙古自治区', '通辽市', '奈曼旗', '150525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (656, '内蒙古自治区', '通辽市', '扎鲁特旗', '150526'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (657, '内蒙古自治区', '通辽市', '霍林郭勒市', '150581'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (658, '内蒙古自治区', '鄂尔多斯市', '鄂尔多斯市', '150601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (659, '内蒙古自治区', '鄂尔多斯市', '东胜区', '150602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (660, '内蒙古自治区', '鄂尔多斯市', '达拉特旗', '150621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (661, '内蒙古自治区', '鄂尔多斯市', '准格尔旗', '150622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (662, '内蒙古自治区', '鄂尔多斯市', '鄂托克前旗', '150623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (663, '内蒙古自治区', '鄂尔多斯市', '鄂托克旗', '150624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (664, '内蒙古自治区', '鄂尔多斯市', '杭锦旗', '150625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (665, '内蒙古自治区', '鄂尔多斯市', '乌审旗', '150626'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (666, '内蒙古自治区', '鄂尔多斯市', '伊金霍洛旗', '150627'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (667, '内蒙古自治区', '呼伦贝尔市', '市辖区', '150701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (668, '内蒙古自治区', '呼伦贝尔市', '海拉尔区', '150702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (669, '内蒙古自治区', '呼伦贝尔市', '阿荣旗', '150721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (670, '内蒙古自治区', '呼伦贝尔市', '莫力达瓦达斡尔族自治旗', '150722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (671, '内蒙古自治区', '呼伦贝尔市', '鄂伦春自治旗', '150723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (672, '内蒙古自治区', '呼伦贝尔市', '鄂温克族自治旗', '150724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (673, '内蒙古自治区', '呼伦贝尔市', '陈巴尔虎旗', '150725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (674, '内蒙古自治区', '呼伦贝尔市', '新巴尔虎左旗', '150726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (675, '内蒙古自治区', '呼伦贝尔市', '新巴尔虎右旗', '150727'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (676, '内蒙古自治区', '呼伦贝尔市', '满洲里市', '150781'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (677, '内蒙古自治区', '呼伦贝尔市', '牙克石市', '150782'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (678, '内蒙古自治区', '呼伦贝尔市', '扎兰屯市', '150783'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (679, '内蒙古自治区', '呼伦贝尔市', '额尔古纳市', '150784'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (680, '内蒙古自治区', '呼伦贝尔市', '根河市', '150785'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (681, '内蒙古自治区', '巴彦淖尔市', '市辖区', '150801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (682, '内蒙古自治区', '巴彦淖尔市', '临河区', '150802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (683, '内蒙古自治区', '巴彦淖尔市', '五原县', '150821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (684, '内蒙古自治区', '巴彦淖尔市', '磴口县', '150822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (685, '内蒙古自治区', '巴彦淖尔市', '乌拉特前旗', '150823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (686, '内蒙古自治区', '巴彦淖尔市', '乌拉特中旗', '150824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (687, '内蒙古自治区', '巴彦淖尔市', '乌拉特后旗', '150825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (688, '内蒙古自治区', '巴彦淖尔市', '杭锦后旗', '150826'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (689, '内蒙古自治区', '乌兰察布市', '市辖区', '150901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (690, '内蒙古自治区', '乌兰察布市', '集宁区', '150902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (691, '内蒙古自治区', '乌兰察布市', '卓资县', '150921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (692, '内蒙古自治区', '乌兰察布市', '化德县', '150922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (693, '内蒙古自治区', '乌兰察布市', '商都县', '150923'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (694, '内蒙古自治区', '乌兰察布市', '兴和县', '150924'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (695, '内蒙古自治区', '乌兰察布市', '凉城县', '150925'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (696, '内蒙古自治区', '乌兰察布市', '察哈尔右翼前旗', '150926'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (697, '内蒙古自治区', '乌兰察布市', '察哈尔右翼中旗', '150927'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (698, '内蒙古自治区', '乌兰察布市', '察哈尔右翼后旗', '150928'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (699, '内蒙古自治区', '乌兰察布市', '四子王旗', '150929'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (700, '内蒙古自治区', '乌兰察布市', '丰镇市', '150981'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (701, '内蒙古自治区', '呼伦贝尔盟', '海拉尔市', '152101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (702, '内蒙古自治区', '呼伦贝尔盟', '满洲里市', '152102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (703, '内蒙古自治区', '呼伦贝尔盟', '扎兰屯市', '152103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (704, '内蒙古自治区', '呼伦贝尔盟', '牙克石市', '152104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (705, '内蒙古自治区', '呼伦贝尔盟', '根河市', '152105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (706, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳市', '152106'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (707, '内蒙古自治区', '呼伦贝尔盟', '布特哈旗', '152121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (708, '内蒙古自治区', '呼伦贝尔盟', '阿荣旗', '152122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (709, '内蒙古自治区', '呼伦贝尔盟', '莫力达瓦达斡尔族自治旗', '152123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (710, '内蒙古自治区', '呼伦贝尔盟', '喜桂图旗', '152124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (711, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳右旗', '152125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (712, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳左旗', '152126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (713, '内蒙古自治区', '呼伦贝尔盟', '鄂伦春自治旗', '152127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (714, '内蒙古自治区', '呼伦贝尔盟', '鄂温克族自治旗', '152128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (715, '内蒙古自治区', '呼伦贝尔盟', '新巴尔虎右旗', '152129'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (716, '内蒙古自治区', '呼伦贝尔盟', '新巴尔虎左旗', '152130'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (717, '内蒙古自治区', '呼伦贝尔盟', '陈巴尔虎旗', '152131'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (718, '内蒙古自治区', '兴安盟', '乌兰浩特市', '152201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (719, '内蒙古自治区', '兴安盟', '阿尔山市', '152202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (720, '内蒙古自治区', '兴安盟', '科尔沁右翼前旗', '152221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (721, '内蒙古自治区', '兴安盟', '科尔沁右翼中旗', '152222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (722, '内蒙古自治区', '兴安盟', '扎赉特旗', '152223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (723, '内蒙古自治区', '兴安盟', '突泉县', '152224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (724, '内蒙古自治区', '哲里木盟', '通辽市', '152301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (725, '内蒙古自治区', '哲里木盟', '霍林郭勒市', '152302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (726, '内蒙古自治区', '哲里木盟', '通辽县', '152321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (727, '内蒙古自治区', '哲里木盟', '科尔沁左翼中旗', '152322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (728, '内蒙古自治区', '哲里木盟', '科尔沁左翼后旗', '152323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (729, '内蒙古自治区', '哲里木盟', '开鲁县', '152324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (730, '内蒙古自治区', '哲里木盟', '库伦旗', '152325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (731, '内蒙古自治区', '哲里木盟', '奈曼旗', '152326'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (732, '内蒙古自治区', '哲里木盟', '扎鲁特旗', '152327'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (733, '内蒙古自治区', '锡林郭勒盟', '二连浩特市', '152501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (734, '内蒙古自治区', '锡林郭勒盟', '锡林浩特市', '152502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (735, '内蒙古自治区', '锡林郭勒盟', '阿巴嘎旗', '152522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (736, '内蒙古自治区', '锡林郭勒盟', '苏尼特左旗', '152523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (737, '内蒙古自治区', '锡林郭勒盟', '苏尼特右旗', '152524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (738, '内蒙古自治区', '锡林郭勒盟', '东乌珠穆沁旗', '152525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (739, '内蒙古自治区', '锡林郭勒盟', '西乌珠穆沁旗', '152526'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (740, '内蒙古自治区', '锡林郭勒盟', '太仆寺旗', '152527'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (741, '内蒙古自治区', '锡林郭勒盟', '镶黄旗', '152528'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (742, '内蒙古自治区', '锡林郭勒盟', '正镶白旗', '152529'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (743, '内蒙古自治区', '锡林郭勒盟', '正蓝旗', '152530'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (744, '内蒙古自治区', '锡林郭勒盟', '多伦县', '152531'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (745, '内蒙古自治区', '乌兰察布盟', '集宁市', '152601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (746, '内蒙古自治区', '乌兰察布盟', '丰镇市', '152602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (747, '内蒙古自治区', '乌兰察布盟', '武川县', '152621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (748, '内蒙古自治区', '乌兰察布盟', '和林格尔县', '152622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (749, '内蒙古自治区', '乌兰察布盟', '清水河县', '152623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (750, '内蒙古自治区', '乌兰察布盟', '卓资县', '152624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (751, '内蒙古自治区', '乌兰察布盟', '化德县', '152625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (752, '内蒙古自治区', '乌兰察布盟', '商都县', '152626'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (753, '内蒙古自治区', '乌兰察布盟', '兴和县', '152627'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (754, '内蒙古自治区', '乌兰察布盟', '丰镇县', '152628'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (755, '内蒙古自治区', '乌兰察布盟', '凉城县', '152629'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (756, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼前旗', '152630'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (757, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼中旗', '152631'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (758, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼后旗', '152632'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (759, '内蒙古自治区', '乌兰察布盟', '达尔罕茂明安联合旗', '152633'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (760, '内蒙古自治区', '乌兰察布盟', '四子王旗', '152634'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (761, '内蒙古自治区', '伊克昭盟', '东胜市', '152701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (762, '内蒙古自治区', '伊克昭盟', '东胜县', '152721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (763, '内蒙古自治区', '伊克昭盟', '达拉特旗', '152722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (764, '内蒙古自治区', '伊克昭盟', '准格尔旗', '152723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (765, '内蒙古自治区', '伊克昭盟', '鄂托克前旗', '152724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (766, '内蒙古自治区', '伊克昭盟', '鄂托克旗', '152725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (767, '内蒙古自治区', '伊克昭盟', '杭锦旗', '152726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (768, '内蒙古自治区', '伊克昭盟', '乌审旗', '152727'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (769, '内蒙古自治区', '伊克昭盟', '伊金霍洛旗', '152728'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (770, '内蒙古自治区', '巴彦淖尔盟', '临河市', '152801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (771, '内蒙古自治区', '巴彦淖尔盟', '临河县', '152821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (772, '内蒙古自治区', '巴彦淖尔盟', '五原县', '152822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (773, '内蒙古自治区', '巴彦淖尔盟', '磴口县', '152823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (774, '内蒙古自治区', '巴彦淖尔盟', '乌拉特前旗', '152824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (775, '内蒙古自治区', '巴彦淖尔盟', '乌拉特中旗', '152825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (776, '内蒙古自治区', '巴彦淖尔盟', '乌拉特后旗', '152826'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (777, '内蒙古自治区', '巴彦淖尔盟', '杭锦后旗', '152827'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (778, '内蒙古自治区', '阿拉善盟', '阿拉善左旗', '152921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (779, '内蒙古自治区', '阿拉善盟', '阿拉善右旗', '152922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (780, '内蒙古自治区', '阿拉善盟', '额济纳旗', '152923'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (781, '辽宁省', '沈阳市', '市辖区', '210101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (782, '辽宁省', '沈阳市', '和平区', '210102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (783, '辽宁省', '沈阳市', '沈河区', '210103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (784, '辽宁省', '沈阳市', '大东区', '210104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (785, '辽宁省', '沈阳市', '皇姑区', '210105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (786, '辽宁省', '沈阳市', '铁西区', '210106'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (787, '辽宁省', '沈阳市', '苏家屯区', '210111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (788, '辽宁省', '沈阳市', '东陵区', '210112'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (789, '辽宁省', '沈阳市', '沈北新区', '210113'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (790, '辽宁省', '沈阳市', '于洪区', '210114'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (791, '辽宁省', '沈阳市', '市区', '210120'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (792, '辽宁省', '沈阳市', '新民县', '210121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (793, '辽宁省', '沈阳市', '辽中县', '210122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (794, '辽宁省', '沈阳市', '康平县', '210123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (795, '辽宁省', '沈阳市', '法库县', '210124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (796, '辽宁省', '沈阳市', '新民市', '210181'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (797, '辽宁省', '大连市', '市辖区', '210201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (798, '辽宁省', '大连市', '中山区', '210202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (799, '辽宁省', '大连市', '西岗区', '210203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (800, '辽宁省', '大连市', '沙河口区', '210204'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (801, '辽宁省', '大连市', '甘井子区', '210211'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (802, '辽宁省', '大连市', '旅顺口区', '210212'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (803, '辽宁省', '大连市', '金州区', '210213'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (804, '辽宁省', '大连市', '瓦房店市', '210219'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (805, '辽宁省', '大连市', '市区', '210220'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (806, '辽宁省', '大连市', '金县', '210221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (807, '辽宁省', '大连市', '新金县', '210222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (808, '辽宁省', '大连市', '复县', '210223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (809, '辽宁省', '大连市', '长海县', '210224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (810, '辽宁省', '大连市', '庄河县', '210225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (811, '辽宁省', '大连市', '瓦房店市', '210281'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (812, '辽宁省', '大连市', '普兰店市', '210282'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (813, '辽宁省', '大连市', '庄河市', '210283'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (814, '辽宁省', '鞍山市', '市辖区', '210301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (815, '辽宁省', '鞍山市', '铁东区', '210302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (816, '辽宁省', '鞍山市', '铁西区', '210303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (817, '辽宁省', '鞍山市', '立山区', '210304'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1333, '上海市', NULL, '川沙县', '310224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (818, '辽宁省', '鞍山市', '千山区', '210311'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (819, '辽宁省', '鞍山市', '开发区', '210319'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (820, '辽宁省', '鞍山市', '台安县', '210321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (821, '辽宁省', '鞍山市', '岫岩满族自治县', '210323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (822, '辽宁省', '鞍山市', '海城市', '210381'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (823, '辽宁省', '抚顺市', '市辖区', '210401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (824, '辽宁省', '抚顺市', '新抚区', '210402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (825, '辽宁省', '抚顺市', '东洲区', '210403'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (826, '辽宁省', '抚顺市', '望花区', '210404'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (827, '辽宁省', '抚顺市', '顺城区', '210411'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (828, '辽宁省', '抚顺市', '抚顺县', '210421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (829, '辽宁省', '抚顺市', '新宾满族自治县', '210422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (830, '辽宁省', '抚顺市', '清原满族自治县', '210423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (831, '辽宁省', '本溪市', '市辖区', '210501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (832, '辽宁省', '本溪市', '平山区', '210502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (833, '辽宁省', '本溪市', '溪湖区', '210503'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (834, '辽宁省', '本溪市', '明山区', '210504'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (835, '辽宁省', '本溪市', '南芬区', '210505'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (836, '辽宁省', '本溪市', '南芬区', '210511'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (837, '辽宁省', '本溪市', '本溪满族自治县', '210521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (838, '辽宁省', '本溪市', '桓仁满族自治县', '210522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (839, '辽宁省', '丹东市', '市辖区', '210601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (840, '辽宁省', '丹东市', '元宝区', '210602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (841, '辽宁省', '丹东市', '振兴区', '210603'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (842, '辽宁省', '丹东市', '振安区', '210604'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (843, '辽宁省', '丹东市', '市区', '210620'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (844, '辽宁省', '丹东市', '凤城满族自治县', '210621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (845, '辽宁省', '丹东市', '岫岩满族自治县', '210622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (846, '辽宁省', '丹东市', '东沟县', '210623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (847, '辽宁省', '丹东市', '宽甸满族自治县', '210624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (848, '辽宁省', '丹东市', '东港市', '210681'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (849, '辽宁省', '丹东市', '凤城市', '210682'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (850, '辽宁省', '锦州市', '市辖区', '210701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (851, '辽宁省', '锦州市', '古塔区', '210702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (852, '辽宁省', '锦州市', '凌河区', '210703'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (853, '辽宁省', '锦州市', '南票区', '210704'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (854, '辽宁省', '锦州市', '葫芦岛区', '210705'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (855, '辽宁省', '锦州市', '太和区', '210711'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (856, '辽宁省', '锦州市', '锦西市', '210719'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (857, '辽宁省', '锦州市', '市区', '210720'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (858, '辽宁省', '锦州市', '锦西县', '210721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (859, '辽宁省', '锦州市', '兴城县', '210722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (860, '辽宁省', '锦州市', '绥中县', '210723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (861, '辽宁省', '锦州市', '锦县', '210724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (862, '辽宁省', '锦州市', '北镇满族自治县', '210725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (863, '辽宁省', '锦州市', '黑山县', '210726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (864, '辽宁省', '锦州市', '义县', '210727'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (865, '辽宁省', '锦州市', '凌海市', '210781'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (866, '辽宁省', '锦州市', '北镇市', '210782'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (867, '辽宁省', '营口市', '市辖区', '210801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (868, '辽宁省', '营口市', '站前区', '210802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (869, '辽宁省', '营口市', '西市区', '210803'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (870, '辽宁省', '营口市', '鲅鱼圈区', '210804'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (871, '辽宁省', '营口市', '老边区', '210811'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (872, '辽宁省', '营口市', '营口县', '210821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (873, '辽宁省', '营口市', '盖县', '210824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (874, '辽宁省', '营口市', '盖州市', '210881'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (875, '辽宁省', '营口市', '大石桥市', '210882'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (876, '辽宁省', '阜新市', '市辖区', '210901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (877, '辽宁省', '阜新市', '海州区', '210902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (878, '辽宁省', '阜新市', '新邱区', '210903'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (879, '辽宁省', '阜新市', '太平区', '210904'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (880, '辽宁省', '阜新市', '清河门区', '210905'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (881, '辽宁省', '阜新市', '细河区', '210911'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (882, '辽宁省', '阜新市', '阜新蒙古族自治县', '210921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (883, '辽宁省', '阜新市', '彰武县', '210922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (884, '辽宁省', '辽阳市', '市辖区', '211001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (885, '辽宁省', '辽阳市', '白塔区', '211002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (886, '辽宁省', '辽阳市', '文圣区', '211003'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (887, '辽宁省', '辽阳市', '宏伟区', '211004'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (888, '辽宁省', '辽阳市', '弓长岭区', '211005'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (889, '辽宁省', '辽阳市', '太子河区', '211011'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (890, '辽宁省', '辽阳市', '辽阳县', '211021'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (891, '辽宁省', '辽阳市', '灯塔县', '211022'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (892, '辽宁省', '辽阳市', '灯塔市', '211081'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (893, '辽宁省', '盘锦市', '市辖区', '211101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (894, '辽宁省', '盘锦市', '双台子区', '211102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (895, '辽宁省', '盘锦市', '兴隆台区', '211103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (896, '辽宁省', '盘锦市', '郊区', '211111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (897, '辽宁省', '盘锦市', '大洼县', '211121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (898, '辽宁省', '盘锦市', '盘山县', '211122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (899, '辽宁省', '铁岭市', '市辖区', '211201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (900, '辽宁省', '铁岭市', '银州区', '211202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (901, '辽宁省', '铁岭市', '铁法区', '211203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (902, '辽宁省', '铁岭市', '清河区', '211204'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (903, '辽宁省', '铁岭市', '铁岭县', '211221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (904, '辽宁省', '铁岭市', '开原县', '211222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (905, '辽宁省', '铁岭市', '西丰县', '211223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (906, '辽宁省', '铁岭市', '昌图县', '211224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (907, '辽宁省', '铁岭市', '康平县', '211225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (908, '辽宁省', '铁岭市', '法库县', '211226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (909, '辽宁省', '铁岭市', '调兵山市', '211281'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (910, '辽宁省', '铁岭市', '开原市', '211282'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (911, '辽宁省', '朝阳市', '市辖区', '211301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (912, '辽宁省', '朝阳市', '双塔区', '211302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (913, '辽宁省', '朝阳市', '龙城区', '211303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (914, '辽宁省', '朝阳市', '朝阳县', '211321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (915, '辽宁省', '朝阳市', '建平县', '211322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (916, '辽宁省', '朝阳市', '凌源县', '211323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (917, '辽宁省', '朝阳市', '喀喇沁左翼蒙古族自治县', '211324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (918, '辽宁省', '朝阳市', '建昌县', '211325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (919, '辽宁省', '朝阳市', '北票县', '211326'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (920, '辽宁省', '朝阳市', '北票市', '211381'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (921, '辽宁省', '朝阳市', '凌源市', '211382'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (922, '辽宁省', '葫芦岛市', '市辖区', '211401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (923, '辽宁省', '葫芦岛市', '连山区', '211402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (924, '辽宁省', '葫芦岛市', '龙港区', '211403'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (925, '辽宁省', '葫芦岛市', '南票区', '211404'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (926, '辽宁省', '葫芦岛市', '绥中县', '211421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (927, '辽宁省', '葫芦岛市', '建昌县', '211422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (928, '辽宁省', '葫芦岛市', '兴城市', '211481'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (929, '辽宁省', '铁岭市', '铁岭市', '212101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (930, '辽宁省', '铁岭市', '铁法市', '212102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (931, '辽宁省', '铁岭市', '铁岭县', '212121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (932, '辽宁省', '铁岭市', '开原县', '212122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (933, '辽宁省', '铁岭市', '西丰县', '212123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (934, '辽宁省', '铁岭市', '昌图县', '212124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (935, '辽宁省', '铁岭市', '康平县', '212125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (936, '辽宁省', '铁岭市', '法库县', '212126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (937, '辽宁省', '朝阳市', '建昌县', '212225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (938, '辽宁省', '朝阳市', '北票县', '212226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (939, '辽宁省', NULL, '瓦房店市', '219001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (940, '辽宁省', NULL, '海城市', '219002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (941, '辽宁省', NULL, '锦西市', '219003'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (942, '辽宁省', NULL, '兴城市', '219004'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (943, '辽宁省', NULL, '铁法市', '219005'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (944, '辽宁省', NULL, '北票市', '219006'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (945, '辽宁省', NULL, '开原市', '219007'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (946, '吉林省', '长春市', '市辖区', '220101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (947, '吉林省', '长春市', '南关区', '220102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (948, '吉林省', '长春市', '宽城区', '220103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (949, '吉林省', '长春市', '朝阳区', '220104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (950, '吉林省', '长春市', '二道区', '220105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (951, '吉林省', '长春市', '绿园区', '220106'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (952, '吉林省', '长春市', '郊区', '220111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (953, '吉林省', '长春市', '双阳区', '220112'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (954, '吉林省', '长春市', '市区', '220120'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (955, '吉林省', '长春市', '榆树县', '220121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (956, '吉林省', '长春市', '农安县', '220122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (957, '吉林省', '长春市', '九台县', '220123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (958, '吉林省', '长春市', '德惠县', '220124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (959, '吉林省', '长春市', '双阳县', '220125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (960, '吉林省', '长春市', '九台市', '220181'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (961, '吉林省', '长春市', '榆树市', '220182'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (962, '吉林省', '长春市', '德惠市', '220183'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (963, '吉林省', '吉林市', '市辖区', '220201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (964, '吉林省', '吉林市', '昌邑区', '220202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (965, '吉林省', '吉林市', '龙潭区', '220203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (966, '吉林省', '吉林市', '船营区', '220204'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (967, '吉林省', '吉林市', '丰满区', '220211'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (968, '吉林省', '吉林市', '市区', '220220'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (969, '吉林省', '吉林市', '永吉县', '220221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (970, '吉林省', '吉林市', '舒兰县', '220222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (971, '吉林省', '吉林市', '磐石县', '220223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (972, '吉林省', '吉林市', '蛟河县', '220224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (973, '吉林省', '吉林市', '桦甸县', '220225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (974, '吉林省', '吉林市', '蛟河市', '220281'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (975, '吉林省', '吉林市', '桦甸市', '220282'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (976, '吉林省', '吉林市', '舒兰市', '220283'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (977, '吉林省', '吉林市', '磐石市', '220284'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (978, '吉林省', '四平市', '市辖区', '220301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (979, '吉林省', '四平市', '铁西区', '220302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (980, '吉林省', '四平市', '铁东区', '220303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (981, '吉林省', '四平市', '公主岭市', '220319'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (982, '吉林省', '四平市', '怀德县', '220321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (983, '吉林省', '四平市', '梨树县', '220322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (984, '吉林省', '四平市', '伊通满族自治县', '220323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (985, '吉林省', '四平市', '双辽县', '220324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (986, '吉林省', '四平市', '公主岭市', '220381'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (987, '吉林省', '四平市', '双辽市', '220382'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (988, '吉林省', '辽源市', '市辖区', '220401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (989, '吉林省', '辽源市', '龙山区', '220402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (990, '吉林省', '辽源市', '西安区', '220403'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (991, '吉林省', '辽源市', '东丰县', '220421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (992, '吉林省', '辽源市', '东辽县', '220422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (993, '吉林省', '通化市', '市辖区', '220501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (994, '吉林省', '通化市', '东昌区', '220502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (995, '吉林省', '通化市', '二道江区', '220503'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (996, '吉林省', '通化市', '梅河口市', '220519'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (997, '吉林省', '通化市', '通化县', '220521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (998, '吉林省', '通化市', '集安县', '220522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (999, '吉林省', '通化市', '辉南县', '220523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1000, '吉林省', '通化市', '柳河县', '220524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1001, '吉林省', '通化市', '梅河口市', '220581'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1002, '吉林省', '通化市', '集安市', '220582'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1003, '吉林省', '白山市', '市辖区', '220601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1004, '吉林省', '白山市', '八道江区', '220602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1005, '吉林省', '白山市', '三岔子区', '220603'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1006, '吉林省', '白山市', '临江区', '220604'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1007, '吉林省', '白山市', '抚松县', '220621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1008, '吉林省', '白山市', '靖宇县', '220622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1009, '吉林省', '白山市', '长白朝鲜族自治县', '220623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1010, '吉林省', '白山市', '江源县', '220625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1011, '吉林省', '白山市', '临江市', '220681'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1012, '吉林省', '松原市', '市辖区', '220701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1013, '吉林省', '松原市', '宁江区', '220702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1014, '吉林省', '松原市', '前郭尔罗斯蒙古族自治县', '220721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1015, '吉林省', '松原市', '长岭县', '220722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1016, '吉林省', '松原市', '乾安县', '220723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1017, '吉林省', '松原市', '扶余县', '220724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1018, '吉林省', '白城市', '市辖区', '220801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1019, '吉林省', '白城市', '洮北区', '220802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1020, '吉林省', '白城市', '镇赉县', '220821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1021, '吉林省', '白城市', '通榆县', '220822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1022, '吉林省', '白城市', '洮南市', '220881'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1023, '吉林省', '白城市', '大安市', '220882'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1024, '吉林省', '白城地区', '白城市', '222301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1025, '吉林省', '白城地区', '洮南市', '222302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1026, '吉林省', '白城地区', '扶余市', '222303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1027, '吉林省', '白城地区', '大安市', '222304'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1028, '吉林省', '白城地区', '扶余县', '222321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1029, '吉林省', '白城地区', '洮安县', '222322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1030, '吉林省', '白城地区', '长岭县', '222323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1031, '吉林省', '白城地区', '前郭尔罗斯蒙古族自治县', '222324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1032, '吉林省', '白城地区', '大安县', '222325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1033, '吉林省', '白城地区', '镇赉县', '222326'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1034, '吉林省', '白城地区', '通榆县', '222327'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1035, '吉林省', '白城地区', '乾安县', '222328'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1036, '吉林省', '延边朝鲜族自治州', '延吉市', '222401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1037, '吉林省', '延边朝鲜族自治州', '图们市', '222402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1038, '吉林省', '延边朝鲜族自治州', '敦化市', '222403'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1039, '吉林省', '延边朝鲜族自治州', '珲春市', '222404'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1040, '吉林省', '延边朝鲜族自治州', '龙井市', '222405'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1041, '吉林省', '延边朝鲜族自治州', '和龙市', '222406'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1042, '吉林省', '延边朝鲜族自治州', '龙井县', '222421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1043, '吉林省', '延边朝鲜族自治州', '敦化县', '222422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1044, '吉林省', '延边朝鲜族自治州', '和龙县', '222423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1045, '吉林省', '延边朝鲜族自治州', '汪清县', '222424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1046, '吉林省', '延边朝鲜族自治州', '珲春县', '222425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1047, '吉林省', '延边朝鲜族自治州', '安图县', '222426'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1048, '吉林省', NULL, '四平市', '222101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1049, '吉林省', NULL, '辽源市', '222102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1050, '吉林省', NULL, '怀德县', '222121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1051, '吉林省', NULL, '梨树县', '222122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1052, '吉林省', NULL, '伊通满族自治县', '222123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1053, '吉林省', NULL, '东丰县', '222124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1054, '吉林省', NULL, '双辽县', '222125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1055, '吉林省', NULL, '通化市', '222201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1056, '吉林省', NULL, '浑江市', '222202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1057, '吉林省', NULL, '海龙县', '222221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1058, '吉林省', NULL, '通化县', '222222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1059, '吉林省', NULL, '柳河县', '222223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1060, '吉林省', NULL, '辉南县', '222224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1061, '吉林省', NULL, '集安县', '222225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1062, '吉林省', NULL, '抚松县', '222226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1063, '吉林省', NULL, '靖宇县', '222227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1064, '吉林省', NULL, '长白朝鲜族自治县', '222228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1065, '吉林省', NULL, '公主岭市', '229001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1066, '吉林省', NULL, '梅河口市', '229002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1067, '吉林省', NULL, '集安市', '229003'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1068, '吉林省', NULL, '桦甸市', '229004'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1069, '吉林省', NULL, '九台市', '229005'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1070, '黑龙江省', '哈尔滨市', '市辖区', '230101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1071, '黑龙江省', '哈尔滨市', '道里区', '230102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1072, '黑龙江省', '哈尔滨市', '南岗区', '230103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1073, '黑龙江省', '哈尔滨市', '道外区', '230104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1074, '黑龙江省', '哈尔滨市', '太平区', '230105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1075, '黑龙江省', '哈尔滨市', '香坊区', '230106'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1076, '黑龙江省', '哈尔滨市', '动力区', '230107'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1077, '黑龙江省', '哈尔滨市', '平房区', '230108'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1078, '黑龙江省', '哈尔滨市', '松北区', '230109'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1079, '黑龙江省', '哈尔滨市', '香坊区', '230110'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1080, '黑龙江省', '哈尔滨市', '呼兰区', '230111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1081, '黑龙江省', '哈尔滨市', '阿城区', '230112'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1082, '黑龙江省', '哈尔滨市', '阿城市', '230119'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1083, '黑龙江省', '哈尔滨市', '呼兰县', '230121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1084, '黑龙江省', '哈尔滨市', '阿城县', '230122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1085, '黑龙江省', '哈尔滨市', '依兰县', '230123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1086, '黑龙江省', '哈尔滨市', '方正县', '230124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1087, '黑龙江省', '哈尔滨市', '宾县', '230125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1088, '黑龙江省', '哈尔滨市', '巴彦县', '230126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1089, '黑龙江省', '哈尔滨市', '木兰县', '230127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1090, '黑龙江省', '哈尔滨市', '通河县', '230128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1091, '黑龙江省', '哈尔滨市', '延寿县', '230129'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1092, '黑龙江省', '哈尔滨市', '阿城市', '230181'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1093, '黑龙江省', '哈尔滨市', '双城市', '230182'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1094, '黑龙江省', '哈尔滨市', '尚志市', '230183'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1095, '黑龙江省', '哈尔滨市', '五常市', '230184'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1096, '黑龙江省', '齐齐哈尔市', '市辖区', '230201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1097, '黑龙江省', '齐齐哈尔市', '龙沙区', '230202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1098, '黑龙江省', '齐齐哈尔市', '建华区', '230203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1099, '黑龙江省', '齐齐哈尔市', '铁锋区', '230204'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1100, '黑龙江省', '齐齐哈尔市', '昂昂溪区', '230205'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1101, '黑龙江省', '齐齐哈尔市', '富拉尔基区', '230206'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1102, '黑龙江省', '齐齐哈尔市', '碾子山区', '230207'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1103, '黑龙江省', '齐齐哈尔市', '梅里斯达斡尔族区', '230208'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1104, '黑龙江省', '齐齐哈尔市', '龙江县', '230221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1105, '黑龙江省', '齐齐哈尔市', '讷河县', '230222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1106, '黑龙江省', '齐齐哈尔市', '依安县', '230223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1107, '黑龙江省', '齐齐哈尔市', '泰来县', '230224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1108, '黑龙江省', '齐齐哈尔市', '甘南县', '230225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1109, '黑龙江省', '齐齐哈尔市', '杜尔伯特蒙古族自治县', '230226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1110, '黑龙江省', '齐齐哈尔市', '富裕县', '230227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1111, '黑龙江省', '齐齐哈尔市', '林甸县', '230228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1112, '黑龙江省', '齐齐哈尔市', '克山县', '230229'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1113, '黑龙江省', '齐齐哈尔市', '克东县', '230230'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1114, '黑龙江省', '齐齐哈尔市', '拜泉县', '230231'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1115, '黑龙江省', '齐齐哈尔市', '讷河市', '230281'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1116, '黑龙江省', '鸡西市', '市辖区', '230301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1117, '黑龙江省', '鸡西市', '鸡冠区', '230302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1118, '黑龙江省', '鸡西市', '恒山区', '230303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1119, '黑龙江省', '鸡西市', '滴道区', '230304'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1120, '黑龙江省', '鸡西市', '梨树区', '230305'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1121, '黑龙江省', '鸡西市', '城子河区', '230306'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1122, '黑龙江省', '鸡西市', '麻山区', '230307'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1123, '黑龙江省', '鸡西市', '鸡东县', '230321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1124, '黑龙江省', '鸡西市', '虎林市', '230381'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1125, '黑龙江省', '鸡西市', '密山市', '230382'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1126, '黑龙江省', '鹤岗市', '市辖区', '230401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1127, '黑龙江省', '鹤岗市', '向阳区', '230402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1128, '黑龙江省', '鹤岗市', '工农区', '230403'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1129, '黑龙江省', '鹤岗市', '南山区', '230404'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1334, '上海市', NULL, '南汇县', '310225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1130, '黑龙江省', '鹤岗市', '兴安区', '230405'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1131, '黑龙江省', '鹤岗市', '东山区', '230406'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1132, '黑龙江省', '鹤岗市', '兴山区', '230407'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1133, '黑龙江省', '鹤岗市', '萝北县', '230421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1134, '黑龙江省', '鹤岗市', '绥滨县', '230422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1135, '黑龙江省', '双鸭山市', '市辖区', '230501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1136, '黑龙江省', '双鸭山市', '尖山区', '230502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1137, '黑龙江省', '双鸭山市', '岭东区', '230503'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1138, '黑龙江省', '双鸭山市', '岭西区', '230504'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1139, '黑龙江省', '双鸭山市', '四方台区', '230505'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1140, '黑龙江省', '双鸭山市', '宝山区', '230506'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1141, '黑龙江省', '双鸭山市', '集贤县', '230521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1142, '黑龙江省', '双鸭山市', '友谊县', '230522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1143, '黑龙江省', '双鸭山市', '宝清县', '230523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1144, '黑龙江省', '双鸭山市', '饶河县', '230524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1145, '黑龙江省', '大庆市', '市辖区', '230601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1146, '黑龙江省', '大庆市', '萨尔图区', '230602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1147, '黑龙江省', '大庆市', '龙凤区', '230603'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1148, '黑龙江省', '大庆市', '让胡路区', '230604'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1149, '黑龙江省', '大庆市', '红岗区', '230605'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1150, '黑龙江省', '大庆市', '大同区', '230606'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1151, '黑龙江省', '大庆市', '肇州县', '230621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1152, '黑龙江省', '大庆市', '肇源县', '230622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1153, '黑龙江省', '大庆市', '林甸县', '230623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1154, '黑龙江省', '大庆市', '杜尔伯特蒙古族自治县', '230624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1155, '黑龙江省', '伊春市', '市辖区', '230701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1156, '黑龙江省', '伊春市', '伊春区', '230702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1157, '黑龙江省', '伊春市', '南岔区', '230703'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1158, '黑龙江省', '伊春市', '友好区', '230704'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1159, '黑龙江省', '伊春市', '西林区', '230705'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1160, '黑龙江省', '伊春市', '翠峦区', '230706'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1161, '黑龙江省', '伊春市', '新青区', '230707'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1162, '黑龙江省', '伊春市', '美溪区', '230708'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1163, '黑龙江省', '伊春市', '金山屯区', '230709'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1164, '黑龙江省', '伊春市', '五营区', '230710'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1165, '黑龙江省', '伊春市', '乌马河区', '230711'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1166, '黑龙江省', '伊春市', '汤旺河区', '230712'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1167, '黑龙江省', '伊春市', '带岭区', '230713'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1168, '黑龙江省', '伊春市', '乌伊岭区', '230714'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1169, '黑龙江省', '伊春市', '红星区', '230715'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1170, '黑龙江省', '伊春市', '上甘岭区', '230716'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1171, '黑龙江省', '伊春市', '铁力县', '230721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1172, '黑龙江省', '伊春市', '嘉荫县', '230722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1173, '黑龙江省', '伊春市', '铁力市', '230781'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1174, '黑龙江省', '佳木斯市', '市辖区', '230801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1175, '黑龙江省', '佳木斯市', '永红区', '230802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1176, '黑龙江省', '佳木斯市', '向阳区', '230803'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1177, '黑龙江省', '佳木斯市', '前进区', '230804'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1178, '黑龙江省', '佳木斯市', '东风区', '230805'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1179, '黑龙江省', '佳木斯市', '郊区', '230811'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1180, '黑龙江省', '佳木斯市', '富锦县', '230821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1181, '黑龙江省', '佳木斯市', '桦南县', '230822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1182, '黑龙江省', '佳木斯市', '依兰县', '230823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1183, '黑龙江省', '佳木斯市', '集贤县', '230825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1184, '黑龙江省', '佳木斯市', '桦川县', '230826'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1185, '黑龙江省', '佳木斯市', '宝清县', '230827'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1186, '黑龙江省', '佳木斯市', '汤原县', '230828'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1187, '黑龙江省', '佳木斯市', '绥滨县', '230829'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1188, '黑龙江省', '佳木斯市', '萝北县', '230830'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1189, '黑龙江省', '佳木斯市', '同江县', '230831'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1190, '黑龙江省', '佳木斯市', '饶河县', '230832'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1191, '黑龙江省', '佳木斯市', '抚远县', '230833'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1192, '黑龙江省', '佳木斯市', '友谊县', '230834'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1193, '黑龙江省', '佳木斯市', '同江市', '230881'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1194, '黑龙江省', '佳木斯市', '富锦市', '230882'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1195, '黑龙江省', '七台河市', '市辖区', '230901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1196, '黑龙江省', '七台河市', '新兴区', '230902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1197, '黑龙江省', '七台河市', '桃山区', '230903'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1198, '黑龙江省', '七台河市', '茄子河区', '230904'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1199, '黑龙江省', '七台河市', '勃利县', '230921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1200, '黑龙江省', '牡丹江市', '市辖区', '231001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1201, '黑龙江省', '牡丹江市', '东安区', '231002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1202, '黑龙江省', '牡丹江市', '阳明区', '231003'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1203, '黑龙江省', '牡丹江市', '爱民区', '231004'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1204, '黑龙江省', '牡丹江市', '西安区', '231005'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1205, '黑龙江省', '牡丹江市', '郊区', '231011'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1206, '黑龙江省', '牡丹江市', '绥芬河市', '231020'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1207, '黑龙江省', '牡丹江市', '宁安县', '231021'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1208, '黑龙江省', '牡丹江市', '海林县', '231022'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1209, '黑龙江省', '牡丹江市', '穆棱县', '231023'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1210, '黑龙江省', '牡丹江市', '东宁县', '231024'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1211, '黑龙江省', '牡丹江市', '林口县', '231025'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1212, '黑龙江省', '牡丹江市', '密山县', '231026'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1213, '黑龙江省', '牡丹江市', '虎林县', '231027'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1214, '黑龙江省', '牡丹江市', '绥芬河市', '231081'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1215, '黑龙江省', '牡丹江市', '密山市', '231082'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1216, '黑龙江省', '牡丹江市', '海林市', '231083'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1217, '黑龙江省', '牡丹江市', '宁安市', '231084'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1218, '黑龙江省', '牡丹江市', '穆棱市', '231085'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1219, '黑龙江省', '黑河市', '市辖区', '231101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1220, '黑龙江省', '黑河市', '爱辉区', '231102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1221, '黑龙江省', '黑河市', '嫩江县', '231121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1222, '黑龙江省', '黑河市', '逊克县', '231123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1223, '黑龙江省', '黑河市', '孙吴县', '231124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1224, '黑龙江省', '黑河市', '北安市', '231181'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1225, '黑龙江省', '黑河市', '五大连池市', '231182'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1226, '黑龙江省', '绥化市', '市辖区', '231201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1227, '黑龙江省', '绥化市', '北林区', '231202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1228, '黑龙江省', '绥化市', '望奎县', '231221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1229, '黑龙江省', '绥化市', '兰西县', '231222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1230, '黑龙江省', '绥化市', '青冈县', '231223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1231, '黑龙江省', '绥化市', '庆安县', '231224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1232, '黑龙江省', '绥化市', '明水县', '231225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1233, '黑龙江省', '绥化市', '绥棱县', '231226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1234, '黑龙江省', '绥化市', '安达市', '231281'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1235, '黑龙江省', '绥化市', '肇东市', '231282'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1236, '黑龙江省', '绥化市', '海伦市', '231283'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1237, '黑龙江省', '松花江地区', '双城市', '232101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1238, '黑龙江省', '松花江地区', '尚志市', '232102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1239, '黑龙江省', '松花江地区', '五常市', '232103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1240, '黑龙江省', '松花江地区', '阿城市', '232121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1241, '黑龙江省', '松花江地区', '宾县', '232122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1242, '黑龙江省', '松花江地区', '呼兰县', '232123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1243, '黑龙江省', '松花江地区', '双城市', '232124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1244, '黑龙江省', '松花江地区', '五常市', '232125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1245, '黑龙江省', '松花江地区', '巴彦县', '232126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1246, '黑龙江省', '松花江地区', '木兰县', '232127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1247, '黑龙江省', '松花江地区', '通河县', '232128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1248, '黑龙江省', '松花江地区', '尚志市', '232129'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1249, '黑龙江省', '松花江地区', '方正县', '232130'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1250, '黑龙江省', '松花江地区', '延寿县', '232131'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1251, '黑龙江省', '绥化地区', '绥化市', '232301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1252, '黑龙江省', '绥化地区', '安达市', '232302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1253, '黑龙江省', '绥化地区', '肇东市', '232303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1254, '黑龙江省', '绥化地区', '海伦市', '232304'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1255, '黑龙江省', '绥化地区', '海伦县', '232321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1256, '黑龙江省', '绥化地区', '肇东县', '232322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1257, '黑龙江省', '绥化地区', '绥化县', '232323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1258, '黑龙江省', '绥化地区', '望奎县', '232324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1259, '黑龙江省', '绥化地区', '兰西县', '232325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1260, '黑龙江省', '绥化地区', '青冈县', '232326'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1261, '黑龙江省', '绥化地区', '安达县', '232327'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1262, '黑龙江省', '绥化地区', '肇源县', '232328'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1263, '黑龙江省', '绥化地区', '肇州县', '232329'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1264, '黑龙江省', '绥化地区', '庆安县', '232330'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1265, '黑龙江省', '绥化地区', '明水县', '232331'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1266, '黑龙江省', '绥化地区', '绥棱县', '232332'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1267, '黑龙江省', '佳木斯地区', '佳木斯市', '232401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1268, '黑龙江省', '佳木斯地区', '富锦县', '232421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1269, '黑龙江省', '佳木斯地区', '桦南县', '232422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1270, '黑龙江省', '佳木斯地区', '依兰县', '232423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1271, '黑龙江省', '佳木斯地区', '勃利县', '232424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1272, '黑龙江省', '佳木斯地区', '集贤县', '232425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1273, '黑龙江省', '佳木斯地区', '桦川县', '232426'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1274, '黑龙江省', '佳木斯地区', '宝清县', '232427'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1275, '黑龙江省', '佳木斯地区', '汤原县', '232428'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1276, '黑龙江省', '佳木斯地区', '绥滨县', '232429'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1277, '黑龙江省', '佳木斯地区', '萝北县', '232430'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1278, '黑龙江省', '佳木斯地区', '同江县', '232431'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1279, '黑龙江省', '佳木斯地区', '饶河县', '232432'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1280, '黑龙江省', '佳木斯地区', '抚远县', '232433'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1281, '黑龙江省', '牡丹江地区', '牡丹江市', '232501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1282, '黑龙江省', '牡丹江地区', '绥芬河市', '232502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1283, '黑龙江省', '牡丹江地区', '宁安县', '232521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1284, '黑龙江省', '牡丹江地区', '海林县', '232522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1285, '黑龙江省', '牡丹江地区', '穆棱县', '232523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1286, '黑龙江省', '牡丹江地区', '东宁县', '232524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1287, '黑龙江省', '牡丹江地区', '林口县', '232525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1288, '黑龙江省', '牡丹江地区', '鸡东县', '232526'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1289, '黑龙江省', '牡丹江地区', '密山县', '232527'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1290, '黑龙江省', '牡丹江地区', '虎林县', '232528'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1291, '黑龙江省', '黑河地区', '黑河市', '232601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1292, '黑龙江省', '黑河地区', '北安市', '232602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1293, '黑龙江省', '黑河地区', '五大连池市', '232603'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1294, '黑龙江省', '黑河地区', '北安县', '232621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1295, '黑龙江省', '黑河地区', '嫩江县', '232622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1296, '黑龙江省', '黑河地区', '德都县', '232623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1297, '黑龙江省', '黑河地区', '逊克县', '232625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1298, '黑龙江省', '黑河地区', '孙吴县', '232626'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1299, '黑龙江省', '大兴安岭地区', '加格达奇区', '232701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1300, '黑龙江省', '大兴安岭地区', '呼玛县', '232721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1301, '黑龙江省', '大兴安岭地区', '塔河县', '232722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1302, '黑龙江省', '大兴安岭地区', '漠河县', '232723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1303, '黑龙江省', '大兴安岭地区', '漠河县', '232724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1304, '黑龙江省', NULL, '绥芬河市', '239001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1305, '黑龙江省', NULL, '阿城市', '239002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1306, '黑龙江省', NULL, '同江市', '239003'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1307, '黑龙江省', NULL, '富锦市', '239004'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1308, '黑龙江省', NULL, '铁力市', '239005'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1309, '黑龙江省', NULL, '密山市', '239006'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1310, '上海市', NULL, '黄浦区', '310101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1311, '上海市', NULL, '南市区', '310102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1312, '上海市', NULL, '卢湾区', '310103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1313, '上海市', NULL, '徐汇区', '310104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1314, '上海市', NULL, '长宁区', '310105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1315, '上海市', NULL, '静安区', '310106'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1316, '上海市', NULL, '普陀区', '310107'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1317, '上海市', NULL, '闸北区', '310108'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1318, '上海市', NULL, '虹口区', '310109'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1319, '上海市', NULL, '杨浦区', '310110'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1320, '上海市', NULL, '吴凇区', '310111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1321, '上海市', NULL, '闵行区', '310112'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1322, '上海市', NULL, '宝山区', '310113'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1323, '上海市', NULL, '嘉定区', '310114'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1324, '上海市', NULL, '浦东新区', '310115'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1325, '上海市', NULL, '金山区', '310116'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1326, '上海市', NULL, '松江区', '310117'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1327, '上海市', NULL, '青浦区', '310118'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1328, '上海市', NULL, '南汇区', '310119'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1329, '上海市', NULL, '奉贤区', '310120'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1330, '上海市', NULL, '上海县', '310221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1331, '上海市', NULL, '嘉定县', '310222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1335, '上海市', NULL, '奉贤县', '310226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1336, '上海市', NULL, '松江县', '310227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1337, '上海市', NULL, '金山县', '310228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1338, '上海市', NULL, '青浦县', '310229'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1339, '上海市', NULL, '崇明县', '310230'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1340, '江苏省', '南京市', '市辖区', '320101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1341, '江苏省', '南京市', '玄武区', '320102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1342, '江苏省', '南京市', '白下区', '320103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1343, '江苏省', '南京市', '秦淮区', '320104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1344, '江苏省', '南京市', '建邺区', '320105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1345, '江苏省', '南京市', '鼓楼区', '320106'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1346, '江苏省', '南京市', '下关区', '320107'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1347, '江苏省', '南京市', '浦口区', '320111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1348, '江苏省', '南京市', '大厂区', '320112'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1349, '江苏省', '南京市', '栖霞区', '320113'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1350, '江苏省', '南京市', '雨花台区', '320114'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1351, '江苏省', '南京市', '江宁区', '320115'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1352, '江苏省', '南京市', '六合区', '320116'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1353, '江苏省', '南京市', '市区', '320120'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1354, '江苏省', '南京市', '江宁县', '320121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1355, '江苏省', '南京市', '江浦县', '320122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1356, '江苏省', '南京市', '六合县', '320123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1357, '江苏省', '南京市', '溧水县', '320124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1358, '江苏省', '南京市', '高淳县', '320125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1359, '江苏省', '南京市', '江都县', '320126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1360, '江苏省', '无锡市', '市辖区', '320201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1361, '江苏省', '无锡市', '崇安区', '320202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1362, '江苏省', '无锡市', '南长区', '320203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1363, '江苏省', '无锡市', '北塘区', '320204'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1364, '江苏省', '无锡市', '锡山区', '320205'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1365, '江苏省', '无锡市', '惠山区', '320206'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1366, '江苏省', '无锡市', '郊区', '320211'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1367, '江苏省', '无锡市', '马山区', '320212'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1368, '江苏省', '无锡市', '江阴县', '320219'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1369, '江苏省', '无锡市', '江阴县', '320221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1370, '江苏省', '无锡市', '无锡县', '320222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1371, '江苏省', '无锡市', '宜兴县', '320223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1372, '江苏省', '无锡市', '江阴市', '320281'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1373, '江苏省', '无锡市', '宜兴市', '320282'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1374, '江苏省', '无锡市', '锡山市', '320283'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1375, '江苏省', '徐州市', '市辖区', '320301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1376, '江苏省', '徐州市', '鼓楼区', '320302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1377, '江苏省', '徐州市', '云龙区', '320303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1378, '江苏省', '徐州市', '九里区', '320304'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1379, '江苏省', '徐州市', '贾汪区', '320305'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1380, '江苏省', '徐州市', '泉山区', '320311'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1381, '江苏省', '徐州市', '丰县', '320321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1382, '江苏省', '徐州市', '沛县', '320322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1383, '江苏省', '徐州市', '铜山县', '320323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1384, '江苏省', '徐州市', '睢宁县', '320324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1385, '江苏省', '徐州市', '邳县', '320325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1386, '江苏省', '徐州市', '新沂县', '320326'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1387, '江苏省', '徐州市', '新沂市', '320381'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1388, '江苏省', '徐州市', '邳州市', '320382'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1389, '江苏省', '常州市', '市辖区', '320401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1390, '江苏省', '常州市', '天宁区', '320402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1391, '江苏省', '常州市', '钟楼区', '320404'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1392, '江苏省', '常州市', '戚墅堰区', '320405'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1393, '江苏省', '常州市', '郊区', '320411'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1394, '江苏省', '常州市', '武进区', '320412'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1395, '江苏省', '常州市', '武进市', '320419'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1396, '江苏省', '常州市', '武进县', '320421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1397, '江苏省', '常州市', '金坛县', '320422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1398, '江苏省', '常州市', '溧阳县', '320423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1399, '江苏省', '常州市', '溧阳市', '320481'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1400, '江苏省', '常州市', '金坛市', '320482'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1401, '江苏省', '常州市', '武进市', '320483'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1402, '江苏省', '苏州市', '市辖区', '320501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1403, '江苏省', '苏州市', '沧浪区', '320502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1404, '江苏省', '苏州市', '平江区', '320503'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1405, '江苏省', '苏州市', '金阊区', '320504'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1406, '江苏省', '苏州市', '虎丘区', '320505'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1407, '江苏省', '苏州市', '吴中区', '320506'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1408, '江苏省', '苏州市', '相城区', '320507'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1409, '江苏省', '苏州市', '郊区', '320511'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1410, '江苏省', '苏州市', '常熟市', '320520'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1411, '江苏省', '苏州市', '沙洲县', '320521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1412, '江苏省', '苏州市', '太仓县', '320522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1413, '江苏省', '苏州市', '昆山县', '320523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1414, '江苏省', '苏州市', '吴县', '320524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1415, '江苏省', '苏州市', '吴江县', '320525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1416, '江苏省', '苏州市', '常熟市', '320581'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1417, '江苏省', '苏州市', '张家港市', '320582'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1418, '江苏省', '苏州市', '昆山市', '320583'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1419, '江苏省', '苏州市', '吴江市', '320584'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1420, '江苏省', '苏州市', '太仓市', '320585'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1421, '江苏省', '苏州市', '吴县市', '320586'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1422, '江苏省', '南通市', '市辖区', '320601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1423, '江苏省', '南通市', '崇川区', '320602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1424, '江苏省', '南通市', '港闸区', '320611'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1425, '江苏省', '南通市', '海安县', '320621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1426, '江苏省', '南通市', '如皋县', '320622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1427, '江苏省', '南通市', '如东县', '320623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1428, '江苏省', '南通市', '南通县', '320624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1429, '江苏省', '南通市', '海门县', '320625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1430, '江苏省', '南通市', '启东县', '320626'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1431, '江苏省', '南通市', '启东市', '320681'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1432, '江苏省', '南通市', '如皋市', '320682'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1433, '江苏省', '南通市', '通州市', '320683'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1434, '江苏省', '南通市', '海门市', '320684'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1435, '江苏省', '连云港市', '市辖区', '320701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1436, '江苏省', '连云港市', '连云区', '320703'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1437, '江苏省', '连云港市', '云台区', '320704'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1438, '江苏省', '连云港市', '新浦区', '320705'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1439, '江苏省', '连云港市', '海州区', '320706'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1440, '江苏省', '连云港市', '赣榆县', '320721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1441, '江苏省', '连云港市', '东海县', '320722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1442, '江苏省', '连云港市', '灌云县', '320723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1443, '江苏省', '连云港市', '灌南县', '320724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1444, '江苏省', '淮安市', '市辖区', '320801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1445, '江苏省', '淮安市', '清河区', '320802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1446, '江苏省', '淮安市', '楚州区', '320803'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1447, '江苏省', '淮安市', '淮阴区', '320804'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1448, '江苏省', '淮安市', '清浦区', '320811'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1449, '江苏省', '淮安市', '宿迁市', '320819'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1450, '江苏省', '淮安市', '淮阴县', '320821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1451, '江苏省', '淮安市', '灌南县', '320822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1452, '江苏省', '淮安市', '沭阳县', '320823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1453, '江苏省', '淮安市', '宿迁县', '320824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1454, '江苏省', '淮安市', '泗阳县', '320825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1455, '江苏省', '淮安市', '涟水县', '320826'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1456, '江苏省', '淮安市', '泗洪县', '320827'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1457, '江苏省', '淮安市', '淮安县', '320828'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1458, '江苏省', '淮安市', '洪泽县', '320829'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1459, '江苏省', '淮安市', '盱眙县', '320830'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1460, '江苏省', '淮安市', '金湖县', '320831'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1461, '江苏省', '淮安市', '宿迁市', '320881'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1462, '江苏省', '淮安市', '淮安市', '320882'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1463, '江苏省', '盐城市', '市辖区', '320901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1464, '江苏省', '盐城市', '城区', '320902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1465, '江苏省', '盐城市', '盐都区', '320903'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1466, '江苏省', '盐城市', '郊区', '320911'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1467, '江苏省', '盐城市', '东台市', '320919'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1468, '江苏省', '盐城市', '响水县', '320921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1469, '江苏省', '盐城市', '滨海县', '320922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1470, '江苏省', '盐城市', '阜宁县', '320923'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1471, '江苏省', '盐城市', '射阳县', '320924'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1472, '江苏省', '盐城市', '建湖县', '320925'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1473, '江苏省', '盐城市', '大丰县', '320926'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1474, '江苏省', '盐城市', '东台县', '320927'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1475, '江苏省', '盐城市', '盐都县', '320928'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1476, '江苏省', '盐城市', '东台市', '320981'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1477, '江苏省', '盐城市', '大丰市', '320982'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1478, '江苏省', '扬州市', '市辖区', '321001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1479, '江苏省', '扬州市', '广陵区', '321002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1480, '江苏省', '扬州市', '邗江区', '321003'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1481, '江苏省', '扬州市', '郊区', '321011'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1482, '江苏省', '扬州市', '仪征市', '321019'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1483, '江苏省', '扬州市', '泰州市', '321020'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1484, '江苏省', '扬州市', '兴化县', '321021'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1485, '江苏省', '扬州市', '高邮县', '321022'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1486, '江苏省', '扬州市', '宝应县', '321023'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1487, '江苏省', '扬州市', '靖江县', '321024'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1488, '江苏省', '扬州市', '泰兴县', '321025'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1489, '江苏省', '扬州市', '江都县', '321026'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1490, '江苏省', '扬州市', '邗江县', '321027'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1491, '江苏省', '扬州市', '泰县', '321028'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1492, '江苏省', '扬州市', '仪征县', '321029'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1493, '江苏省', '扬州市', '仪征市', '321081'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1494, '江苏省', '扬州市', '泰州市', '321082'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1495, '江苏省', '扬州市', '兴化市', '321083'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1496, '江苏省', '扬州市', '高邮市', '321084'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1497, '江苏省', '扬州市', '泰兴市', '321085'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1498, '江苏省', '扬州市', '靖江市', '321086'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1499, '江苏省', '扬州市', '江都市', '321087'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1500, '江苏省', '扬州市', '江都市', '321088'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1501, '江苏省', '镇江市', '市辖区', '321101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1502, '江苏省', '镇江市', '京口区', '321102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1503, '江苏省', '镇江市', '润州区', '321111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1504, '江苏省', '镇江市', '丹徒区', '321112'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1505, '江苏省', '镇江市', '丹阳市', '321119'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1506, '江苏省', '镇江市', '丹徒县', '321121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1507, '江苏省', '镇江市', '丹阳县', '321122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1508, '江苏省', '镇江市', '句容县', '321123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1509, '江苏省', '镇江市', '扬中县', '321124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1510, '江苏省', '镇江市', '丹阳市', '321181'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1511, '江苏省', '镇江市', '扬中市', '321182'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1512, '江苏省', '镇江市', '句容市', '321183'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1513, '江苏省', '泰州市', '市辖区', '321201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1514, '江苏省', '泰州市', '海陵区', '321202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1515, '江苏省', '泰州市', '高港区', '321203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1516, '江苏省', '泰州市', '兴化市', '321281'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1517, '江苏省', '泰州市', '靖江市', '321282'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1518, '江苏省', '泰州市', '泰兴市', '321283'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1519, '江苏省', '泰州市', '姜堰市', '321284'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1520, '江苏省', '宿迁市', '市辖区', '321301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1521, '江苏省', '宿迁市', '宿城区', '321302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1522, '江苏省', '宿迁市', '宿豫区', '321311'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1523, '江苏省', '宿迁市', '宿豫县', '321321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1524, '江苏省', '宿迁市', '沭阳县', '321322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1525, '江苏省', '宿迁市', '泗阳县', '321323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1526, '江苏省', '宿迁市', '泗洪县', '321324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1527, '浙江省', '杭州市', '市辖区', '330101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1528, '浙江省', '杭州市', '上城区', '330102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1529, '浙江省', '杭州市', '下城区', '330103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1530, '浙江省', '杭州市', '江干区', '330104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1531, '浙江省', '杭州市', '拱墅区', '330105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1532, '浙江省', '杭州市', '西湖区', '330106'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1533, '浙江省', '杭州市', '滨江区', '330107'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1534, '浙江省', '杭州市', '滨江区', '330108'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1535, '浙江省', '杭州市', '萧山区', '330109'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1536, '浙江省', '杭州市', '余杭区', '330110'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1537, '浙江省', '杭州市', '市区', '330120'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1538, '浙江省', '杭州市', '萧山县', '330121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1539, '浙江省', '杭州市', '桐庐县', '330122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1540, '浙江省', '杭州市', '富阳县', '330123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1541, '浙江省', '杭州市', '临安县', '330124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1542, '浙江省', '杭州市', '余杭县', '330125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1543, '浙江省', '杭州市', '建德县', '330126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1544, '浙江省', '杭州市', '淳安县', '330127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1545, '浙江省', '杭州市', '萧山市', '330181'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1546, '浙江省', '杭州市', '建德市', '330182'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1547, '浙江省', '杭州市', '富阳市', '330183'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1548, '浙江省', '杭州市', '余杭市', '330184'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1549, '浙江省', '杭州市', '临安市', '330185'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1550, '浙江省', '台州市', '椒江区', '331002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1551, '浙江省', '台州市', '黄岩区', '331003'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1552, '浙江省', '台州市', '路桥区', '331004'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1553, '浙江省', '台州市', '玉环县', '331021'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1554, '浙江省', '台州市', '三门县', '331022'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1555, '浙江省', '台州市', '天台县', '331023'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1556, '浙江省', '台州市', '仙居县', '331024'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1557, '浙江省', '台州市', '温岭市', '331081'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1558, '浙江省', '台州市', '临海市', '331082'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1559, '浙江省', '台州市', '市辖区', '331001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1560, '浙江省', '丽水市', '市辖区', '331101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1561, '浙江省', '丽水市', '莲都区', '331102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1562, '浙江省', '丽水市', '青田县', '331121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1563, '浙江省', '丽水市', '缙云县', '331122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1564, '浙江省', '丽水市', '遂昌县', '331123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1565, '浙江省', '丽水市', '松阳县', '331124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1566, '浙江省', '丽水市', '云和县', '331125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1567, '浙江省', '丽水市', '庆元县', '331126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1568, '浙江省', '丽水市', '景宁畲族自治县', '331127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1569, '浙江省', '丽水市', '龙泉市', '331181'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1570, '浙江省', '丽水地区', '丽水市', '332501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1571, '浙江省', '丽水地区', '龙泉市', '332502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1572, '浙江省', '丽水地区', '丽水县', '332521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1573, '浙江省', '丽水地区', '青田县', '332522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1574, '浙江省', '丽水地区', '云和县', '332523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1575, '浙江省', '丽水地区', '龙泉县', '332524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1576, '浙江省', '丽水地区', '庆元县', '332525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1577, '浙江省', '丽水地区', '缙云县', '332526'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1578, '浙江省', '丽水地区', '遂昌县', '332527'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1579, '浙江省', '丽水地区', '松阳县', '332528'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1580, '浙江省', '丽水地区', '景宁畲族自治县', '332529'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1581, '浙江省', '台州地区', '椒江市', '332601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1582, '浙江省', '台州地区', '临海市', '332602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1583, '浙江省', '台州地区', '黄岩市', '332603'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1584, '浙江省', '台州地区', '临海县', '332621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1585, '浙江省', '台州地区', '黄岩县', '332622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1586, '浙江省', '台州地区', '温岭县', '332623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1587, '浙江省', '台州地区', '仙居县', '332624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1588, '浙江省', '台州地区', '天台县', '332625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1589, '浙江省', '台州地区', '三门县', '332626'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1590, '浙江省', '台州地区', '玉环县', '332627'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1591, '浙江省', '舟山地区', '定海县', '332721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1592, '浙江省', '舟山地区', '普陀县', '332722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1593, '浙江省', '舟山地区', '岱山县', '332723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1594, '浙江省', '舟山地区', '嵊泗县', '332724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1595, '浙江省', '宁波市', '市辖区', '330201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1596, '浙江省', '宁波市', '镇明区', '330202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1597, '浙江省', '宁波市', '海曙区', '330203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1598, '浙江省', '宁波市', '江东区', '330204'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1599, '浙江省', '宁波市', '江北区', '330205'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1600, '浙江省', '宁波市', '北仑区', '330206'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1601, '浙江省', '宁波市', '鄞州区', '330207'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1602, '浙江省', '宁波市', '镇海区', '330211'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1603, '浙江省', '宁波市', '鄞州区', '330212'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1604, '浙江省', '宁波市', '余姚市', '330219'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1605, '浙江省', '宁波市', '镇海县', '330221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1606, '浙江省', '宁波市', '慈溪县', '330222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1607, '浙江省', '宁波市', '余姚县', '330223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1608, '浙江省', '宁波市', '奉化县', '330224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1609, '浙江省', '宁波市', '象山县', '330225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1610, '浙江省', '宁波市', '宁海县', '330226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1611, '浙江省', '宁波市', '鄞县', '330227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1612, '浙江省', '宁波市', '余姚市', '330281'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1613, '浙江省', '宁波市', '慈溪市', '330282'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1614, '浙江省', '宁波市', '奉化市', '330283'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1615, '浙江省', '温州市', '市辖区', '330301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1616, '浙江省', '温州市', '鹿城区', '330302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1617, '浙江省', '温州市', '龙湾区', '330303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1618, '浙江省', '温州市', '瓯海区', '330304'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1619, '浙江省', '温州市', '瓯海县', '330321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1620, '浙江省', '温州市', '洞头县', '330322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1621, '浙江省', '温州市', '乐清县', '330323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1622, '浙江省', '温州市', '永嘉县', '330324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1623, '浙江省', '温州市', '瑞安县', '330325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1624, '浙江省', '温州市', '平阳县', '330326'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1625, '浙江省', '温州市', '苍南县', '330327'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1626, '浙江省', '温州市', '文成县', '330328'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1627, '浙江省', '温州市', '泰顺县', '330329'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1628, '浙江省', '温州市', '瑞安市', '330381'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1629, '浙江省', '温州市', '乐清市', '330382'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1630, '浙江省', '嘉兴市', '市辖区', '330401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1631, '浙江省', '嘉兴市', '秀城区', '330402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1632, '浙江省', '嘉兴市', '郊区', '330411'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1633, '浙江省', '嘉兴市', '海宁市', '330419'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1634, '浙江省', '嘉兴市', '嘉善县', '330421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1635, '浙江省', '嘉兴市', '平湖县', '330422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1636, '浙江省', '嘉兴市', '海宁县', '330423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1637, '浙江省', '嘉兴市', '海盐县', '330424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1638, '浙江省', '嘉兴市', '桐乡县', '330425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1639, '浙江省', '嘉兴市', '海宁市', '330481'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1640, '浙江省', '嘉兴市', '平湖市', '330482'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1641, '浙江省', '嘉兴市', '桐乡市', '330483'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1642, '浙江省', '湖州市', '市辖区', '330501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1643, '浙江省', '湖州市', '吴兴区', '330502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1644, '浙江省', '湖州市', '南浔区', '330503'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1645, '浙江省', '湖州市', '郊区', '330511'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1646, '浙江省', '湖州市', '德清县', '330521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1647, '浙江省', '湖州市', '长兴县', '330522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1648, '浙江省', '湖州市', '安吉县', '330523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1649, '浙江省', '绍兴市', '市辖区', '330601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1650, '浙江省', '绍兴市', '越城区', '330602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1651, '浙江省', '绍兴市', '绍兴县', '330621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1652, '浙江省', '绍兴市', '上虞县', '330622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1653, '浙江省', '绍兴市', '嵊县', '330623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1654, '浙江省', '绍兴市', '新昌县', '330624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1655, '浙江省', '绍兴市', '诸暨县', '330625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1656, '浙江省', '绍兴市', '诸暨市', '330681'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1657, '浙江省', '绍兴市', '上虞市', '330682'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1658, '浙江省', '绍兴市', '嵊州市', '330683'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1659, '浙江省', '金华市', '市辖区', '330701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1660, '浙江省', '金华市', '婺城区', '330702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1661, '浙江省', '金华市', '金东区', '330703'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1662, '浙江省', '金华市', '兰溪市', '330719'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1663, '浙江省', '金华市', '金华县', '330721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1664, '浙江省', '金华市', '永康县', '330722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1665, '浙江省', '金华市', '武义县', '330723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1666, '浙江省', '金华市', '东阳县', '330724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1667, '浙江省', '金华市', '义乌县', '330725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1668, '浙江省', '金华市', '浦江县', '330726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1669, '浙江省', '金华市', '磐安县', '330727'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1670, '浙江省', '金华市', '兰溪市', '330781'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1671, '浙江省', '金华市', '义乌市', '330782'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1672, '浙江省', '金华市', '东阳市', '330783'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1673, '浙江省', '金华市', '永康市', '330784'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1674, '浙江省', '衢州市', '市辖区', '330801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1675, '浙江省', '衢州市', '柯城区', '330802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1676, '浙江省', '衢州市', '衢江区', '330803'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1677, '浙江省', '衢州市', '衢县', '330821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1678, '浙江省', '衢州市', '常山县', '330822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1679, '浙江省', '衢州市', '江山县', '330823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1680, '浙江省', '衢州市', '开化县', '330824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1681, '浙江省', '衢州市', '龙游县', '330825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1682, '浙江省', '衢州市', '江山市', '330881'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1683, '浙江省', '舟山市', '市辖区', '330901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1684, '浙江省', '舟山市', '定海区', '330902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1685, '浙江省', '舟山市', '普陀区', '330903'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1686, '浙江省', '舟山市', '岱山县', '330921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1687, '浙江省', '舟山市', '嵊泗县', '330922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1688, '浙江省', NULL, '余姚市', '339001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1689, '浙江省', NULL, '海宁市', '339002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1690, '浙江省', NULL, '兰溪市', '339003'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1691, '浙江省', NULL, '瑞安市', '339004'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1692, '浙江省', NULL, '萧山市', '339005'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1693, '浙江省', NULL, '江山市', '339006'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1694, '浙江省', NULL, '义乌市', '339007'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1695, '浙江省', NULL, '东阳市', '339008'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1696, '浙江省', NULL, '慈溪市', '339009'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1697, '浙江省', NULL, '奉化市', '339010'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1698, '浙江省', NULL, '诸暨市', '339011'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1699, '安徽省', '阜阳市', '临泉县', '341221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1700, '安徽省', '阜阳市', '太和县', '341222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1701, '安徽省', '阜阳市', '涡阳县', '341223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1702, '安徽省', '阜阳市', '蒙城县', '341224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1703, '安徽省', '阜阳市', '阜南县', '341225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1704, '安徽省', '阜阳市', '颍上县', '341226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1705, '安徽省', '阜阳市', '利辛县', '341227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1706, '安徽省', '阜阳市', '亳州市', '341281'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1707, '安徽省', '阜阳市', '界首市', '341282'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1708, '安徽省', '阜阳市', '市辖区', '341201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1709, '安徽省', '阜阳市', '颍州区', '341202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1710, '安徽省', '阜阳市', '颍东区', '341203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1711, '安徽省', '阜阳市', '颍泉区', '341204'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1712, '安徽省', '宿州市', '市辖区', '341301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1713, '安徽省', '宿州市', '墉桥区', '341302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1714, '安徽省', '宿州市', '砀山县', '341321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1715, '安徽省', '宿州市', '萧县', '341322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1716, '安徽省', '宿州市', '灵璧县', '341323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1717, '安徽省', '宿州市', '泗县', '341324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1718, '安徽省', '巢湖市', '市辖区', '341401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1719, '安徽省', '巢湖市', '居巢区', '341402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1720, '安徽省', '巢湖市', '庐江县', '341421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1721, '安徽省', '巢湖市', '无为县', '341422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1722, '安徽省', '巢湖市', '含山县', '341423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1723, '安徽省', '巢湖市', '和县', '341424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1724, '安徽省', '六安市', '市辖区', '341501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1725, '安徽省', '六安市', '金安区', '341502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1726, '安徽省', '六安市', '裕安区', '341503'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1727, '安徽省', '六安市', '寿县', '341521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1728, '安徽省', '六安市', '霍邱县', '341522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1729, '安徽省', '六安市', '舒城县', '341523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1730, '安徽省', '六安市', '金寨县', '341524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1731, '安徽省', '六安市', '霍山县', '341525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1732, '安徽省', '亳州市', '市辖区', '341601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1733, '安徽省', '亳州市', '谯城区', '341602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1734, '安徽省', '亳州市', '涡阳县', '341621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1735, '安徽省', '亳州市', '蒙城县', '341622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1736, '安徽省', '亳州市', '利辛县', '341623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1737, '安徽省', '池州市', '市辖区', '341701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1738, '安徽省', '池州市', '贵池区', '341702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1739, '安徽省', '池州市', '东至县', '341721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1740, '安徽省', '池州市', '石台县', '341722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1741, '安徽省', '池州市', '青阳县', '341723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1742, '安徽省', '宣城市', '市辖区', '341801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1743, '安徽省', '宣城市', '宣州区', '341802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1744, '安徽省', '宣城市', '郎溪县', '341821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1745, '安徽省', '宣城市', '广德县', '341822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1746, '安徽省', '宣城市', '泾县', '341823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1747, '安徽省', '宣城市', '绩溪县', '341824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1748, '安徽省', '宣城市', '旌德县', '341825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1749, '安徽省', '宣城市', '宁国市', '341881'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1750, '安徽省', '阜阳地区', '阜阳市', '342101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1751, '安徽省', '阜阳地区', '阜阳县', '342121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1752, '安徽省', '阜阳地区', '临泉县', '342122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1753, '安徽省', '阜阳地区', '太和县', '342123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1754, '安徽省', '阜阳地区', '涡阳县', '342124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1755, '安徽省', '阜阳地区', '蒙城县', '342125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1756, '安徽省', '阜阳地区', '亳县', '342126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1757, '安徽省', '阜阳地区', '阜南县', '342127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1758, '安徽省', '阜阳地区', '颍上县', '342128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1759, '安徽省', '阜阳地区', '界首县', '342129'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1760, '安徽省', '阜阳地区', '利辛县', '342130'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1761, '安徽省', '宿县地区', '宿州市', '342201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1762, '安徽省', '宿县地区', '砀山县', '342221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1763, '安徽省', '宿县地区', '萧县', '342222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1764, '安徽省', '宿县地区', '宿县', '342223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1765, '安徽省', '宿县地区', '灵璧县', '342224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1766, '安徽省', '宿县地区', '泗县', '342225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1767, '安徽省', '宿县地区', '怀远县', '342226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1768, '安徽省', '宿县地区', '五河县', '342227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1769, '安徽省', '宿县地区', '固镇县', '342228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1770, '安徽省', '滁县地区', '滁州市', '342301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1771, '安徽省', '滁县地区', '天长县', '342321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1772, '安徽省', '滁县地区', '来安县', '342322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1773, '安徽省', '滁县地区', '滁县', '342323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1774, '安徽省', '滁县地区', '全椒县', '342324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1775, '安徽省', '滁县地区', '定远县', '342325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1776, '安徽省', '滁县地区', '凤阳县', '342326'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1777, '安徽省', '滁县地区', '嘉山县', '342327'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1778, '安徽省', '六安地区', '六安市', '342401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1779, '安徽省', '六安地区', '六安县', '342421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1780, '安徽省', '六安地区', '寿县', '342422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1781, '安徽省', '六安地区', '霍邱县', '342423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1782, '安徽省', '六安地区', '肥西县', '342424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1783, '安徽省', '六安地区', '舒城县', '342425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1784, '安徽省', '六安地区', '金寨县', '342426'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1785, '安徽省', '六安地区', '霍山县', '342427'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1786, '安徽省', '宣城地区', '宣州市', '342501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1787, '安徽省', '宣城地区', '宁国市', '342502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1788, '安徽省', '宣城地区', '宣州县', '342521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1789, '安徽省', '宣城地区', '郎溪县', '342522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1790, '安徽省', '宣城地区', '广德县', '342523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1791, '安徽省', '宣城地区', '宁国县', '342524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1792, '安徽省', '宣城地区', '当涂县', '342525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1793, '安徽省', '宣城地区', '繁昌县', '342526'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1794, '安徽省', '宣城地区', '南陵县', '342527'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1795, '安徽省', '宣城地区', '青阳县', '342528'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1796, '安徽省', '宣城地区', '泾县', '342529'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1797, '安徽省', '宣城地区', '旌德县', '342530'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1798, '安徽省', '宣城地区', '绩溪县', '342531'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1799, '安徽省', '巢湖地区', '巢湖市', '342601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1800, '安徽省', '巢湖地区', '肥东县', '342621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1801, '安徽省', '巢湖地区', '庐江县', '342622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1802, '安徽省', '巢湖地区', '无为县', '342623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1803, '安徽省', '巢湖地区', '巢县', '342624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1804, '安徽省', '巢湖地区', '含山县', '342625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1805, '安徽省', '巢湖地区', '和县', '342626'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1806, '安徽省', '徽州地区', '屯溪市', '342701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1807, '安徽省', '徽州地区', '绩溪县', '342721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1808, '安徽省', '徽州地区', '旌德县', '342722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1809, '安徽省', '徽州地区', '歙县', '342723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1810, '安徽省', '徽州地区', '休宁县', '342724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1811, '安徽省', '徽州地区', '黟县', '342725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1812, '安徽省', '徽州地区', '祁门县', '342726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1813, '安徽省', '徽州地区', '太平县', '342727'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1814, '安徽省', '徽州地区', '石台县', '342728'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1815, '安徽省', '安庆地区', '怀宁县', '342821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1816, '安徽省', '安庆地区', '桐城县', '342822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1817, '安徽省', '安庆地区', '枞阳县', '342823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1818, '安徽省', '安庆地区', '潜山县', '342824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1819, '安徽省', '安庆地区', '太湖县', '342825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1820, '安徽省', '安庆地区', '宿松县', '342826'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1821, '安徽省', '安庆地区', '望江县', '342827'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1822, '安徽省', '安庆地区', '岳西县', '342828'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1823, '安徽省', '安庆地区', '东至县', '342829'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1824, '安徽省', '安庆地区', '贵池县', '342830'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1825, '安徽省', '池州地区', '贵池市', '342901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1826, '安徽省', '池州地区', '东至县', '342921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1827, '安徽省', '池州地区', '石台县', '342922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1828, '安徽省', '池州地区', '青阳县', '342923'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1829, '安徽省', '合肥市', '市辖区', '340101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1830, '安徽省', '合肥市', '瑶海区', '340102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1831, '安徽省', '合肥市', '庐阳区', '340103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1832, '安徽省', '合肥市', '蜀山区', '340104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1833, '安徽省', '合肥市', '包河区', '340111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1834, '安徽省', '合肥市', '长丰县', '340121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1835, '安徽省', '合肥市', '肥西县', '340122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1836, '安徽省', '合肥市', '肥东县', '340123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1837, '安徽省', '芜湖市', '市辖区', '340201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1838, '安徽省', '芜湖市', '镜湖区', '340202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1839, '安徽省', '芜湖市', '弋江区', '340203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1840, '安徽省', '芜湖市', '新芜区', '340204'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1841, '安徽省', '芜湖市', '裕溪口区', '340205'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1842, '安徽省', '芜湖市', '四褐山区', '340206'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1843, '安徽省', '芜湖市', '鸠江区', '340207'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1844, '安徽省', '芜湖市', '三山区', '340208'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1845, '安徽省', '芜湖市', '郊区', '340211'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1846, '安徽省', '芜湖市', '市区', '340220'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1847, '安徽省', '芜湖市', '芜湖县', '340221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1848, '安徽省', '芜湖市', '繁昌县', '340222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1849, '安徽省', '芜湖市', '南陵县', '340223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1850, '安徽省', '芜湖市', '青阳县', '340224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1851, '安徽省', '蚌埠市', '市辖区', '340301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1852, '安徽省', '蚌埠市', '龙子湖区', '340302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1853, '安徽省', '蚌埠市', '蚌山区', '340303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1854, '安徽省', '蚌埠市', '禹会区', '340304'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1855, '安徽省', '蚌埠市', '淮上区', '340311'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1856, '安徽省', '蚌埠市', '怀远县', '340321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1857, '安徽省', '蚌埠市', '五河县', '340322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1858, '安徽省', '蚌埠市', '固镇县', '340323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1859, '安徽省', '淮南市', '市辖区', '340401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1860, '安徽省', '淮南市', '大通区', '340402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1861, '安徽省', '淮南市', '田家庵区', '340403'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1862, '安徽省', '淮南市', '谢家集区', '340404'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1863, '安徽省', '淮南市', '八公山区', '340405'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1864, '安徽省', '淮南市', '潘集区', '340406'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1865, '安徽省', '淮南市', '凤台县', '340421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1866, '安徽省', '马鞍山市', '市辖区', '340501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1867, '安徽省', '马鞍山市', '金家庄区', '340502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1868, '安徽省', '马鞍山市', '花山区', '340503'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1869, '安徽省', '马鞍山市', '雨山区', '340504'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1870, '安徽省', '马鞍山市', '向山区', '340505'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1871, '安徽省', '马鞍山市', '当涂县', '340521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1872, '安徽省', '淮北市', '市辖区', '340601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1873, '安徽省', '淮北市', '杜集区', '340602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1874, '安徽省', '淮北市', '相山区', '340603'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1875, '安徽省', '淮北市', '烈山区', '340604'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1876, '安徽省', '淮北市', '濉溪县', '340621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1877, '安徽省', '铜陵市', '市辖区', '340701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1878, '安徽省', '铜陵市', '铜官山区', '340702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1879, '安徽省', '铜陵市', '狮子山区', '340703'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1880, '安徽省', '铜陵市', '郊区', '340711'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1881, '安徽省', '铜陵市', '铜陵县', '340721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1882, '安徽省', '安庆市', '市辖区', '340801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1883, '安徽省', '安庆市', '迎江区', '340802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1884, '安徽省', '安庆市', '大观区', '340803'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1885, '安徽省', '安庆市', '郊区', '340811'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1886, '安徽省', '安庆市', '桐城县', '340821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1887, '安徽省', '安庆市', '怀宁县', '340822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1888, '安徽省', '安庆市', '枞阳县', '340823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1889, '安徽省', '安庆市', '潜山县', '340824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1890, '安徽省', '安庆市', '太湖县', '340825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1891, '安徽省', '安庆市', '宿松县', '340826'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1892, '安徽省', '安庆市', '望江县', '340827'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1893, '安徽省', '安庆市', '岳西县', '340828'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1894, '安徽省', '安庆市', '桐城市', '340881'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1895, '安徽省', '黄山市', '市辖区', '341001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1896, '安徽省', '黄山市', '屯溪区', '341002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1897, '安徽省', '黄山市', '黄山区', '341003'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1898, '安徽省', '黄山市', '徽州区', '341004'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1899, '安徽省', '黄山市', '歙县', '341021'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1900, '安徽省', '黄山市', '休宁县', '341022'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1901, '安徽省', '黄山市', '黟县', '341023'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1902, '安徽省', '黄山市', '祁门县', '341024'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1903, '安徽省', '滁州市', '市辖区', '341101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1904, '安徽省', '滁州市', '琅琊区', '341102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1905, '安徽省', '滁州市', '南谯区', '341103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1906, '安徽省', '滁州市', '天长县', '341121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1907, '安徽省', '滁州市', '来安县', '341122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1908, '安徽省', '滁州市', '全椒县', '341124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1909, '安徽省', '滁州市', '定远县', '341125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1910, '安徽省', '滁州市', '凤阳县', '341126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1911, '安徽省', '滁州市', '嘉山县', '341127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1912, '安徽省', '滁州市', '天长市', '341181'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1913, '安徽省', '滁州市', '明光市', '341182'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1914, '福建省', '宁德市', '市辖区', '350901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1915, '福建省', '宁德市', '蕉城区', '350902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1916, '福建省', '宁德市', '霞浦县', '350921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1917, '福建省', '宁德市', '古田县', '350922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1918, '福建省', '宁德市', '屏南县', '350923'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1919, '福建省', '宁德市', '寿宁县', '350924'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1920, '福建省', '宁德市', '周宁县', '350925'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1921, '福建省', '宁德市', '柘荣县', '350926'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1922, '福建省', '宁德市', '福安市', '350981'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1923, '福建省', '宁德市', '福鼎市', '350982'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1924, '福建省', '南平地区', '南平市', '352101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1925, '福建省', '南平地区', '邵武市', '352102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1926, '福建省', '南平地区', '武夷山市', '352103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1927, '福建省', '南平地区', '建瓯市', '352104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1928, '福建省', '南平地区', '顺昌县', '352121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1929, '福建省', '南平地区', '建阳县', '352122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1930, '福建省', '南平地区', '建瓯县', '352123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1931, '福建省', '南平地区', '浦城县', '352124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1932, '福建省', '南平地区', '邵武县', '352125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1933, '福建省', '南平地区', '崇安县', '352126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1934, '福建省', '南平地区', '光泽县', '352127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1935, '福建省', '南平地区', '松溪县', '352128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1936, '福建省', '南平地区', '政和县', '352129'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1937, '福建省', '宁德地区', '宁德市', '352201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1938, '福建省', '宁德地区', '福安市', '352202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1939, '福建省', '宁德地区', '福鼎市', '352203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1940, '福建省', '宁德地区', '宁德县', '352221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1941, '福建省', '宁德地区', '连江县', '352222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1942, '福建省', '宁德地区', '罗源县', '352223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1943, '福建省', '宁德地区', '福鼎县', '352224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1944, '福建省', '宁德地区', '霞浦县', '352225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1945, '福建省', '宁德地区', '福安县', '352226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1946, '福建省', '宁德地区', '古田县', '352227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1947, '福建省', '宁德地区', '屏南县', '352228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1948, '福建省', '宁德地区', '寿宁县', '352229'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1949, '福建省', '宁德地区', '周宁县', '352230'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1950, '福建省', '宁德地区', '柘荣县', '352231'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1951, '福建省', '龙岩地区', '龙岩市', '352601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1952, '福建省', '龙岩地区', '漳平市', '352602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1953, '福建省', '龙岩地区', '长汀县', '352622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1954, '福建省', '龙岩地区', '永定县', '352623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1955, '福建省', '龙岩地区', '上杭县', '352624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1956, '福建省', '龙岩地区', '武平县', '352625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1957, '福建省', '龙岩地区', '漳平县', '352626'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1958, '福建省', '龙岩地区', '连城县', '352627'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1959, '福建省', '三明市', '三明市', '352701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1960, '福建省', '三明市', '明溪县', '352721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1961, '福建省', '三明市', '永安县', '352722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1962, '福建省', '三明市', '清流县', '352723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1963, '福建省', '三明市', '宁化县', '352724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1964, '福建省', '三明市', '大田县', '352725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1965, '福建省', '三明市', '尤溪县', '352726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1966, '福建省', '三明市', '沙县', '352727'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1967, '福建省', '三明市', '将乐县', '352728'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1968, '福建省', '三明市', '泰宁县', '352729'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1969, '福建省', '三明市', '建宁县', '352730'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1970, '福建省', '福州市', '市辖区', '350101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1971, '福建省', '福州市', '鼓楼区', '350102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1972, '福建省', '福州市', '台江区', '350103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1973, '福建省', '福州市', '仓山区', '350104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1974, '福建省', '福州市', '马尾区', '350105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1975, '福建省', '福州市', '晋安区', '350111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1976, '福建省', '福州市', '市区', '350120'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1977, '福建省', '福州市', '闽侯县', '350121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1978, '福建省', '福州市', '连江县', '350122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1979, '福建省', '福州市', '罗源县', '350123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1980, '福建省', '福州市', '闽清县', '350124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1981, '福建省', '福州市', '永泰县', '350125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1982, '福建省', '福州市', '长乐县', '350126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1983, '福建省', '福州市', '福清县', '350127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1984, '福建省', '福州市', '平潭县', '350128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1985, '福建省', '福州市', '福清市', '350181'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1986, '福建省', '福州市', '长乐市', '350182'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1987, '福建省', '厦门市', '市辖区', '350201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1988, '福建省', '厦门市', '鼓浪屿区', '350202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1989, '福建省', '厦门市', '思明区', '350203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1990, '福建省', '厦门市', '开元区', '350204'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1991, '福建省', '厦门市', '海沧区', '350205'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1992, '福建省', '厦门市', '湖里区', '350206'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1993, '福建省', '厦门市', '集美区', '350211'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1994, '福建省', '厦门市', '同安区', '350212'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1995, '福建省', '厦门市', '翔安区', '350213'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1996, '福建省', '莆田市', '市辖区', '350301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1997, '福建省', '莆田市', '城厢区', '350302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1998, '福建省', '莆田市', '涵江区', '350303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (1999, '福建省', '莆田市', '荔城区', '350304'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2000, '福建省', '莆田市', '秀屿区', '350305'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2001, '福建省', '莆田市', '莆田县', '350321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2002, '福建省', '莆田市', '仙游县', '350322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2003, '福建省', '三明市', '市辖区', '350401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2004, '福建省', '三明市', '梅列区', '350402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2005, '福建省', '三明市', '三元区', '350403'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2006, '福建省', '三明市', '永安市', '350404'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2007, '福建省', '三明市', '永安市', '350420'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2008, '福建省', '三明市', '明溪县', '350421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2009, '福建省', '三明市', '永安县', '350422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2010, '福建省', '三明市', '清流县', '350423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2011, '福建省', '三明市', '宁化县', '350424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2012, '福建省', '三明市', '大田县', '350425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2013, '福建省', '三明市', '尤溪县', '350426'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2014, '福建省', '三明市', '沙县', '350427'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2015, '福建省', '三明市', '将乐县', '350428'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2016, '福建省', '三明市', '泰宁县', '350429'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2017, '福建省', '三明市', '建宁县', '350430'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2018, '福建省', '三明市', '永安市', '350481'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2019, '福建省', '泉州市', '市辖区', '350501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2020, '福建省', '泉州市', '鲤城区', '350502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2021, '福建省', '泉州市', '丰泽区', '350503'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2022, '福建省', '泉州市', '洛江区', '350504'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2023, '福建省', '泉州市', '泉港区', '350505'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2024, '福建省', '泉州市', '惠安县', '350521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2025, '福建省', '泉州市', '晋江县', '350522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2026, '福建省', '泉州市', '南安县', '350523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2027, '福建省', '泉州市', '安溪县', '350524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2028, '福建省', '泉州市', '永春县', '350525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2029, '福建省', '泉州市', '德化县', '350526'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2030, '福建省', '泉州市', '金门县', '350527'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2031, '福建省', '泉州市', '石狮市', '350581'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2032, '福建省', '泉州市', '晋江市', '350582'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2033, '福建省', '泉州市', '南安市', '350583'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2034, '福建省', '漳州市', '市辖区', '350601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2035, '福建省', '漳州市', '芗城区', '350602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2036, '福建省', '漳州市', '龙文区', '350603'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2037, '福建省', '漳州市', '龙海县', '350621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2038, '福建省', '漳州市', '云霄县', '350622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2039, '福建省', '漳州市', '漳浦县', '350623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2040, '福建省', '漳州市', '诏安县', '350624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2041, '福建省', '漳州市', '长泰县', '350625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2042, '福建省', '漳州市', '东山县', '350626'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2043, '福建省', '漳州市', '南靖县', '350627'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2044, '福建省', '漳州市', '平和县', '350628'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2045, '福建省', '漳州市', '华安县', '350629'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2046, '福建省', '漳州市', '龙海市', '350681'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2047, '福建省', '南平市', '市辖区', '350701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2048, '福建省', '南平市', '延平区', '350702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2049, '福建省', '南平市', '顺昌县', '350721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2050, '福建省', '南平市', '浦城县', '350722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2051, '福建省', '南平市', '光泽县', '350723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2052, '福建省', '南平市', '松溪县', '350724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2053, '福建省', '南平市', '政和县', '350725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2054, '福建省', '南平市', '邵武市', '350781'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2055, '福建省', '南平市', '武夷山市', '350782'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2056, '福建省', '南平市', '建瓯市', '350783'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2057, '福建省', '南平市', '建阳市', '350784'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2058, '福建省', '龙岩市', '市辖区', '350801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2059, '福建省', '龙岩市', '新罗区', '350802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2060, '福建省', '龙岩市', '长汀县', '350821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2061, '福建省', '龙岩市', '永定县', '350822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2062, '福建省', '龙岩市', '上杭县', '350823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2063, '福建省', '龙岩市', '武平县', '350824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2064, '福建省', '龙岩市', '连城县', '350825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2065, '福建省', '龙岩市', '漳平市', '350881'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2066, '福建省', NULL, '永安市', '359001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2067, '福建省', NULL, '石狮市', '359002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2068, '江西省', '南昌市', '市辖区', '360101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2069, '江西省', '南昌市', '东湖区', '360102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2070, '江西省', '南昌市', '西湖区', '360103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2071, '江西省', '南昌市', '青云谱区', '360104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2072, '江西省', '南昌市', '湾里区', '360105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2073, '江西省', '南昌市', '郊区', '360111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2074, '江西省', '南昌市', '南昌县', '360121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2075, '江西省', '南昌市', '新建县', '360122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2076, '江西省', '南昌市', '安义县', '360123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2077, '江西省', '南昌市', '进贤县', '360124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2078, '江西省', '景德镇市', '市辖区', '360201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2079, '江西省', '景德镇市', '昌江区', '360202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2080, '江西省', '景德镇市', '珠山区', '360203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2081, '江西省', '景德镇市', '鹅湖区', '360211'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2082, '江西省', '景德镇市', '蛟潭区', '360212'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2083, '江西省', '景德镇市', '乐平县', '360221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2084, '江西省', '景德镇市', '浮梁县', '360222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2085, '江西省', '景德镇市', '乐平市', '360281'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2086, '江西省', '上饶市', '鄱阳县', '361128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2087, '江西省', '上饶市', '万年县', '361129'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2088, '江西省', '上饶市', '婺源县', '361130'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2089, '江西省', '上饶市', '德兴市', '361181'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2090, '江西省', '上饶市', '市辖区', '361101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2091, '江西省', '上饶市', '信州区', '361102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2092, '江西省', '上饶市', '上饶县', '361121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2093, '江西省', '上饶市', '广丰县', '361122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2094, '江西省', '上饶市', '玉山县', '361123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2095, '江西省', '上饶市', '铅山县', '361124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2096, '江西省', '上饶市', '横峰县', '361125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2097, '江西省', '上饶市', '弋阳县', '361126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2098, '江西省', '上饶市', '余干县', '361127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2099, '江西省', '赣州地区', '赣州市', '362101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2100, '江西省', '赣州地区', '瑞金市', '362102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2101, '江西省', '赣州地区', '南康市', '362103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2102, '江西省', '赣州地区', '赣县', '362121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2103, '江西省', '赣州地区', '南康市', '362122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2104, '江西省', '赣州地区', '信丰县', '362123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2105, '江西省', '赣州地区', '大余县', '362124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2106, '江西省', '赣州地区', '上犹县', '362125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2107, '江西省', '赣州地区', '崇义县', '362126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2108, '江西省', '赣州地区', '安远县', '362127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2109, '江西省', '赣州地区', '龙南县', '362128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2110, '江西省', '赣州地区', '定南县', '362129'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2111, '江西省', '赣州地区', '全南县', '362130'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2112, '江西省', '赣州地区', '宁都县', '362131'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2113, '江西省', '赣州地区', '于都县', '362132'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2114, '江西省', '赣州地区', '兴国县', '362133'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2115, '江西省', '赣州地区', '瑞金市', '362134'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2116, '江西省', '赣州地区', '会昌县', '362135'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2117, '江西省', '赣州地区', '寻乌县', '362136'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2118, '江西省', '赣州地区', '石城县', '362137'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2119, '江西省', '赣州地区', '广昌县', '362138'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2120, '江西省', '宜春地区', '宜春市', '362201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2121, '江西省', '宜春地区', '丰城市', '362202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2122, '江西省', '宜春地区', '樟树市', '362203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2123, '江西省', '宜春地区', '高安市', '362204'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2124, '江西省', '宜春地区', '丰城县', '362221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2125, '江西省', '宜春地区', '高安县', '362222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2126, '江西省', '宜春地区', '清江县', '362223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2127, '江西省', '宜春地区', '新余县', '362224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2128, '江西省', '宜春地区', '宜春县', '362225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2129, '江西省', '宜春地区', '奉新县', '362226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2130, '江西省', '宜春地区', '万载县', '362227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2131, '江西省', '宜春地区', '上高县', '362228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2132, '江西省', '宜春地区', '宜丰县', '362229'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2133, '江西省', '宜春地区', '分宜县', '362230'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2134, '江西省', '宜春地区', '安义县', '362231'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2135, '江西省', '宜春地区', '靖安县', '362232'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2136, '江西省', '宜春地区', '铜鼓县', '362233'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2137, '江西省', '上饶地区', '上饶市', '362301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2138, '江西省', '上饶地区', '德兴市', '362302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2139, '江西省', '上饶地区', '上饶县', '362321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2140, '江西省', '上饶地区', '广丰县', '362322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2141, '江西省', '上饶地区', '玉山县', '362323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2142, '江西省', '上饶地区', '铅山县', '362324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2143, '江西省', '上饶地区', '横峰县', '362325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2144, '江西省', '上饶地区', '弋阳县', '362326'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2145, '江西省', '上饶地区', '贵溪县', '362327'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2146, '江西省', '上饶地区', '余江县', '362328'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2147, '江西省', '上饶地区', '余干县', '362329'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2148, '江西省', '上饶地区', '波阳县', '362330'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2149, '江西省', '上饶地区', '万年县', '362331'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2150, '江西省', '上饶地区', '乐平县', '362332'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2151, '江西省', '上饶地区', '德兴县', '362333'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2152, '江西省', '上饶地区', '婺源县', '362334'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2153, '江西省', '萍乡市', '市辖区', '360301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2154, '江西省', '萍乡市', '安源区', '360302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2155, '江西省', '萍乡市', '上栗区', '360311'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2156, '江西省', '萍乡市', '芦溪区', '360312'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2157, '江西省', '萍乡市', '湘东区', '360313'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2158, '江西省', '萍乡市', '莲花县', '360321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2159, '江西省', '萍乡市', '上栗县', '360322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2160, '江西省', '萍乡市', '芦溪县', '360323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2161, '江西省', '九江市', '市辖区', '360401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2162, '江西省', '九江市', '庐山区', '360402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2163, '江西省', '九江市', '浔阳区', '360403'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2164, '江西省', '九江市', '九江县', '360421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2165, '江西省', '九江市', '瑞昌县', '360422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2166, '江西省', '九江市', '武宁县', '360423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2167, '江西省', '九江市', '修水县', '360424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2168, '江西省', '九江市', '永修县', '360425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2169, '江西省', '九江市', '德安县', '360426'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2170, '江西省', '九江市', '星子县', '360427'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2171, '江西省', '九江市', '都昌县', '360428'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2172, '江西省', '九江市', '湖口县', '360429'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2173, '江西省', '九江市', '彭泽县', '360430'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2174, '江西省', '九江市', '瑞昌市', '360481'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2175, '江西省', '新余市', '市辖区', '360501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2176, '江西省', '新余市', '渝水区', '360502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2177, '江西省', '新余市', '分宜县', '360521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2178, '江西省', '鹰潭市', '市辖区', '360601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2179, '江西省', '鹰潭市', '月湖区', '360602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2180, '江西省', '鹰潭市', '贵溪县', '360621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2181, '江西省', '鹰潭市', '余江县', '360622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2182, '江西省', '鹰潭市', '贵溪市', '360681'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2183, '江西省', '赣州市', '市辖区', '360701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2184, '江西省', '赣州市', '章贡区', '360702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2185, '江西省', '赣州市', '赣县', '360721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2186, '江西省', '赣州市', '信丰县', '360722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2187, '江西省', '赣州市', '大余县', '360723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2188, '江西省', '赣州市', '上犹县', '360724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2189, '江西省', '赣州市', '崇义县', '360725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2190, '江西省', '赣州市', '安远县', '360726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2191, '江西省', '赣州市', '龙南县', '360727'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2192, '江西省', '赣州市', '定南县', '360728'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2193, '江西省', '赣州市', '全南县', '360729'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2194, '江西省', '赣州市', '宁都县', '360730'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2195, '江西省', '赣州市', '于都县', '360731'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2196, '江西省', '赣州市', '兴国县', '360732'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2197, '江西省', '赣州市', '会昌县', '360733'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2198, '江西省', '赣州市', '寻乌县', '360734'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2199, '江西省', '赣州市', '石城县', '360735'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2200, '江西省', '赣州市', '瑞金市', '360781'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2201, '江西省', '赣州市', '南康市', '360782'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2202, '江西省', '吉安市', '市辖区', '360801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2203, '江西省', '吉安市', '吉州区', '360802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2204, '江西省', '吉安市', '青原区', '360803'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2205, '江西省', '吉安市', '吉安县', '360821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2206, '江西省', '吉安市', '吉水县', '360822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2207, '江西省', '吉安市', '峡江县', '360823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2208, '江西省', '吉安市', '新干县', '360824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2209, '江西省', '吉安市', '永丰县', '360825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2210, '江西省', '吉安市', '泰和县', '360826'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2211, '江西省', '吉安市', '遂川县', '360827'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2212, '江西省', '吉安市', '万安县', '360828'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2213, '江西省', '吉安市', '安福县', '360829'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2214, '江西省', '吉安市', '永新县', '360830'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2215, '江西省', '吉安市', '井冈山市', '360881'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2216, '江西省', '宜春市', '市辖区', '360901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2217, '江西省', '宜春市', '袁州区', '360902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2218, '江西省', '宜春市', '奉新县', '360921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2219, '江西省', '宜春市', '万载县', '360922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2220, '江西省', '宜春市', '上高县', '360923'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2221, '江西省', '宜春市', '宜丰县', '360924'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2222, '江西省', '宜春市', '靖安县', '360925'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2223, '江西省', '宜春市', '铜鼓县', '360926'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2224, '江西省', '宜春市', '丰城市', '360981'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2225, '江西省', '宜春市', '樟树市', '360982'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2226, '江西省', '宜春市', '高安市', '360983'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2227, '江西省', '抚州市', '市辖区', '361001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2228, '江西省', '抚州市', '临川区', '361002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2229, '江西省', '抚州市', '南城县', '361021'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2230, '江西省', '抚州市', '黎川县', '361022'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2231, '江西省', '抚州市', '南丰县', '361023'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2232, '江西省', '抚州市', '崇仁县', '361024'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2233, '江西省', '抚州市', '乐安县', '361025'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2234, '江西省', '抚州市', '宜黄县', '361026'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2235, '江西省', '抚州市', '金溪县', '361027'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2236, '江西省', '抚州市', '资溪县', '361028'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2237, '江西省', '抚州市', '东乡县', '361029'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2238, '江西省', '抚州市', '广昌县', '361030'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2239, '江西省', '吉安地区', '吉安市', '362401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2240, '江西省', '吉安地区', '井冈山市', '362402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2241, '江西省', '吉安地区', '吉安县', '362421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2242, '江西省', '吉安地区', '吉水县', '362422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2243, '江西省', '吉安地区', '峡江县', '362423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2244, '江西省', '吉安地区', '新干县', '362424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2245, '江西省', '吉安地区', '永丰县', '362425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2246, '江西省', '吉安地区', '泰和县', '362426'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2247, '江西省', '吉安地区', '遂川县', '362427'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2248, '江西省', '吉安地区', '万安县', '362428'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2249, '江西省', '吉安地区', '安福县', '362429'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2250, '江西省', '吉安地区', '永新县', '362430'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2251, '江西省', '吉安地区', '莲花县', '362431'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2252, '江西省', '吉安地区', '宁冈县', '362432'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2253, '江西省', '吉安地区', '井岗山县', '362433'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2254, '江西省', '抚州地区', '临川市', '362501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2255, '江西省', '抚州地区', '临川市', '362502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2256, '江西省', '抚州地区', '临川县', '362521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2257, '江西省', '抚州地区', '南城县', '362522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2258, '江西省', '抚州地区', '黎川县', '362523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2259, '江西省', '抚州地区', '南丰县', '362524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2260, '江西省', '抚州地区', '崇仁县', '362525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2261, '江西省', '抚州地区', '乐安县', '362526'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2262, '江西省', '抚州地区', '宜黄县', '362527'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2263, '江西省', '抚州地区', '金溪县', '362528'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2264, '江西省', '抚州地区', '资溪县', '362529'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2265, '江西省', '抚州地区', '进贤县', '362530'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2266, '江西省', '抚州地区', '东乡县', '362531'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2267, '江西省', '抚州地区', '广昌县', '362532'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2268, '江西省', '九江地区', '九江县', '362621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2269, '江西省', '九江地区', '瑞昌县', '362622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2270, '江西省', '九江地区', '武宁县', '362623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2271, '江西省', '九江地区', '修水县', '362624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2272, '江西省', '九江地区', '永修县', '362625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2273, '江西省', '九江地区', '德安县', '362626'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2274, '江西省', '九江地区', '星子县', '362627'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2275, '江西省', '九江地区', '都昌县', '362628'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2276, '江西省', '九江地区', '湖口县', '362629'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2277, '江西省', '九江地区', '彭泽县', '362630'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2278, '山东省', '青岛市', '崂山区', '370212'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2279, '山东省', '青岛市', '李沧区', '370213'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2280, '山东省', '青岛市', '城阳区', '370214'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2281, '山东省', '青岛市', '市区', '370220'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2282, '山东省', '青岛市', '崂山县', '370221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2283, '山东省', '青岛市', '即墨县', '370222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2284, '山东省', '青岛市', '胶南县', '370223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2285, '山东省', '青岛市', '胶县', '370224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2286, '山东省', '青岛市', '莱西县', '370225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2287, '山东省', '青岛市', '平度县', '370226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2288, '山东省', '青岛市', '胶州市', '370281'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2289, '山东省', '青岛市', '即墨市', '370282'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2290, '山东省', '青岛市', '平度市', '370283'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2291, '山东省', '青岛市', '胶南市', '370284'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2292, '山东省', '青岛市', '莱西市', '370285'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2293, '山东省', '青岛市', '市辖区', '370201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2294, '山东省', '青岛市', '市南区', '370202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2295, '山东省', '青岛市', '市北区', '370203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2296, '山东省', '青岛市', '台东区', '370204'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2297, '山东省', '青岛市', '四方区', '370205'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2298, '山东省', '青岛市', '沧口区', '370206'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2299, '山东省', '青岛市', '黄岛区', '370211'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2300, '山东省', '淄博市', '市辖区', '370301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2301, '山东省', '淄博市', '淄川区', '370302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2302, '山东省', '淄博市', '张店区', '370303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2303, '山东省', '淄博市', '博山区', '370304'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2304, '山东省', '淄博市', '临淄区', '370305'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2305, '山东省', '淄博市', '周村区', '370306'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2306, '山东省', '淄博市', '桓台县', '370321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2307, '山东省', '淄博市', '高青县', '370322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2308, '山东省', '淄博市', '沂源县', '370323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2309, '山东省', '枣庄市', '市辖区', '370401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2310, '山东省', '枣庄市', '市中区', '370402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2311, '山东省', '枣庄市', '薛城区', '370403'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2312, '山东省', '枣庄市', '峄城区', '370404'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2313, '山东省', '枣庄市', '台儿庄区', '370405'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2314, '山东省', '枣庄市', '山亭区', '370406'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2315, '山东省', '枣庄市', '市区', '370420'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2316, '山东省', '枣庄市', '滕县', '370421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2317, '山东省', '枣庄市', '滕州市', '370481'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2318, '山东省', '东营市', '市辖区', '370501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2319, '山东省', '东营市', '东营区', '370502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2320, '山东省', '东营市', '河口区', '370503'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2321, '山东省', '东营市', '垦利县', '370521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2322, '山东省', '东营市', '利津县', '370522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2323, '山东省', '东营市', '广饶县', '370523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2324, '山东省', '烟台市', '市辖区', '370601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2325, '山东省', '烟台市', '芝罘区', '370602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2326, '山东省', '烟台市', '福山区', '370611'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2327, '山东省', '烟台市', '牟平区', '370612'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2328, '山东省', '烟台市', '莱山区', '370613'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2329, '山东省', '烟台市', '龙口市', '370619'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2330, '山东省', '烟台市', '威海市', '370620'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2331, '山东省', '烟台市', '蓬莱县', '370622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2332, '山东省', '烟台市', '黄县', '370623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2333, '山东省', '烟台市', '招远县', '370624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2334, '山东省', '烟台市', '掖县', '370625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2335, '山东省', '烟台市', '莱阳县', '370627'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2336, '山东省', '烟台市', '栖霞县', '370628'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2337, '山东省', '烟台市', '海阳县', '370629'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2338, '山东省', '烟台市', '牟平县', '370631'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2339, '山东省', '烟台市', '文登县', '370632'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2340, '山东省', '烟台市', '荣城县', '370633'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2341, '山东省', '烟台市', '长岛县', '370634'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2342, '山东省', '烟台市', '龙口市', '370681'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2343, '山东省', '烟台市', '莱阳市', '370682'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2344, '山东省', '烟台市', '莱州市', '370683'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2345, '山东省', '烟台市', '蓬莱市', '370684'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2346, '山东省', '烟台市', '招远市', '370685'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2347, '山东省', '烟台市', '栖霞市', '370686'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2348, '山东省', '烟台市', '海阳市', '370687'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2349, '山东省', '潍坊市', '市辖区', '370701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2350, '山东省', '潍坊市', '潍城区', '370702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2351, '山东省', '潍坊市', '寒亭区', '370703'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2352, '山东省', '潍坊市', '坊子区', '370704'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2353, '山东省', '潍坊市', '奎文区', '370705'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2354, '山东省', '潍坊市', '青州市', '370719'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2355, '山东省', '潍坊市', '益都县', '370721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2356, '山东省', '潍坊市', '安丘县', '370722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2357, '山东省', '潍坊市', '寿光县', '370723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2358, '山东省', '潍坊市', '临朐县', '370724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2359, '山东省', '潍坊市', '昌乐县', '370725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2360, '山东省', '潍坊市', '昌邑县', '370726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2361, '山东省', '潍坊市', '高密县', '370727'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2362, '山东省', '潍坊市', '诸城县', '370728'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2363, '山东省', '潍坊市', '五莲县', '370729'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2364, '山东省', '潍坊市', '青州市', '370781'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2365, '山东省', '潍坊市', '诸城市', '370782'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2366, '山东省', '潍坊市', '寿光市', '370783'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2367, '山东省', '潍坊市', '安丘市', '370784'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2368, '山东省', '潍坊市', '高密市', '370785'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2369, '山东省', '潍坊市', '昌邑市', '370786'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2370, '山东省', '济宁市', '市辖区', '370801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2371, '山东省', '济宁市', '市中区', '370802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2372, '山东省', '济宁市', '任城区', '370811'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2373, '山东省', '济宁市', '曲阜市', '370819'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2374, '山东省', '济宁市', '兖州县', '370822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2375, '山东省', '济宁市', '曲阜县', '370823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2376, '山东省', '济宁市', '邹县', '370825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2377, '山东省', '济宁市', '微山县', '370826'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2378, '山东省', '济宁市', '鱼台县', '370827'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2379, '山东省', '济宁市', '金乡县', '370828'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2380, '山东省', '济宁市', '嘉祥县', '370829'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2381, '山东省', '济宁市', '汶上县', '370830'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2382, '山东省', '济宁市', '泗水县', '370831'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2383, '山东省', '济宁市', '梁山县', '370832'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2384, '山东省', '济宁市', '曲阜市', '370881'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2385, '山东省', '济宁市', '兖州市', '370882'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2386, '山东省', '济宁市', '邹城市', '370883'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2387, '山东省', '泰安市', '市辖区', '370901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2388, '山东省', '泰安市', '泰山区', '370902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2389, '山东省', '泰安市', '岱岳区', '370903'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2390, '山东省', '泰安市', '郊区', '370911'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2391, '山东省', '泰安市', '莱芜市', '370919'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2392, '山东省', '泰安市', '新泰市', '370920'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2393, '山东省', '泰安市', '宁阳县', '370921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2394, '山东省', '泰安市', '肥城县', '370922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2395, '山东省', '泰安市', '东平县', '370923'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2396, '山东省', '泰安市', '莱芜市', '370981'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2397, '山东省', '泰安市', '新泰市', '370982'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2398, '山东省', '泰安市', '肥城市', '370983'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2399, '山东省', '威海市', '市辖区', '371001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2400, '山东省', '威海市', '环翠区', '371002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2401, '山东省', '威海市', '乳山县', '371021'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2402, '山东省', '威海市', '文登市', '371081'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2403, '山东省', '威海市', '荣成市', '371082'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2404, '山东省', '威海市', '乳山市', '371083'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2405, '山东省', '日照市', '市辖区', '371101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2406, '山东省', '日照市', '东港区', '371102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2407, '山东省', '日照市', '岚山区', '371103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2408, '山东省', '日照市', '五莲县', '371121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2409, '山东省', '日照市', '莒县', '371122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2410, '山东省', '莱芜市', '市辖区', '371201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2411, '山东省', '莱芜市', '莱城区', '371202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2412, '山东省', '莱芜市', '钢城区', '371203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2413, '山东省', '临沂市', '市辖区', '371301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2414, '山东省', '临沂市', '兰山区', '371302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2415, '山东省', '临沂市', '罗庄区', '371311'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2416, '山东省', '临沂市', '河东区', '371312'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2417, '山东省', '临沂市', '沂南县', '371321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2418, '山东省', '临沂市', '郯城县', '371322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2419, '山东省', '临沂市', '沂水县', '371323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2420, '山东省', '临沂市', '苍山县', '371324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2421, '山东省', '临沂市', '费县', '371325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2422, '山东省', '临沂市', '平邑县', '371326'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2423, '山东省', '临沂市', '莒南县', '371327'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2424, '山东省', '临沂市', '蒙阴县', '371328'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2425, '山东省', '临沂市', '临沭县', '371329'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2426, '山东省', '德州市', '市辖区', '371401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2427, '山东省', '德州市', '德城区', '371402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2428, '山东省', '德州市', '陵县', '371421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2429, '山东省', '德州市', '宁津县', '371422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2430, '山东省', '德州市', '庆云县', '371423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2431, '山东省', '德州市', '临邑县', '371424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2432, '山东省', '德州市', '齐河县', '371425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2433, '山东省', '德州市', '平原县', '371426'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2434, '山东省', '德州市', '夏津县', '371427'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2435, '山东省', '德州市', '武城县', '371428'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2436, '山东省', '德州市', '乐陵市', '371481'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2437, '山东省', '德州市', '禹城市', '371482'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2438, '山东省', '聊城市', '市辖区', '371501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2439, '山东省', '聊城市', '东昌府区', '371502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2440, '山东省', '聊城市', '阳谷县', '371521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2441, '山东省', '聊城市', '莘县', '371522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2442, '山东省', '聊城市', '茌平县', '371523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2443, '山东省', '聊城市', '东阿县', '371524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2444, '山东省', '聊城市', '冠县', '371525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2445, '山东省', '聊城市', '高唐县', '371526'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2446, '山东省', '聊城市', '临清市', '371581'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2447, '山东省', '滨州市', '市辖区', '371601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2448, '山东省', '滨州市', '滨城区', '371602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2449, '山东省', '滨州市', '惠民县', '371621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2450, '山东省', '滨州市', '阳信县', '371622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2451, '山东省', '滨州市', '无棣县', '371623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2452, '山东省', '滨州市', '沾化县', '371624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2453, '山东省', '滨州市', '博兴县', '371625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2454, '山东省', '滨州市', '邹平县', '371626'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2455, '山东省', '济南市', '市辖区', '370101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2456, '山东省', '济南市', '历下区', '370102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2457, '山东省', '济南市', '市中区', '370103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2458, '山东省', '济南市', '槐荫区', '370104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2459, '山东省', '济南市', '天桥区', '370105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2460, '山东省', '济南市', '郊区', '370111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2461, '山东省', '济南市', '历城区', '370112'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2462, '山东省', '济南市', '长清区', '370113'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2463, '山东省', '济南市', '市区', '370120'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2464, '山东省', '济南市', '历城县', '370121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2465, '山东省', '济南市', '章丘县', '370122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2466, '山东省', '济南市', '长清县', '370123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2467, '山东省', '济南市', '平阴县', '370124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2468, '山东省', '济南市', '济阳县', '370125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2469, '山东省', '济南市', '商河县', '370126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2470, '山东省', '济南市', '章丘市', '370181'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2471, '山东省', '菏泽市', '市辖区', '371701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2472, '山东省', '菏泽市', '牡丹区', '371702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2473, '山东省', '菏泽市', '曹县', '371721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2474, '山东省', '菏泽市', '单县', '371722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2475, '山东省', '菏泽市', '成武县', '371723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2476, '山东省', '菏泽市', '巨野县', '371724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2477, '山东省', '菏泽市', '郓城县', '371725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2478, '山东省', '菏泽市', '鄄城县', '371726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2479, '山东省', '菏泽市', '定陶县', '371727'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2480, '山东省', '菏泽市', '东明县', '371728'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2481, '山东省', '烟台地区', '烟台市', '372101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2482, '山东省', '烟台地区', '威海市', '372102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2483, '山东省', '烟台地区', '福山县', '372121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2484, '山东省', '烟台地区', '蓬莱县', '372122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2485, '山东省', '烟台地区', '招远县', '372124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2486, '山东省', '烟台地区', '掖县', '372125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2487, '山东省', '烟台地区', '莱西县', '372126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2488, '山东省', '烟台地区', '莱阳县', '372127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2489, '山东省', '烟台地区', '栖霞县', '372128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2490, '山东省', '烟台地区', '海阳县', '372129'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2491, '山东省', '烟台地区', '乳山县', '372130'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2492, '山东省', '烟台地区', '牟平县', '372131'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2493, '山东省', '烟台地区', '文登县', '372132'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2494, '山东省', '烟台地区', '荣城县', '372133'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2495, '山东省', '烟台地区', '长岛县', '372134'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2496, '山东省', '潍坊地区', '潍坊市', '372201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2497, '山东省', '潍坊地区', '益都县', '372221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2498, '山东省', '潍坊地区', '安丘县', '372222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2499, '山东省', '潍坊地区', '寿光县', '372223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2500, '山东省', '潍坊地区', '临朐县', '372224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2501, '山东省', '潍坊地区', '昌乐县', '372225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2502, '山东省', '潍坊地区', '昌邑县', '372226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2503, '山东省', '潍坊地区', '高密县', '372227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2504, '山东省', '潍坊地区', '诸城县', '372228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2505, '山东省', '潍坊地区', '平度县', '372230'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2506, '山东省', '潍坊地区', '潍县', '372231'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2507, '山东省', '滨州地区', '滨州市', '372301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2508, '山东省', '滨州地区', '惠民县', '372321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2509, '山东省', '滨州地区', '滨县', '372322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2510, '山东省', '滨州地区', '阳信县', '372323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2511, '山东省', '滨州地区', '无棣县', '372324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2512, '山东省', '滨州地区', '沾化县', '372325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2513, '山东省', '滨州地区', '利津县', '372326'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2514, '山东省', '滨州地区', '广饶县', '372327'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2515, '山东省', '滨州地区', '博兴县', '372328'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2516, '山东省', '滨州地区', '桓台县', '372329'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2517, '山东省', '滨州地区', '邹平县', '372330'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2518, '山东省', '滨州地区', '高青县', '372331'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2519, '山东省', '滨州地区', '垦利县', '372332'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2520, '山东省', '德州地区', '德州市', '372401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2521, '山东省', '德州地区', '乐陵市', '372402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2522, '山东省', '德州地区', '禹城市', '372403'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2523, '山东省', '德州地区', '陵县', '372421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2524, '山东省', '德州地区', '平原县', '372422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2525, '山东省', '德州地区', '夏津县', '372423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2526, '山东省', '德州地区', '武城县', '372424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2527, '山东省', '德州地区', '齐河县', '372425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2528, '山东省', '德州地区', '禹城县', '372426'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2529, '山东省', '德州地区', '乐陵县', '372427'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2530, '山东省', '德州地区', '临邑县', '372428'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2531, '山东省', '德州地区', '商河县', '372429'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2532, '山东省', '德州地区', '济阳县', '372430'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2533, '山东省', '德州地区', '宁津县', '372431'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2534, '山东省', '德州地区', '庆云县', '372432'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2535, '山东省', '聊城市', '聊城市', '372501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2536, '山东省', '聊城市', '东昌府区', '372502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2537, '山东省', '聊城市', '阳谷县', '372521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2538, '山东省', '聊城市', '莘县', '372522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2539, '山东省', '聊城市', '茌平县', '372523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2540, '山东省', '聊城市', '东阿县', '372524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2541, '山东省', '聊城市', '冠县', '372525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2542, '山东省', '聊城市', '高唐县', '372526'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2543, '山东省', '聊城市', '高唐县', '372527'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2544, '山东省', '聊城市', '临清县', '372528'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2545, '山东省', '聊城市', '临清市', '372581'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2546, '山东省', '泰安地区', '泰安市', '372601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2547, '山东省', '泰安地区', '莱芜市', '372602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2548, '山东省', '泰安地区', '新泰市', '372603'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2549, '山东省', '泰安地区', '莱芜县', '372622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2550, '山东省', '泰安地区', '新泰县', '372623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2551, '山东省', '泰安地区', '宁阳县', '372624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2552, '山东省', '泰安地区', '肥城县', '372625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2553, '山东省', '泰安地区', '东平县', '372626'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2554, '山东省', '泰安地区', '平阴县', '372627'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2555, '山东省', '泰安地区', '新汶县', '372628'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2556, '山东省', '泰安地区', '泗水县', '372630'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2557, '山东省', '济宁地区', '济宁市', '372701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2558, '山东省', '济宁地区', '兖州县', '372722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2559, '山东省', '济宁地区', '曲阜县', '372723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2560, '山东省', '济宁地区', '泗水县', '372724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2561, '山东省', '济宁地区', '邹县', '372725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2562, '山东省', '济宁地区', '微山县', '372726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2563, '山东省', '济宁地区', '鱼台县', '372727'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2564, '山东省', '济宁地区', '金乡县', '372728'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2565, '山东省', '济宁地区', '嘉祥县', '372729'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2566, '山东省', '临沂地区', '临沂市', '372801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2567, '山东省', '临沂地区', '日照市', '372802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2568, '山东省', '临沂地区', '临沂县', '372821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2569, '山东省', '临沂地区', '郯城县', '372822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2570, '山东省', '临沂地区', '苍山县', '372823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2571, '山东省', '临沂地区', '莒南县', '372824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2572, '山东省', '临沂地区', '日照县', '372825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2573, '山东省', '临沂地区', '莒县', '372826'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2574, '山东省', '临沂地区', '沂水县', '372827'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2575, '山东省', '临沂地区', '沂源县', '372828'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2576, '山东省', '临沂地区', '蒙阴县', '372829'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2577, '山东省', '临沂地区', '平邑县', '372830'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2578, '山东省', '临沂地区', '费县', '372831'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2579, '山东省', '临沂地区', '沂南县', '372832'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2580, '山东省', '临沂地区', '临沭县', '372833'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2581, '山东省', '菏泽地区', '菏泽市', '372901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2582, '山东省', '菏泽地区', '菏泽县', '372921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2583, '山东省', '菏泽地区', '曹县', '372922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2584, '山东省', '菏泽地区', '定陶县', '372923'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2585, '山东省', '菏泽地区', '成武县', '372924'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2586, '山东省', '菏泽地区', '单县', '372925'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2587, '山东省', '菏泽地区', '巨野县', '372926'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2588, '山东省', '菏泽地区', '粱山县', '372927'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2589, '山东省', '菏泽地区', '郓城县', '372928'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2590, '山东省', '菏泽地区', '鄄城县', '372929'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2591, '山东省', '菏泽地区', '东明县', '372930'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2592, '山东省', NULL, '青州市', '379001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2593, '山东省', NULL, '龙口市', '379002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2594, '山东省', NULL, '曲阜市', '379003'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2595, '山东省', NULL, '莱芜市', '379004'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2596, '山东省', NULL, '新泰市', '379005'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2597, '山东省', NULL, '胶州市', '379006'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2598, '山东省', NULL, '诸城市', '379007'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2599, '山东省', NULL, '莱阳市', '379008'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2600, '山东省', NULL, '莱州市', '379009'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2601, '山东省', NULL, '滕州市', '379010'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2602, '山东省', NULL, '文登市', '379011'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2603, '山东省', NULL, '荣城市', '379012'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2604, '河南省', '鹤壁市', '鹤山区', '410602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2605, '河南省', '鹤壁市', '山城区', '410603'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2606, '河南省', '鹤壁市', '淇滨区', '410611'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2607, '河南省', '鹤壁市', '浚县', '410621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2608, '河南省', '鹤壁市', '淇县', '410622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2609, '河南省', '鹤壁市', '市辖区', '410601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2610, '河南省', '新乡市', '市辖区', '410701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2611, '河南省', '新乡市', '红旗区', '410702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2612, '河南省', '新乡市', '新华区', '410703'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2613, '河南省', '新乡市', '北站区', '410704'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2614, '河南省', '新乡市', '郊区', '410711'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2615, '河南省', '新乡市', '新乡县', '410721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2616, '河南省', '新乡市', '汲县', '410722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2617, '河南省', '新乡市', '辉县', '410723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2618, '河南省', '新乡市', '获嘉县', '410724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2619, '河南省', '新乡市', '原阳县', '410725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2620, '河南省', '新乡市', '延津县', '410726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2621, '河南省', '新乡市', '封丘县', '410727'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2622, '河南省', '新乡市', '长垣县', '410728'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2623, '河南省', '新乡市', '卫辉市', '410781'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2624, '河南省', '新乡市', '辉县市', '410782'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2625, '河南省', '焦作市', '市辖区', '410801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2626, '河南省', '焦作市', '解放区', '410802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2627, '河南省', '焦作市', '中站区', '410803'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2628, '河南省', '焦作市', '马村区', '410804'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2629, '河南省', '焦作市', '山阳区', '410811'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2630, '河南省', '焦作市', '修武县', '410821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2631, '河南省', '焦作市', '博爱县', '410822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2632, '河南省', '焦作市', '武陟县', '410823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2633, '河南省', '焦作市', '沁阳县', '410824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2634, '河南省', '焦作市', '温县', '410825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2635, '河南省', '焦作市', '孟县', '410826'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2636, '河南省', '焦作市', '济源县', '410827'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2637, '河南省', '焦作市', '济源市', '410881'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2638, '河南省', '焦作市', '沁阳市', '410882'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2639, '河南省', '焦作市', '孟州市', '410883'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2640, '河南省', '濮阳市', '市辖区', '410901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2641, '河南省', '濮阳市', '市区', '410902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2642, '河南省', '濮阳市', '滑县', '410921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2643, '河南省', '濮阳市', '清丰县', '410922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2644, '河南省', '濮阳市', '南乐县', '410923'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2645, '河南省', '濮阳市', '内黄县', '410924'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2646, '河南省', '濮阳市', '长垣县', '410925'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2647, '河南省', '濮阳市', '范县', '410926'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2648, '河南省', '濮阳市', '台前县', '410927'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2649, '河南省', '濮阳市', '濮阳县', '410928'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2650, '河南省', '许昌市', '市辖区', '411001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2651, '河南省', '许昌市', '魏都区', '411002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2652, '河南省', '许昌市', '禹县', '411021'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2653, '河南省', '许昌市', '长葛县', '411022'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2654, '河南省', '许昌市', '许昌县', '411023'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2655, '河南省', '许昌市', '鄢陵县', '411024'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2656, '河南省', '许昌市', '襄城县', '411025'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2657, '河南省', '许昌市', '禹州市', '411081'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2658, '河南省', '许昌市', '长葛市', '411082'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2659, '河南省', '漯河市', '市辖区', '411101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2660, '河南省', '漯河市', '源汇区', '411102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2661, '河南省', '漯河市', '郾城区', '411103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2662, '河南省', '漯河市', '召陵区', '411104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2663, '河南省', '漯河市', '舞阳县', '411121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2664, '河南省', '漯河市', '临颍县', '411122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2665, '河南省', '漯河市', '郾城县', '411123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2666, '河南省', '三门峡市', '市辖区', '411201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2667, '河南省', '三门峡市', '湖滨区', '411202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2668, '河南省', '三门峡市', '渑池县', '411221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2669, '河南省', '三门峡市', '陕县', '411222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2670, '河南省', '三门峡市', '灵宝县', '411223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2671, '河南省', '三门峡市', '卢氏县', '411224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2672, '河南省', '三门峡市', '义马市', '411281'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2673, '河南省', '三门峡市', '灵宝市', '411282'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2674, '河南省', '南阳市', '市辖区', '411301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2675, '河南省', '南阳市', '宛城区', '411302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2676, '河南省', '南阳市', '卧龙区', '411303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2677, '河南省', '南阳市', '南召县', '411321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2678, '河南省', '南阳市', '方城县', '411322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2679, '河南省', '南阳市', '西峡县', '411323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2680, '河南省', '南阳市', '镇平县', '411324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2681, '河南省', '南阳市', '内乡县', '411325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2682, '河南省', '南阳市', '淅川县', '411326'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2683, '河南省', '南阳市', '社旗县', '411327'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2684, '河南省', '南阳市', '唐河县', '411328'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2685, '河南省', '南阳市', '新野县', '411329'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2686, '河南省', '南阳市', '桐柏县', '411330'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2687, '河南省', '南阳市', '邓州市', '411381'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2688, '河南省', '郑州市', '市辖区', '410101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2689, '河南省', '郑州市', '中原区', '410102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2690, '河南省', '郑州市', '二七区', '410103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2691, '河南省', '郑州市', '管城回族区', '410104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2692, '河南省', '郑州市', '金水区', '410105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2693, '河南省', '郑州市', '上街区', '410106'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2694, '河南省', '郑州市', '新密区', '410107'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2695, '河南省', '郑州市', '邙山区', '410108'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2696, '河南省', '郑州市', '金海区', '410111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2697, '河南省', '郑州市', '郊区', '410112'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2698, '河南省', '郑州市', '市区', '410120'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2699, '河南省', '郑州市', '荥阳县', '410121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2700, '河南省', '郑州市', '中牟县', '410122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2701, '河南省', '郑州市', '新郑县', '410123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2702, '河南省', '郑州市', '巩县', '410124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2703, '河南省', '郑州市', '登封县', '410125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2704, '河南省', '郑州市', '密县', '410126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2705, '河南省', '郑州市', '巩义市', '410181'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2706, '河南省', '郑州市', '荥阳市', '410182'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2707, '河南省', '郑州市', '新密市', '410183'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2708, '河南省', '郑州市', '新郑市', '410184'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2709, '河南省', '郑州市', '登封市', '410185'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2710, '河南省', '开封市', '市辖区', '410201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2711, '河南省', '开封市', '龙亭区', '410202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2712, '河南省', '开封市', '顺河回族区', '410203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2713, '河南省', '开封市', '鼓楼区', '410204'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2714, '河南省', '开封市', '禹王台区', '410205'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2715, '河南省', '开封市', '金明区', '410211'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2716, '河南省', '开封市', '杞县', '410221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2717, '河南省', '开封市', '通许县', '410222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2718, '河南省', '开封市', '尉氏县', '410223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2719, '河南省', '开封市', '开封县', '410224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2720, '河南省', '开封市', '兰考县', '410225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2721, '河南省', '洛阳市', '市辖区', '410301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2722, '河南省', '洛阳市', '老城区', '410302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2723, '河南省', '洛阳市', '西工区', '410303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2724, '河南省', '洛阳市', '廛河回族区', '410304'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2725, '河南省', '洛阳市', '涧西区', '410305'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2726, '河南省', '洛阳市', '吉利区', '410306'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2727, '河南省', '洛阳市', '洛龙区', '410307'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2728, '河南省', '洛阳市', '郊区', '410311'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2729, '河南省', '洛阳市', '偃师县', '410321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2730, '河南省', '洛阳市', '孟津县', '410322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2731, '河南省', '洛阳市', '新安县', '410323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2732, '河南省', '洛阳市', '栾川县', '410324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2733, '河南省', '洛阳市', '嵩县', '410325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2734, '河南省', '洛阳市', '汝阳县', '410326'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2735, '河南省', '洛阳市', '宜阳县', '410327'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2736, '河南省', '洛阳市', '洛宁县', '410328'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2737, '河南省', '洛阳市', '伊川县', '410329'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2738, '河南省', '洛阳市', '偃师市', '410381'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2739, '河南省', '平顶山市', '市辖区', '410401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2740, '河南省', '平顶山市', '新华区', '410402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2741, '河南省', '平顶山市', '卫东区', '410403'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2742, '河南省', '平顶山市', '石龙区', '410404'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2743, '河南省', '平顶山市', '湛河区', '410411'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2744, '河南省', '平顶山市', '舞钢区', '410412'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2745, '河南省', '平顶山市', '宝丰县', '410421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2746, '河南省', '平顶山市', '叶县', '410422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2747, '河南省', '平顶山市', '鲁山县', '410423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2748, '河南省', '平顶山市', '临汝县', '410424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2749, '河南省', '平顶山市', '郏县', '410425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2750, '河南省', '平顶山市', '襄城县', '410426'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2751, '河南省', '平顶山市', '舞钢市', '410481'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2752, '河南省', '平顶山市', '汝州市', '410482'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2753, '河南省', '安阳市', '市辖区', '410501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2754, '河南省', '安阳市', '文峰区', '410502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2755, '河南省', '安阳市', '北关区', '410503'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2756, '河南省', '安阳市', '铁西区', '410504'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2757, '河南省', '安阳市', '殷都区', '410505'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2758, '河南省', '安阳市', '龙安区', '410506'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2759, '河南省', '安阳市', '郊区', '410511'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2760, '河南省', '安阳市', '林县', '410521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2761, '河南省', '安阳市', '安阳县', '410522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2762, '河南省', '安阳市', '汤阴县', '410523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2763, '河南省', '安阳市', '淇县', '410524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2764, '河南省', '安阳市', '浚县', '410525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2765, '河南省', '安阳市', '滑县', '410526'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2766, '河南省', '安阳市', '内黄县', '410527'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2767, '河南省', '安阳市', '林州市', '410581'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2768, '河南省', '商丘市', '市辖区', '411401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2769, '河南省', '商丘市', '梁园区', '411402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2770, '河南省', '商丘市', '睢阳区', '411403'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2771, '河南省', '商丘市', '民权县', '411421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2772, '河南省', '商丘市', '睢县', '411422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2773, '河南省', '商丘市', '宁陵县', '411423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2774, '河南省', '商丘市', '柘城县', '411424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2775, '河南省', '商丘市', '虞城县', '411425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2776, '河南省', '商丘市', '夏邑县', '411426'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2777, '河南省', '商丘市', '永城市', '411481'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2778, '河南省', '信阳市', '市辖区', '411501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2779, '河南省', '信阳市', '师河区', '411502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2780, '河南省', '信阳市', '平桥区', '411503'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2781, '河南省', '信阳市', '罗山县', '411521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2782, '河南省', '信阳市', '光山县', '411522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2783, '河南省', '信阳市', '新县', '411523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2784, '河南省', '信阳市', '商城县', '411524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2785, '河南省', '信阳市', '固始县', '411525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2786, '河南省', '信阳市', '潢川县', '411526'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2787, '河南省', '信阳市', '淮滨县', '411527'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2788, '河南省', '信阳市', '息县', '411528'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2789, '河南省', '周口市', '市辖区', '411601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2790, '河南省', '周口市', '川汇区', '411602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2791, '河南省', '周口市', '扶沟县', '411621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2792, '河南省', '周口市', '西华县', '411622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2793, '河南省', '周口市', '商水县', '411623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2794, '河南省', '周口市', '沈丘县', '411624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2795, '河南省', '周口市', '郸城县', '411625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2796, '河南省', '周口市', '淮阳县', '411626'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2797, '河南省', '周口市', '太康县', '411627'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2798, '河南省', '周口市', '鹿邑县', '411628'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2799, '河南省', '周口市', '项城市', '411681'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2800, '河南省', '驻马店市', '市辖区', '411701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2801, '河南省', '驻马店市', '驿城区', '411702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2802, '河南省', '驻马店市', '西平县', '411721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2803, '河南省', '驻马店市', '上蔡县', '411722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2804, '河南省', '驻马店市', '平舆县', '411723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2805, '河南省', '驻马店市', '正阳县', '411724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2806, '河南省', '驻马店市', '确山县', '411725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2807, '河南省', '驻马店市', '泌阳县', '411726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2808, '河南省', '驻马店市', '汝南县', '411727'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2809, '河南省', '驻马店市', '遂平县', '411728'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2810, '河南省', '驻马店市', '新蔡县', '411729'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2811, '河南省', '商丘地区', '商丘市', '412301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2812, '河南省', '商丘地区', '永城市', '412302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2813, '河南省', '商丘地区', '虞城县', '412321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2814, '河南省', '商丘地区', '商丘县', '412322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2815, '河南省', '商丘地区', '民权县', '412323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2816, '河南省', '商丘地区', '宁陵县', '412324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2817, '河南省', '商丘地区', '睢县', '412325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2818, '河南省', '商丘地区', '夏邑县', '412326'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2819, '河南省', '商丘地区', '柘城县', '412327'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2820, '河南省', '商丘地区', '永城县', '412328'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2821, '河南省', '开封地区', '杞县', '412421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2822, '河南省', '开封地区', '通许县', '412422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2823, '河南省', '开封地区', '尉氏县', '412423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2824, '河南省', '开封地区', '开封县', '412424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2825, '河南省', '开封地区', '中牟县', '412425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2826, '河南省', '开封地区', '新郑县', '412426'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2827, '河南省', '开封地区', '巩县', '412427'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2828, '河南省', '开封地区', '登封县', '412428'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2829, '河南省', '开封地区', '密县', '412429'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2830, '河南省', '开封地区', '兰考县', '412430'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2831, '河南省', '三门峡市', '三门峡市', '412501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2832, '河南省', '三门峡市', '义马市', '412502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2833, '河南省', '三门峡市', '偃师县', '412521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2834, '河南省', '三门峡市', '孟津县', '412522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2835, '河南省', '三门峡市', '新安县', '412523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2836, '河南省', '三门峡市', '渑池县', '412524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2837, '河南省', '三门峡市', '陕县', '412525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2838, '河南省', '三门峡市', '灵宝县', '412526'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2839, '河南省', '三门峡市', '伊川县', '412527'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2840, '河南省', '三门峡市', '汝阳县', '412528'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2841, '河南省', '三门峡市', '嵩县', '412529'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2842, '河南省', '三门峡市', '洛宁县', '412530'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2843, '河南省', '三门峡市', '卢氏县', '412531'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2844, '河南省', '三门峡市', '栾川县', '412532'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2845, '河南省', '三门峡市', '临汝县', '412533'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2846, '河南省', '三门峡市', '宜阳县', '412534'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2847, '河南省', '周口地区', '周口市', '412701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2848, '河南省', '周口地区', '项城市', '412702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2849, '河南省', '周口地区', '扶沟县', '412721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2850, '河南省', '周口地区', '西华县', '412722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2851, '河南省', '周口地区', '商水县', '412723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2852, '河南省', '周口地区', '太康县', '412724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2853, '河南省', '周口地区', '鹿邑县', '412725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2854, '河南省', '周口地区', '郸城县', '412726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2855, '河南省', '周口地区', '淮阳县', '412727'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2856, '河南省', '周口地区', '沈丘县', '412728'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2857, '河南省', '驻马店地区', '驻马店市', '412801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2858, '河南省', '驻马店地区', '确山县', '412821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2859, '河南省', '驻马店地区', '泌阳县', '412822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2860, '河南省', '驻马店地区', '遂平县', '412823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2861, '河南省', '驻马店地区', '西平县', '412824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2862, '河南省', '驻马店地区', '上蔡县', '412825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2863, '河南省', '驻马店地区', '汝南县', '412826'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2864, '河南省', '驻马店地区', '平舆县', '412827'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2865, '河南省', '驻马店地区', '新蔡县', '412828'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2866, '河南省', '驻马店地区', '正阳县', '412829'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2867, '河南省', '南阳市', '卧龙区', '412901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2868, '河南省', '南阳市', '邓州市', '412902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2869, '河南省', '南阳市', '宛城区', '412903'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2870, '河南省', '南阳市', '南召县', '412921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2871, '河南省', '南阳市', '方城县', '412922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2872, '河南省', '南阳市', '西峡县', '412923'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2873, '河南省', '南阳市', '南阳县', '412924'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2874, '河南省', '南阳市', '镇平县', '412925'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2875, '河南省', '南阳市', '内乡县', '412926'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2876, '河南省', '南阳市', '淅川县', '412927'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2877, '河南省', '南阳市', '社旗县', '412928'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2878, '河南省', '南阳市', '唐河县', '412929'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2879, '河南省', '南阳市', '邓县', '412930'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2880, '河南省', '南阳市', '新野县', '412931'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2881, '河南省', '南阳市', '桐柏县', '412932'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2882, '河南省', '南阳市', '规划控制区', '412933'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2883, '河南省', '信阳地区', '信阳市', '413001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2884, '河南省', '信阳地区', '息县', '413021'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2885, '河南省', '信阳地区', '淮滨县', '413022'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2886, '河南省', '信阳地区', '平桥区', '413023'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2887, '河南省', '信阳地区', '潢川县', '413024'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2888, '河南省', '信阳地区', '光山县', '413025'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2889, '河南省', '信阳地区', '固始县', '413026'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2890, '河南省', '信阳地区', '商城县', '413027'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2891, '河南省', '信阳地区', '罗山县', '413028'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2892, '河南省', '信阳地区', '新县', '413029'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2893, '河南省', NULL, '许昌市', '412601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2894, '河南省', NULL, '漯河市', '412602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2895, '河南省', NULL, '长葛县', '412621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2896, '河南省', NULL, '禹县', '412622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2897, '河南省', NULL, '鄢陵县', '412623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2898, '河南省', NULL, '许昌县', '412624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2899, '河南省', NULL, '郏县', '412625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2900, '河南省', NULL, '临颍县', '412626'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2901, '河南省', NULL, '襄城县', '412627'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2902, '河南省', NULL, '宝丰县', '412628'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2903, '河南省', NULL, '郾城县', '412629'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2904, '河南省', NULL, '叶县', '412630'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2905, '河南省', NULL, '鲁山县', '412631'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2906, '河南省', NULL, '舞阳县', '412632'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2907, '河南省', NULL, '义马市', '419001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2908, '河南省', NULL, '汝州市', '419002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2909, '河南省', NULL, '济源市', '419003'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2910, '河南省', NULL, '禹州市', '419004'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2911, '河南省', NULL, '卫辉市', '419005'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2912, '河南省', NULL, '辉县市', '419006'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2913, '湖北省', '宜昌市', '市辖区', '420501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2914, '湖北省', '宜昌市', '西陵区', '420502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2915, '湖北省', '宜昌市', '伍家岗区', '420503'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2916, '湖北省', '宜昌市', '点军区', '420504'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2917, '湖北省', '宜昌市', '猇亭区', '420505'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2918, '湖北省', '宜昌市', '夷陵区', '420506'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2919, '湖北省', '宜昌市', '宜昌县', '420521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2920, '湖北省', '宜昌市', '枝江县', '420523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2921, '湖北省', '宜昌市', '远安县', '420525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2922, '湖北省', '宜昌市', '兴山县', '420526'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2923, '湖北省', '宜昌市', '秭归县', '420527'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2924, '湖北省', '宜昌市', '长阳土家族自治县', '420528'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2925, '湖北省', '宜昌市', '五峰土家族自治县', '420529'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2926, '湖北省', '宜昌市', '宜都市', '420581'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2927, '湖北省', '宜昌市', '当阳市', '420582'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2928, '湖北省', '宜昌市', '枝江市', '420583'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2929, '湖北省', '襄樊市', '市辖区', '420601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2930, '湖北省', '襄樊市', '襄城区', '420602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2931, '湖北省', '襄樊市', '樊东区', '420603'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2932, '湖北省', '襄樊市', '樊西区', '420604'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2933, '湖北省', '襄樊市', '郊区', '420605'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2934, '湖北省', '襄樊市', '樊城区', '420606'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2935, '湖北省', '襄樊市', '襄阳区', '420607'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2936, '湖北省', '襄樊市', '随州市', '420619'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2937, '湖北省', '襄樊市', '老河口市', '420620'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2938, '湖北省', '襄樊市', '襄阳县', '420621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2939, '湖北省', '襄樊市', '枣阳县', '420622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2940, '湖北省', '襄樊市', '宜城县', '420623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2941, '湖北省', '襄樊市', '南漳县', '420624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2942, '湖北省', '襄樊市', '谷城县', '420625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2943, '湖北省', '襄樊市', '保康县', '420626'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2944, '湖北省', '襄樊市', '随州市', '420681'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2945, '湖北省', '襄樊市', '老河口市', '420682'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2946, '湖北省', '襄樊市', '枣阳市', '420683'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2947, '湖北省', '襄樊市', '宜城市', '420684'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2948, '湖北省', '鄂州市', '市辖区', '420701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2949, '湖北省', '鄂州市', '梁子湖区', '420702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2950, '湖北省', '鄂州市', '华容区', '420703'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2951, '湖北省', '鄂州市', '鄂城区', '420704'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2952, '湖北省', '荆门市', '市辖区', '420801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2953, '湖北省', '荆门市', '东宝区', '420802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2954, '湖北省', '荆门市', '沙洋区', '420803'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2955, '湖北省', '荆门市', '掇刀区', '420804'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2956, '湖北省', '荆门市', '京山县', '420821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2957, '湖北省', '荆门市', '沙洋县', '420822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2958, '湖北省', '荆门市', '钟祥市', '420881'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2959, '湖北省', '孝感市', '市辖区', '420901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2960, '湖北省', '孝感市', '孝南区', '420902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2961, '湖北省', '孝感市', '孝昌县', '420921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2962, '湖北省', '孝感市', '大悟县', '420922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2963, '湖北省', '孝感市', '云梦县', '420923'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2964, '湖北省', '孝感市', '应城市', '420981'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2965, '湖北省', '孝感市', '安陆市', '420982'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2966, '湖北省', '孝感市', '广水市', '420983'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2967, '湖北省', '孝感市', '汉川市', '420984'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2968, '湖北省', '荆州市', '市辖区', '421001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2969, '湖北省', '荆州市', '沙市区', '421002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2970, '湖北省', '荆州市', '荆州区', '421003'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2971, '湖北省', '荆州市', '江陵区', '421004'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2972, '湖北省', '荆州市', '松滋县', '421021'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2973, '湖北省', '荆州市', '公安县', '421022'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2974, '湖北省', '荆州市', '监利县', '421023'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2975, '湖北省', '荆州市', '江陵县', '421024'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2976, '湖北省', '荆州市', '石首市', '421081'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2977, '湖北省', '荆州市', '洪湖市', '421083'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2978, '湖北省', '荆州市', '松滋市', '421087'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2979, '湖北省', '黄冈市', '市辖区', '421101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2980, '湖北省', '黄冈市', '黄州区', '421102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2981, '湖北省', '黄冈市', '龙感湖管理区', '421103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2982, '湖北省', '黄冈市', '团风县', '421121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2983, '湖北省', '黄冈市', '红安县', '421122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2984, '湖北省', '黄冈市', '罗田县', '421123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2985, '湖北省', '黄冈市', '英山县', '421124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2986, '湖北省', '黄冈市', '浠水县', '421125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2987, '湖北省', '黄冈市', '蕲春县', '421126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2988, '湖北省', '黄冈市', '黄梅县', '421127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2989, '湖北省', '黄冈市', '麻城市', '421181'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2990, '湖北省', '黄冈市', '武穴市', '421182'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2991, '湖北省', '咸宁市', '市辖区', '421201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2992, '湖北省', '咸宁市', '咸安区', '421202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2993, '湖北省', '咸宁市', '嘉鱼县', '421221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2994, '湖北省', '咸宁市', '通城县', '421222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2995, '湖北省', '咸宁市', '崇阳县', '421223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2996, '湖北省', '咸宁市', '通山县', '421224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2997, '湖北省', '咸宁市', '赤壁市', '421281'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2998, '湖北省', '随州市', '市辖区', '421301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (2999, '湖北省', '随州市', '曾都区', '421302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3000, '湖北省', '随州市', '广水市', '421381'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3001, '湖北省', '黄冈地区', '鄂州市', '422101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3002, '湖北省', '黄冈地区', '武穴市', '422102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3003, '湖北省', '黄冈地区', '黄州市', '422103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3004, '湖北省', '黄冈地区', '黄冈县', '422121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3005, '湖北省', '黄冈地区', '新洲县', '422122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3006, '湖北省', '黄冈地区', '红安县', '422123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3007, '湖北省', '黄冈地区', '麻城县', '422124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3008, '湖北省', '黄冈地区', '罗田县', '422125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3009, '湖北省', '黄冈地区', '英山县', '422126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3010, '湖北省', '黄冈地区', '浠水县', '422127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3011, '湖北省', '黄冈地区', '蕲春县', '422128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3012, '湖北省', '黄冈地区', '广济县', '422129'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3013, '湖北省', '黄冈地区', '黄梅县', '422130'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3014, '湖北省', '黄冈地区', '鄂城县', '422131'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3015, '湖北省', '孝感地区', '孝感市', '422201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3016, '湖北省', '孝感地区', '应城市', '422202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3017, '湖北省', '孝感地区', '安陆市', '422203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3018, '湖北省', '孝感地区', '广水市', '422204'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3019, '湖北省', '孝感地区', '孝感县', '422221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3020, '湖北省', '孝感地区', '黄陂县', '422222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3021, '湖北省', '孝感地区', '大悟县', '422223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3022, '湖北省', '孝感地区', '应山县', '422224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3023, '湖北省', '孝感地区', '安陆县', '422225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3024, '湖北省', '孝感地区', '云梦县', '422226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3025, '湖北省', '孝感地区', '应城县', '422227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3026, '湖北省', '孝感地区', '汉川县', '422228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3027, '湖北省', '省直辖行政单位', '神农架林区', '422921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3028, '湖北省', '省直辖行政单位', '随州市', '429001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3029, '湖北省', '省直辖行政单位', '枣阳市', '429003'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3030, '湖北省', '省直辖行政单位', '仙桃市', '429004'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3031, '湖北省', '省直辖行政单位', '潜江市', '429005'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3032, '湖北省', '省直辖行政单位', '天门市', '429006'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3033, '湖北省', '省直辖行政单位', '神农架林区', '429021'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3034, '湖北省', '武汉市', '市辖区', '420101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3035, '湖北省', '武汉市', '江岸区', '420102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3036, '湖北省', '武汉市', '江汉区', '420103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3037, '湖北省', '武汉市', '乔口区', '420104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3038, '湖北省', '武汉市', '汉阳区', '420105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3039, '湖北省', '武汉市', '武昌区', '420106'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3040, '湖北省', '武汉市', '青山区', '420107'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3041, '湖北省', '武汉市', '东湖管理分局', '420109'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3042, '湖北省', '武汉市', '洪山区', '420111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3043, '湖北省', '武汉市', '东西湖区', '420112'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3044, '湖北省', '武汉市', '汉南区', '420113'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3045, '湖北省', '武汉市', '蔡甸区', '420114'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3046, '湖北省', '武汉市', '江夏区', '420115'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3047, '湖北省', '武汉市', '黄陂区', '420116'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3048, '湖北省', '武汉市', '新洲区', '420117'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3049, '湖北省', '武汉市', '蔡甸区', '420121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3050, '湖北省', '武汉市', '江夏区', '420122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3051, '湖北省', '武汉市', '黄陂区', '420123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3052, '湖北省', '武汉市', '新洲县', '420124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3053, '湖北省', '黄石市', '市辖区', '420201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3054, '湖北省', '黄石市', '黄石港区', '420202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3055, '湖北省', '黄石市', '石灰窑区', '420203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3056, '湖北省', '黄石市', '下陆区', '420204'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3057, '湖北省', '黄石市', '铁山区', '420205'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3058, '湖北省', '黄石市', '市区', '420220'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3059, '湖北省', '黄石市', '大冶县', '420221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3060, '湖北省', '黄石市', '阳新县', '420222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3061, '湖北省', '黄石市', '大冶市', '420281'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3062, '湖北省', '十堰市', '市辖区', '420301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3063, '湖北省', '十堰市', '茅箭区', '420302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3064, '湖北省', '十堰市', '张湾区', '420303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3065, '湖北省', '十堰市', '郧县', '420321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3066, '湖北省', '十堰市', '郧西县', '420322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3067, '湖北省', '十堰市', '竹山县', '420323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3068, '湖北省', '十堰市', '竹溪县', '420324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3069, '湖北省', '十堰市', '房县', '420325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3070, '湖北省', '十堰市', '丹江口市', '420381'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3071, '湖北省', '咸宁地区', '咸宁市', '422301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3072, '湖北省', '咸宁地区', '赤壁市', '422302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3073, '湖北省', '咸宁地区', '咸宁县', '422321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3074, '湖北省', '咸宁地区', '嘉鱼县', '422322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3075, '湖北省', '咸宁地区', '蒲圻县', '422323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3076, '湖北省', '咸宁地区', '通城县', '422324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3077, '湖北省', '咸宁地区', '崇阳县', '422325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3078, '湖北省', '咸宁地区', '通山县', '422326'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3079, '湖北省', '咸宁地区', '阳新县', '422327'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3080, '湖北省', '荆州地区', '仙桃市', '422401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3081, '湖北省', '荆州地区', '石首市', '422402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3082, '湖北省', '荆州地区', '洪湖市', '422403'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3083, '湖北省', '荆州地区', '天门市', '422404'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3084, '湖北省', '荆州地区', '潜江市', '422405'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3085, '湖北省', '荆州地区', '钟祥市', '422406'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3086, '湖北省', '荆州地区', '江陵县', '422421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3087, '湖北省', '荆州地区', '松滋县', '422422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3088, '湖北省', '荆州地区', '公安县', '422423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3089, '湖北省', '荆州地区', '石首县', '422424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3090, '湖北省', '荆州地区', '监利县', '422425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3091, '湖北省', '荆州地区', '洪湖县', '422426'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3092, '湖北省', '荆州地区', '沔阳县', '422427'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3093, '湖北省', '荆州地区', '天门县', '422428'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3094, '湖北省', '荆州地区', '潜江县', '422429'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3095, '湖北省', '荆州地区', '荆门县', '422430'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3096, '湖北省', '荆州地区', '钟祥县', '422431'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3097, '湖北省', '荆州地区', '京山县', '422432'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3098, '湖北省', '随州地区', '随州市', '422501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3099, '湖北省', '随州地区', '老河口市', '422502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3100, '湖北省', '随州地区', '襄阳县', '422521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3101, '湖北省', '随州地区', '枣阳县', '422522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3102, '湖北省', '随州地区', '宜城县', '422524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3103, '湖北省', '随州地区', '南漳县', '422525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3104, '湖北省', '随州地区', '谷城县', '422527'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3105, '湖北省', '随州地区', '保康县', '422528'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3106, '湖北省', '郧阳地区', '丹江口市', '422601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3107, '湖北省', '郧阳地区', '郧县', '422622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3108, '湖北省', '郧阳地区', '郧西县', '422623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3109, '湖北省', '郧阳地区', '竹山县', '422624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3110, '湖北省', '郧阳地区', '竹溪县', '422625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3111, '湖北省', '郧阳地区', '房县', '422626'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3112, '湖北省', '郧阳地区', '神农架林区', '422627'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3113, '湖北省', '宜昌地区', '枝城市', '422701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3114, '湖北省', '宜昌地区', '当阳市', '422702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3115, '湖北省', '宜昌地区', '宜昌县', '422721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3116, '湖北省', '宜昌地区', '宜都县', '422722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3117, '湖北省', '宜昌地区', '枝江县', '422723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3118, '湖北省', '宜昌地区', '当阳县', '422724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3119, '湖北省', '宜昌地区', '远安县', '422725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3120, '湖北省', '宜昌地区', '兴山县', '422726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3121, '湖北省', '宜昌地区', '秭归县', '422727'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3122, '湖北省', '宜昌地区', '长阳土家族自治县', '422728'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3123, '湖北省', '宜昌地区', '五峰土家族自治县', '422729'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3124, '湖北省', '恩施土家族苗族自治州', '恩施市', '422801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3125, '湖北省', '恩施土家族苗族自治州', '利川市', '422802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3126, '湖北省', '恩施土家族苗族自治州', '建始县', '422822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3127, '湖北省', '恩施土家族苗族自治州', '巴东县', '422823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3128, '湖北省', '恩施土家族苗族自治州', '宣恩县', '422825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3129, '湖北省', '恩施土家族苗族自治州', '咸丰县', '422826'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3130, '湖北省', '恩施土家族苗族自治州', '来凤县', '422827'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3131, '湖北省', '恩施土家族苗族自治州', '鹤峰县', '422828'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3132, '湖北省', NULL, '沙市', '420400'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3133, '湖北省', NULL, '沙洋监狱管理局', '423022'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3134, '湖南省', '长沙市', '市辖区', '430101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3135, '湖南省', '长沙市', '芙蓉区', '430102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3136, '湖南省', '长沙市', '天心区', '430103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3137, '湖南省', '长沙市', '岳麓区', '430104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3138, '湖南省', '长沙市', '开福区', '430105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3139, '湖南省', '长沙市', '雨花区', '430111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3140, '湖南省', '长沙市', '市区', '430120'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3141, '湖南省', '长沙市', '长沙县', '430121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3142, '湖南省', '长沙市', '望城县', '430122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3143, '湖南省', '长沙市', '浏阳县', '430123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3144, '湖南省', '长沙市', '宁乡县', '430124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3145, '湖南省', '长沙市', '浏阳市', '430181'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3146, '湖南省', '株洲市', '市辖区', '430201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3147, '湖南省', '株洲市', '荷塘区', '430202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3148, '湖南省', '株洲市', '芦淞区', '430203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3149, '湖南省', '株洲市', '石峰区', '430204'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3150, '湖南省', '株洲市', '天元区', '430211'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3151, '湖南省', '株洲市', '醴陵市', '430219'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3152, '湖南省', '株洲市', '市区', '430220'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3153, '湖南省', '株洲市', '株洲县', '430221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3154, '湖南省', '株洲市', '醴陵县', '430222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3155, '湖南省', '株洲市', '攸县', '430223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3156, '湖南省', '株洲市', '茶陵县', '430224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3157, '湖南省', '株洲市', '炎陵县', '430225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3158, '湖南省', '株洲市', '醴陵市', '430281'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3159, '湖南省', '湘潭市', '市辖区', '430301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3160, '湖南省', '湘潭市', '雨湖区', '430302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3161, '湖南省', '湘潭市', '湘江区', '430303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3162, '湖南省', '湘潭市', '岳塘区', '430304'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3163, '湖南省', '湘潭市', '板塘区', '430305'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3164, '湖南省', '湘潭市', '韶山区', '430306'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3165, '湖南省', '湘潭市', '郊区', '430311'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3166, '湖南省', '湘潭市', '韶山区', '430312'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3167, '湖南省', '湘潭市', '湘潭县', '430321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3168, '湖南省', '湘潭市', '湘乡县', '430322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3169, '湖南省', '湘潭市', '湘乡市', '430381'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3170, '湖南省', '湘潭市', '韶山市', '430382'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3171, '湖南省', '衡阳市', '市辖区', '430401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3172, '湖南省', '衡阳市', '江东区', '430402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3173, '湖南省', '衡阳市', '城南区', '430403'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3174, '湖南省', '衡阳市', '城北区', '430404'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3175, '湖南省', '衡阳市', '珠晖区', '430405'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3176, '湖南省', '衡阳市', '雁峰区', '430406'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3177, '湖南省', '衡阳市', '石鼓区', '430407'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3178, '湖南省', '衡阳市', '蒸湘区', '430408'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3179, '湖南省', '衡阳市', '郊区', '430411'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3180, '湖南省', '衡阳市', '南岳区', '430412'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3181, '湖南省', '衡阳市', '耒阳市', '430419'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3182, '湖南省', '衡阳市', '衡阳县', '430421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3183, '湖南省', '衡阳市', '衡南县', '430422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3184, '湖南省', '衡阳市', '衡山县', '430423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3185, '湖南省', '衡阳市', '衡东县', '430424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3186, '湖南省', '衡阳市', '常宁县', '430425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3187, '湖南省', '衡阳市', '祁东县', '430426'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3188, '湖南省', '衡阳市', '耒阳县', '430427'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3189, '湖南省', '衡阳市', '耒阳市', '430481'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3190, '湖南省', '衡阳市', '常宁市', '430482'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3191, '湖南省', '湘潭地区', '湘潭县', '432121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3192, '湖南省', '湘潭地区', '湘乡县', '432122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3193, '湖南省', '湘潭地区', '醴陵县', '432123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3194, '湖南省', '湘潭地区', '浏阳县', '432124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3195, '湖南省', '湘潭地区', '攸县', '432125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3196, '湖南省', '湘潭地区', '茶陵县', '432126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3197, '湖南省', '湘潭地区', '酃县', '432127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3198, '湖南省', '岳阳地区', '岳阳市', '432201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3199, '湖南省', '岳阳地区', '平江县', '432222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3200, '湖南省', '岳阳地区', '湘阴县', '432223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3201, '湖南省', '岳阳地区', '汨罗县', '432224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3202, '湖南省', '岳阳地区', '临湘市', '432225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3203, '湖南省', '岳阳地区', '华容县', '432226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3204, '湖南省', '益阳地区', '益阳市', '432301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3205, '湖南省', '益阳地区', '沅江市', '432302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3206, '湖南省', '益阳地区', '益阳县', '432321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3207, '湖南省', '益阳地区', '南县', '432322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3208, '湖南省', '益阳地区', '沅江县', '432323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3209, '湖南省', '益阳地区', '宁乡县', '432324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3210, '湖南省', '益阳地区', '桃江县', '432325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3211, '湖南省', '益阳地区', '安化县', '432326'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3212, '湖南省', '常德地区', '常德市', '432401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3213, '湖南省', '常德地区', '津市市', '432402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3214, '湖南省', '常德地区', '常德县', '432421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3215, '湖南省', '常德地区', '安乡县', '432422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3216, '湖南省', '常德地区', '汉寿县', '432423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3217, '湖南省', '常德地区', '澧县', '432424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3218, '湖南省', '常德地区', '临澧县', '432425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3219, '湖南省', '常德地区', '桃源县', '432426'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3220, '湖南省', '常德地区', '石门县', '432427'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3221, '湖南省', '常德地区', '慈利县', '432428'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3222, '湖南省', '娄底地区', '娄底市', '432501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3223, '湖南省', '娄底地区', '冷水江市', '432502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3224, '湖南省', '娄底地区', '涟源市', '432503'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3225, '湖南省', '娄底地区', '涟源县', '432521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3226, '湖南省', '娄底地区', '双峰县', '432522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3227, '湖南省', '娄底地区', '邵东县', '432523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3228, '湖南省', '娄底地区', '新化县', '432524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3229, '湖南省', '娄底地区', '新邵县', '432525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3230, '湖南省', '邵阳地区', '邵阳县', '432621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3231, '湖南省', '邵阳地区', '隆回县', '432622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3232, '湖南省', '邵阳地区', '武冈县', '432623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3233, '湖南省', '邵阳地区', '洞口县', '432624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3234, '湖南省', '邵阳地区', '新宁县', '432625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3235, '湖南省', '邵阳地区', '绥宁县', '432626'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3236, '湖南省', '邵阳地区', '城步苗族自治县', '432627'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3237, '湖南省', '衡阳地区', '衡阳县', '432721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3238, '湖南省', '衡阳地区', '衡南县', '432722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3239, '湖南省', '衡阳地区', '衡山县', '432723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3240, '湖南省', '衡阳地区', '衡东县', '432724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3241, '湖南省', '衡阳地区', '常宁县', '432725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3242, '湖南省', '衡阳地区', '祁东县', '432726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3243, '湖南省', '衡阳地区', '祁阳县', '432727'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3244, '湖南省', '郴州地区', '郴州市', '432801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3245, '湖南省', '郴州地区', '资兴市', '432802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3246, '湖南省', '郴州地区', '郴县', '432821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3247, '湖南省', '郴州地区', '桂阳县', '432822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3248, '湖南省', '郴州地区', '永兴县', '432823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3249, '湖南省', '郴州地区', '宜章县', '432824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3250, '湖南省', '郴州地区', '资兴县', '432825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3251, '湖南省', '郴州地区', '嘉禾县', '432826'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3252, '湖南省', '郴州地区', '临武县', '432827'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3253, '湖南省', '郴州地区', '汝城县', '432828'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3254, '湖南省', '郴州地区', '桂东县', '432829'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3255, '湖南省', '郴州地区', '耒阳县', '432830'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3256, '湖南省', '郴州地区', '安仁县', '432831'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3257, '湖南省', '零陵地区', '永州市', '432901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3258, '湖南省', '零陵地区', '冷水滩市', '432902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3259, '湖南省', '零陵地区', '零陵县', '432921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3260, '湖南省', '零陵地区', '东安县', '432922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3261, '湖南省', '零陵地区', '道县', '432923'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3262, '湖南省', '零陵地区', '宁远县', '432924'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3263, '湖南省', '零陵地区', '江永县', '432925'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3264, '湖南省', '零陵地区', '江华瑶族自治县', '432926'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3265, '湖南省', '零陵地区', '蓝山县', '432927'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3266, '湖南省', '零陵地区', '新田县', '432928'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3267, '湖南省', '零陵地区', '双牌县', '432929'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3268, '湖南省', '零陵地区', '双牌县', '432930'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3269, '湖南省', '邵阳市', '市辖区', '430501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3270, '湖南省', '邵阳市', '双清区', '430502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3271, '湖南省', '邵阳市', '大祥区', '430503'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3272, '湖南省', '邵阳市', '北塔区', '430511'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3273, '湖南省', '邵阳市', '邵东县', '430521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3274, '湖南省', '邵阳市', '新邵县', '430522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3275, '湖南省', '邵阳市', '邵阳县', '430523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3276, '湖南省', '邵阳市', '隆回县', '430524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3277, '湖南省', '邵阳市', '洞口县', '430525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3278, '湖南省', '邵阳市', '武冈县', '430526'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3279, '湖南省', '邵阳市', '绥宁县', '430527'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3280, '湖南省', '邵阳市', '新宁县', '430528'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3281, '湖南省', '邵阳市', '城步苗族自治县', '430529'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3282, '湖南省', '邵阳市', '武冈市', '430581'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3283, '湖南省', '岳阳市', '市辖区', '430601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3284, '湖南省', '岳阳市', '岳阳楼区', '430602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3285, '湖南省', '岳阳市', '云溪区', '430603'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3286, '湖南省', '岳阳市', '君山区', '430611'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3287, '湖南省', '岳阳市', '岳阳县', '430621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3288, '湖南省', '岳阳市', '临湘县', '430622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3289, '湖南省', '岳阳市', '华容县', '430623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3290, '湖南省', '岳阳市', '湘阴县', '430624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3291, '湖南省', '岳阳市', '汨罗县', '430625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3292, '湖南省', '岳阳市', '平江县', '430626'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3293, '湖南省', '岳阳市', '汨罗市', '430681'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3294, '湖南省', '岳阳市', '临湘市', '430682'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3295, '湖南省', '常德市', '市辖区', '430701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3296, '湖南省', '常德市', '武陵区', '430702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3297, '湖南省', '常德市', '鼎城区', '430703'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3298, '湖南省', '常德市', '安乡县', '430721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3299, '湖南省', '常德市', '汉寿县', '430722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3300, '湖南省', '常德市', '澧县', '430723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3301, '湖南省', '常德市', '临澧县', '430724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3302, '湖南省', '常德市', '桃源县', '430725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3303, '湖南省', '常德市', '石门县', '430726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3304, '湖南省', '常德市', '津市市', '430781'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3305, '湖南省', '张家界市', '市辖区', '430801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3306, '湖南省', '张家界市', '永定区', '430802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3307, '湖南省', '张家界市', '武陵源区', '430811'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3308, '湖南省', '张家界市', '慈利县', '430821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3309, '湖南省', '张家界市', '桑植县', '430822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3310, '湖南省', '益阳市', '市辖区', '430901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3311, '湖南省', '益阳市', '资阳区', '430902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3312, '湖南省', '益阳市', '赫山区', '430903'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3313, '湖南省', '益阳市', '市区', '430911'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3314, '湖南省', '益阳市', '南县', '430921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3315, '湖南省', '益阳市', '桃江县', '430922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3316, '湖南省', '益阳市', '安化县', '430923'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3317, '湖南省', '益阳市', '沅江市', '430981'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3318, '湖南省', '郴州市', '市辖区', '431001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3319, '湖南省', '郴州市', '北湖区', '431002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3320, '湖南省', '郴州市', '苏仙区', '431003'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3321, '湖南省', '郴州市', '桂阳县', '431021'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3322, '湖南省', '郴州市', '宜章县', '431022'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3323, '湖南省', '郴州市', '永兴县', '431023'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3324, '湖南省', '郴州市', '嘉禾县', '431024'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3325, '湖南省', '郴州市', '临武县', '431025'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3326, '湖南省', '郴州市', '汝城县', '431026'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3327, '湖南省', '郴州市', '桂东县', '431027'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3328, '湖南省', '郴州市', '安仁县', '431028'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3329, '湖南省', '郴州市', '资兴市', '431081'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3330, '湖南省', '永州市', '市辖区', '431101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3331, '湖南省', '永州市', '零陵区', '431102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3332, '湖南省', '永州市', '冷水滩区', '431103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3333, '湖南省', '永州市', '祁阳县', '431121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3334, '湖南省', '永州市', '东安县', '431122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3335, '湖南省', '永州市', '双牌县', '431123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3336, '湖南省', '永州市', '道县', '431124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3337, '湖南省', '永州市', '江永县', '431125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3338, '湖南省', '永州市', '宁远县', '431126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3339, '湖南省', '永州市', '蓝山县', '431127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3340, '湖南省', '永州市', '新田县', '431128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3341, '湖南省', '永州市', '江华瑶族自治县', '431129'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3342, '湖南省', '怀化市', '市辖区', '431201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3343, '湖南省', '怀化市', '鹤城区', '431202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3344, '湖南省', '怀化市', '中方县', '431221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3345, '湖南省', '怀化市', '沅陵县', '431222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3346, '湖南省', '怀化市', '辰溪县', '431223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3347, '湖南省', '怀化市', '溆浦县', '431224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3348, '湖南省', '怀化市', '会同县', '431225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3349, '湖南省', '怀化市', '麻阳苗族自治县', '431226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3350, '湖南省', '怀化市', '新晃侗族自治县', '431227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3351, '湖南省', '怀化市', '芷江侗族自治县', '431228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3352, '湖南省', '怀化市', '靖州苗族侗族自治县', '431229'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3353, '湖南省', '怀化市', '通道侗族自治县', '431230'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3354, '湖南省', '怀化市', '洪江市', '431281'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3355, '湖南省', '娄底市', '市辖区', '431301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3356, '湖南省', '娄底市', '娄星区', '431302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3357, '湖南省', '娄底市', '双峰县', '431321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3358, '湖南省', '娄底市', '新化县', '431322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3359, '湖南省', '娄底市', '冷水江市', '431381'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3360, '湖南省', '娄底市', '涟源市', '431382'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3361, '湖南省', '怀化地区', '怀化市', '433001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3362, '湖南省', '怀化地区', '洪江市', '433002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3363, '湖南省', '怀化地区', '黔阳县', '433021'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3364, '湖南省', '怀化地区', '沅陵县', '433022'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3365, '湖南省', '怀化地区', '辰溪县', '433023'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3366, '湖南省', '怀化地区', '溆浦县', '433024'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3367, '湖南省', '怀化地区', '麻阳县', '433025'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3368, '湖南省', '怀化地区', '新晃侗族自治县', '433026'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3369, '湖南省', '怀化地区', '芷江县', '433027'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3370, '湖南省', '怀化地区', '怀化县', '433028'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3371, '湖南省', '怀化地区', '会同县', '433029'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3372, '湖南省', '怀化地区', '靖县', '433030'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3373, '湖南省', '怀化地区', '通道侗族自治县', '433031'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3374, '湖南省', '湘西土家族苗族自治州', '吉首市', '433101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3375, '湖南省', '湘西土家族苗族自治州', '吉首县', '433121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3376, '湖南省', '湘西土家族苗族自治州', '泸溪县', '433122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3377, '湖南省', '湘西土家族苗族自治州', '凤凰县', '433123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3378, '湖南省', '湘西土家族苗族自治州', '花垣县', '433124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3379, '湖南省', '湘西土家族苗族自治州', '保靖县', '433125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3380, '湖南省', '湘西土家族苗族自治州', '古丈县', '433126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3381, '湖南省', '湘西土家族苗族自治州', '永顺县', '433127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3382, '湖南省', '湘西土家族苗族自治州', '大庸县', '433128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3383, '湖南省', '湘西土家族苗族自治州', '桑植县', '433129'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3384, '湖南省', '湘西土家族苗族自治州', '龙山县', '433130'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3385, '湖南省', NULL, '醴陵市', '439001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3386, '湖南省', NULL, '湘乡市', '439002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3387, '湖南省', NULL, '耒阳市', '439003'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3388, '湖南省', NULL, '汨罗市', '439004'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3389, '湖南省', NULL, '津市市', '439005'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3390, '广东省', '广州市', '市辖区', '440101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3391, '广东省', '广州市', '东山区', '440102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3392, '广东省', '广州市', '荔湾区', '440103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3393, '广东省', '广州市', '越秀区', '440104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3394, '广东省', '广州市', '海珠区', '440105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3395, '广东省', '广州市', '天河区', '440106'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3396, '广东省', '广州市', '芳村区', '440107'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3397, '广东省', '广州市', '白云区', '440111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3398, '广东省', '广州市', '黄埔区', '440112'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3399, '广东省', '广州市', '番禺区', '440113'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3400, '广东省', '广州市', '花都区', '440114'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3401, '广东省', '广州市', '南沙区', '440115'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3402, '广东省', '广州市', '萝岗区', '440116'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3403, '广东省', '广州市', '市区', '440120'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3404, '广东省', '广州市', '花县', '440121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3405, '广东省', '广州市', '从化县', '440122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3406, '广东省', '广州市', '新丰县', '440123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3407, '广东省', '广州市', '龙门县', '440124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3408, '广东省', '广州市', '增城县', '440125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3409, '广东省', '广州市', '番禺县', '440126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3410, '广东省', '广州市', '清远县', '440127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3411, '广东省', '广州市', '佛冈县', '440128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3412, '广东省', '广州市', '番禺市', '440181'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3413, '广东省', '广州市', '花都市', '440182'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3414, '广东省', '广州市', '增城市', '440183'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3415, '广东省', '广州市', '从化市', '440184'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3416, '广东省', '韶关市', '市辖区', '440201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3417, '广东省', '韶关市', '北江区', '440202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3418, '广东省', '韶关市', '武江区', '440203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3419, '广东省', '韶关市', '浈江区', '440204'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3420, '广东省', '韶关市', '曲江区', '440205'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3421, '广东省', '韶关市', '曲江县', '440221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3422, '广东省', '韶关市', '始兴县', '440222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3423, '广东省', '韶关市', '南雄县', '440223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3424, '广东省', '韶关市', '仁化县', '440224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3425, '广东省', '韶关市', '乐昌县', '440225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3426, '广东省', '韶关市', '连县', '440226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3427, '广东省', '韶关市', '阳山县', '440227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3428, '广东省', '韶关市', '英德县', '440228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3429, '广东省', '韶关市', '翁源县', '440229'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3430, '广东省', '韶关市', '连山壮族瑶族自治县', '440230'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3431, '广东省', '韶关市', '连南瑶族自治县', '440231'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3432, '广东省', '韶关市', '乳源瑶族自治县', '440232'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3433, '广东省', '韶关市', '新丰县', '440233'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3434, '广东省', '韶关市', '乐昌市', '440281'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3435, '广东省', '韶关市', '南雄市', '440282'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3436, '广东省', '深圳市', '市辖区', '440301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3437, '广东省', '深圳市', '盐田区', '440302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3438, '广东省', '深圳市', '罗湖区', '440303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3439, '广东省', '深圳市', '福田区', '440304'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3440, '广东省', '深圳市', '南山区', '440305'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3441, '广东省', '深圳市', '宝安区', '440306'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3442, '广东省', '深圳市', '龙岗区', '440307'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3443, '广东省', '深圳市', '盐田区', '440308'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3444, '广东省', '深圳市', '市区', '440320'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3445, '广东省', '深圳市', '宝安县', '440321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3446, '广东省', '珠海市', '市辖区', '440401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3447, '广东省', '珠海市', '香洲区', '440402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3448, '广东省', '珠海市', '斗门区', '440403'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3449, '广东省', '珠海市', '金湾区', '440404'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3450, '广东省', '珠海市', '斗门县', '440421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3451, '广东省', '汕头市', '市辖区', '440501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3452, '广东省', '汕头市', '同平区', '440502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3453, '广东省', '汕头市', '安平区', '440503'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3454, '广东省', '汕头市', '公园区', '440504'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3455, '广东省', '汕头市', '金砂区', '440505'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3456, '广东省', '汕头市', '达濠区', '440506'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3457, '广东省', '汕头市', '龙湖区', '440507'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3458, '广东省', '汕头市', '金园区', '440508'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3459, '广东省', '汕头市', '升平区', '440509'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3460, '广东省', '汕头市', '河浦区', '440510'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3461, '广东省', '汕头市', '金平区', '440511'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3462, '广东省', '汕头市', '濠江区', '440512'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3463, '广东省', '汕头市', '潮阳区', '440513'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3464, '广东省', '汕头市', '潮南区', '440514'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3465, '广东省', '汕头市', '澄海区', '440515'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3466, '广东省', '汕头市', '潮州市', '440520'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3467, '广东省', '汕头市', '澄海县', '440521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3468, '广东省', '汕头市', '饶平县', '440522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3469, '广东省', '汕头市', '南澳县', '440523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3470, '广东省', '汕头市', '潮阳县', '440524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3471, '广东省', '汕头市', '揭阳县', '440525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3472, '广东省', '汕头市', '揭西县', '440526'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3473, '广东省', '汕头市', '普宁县', '440527'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3474, '广东省', '汕头市', '惠来县', '440528'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3475, '广东省', '汕头市', '潮州市', '440581'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3476, '广东省', '汕头市', '潮阳市', '440582'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3477, '广东省', '汕头市', '澄海市', '440583'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3478, '广东省', '佛山市', '市辖区', '440601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3479, '广东省', '佛山市', '城区', '440602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3480, '广东省', '佛山市', '石湾区', '440603'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3481, '广东省', '佛山市', '禅城区', '440604'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3482, '广东省', '佛山市', '南海区', '440605'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3483, '广东省', '佛山市', '顺德区', '440606'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3484, '广东省', '佛山市', '三水区', '440607'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3485, '广东省', '佛山市', '高明区', '440608'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3486, '广东省', '佛山市', '中山市', '440620'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3487, '广东省', '佛山市', '三水县', '440621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3488, '广东省', '佛山市', '南海县', '440622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3489, '广东省', '佛山市', '顺德县', '440623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3490, '广东省', '佛山市', '高明县', '440624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3491, '广东省', '佛山市', '顺德市', '440681'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3492, '广东省', '佛山市', '南海市', '440682'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3493, '广东省', '佛山市', '三水市', '440683'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3494, '广东省', '佛山市', '高明市', '440684'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3495, '广东省', '江门市', '市辖区', '440701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3496, '广东省', '江门市', '城区', '440702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3497, '广东省', '江门市', '蓬江区', '440703'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3498, '广东省', '江门市', '江海区', '440704'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3499, '广东省', '江门市', '新会区', '440705'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3500, '广东省', '江门市', '郊区', '440711'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3501, '广东省', '江门市', '新会县', '440721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3502, '广东省', '江门市', '台山县', '440722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3503, '广东省', '江门市', '恩平县', '440723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3504, '广东省', '江门市', '开平县', '440724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3505, '广东省', '江门市', '鹤山县', '440725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3506, '广东省', '江门市', '阳江县', '440726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3507, '广东省', '江门市', '阳春县', '440727'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3508, '广东省', '江门市', '台山市', '440781'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3509, '广东省', '江门市', '新会市', '440782'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3510, '广东省', '江门市', '开平市', '440783'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3511, '广东省', '江门市', '鹤山市', '440784'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3512, '广东省', '江门市', '恩平市', '440785'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3513, '广东省', '清远市', '连州市', '441882'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3514, '广东省', '清远市', '市辖区', '441801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3515, '广东省', '清远市', '清城区', '441802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3516, '广东省', '清远市', '清郊区', '441811'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3517, '广东省', '清远市', '佛冈县', '441821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3518, '广东省', '清远市', '英德县', '441822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3519, '广东省', '清远市', '阳山县', '441823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3520, '广东省', '清远市', '连县', '441824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3521, '广东省', '清远市', '连山壮族瑶族自治县', '441825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3522, '广东省', '清远市', '连南瑶族自治县', '441826'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3523, '广东省', '清远市', '清新县', '441827'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3524, '广东省', '清远市', '英德市', '441881'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3525, '广东省', '佛山市', '佛山市', '442701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3526, '广东省', '佛山市', '江门市', '442702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3527, '广东省', '佛山市', '三水县', '442721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3528, '广东省', '佛山市', '南海县', '442722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3529, '广东省', '佛山市', '顺德县', '442723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3530, '广东省', '佛山市', '中山县', '442724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3531, '广东省', '佛山市', '斗门县', '442725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3532, '广东省', '佛山市', '新会县', '442726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3533, '广东省', '佛山市', '台山县', '442727'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3534, '广东省', '佛山市', '恩平县', '442728'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3535, '广东省', '佛山市', '开平县', '442729'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3536, '广东省', '佛山市', '鹤山县', '442731'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3537, '广东省', '佛山市', '高明县', '442732'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3538, '广东省', '湛江市', '湛江市', '442901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3539, '广东省', '湛江市', '茂名市', '442902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3540, '广东省', '湛江市', '阳江县', '442921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3541, '广东省', '湛江市', '阳春县', '442922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3542, '广东省', '湛江市', '信宜县', '442923'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3543, '广东省', '湛江市', '高州县', '442924'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3544, '广东省', '湛江市', '电白县', '442925'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3545, '广东省', '湛江市', '吴川县', '442926'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3546, '广东省', '湛江市', '化州县', '442927'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3547, '广东省', '湛江市', '廉江县', '442928'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3548, '广东省', '湛江市', '遂溪县', '442929'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3549, '广东省', '湛江市', '海康县', '442930'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3550, '广东省', '湛江市', '徐闻县', '442931'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3551, '广东省', '潮州市', '市辖区', '445101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3552, '广东省', '潮州市', '湘桥区', '445102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3553, '广东省', '潮州市', '潮安县', '445121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3554, '广东省', '潮州市', '饶平县', '445122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3555, '广东省', '揭阳市', '市辖区', '445201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3556, '广东省', '揭阳市', '榕城区', '445202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3557, '广东省', '揭阳市', '揭东县', '445221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3558, '广东省', '揭阳市', '揭西县', '445222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3559, '广东省', '揭阳市', '惠来县', '445224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3560, '广东省', '揭阳市', '普宁市', '445281'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3561, '广东省', '湛江市', '市辖区', '440801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3562, '广东省', '湛江市', '赤坎区', '440802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3563, '广东省', '湛江市', '霞山区', '440803'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3564, '广东省', '湛江市', '坡头区', '440804'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3565, '广东省', '湛江市', '麻章区', '440811'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3566, '广东省', '湛江市', '吴川县', '440821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3567, '广东省', '湛江市', '廉江县', '440822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3568, '广东省', '湛江市', '遂溪县', '440823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3569, '广东省', '湛江市', '海康县', '440824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3570, '广东省', '湛江市', '徐闻县', '440825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3571, '广东省', '湛江市', '廉江市', '440881'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3572, '广东省', '湛江市', '雷州市', '440882'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3573, '广东省', '湛江市', '吴川市', '440883'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3574, '广东省', '茂名市', '市辖区', '440901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3575, '广东省', '茂名市', '茂南区', '440902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3576, '广东省', '茂名市', '茂港区', '440903'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3577, '广东省', '茂名市', '信宜县', '440921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3578, '广东省', '茂名市', '高州县', '440922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3579, '广东省', '茂名市', '电白县', '440923'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3580, '广东省', '茂名市', '化州县', '440924'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3581, '广东省', '茂名市', '高州市', '440981'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3582, '广东省', '茂名市', '化州市', '440982'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3583, '广东省', '茂名市', '信宜市', '440983'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3584, '广东省', '肇庆市', '市辖区', '441201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3585, '广东省', '肇庆市', '端州区', '441202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3586, '广东省', '肇庆市', '鼎湖区', '441203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3587, '广东省', '肇庆市', '高要县', '441221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3588, '广东省', '肇庆市', '四会县', '441222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3589, '广东省', '肇庆市', '广宁县', '441223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3590, '广东省', '肇庆市', '怀集县', '441224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3591, '广东省', '肇庆市', '封开县', '441225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3592, '广东省', '肇庆市', '德庆县', '441226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3593, '广东省', '肇庆市', '云浮县', '441227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3594, '广东省', '肇庆市', '新兴县', '441228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3595, '广东省', '肇庆市', '郁南县', '441229'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3596, '广东省', '肇庆市', '罗定县', '441230'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3597, '广东省', '肇庆市', '云浮市', '441281'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3598, '广东省', '肇庆市', '罗定市', '441282'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3599, '广东省', '肇庆市', '高要市', '441283'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3600, '广东省', '肇庆市', '四会市', '441284'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3601, '广东省', '惠州市', '市辖区', '441301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3602, '广东省', '惠州市', '惠城区', '441302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3603, '广东省', '惠州市', '惠阳区', '441303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3604, '广东省', '惠州市', '惠阳县', '441321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3605, '广东省', '惠州市', '博罗县', '441322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3606, '广东省', '惠州市', '惠东县', '441323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3607, '广东省', '惠州市', '龙门县', '441324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3608, '广东省', '惠州市', '惠阳市', '441381'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3609, '广东省', '梅州市', '市辖区', '441401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3610, '广东省', '梅州市', '梅江区', '441402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3611, '广东省', '梅州市', '梅县', '441421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3612, '广东省', '梅州市', '大埔县', '441422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3613, '广东省', '梅州市', '丰顺县', '441423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3614, '广东省', '梅州市', '五华县', '441424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3615, '广东省', '梅州市', '兴宁县', '441425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3616, '广东省', '梅州市', '平远县', '441426'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3617, '广东省', '梅州市', '蕉岭县', '441427'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3618, '广东省', '梅州市', '兴宁市', '441481'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3619, '广东省', '汕尾市', '市辖区', '441501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3620, '广东省', '汕尾市', '城区', '441502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3621, '广东省', '汕尾市', '海丰县', '441521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3622, '广东省', '汕尾市', '陆丰县', '441522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3623, '广东省', '汕尾市', '陆河县', '441523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3624, '广东省', '汕尾市', '陆丰市', '441581'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3625, '广东省', '河源市', '市辖区', '441601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3626, '广东省', '河源市', '源城区', '441602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3627, '广东省', '河源市', '郊区', '441611'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3628, '广东省', '河源市', '紫金县', '441621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3629, '广东省', '河源市', '龙川县', '441622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3630, '广东省', '河源市', '连平县', '441623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3631, '广东省', '河源市', '和平县', '441624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3632, '广东省', '河源市', '东源县', '441625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3633, '广东省', '阳江市', '市辖区', '441701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3634, '广东省', '阳江市', '江城区', '441702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3635, '广东省', '阳江市', '阳东区', '441703'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3636, '广东省', '阳江市', '阳西县', '441721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3637, '广东省', '阳江市', '阳春县', '441722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3638, '广东省', '阳江市', '阳东县', '441723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3639, '广东省', '阳江市', '阳春市', '441781'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3640, '广东省', '云浮市', '市辖区', '445301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3641, '广东省', '云浮市', '云城区', '445302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3642, '广东省', '云浮市', '新兴县', '445321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3643, '广东省', '云浮市', '郁南县', '445322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3644, '广东省', '云浮市', '云安县', '445323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3645, '广东省', '云浮市', '罗定市', '445381'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3646, '广东省', NULL, '东莞市', '441900'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3647, '广东省', NULL, '中山市', '442000'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3648, '广东省', NULL, '连平县', '442524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3649, '广东省', NULL, '河源县', '442525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3650, '广东省', NULL, '博罗县', '442526'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3651, '广东省', NULL, '东莞县', '442527'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3652, '广东省', NULL, '惠东县', '442528'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3653, '广东省', NULL, '龙川县', '442529'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3654, '广东省', NULL, '陆丰县', '442530'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3655, '广东省', NULL, '海丰县', '442531'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3656, '广东省', NULL, '始兴县', '442621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3657, '广东省', NULL, '南雄县', '442622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3658, '广东省', NULL, '仁化县', '442623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3659, '广东省', NULL, '乐昌县', '442624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3660, '广东省', NULL, '清远县', '442628'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3661, '广东省', NULL, '翁源县', '442630'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3662, '广东省', NULL, '连山壮族瑶族自治县', '442631'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3663, '广东省', NULL, '连南瑶族自治县', '442632'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3664, '广东省', NULL, '乳源瑶族自治县', '442633'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3665, '广东省', NULL, '高要县', '442821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3666, '广东省', NULL, '四会县', '442822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3667, '广东省', NULL, '广宁县', '442823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3668, '广东省', NULL, '怀集县', '442824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3669, '广东省', NULL, '封开县', '442825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3670, '广东省', NULL, '德庆县', '442826'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3671, '广东省', NULL, '云浮县', '442827'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3672, '广东省', NULL, '新兴县', '442828'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3673, '广东省', NULL, '郁南县', '442829'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3674, '广东省', NULL, '罗定县', '442830'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3675, '广东省', NULL, '惠州市', '442501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3676, '广东省', NULL, '东莞市', '442502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3677, '广东省', NULL, '惠阳县', '442521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3678, '广东省', NULL, '紫金县', '442522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3679, '广东省', NULL, '和平县', '442523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3680, '广西壮族自治区', '百色市', '市辖区', '451001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3681, '广西壮族自治区', '百色市', '右江区', '451002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3682, '广西壮族自治区', '百色市', '田阳县', '451021'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3683, '广西壮族自治区', '百色市', '田东县', '451022'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3684, '广西壮族自治区', '百色市', '平果县', '451023'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3685, '广西壮族自治区', '百色市', '德保县', '451024'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3686, '广西壮族自治区', '百色市', '靖西县', '451025'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3687, '广西壮族自治区', '百色市', '那坡县', '451026'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3688, '广西壮族自治区', '百色市', '凌云县', '451027'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3689, '广西壮族自治区', '百色市', '乐业县', '451028'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3690, '广西壮族自治区', '百色市', '田林县', '451029'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3691, '广西壮族自治区', '百色市', '西林县', '451030'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3692, '广西壮族自治区', '百色市', '隆林各族自治县', '451031'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3693, '广西壮族自治区', '贺州市', '市辖区', '451101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3694, '广西壮族自治区', '贺州市', '八步区', '451102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3695, '广西壮族自治区', '贺州市', '昭平县', '451121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3696, '广西壮族自治区', '贺州市', '钟山县', '451122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3697, '广西壮族自治区', '贺州市', '富川瑶族自治县', '451123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3698, '广西壮族自治区', '河池市', '市辖区', '451201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3699, '广西壮族自治区', '河池市', '金城江区', '451202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3700, '广西壮族自治区', '河池市', '南丹县', '451221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3701, '广西壮族自治区', '河池市', '天峨县', '451222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3702, '广西壮族自治区', '河池市', '凤山县', '451223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3703, '广西壮族自治区', '河池市', '东兰县', '451224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3704, '广西壮族自治区', '河池市', '罗城仫佬族自治县', '451225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3705, '广西壮族自治区', '河池市', '环江毛南族自治县', '451226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3706, '广西壮族自治区', '河池市', '巴马瑶族自治县', '451227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3707, '广西壮族自治区', '河池市', '都安瑶族自治县', '451228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3708, '广西壮族自治区', '河池市', '大化瑶族自治县', '451229'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3709, '广西壮族自治区', '河池市', '宜州市', '451281'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3710, '广西壮族自治区', '来宾市', '市辖区', '451301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3711, '广西壮族自治区', '来宾市', '兴宾区', '451302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3712, '广西壮族自治区', '来宾市', '忻城县', '451321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3713, '广西壮族自治区', '来宾市', '象州县', '451322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3714, '广西壮族自治区', '来宾市', '武宣县', '451323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3715, '广西壮族自治区', '来宾市', '金秀瑶族自治县', '451324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3716, '广西壮族自治区', '来宾市', '合山市', '451381'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3717, '广西壮族自治区', '崇左市', '市辖区', '451401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3718, '广西壮族自治区', '崇左市', '江洲区', '451402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3719, '广西壮族自治区', '崇左市', '扶绥县', '451421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3720, '广西壮族自治区', '崇左市', '宁明县', '451422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3721, '广西壮族自治区', '崇左市', '龙州县', '451423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3722, '广西壮族自治区', '崇左市', '大新县', '451424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3723, '广西壮族自治区', '崇左市', '天等县', '451425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3724, '广西壮族自治区', '崇左市', '凭祥市', '451481'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3725, '广西壮族自治区', '南宁地区', '凭祥市', '452101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3726, '广西壮族自治区', '南宁地区', '横县', '452122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3727, '广西壮族自治区', '南宁地区', '宾阳县', '452123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3728, '广西壮族自治区', '南宁地区', '上林县', '452124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3729, '广西壮族自治区', '南宁地区', '隆安县', '452126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3730, '广西壮族自治区', '南宁地区', '马山县', '452127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3731, '广西壮族自治区', '南宁地区', '扶绥县', '452128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3732, '广西壮族自治区', '南宁地区', '崇左县', '452129'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3733, '广西壮族自治区', '南宁地区', '大新县', '452130'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3734, '广西壮族自治区', '南宁地区', '天等县', '452131'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3735, '广西壮族自治区', '南宁地区', '宁明县', '452132'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3736, '广西壮族自治区', '南宁地区', '龙州县', '452133'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3737, '广西壮族自治区', '柳州地区', '合山市', '452201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3738, '广西壮族自治区', '柳州地区', '鹿寨县', '452223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3739, '广西壮族自治区', '柳州地区', '象州县', '452224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3740, '广西壮族自治区', '柳州地区', '武宣县', '452225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3741, '广西壮族自治区', '柳州地区', '来宾县', '452226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3742, '广西壮族自治区', '柳州地区', '融安县', '452227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3743, '广西壮族自治区', '柳州地区', '三江侗族自治县', '452228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3744, '广西壮族自治区', '柳州地区', '融水苗族自治县', '452229'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3745, '广西壮族自治区', '柳州地区', '金秀瑶族自治县', '452230'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3746, '广西壮族自治区', '柳州地区', '忻城县', '452231'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3747, '广西壮族自治区', '南宁市', '市辖区', '450101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3748, '广西壮族自治区', '南宁市', '兴宁区', '450102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3749, '广西壮族自治区', '南宁市', '青秀区', '450103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3750, '广西壮族自治区', '南宁市', '城北区', '450104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3751, '广西壮族自治区', '南宁市', '江南区', '450105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3752, '广西壮族自治区', '南宁市', '永新区', '450106'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3753, '广西壮族自治区', '南宁市', '西乡塘区', '450107'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3754, '广西壮族自治区', '南宁市', '良庆区', '450108'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3755, '广西壮族自治区', '南宁市', '邕宁区', '450109'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3756, '广西壮族自治区', '南宁市', '郊区', '450111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3757, '广西壮族自治区', '南宁市', '邕宁县', '450121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3758, '广西壮族自治区', '南宁市', '武鸣县', '450122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3759, '广西壮族自治区', '南宁市', '隆安县', '450123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3760, '广西壮族自治区', '南宁市', '马山县', '450124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3761, '广西壮族自治区', '南宁市', '上林县', '450125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3762, '广西壮族自治区', '南宁市', '宾阳县', '450126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3763, '广西壮族自治区', '南宁市', '横县', '450127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3764, '广西壮族自治区', '柳州市', '市辖区', '450201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3765, '广西壮族自治区', '柳州市', '城中区', '450202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3766, '广西壮族自治区', '柳州市', '鱼峰区', '450203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3767, '广西壮族自治区', '柳州市', '柳南区', '450204'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3768, '广西壮族自治区', '柳州市', '柳北区', '450205'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3769, '广西壮族自治区', '柳州市', '市郊区', '450211'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3770, '广西壮族自治区', '柳州市', '柳江县', '450221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3771, '广西壮族自治区', '柳州市', '柳城县', '450222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3772, '广西壮族自治区', '柳州市', '鹿寨县', '450223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3773, '广西壮族自治区', '柳州市', '融安县', '450224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3774, '广西壮族自治区', '柳州市', '融水苗族自治县', '450225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3775, '广西壮族自治区', '柳州市', '三江侗族自治县', '450226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3776, '广西壮族自治区', '桂林市', '市辖区', '450301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3777, '广西壮族自治区', '桂林市', '秀峰区', '450302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3778, '广西壮族自治区', '桂林市', '叠彩区', '450303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3779, '广西壮族自治区', '桂林市', '象山区', '450304'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3780, '广西壮族自治区', '桂林市', '七星区', '450305'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3781, '广西壮族自治区', '桂林市', '雁山区', '450311'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3782, '广西壮族自治区', '桂林市', '阳朔县', '450321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3783, '广西壮族自治区', '桂林市', '临桂县', '450322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3784, '广西壮族自治区', '桂林市', '灵川县', '450323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3785, '广西壮族自治区', '桂林市', '全州县', '450324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3786, '广西壮族自治区', '桂林市', '兴安县', '450325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3787, '广西壮族自治区', '桂林市', '永福县', '450326'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3788, '广西壮族自治区', '桂林市', '灌阳县', '450327'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3789, '广西壮族自治区', '桂林市', '龙胜各族自治县', '450328'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3790, '广西壮族自治区', '桂林市', '资源县', '450329'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3791, '广西壮族自治区', '桂林市', '平乐县', '450330'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3792, '广西壮族自治区', '桂林市', '荔蒲县', '450331'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3793, '广西壮族自治区', '桂林市', '恭城瑶族自治县', '450332'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3794, '广西壮族自治区', '梧州市', '市辖区', '450401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3795, '广西壮族自治区', '梧州市', '白云区', '450402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3796, '广西壮族自治区', '梧州市', '万秀区', '450403'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3797, '广西壮族自治区', '梧州市', '蝶山区', '450404'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3798, '广西壮族自治区', '梧州市', '长洲区', '450405'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3799, '广西壮族自治区', '梧州市', '市郊区', '450411'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3800, '广西壮族自治区', '梧州市', '苍梧县', '450421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3801, '广西壮族自治区', '梧州市', '藤县', '450422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3802, '广西壮族自治区', '梧州市', '蒙山县', '450423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3803, '广西壮族自治区', '梧州市', '岑溪市', '450481'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3804, '广西壮族自治区', '北海市', '市辖区', '450501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3805, '广西壮族自治区', '北海市', '海城区', '450502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3806, '广西壮族自治区', '北海市', '银海区', '450503'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3807, '广西壮族自治区', '北海市', '铁山港区', '450512'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3808, '广西壮族自治区', '北海市', '合浦县', '450521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3809, '广西壮族自治区', '防城港市', '市辖区', '450601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3810, '广西壮族自治区', '防城港市', '港口区', '450602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3811, '广西壮族自治区', '防城港市', '防城区', '450603'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3812, '广西壮族自治区', '防城港市', '上思县', '450621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3813, '广西壮族自治区', '防城港市', '东兴市', '450681'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3814, '广西壮族自治区', '钦州市', '市辖区', '450701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3815, '广西壮族自治区', '钦州市', '钦南区', '450702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3816, '广西壮族自治区', '钦州市', '钦北区', '450703'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3817, '广西壮族自治区', '钦州市', '灵山县', '450721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3818, '广西壮族自治区', '钦州市', '浦北县', '450722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3819, '广西壮族自治区', '贵港市', '市辖区', '450801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3820, '广西壮族自治区', '贵港市', '港北区', '450802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3821, '广西壮族自治区', '贵港市', '港南区', '450803'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3822, '广西壮族自治区', '贵港市', '覃塘区', '450804'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3823, '广西壮族自治区', '贵港市', '平南县', '450821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3824, '广西壮族自治区', '贵港市', '桂平市', '450881'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3825, '广西壮族自治区', '玉林市', '市辖区', '450901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3826, '广西壮族自治区', '玉林市', '玉州区', '450902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3827, '广西壮族自治区', '玉林市', '容县', '450921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3828, '广西壮族自治区', '玉林市', '陆川县', '450922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3829, '广西壮族自治区', '玉林市', '博白县', '450923'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3830, '广西壮族自治区', '玉林市', '兴业县', '450924'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3831, '广西壮族自治区', '玉林市', '北流市', '450981'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3832, '广西壮族自治区', '桂林地区', '临桂县', '452321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3833, '广西壮族自治区', '桂林地区', '灵川县', '452322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3834, '广西壮族自治区', '桂林地区', '全州县', '452323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3835, '广西壮族自治区', '桂林地区', '兴安县', '452324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3836, '广西壮族自治区', '桂林地区', '永福县', '452325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3837, '广西壮族自治区', '桂林地区', '灌阳县', '452327'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3838, '广西壮族自治区', '桂林地区', '龙胜各族自治县', '452328'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3839, '广西壮族自治区', '桂林地区', '资源县', '452329'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3840, '广西壮族自治区', '桂林地区', '平乐县', '452330'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3841, '广西壮族自治区', '桂林地区', '荔蒲县', '452331'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3842, '广西壮族自治区', '桂林地区', '恭城瑶族自治县', '452332'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3843, '广西壮族自治区', '贺州地区', '岑溪市', '452401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3844, '广西壮族自治区', '贺州地区', '贺州市', '452402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3845, '广西壮族自治区', '贺州地区', '岑溪县', '452421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3846, '广西壮族自治区', '贺州地区', '苍梧县', '452422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3847, '广西壮族自治区', '贺州地区', '藤县', '452423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3848, '广西壮族自治区', '贺州地区', '昭平县', '452424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3849, '广西壮族自治区', '贺州地区', '蒙山县', '452425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3850, '广西壮族自治区', '贺州地区', '贺县', '452426'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3851, '广西壮族自治区', '贺州地区', '钟山县', '452427'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3852, '广西壮族自治区', '贺州地区', '富川瑶族自治县', '452428'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3853, '广西壮族自治区', '玉林地区', '玉林市', '452501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3854, '广西壮族自治区', '玉林地区', '贵港市', '452502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3855, '广西壮族自治区', '玉林地区', '北流市', '452503'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3856, '广西壮族自治区', '玉林地区', '桂平市', '452504'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3857, '广西壮族自治区', '玉林地区', '玉林县', '452521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3858, '广西壮族自治区', '玉林地区', '贵县', '452522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3859, '广西壮族自治区', '玉林地区', '桂平县', '452523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3860, '广西壮族自治区', '玉林地区', '平南县', '452524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3861, '广西壮族自治区', '玉林地区', '容县', '452525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3862, '广西壮族自治区', '玉林地区', '北流县', '452526'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3863, '广西壮族自治区', '玉林地区', '陆川县', '452527'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3864, '广西壮族自治区', '玉林地区', '博白县', '452528'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3865, '广西壮族自治区', '百色地区', '百色市', '452601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3866, '广西壮族自治区', '百色地区', '百色县', '452621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3867, '广西壮族自治区', '百色地区', '田阳县', '452622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3868, '广西壮族自治区', '百色地区', '田东县', '452623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3869, '广西壮族自治区', '百色地区', '平果县', '452624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3870, '广西壮族自治区', '百色地区', '德保县', '452625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3871, '广西壮族自治区', '百色地区', '靖西县', '452626'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3872, '广西壮族自治区', '百色地区', '那坡县', '452627'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3873, '广西壮族自治区', '百色地区', '凌云县', '452628'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3874, '广西壮族自治区', '百色地区', '乐业县', '452629'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3875, '广西壮族自治区', '百色地区', '田林县', '452630'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3876, '广西壮族自治区', '百色地区', '隆林各族自治县', '452631'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3877, '广西壮族自治区', '百色地区', '西林县', '452632'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3878, '广西壮族自治区', '河池地区', '河池市', '452701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3879, '广西壮族自治区', '河池地区', '宜州市', '452702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3880, '广西壮族自治区', '河池地区', '河池县', '452721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3881, '广西壮族自治区', '河池地区', '宜山县', '452722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3882, '广西壮族自治区', '河池地区', '罗城仫佬族自治县', '452723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3883, '广西壮族自治区', '河池地区', '环江毛南族自治县', '452724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3884, '广西壮族自治区', '河池地区', '南丹县', '452725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3885, '广西壮族自治区', '河池地区', '天峨县', '452726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3886, '广西壮族自治区', '河池地区', '凤山县', '452727'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3887, '广西壮族自治区', '河池地区', '东兰县', '452728'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3888, '广西壮族自治区', '河池地区', '巴马瑶族自治县', '452729'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3889, '广西壮族自治区', '河池地区', '都安瑶族自治县', '452730'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3890, '广西壮族自治区', '河池地区', '大化瑶族自治县', '452731'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3891, '广西壮族自治区', '钦州地区', '北海市', '452801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3892, '广西壮族自治区', '钦州地区', '钦州市', '452802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3893, '广西壮族自治区', '钦州地区', '上思县', '452821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3894, '广西壮族自治区', '钦州地区', '防城各族自治县', '452822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3895, '广西壮族自治区', '钦州地区', '钦州县', '452823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3896, '广西壮族自治区', '钦州地区', '灵山县', '452824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3897, '广西壮族自治区', '钦州地区', '合浦县', '452825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3898, '广西壮族自治区', '钦州地区', '浦北县', '452826'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3899, '海南省', '海口市', '市辖区', '460101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3900, '海南省', '海口市', '振东区', '460102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3901, '海南省', '海口市', '新华区', '460103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3902, '海南省', '海口市', '秀英区', '460104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3903, '海南省', '海口市', '秀英区', '460105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3904, '海南省', '海口市', '龙华区', '460106'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3905, '海南省', '海口市', '琼山区', '460107'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3906, '海南省', '海口市', '美兰区', '460108'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3907, '海南省', '三亚市', '市辖区', '460201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3908, '海南省', NULL, '陵水黎族自治县', '469034'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3909, '海南省', NULL, '保亭黎族苗族自治县', '469035'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3910, '海南省', NULL, '琼中黎族苗族自治县', '469036'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3911, '海南省', NULL, '西沙群岛', '469037'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3912, '海南省', NULL, '南沙群岛', '469038'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3913, '海南省', NULL, '中沙群岛的岛礁及其海域', '469039'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3914, '海南省', NULL, '通什市', '460001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3915, '海南省', NULL, '琼海市', '460002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3916, '海南省', NULL, '儋州市', '460003'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3917, '海南省', NULL, '琼山市', '460004'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3918, '海南省', NULL, '文昌市', '460005'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3919, '海南省', NULL, '万宁市', '460006'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3920, '海南省', NULL, '东方市', '460007'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3921, '海南省', NULL, '琼山县', '460021'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3922, '海南省', NULL, '文昌县', '460022'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3923, '海南省', NULL, '琼海县', '460023'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3924, '海南省', NULL, '万宁县', '460024'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3925, '海南省', NULL, '定安县', '460025'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3926, '海南省', NULL, '屯昌县', '460026'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3927, '海南省', NULL, '澄迈县', '460027'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3928, '海南省', NULL, '临高县', '460028'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3929, '海南省', NULL, '儋县', '460029'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3930, '海南省', NULL, '白沙黎族自治县', '460030'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3931, '海南省', NULL, '昌江黎族自治县', '460031'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3932, '海南省', NULL, '东方黎族自治县', '460032'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3933, '海南省', NULL, '乐东黎族自治县', '460033'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3934, '海南省', NULL, '陵水黎族自治县', '460034'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3935, '海南省', NULL, '保亭黎族苗族自治县', '460035'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3936, '海南省', NULL, '琼中黎族苗族自治县', '460036'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3937, '海南省', NULL, '西沙群岛', '460037'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3938, '海南省', NULL, '南沙群岛', '460038'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3939, '海南省', NULL, '中沙群岛的岛礁及其海域', '460039'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3940, '海南省', NULL, '五指山市', '469001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3941, '海南省', NULL, '琼海市', '469002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3942, '海南省', NULL, '儋州市', '469003'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3943, '海南省', NULL, '文昌市', '469005'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3944, '海南省', NULL, '万宁市', '469006'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3945, '海南省', NULL, '东方市', '469007'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3946, '海南省', NULL, '定安县', '469025'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3947, '海南省', NULL, '屯昌县', '469026'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3948, '海南省', NULL, '澄迈县', '469027'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3949, '海南省', NULL, '临高县', '469028'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3950, '海南省', NULL, '白沙黎族自治县', '469030'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3951, '海南省', NULL, '昌江黎族自治县', '469031'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3952, '海南省', NULL, '乐东黎族自治县', '469033'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3953, '重庆市', '市', '江津市', '500381'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3954, '重庆市', '市', '合川市', '500382'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3955, '重庆市', '市', '永川市', '500383'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3956, '重庆市', '市', '南川市', '500384'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3957, '重庆市', NULL, '万州区', '500101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3958, '重庆市', NULL, '涪陵区', '500102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3959, '重庆市', NULL, '渝中区', '500103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3960, '重庆市', NULL, '大渡口区', '500104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3961, '重庆市', NULL, '江北区', '500105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3962, '重庆市', NULL, '沙坪坝区', '500106'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3963, '重庆市', NULL, '九龙坡区', '500107'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3964, '重庆市', NULL, '南岸区', '500108'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3965, '重庆市', NULL, '北碚区', '500109'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3966, '重庆市', NULL, '万盛区', '500110'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3967, '重庆市', NULL, '双桥区', '500111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3968, '重庆市', NULL, '渝北区', '500112'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3969, '重庆市', NULL, '巴南区', '500113'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3970, '重庆市', NULL, '黔江区', '500114'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3971, '重庆市', NULL, '长寿区', '500115'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3972, '重庆市', NULL, '渝中区', '500201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3973, '重庆市', NULL, '江北区', '500211'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3974, '重庆市', NULL, '沙坪坝区', '500212'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3975, '重庆市', NULL, '九龙坡区', '500213'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3976, '重庆市', NULL, '南岸区', '500214'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3977, '重庆市', NULL, '北碚区', '500215'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3978, '重庆市', NULL, '万盛区', '500216'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3979, '重庆市', NULL, '双桥区', '500217'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3980, '重庆市', NULL, '长寿县', '500221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3981, '重庆市', NULL, '綦江县', '500222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3982, '重庆市', NULL, '潼南县', '500223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3983, '重庆市', NULL, '铜梁县', '500224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3984, '重庆市', NULL, '大足县', '500225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3985, '重庆市', NULL, '荣昌县', '500226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3986, '重庆市', NULL, '璧山县', '500227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3987, '重庆市', NULL, '梁平县', '500228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3988, '重庆市', NULL, '城口县', '500229'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3989, '重庆市', NULL, '丰都县', '500230'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3990, '重庆市', NULL, '垫江县', '500231'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3991, '重庆市', NULL, '武隆县', '500232'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3992, '重庆市', NULL, '忠县', '500233'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3993, '重庆市', NULL, '开县', '500234'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3994, '重庆市', NULL, '云阳县', '500235'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3995, '重庆市', NULL, '奉节县', '500236'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3996, '重庆市', NULL, '巫山县', '500237'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3997, '重庆市', NULL, '巫溪县', '500238'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3998, '重庆市', NULL, '黔江土家族苗族自治县', '500239'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (3999, '重庆市', NULL, '石柱土家族自治县', '500240'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4000, '重庆市', NULL, '秀山土家族苗族自治县', '500241'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4001, '重庆市', NULL, '酉阳土家族苗族自治县', '500242'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4002, '重庆市', NULL, '彭水苗族土家族自治县', '500243'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4003, '四川省', '自贡市', '市辖区', '510301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4004, '四川省', '自贡市', '自流井区', '510302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4005, '四川省', '自贡市', '贡井区', '510303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4006, '四川省', '自贡市', '大安区', '510304'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4007, '四川省', '自贡市', '沿滩区', '510311'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4008, '四川省', '自贡市', '荣县', '510321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4009, '四川省', '自贡市', '富顺县', '510322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4010, '四川省', '攀枝花市', '市辖区', '510401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4011, '四川省', '攀枝花市', '东区', '510402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4012, '四川省', '攀枝花市', '西区', '510403'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4013, '四川省', '攀枝花市', '仁和区', '510411'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4014, '四川省', '攀枝花市', '米易县', '510421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4015, '四川省', '攀枝花市', '盐边县', '510422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4016, '四川省', '泸州市', '市辖区', '510501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4017, '四川省', '泸州市', '江阳区', '510502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4018, '四川省', '泸州市', '纳溪区', '510503'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4019, '四川省', '泸州市', '龙马潭区', '510504'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4020, '四川省', '泸州市', '泸县', '510521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4021, '四川省', '泸州市', '合江县', '510522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4022, '四川省', '泸州市', '纳溪县', '510523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4023, '四川省', '泸州市', '叙永县', '510524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4024, '四川省', '泸州市', '古蔺县', '510525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4025, '四川省', '德阳市', '市辖区', '510601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4026, '四川省', '德阳市', '市中区', '510602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4027, '四川省', '德阳市', '旌阳区', '510603'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4028, '四川省', '德阳市', '绵竹县', '510622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4029, '四川省', '德阳市', '中江县', '510623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4030, '四川省', '德阳市', '广汉县', '510624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4031, '四川省', '德阳市', '什邡县', '510625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4032, '四川省', '德阳市', '罗江县', '510626'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4033, '四川省', '德阳市', '广汉市', '510681'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4034, '四川省', '德阳市', '什邡市', '510682'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4035, '四川省', '德阳市', '绵竹市', '510683'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4036, '四川省', '绵阳市', '市辖区', '510701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4037, '四川省', '绵阳市', '市中区', '510702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4038, '四川省', '绵阳市', '涪城区', '510703'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4039, '四川省', '绵阳市', '游仙区', '510704'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4040, '四川省', '绵阳市', '江油县', '510721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4041, '四川省', '绵阳市', '三台县', '510722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4042, '四川省', '绵阳市', '盐亭县', '510723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4043, '四川省', '绵阳市', '安县', '510724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4044, '四川省', '绵阳市', '梓潼县', '510725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4045, '四川省', '绵阳市', '北川县', '510726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4046, '四川省', '绵阳市', '平武县', '510727'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4047, '四川省', '绵阳市', '江油市', '510781'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4048, '四川省', '广元市', '市辖区', '510801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4049, '四川省', '广元市', '市中区', '510802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4050, '四川省', '广元市', '元坝区', '510811'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4051, '四川省', '广元市', '朝天区', '510812'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4052, '四川省', '广元市', '旺苍县', '510821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4053, '四川省', '广元市', '青川县', '510822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4054, '四川省', '广元市', '剑阁县', '510823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4055, '四川省', '广元市', '苍溪县', '510824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4056, '四川省', '遂宁市', '市辖区', '510901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4057, '四川省', '遂宁市', '市中区', '510902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4058, '四川省', '遂宁市', '船山区', '510903'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4059, '四川省', '遂宁市', '安居区', '510904'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4060, '四川省', '遂宁市', '蓬溪县', '510921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4061, '四川省', '遂宁市', '射洪县', '510922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4062, '四川省', '遂宁市', '大英县', '510923'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4063, '四川省', '内江市', '市辖区', '511001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4064, '四川省', '内江市', '市中区', '511002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4065, '四川省', '内江市', '东兴区', '511011'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4066, '四川省', '内江市', '内江县', '511021'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4067, '四川省', '内江市', '乐至县', '511022'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4068, '四川省', '内江市', '安岳县', '511023'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4069, '四川省', '内江市', '威远县', '511024'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4070, '四川省', '内江市', '资中县', '511025'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4071, '四川省', '内江市', '资阳市', '511026'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4072, '四川省', '内江市', '简阳县', '511027'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4073, '四川省', '内江市', '隆昌县', '511028'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4074, '四川省', '内江市', '资阳市', '511081'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4075, '四川省', '万县地区', '奉节县', '512226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4076, '四川省', '万县地区', '巫山县', '512227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4077, '四川省', '万县地区', '巫溪县', '512228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4078, '四川省', '万县地区', '城口县', '512229'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4079, '四川省', '万县地区', '万县市', '512201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4080, '四川省', '万县地区', '万县', '512221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4081, '四川省', '万县地区', '开县', '512222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4082, '四川省', '万县地区', '忠县', '512223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4083, '四川省', '万县地区', '梁平县', '512224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4084, '四川省', '万县地区', '云阳县', '512225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4085, '四川省', '涪陵地区', '涪陵市', '512301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4086, '四川省', '涪陵地区', '南川市', '512302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4087, '四川省', '涪陵地区', '涪陵县', '512321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4088, '四川省', '涪陵地区', '垫江县', '512322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4089, '四川省', '涪陵地区', '南川县', '512323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4090, '四川省', '涪陵地区', '丰都县', '512324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4091, '四川省', '涪陵地区', '石柱县', '512325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4092, '四川省', '涪陵地区', '武隆县', '512326'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4093, '四川省', '涪陵地区', '彭水县', '512327'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4094, '四川省', '涪陵地区', '黔江县', '512328'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4095, '四川省', '涪陵地区', '酉阳县', '512329'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4096, '四川省', '涪陵地区', '秀山县', '512330'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4097, '四川省', '宜宾地区', '宜宾市', '512501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4098, '四川省', '宜宾地区', '宜宾县', '512527'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4099, '四川省', '宜宾地区', '南溪县', '512528'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4100, '四川省', '宜宾地区', '江安县', '512529'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4101, '四川省', '宜宾地区', '长宁县', '512530'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4102, '四川省', '宜宾地区', '高县', '512531'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4103, '四川省', '宜宾地区', '筠连县', '512532'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4104, '四川省', '宜宾地区', '珙县', '512533'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4105, '四川省', '宜宾地区', '兴文县', '512534'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4106, '四川省', '宜宾地区', '屏山县', '512535'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4107, '四川省', '南充地区', '南充市', '512901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4108, '四川省', '南充地区', '华蓥市', '512902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4109, '四川省', '南充地区', '阆中市', '512903'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4110, '四川省', '南充地区', '南充县', '512921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4111, '四川省', '南充地区', '南部县', '512922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4112, '四川省', '南充地区', '岳池县', '512923'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4113, '四川省', '南充地区', '营山县', '512924'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4114, '四川省', '南充地区', '广安县', '512925'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4115, '四川省', '南充地区', '蓬安县', '512926'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4116, '四川省', '南充地区', '仪陇县', '512927'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4117, '四川省', '南充地区', '武胜县', '512928'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4118, '四川省', '南充地区', '西充县', '512929'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4119, '四川省', '南充地区', '阆中县', '512930'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4120, '四川省', '南充地区', '苍溪县', '512931'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4121, '四川省', '南充地区', '华云工农区', '512932'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4122, '四川省', '达川地区', '达川市', '513001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4123, '四川省', '达川地区', '万源市', '513002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4124, '四川省', '达川地区', '达县', '513021'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4125, '四川省', '达川地区', '宣汉县', '513022'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4126, '四川省', '达川地区', '开江县', '513023'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4127, '四川省', '达川地区', '万源县', '513024'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4128, '四川省', '达川地区', '通江县', '513025'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4129, '四川省', '达川地区', '南江县', '513026'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4130, '四川省', '达川地区', '巴中县', '513027'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4131, '四川省', '达川地区', '平昌县', '513028'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4132, '四川省', '达川地区', '大竹县', '513029'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4133, '四川省', '达川地区', '渠县', '513030'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4134, '四川省', '达川地区', '邻水县', '513031'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4135, '四川省', '达川地区', '白沙工农区', '513032'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4136, '四川省', '雅安地区', '雅安市', '513101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4137, '四川省', '雅安地区', '名山县', '513122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4138, '四川省', '雅安地区', '荥经县', '513123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4139, '四川省', '雅安地区', '汉源县', '513124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4140, '四川省', '雅安地区', '石棉县', '513125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4141, '四川省', '雅安地区', '天全县', '513126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4142, '四川省', '雅安地区', '芦山县', '513127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4143, '四川省', '雅安地区', '宝兴县', '513128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4144, '四川省', '阿坝藏族羌族自治州', '汶川县', '513221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4145, '四川省', '阿坝藏族羌族自治州', '理县', '513222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4146, '四川省', '阿坝藏族羌族自治州', '茂县', '513223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4147, '四川省', '阿坝藏族羌族自治州', '松潘县', '513224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4148, '四川省', '阿坝藏族羌族自治州', '九寨沟县', '513225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4149, '四川省', '阿坝藏族羌族自治州', '金川县', '513226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4150, '四川省', '阿坝藏族羌族自治州', '小金县', '513227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4151, '四川省', '阿坝藏族羌族自治州', '黑水县', '513228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4152, '四川省', '阿坝藏族羌族自治州', '马尔康县', '513229'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4153, '四川省', '阿坝藏族羌族自治州', '壤塘县', '513230'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4154, '四川省', '阿坝藏族羌族自治州', '阿坝县', '513231'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4155, '四川省', '阿坝藏族羌族自治州', '若尔盖县', '513232'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4156, '四川省', '阿坝藏族羌族自治州', '红原县', '513233'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4157, '四川省', '甘孜藏族自治州', '康定县', '513321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4158, '四川省', '甘孜藏族自治州', '泸定县', '513322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4159, '四川省', '甘孜藏族自治州', '丹巴县', '513323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4160, '四川省', '甘孜藏族自治州', '九龙县', '513324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4161, '四川省', '甘孜藏族自治州', '雅江县', '513325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4162, '四川省', '甘孜藏族自治州', '道孚县', '513326'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4163, '四川省', '甘孜藏族自治州', '炉霍县', '513327'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4164, '四川省', '甘孜藏族自治州', '甘孜县', '513328'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4165, '四川省', '甘孜藏族自治州', '新龙县', '513329'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4166, '四川省', '甘孜藏族自治州', '德格县', '513330'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4167, '四川省', '甘孜藏族自治州', '白玉县', '513331'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4168, '四川省', '甘孜藏族自治州', '石渠县', '513332'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4169, '四川省', '甘孜藏族自治州', '色达县', '513333'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4170, '四川省', '甘孜藏族自治州', '理塘县', '513334'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4171, '四川省', '甘孜藏族自治州', '巴塘县', '513335'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4172, '四川省', '甘孜藏族自治州', '乡城县', '513336'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4173, '四川省', '甘孜藏族自治州', '稻城县', '513337'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4174, '四川省', '甘孜藏族自治州', '得荣县', '513338'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4175, '四川省', '凉山彝族自治州', '西昌市', '513401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4176, '四川省', '凉山彝族自治州', '木里藏族自治县', '513422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4177, '四川省', '凉山彝族自治州', '盐源县', '513423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4178, '四川省', '凉山彝族自治州', '德昌县', '513424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4179, '四川省', '凉山彝族自治州', '会理县', '513425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4180, '四川省', '凉山彝族自治州', '会东县', '513426'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4181, '四川省', '凉山彝族自治州', '宁南县', '513427'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4182, '四川省', '凉山彝族自治州', '普格县', '513428'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4183, '四川省', '凉山彝族自治州', '布拖县', '513429'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4184, '四川省', '凉山彝族自治州', '金阳县', '513430'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4185, '四川省', '凉山彝族自治州', '昭觉县', '513431'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4186, '四川省', '凉山彝族自治州', '喜德县', '513432'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4187, '四川省', '凉山彝族自治州', '冕宁县', '513433'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4188, '四川省', '凉山彝族自治州', '越西县', '513434'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4189, '四川省', '凉山彝族自治州', '甘洛县', '513435'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4190, '四川省', '凉山彝族自治州', '美姑县', '513436'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4191, '四川省', '凉山彝族自治州', '雷波县', '513437'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4192, '四川省', '成都市', '市辖区', '510101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4193, '四川省', '成都市', '东城区', '510102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4194, '四川省', '成都市', '西城区', '510103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4195, '四川省', '成都市', '锦江区', '510104'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4196, '四川省', '成都市', '青羊区', '510105'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4197, '四川省', '成都市', '金牛区', '510106'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4198, '四川省', '成都市', '武侯区', '510107'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4199, '四川省', '成都市', '成华区', '510108'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4200, '四川省', '成都市', '金牛区', '510111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4201, '四川省', '成都市', '龙泉驿区', '510112'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4202, '四川省', '成都市', '青白江区', '510113'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4203, '四川省', '成都市', '新都区', '510114'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4204, '四川省', '成都市', '市区', '510120'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4205, '四川省', '成都市', '金堂县', '510121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4206, '四川省', '成都市', '双流县', '510122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4207, '四川省', '成都市', '温江县', '510123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4208, '四川省', '成都市', '郫县', '510124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4209, '四川省', '成都市', '新都县', '510125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4210, '四川省', '成都市', '彭县', '510126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4211, '四川省', '成都市', '灌县', '510127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4212, '四川省', '成都市', '崇庆县', '510128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4213, '四川省', '成都市', '大邑县', '510129'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4214, '四川省', '成都市', '邛崃县', '510130'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4215, '四川省', '成都市', '蒲江县', '510131'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4216, '四川省', '成都市', '新津县', '510132'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4217, '四川省', '成都市', '都江堰市', '510181'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4218, '四川省', '成都市', '彭州市', '510182'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4219, '四川省', '成都市', '邛崃市', '510183'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4220, '四川省', '成都市', '崇州市', '510184'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4221, '四川省', '重庆市', '市辖区', '510201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4222, '四川省', '重庆市', '市中区', '510202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4223, '四川省', '重庆市', '大渡口区', '510203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4224, '四川省', '重庆市', '江北区', '510211'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4225, '四川省', '重庆市', '沙坪坝区', '510212'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4226, '四川省', '重庆市', '九龙坡区', '510213'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4227, '四川省', '重庆市', '南岸区', '510214'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4228, '四川省', '重庆市', '北碚区', '510215'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4229, '四川省', '重庆市', '万盛区', '510216'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4230, '四川省', '重庆市', '双桥区', '510217'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4231, '四川省', '重庆市', '渝北区', '510218'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4232, '四川省', '重庆市', '巴南区', '510219'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4233, '四川省', '重庆市', '市区', '510220'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4234, '四川省', '重庆市', '长寿县', '510221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4235, '四川省', '重庆市', '巴县', '510222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4236, '四川省', '重庆市', '綦江县', '510223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4237, '四川省', '重庆市', '江北县', '510224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4238, '四川省', '重庆市', '江津县', '510225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4239, '四川省', '重庆市', '合川县', '510226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4240, '四川省', '重庆市', '潼南县', '510227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4241, '四川省', '重庆市', '铜梁县', '510228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4242, '四川省', '重庆市', '永川县', '510229'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4243, '四川省', '重庆市', '大足县', '510230'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4244, '四川省', '重庆市', '北碚区', '510231'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4245, '四川省', '重庆市', '璧山县', '510232'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4246, '四川省', '重庆市', '永川市', '510281'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4247, '四川省', '重庆市', '江津市', '510282'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4248, '四川省', '重庆市', '合川市', '510283'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4249, '四川省', '乐山市', '市辖区', '511101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4250, '四川省', '乐山市', '市中区', '511102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4251, '四川省', '乐山市', '沙湾区', '511111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4252, '四川省', '乐山市', '五通桥区', '511112'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4253, '四川省', '乐山市', '金口河区', '511113'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4254, '四川省', '乐山市', '仁寿县', '511121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4255, '四川省', '乐山市', '眉山县', '511122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4256, '四川省', '乐山市', '犍为县', '511123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4257, '四川省', '乐山市', '井研县', '511124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4258, '四川省', '乐山市', '峨眉县', '511125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4259, '四川省', '乐山市', '夹江县', '511126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4260, '四川省', '乐山市', '洪雅县', '511127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4261, '四川省', '乐山市', '彭山县', '511128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4262, '四川省', '乐山市', '沐川县', '511129'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4263, '四川省', '乐山市', '青神县', '511130'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4264, '四川省', '乐山市', '丹棱县', '511131'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4265, '四川省', '乐山市', '峨边彝族自治县', '511132'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4266, '四川省', '乐山市', '马边彝族自治县', '511133'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4267, '四川省', '乐山市', '峨眉山市', '511181'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4268, '四川省', '万县市', '市辖区', '511201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4269, '四川省', '万县市', '龙宝区', '511202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4270, '四川省', '万县市', '天成区', '511203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4271, '四川省', '万县市', '五桥区', '511204'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4272, '四川省', '万县市', '开县', '511221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4273, '四川省', '万县市', '忠县', '511222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4274, '四川省', '万县市', '梁平县', '511223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4275, '四川省', '万县市', '云阳县', '511224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4276, '四川省', '万县市', '奉节县', '511225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4277, '四川省', '万县市', '巫山县', '511226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4278, '四川省', '万县市', '巫溪县', '511227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4279, '四川省', '万县市', '城口县', '511228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4280, '四川省', '南充市', '市辖区', '511301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4281, '四川省', '南充市', '顺庆区', '511302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4282, '四川省', '南充市', '高坪区', '511303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4283, '四川省', '南充市', '嘉陵区', '511304'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4284, '四川省', '南充市', '南部县', '511321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4285, '四川省', '南充市', '营山县', '511322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4286, '四川省', '南充市', '蓬安县', '511323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4287, '四川省', '南充市', '仪陇县', '511324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4288, '四川省', '南充市', '西充县', '511325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4289, '四川省', '南充市', '阆中市', '511381'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4290, '四川省', '眉山市', '市辖区', '511401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4291, '四川省', '眉山市', '东坡区', '511402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4292, '四川省', '眉山市', '仁寿县', '511421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4293, '四川省', '眉山市', '彭山县', '511422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4294, '四川省', '眉山市', '洪雅县', '511423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4295, '四川省', '眉山市', '丹棱县', '511424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4296, '四川省', '眉山市', '青神县', '511425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4297, '四川省', '宜宾市', '市辖区', '511501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4298, '四川省', '宜宾市', '翠屏区', '511502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4299, '四川省', '宜宾市', '宜宾县', '511521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4300, '四川省', '宜宾市', '南溪县', '511522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4301, '四川省', '宜宾市', '江安县', '511523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4302, '四川省', '宜宾市', '长宁县', '511524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4303, '四川省', '宜宾市', '高县', '511525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4304, '四川省', '宜宾市', '珙县', '511526'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4305, '四川省', '宜宾市', '筠连县', '511527'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4306, '四川省', '宜宾市', '兴文县', '511528'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4307, '四川省', '宜宾市', '屏山县', '511529'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4308, '四川省', '广安市', '市辖区', '511601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4309, '四川省', '广安市', '广安区', '511602'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4310, '四川省', '广安市', '岳池县', '511621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4311, '四川省', '广安市', '武胜县', '511622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4312, '四川省', '广安市', '邻水县', '511623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4313, '四川省', '广安市', '华蓥市', '511681'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4314, '四川省', '达州市', '市辖区', '511701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4315, '四川省', '达州市', '通川区', '511702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4316, '四川省', '达州市', '达县', '511721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4317, '四川省', '达州市', '宣汉县', '511722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4318, '四川省', '达州市', '开江县', '511723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4319, '四川省', '达州市', '大竹县', '511724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4320, '四川省', '达州市', '渠县', '511725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4321, '四川省', '达州市', '万源市', '511781'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4322, '四川省', '雅安市', '市辖区', '511801'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4323, '四川省', '雅安市', '雨城区', '511802'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4324, '四川省', '雅安市', '名山县', '511821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4325, '四川省', '雅安市', '荥经县', '511822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4326, '四川省', '雅安市', '汉源县', '511823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4327, '四川省', '雅安市', '石棉县', '511824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4328, '四川省', '雅安市', '天全县', '511825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4329, '四川省', '雅安市', '芦山县', '511826'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4330, '四川省', '雅安市', '宝兴县', '511827'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4331, '四川省', '巴中市', '市辖区', '511901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4332, '四川省', '巴中市', '巴州区', '511902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4333, '四川省', '巴中市', '通江县', '511921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4334, '四川省', '巴中市', '南江县', '511922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4335, '四川省', '巴中市', '平昌县', '511923'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4336, '四川省', '资阳市', '市辖区', '512001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4337, '四川省', '资阳市', '雁江区', '512002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4338, '四川省', '资阳市', '安岳县', '512021'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4339, '四川省', '资阳市', '乐至县', '512022'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4340, '四川省', '资阳市', '简阳市', '512081'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4341, '四川省', '黔江地区', '石柱土家族自治县', '513521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4342, '四川省', '黔江地区', '秀山土家族苗族自治县', '513522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4343, '四川省', '黔江地区', '黔江土家族苗族自治县', '513523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4344, '四川省', '黔江地区', '酉阳土家族苗族自治县', '513524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4345, '四川省', '广安市', '华蓥市', '513601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4346, '四川省', '广安市', '岳池县', '513621'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4347, '四川省', '广安市', '广安县', '513622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4348, '四川省', '广安市', '武胜县', '513623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4349, '四川省', '广安市', '邻水县', '513624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4350, '四川省', '巴中地区', '巴中市', '513701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4351, '四川省', '巴中地区', '通江县', '513721'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4352, '四川省', '巴中地区', '南江县', '513722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4353, '四川省', '巴中地区', '平昌县', '513723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4354, '四川省', '眉山地区', '眉山县', '513821'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4355, '四川省', '眉山地区', '仁寿县', '513822'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4356, '四川省', '眉山地区', '彭山县', '513823'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4357, '四川省', '眉山地区', '洪雅县', '513824'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4358, '四川省', '眉山地区', '丹棱县', '513825'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4359, '四川省', '眉山地区', '青神县', '513826'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4360, '四川省', '资阳地区', '资阳市', '513901'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4361, '四川省', '资阳地区', '简阳市', '513902'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4362, '四川省', '资阳地区', '安岳县', '513921'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4363, '四川省', '资阳地区', '乐至县', '513922'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4364, '四川省', NULL, '广汉市', '519001'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4365, '四川省', NULL, '江油市', '519002'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4366, '四川省', NULL, '都江堰市', '519003'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4367, '四川省', NULL, '峨眉山市', '519004'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4368, '贵州省', '贵阳市', '市辖区', '520101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4369, '贵州省', '贵阳市', '南明区', '520102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4370, '贵州省', '贵阳市', '云岩区', '520103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4371, '贵州省', '贵阳市', '花溪区', '520111'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4372, '贵州省', '贵阳市', '乌当区', '520112'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4373, '贵州省', '贵阳市', '白云区', '520113'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4374, '贵州省', '贵阳市', '小河区', '520114'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4375, '贵州省', '贵阳市', '开阳县', '520121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4376, '贵州省', '贵阳市', '息烽县', '520122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4377, '贵州省', '贵阳市', '修文县', '520123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4378, '贵州省', '贵阳市', '清镇市', '520181'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4379, '贵州省', '六盘水市', '钟山区', '520201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4380, '贵州省', '六盘水市', '盘县特区', '520202'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4381, '贵州省', '六盘水市', '六枝特区', '520203'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4382, '贵州省', '六盘水市', '水城县', '520221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4383, '贵州省', '六盘水市', '盘县', '520222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4384, '贵州省', '遵义市', '市辖区', '520301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4385, '贵州省', '遵义市', '红花岗区', '520302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4386, '贵州省', '遵义市', '汇川区', '520303'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4387, '贵州省', '遵义市', '遵义县', '520321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4388, '贵州省', '遵义市', '桐梓县', '520322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4389, '贵州省', '遵义市', '绥阳县', '520323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4390, '贵州省', '遵义市', '正安县', '520324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4391, '贵州省', '遵义市', '道真仡佬族苗族自治县', '520325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4392, '贵州省', '遵义市', '务川仡佬族苗族自治县', '520326'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4393, '贵州省', '遵义市', '凤冈县', '520327'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4394, '贵州省', '遵义市', '湄潭县', '520328'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4395, '贵州省', '遵义市', '余庆县', '520329'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4396, '贵州省', '遵义市', '习水县', '520330'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4397, '贵州省', '遵义市', '赤水市', '520381'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4398, '贵州省', '遵义市', '仁怀市', '520382'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4399, '贵州省', '安顺市', '市辖区', '520401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4400, '贵州省', '安顺市', '西秀区', '520402'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4401, '贵州省', '安顺市', '平坝县', '520421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4402, '贵州省', '安顺市', '普定县', '520422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4403, '贵州省', '安顺市', '镇宁布依族苗族自治县', '520423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4404, '贵州省', '安顺市', '关岭布依族苗族自治县', '520424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4405, '贵州省', '安顺市', '紫云苗族布依族自治县', '520425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4406, '贵州省', '遵义地区', '遵义市', '522101'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4407, '贵州省', '遵义地区', '赤水市', '522102'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4408, '贵州省', '遵义地区', '仁怀市', '522103'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4409, '贵州省', '遵义地区', '遵义县', '522121'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4410, '贵州省', '遵义地区', '桐梓县', '522122'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4411, '贵州省', '遵义地区', '绥阳县', '522123'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4412, '贵州省', '遵义地区', '正安县', '522124'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4413, '贵州省', '遵义地区', '道真仡佬族苗族自治县', '522125'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4414, '贵州省', '遵义地区', '务川仡佬族苗族自治县', '522126'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4415, '贵州省', '遵义地区', '凤冈县', '522127'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4416, '贵州省', '遵义地区', '湄潭县', '522128'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4417, '贵州省', '遵义地区', '余庆县', '522129'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4418, '贵州省', '遵义地区', '仁怀县', '522130'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4419, '贵州省', '遵义地区', '赤水县', '522131'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4420, '贵州省', '遵义地区', '习水县', '522132'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4421, '贵州省', '铜仁地区', '铜仁市', '522201'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4422, '贵州省', '铜仁地区', '铜仁县', '522221'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4423, '贵州省', '铜仁地区', '江口县', '522222'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4424, '贵州省', '铜仁地区', '玉屏侗族自治县', '522223'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4425, '贵州省', '铜仁地区', '石阡县', '522224'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4426, '贵州省', '铜仁地区', '思南县', '522225'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4427, '贵州省', '铜仁地区', '印江土家族苗族自治县', '522226'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4428, '贵州省', '铜仁地区', '德江县', '522227'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4429, '贵州省', '铜仁地区', '沿河土家族自治县', '522228'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4430, '贵州省', '铜仁地区', '松桃苗族自治县', '522229'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4431, '贵州省', '铜仁地区', '万山特区', '522230'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4432, '贵州省', '黔西南布依族苗族自治州', '兴义市', '522301'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4433, '贵州省', '黔西南布依族苗族自治州', '赤壁市', '522302'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4434, '贵州省', '黔西南布依族苗族自治州', '兴义县', '522321'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4435, '贵州省', '黔西南布依族苗族自治州', '兴仁县', '522322'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4436, '贵州省', '黔西南布依族苗族自治州', '普安县', '522323'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4437, '贵州省', '黔西南布依族苗族自治州', '晴隆县', '522324'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4438, '贵州省', '黔西南布依族苗族自治州', '贞丰县', '522325'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4439, '贵州省', '黔西南布依族苗族自治州', '望谟县', '522326'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4440, '贵州省', '黔西南布依族苗族自治州', '册亨县', '522327'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4441, '贵州省', '黔西南布依族苗族自治州', '安龙县', '522328'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4442, '贵州省', '毕节地区', '毕节市', '522401'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4443, '贵州省', '毕节地区', '毕节县', '522421'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4444, '贵州省', '毕节地区', '大方县', '522422'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4445, '贵州省', '毕节地区', '黔西县', '522423'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4446, '贵州省', '毕节地区', '金沙县', '522424'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4447, '贵州省', '毕节地区', '织金县', '522425'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4448, '贵州省', '毕节地区', '纳雍县', '522426'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4449, '贵州省', '毕节地区', '威宁彝族回族苗族自治县', '522427'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4450, '贵州省', '毕节地区', '赫章县', '522428'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4451, '贵州省', '安顺地区', '安顺市', '522501'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4452, '贵州省', '安顺地区', '清镇市', '522502'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4453, '贵州省', '安顺地区', '安顺县', '522521'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4454, '贵州省', '安顺地区', '开阳县', '522522'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4455, '贵州省', '安顺地区', '息烽县', '522523'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4456, '贵州省', '安顺地区', '修文县', '522524'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4457, '贵州省', '安顺地区', '清镇县', '522525'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4458, '贵州省', '安顺地区', '平坝县', '522526'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4459, '贵州省', '安顺地区', '普定县', '522527'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4460, '贵州省', '安顺地区', '关岭布依族苗族自治县', '522528'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4461, '贵州省', '安顺地区', '镇宁布依族苗族自治县', '522529'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4462, '贵州省', '安顺地区', '紫云苗族布依族自治县', '522530'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4463, '贵州省', '黔东南苗族侗族自治州', '凯里市', '522601'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4464, '贵州省', '黔东南苗族侗族自治州', '黄平县', '522622'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4465, '贵州省', '黔东南苗族侗族自治州', '施秉县', '522623'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4466, '贵州省', '黔东南苗族侗族自治州', '三穗县', '522624'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4467, '贵州省', '黔东南苗族侗族自治州', '镇远县', '522625'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4468, '贵州省', '黔东南苗族侗族自治州', '岑巩县', '522626'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4469, '贵州省', '黔东南苗族侗族自治州', '天柱县', '522627'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4470, '贵州省', '黔东南苗族侗族自治州', '锦屏县', '522628'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4471, '贵州省', '黔东南苗族侗族自治州', '剑河县', '522629'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4472, '贵州省', '黔东南苗族侗族自治州', '台江县', '522630'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4473, '贵州省', '黔东南苗族侗族自治州', '黎平县', '522631'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4474, '贵州省', '黔东南苗族侗族自治州', '榕江县', '522632'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4475, '贵州省', '黔东南苗族侗族自治州', '从江县', '522633'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4476, '贵州省', '黔东南苗族侗族自治州', '雷山县', '522634'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4477, '贵州省', '黔东南苗族侗族自治州', '麻江县', '522635'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4478, '贵州省', '黔东南苗族侗族自治州', '丹寨县', '522636'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4479, '贵州省', '黔南布依族苗族自治州', '都匀市', '522701'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4480, '贵州省', '黔南布依族苗族自治州', '福泉市', '522702'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4481, '贵州省', '黔南布依族苗族自治州', '荔波县', '522722'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4482, '贵州省', '黔南布依族苗族自治州', '贵定县', '522723'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4483, '贵州省', '黔南布依族苗族自治州', '福泉县', '522724'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4484, '贵州省', '黔南布依族苗族自治州', '瓮安县', '522725'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4485, '贵州省', '黔南布依族苗族自治州', '独山县', '522726'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4486, '中华人民共和国香港特别行政区', NULL, NULL, '810000'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4487, '中华人民共和国澳门特别行政区', NULL, NULL, '820000'); -INSERT INTO "cardcodes" ("id", "Province", "City", "District", "bm") VALUES (4488, '台湾省', NULL, NULL, '710000'); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN001', '购入18台PC', '150000.00', 'D-001', '2018-12-03 15:49:16', '联想电脑', 'WK001', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN002', '购入150平方的瓷砖', '800000.00', 'D-001', '2018-12-03 15:49:16', '京瓷', 'WK002', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN003', '与KaMiFood达成合作', '870000.00', 'D-001', '2018-12-04 00:00:00', '神之食餐饮', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN004', '购入40台高配笔记本', '900000.00', 'D-003', '2018-12-05 00:00:00', '戴尔电脑', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN005', '与闪修达成合作', '600000.00', 'D-001', '2018-12-05 00:00:00', '闪修公司', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN006', '顶级床单3000张', '900000.00', 'D-001', '2018-12-15 00:00:00', '席梦思', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN007', '办公椅300张', '50000.00', 'D-003', '2018-12-05 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN008', '办公桌300张', '80000.00', 'D-001', '2018-12-05 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN009', '测试数据', '200000.00', 'D-006', '2018-12-05 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN010', '测试数据', '300000.00', 'D-002', '2018-12-06 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN011', '测试数据', '400000.00', 'D-002', '2018-12-07 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN012', '测试数据', '500000.00', 'D-002', '2018-12-08 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN013', '测试数据', '600000.00', 'D-002', '2018-12-09 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN014', '测试数据', '700000.00', 'D-002', '2018-12-23 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN015', '测试数据', '800000.00', 'D-002', '2018-12-23 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN016', '测试数据', '900000.00', 'D-002', '2018-12-24 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN017', '纪念品', '500.00', 'D-011', '2020-08-22 15:22:44', '赠予', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN1262', '古董', '10000000.00', 'D-001', '2020-08-22 15:22:44', '赠送', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN202100013', '测试测试', '600000.00', 'D-004', '2021-01-30 00:00:00', '测试工厂', 'WK010', 0, 'admin', '2021-02-16', NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN20210002', '戴尔笔记本6台', '80000.00', 'D-010', '2021-01-30 00:00:00', '戴尔(珠海)经销商', 'WK202102007', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN4610', '购入20套办公桌', '50000.00', 'D-010', '2020-04-16 23:25:22', '志远办公', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN4665', '购入10套办公桌椅', '50000.00', 'D-010', '2020-04-16 23:26:57', '志远办公', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN6816', 'test', '20000.00', 'D-002', '2020-04-16 23:42:08', 'adasd', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CN8051', 'cccccc', '10000.00', 'D-002', '2020-08-14 14:33:21', 'ccccccc', 'WK010', 0, NULL, NULL, NULL, NULL); -INSERT INTO "cashinfo" ("CashNo", "CashName", "CashPrice", "CashClub", "CashTime", "CashSource", "CashPerson", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('RG001', '唯秒合作入股', '770000.00', 'D-001', '2018-12-05 00:00:00', '唯秒', 'WK001', 0, NULL, NULL, NULL, NULL); -INSERT INTO "checkinfo" ("CheckNo", "CheckClub", "CheckProgres", "CheckCash", "CheckScore", "CheckPerson", "CheckAdvice", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CI001', '后勤部', '有人偷懒', '(^-^)', 4, '罗良建', '合理分配时间', 0, NULL, NULL, NULL, NULL); -INSERT INTO "checkinfo" ("CheckNo", "CheckClub", "CheckProgres", "CheckCash", "CheckScore", "CheckPerson", "CheckAdvice", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CI002', '餐饮部', '有人偷懒', 'QAQ', 4, '罗良建', '合理分配时间', 0, NULL, NULL, NULL, NULL); -INSERT INTO "checkinfo" ("CheckNo", "CheckClub", "CheckProgres", "CheckCash", "CheckScore", "CheckPerson", "CheckAdvice", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('CI003', '酒店部', '有人偷懒', '(-_-)', 4, '罗良建', '合理分配时间', 0, NULL, NULL, NULL, NULL); -INSERT INTO "counterrule" ("rule_id", "rule_name", "rule_desc", "now_id", "prefix_name", "custo_format", "number_format", "separating_char", "datains_usrid", "datains_time", "datachg_usrid", "datachg_time") VALUES (1, 'WorkerId', '员工工号流水号规则', 44, 'WK', 'yyyyMM', '00', '', 'System', NULL, NULL, NULL); -INSERT INTO "counterrule" ("rule_id", "rule_name", "rule_desc", "now_id", "prefix_name", "custo_format", "number_format", "separating_char", "datains_usrid", "datains_time", "datachg_usrid", "datachg_time") VALUES (6, 'NoticeId', '公告编号', 4, 'UP', 'yyyyMM', '00', '-', 'System', NULL, NULL, NULL); -INSERT INTO "counterrule" ("rule_id", "rule_name", "rule_desc", "now_id", "prefix_name", "custo_format", "number_format", "separating_char", "datains_usrid", "datains_time", "datachg_usrid", "datachg_time") VALUES (9, 'EducationId', '学历编号', 3, 'E', 'yyyy', '0', '-', 'System', NULL, NULL, NULL); -INSERT INTO "counterrule" ("rule_id", "rule_name", "rule_desc", "now_id", "prefix_name", "custo_format", "number_format", "separating_char", "datains_usrid", "datains_time", "datachg_usrid", "datachg_time") VALUES (10, 'PositionId', '职位编号', 7, 'P', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); -INSERT INTO "counterrule" ("rule_id", "rule_name", "rule_desc", "now_id", "prefix_name", "custo_format", "number_format", "separating_char", "datains_usrid", "datains_time", "datachg_usrid", "datachg_time") VALUES (4, 'ReserId', '预约编号', 24, 'R', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); -INSERT INTO "counterrule" ("rule_id", "rule_name", "rule_desc", "now_id", "prefix_name", "custo_format", "number_format", "separating_char", "datains_usrid", "datains_time", "datachg_usrid", "datachg_time") VALUES (3, 'CustoId', '客户类型编号', 139, 'TS', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); -INSERT INTO "counterrule" ("rule_id", "rule_name", "rule_desc", "now_id", "prefix_name", "custo_format", "number_format", "separating_char", "datains_usrid", "datains_time", "datachg_usrid", "datachg_time") VALUES (2, 'NationId', '民族类型编号', 7, 'N', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); -INSERT INTO "counterrule" ("rule_id", "rule_name", "rule_desc", "now_id", "prefix_name", "custo_format", "number_format", "separating_char", "datains_usrid", "datains_time", "datachg_usrid", "datachg_time") VALUES (8, 'DeptInfo', '部门编号', 135, 'D', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); -INSERT INTO "counterrule" ("rule_id", "rule_name", "rule_desc", "now_id", "prefix_name", "custo_format", "number_format", "separating_char", "datains_usrid", "datains_time", "datachg_usrid", "datachg_time") VALUES (7, 'CashInfo', '资产编号', 92, 'CN', 'yyyy', '000', NULL, 'System', NULL, NULL, NULL); -INSERT INTO "counterrule" ("rule_id", "rule_name", "rule_desc", "now_id", "prefix_name", "custo_format", "number_format", "separating_char", "datains_usrid", "datains_time", "datachg_usrid", "datachg_time") VALUES (11, 'VipRuleId', '会员等级类型编号', 54, 'VR', 'yyyyMMdd', '000', '-', 'System', NULL, NULL, NULL); -INSERT INTO "counterrule" ("rule_id", "rule_name", "rule_desc", "now_id", "prefix_name", "custo_format", "number_format", "separating_char", "datains_usrid", "datains_time", "datachg_usrid", "datachg_time") VALUES (5, 'SellId', '商品编号', 87, 'ST', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (1, 'BS005', 'TS1081', '乐事薯片(原味)', 27, '20.00', '540.00', '2020-04-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (2, 'BS001', 'TS1571', '片(原味)', 1, '20.00', '0.00', '2020-08-21 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (3, 'BD001', 'TS1862', '特级DLS', 2, '40.00', '80.00', '2018-12-20 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (4, 'BD001', 'TS1239', '三只松鼠夏威夷坚果', 2, '40.00', '80.00', '2020-05-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (5, 'BS005', 'TS1081', '特级杜蕾斯', 27, '40.00', '1080.00', '2020-04-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (6, 'BD002', 'TS1816', '雪碧', 1, '2.50', '2.50', '2018-12-21 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (7, 'BD002', 'TS1816', '特级DLS', 1, '40.00', '40.00', '2018-12-21 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (8, 'BS005', 'TS1081', '青岛啤酒', 27, '15.00', '405.00', '2020-04-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (9, 'BS005', 'TS1081', '可口可乐', 31, '10.00', '310.00', '2020-04-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (10, 'HD006', 'TS1364', '居住HD0057天', 7, '4375.00', '4375.00', '2020-04-14 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (11, 'ZT002', 'TS1364', '居住HD0067天', 7, '4375.00', '4375.00', '2020-04-14 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (12, 'ZT002', 'TS1364', '可口可乐', 5, '2.50', '12.50', '2020-04-14 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (13, 'HD003', 'TS1001', '居住BD0050天', 0, '999.00', '0.00', '2020-04-26 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (14, 'BD004', 'TS1480', '火腿肠', 3, '10.00', '30.00', '2020-04-29 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (15, 'BD004', 'TS1480', '雪碧', 3, '2.50', '7.50', '2020-04-29 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (16, 'BD004', 'TS1480', '92拉菲', 2, '10800.00', '21600.00', '2020-04-29 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (17, 'HD001', 'TS1862', '康师傅方便面', 10, '10.00', '100.00', '2018-12-26 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (18, 'BD007', 'TS1002', '居住BS00865天', 65, '27625.00', '27625.00', '2020-07-05 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (19, 'BS007', 'TS1003', '居住BS00965天', 65, '27625.00', '27625.00', '2020-07-05 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (20, 'ZT005', 'TS1005', '居住HD00168天', 68, '42500.00', '42500.00', '2020-05-10 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (21, 'ZT005', 'TS1005', '特级杜蕾斯', 10, '40.00', '400.00', '2020-05-13 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (22, 'BS003', 'TS1084', '特级杜蕾斯', 20, '40.00', '800.00', '2018-12-26 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (23, 'BS007', 'TS1003', '特级杜蕾斯', 1, '40.00', '40.00', '2020-05-22 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (24, 'HS003', 'TS1194', '拉菲', 2, '10000.00', '20000.00', '2018-12-27 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (25, 'HS003', 'TS1194', '扑克牌', 2, '5.00', '10.00', '2018-12-27 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (26, 'HS003', 'TS1194', '火腿肠', 1, '10.00', '10.00', '2018-12-27 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (27, 'BD001', 'TS1365', '居住HD00247天', 47, '29375.00', '29375.00', '2020-07-19 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (28, 'BD001', 'TS1365', '香皂', 2, '25.00', '50.00', '2020-07-28 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (29, 'BD001', 'TS1365', '香皂', 2, '25.00', '50.00', '2020-07-28 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (30, 'BD001', 'TS1365', '青岛啤酒', 2, '15.00', '30.00', '2020-07-28 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (31, 'BS001', 'TS1571', 'WAHAHA', 2, '5.00', '10.00', '2020-08-21 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (32, 'BD002', 'TS1001', '三只松鼠夏威夷坚果', 12, '40.00', '480.00', '2019-10-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (33, 'BD005', 'TS1005', 'aaa', 1, '10.00', '10.00', '2020-08-22 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (34, 'ZT001', 'TS1457', '拉菲', 30, '10000.00', '300000.00', '2019-10-28 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (35, 'BD002', 'TS1001', '康师傅方便面', 1, '10.00', '10.00', '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (36, 'BD002', 'TS1001', '拉菲', 2, '10000.00', '20000.00', '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (37, 'BD002', 'TS1001', '拉菲', 2, '10000.00', '20000.00', '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (38, 'BD002', 'TS1001', '拉菲', 2, '10000.00', '20000.00', '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (39, 'BD002', 'TS1001', '拉菲', 2, '10000.00', '20000.00', '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (40, 'BD002', 'TS1001', '拉菲', 2, '10000.00', '20000.00', '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (41, 'BD002', 'TS1001', '康师傅方便面', 2, '10.00', '20.00', '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (42, 'BD002', 'TS1001', '三只松鼠夏威夷坚果', 2, '40.00', '80.00', '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (43, 'BD002', 'TS1001', '拉菲', 2, '10000.00', '20000.00', '2020-03-18 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (44, 'BD002', 'TS1001', '乐事薯片(原味)', 2, '20.00', '40.00', '2020-03-25 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (45, 'BS006', 'TS1998', '三只松鼠零食大礼包', 2, '299.00', '598.00', '2020-09-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (46, 'BD001', 'TS1862', '青岛啤酒', 2, '15.00', '30.00', '2018-12-20 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (47, 'HD001', 'TS1862', '雪碧', 5, '10.00', '50.00', '2018-12-26 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (48, 'HD001', 'TS1862', 'TS纪念品', 2, '10.00', '20.00', '2018-12-26 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (49, 'BS001', 'TS1005', '乐事薯片(原味)', 20, '20.00', '400.00', '2020-11-13 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (50, 'BS001', 'TS1005', '三只松鼠夏威夷坚果', 4, '40.00', '160.00', '2020-11-26 21:29:13', 'Settled', 0, NULL, NULL, NULL, NULL); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (51, 'HD008', 'TS1492', '92拉菲', 1, '10800.00', '10800.00', '2020-12-23 22:25:48', 'Settled', 0, NULL, NULL, 'WK010', '2022-01-30'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (52, 'HD008', 'TS1492', '92拉菲', 1, '10800.00', '10800.00', '2020-12-23 22:57:01', 'Settled', 0, NULL, NULL, 'WK010', '2022-01-30'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (53, 'BD010', 'TS1143', '雪碧', 2, '2.50', '5.00', '2021-01-24 17:02:12', 'Settled', 0, NULL, NULL, 'WK010', '2022-01-30'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (54, 'BD006', 'TS1347', '居住BD00270天', 70, '21000.00', '21000.00', '2021-02-09 18:04:21', 'Settled', 0, NULL, NULL, 'WK010', '2021-05-14'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (55, 'BD008', 'TS1812', '居住BD003共12天', 12, '3600.00', '3600.00', '2021-02-12 15:04:14', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (56, 'BD008', 'TS1812', '三只松鼠夏威夷坚果', 1, '40.00', '40.00', '2021-02-12 15:54:38', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (57, 'BD008', 'TS1812', '三只松鼠夏威夷坚果', 1, '40.00', '40.00', '2021-02-12 15:58:38', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (58, 'BD001', 'TS1074', '黄油华夫饼', 5, '80.00', '400.00', '2021-02-16 00:30:12', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (59, 'BD008', 'TS1812', 'T仔', 20, '90.00', '1800.00', '2021-02-18 17:24:58', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (60, 'BD002', 'R-2021009', '日清方便面', 10, '5.50', '55.00', '2021-03-11 22:34:40', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (61, 'BD002', 'R-2021009', '拉菲', 10, '1080.00', '10800.00', '2021-03-11 22:34:54', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (62, 'BD002', 'R-2021009', '92拉菲', 10, '10800.00', '108000.00', '2021-03-11 22:35:01', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (63, 'BD001', 'TS1074', '乐事薯片(原味)', 1, '20.00', '20.00', '2021-04-17 16:07:38', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (64, 'BD001', 'TS1074', '雪碧', 3, '2.50', '7.50', '2021-04-17 16:07:43', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (65, 'BD001', 'TS1074', '特级杜蕾斯', 3, '40.00', '120.00', '2021-04-17 16:07:52', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (66, 'BD001', 'TS1074', '可口可乐', 3, '10.00', '30.00', '2021-04-17 16:08:12', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (67, 'BD001', 'TS1074', '乐事薯片(原味)', 3, '20.00', '60.00', '2021-04-17 16:08:14', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (68, 'BD001', 'TS1074', '雪碧', 3, '2.50', '7.50', '2021-04-17 16:08:16', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (69, 'BD001', 'TS1074', '特级杜蕾斯', 3, '40.00', '120.00', '2021-04-17 16:08:19', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (70, 'BD001', 'TS1074', '可口可乐', 3, '10.00', '30.00', '2021-04-17 16:08:40', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (71, 'BD001', 'TS1074', '乐事薯片(原味)', 3, '20.00', '60.00', '2021-04-17 16:08:42', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (72, 'BD001', 'TS1074', '雪碧', 3, '2.50', '7.50', '2021-04-17 16:08:45', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (73, 'BD001', 'TS1074', '乐事薯片(原味)', 3, '20.00', '60.00', '2021-04-17 16:08:57', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (74, 'BD001', 'TS1074', '雪碧', 3, '2.50', '7.50', '2021-04-17 16:08:59', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (75, 'BD001', 'TS1074', '特级杜蕾斯', 3, '40.00', '120.00', '2021-04-17 16:09:02', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (76, 'BD001', 'TS1074', '三只松鼠夏威夷坚果', 3, '40.00', '120.00', '2021-04-17 16:09:04', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (77, 'BD002', 'R-2021009', '乐事薯片(原味)', 3, '20.00', '60.00', '2021-04-17 16:09:38', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (78, 'BD006', 'TS1347', '三只松鼠夏威夷坚果', 3, '40.00', '120.00', '2021-04-17 21:02:33', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-05-14'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (79, 'BD006', 'TS1347', '火腿肠', 5, '10.00', '50.00', '2021-04-17 21:13:30', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-05-14'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (80, 'BD006', 'TS1347', '澡巾', 5, '12.50', '62.50', '2021-04-17 21:13:36', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-05-14'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (81, 'BD006', 'TS1347', '扑克牌', 5, '5.00', '25.00', '2021-04-17 21:13:46', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-05-14'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (82, 'BD006', 'TS1347', '澡巾', 3, '12.50', '37.50', '2021-04-17 21:15:16', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-05-14'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (83, 'BD006', 'TS1347', '三只松鼠夏威夷坚果', 5, '40.00', '200.00', '2021-05-05 13:34:48', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-05-14'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (84, 'BD005', 'TS-20210068', '测试勿选', 1, '9999999.00', '9999999.00', '2021-06-06 00:07:49', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (85, 'BS004', 'TS1364', '红枣', 10, '25.00', '250.00', '2021-07-17 17:45:20', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-07-17'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (86, 'BS004', 'TS1364', 'TS纪念品', 10, '10.00', '100.00', '2021-07-17 17:45:30', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-07-17'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (87, 'BS004', 'TS1364', '92拉菲', 50, '10800.00', '540000.00', '2021-07-17 17:45:49', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-07-17'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (88, 'BD010', 'TS1143', '测试数据(勿选)', 1, '9999999.99', '9999999.99', '2021-07-19 19:44:57', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (89, 'ZT002', 'TS-20210078', '黄油华夫饼', 2, '80.00', '160.00', '2022-01-30 23:38:14', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-02-26'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (90, 'ZT002', 'TS-20210078', '92拉菲', 5, '10800.00', '54000.00', '2022-01-30 23:38:52', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-02-26'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (102, 'ZT005', 'TS-20210078', '火腿肠', 13, '10.00', '130.00', '2022-02-26 13:59:32', 'UnSettle', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO "custospend" ("SpendId", "RoomNo", "CustoNo", "SpendName", "SpendAmount", "SpendPrice", "SpendMoney", "SpendTime", "MoneyState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (150, 'ZT005', 'TS-20210078', '毛巾', 3, '10.00', '30.00', '2022-02-26 15:58:38', 'UnSettle', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO "dept" ("dept_no", "dept_name", "dept_desc", "dept_date", "dept_leader", "dept_parent", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('D-001', '经理部', '各部门经理', '2019-10-01', 'WK010', NULL, 0, 'System', '2019-10-01', NULL, NULL); -INSERT INTO "dept" ("dept_no", "dept_name", "dept_desc", "dept_date", "dept_leader", "dept_parent", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('D-002', '酒店部', '酒店部门人员', '2019-10-02', 'WK010', NULL, 0, 'System', '2019-10-02', NULL, NULL); -INSERT INTO "dept" ("dept_no", "dept_name", "dept_desc", "dept_date", "dept_leader", "dept_parent", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('D-003', '财务部', '财务部门人员', '2019-10-03', 'WK005', '', 0, 'System', '2019-10-03', '', '2021-02-17'); -INSERT INTO "dept" ("dept_no", "dept_name", "dept_desc", "dept_date", "dept_leader", "dept_parent", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('D-004', '人力资源部', '人力资源部门人员', '2019-10-04', 'WK001', '', 0, 'System', '2019-10-04', '', '2021-02-17'); -INSERT INTO "dept" ("dept_no", "dept_name", "dept_desc", "dept_date", "dept_leader", "dept_parent", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('D-005', '后勤部', '后勤部门人员', '2019-10-05', 'WK003', '', 0, 'System', '2019-10-05', '', '2021-02-17'); -INSERT INTO "dept" ("dept_no", "dept_name", "dept_desc", "dept_date", "dept_leader", "dept_parent", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('D-006', '商品部', '商品部门人员', '2019-10-06', 'WK004', 'D-006', 0, 'System', '2019-10-06', 'WK010', '2021-02-28'); -INSERT INTO "dept" ("dept_no", "dept_name", "dept_desc", "dept_date", "dept_leader", "dept_parent", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('D-007', '维修部', '维修部门人员', '2019-10-07', 'WK007', 'D-007', 0, 'System', '2019-10-07', 'WK010', '2021-02-28'); -INSERT INTO "dept" ("dept_no", "dept_name", "dept_desc", "dept_date", "dept_leader", "dept_parent", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('D-008', '内控部', '内控部门人员', '2019-10-08', NULL, '', 0, 'System', '2019-10-08', NULL, NULL); -INSERT INTO "dept" ("dept_no", "dept_name", "dept_desc", "dept_date", "dept_leader", "dept_parent", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('D-009', '监管小组', '监管小组人员', '2019-10-09', 'WK010', '', 0, 'System', '2019-10-09', 'WK009', '2021-05-29'); -INSERT INTO "dept" ("dept_no", "dept_name", "dept_desc", "dept_date", "dept_leader", "dept_parent", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('D-010', '总经办', '总经办人员', '2019-10-10', 'WK010', 'D-001', 0, 'System', '2019-10-10', 'WK010', '2021-02-28'); -INSERT INTO "dept" ("dept_no", "dept_name", "dept_desc", "dept_date", "dept_leader", "dept_parent", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('D-011', '餐饮部', '餐饮部人员', '2019-10-11', NULL, NULL, 0, 'System', '2019-10-11', NULL, NULL); -INSERT INTO "dept" ("dept_no", "dept_name", "dept_desc", "dept_date", "dept_leader", "dept_parent", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('D-20210034', '测试测试', '测试测试', '2021-02-17', 'Shenyou', '', 1, NULL, '0001-01-01', '', '2021-05-30'); -INSERT INTO "dept" ("dept_no", "dept_name", "dept_desc", "dept_date", "dept_leader", "dept_parent", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('D-20210087', '测试', '测试', '2021-05-30', 'Duyen', 'D-001', 1, NULL, '0001-01-01', '', '2021-05-30'); -INSERT INTO "dept" ("dept_no", "dept_name", "dept_desc", "dept_date", "dept_leader", "dept_parent", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('D-202200114', 'IT技术部', '维护酒店管理系统安全及更新', '2022-01-31', 'WK005', 'D-001', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO "education" ("education_no", "education_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('E-00001', '小学', 0, 'System', '2021-01-31', '', '2021-06-27'); -INSERT INTO "education" ("education_no", "education_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('E-00002', '初中', 0, 'System', '2021-02-01', 'System', '2021-02-01'); -INSERT INTO "education" ("education_no", "education_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('E-00003', '高中', 0, 'System', '2021-02-02', 'System', '2021-02-02'); -INSERT INTO "education" ("education_no", "education_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('E-00004', '中专', 0, 'System', '2021-02-03', 'WK009', '2021-05-29'); -INSERT INTO "education" ("education_no", "education_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('E-00005', '大专', 0, 'System', '2021-02-04', 'System', '2021-02-04'); -INSERT INTO "education" ("education_no", "education_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('E-00006', '本科', 0, 'System', '2021-02-05', 'System', '2021-02-05'); -INSERT INTO "education" ("education_no", "education_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('E-00007', '研究生', 0, 'System', '2021-02-06', 'System', '2021-02-06'); -INSERT INTO "education" ("education_no", "education_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('E-00008', '博士', 0, 'System', '2021-02-07', '', '2022-02-26'); -INSERT INTO "education" ("education_no", "education_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('E-202101', '硕士', 0, 'admin', '2021-05-10', '', '2022-02-26'); -INSERT INTO "education" ("education_no", "education_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('E-00009', '博士后', 0, 'System', '2021-02-08', '', '2022-02-26'); -INSERT INTO "fonts" ("FontsId", "FontsMess", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (1, '本酒店即日起与闪修平台联合推出“多修多折”活动,详情请咨询前台!', 0, NULL, NULL, NULL, NULL); -INSERT INTO "fonts" ("FontsId", "FontsMess", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (2, '本酒店即日起与神之食餐厅联合推出“吃多折多”活动,详情请咨询前台!', 0, NULL, NULL, NULL, NULL); -INSERT INTO "fonts" ("FontsId", "FontsMess", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (3, '本酒店即日起与Second网吧联合推出“免费体验酒店式网吧”活动,详情请咨询前台!', 0, NULL, NULL, NULL, NULL); -INSERT INTO "gbtype" ("GBTypeId", "GBName", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (0, '奖励', 0, NULL, NULL, NULL, NULL); -INSERT INTO "gbtype" ("GBTypeId", "GBName", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (1, '惩罚', 0, NULL, NULL, NULL, NULL); -INSERT INTO "module" ("module_id", "module_name", "module_desc", "delete_mk", "datains_usr", "datains_time", "datachg_usr", "datachg_time") VALUES (1, 'BaseInfo', NULL, 0, NULL, NULL, NULL, NULL); -INSERT INTO "module" ("module_id", "module_name", "module_desc", "delete_mk", "datains_usr", "datains_time", "datachg_usr", "datachg_time") VALUES (2, 'CashInfo', NULL, 0, NULL, NULL, NULL, NULL); -INSERT INTO "module" ("module_id", "module_name", "module_desc", "delete_mk", "datains_usr", "datains_time", "datachg_usr", "datachg_time") VALUES (3, 'WtiInfo', NULL, 0, NULL, NULL, NULL, NULL); -INSERT INTO "module" ("module_id", "module_name", "module_desc", "delete_mk", "datains_usr", "datains_time", "datachg_usr", "datachg_time") VALUES (4, 'CheckInfo', NULL, 0, NULL, NULL, NULL, NULL); -INSERT INTO "module" ("module_id", "module_name", "module_desc", "delete_mk", "datains_usr", "datains_time", "datachg_usr", "datachg_time") VALUES (5, 'RoomManager', NULL, 0, NULL, NULL, NULL, NULL); -INSERT INTO "module" ("module_id", "module_name", "module_desc", "delete_mk", "datains_usr", "datains_time", "datachg_usr", "datachg_time") VALUES (6, 'CustomerManager', NULL, 0, NULL, NULL, NULL, NULL); -INSERT INTO "module" ("module_id", "module_name", "module_desc", "delete_mk", "datains_usr", "datains_time", "datachg_usr", "datachg_time") VALUES (7, 'HumanResourcesManager', NULL, 0, NULL, NULL, NULL, NULL); -INSERT INTO "module" ("module_id", "module_name", "module_desc", "delete_mk", "datains_usr", "datains_time", "datachg_usr", "datachg_time") VALUES (8, 'MaterialManager', NULL, 0, NULL, NULL, NULL, NULL); -INSERT INTO "module" ("module_id", "module_name", "module_desc", "delete_mk", "datains_usr", "datains_time", "datachg_usr", "datachg_time") VALUES (9, 'OperationLogManager', NULL, 0, NULL, NULL, NULL, NULL); -INSERT INTO "module" ("module_id", "module_name", "module_desc", "delete_mk", "datains_usr", "datains_time", "datachg_usr", "datachg_time") VALUES (10, 'AdminManager', NULL, 0, NULL, NULL, NULL, NULL); -INSERT INTO "module_zero" ("module_id", "admin_account", "module_name", "module_enable") VALUES (1, 'admin', 'BaseInfo', 1); -INSERT INTO "module_zero" ("module_id", "admin_account", "module_name", "module_enable") VALUES (2, 'admin', 'CashInfo', 1); -INSERT INTO "module_zero" ("module_id", "admin_account", "module_name", "module_enable") VALUES (3, 'admin', 'WtiInfo', 1); -INSERT INTO "module_zero" ("module_id", "admin_account", "module_name", "module_enable") VALUES (4, 'admin', 'CheckInfo', 1); -INSERT INTO "module_zero" ("module_id", "admin_account", "module_name", "module_enable") VALUES (5, 'admin', 'RoomManager', 1); -INSERT INTO "module_zero" ("module_id", "admin_account", "module_name", "module_enable") VALUES (6, 'admin', 'CustomerManager', 1); -INSERT INTO "module_zero" ("module_id", "admin_account", "module_name", "module_enable") VALUES (7, 'admin', 'HumanResourcesManager', 1); -INSERT INTO "module_zero" ("module_id", "admin_account", "module_name", "module_enable") VALUES (8, 'admin', 'MaterialManager', 1); -INSERT INTO "module_zero" ("module_id", "admin_account", "module_name", "module_enable") VALUES (9, 'admin', 'OperationLogManager', 1); -INSERT INTO "module_zero" ("module_id", "admin_account", "module_name", "module_enable") VALUES (10, 'admin', 'AdminManager', 1); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00001', '汉族', 0, 'System', '2021-01-31', '', '2021-02-07'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00002', '满族', 0, 'System', '2021-02-01', 'System', '2021-02-01'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00003', '蒙古族', 0, 'System', '2021-02-02', 'System', '2021-02-02'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00004', '回族', 0, 'System', '2021-02-03', '', '2021-02-11'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00005', '藏族', 0, 'System', '2021-02-04', 'System', '2021-02-04'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00006', '维吾尔族', 0, 'System', '2021-02-05', '', '2021-02-01'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00007', '苗族', 0, 'System', '2021-02-06', 'System', '2021-02-06'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00008', '彝族', 0, 'System', '2021-02-07', '', '2021-06-29'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00009', '壮族', 0, 'System', '2021-02-08', 'System', '2021-02-08'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00010', '布依族', 0, 'System', '2021-02-09', '', '2021-02-01'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00011', '侗族', 0, 'System', '2021-02-10', 'System', '2021-02-10'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00012', '瑶族', 0, 'System', '2021-02-11', 'System', '2021-02-11'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00013', '白族', 0, 'System', '2021-02-12', 'WK010', '2021-02-17'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00014', '土家族', 0, 'System', '2021-02-13', 'System', '2021-02-13'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00015', '哈尼族', 0, 'System', '2021-02-14', 'System', '2021-02-14'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00016', '哈萨克族', 0, 'System', '2021-02-15', 'System', '2021-02-15'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00017', '傣族', 0, 'System', '2021-02-16', 'System', '2021-02-16'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00018', '黎族', 0, 'System', '2021-02-17', 'System', '2021-02-17'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00019', '傈僳族', 0, 'System', '2021-02-18', '', '2021-02-11'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00020', '佤族', 0, 'System', '2021-02-19', 'System', '2021-02-19'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00021', '畲族', 0, 'System', '2021-02-20', 'System', '2021-02-20'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00022', '高山族', 0, 'System', '2021-02-21', 'System', '2021-02-21'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00023', '拉祜族', 0, 'System', '2021-02-22', 'System', '2021-02-22'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00024', '水族', 0, 'System', '2021-02-23', 'System', '2021-02-23'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00025', '东乡族', 0, 'System', '2021-02-24', 'System', '2021-02-24'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00026', '纳西族', 0, 'System', '2021-02-25', 'System', '2021-02-25'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00027', '景颇族', 0, 'System', '2021-02-26', 'System', '2021-02-26'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00028', '柯尔克孜族', 0, 'System', '2021-02-27', 'System', '2021-02-27'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00029', '土族', 0, 'System', '2021-02-28', 'System', '2021-02-28'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00030', '达斡尔族', 0, 'System', '2021-03-01', 'System', '2021-03-01'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00031', '仫佬族', 0, 'System', '2021-03-02', 'System', '2021-03-02'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00032', '羌族', 0, 'System', '2021-03-03', 'System', '2021-03-03'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00033', '布朗族', 0, 'System', '2021-03-04', 'System', '2021-03-04'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00034', '撒拉族', 0, 'System', '2021-03-05', 'System', '2021-03-05'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00035', '毛南族', 0, 'System', '2021-03-06', 'System', '2021-03-06'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00036', '仡佬族', 0, 'System', '2021-03-07', 'System', '2021-03-07'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00037', '锡伯族', 0, 'System', '2021-03-08', 'System', '2021-03-08'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00038', '阿昌族', 0, 'System', '2021-03-09', 'System', '2021-03-09'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00039', '普米族', 0, 'System', '2021-03-10', 'System', '2021-03-10'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00040', '朝鲜族', 0, 'System', '2021-03-11', 'System', '2021-03-11'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00041', '塔吉克族', 0, 'System', '2021-03-12', 'System', '2021-03-12'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00042', '怒族', 0, 'System', '2021-03-13', 'System', '2021-03-13'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00043', '乌孜别克族', 0, 'System', '2021-03-14', 'System', '2021-03-14'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00044', '俄罗斯族', 0, 'System', '2021-03-15', 'System', '2021-03-15'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00045', '鄂温克族', 0, 'System', '2021-03-16', 'System', '2021-03-16'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00046', '德昂族', 0, 'System', '2021-03-17', 'System', '2021-03-17'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00047', '保安族', 0, 'System', '2021-03-18', 'System', '2021-03-18'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00048', '裕固族', 0, 'System', '2021-03-19', 'System', '2021-03-19'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00049', '京族', 0, 'System', '2021-03-20', 'System', '2021-03-20'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00050', '塔塔尔族', 0, 'System', '2021-03-21', '', '2021-02-11'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00051', '独龙族', 0, 'System', '2021-03-22', 'System', '2021-03-22'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00052', '鄂伦春族', 0, 'System', '2021-03-23', 'System', '2021-03-23'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00053', '赫哲族', 0, 'System', '2021-03-24', 'System', '2021-03-24'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00054', '门巴族', 0, 'System', '2021-03-25', 'System', '2021-03-25'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00055', '珞巴族', 0, 'System', '2021-03-26', '', '2021-05-10'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-00056', '基诺族', 0, 'System', '2021-03-27', '', '2021-05-10'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-2022005', '大和民族', 0, 'admin', '2022-02-01', '', '2022-02-26'); -INSERT INTO "nation" ("nation_no", "nation_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('N-2022006', '大韩民族', 0, 'admin', '2022-02-26', NULL, NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (55, '2022-02-20 13:43:58', 'admin-杨俊杰在2022/2/20 13:43:57位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-20 13:43:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (56, '2022-02-20 20:05:40', 'WK010-杨俊杰在2022/2/20 20:05:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-20 20:05:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (57, '2022-02-20 20:43:48', 'admin-杨俊杰在2022/2/20 20:43:48位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-20 20:43:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (58, '2022-02-21 17:23:44', 'admin-杨俊杰在2022-02-21 17:23:43位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-21 17:23:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (59, '2022-02-21 17:24:18', 'admin-杨俊杰在2022-02-21 17:24:17位于1.5.0.7执行:新增职位类型操作!新增值为:P-2022006', 'admin', 200, 0, 'admin', '2022-02-21 17:24:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (60, '2022-02-21 20:29:44', 'WK010-杨俊杰在2022/2/21 20:29:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-21 20:29:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (62, '2022-02-21 20:29:54', 'SqlSugar.SqlSugarException: 23505: 重复键违反唯一约束"workercheck_pkey"', 'WK010', 300, 0, 'WK010', '2022-02-21 20:29:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (64, '2022-02-21 20:30:00', 'SqlSugar.SqlSugarException: 23505: 重复键违反唯一约束"workercheck_pkey"', 'WK010', 300, 0, 'WK010', '2022-02-21 20:30:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (65, '2022-02-21 20:31:16', 'WK010-杨俊杰在2022/2/21 20:31:15位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-21 20:31:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (67, '2022-02-22 23:11:35', 'admin-杨俊杰在2022/2/22 23:11:35位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-22 23:11:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (68, '2022-02-22 23:12:36', 'WK010-杨俊杰在2022/2/22 23:12:35位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-22 23:12:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (69, '2022-02-22 23:13:12', 'SqlSugar.SqlSugarException: 42804: 字段 "WtiNo" 的类型为 integer, 但表达式的类型为 text', 'WK010', 300, 0, 'WK010', '2022-02-22 23:13:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (70, '2022-02-22 23:13:19', 'SqlSugar.SqlSugarException: 42804: 字段 "WtiNo" 的类型为 integer, 但表达式的类型为 text', 'WK010', 300, 0, 'WK010', '2022-02-22 23:13:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (71, '2022-02-22 23:15:11', 'SqlSugar.SqlSugarException: 23502: null value in column "WtiNo" of relation "wtinfo" violates not-null constraint', 'WK010', 300, 0, 'WK010', '2022-02-22 23:15:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (73, '2022-02-23 23:17:30', 'admin-杨俊杰在2022/2/23 23:17:29位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-23 23:17:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (74, '2022-02-25 22:13:25', 'WK010-杨俊杰在2022/2/25 22:13:25位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-25 22:13:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (76, '2022-02-26 11:53:17', 'admin-杨俊杰在2022/2/26 11:53:17位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 11:53:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (77, '2022-02-26 11:54:54', 'admin-杨俊杰在2022/2/26 11:54:53位于1.5.0.7执行:删除学历类型操作!删除值为:E-00008', 'admin', 200, 0, 'admin', '2022-02-26 11:54:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (78, '2022-02-26 11:54:57', 'admin-杨俊杰在2022/2/26 11:54:57位于1.5.0.7执行:删除学历类型操作!删除值为:E-202101', 'admin', 200, 0, 'admin', '2022-02-26 11:54:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (79, '2022-02-26 11:55:00', 'admin-杨俊杰在2022/2/26 11:55:00位于1.5.0.7执行:删除学历类型操作!删除值为:E-00009', 'admin', 200, 0, 'admin', '2022-02-26 11:55:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (80, '2022-02-26 12:19:59', 'WK010-杨俊杰在2022/2/26 12:19:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 12:19:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (81, '2022-02-26 12:20:22', 'SqlSugar.SqlSugarException: 42804: 字段 "WtiNo" 的类型为 integer, 但表达式的类型为 text', 'WK010', 300, 0, 'WK010', '2022-02-26 12:20:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (82, '2022-02-26 12:21:04', 'WK010-杨俊杰在2022/2/26 12:21:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 12:21:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (83, '2022-02-26 12:22:00', 'SqlSugar.SqlSugarException: 42804: 字段 "WtiNo" 的类型为 integer, 但表达式的类型为 text', 'WK010', 300, 0, 'WK010', '2022-02-26 12:22:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (84, '2022-02-26 12:28:05', 'WK010-杨俊杰在2022/2/26 12:28:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 12:28:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (85, '2022-02-26 12:28:45', '经理部-总经理-杨俊杰于2022/2/26 12:28:44帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-02-26 12:28:45', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (87, '2022-02-26 12:29:23', '经理部-总经理-杨俊杰于2022/2/26 12:29:22帮助TS-20210078进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-02-26 12:29:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (88, '2022-02-26 12:29:41', '经理部-总经理-杨俊杰于2022/2/26 12:29:40帮助TS-20220089进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-02-26 12:29:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (89, '2022-02-26 12:29:57', '经理部-总经理-杨俊杰于2022/2/26 12:29:56帮助TS-20220090进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-02-26 12:29:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (90, '2022-02-26 12:30:12', '经理部-总经理-杨俊杰于2022/2/26 12:30:11帮助TS-20220099进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-02-26 12:30:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (91, '2022-02-26 12:31:08', 'WK010-杨俊杰在2022/2/26 12:31:08位于1.5.0.7执行:添加了一名客户,客户编号为:TS-202200136', 'WK010', 300, 0, 'WK010', '2022-02-26 12:31:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (92, '2022-02-26 13:33:18', 'WK010-杨俊杰在2022/2/26 13:33:18位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:33:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (93, '2022-02-26 13:33:43', 'admin-杨俊杰在2022/2/26 13:33:43位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 13:33:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (94, '2022-02-26 13:38:52', 'WK010-杨俊杰在2022/2/26 13:38:51位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:38:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (95, '2022-02-26 13:39:54', 'WK010-杨俊杰在2022/2/26 13:39:53位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:39:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (96, '2022-02-26 13:40:17', 'WK010-杨俊杰在2022/2/26 13:40:17位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:40:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (97, '2022-02-26 13:51:19', 'WK010-杨俊杰在2022/2/26 13:51:18位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:51:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (98, '2022-02-26 13:53:19', 'WK010-杨俊杰在2022/2/26 13:53:18位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:53:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (100, '2022-02-26 13:54:46', 'WK010-杨俊杰在2022/2/26 13:54:45位于1.5.0.7执行:帮助TS-20210078进行了消费商品:乐事薯片(原味)操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 13:54:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (101, '2022-02-26 13:59:10', 'WK010-杨俊杰在2022/2/26 13:59:09位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:59:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (103, '2022-02-26 13:59:34', 'WK010-杨俊杰在2022/2/26 13:59:34位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 13:59:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (104, '2022-02-26 14:22:12', 'WK010-杨俊杰在2022/2/26 14:22:11位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:22:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (105, '2022-02-26 14:22:49', 'WK010-杨俊杰在2022/2/26 14:22:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:22:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (106, '2022-02-26 14:24:34', 'WK010-杨俊杰在2022/2/26 14:24:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:24:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (107, '2022-02-26 14:26:30', 'WK010-杨俊杰在2022/2/26 14:26:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:26:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (108, '2022-02-26 14:27:59', 'WK010-杨俊杰在2022/2/26 14:27:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:27:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (109, '2022-02-26 14:31:00', 'WK010-杨俊杰在2022/2/26 14:30:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:31:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (110, '2022-02-26 14:36:26', 'WK010-杨俊杰在2022/2/26 14:36:25位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:36:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (112, '2022-02-26 14:37:06', 'SqlSugar.SqlSugarException: 23502: null value in column "SellName" of relation "sellthing" violates not-null constraint', 'WK010', 300, 0, 'WK010', '2022-02-26 14:37:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (113, '2022-02-26 14:37:25', 'WK010-杨俊杰在2022/2/26 14:37:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:37:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (115, '2022-02-26 14:38:04', 'SqlSugar.SqlSugarException: 23502: null value in column "SellName" of relation "sellthing" violates not-null constraint', 'WK010', 300, 0, 'WK010', '2022-02-26 14:38:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (116, '2022-02-26 14:46:52', 'WK010-杨俊杰在2022/2/26 14:46:51位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:46:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (118, '2022-02-26 14:47:15', 'WK010-杨俊杰在2022/2/26 14:47:15位于1.5.0.7执行:帮助TS-20210078进行了消费商品:毛巾操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 14:47:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (119, '2022-02-26 14:52:54', 'WK010-杨俊杰在2022/2/26 14:52:53位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:52:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (120, '2022-02-26 14:58:06', 'WK010-杨俊杰在2022/2/26 14:58:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:58:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (121, '2022-02-26 14:58:56', 'WK010-杨俊杰在2022/2/26 14:58:55位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:58:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (122, '2022-02-26 15:00:16', 'WK010-杨俊杰在2022/2/26 15:00:16位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:00:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (123, '2022-02-26 15:00:49', 'WK010-杨俊杰在2022/2/26 15:00:49位于1.5.0.7执行:帮助TS-20210078撤销了消费商品:操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:00:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (124, '2022-02-26 15:20:40', 'WK010-杨俊杰在2022/2/26 15:20:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:20:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (125, '2022-02-26 15:21:54', 'WK010-杨俊杰在2022/2/26 15:21:54位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:21:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (126, '2022-02-26 15:23:35', 'WK010-杨俊杰在2022/2/26 15:23:35位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:23:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (127, '2022-02-26 15:24:04', 'WK010-杨俊杰在2022/2/26 15:24:03位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:24:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (128, '2022-02-26 15:27:25', 'WK010-杨俊杰在2022/2/26 15:27:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:27:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (129, '2022-02-26 15:27:46', 'SqlSugar.SqlSugarException: 42601: 语法错误 在 ""SpendPrice"" 或附近的', 'WK010', 300, 0, 'WK010', '2022-02-26 15:27:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (130, '2022-02-26 15:27:57', 'WK010-杨俊杰在2022/2/26 15:27:56位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:27:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (131, '2022-02-26 15:28:29', 'SqlSugar.SqlSugarException: 42601: 语法错误 在 ""SpendPrice"" 或附近的', 'WK010', 300, 0, 'WK010', '2022-02-26 15:28:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (132, '2022-02-26 15:28:58', 'WK010-杨俊杰在2022/2/26 15:28:57位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:28:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (133, '2022-02-26 15:29:15', 'SqlSugar.SqlSugarException: 42601: 语法错误 在 "$3" 或附近的', 'WK010', 300, 0, 'WK010', '2022-02-26 15:29:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (134, '2022-02-26 15:29:49', 'WK010-杨俊杰在2022/2/26 15:29:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:29:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (135, '2022-02-26 15:32:04', 'SqlSugar.SqlSugarException: 42601: 语法错误 在 "$3" 或附近的', 'WK010', 300, 0, 'WK010', '2022-02-26 15:32:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (136, '2022-02-26 15:34:30', 'WK010-杨俊杰在2022/2/26 15:34:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:34:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (137, '2022-02-26 15:36:01', 'WK010-杨俊杰在2022/2/26 15:36:00位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:36:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (138, '2022-02-26 15:37:14', 'WK010-杨俊杰在2022/2/26 15:37:13位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:37:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (139, '2022-02-26 15:39:14', 'WK010-杨俊杰在2022/2/26 15:39:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:39:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (140, '2022-02-26 15:40:18', 'WK010-杨俊杰在2022/2/26 15:40:18位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:40:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (141, '2022-02-26 15:47:03', 'WK010-杨俊杰在2022/2/26 15:47:03位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:47:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (142, '2022-02-26 15:48:27', 'WK010-杨俊杰在2022/2/26 15:48:26位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:48:27', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (143, '2022-02-26 15:48:54', 'WK010-杨俊杰在2022/2/26 15:48:53位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:48:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (144, '2022-02-26 15:50:40', 'WK010-杨俊杰在2022/2/26 15:50:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:50:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (145, '2022-02-26 15:52:28', 'WK010-杨俊杰在2022/2/26 15:52:28位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:52:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (146, '2022-02-26 15:53:06', 'WK010-杨俊杰在2022/2/26 15:53:05位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:53:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (147, '2022-02-26 15:55:23', 'WK010-杨俊杰在2022/2/26 15:55:23位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:55:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (148, '2022-02-26 15:55:43', 'WK010-杨俊杰在2022/2/26 15:55:43位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:55:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (149, '2022-02-26 15:58:23', 'WK010-杨俊杰在2022/2/26 15:58:22位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:58:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (151, '2022-02-26 15:58:40', 'WK010-杨俊杰在2022/2/26 15:58:40位于1.5.0.7执行:帮助TS-20210078进行了消费商品:毛巾操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:58:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (152, '2022-02-26 15:58:54', 'WK010-杨俊杰在2022/2/26 15:58:53位于1.5.0.7执行:帮助TS-20210078进行了消费商品:毛巾操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:58:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (153, '2022-02-26 15:59:34', 'WK010-杨俊杰在2022/2/26 15:59:34位于1.5.0.7执行:修改了一名客户信息,客户编号为:TS-20220099', 'WK010', 300, 0, 'WK010', '2022-02-26 15:59:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (154, '2022-02-26 16:02:33', 'WK010-杨俊杰在2022/2/26 16:02:33位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:02:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (155, '2022-02-26 16:03:29', 'WK010-杨俊杰在2022/2/26 16:03:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:03:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (156, '2022-02-26 16:04:46', 'WK010-杨俊杰在2022/2/26 16:04:45位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:04:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (157, '2022-02-26 16:06:30', 'WK010-杨俊杰在2022/2/26 16:06:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:06:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (158, '2022-02-26 16:08:18', 'WK010-杨俊杰在2022/2/26 16:08:18位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:08:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (159, '2022-02-26 16:09:01', 'WK010-杨俊杰在2022/2/26 16:09:00位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:09:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (160, '2022-02-26 16:09:23', 'WK010-杨俊杰在2022/2/26 16:09:22位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:09:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (161, '2022-02-26 16:10:38', 'WK010-杨俊杰在2022/2/26 16:10:38位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:10:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (162, '2022-02-26 16:13:00', 'WK010-杨俊杰在2022/2/26 16:12:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:13:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (163, '2022-02-26 16:15:31', 'WK010-杨俊杰在2022/2/26 16:15:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:15:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (164, '2022-02-26 16:17:50', 'WK010-杨俊杰在2022/2/26 16:17:50位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:17:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (165, '2022-02-26 16:20:22', 'WK010-杨俊杰在2022/2/26 16:20:21位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:20:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (166, '2022-02-26 16:21:31', 'WK010-杨俊杰在2022/2/26 16:21:31位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:21:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (167, '2022-02-26 16:47:30', 'WK010-杨俊杰在2022/2/26 16:47:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:47:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (168, '2022-02-26 16:48:22', 'SqlSugar.SqlSugarException: 22001: 对于可变字符类型来说,值太长了(11)', 'WK010', 300, 0, 'WK010', '2022-02-26 16:48:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (169, '2022-02-26 16:49:35', 'WK010-杨俊杰在2022/2/26 16:49:35位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:49:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (170, '2022-02-26 16:50:30', 'SqlSugar.SqlSugarException: 22001: 对于可变字符类型来说,值太长了(11)', 'WK010', 300, 0, 'WK010', '2022-02-26 16:50:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (171, '2022-02-26 16:51:19', 'WK010-杨俊杰在2022/2/26 16:51:19位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:51:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (172, '2022-02-26 16:51:40', 'SqlSugar.SqlSugarException: 22001: 对于可变字符类型来说,值太长了(11)', 'WK010', 300, 0, 'WK010', '2022-02-26 16:51:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (173, '2022-02-26 16:52:59', 'WK010-杨俊杰在2022/2/26 16:52:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:52:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (174, '2022-02-26 16:53:19', 'SqlSugar.SqlSugarException: 22001: 对于可变字符类型来说,值太长了(20)', 'WK010', 300, 0, 'WK010', '2022-02-26 16:53:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (175, '2022-02-26 16:54:41', 'WK010-杨俊杰在2022/2/26 16:54:41位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:54:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (176, '2022-02-26 16:55:06', '经理部总经理杨俊杰于2022/2/26 16:55:06帮助21321313213进行了预订房间操作!', 'WK010', 100, 0, 'WK010', '2022-02-26 16:55:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (177, '2022-02-26 17:01:13', 'admin-杨俊杰在2022/2/26 17:01:12位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:01:13', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (178, '2022-02-26 17:01:21', 'admin-杨俊杰在2022/2/26 17:01:20位于1.5.0.7执行:删除职位类型操作!删除值为:P-2022006', 'admin', 200, 0, 'admin', '2022-02-26 17:01:21', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (179, '2022-02-26 17:01:39', 'admin-杨俊杰在2022/2/26 17:01:38位于1.5.0.7执行:恢复学历类型操作!删除值为:E-00008', 'admin', 200, 0, 'admin', '2022-02-26 17:01:39', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (180, '2022-02-26 17:01:44', 'admin-杨俊杰在2022/2/26 17:01:43位于1.5.0.7执行:恢复学历类型操作!删除值为:E-202101', 'admin', 200, 0, 'admin', '2022-02-26 17:01:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (181, '2022-02-26 17:01:46', 'admin-杨俊杰在2022/2/26 17:01:45位于1.5.0.7执行:恢复学历类型操作!删除值为:E-00009', 'admin', 200, 0, 'admin', '2022-02-26 17:01:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (182, '2022-02-26 17:03:19', 'admin-杨俊杰在2022/2/26 17:03:18位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:03:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (183, '2022-02-26 17:04:13', 'admin-杨俊杰在2022/2/26 17:04:13位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:04:13', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (184, '2022-02-26 17:10:47', 'admin-杨俊杰在2022/2/26 17:10:47位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:10:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (185, '2022-02-26 17:12:36', 'admin-杨俊杰在2022/2/26 17:12:35位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:12:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (186, '2022-02-26 17:14:43', 'admin-杨俊杰在2022/2/26 17:14:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:14:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (187, '2022-02-26 17:15:52', 'admin-杨俊杰在2022/2/26 17:15:52位于1.5.0.7执行:添加会员规则操作!新增值为:VR-2022022600052', 'admin', 200, 0, 'admin', '2022-02-26 17:15:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (188, '2022-02-26 17:22:44', 'WK010-杨俊杰在2022/2/26 17:22:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 17:22:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (189, '2022-02-26 17:22:57', 'admin-杨俊杰在2022/2/26 17:22:57位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:22:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (190, '2022-02-26 17:36:42', 'admin-杨俊杰在2022/2/26 17:36:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:36:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (191, '2022-02-26 17:36:52', 'admin-杨俊杰在2022/2/26 17:36:52位于1.5.0.7执行:恢复职位类型操作!恢复值为:P-2022006', 'admin', 200, 0, 'admin', '2022-02-26 17:36:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (192, '2022-02-26 17:36:55', 'admin-杨俊杰在2022/2/26 17:36:55位于1.5.0.7执行:删除职位类型操作!删除值为:P-2022006', 'admin', 200, 0, 'admin', '2022-02-26 17:36:55', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (193, '2022-02-26 17:40:21', 'admin-杨俊杰在2022/2/26 17:40:21位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:40:21', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (194, '2022-02-26 17:49:47', 'admin-杨俊杰在2022/2/26 17:49:46位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:49:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (195, '2022-02-26 17:51:08', 'admin-杨俊杰在2022/2/26 17:51:08位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:51:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (196, '2022-02-26 17:57:30', 'admin-杨俊杰在2022/2/26 17:57:30位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:57:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (197, '2022-02-26 17:57:44', 'admin-杨俊杰在2022/2/26 17:57:44位于1.5.0.7执行:删除民族类型操作!删除值为:N-2022005', 'admin', 200, 0, 'admin', '2022-02-26 17:57:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (198, '2022-02-26 17:57:49', 'admin-杨俊杰在2022/2/26 17:57:48位于1.5.0.7执行:恢复民族类型操作!恢复值为:N-2022005', 'admin', 200, 0, 'admin', '2022-02-26 17:57:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (199, '2022-02-26 18:39:36', 'admin-杨俊杰在2022/2/26 18:39:35位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 18:39:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (200, '2022-02-26 18:40:42', 'admin-杨俊杰在2022/2/26 18:40:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 18:40:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (201, '2022-02-26 18:53:34', 'admin-杨俊杰在2022/2/26 18:53:34位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 18:53:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (202, '2022-02-26 18:54:48', 'admin-杨俊杰在2022/2/26 18:54:48位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 18:54:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (203, '2022-02-26 18:58:04', 'admin-杨俊杰在2022/2/26 18:58:03位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 18:58:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (204, '2022-02-26 19:30:36', 'admin-杨俊杰在2022/2/26 19:30:35位于1.5.0.7执行:新增民族类型操作!新增值为:N-2022006', 'admin', 200, 0, 'admin', '2022-02-26 19:30:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "operationlog" ("OperationId", "OperationTime", "LogContent", "OperationAccount", "OperationLevel", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "SoftwareVersion", "login_ip") VALUES (205, '2022-02-26 19:31:41', 'admin-杨俊杰在2022/2/26 19:31:41位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 19:31:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); -INSERT INTO "passporttype" ("PassportId", "PassportName", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (0, '中国居民身份证', 0, NULL, NULL, NULL, NULL); -INSERT INTO "passporttype" ("PassportId", "PassportName", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (1, '港澳通行证', 0, NULL, NULL, NULL, NULL); -INSERT INTO "passporttype" ("PassportId", "PassportName", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (2, '台胞证', 0, NULL, NULL, NULL, NULL); -INSERT INTO "passporttype" ("PassportId", "PassportName", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (3, '军官证', 0, NULL, NULL, NULL, NULL); -INSERT INTO "passporttype" ("PassportId", "PassportName", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (4, '外国护照', 0, NULL, NULL, NULL, NULL); -INSERT INTO "position" ("position_no", "position_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('P-0001', '总经理', 0, 'System', '2021-01-31', 'System', '2021-01-31'); -INSERT INTO "position" ("position_no", "position_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('P-0002', '经理', 0, 'System', '2021-02-01', 'System', '2021-02-01'); -INSERT INTO "position" ("position_no", "position_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('P-0003', '职员', 0, 'System', '2021-02-02', 'System', '2021-02-02'); -INSERT INTO "position" ("position_no", "position_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('P-0004', '监管组长', 0, 'System', '2021-02-03', 'System', '2021-02-03'); -INSERT INTO "position" ("position_no", "position_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('P-0005', '监管组员', 0, 'System', '2021-02-04', '', '2022-01-05'); -INSERT INTO "position" ("position_no", "position_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('P-2021001', '主管', 0, 'admin', '2021-02-17', NULL, '0001-01-01'); -INSERT INTO "position" ("position_no", "position_name", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('P-2022006', '新增职位类型', 1, 'admin', '2022-02-21', '', '2022-02-26'); -INSERT INTO "reser" ("ReserId", "CustoName", "CustoTel", "ReserWay", "ReserRoom", "ReserDate", "ReserEndDay", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('R-20220023', '李风云', 'oWDsXA5wN0Ajgi7r9s9KfNqA5YqNeYTO7STOM9ITM+/2ES7fUuhZQLfucI0VXUTgeKvx/IDSwGJ0nJNAIX3roVd3yK9YNmb1ISE1usXKJhvtKGasw8bcX8jbmIg1JPG3cEx7g0mVxMOZC5Fd9LcG88wscn7ZLbczO2nkgYHAC+Y=·FHiFc☆giHHFFgF☆DaDD(c2f1d5f07872d835)', '前台', 'BD001', '2022-02-26', '2022-03-01', 0, 'WK010', '2022-02-26', NULL, '0001-01-01'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BD002', 0, NULL, NULL, '2021-05-28 08:52:31', 0, '300.00', 'A层', 0, 'WK010', NULL, 'WK010', '2021-06-23', '120.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BD003', 0, NULL, NULL, '2021-10-20 22:48:06', 3, '300.00', 'A层', 0, 'WK010', NULL, 'WK010', '2021-05-13', '120.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BD004', 0, NULL, NULL, '2021-04-13 22:23:51', 3, '300.00', 'A层', 0, NULL, NULL, NULL, NULL, '120.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BD005', 0, NULL, NULL, '2022-01-30 23:25:57', 3, '300.00', 'A层', 0, 'WK010', NULL, 'WK010', '2021-05-13', '120.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BD006', 0, NULL, NULL, '2021-05-14 22:51:15', 3, '300.00', 'A层', 0, NULL, NULL, NULL, NULL, '120.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BD007', 0, NULL, NULL, '2020-05-27 08:32:18', 0, '300.00', 'A层', 0, NULL, NULL, NULL, NULL, '120.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BD008', 0, NULL, NULL, '2022-01-30 23:26:16', 3, '300.00', 'A层', 0, NULL, NULL, NULL, NULL, '120.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BD009', 0, NULL, NULL, '2020-06-02 11:35:07', 0, '300.00', 'A层', 0, NULL, NULL, NULL, NULL, '120.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BD010', 0, NULL, NULL, '2022-01-30 23:26:40', 3, '300.00', 'A层', 0, NULL, NULL, NULL, NULL, '120.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BD011', 0, NULL, NULL, '2022-01-30 23:26:57', 3, '300.00', 'A层', 0, '', '2021-02-13', NULL, '0001-01-01', '120.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BD012', 0, NULL, NULL, NULL, 0, '300.00', 'A层', 0, '', '2021-02-13', NULL, '0001-01-01', '120.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BD013', 0, NULL, NULL, NULL, 0, '300.00', 'A层', 0, '', '2021-02-13', NULL, '0001-01-01', '120.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BD014', 0, NULL, NULL, NULL, 0, '300.00', 'A层', 0, '', '2021-02-13', NULL, '0001-01-01', '120.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BD015', 0, NULL, NULL, NULL, 0, '300.00', 'A层', 0, '', '2021-02-13', NULL, '0001-01-01', '120.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BS001', 1, NULL, NULL, '2020-11-30 00:00:00', 2, '425.00', 'A层', 0, NULL, NULL, NULL, NULL, '150.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BS002', 1, NULL, NULL, '2020-04-06 20:24:33', 0, '425.00', 'A层', 0, NULL, NULL, NULL, NULL, '150.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BS003', 1, NULL, NULL, '2020-04-06 19:59:19', 0, '425.00', 'A层', 0, NULL, NULL, NULL, NULL, '150.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BS004', 1, NULL, NULL, '2021-07-17 17:46:55', 3, '425.00', 'A层', 0, NULL, NULL, NULL, NULL, '150.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BS006', 1, '', '2020-11-12 22:23:53', NULL, 3, '425.00', 'A层', 0, 'WK010', NULL, NULL, '2021-04-14', '150.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BS007', 1, NULL, NULL, '2020-05-27 08:32:10', 0, '425.00', 'A层', 0, NULL, NULL, NULL, NULL, '150.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BS008', 1, '', '2021-01-24 15:04:49', NULL, 0, '425.00', 'A层', 0, NULL, NULL, NULL, NULL, '150.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BS009', 1, NULL, NULL, NULL, 0, '425.00', 'A层', 0, NULL, NULL, NULL, NULL, '150.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BS010', 1, NULL, NULL, NULL, 0, '425.00', 'A层', 0, '', '2021-02-13', NULL, '0001-01-01', '150.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BS011', 1, NULL, NULL, NULL, 0, '425.00', 'A层', 0, '', '2021-02-13', NULL, '0001-01-01', '150.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BS012', 1, NULL, NULL, NULL, 3, '425.00', 'A层', 0, 'WK010', '2021-02-13', NULL, '2021-05-29', '150.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BS014', 1, NULL, NULL, NULL, 0, '425.00', 'A层', 0, '', '2021-02-13', NULL, '0001-01-01', '150.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BS015', 1, NULL, NULL, NULL, 0, '425.00', 'A层', 0, '', '2021-02-13', NULL, '0001-01-01', '150.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HD002', 2, NULL, NULL, '2022-01-30 23:27:16', 3, '625.00', 'B层', 0, NULL, NULL, NULL, NULL, '180.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HD003', 2, NULL, NULL, '2020-05-27 08:31:28', 0, '625.00', 'B层', 0, NULL, NULL, NULL, NULL, '180.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HD004', 2, NULL, NULL, NULL, 0, '625.00', 'B层', 0, NULL, NULL, NULL, NULL, '180.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HD005', 2, NULL, NULL, NULL, 0, '625.00', 'B层', 0, NULL, NULL, NULL, NULL, '180.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HD006', 2, NULL, NULL, NULL, 0, '625.00', 'B层', 0, NULL, NULL, NULL, NULL, '180.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HD007', 2, NULL, NULL, NULL, 0, '625.00', 'B层', 0, NULL, NULL, NULL, NULL, '180.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HD008', 2, NULL, NULL, '2022-01-30 23:27:39', 3, '625.00', 'B层', 0, NULL, NULL, NULL, NULL, '180.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HD009', 2, NULL, NULL, '2022-01-30 23:27:59', 3, '625.00', 'B层', 0, NULL, NULL, 'WK010', '2021-02-25', '180.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HD010', 2, NULL, NULL, NULL, 0, '625.00', 'B层', 0, '', '2021-02-13', NULL, '0001-01-01', '180.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HD011', 2, NULL, NULL, NULL, 0, '625.00', 'B层', 0, '', '2021-02-13', NULL, '0001-01-01', '180.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HD012', 2, NULL, NULL, NULL, 0, '625.00', 'B层', 0, '', '2021-02-13', NULL, '0001-01-01', '180.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HD013', 2, NULL, NULL, NULL, 0, '625.00', 'B层', 0, '', '2021-02-13', NULL, '0001-01-01', '180.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HD014', 2, NULL, NULL, '2022-01-30 23:28:15', 3, '625.00', 'B层', 0, '', '2021-02-13', NULL, '0001-01-01', '180.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HD015', 2, NULL, NULL, NULL, 0, '625.00', 'B层', 0, '', '2021-02-13', NULL, '0001-01-01', '180.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HS001', 3, NULL, NULL, '2020-04-07 14:48:41', 0, '600.00', 'B层', 0, 'WK010', NULL, NULL, '2021-02-18', '200.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HS002', 3, NULL, NULL, NULL, 0, '660.00', 'B层', 0, NULL, NULL, NULL, NULL, '200.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HS003', 3, NULL, NULL, NULL, 0, '660.00', 'B层', 0, NULL, NULL, NULL, NULL, '200.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HS004', 3, NULL, NULL, NULL, 0, '660.00', 'B层', 0, NULL, NULL, NULL, NULL, '200.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HS005', 3, NULL, NULL, '2018-12-25 08:44:07', 3, '660.00', 'B层', 0, 'WK010', NULL, NULL, '2021-04-14', '200.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HS006', 3, NULL, NULL, NULL, 0, '660.00', 'B层', 0, NULL, NULL, NULL, NULL, '200.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HS007', 3, NULL, NULL, NULL, 0, '660.00', 'B层', 0, NULL, NULL, NULL, NULL, '200.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HS008', 3, NULL, NULL, NULL, 2, '660.00', 'B层', 0, 'WK010', NULL, NULL, '2021-02-12', '200.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('QL002', 4, NULL, NULL, NULL, 0, '845.00', 'C层', 0, NULL, NULL, NULL, NULL, '230.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('QL003', 4, NULL, NULL, '2021-02-12 15:13:44', 0, '845.00', 'C层', 0, 'WK010', NULL, NULL, '2021-02-19', '230.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('QL006', 4, NULL, NULL, '2022-01-30 23:28:33', 3, '845.00', 'C层', 0, NULL, NULL, NULL, NULL, '230.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('ZT001', 5, NULL, NULL, '2022-01-30 23:28:50', 3, '1080.00', 'D层', 0, NULL, NULL, NULL, NULL, '250.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('ZT003', 5, NULL, NULL, NULL, 0, '1080.00', 'D层', 0, NULL, NULL, NULL, NULL, '250.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('ZT004', 5, NULL, NULL, NULL, 0, '1080.00', 'D层', 0, NULL, NULL, NULL, NULL, '250.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('ZT006', 5, NULL, NULL, '2022-01-30 23:29:10', 3, '1080.00', 'D层', 0, NULL, NULL, NULL, NULL, '250.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('ZT012', 5, NULL, NULL, '2022-01-30 23:29:28', 3, '1080.00', 'D层', 0, 'admin', '2021-02-16', NULL, '0001-01-01', '250.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('QL001', 4, NULL, NULL, '2022-02-22 23:15:11.001171', 3, '845.00', 'C层', 0, NULL, NULL, NULL, NULL, '230.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('ZT002', 5, NULL, NULL, '2022-02-26 12:20:21.496684', 3, '1080.00', 'D层', 0, NULL, NULL, NULL, NULL, '250.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BS013', 1, NULL, NULL, '2022-02-26 12:21:55.300778', 3, '425.00', 'A层', 0, '', '2021-02-13', NULL, '0001-01-01', '150.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BS005', 1, NULL, NULL, '2022-02-26 12:28:26.607151', 3, '425.00', 'A层', 0, NULL, NULL, NULL, NULL, '150.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('ZT005', 5, 'TS-20210078', '2022-02-26 12:29:20', '2020-05-27 08:32:01', 1, '1080.00', 'D层', 0, NULL, NULL, NULL, NULL, '250.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('HD001', 2, 'TS-20220089', '2022-02-26 12:29:38', NULL, 1, '625.00', 'B层', 0, NULL, NULL, NULL, NULL, '180.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('QL004', 4, 'TS-20220090', '2022-02-26 12:29:54', NULL, 1, '845.00', 'C层', 0, NULL, NULL, NULL, NULL, '230.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('QL005', 4, 'TS-20220099', '2022-02-26 12:30:09', NULL, 1, '845.00', 'C层', 0, NULL, NULL, NULL, NULL, '230.00'); -INSERT INTO "room" ("RoomNo", "RoomType", "CustoNo", "CheckTime", "CheckOutTime", "RoomStateId", "RoomMoney", "RoomPosition", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date", "deposit") VALUES ('BD001', 0, NULL, NULL, '2021-04-17 16:11:55', 4, '300.00', 'A层', 0, 'WK010', NULL, 'WK010', '2022-02-26', '120.00'); -INSERT INTO "roomstate" ("RoomStateId", "RoomState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (0, '空房', 0, NULL, NULL, NULL, NULL); -INSERT INTO "roomstate" ("RoomStateId", "RoomState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (1, '已住', 0, NULL, NULL, NULL, NULL); -INSERT INTO "roomstate" ("RoomStateId", "RoomState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (2, '维修中', 0, NULL, NULL, NULL, NULL); -INSERT INTO "roomstate" ("RoomStateId", "RoomState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (3, '脏房', 0, NULL, NULL, NULL, NULL); -INSERT INTO "roomstate" ("RoomStateId", "RoomState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (4, '已预约', 0, NULL, NULL, NULL, NULL); -INSERT INTO "roomtype" ("RoomType", "RoomName", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (0, '标准单人间', 0, NULL, NULL, NULL, NULL); -INSERT INTO "roomtype" ("RoomType", "RoomName", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (1, '标准双人间', 0, NULL, NULL, NULL, NULL); -INSERT INTO "roomtype" ("RoomType", "RoomName", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (2, '豪华单人间', 0, NULL, NULL, NULL, NULL); -INSERT INTO "roomtype" ("RoomType", "RoomName", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (3, '豪华双人间', 0, NULL, NULL, NULL, NULL); -INSERT INTO "roomtype" ("RoomType", "RoomName", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (4, '情侣套房', 0, NULL, NULL, NULL, NULL); -INSERT INTO "roomtype" ("RoomType", "RoomName", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (5, '总统套房', 0, NULL, NULL, NULL, NULL); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST-20210020', '测试', '243444.00', '阿斯顿', '10.00', 1, 'admin', '2021-02-15', 'admin', '2021-02-15'); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST-20210027', 'BIG大桶方便面', '8.50', '/桶', '50.00', 1, 'admin', '2021-02-16', 'admin', '2021-02-16'); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST-20210055', '测试数据(勿选)', '9999999.99', '测试数据', '9.00', 0, 'admin', '2021-05-29', 'WK010', '2021-07-19'); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST-20210061', '测试勿选', '9999999.00', '测试', '4.00', 0, 'admin', '2021-05-30', 'WK010', '2021-06-06'); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST-2021009', '黄油华夫饼', '80.00', '/包', '98.00', 0, 'admin', '2021-02-15', 'WK010', '2022-01-30'); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST003', '可口可乐', '10.00', '/瓶(1.5L)', '969.00', 0, NULL, NULL, 'WK010', '2021-04-17'); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST007', '雪碧', '2.50', '/罐', '990.00', 0, NULL, NULL, 'WK010', '2021-04-17'); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST008', '特级杜蕾斯', '40.00', '/盒', '178.00', 0, NULL, NULL, 'WK010', '2021-04-17'); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST009', '三只松鼠夏威夷坚果', '40.00', '/袋(160g)', '1484.00', 0, NULL, NULL, 'WK010', '2021-05-05'); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST010', '蟹味瓜子仁', '30.00', '/袋', '1020.00', 0, NULL, NULL, NULL, NULL); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST011', '青岛啤酒', '15.00', '/瓶', '1000.00', 0, NULL, NULL, NULL, NULL); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST014', '澡巾', '12.50', '/条', '996.00', 0, NULL, NULL, 'WK010', '2021-04-17'); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST015', '香皂', '25.00', '/个(145g)', '996.00', 0, NULL, NULL, NULL, NULL); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST016', '牙刷', '10.00', '/个', '1000.00', 0, NULL, NULL, NULL, NULL); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST017', '红枣', '25.00', '/包', '990.00', 0, NULL, NULL, 'WK010', '2021-07-17'); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST019', '扑克牌', '5.00', '/副', '248.00', 0, NULL, NULL, 'WK010', '2021-04-17'); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST020', 'TS纪念品', '10.00', '/个', '990.00', 0, NULL, NULL, 'WK010', '2021-07-17'); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST021', '三只松鼠零食大礼包', '299.00', '/礼包', '2998.00', 0, NULL, NULL, NULL, NULL); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST022', '芬达', '10.00', '/瓶(1.5L)', '900.00', 0, NULL, NULL, NULL, NULL); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST398', '拉菲', '1080.00', '/支', '989.00', 0, NULL, NULL, 'WK010', '2021-03-11'); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST677', '92拉菲', '10800.00', '/瓶', '1088.00', 0, NULL, NULL, 'WK010', '2022-01-30'); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST851', 'T仔', '90.00', '/个', '29980.00', 0, NULL, NULL, 'WK010', '2021-02-18'); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST983', '日清方便面', '5.50', '/桶', '2991.00', 0, NULL, NULL, 'WK010', '2021-03-11'); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST005', '乐事薯片(原味)', '20.00', '/包(145g)', '934.00', 0, NULL, NULL, 'WK010', '2022-02-26'); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST012', '火腿肠', '10.00', '/包(40g)', '990.00', 0, NULL, NULL, 'WK010', '2022-02-26'); -INSERT INTO "sellthing" ("SellNo", "SellName", "SellPrice", "format", "Stock", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('ST013', '毛巾', '10.00', '/条', '996.00', 0, NULL, NULL, NULL, NULL); -INSERT INTO "sextype" ("sexId", "sexName", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (0, '女', 0, NULL, NULL, NULL, NULL); -INSERT INTO "sextype" ("sexId", "sexName", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (1, '男', 0, NULL, NULL, NULL, NULL); -INSERT INTO "uploadinfo" ("NoticeNo", "Noticetheme", "NoticeType", "NoticeTime", "NoticeContent", "NoticeClub", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('UP-202102003', '关于谭国平同志的职位任命通知', NULL, '2021-02-13 00:00:00', '

 关于谭国平同志的职位任命通知


经高层商讨,决定即日起任命谭国平同志为人力资源部经理,免去其原人力资源部职员一职! 

', 'D-004', 0, 'admin', '2021-02-16', NULL, '0001-01-01'); -INSERT INTO "uploadinfo" ("NoticeNo", "Noticetheme", "NoticeType", "NoticeTime", "NoticeContent", "NoticeClub", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('UP001', '人员调动', 'PersonnelChanges', '2018-12-03 15:48:58', '现将临时工李顺调为正式工,并担任经理部秘书!即日起生效', '人事部', 0, NULL, NULL, NULL, NULL); -INSERT INTO "userinfo" ("CustoNo", "CustoName", "CustoSex", "CustoTel", "PassportType", "CustoID", "CustoAdress", "CustoBirth", "CustoType", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('TS-20220089', '古河早苗', 0, 'voRtCiTyE6F+mg0n5gpN2VRub/EaMXAMAZJx/5ZKO+OHMSJKEaffnL66+Kg9lS9zXOY/MNOB3FuLeelDe5sk+ylLvVNwEK7gvBlmK+6cX2lmmZw454iVZhQJQYuJ7ocRWRpKWYGRVykuBX/FXsdIf/VtbB9hLbC/PYWVTDTZChU=·FHHgc☆gcFFHDcDgH0aF(822878d662b80ce1)', 4, 'TZpIO1nle+bZ9325uMcs5u/SDVCik1EO0vyK7OXKl0siGPkY0kyIham4WUkd2Na74hqjweD2JAewZ8aTwe0pjgijc0qbGBZ6gygsIdXhJUYQiPxMKZszIZvAfm2syz2a3oFAOknE7UkfO1eCj8efCfuQdCEkTWXzZOiy6nS6k6Q=·FHHgc☆gcFFgHDg☆cFFD(3b6742000c11b508)', '团子商店街', '1980-07-08', 0, 0, 'WK010', '2022-02-01', NULL, '0001-01-01'); -INSERT INTO "userinfo" ("CustoNo", "CustoName", "CustoSex", "CustoTel", "PassportType", "CustoID", "CustoAdress", "CustoBirth", "CustoType", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('TS-20220090', '古河秋生', 1, 'ossNxyLtRvvGc8+tKD/OtTZk5Cd3EkPe2vd6oIoVdTTpjEQkSlh0XIF88Rg2iWnhGh3jEfnzr22l6TY+1B+LzHgzGVv5fV2kSvjGsFw6V/Ad2zuDHiyV8CDz2AMMhJH+wfA87cJzGnsFM1t2sS7o4982hlzxY02LTzPF+PzqdVI=·FHHgc☆ggagiHHF0☆i☆B(41a2107858c2662e)', 4, 'B8EWKh4XeWLDlRoqd1rm3FNkk4h00NgsZKNOVGZQpZwa4d/JL4WZ0N3QltCBPKkJ0i31chzTDWwO9ugQA5zrwPMNuZjnmU2YSuCe2Dlv2IUlxr2/x5Ao4i4udSZzcIigIPzDLLVQzvWBiL7gvzVs2xay+DH0HJ61tObjWhpkUs0=·FHHgc☆ggagiDBDFD☆aB(31552737d8c6feb2)', '团子商店街', '1980-02-05', 0, 0, 'WK010', '2022-02-01', NULL, '0001-01-01'); -INSERT INTO "userinfo" ("CustoNo", "CustoName", "CustoSex", "CustoTel", "PassportType", "CustoID", "CustoAdress", "CustoBirth", "CustoType", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('TS-20210078', '阿洛', 1, 'ciJGvV9GPK9NLT5h6MF3TXH7uIGZMdaEU9OonULCndSiqvG0TdI5WYmyPGJJaQdOMhu8lle6F/RLmQUCbqOoQZFS2C6Eqi/4REJ/6RqYwUh3sfSN0iqa8XwD3kM0Sbs0oN3mhbXaS6GiWdf8gDFWlvoLpReJwyEdyD5CZsTcl9I=·FHHFFiDBB0FaH0DcciB(f058b29692ad55ff)', 0, 'A0hBGBWBhLggHZ1oAf+Ta9UBfKV1404IJF33vp4w95xKFmg7YMY/NRPQwCceV1QlsqkO9kOTGHWgY9Gjdx9Wut6n0VTb3v78AKYa1TxV3M6Zy4e2kelSP2I983S8Pm0E6rWM5CN5R68qh0BUCcKV3TDxxlLysZIkcs8B9N20Uqg=·FHHFFiDBB0☆gai0ai☆B(fd4bc7ae1cf03f0)', '广东省茂名市信宜县', '1988-07-20', 3, 0, '', '2021-10-20', 'WK010', '2022-01-31'); -INSERT INTO "userinfo" ("CustoNo", "CustoName", "CustoSex", "CustoTel", "PassportType", "CustoID", "CustoAdress", "CustoBirth", "CustoType", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('TS-202200136', '路三强', 0, 'I0AJ+awpCsNygsp7VfCRQbcwWivwB+UBSBoz4TwBoX9cRRjRKJdPODwqdtK20TfeZ8wwp9iXIO4oBN4d+bGUZQpODZZ9z5oJj3BJx5FRLciS3HXu7oKeqSOKVIE6rSaiPD+6IGhpc4rIzXDwHdfYNb2gGsM26AEYUxQhK01MfY0=·FHiFBiaFFH0a0iacgiB(c98e6301e5628f55)', 0, 'ryljB7aFD5UWfYBK+8lGSo+qiEpA6rNmQf8hvp86hxBh81umKV77ylFtYToOIBjBpPJQklSviPdNE7lqHASsUl/JfwwBuTRlCPeZNx4h0WwbeiH5tVC2AFxBGkxzaWQha1sUXjVvXfYlsnmR0ohdfev17BVCkrUwSy/Cgh+4oNY=·FHiFBiaFFgi☆FcHcgDD(694c3f1ff51f967)', '广东省茂名市信宜县', '1988-12-14', 0, 0, 'WK010', '2022-02-26', NULL, '0001-01-01'); -INSERT INTO "userinfo" ("CustoNo", "CustoName", "CustoSex", "CustoTel", "PassportType", "CustoID", "CustoAdress", "CustoBirth", "CustoType", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('TS-20220099', '茅野芽衣', 0, 'Qfh+KpEDwBoqkRsB/gtfSBHeaAKbzZZLzEdKGYdpNiR2CHS7/4j4Pie+BlqB04UG+dCbFtgXSdfs0QisEUCR2iNyfbtbFIcXN6tWYWtxxyLkWwQpBKjtZo6uUYvbfZZ7qiFLdI+cqdZJEjChoNvkD1K6nESWlNlIZaxa6bRArD8=·FHiFcDD0g00iH☆DFFHH(1775707505e62eae)', 4, 'qEPEOVA7IvVd3ufQ2FcFj0+is6Vh0lsYPMQ5p+q36jjhrdAJo6sPxttsoW8vzoCWhiKYcN6Xa0tqRPim7/PBysnl1lr03cNulqUHXk4Vb3hx6GhL0hSuKxDJSazkNzN4PIFK75IRancHe/Tk5VoMLssb9o/wRWfA8/OL4wncvdA=·FHiFcDD0g00c☆FBH0cB(9d926a241e44edf7)', '大阪', '1995-07-06', 0, 0, 'WK010', '2022-02-02', 'WK010', '2022-02-26'); -INSERT INTO "usertype" ("UserType", "TypeName", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (0, '普通用户', 0, NULL, NULL, NULL, NULL); -INSERT INTO "usertype" ("UserType", "TypeName", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (1, '钻石会员', 0, NULL, NULL, NULL, NULL); -INSERT INTO "usertype" ("UserType", "TypeName", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (2, '白金会员', 0, NULL, NULL, NULL, NULL); -INSERT INTO "usertype" ("UserType", "TypeName", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (3, '黄金会员', 0, NULL, NULL, NULL, NULL); -INSERT INTO "vip_rule" ("id", "rule_id", "rule_name", "rule_value", "type_id", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (1, 'VR-202107170003', '升级到钻石会员的规则', '70000.00', 1, 0, 'admin', '2021-07-17', NULL, '0001-01-01'); -INSERT INTO "vip_rule" ("id", "rule_id", "rule_name", "rule_value", "type_id", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (2, 'VR-202107170007', '升级到黄金会员的规则', '50000.00', 3, 0, 'admin', '2021-07-17', NULL, '0001-01-01'); -INSERT INTO "vip_rule" ("id", "rule_id", "rule_name", "rule_value", "type_id", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (3, 'VR-2021071700010', '升级到白金会员的规则', '30000.00', 2, 0, 'admin', '2021-07-17', NULL, '0001-01-01'); -INSERT INTO "vip_rule" ("id", "rule_id", "rule_name", "rule_value", "type_id", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (0, 'VR-2022022600052', '尊贵会员', '150000.00', 1, 0, 'admin', '2022-02-26', NULL, '0001-01-01'); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK010', '杨俊杰', '1999-07-20 00:00:00', 1, 'B6CCShOF+ezaHM3LdXEDWPmWHBRpYmEl0DVl/p/Ate8D/LT88ksL9wa35D6vkQqzvnAtzUXkDT5Rpavw8LWgceXalSgDTcEPsopL+KbiHw/1NlTxCeRB4ldpj5Djwi57oRBgzqH7h053DYNmtgLPuGV3DcsDgSawRXY1y1ziYrk=·FHHiDagiBgg0Bg0DaBH(a1226e938724d985)', 'D-001', 'N-00001', '广东珠海', 'P-0001', '123121313132X3', 'admin', '2011-04-20 00:00:00', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2022-02-07'); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('Duyen', '阿娟', '1969-10-11 00:00:00', 0, '13433221223', 'D-011', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2020-07-05 02:20:31', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('Hien', '阿賢', '1969-10-11 00:00:00', 0, '13433221223', 'D-005', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2020-07-05 02:19:53', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('Huong', '阿香', '1969-10-11 00:00:00', 0, '13433221223', 'D-011', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2020-07-05 02:17:25', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('Lam', '阿隆', '1969-10-11 00:00:00', 0, '13433221223', 'D-005', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2020-07-05 02:21:52', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('Lien', '阿蓮', '1969-10-11 00:00:00', 0, '13433221223', 'D-011', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2020-07-05 02:16:44', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('Shenyou', '申酉', '1999-07-20 00:00:00', 1, '15019927415', 'D-001', 'N-00001', '金湾', 'P-0003', '123121313132X3', '123456', '2020-07-05 02:18:19', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK001', '谭国平', '1999-12-05 00:00:00', 1, '15693857612', 'D-004', 'N-00001', '红旗', 'P-0002', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-16'); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK002', '李杰峰', '1999-10-15 00:00:00', 1, '15632343232', 'D-003', 'N-00001', '市区', 'P-0003', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK003', '陈伟瀚', '1999-11-20 00:00:00', 1, '13036456756', 'D-005', 'N-00001', '斗门', 'P-0002', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-17'); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK004', '杨旭东', '1999-02-15 00:00:00', 1, '15693857612', 'D-006', 'N-00001', '井岸', 'P-0001', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-17'); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK005', '付金鑫', '1999-06-05 00:00:00', 1, '15693857612', 'D-202200114', 'N-00001', '市区', 'P-0002', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2022-01-31'); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK006', '陈洪汉', '1999-10-05 00:00:00', 1, '15693857612', 'D-002', 'N-00001', '南屏', 'P-0002', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-18'); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK007', '罗良建', '2000-12-05 00:00:00', 1, '15693857612', 'D-003', 'N-00001', '市区', 'P-0002', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-17'); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK008', '林淑仪', '1999-12-05 00:00:00', 0, '15693857612', 'D-008', 'N-00001', '市区', 'P-2021001', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-04-10'); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK009', '老铁', '1989-12-05 00:00:00', 1, '15693857612', 'D-004', 'N-00001', '市区', 'P-0003', '12343564758586', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK011', '六月', '1900-01-18 00:00:00', 1, '13433221223', 'D-002', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK012', '七月', '1989-10-11 00:00:00', 1, '13433221223', 'D-002', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK013', '八月', '1979-10-11 00:00:00', 1, '13433221223', 'D-004', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK014', '九月', '1969-10-11 00:00:00', 1, '13433221223', 'D-004', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK015', '十元', '1959-10-11 00:00:00', 1, '13433221223', 'D-007', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK016', '十月', '1949-10-11 00:00:00', 0, '13433221223', 'D-004', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK017', '十一月', '1939-10-11 00:00:00', 0, '13433221223', 'D-004', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK018', '十二月', '1929-10-11 00:00:00', 0, '13433221223', 'D-007', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK019', '十四年', '1911-10-11 00:00:00', 0, '13433221223', 'D-007', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK020', '十五年', '1992-10-11 00:00:00', 0, '13433221223', 'D-006', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK021', '一楠', '1993-10-11 00:00:00', 0, '13433221223', 'D-006', 'N-00001', '斗门', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK022', '二南', '1994-10-11 00:00:00', 1, '13433221223', 'D-006', 'N-00001', '斗门', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK023', '三男', '1995-10-11 00:00:00', 1, '13433221223', 'D-006', 'N-00001', '斗门', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK024', '四北', '1996-10-11 00:00:00', 1, '13433221223', 'D-003', 'N-00001', '斗门', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK025', '花呗', '1997-10-11 00:00:00', 0, '13433221223', 'D-003', 'N-00001', '斗门', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK026', '蚂蚁', '1998-10-11 00:00:00', 1, '13433221223', 'D-003', 'N-00001', '斗门', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK027', '余额宝', '1919-10-11 00:00:00', 1, '13433221223', 'D-003', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK028', '支付宝', '1929-10-11 00:00:00', 1, '13433221223', 'D-003', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK029', '阿里', '1939-10-11 00:00:00', 0, '13433221223', 'D-005', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK030', '阿狸', '1949-10-11 00:00:00', 1, '13433221223', 'D-005', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK031', '阿力', '1959-10-11 00:00:00', 1, '13433221223', 'D-003', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK032', '瞎小', '1969-10-11 00:00:00', 0, '13433221223', 'D-011', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK033', '沙宣', '1979-10-11 00:00:00', 1, '13433221223', 'D-005', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK034', '沙县', '1989-10-11 00:00:00', 1, '13433221223', 'D-005', 'N-00001', '市区', 'P-0003', '440921189910119090', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK202102004', '潞州', '2020-11-24 22:50:37', 1, '4AEE3E28DF37EA1AF64BD636ECA59DCB', 'D-008', 'N-00007', '广东珠海', 'P-0003', '79D8861186EB60E3611CD4A5D0BCAE', '123456', '2020-11-24 22:50:37', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK202102007', '江小白', '1993-07-20 00:00:00', 1, 'A89CDE93F692F546F0BEC375DC9E60FB', 'D-010', 'N-00001', '广东省茂名市信宜县', 'P-0003', '3D7640EF7C9B756E75C276FF9C8D233', '123456', '2020-11-24 22:50:37', '群众', 'E-00006', 0, 'admin', '2021-02-14', 'admin', '2021-02-14'); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK2021040024', '赤羽业', '1999-07-20 00:00:00', 1, '15161656165', 'D-011', 'N-00001', '广东省茂名市信宜县', 'P-0003', '440921189910119090', '123456', '2020-11-24 22:50:37', '群众', 'E-00007', 0, 'admin', '2021-04-18', NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK775', '凌峰', '1995-07-14 00:00:00', 1, '13328993360', 'D-003', 'N-00001', '广东省茂名市信宜县', 'P-0003', '440921199507149395', '123456', '2020-05-04 12:57:15', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK2021040025', '冈崎朋也', '1999-07-20 00:00:00', 1, 'bEJDqDv3W/o1p69Y2JXPj5H4kCninKF0LrnVJH9plJyOZAXEOaWTolwnnM99GQSEorYGVfZNYtBqt2ohO4vKO6OrgWtBTg4Kh1KjKL6wrBEK42mghcursCod6G73fdbQITFRHMSJmhK68PQNbi/tVw0EUn4aGsxsy6THx2KsK6A=·FHHgciDFiHcHcgDiaB0(2dfb79318b734469)', 'D-010', 'N-00001', '广东省茂名市信宜县', 'P-0003', '440921189910119090', '123456', '2020-11-24 22:50:37', '群众', 'E-00003', 0, 'admin', '2021-04-18', 'admin', '2022-02-01'); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK2021040026', '古河渚', '1996-12-15 00:00:00', 0, 'TqXplZEAJiCJ34jERPTDwnH4vcojLfOX6isZGyHe1M7ThNEiTAa7ZtHrmstzF25S5YjQR4eCbr3Gy+V8qdpQJqn7jh4Rn9vXnzneCBCP5WsvFC+wpoaILCCOpeOrgkZfBt36itg2rhV6h/FT4yrX7wAHly1WFxW1WVGawfAQEZY=·FHHgciDaFB0DgH0cciB(c2ae638db2d0dd83)', 'D-010', 'N-00001', '大阪', 'P-0003', '440921189910119090', '123456', '2020-11-24 22:50:37', '群众', 'E-00003', 0, 'admin', '2021-04-18', 'admin', '2022-02-01'); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK2022020042', '夜莺', '1988-12-13 00:00:00', 0, 'YJmmD35b13Ojc2UJPXXntwk+xpnKSTsCqzkzJBkbsadc3skEyGqlVIJUFU4Em0tjbv0IsTJnLskVB8VjZ95YyhKRJcksmdNXHyR1PF6dvaJ8nv9FHQ93V66I06ObgVXB+/ysSOAuL7DM3Ndj5UxgiAlK2DDE1eKjNttliIq6zvg=·FHHgcaFc☆F☆a☆iga0gB(376e5910042923d5)', 'D-202200114', 'N-00009', '广东省茂名市信宜县', 'P-2021001', 'DjM0t5DO0oIckI4JlN+z9Bkosi/SV0mQllIT6U3515hzns4FSRExxunfW9BEbQoldRlKoifXFXnKz6sulj5rf0yi1lPl+plA+NQ0LA8goCiQAyfEUEBwbCOgvhPjKbptdS3R3y46v4AEy6gcaYS3A4Zrc3m/ipqD2xXchsKuBrM=·FHHgcaFc☆FDa☆c0cFH0(ee00c65e12fee5a2)', '123456', '2020-11-24 22:50:37', '群众', 'E-00005', 0, 'admin', '2022-02-01', NULL, NULL); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('WK388', '张三', '1998-06-27 00:00:00', 1, 'A+XROKGquR9JRSlRmWEIzmz/yA5BvTK8jbGUg3bAT7S3Qc3oxcsJlftz4r45JKDOoP45Ip+Mh7C0DhRLsr8z0GJ/NAdneBkOtKZk1j686EeIMueXRphpU0/hRC4m0aISGSNdn8wr5KFp7U8k/uLdJgfBAgVloy3rAPSiICK66sE=·FHHgci☆BciiHiccHaaB(fc82c054c807242a)', 'D-002', 'N-00001', '广西壮族自治区防城港市上思县', 'P-0003', '450621199806271679', '123456', '2020-08-20 09:33:45', '群众', 'E-00005', 0, NULL, NULL, 'admin', '2022-02-01'); -INSERT INTO "worker" ("WorkerId", "WorkerName", "WorkerBirthday", "WorkerSex", "WorkerTel", "WorkerClub", "WorkerNation", "WorkerAddress", "WorkerPosition", "CardID", "WorkerPwd", "WorkerTime", "WorkerFace", "WorkerEducation", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES ('Xingxue', '興學', '1999-07-20 00:00:00', 1, '15019927415', 'D-001', 'N-00001', '金湾', 'P-0003', '123121313132X3', '123456', '2020-07-05 02:18:53', '团员', 'E-00005', 0, NULL, NULL, NULL, NULL); -INSERT INTO "workercheck" ("Id", "WorkerNo", "CheckTime", "CheckWay", "CheckState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (66, 'WK010', '2022-02-21 20:31:19', '系统界面', 0, 0, 'WK010', '2022-02-21', NULL, '0001-01-01'); -INSERT INTO "workercheck" ("Id", "WorkerNo", "CheckTime", "CheckWay", "CheckState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (72, 'WK010', '2022-02-22 23:16:46', '系统界面', 0, 0, 'WK010', '2022-02-22', NULL, '0001-01-01'); -INSERT INTO "workercheck" ("Id", "WorkerNo", "CheckTime", "CheckWay", "CheckState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (75, 'WK010', '2022-02-25 22:13:30', '系统界面', 0, 0, 'WK010', '2022-02-25', NULL, '0001-01-01'); -INSERT INTO "workercheck" ("Id", "WorkerNo", "CheckTime", "CheckWay", "CheckState", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (86, 'WK010', '2022-02-26 12:28:59', '系统界面', 0, 0, 'WK010', '2022-02-26', NULL, '0001-01-01'); -INSERT INTO "workergoodbad" ("Id", "WorkNo", "GBInfo", "GBType", "GBOperation", "GBTime", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (1, 'WK008', '牛逼就完事了!', 0, '杨俊杰', '2020-04-21 21:02:30', 0, NULL, NULL, NULL, NULL); -INSERT INTO "workergoodbad" ("Id", "WorkNo", "GBInfo", "GBType", "GBOperation", "GBTime", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (2, 'WK775', '被评为优秀的“五四”行业青年', 0, '杨俊杰', '2020-05-04 13:01:17', 0, NULL, NULL, NULL, NULL); -INSERT INTO "workergoodbad" ("Id", "WorkNo", "GBInfo", "GBType", "GBOperation", "GBTime", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (3, 'WK010', '测试', 1, 'admin', '2020-11-24 22:50:37', 0, 'admin', '2021-02-15', NULL, '0001-01-01'); -INSERT INTO "workergoodbad" ("Id", "WorkNo", "GBInfo", "GBType", "GBOperation", "GBTime", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (4, 'WK010', '测试', 1, 'admin', '2020-11-24 22:50:37', 0, 'admin', '2021-02-15', NULL, '0001-01-01'); -INSERT INTO "workergoodbad" ("Id", "WorkNo", "GBInfo", "GBType", "GBOperation", "GBTime", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (5, 'WK010', '测试', 1, 'admin', '2020-11-24 22:50:37', 0, 'admin', '2021-02-15', NULL, '0001-01-01'); -INSERT INTO "workergoodbad" ("Id", "WorkNo", "GBInfo", "GBType", "GBOperation", "GBTime", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (6, 'WK001', '666666666', 0, 'admin', '2020-11-24 22:50:37', 0, 'admin', '2021-02-16', NULL, '0001-01-01'); -INSERT INTO "workerhistory" ("Id", "WorkerId", "StartDate", "EndDate", "Position", "Company", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (1, 'WK010', '2005-03-05 00:00:00', '2008-03-05 00:00:00', '部门经理', '海湾大酒店', 0, NULL, NULL, NULL, NULL); -INSERT INTO "workerhistory" ("Id", "WorkerId", "StartDate", "EndDate", "Position", "Company", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (2, 'WK010', '2009-06-23 00:00:00', '2010-02-02 00:00:00', '总经理', '非凡大酒店', 0, NULL, NULL, NULL, NULL); -INSERT INTO "workerhistory" ("Id", "WorkerId", "StartDate", "EndDate", "Position", "Company", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (3, 'WK775', '2015-07-17 12:57:15', '2018-05-04 12:57:15', '财务会计', '非凡会计所', 0, NULL, NULL, NULL, NULL); -INSERT INTO "workerhistory" ("Id", "WorkerId", "StartDate", "EndDate", "Position", "Company", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (4, 'WK261', '2020-07-16 21:13:33', '2020-07-16 21:13:33', '', '', 0, NULL, NULL, NULL, NULL); -INSERT INTO "workerhistory" ("Id", "WorkerId", "StartDate", "EndDate", "Position", "Company", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (5, 'WK100', '2020-07-16 21:13:42', '2020-07-16 21:13:42', '', '', 0, NULL, NULL, NULL, NULL); -INSERT INTO "workerhistory" ("Id", "WorkerId", "StartDate", "EndDate", "Position", "Company", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (6, 'WK388', '2020-08-20 09:33:45', '2020-08-20 09:33:45', '', '', 0, NULL, NULL, NULL, NULL); -INSERT INTO "workerhistory" ("Id", "WorkerId", "StartDate", "EndDate", "Position", "Company", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (7, 'WK202102004', '2020-11-24 22:50:37', '2020-11-24 22:50:37', '', '', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO "workerhistory" ("Id", "WorkerId", "StartDate", "EndDate", "Position", "Company", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (8, 'WK202102007', '2020-11-24 22:50:37', '2020-11-24 22:50:37', '', '', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO "workerhistory" ("Id", "WorkerId", "StartDate", "EndDate", "Position", "Company", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (9, 'WK2021040024', '2019-05-06 00:00:00', '2020-11-24 22:50:37', '餐饮专员', '比利王大酒店', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO "workerhistory" ("Id", "WorkerId", "StartDate", "EndDate", "Position", "Company", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (10, 'WK2021040025', '2020-11-24 22:50:37', '2020-11-24 22:50:37', '', '', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO "workerhistory" ("Id", "WorkerId", "StartDate", "EndDate", "Position", "Company", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (11, 'WK2021040026', '2020-11-24 22:50:37', '2020-11-24 22:50:37', '', '', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO "workerhistory" ("Id", "WorkerId", "StartDate", "EndDate", "Position", "Company", "delete_mk", "datains_usr", "datains_date", "datachg_usr", "datachg_date") VALUES (12, 'WK2022020042', '2015-03-01 00:00:00', '2019-03-03 00:00:00', '质量测试主管', '园南计算机科技有限公司', 0, NULL, '0001-01-01', NULL, '0001-01-01'); -INSERT INTO "workerpic" ("Id", "WorkerId", "Pic") VALUES (1, 'WK2022020042', 'a212e035-62f7-4b7b-be5e-c1cacce6ab94.png'); -INSERT INTO "workerpic" ("Id", "WorkerId", "Pic") VALUES (2, 'WK2021040026', '98d6f138-3f86-4d76-ae33-6d4cbc436a93.jpg'); -INSERT INTO "workerpic" ("Id", "WorkerId", "Pic") VALUES (3, 'WK2021040025', '0c0b42d9-41f2-487e-8ac8-fc686cb5f5fe.jpg'); -INSERT INTO "workerpic" ("Id", "WorkerId", "Pic") VALUES (4, 'WK2021040024', 'cacacfaa-fef5-4beb-a87a-e4d52e56ae50.jpg'); -INSERT INTO "workerpic" ("Id", "WorkerId", "Pic") VALUES (8, 'WK010', 'c5691e6c-ef99-486a-b127-4340cb7d3e7f.jpg'); -INSERT INTO "workerpic" ("Id", "WorkerId", "Pic") VALUES (9, 'WK001', 'fb4bc453-29b8-495f-82d1-36e02f10e3d0.png'); -INSERT INTO "workerpic" ("Id", "WorkerId", "Pic") VALUES (10, 'WK002', '36caf9bd-f3db-4d8b-834d-cf6c39581de3.png'); -INSERT INTO "workerpic" ("Id", "WorkerId", "Pic") VALUES (206, 'Shenyou', 'cea9d22e-cd3e-4ea8-adfd-6d43e9e80698.png'); -INSERT INTO "workerpic" ("Id", "WorkerId", "Pic") VALUES (207, 'WK775', '68137280-5cec-473a-a0d8-6a8538a6daf3.png'); diff --git "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/PostgreSQL\347\211\210\346\234\254/db_file.sql" "b/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/PostgreSQL\347\211\210\346\234\254/db_file.sql" new file mode 100644 index 0000000..250f534 --- /dev/null +++ "b/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/PostgreSQL\347\211\210\346\234\254/db_file.sql" @@ -0,0 +1,19096 @@ +-- ---------------------------- +-- Table structure for admininfo +-- ---------------------------- +DROP TABLE IF EXISTS "public"."admininfo"; +CREATE TABLE "public"."admininfo" ( + "Id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "AdminAccount" varchar(15) COLLATE "pg_catalog"."default" NOT NULL, + "AdminPassword" varchar(200) COLLATE "pg_catalog"."default", + "AdminType" varchar(15) COLLATE "pg_catalog"."default", + "AdminName" varchar(50) COLLATE "pg_catalog"."default", + "IsAdmin" int4, + "DeleteMk" int4, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_time" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_time" date +) +; +COMMENT ON COLUMN "public"."admininfo"."Id" IS '自增长ID'; +COMMENT ON COLUMN "public"."admininfo"."AdminAccount" IS '管理员账号'; +COMMENT ON COLUMN "public"."admininfo"."AdminPassword" IS '管理员密码'; +COMMENT ON COLUMN "public"."admininfo"."AdminType" IS '管理员类型'; +COMMENT ON COLUMN "public"."admininfo"."AdminName" IS '管理员名称'; +COMMENT ON COLUMN "public"."admininfo"."IsAdmin" IS '是否为超级管理员'; +COMMENT ON COLUMN "public"."admininfo"."DeleteMk" IS '删除标记'; +COMMENT ON COLUMN "public"."admininfo"."datains_usr" IS '资料新增人'; +COMMENT ON COLUMN "public"."admininfo"."datains_time" IS '资料新增时间'; +COMMENT ON COLUMN "public"."admininfo"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."admininfo"."datachg_time" IS '资料更新时间'; +COMMENT ON TABLE "public"."admininfo" IS '管理员信息表'; + +-- ---------------------------- +-- Records of admininfo +-- ---------------------------- +INSERT INTO "public"."admininfo" VALUES (1, 'admin', 'admin', 'Admin', '杨俊杰', 1, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."admininfo" VALUES (3, 'testmin', 'testmin', 'GeneralManager', '测试', 0, 1, '', '2021-05-16', NULL, NULL); +INSERT INTO "public"."admininfo" VALUES (4, 'xym', 'cashmin', 'FinanceManager', '熊越明', 0, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."admininfo" VALUES (6, 'hr', '123456', 'HRManager', '人力经理', 0, 0, 'admin', '2021-05-22', NULL, NULL); +INSERT INTO "public"."admininfo" VALUES (9, 'test1', '6666', 'test', '测试', 0, 1, 'admin', '2021-07-31', NULL, NULL); +INSERT INTO "public"."admininfo" VALUES (5, 'lishun', 'lishun', 'GeneralManager', '李顺', 0, 1, 'admin', '2021-05-18', NULL, NULL); +INSERT INTO "public"."admininfo" VALUES (2, 'bha', 'hotelmin', 'HotelManager', '宾华安', 0, 1, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for admintype +-- ---------------------------- +DROP TABLE IF EXISTS "public"."admintype"; +CREATE TABLE "public"."admintype" ( + "Id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "type_id" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, + "type_name" varchar(50) COLLATE "pg_catalog"."default", + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."admintype"."Id" IS '编号'; +COMMENT ON COLUMN "public"."admintype"."type_id" IS '管理员类型'; +COMMENT ON COLUMN "public"."admintype"."type_name" IS '管理员类型名称'; +COMMENT ON COLUMN "public"."admintype"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."admintype"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."admintype"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."admintype"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."admintype"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."admintype" IS '管理员类型表'; + +-- ---------------------------- +-- Records of admintype +-- ---------------------------- +INSERT INTO "public"."admintype" VALUES (1, 'Admin', '超级管理员', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."admintype" VALUES (2, 'FinanceManager', '财务经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."admintype" VALUES (3, 'GeneralManager', '总经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."admintype" VALUES (4, 'HotelManager', '酒店经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."admintype" VALUES (5, 'HRManager', '人力资源经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."admintype" VALUES (6, 'LogisticsManager', '后勤经理', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."admintype" VALUES (7, 'CheckGroup', '监管小组', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for applicationversion +-- ---------------------------- +DROP TABLE IF EXISTS "public"."applicationversion"; +CREATE TABLE "public"."applicationversion" ( + "base_versionId" int2 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "base_version" varchar(50) COLLATE "pg_catalog"."default" NOT NULL +) +; +COMMENT ON COLUMN "public"."applicationversion"."base_versionId" IS '流水号'; +COMMENT ON COLUMN "public"."applicationversion"."base_version" IS '版本号'; +COMMENT ON TABLE "public"."applicationversion" IS '应用程序版本控制表'; + +-- ---------------------------- +-- Records of applicationversion +-- ---------------------------- +INSERT INTO "public"."applicationversion" VALUES (1, '1.5.0.8'); + +-- ---------------------------- +-- Table structure for backinfo +-- ---------------------------- +DROP TABLE IF EXISTS "public"."backinfo"; +CREATE TABLE "public"."backinfo" ( + "BackNo" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, + "BackName" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, + "BackSource" varchar(18) COLLATE "pg_catalog"."default" NOT NULL, + "BackCash" numeric(6,2) NOT NULL, + "BackType" int4 NOT NULL, + "BackPerson" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, + "ControlClub" varchar(12) COLLATE "pg_catalog"."default" NOT NULL, + "BackClub" varchar(12) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."backinfo"."BackNo" IS '物资编号'; +COMMENT ON COLUMN "public"."backinfo"."BackName" IS '物资名称'; +COMMENT ON COLUMN "public"."backinfo"."BackSource" IS '物资来源'; +COMMENT ON COLUMN "public"."backinfo"."BackCash" IS '物资金额'; +COMMENT ON COLUMN "public"."backinfo"."BackType" IS '物资类型'; +COMMENT ON COLUMN "public"."backinfo"."BackPerson" IS '经办人'; +COMMENT ON COLUMN "public"."backinfo"."ControlClub" IS '管理部门'; +COMMENT ON COLUMN "public"."backinfo"."BackClub" IS '所属部门'; +COMMENT ON COLUMN "public"."backinfo"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."backinfo"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."backinfo"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."backinfo"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."backinfo"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."backinfo" IS '酒店物资表'; + +-- ---------------------------- +-- Records of backinfo +-- ---------------------------- +INSERT INTO "public"."backinfo" VALUES ('B001', '一次性毛巾', '超市', 1000.00, 1, '李杰峰', '财务部', '餐饮部', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."backinfo" VALUES ('B002', '一次性牙刷', '超市', 2000.00, 2, '李杰峰', '财务部', '酒店部', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for base +-- ---------------------------- +DROP TABLE IF EXISTS "public"."base"; +CREATE TABLE "public"."base" ( + "url_no" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "url_addr" varchar(255) COLLATE "pg_catalog"."default" +) +; +COMMENT ON COLUMN "public"."base"."url_no" IS 'ID'; +COMMENT ON COLUMN "public"."base"."url_addr" IS '地址'; +COMMENT ON TABLE "public"."base" IS '程序信息配置表'; + +-- ---------------------------- +-- Records of base +-- ---------------------------- +INSERT INTO "public"."base" VALUES (1, 'https://gitee.com/java-and-net/TopskyHotelManagerSystem/releases'); + +-- ---------------------------- +-- Table structure for cardcodes +-- ---------------------------- +DROP TABLE IF EXISTS "public"."cardcodes"; +CREATE TABLE "public"."cardcodes" ( + "id" int8 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "Province" varchar(255) COLLATE "pg_catalog"."default" NOT NULL, + "City" varchar(255) COLLATE "pg_catalog"."default", + "District" varchar(255) COLLATE "pg_catalog"."default", + "bm" varchar(255) COLLATE "pg_catalog"."default" +) +; +COMMENT ON COLUMN "public"."cardcodes"."id" IS '编号'; +COMMENT ON COLUMN "public"."cardcodes"."Province" IS '省份'; +COMMENT ON COLUMN "public"."cardcodes"."City" IS '城市'; +COMMENT ON COLUMN "public"."cardcodes"."District" IS '地区'; +COMMENT ON COLUMN "public"."cardcodes"."bm" IS '地区识别码'; +COMMENT ON TABLE "public"."cardcodes" IS '身份证地区识别码表'; + +-- ---------------------------- +-- Records of cardcodes +-- ---------------------------- +INSERT INTO "public"."cardcodes" VALUES (1, '北京市', NULL, '东城区', '110101'); +INSERT INTO "public"."cardcodes" VALUES (2, '北京市', NULL, '西城区', '110102'); +INSERT INTO "public"."cardcodes" VALUES (3, '北京市', NULL, '崇文区', '110103'); +INSERT INTO "public"."cardcodes" VALUES (4, '北京市', NULL, '宣武区', '110104'); +INSERT INTO "public"."cardcodes" VALUES (5, '北京市', NULL, '朝阳区', '110105'); +INSERT INTO "public"."cardcodes" VALUES (6, '北京市', NULL, '丰台区', '110106'); +INSERT INTO "public"."cardcodes" VALUES (7, '北京市', NULL, '石景山区', '110107'); +INSERT INTO "public"."cardcodes" VALUES (8, '北京市', NULL, '海淀区', '110108'); +INSERT INTO "public"."cardcodes" VALUES (9, '北京市', NULL, '门头沟区', '110109'); +INSERT INTO "public"."cardcodes" VALUES (10, '北京市', NULL, '燕山区', '110110'); +INSERT INTO "public"."cardcodes" VALUES (11, '北京市', NULL, '房山区', '110111'); +INSERT INTO "public"."cardcodes" VALUES (12, '北京市', NULL, '通州区', '110112'); +INSERT INTO "public"."cardcodes" VALUES (13, '北京市', NULL, '顺义区', '110113'); +INSERT INTO "public"."cardcodes" VALUES (14, '北京市', NULL, '昌平区', '110114'); +INSERT INTO "public"."cardcodes" VALUES (15, '北京市', NULL, '大兴区', '110115'); +INSERT INTO "public"."cardcodes" VALUES (16, '北京市', NULL, '怀柔区', '110116'); +INSERT INTO "public"."cardcodes" VALUES (17, '北京市', NULL, '平谷区', '110117'); +INSERT INTO "public"."cardcodes" VALUES (18, '北京市', NULL, '昌平县', '110221'); +INSERT INTO "public"."cardcodes" VALUES (19, '北京市', NULL, '顺义县', '110222'); +INSERT INTO "public"."cardcodes" VALUES (20, '北京市', NULL, '通县', '110223'); +INSERT INTO "public"."cardcodes" VALUES (21, '北京市', NULL, '大兴县', '110224'); +INSERT INTO "public"."cardcodes" VALUES (22, '北京市', NULL, '房山县', '110225'); +INSERT INTO "public"."cardcodes" VALUES (23, '北京市', NULL, '平谷县', '110226'); +INSERT INTO "public"."cardcodes" VALUES (24, '北京市', NULL, '怀柔县', '110227'); +INSERT INTO "public"."cardcodes" VALUES (25, '北京市', NULL, '密云县', '110228'); +INSERT INTO "public"."cardcodes" VALUES (26, '北京市', NULL, '延庆县', '110229'); +INSERT INTO "public"."cardcodes" VALUES (27, '天津市', NULL, '和平区', '120101'); +INSERT INTO "public"."cardcodes" VALUES (28, '天津市', NULL, '河东区', '120102'); +INSERT INTO "public"."cardcodes" VALUES (29, '天津市', NULL, '河西区', '120103'); +INSERT INTO "public"."cardcodes" VALUES (30, '天津市', NULL, '南开区', '120104'); +INSERT INTO "public"."cardcodes" VALUES (31, '天津市', NULL, '河北区', '120105'); +INSERT INTO "public"."cardcodes" VALUES (32, '天津市', NULL, '红桥区', '120106'); +INSERT INTO "public"."cardcodes" VALUES (33, '天津市', NULL, '塘沽区', '120107'); +INSERT INTO "public"."cardcodes" VALUES (34, '天津市', NULL, '汉沽区', '120108'); +INSERT INTO "public"."cardcodes" VALUES (35, '天津市', NULL, '大港区', '120109'); +INSERT INTO "public"."cardcodes" VALUES (36, '天津市', NULL, '东丽区', '120110'); +INSERT INTO "public"."cardcodes" VALUES (37, '天津市', NULL, '西青区', '120111'); +INSERT INTO "public"."cardcodes" VALUES (38, '天津市', NULL, '津南区', '120112'); +INSERT INTO "public"."cardcodes" VALUES (39, '天津市', NULL, '北辰区', '120113'); +INSERT INTO "public"."cardcodes" VALUES (40, '天津市', NULL, '武清区', '120114'); +INSERT INTO "public"."cardcodes" VALUES (41, '天津市', NULL, '宝坻区', '120115'); +INSERT INTO "public"."cardcodes" VALUES (42, '天津市', NULL, '宁河县', '120221'); +INSERT INTO "public"."cardcodes" VALUES (43, '天津市', NULL, '武清县', '120222'); +INSERT INTO "public"."cardcodes" VALUES (44, '天津市', NULL, '静海县', '120223'); +INSERT INTO "public"."cardcodes" VALUES (45, '天津市', NULL, '宝坻县', '120224'); +INSERT INTO "public"."cardcodes" VALUES (46, '天津市', NULL, '蓟县', '120225'); +INSERT INTO "public"."cardcodes" VALUES (47, '河北省', '石家庄市', '市辖区', '130101'); +INSERT INTO "public"."cardcodes" VALUES (48, '河北省', '石家庄市', '长安区', '130102'); +INSERT INTO "public"."cardcodes" VALUES (49, '河北省', '石家庄市', '桥东区', '130103'); +INSERT INTO "public"."cardcodes" VALUES (50, '河北省', '石家庄市', '桥西区', '130104'); +INSERT INTO "public"."cardcodes" VALUES (51, '河北省', '石家庄市', '新华区', '130105'); +INSERT INTO "public"."cardcodes" VALUES (52, '河北省', '石家庄市', '郊区', '130106'); +INSERT INTO "public"."cardcodes" VALUES (53, '河北省', '石家庄市', '井陉矿区', '130107'); +INSERT INTO "public"."cardcodes" VALUES (54, '河北省', '石家庄市', '裕华区', '130108'); +INSERT INTO "public"."cardcodes" VALUES (55, '河北省', '石家庄市', '井陉县', '130121'); +INSERT INTO "public"."cardcodes" VALUES (56, '河北省', '石家庄市', '获鹿县', '130122'); +INSERT INTO "public"."cardcodes" VALUES (57, '河北省', '石家庄市', '正定县', '130123'); +INSERT INTO "public"."cardcodes" VALUES (58, '河北省', '石家庄市', '栾城县', '130124'); +INSERT INTO "public"."cardcodes" VALUES (59, '河北省', '石家庄市', '行唐县', '130125'); +INSERT INTO "public"."cardcodes" VALUES (60, '河北省', '石家庄市', '灵寿县', '130126'); +INSERT INTO "public"."cardcodes" VALUES (61, '河北省', '石家庄市', '高邑县', '130127'); +INSERT INTO "public"."cardcodes" VALUES (62, '河北省', '石家庄市', '深泽县', '130128'); +INSERT INTO "public"."cardcodes" VALUES (63, '河北省', '石家庄市', '赞皇县', '130129'); +INSERT INTO "public"."cardcodes" VALUES (64, '河北省', '石家庄市', '无极县', '130130'); +INSERT INTO "public"."cardcodes" VALUES (65, '河北省', '石家庄市', '平山县', '130131'); +INSERT INTO "public"."cardcodes" VALUES (66, '河北省', '石家庄市', '元氏县', '130132'); +INSERT INTO "public"."cardcodes" VALUES (67, '河北省', '石家庄市', '赵县', '130133'); +INSERT INTO "public"."cardcodes" VALUES (68, '河北省', '石家庄市', '辛集市', '130181'); +INSERT INTO "public"."cardcodes" VALUES (69, '河北省', '石家庄市', '藁城市', '130182'); +INSERT INTO "public"."cardcodes" VALUES (70, '河北省', '石家庄市', '晋州市', '130183'); +INSERT INTO "public"."cardcodes" VALUES (71, '河北省', '石家庄市', '新乐市', '130184'); +INSERT INTO "public"."cardcodes" VALUES (72, '河北省', '石家庄市', '鹿泉市', '130185'); +INSERT INTO "public"."cardcodes" VALUES (73, '河北省', '唐山市', '市辖区', '130201'); +INSERT INTO "public"."cardcodes" VALUES (74, '河北省', '唐山市', '路南区', '130202'); +INSERT INTO "public"."cardcodes" VALUES (75, '河北省', '唐山市', '路北区', '130203'); +INSERT INTO "public"."cardcodes" VALUES (76, '河北省', '唐山市', '古冶区', '130204'); +INSERT INTO "public"."cardcodes" VALUES (77, '河北省', '唐山市', '开平区', '130205'); +INSERT INTO "public"."cardcodes" VALUES (78, '河北省', '唐山市', '新区', '130206'); +INSERT INTO "public"."cardcodes" VALUES (79, '河北省', '唐山市', '丰南区', '130207'); +INSERT INTO "public"."cardcodes" VALUES (80, '河北省', '唐山市', '丰润区', '130208'); +INSERT INTO "public"."cardcodes" VALUES (81, '河北省', '唐山市', '丰润县', '130221'); +INSERT INTO "public"."cardcodes" VALUES (82, '河北省', '唐山市', '丰南县', '130222'); +INSERT INTO "public"."cardcodes" VALUES (83, '河北省', '唐山市', '滦县', '130223'); +INSERT INTO "public"."cardcodes" VALUES (84, '河北省', '唐山市', '滦南县', '130224'); +INSERT INTO "public"."cardcodes" VALUES (85, '河北省', '唐山市', '乐亭县', '130225'); +INSERT INTO "public"."cardcodes" VALUES (86, '河北省', '唐山市', '迁安县', '130226'); +INSERT INTO "public"."cardcodes" VALUES (87, '河北省', '唐山市', '迁西县', '130227'); +INSERT INTO "public"."cardcodes" VALUES (88, '河北省', '唐山市', '遵化县', '130228'); +INSERT INTO "public"."cardcodes" VALUES (89, '河北省', '唐山市', '玉田县', '130229'); +INSERT INTO "public"."cardcodes" VALUES (90, '河北省', '唐山市', '唐海县', '130230'); +INSERT INTO "public"."cardcodes" VALUES (91, '河北省', '唐山市', '遵化市', '130281'); +INSERT INTO "public"."cardcodes" VALUES (92, '河北省', '唐山市', '丰南市', '130282'); +INSERT INTO "public"."cardcodes" VALUES (93, '河北省', '唐山市', '迁安市', '130283'); +INSERT INTO "public"."cardcodes" VALUES (94, '河北省', '秦皇岛市', '市辖区', '130301'); +INSERT INTO "public"."cardcodes" VALUES (95, '河北省', '秦皇岛市', '海港区', '130302'); +INSERT INTO "public"."cardcodes" VALUES (96, '河北省', '秦皇岛市', '山海关区', '130303'); +INSERT INTO "public"."cardcodes" VALUES (97, '河北省', '秦皇岛市', '北戴河区', '130304'); +INSERT INTO "public"."cardcodes" VALUES (98, '河北省', '秦皇岛市', '青龙满族自治县', '130321'); +INSERT INTO "public"."cardcodes" VALUES (99, '河北省', '秦皇岛市', '昌黎县', '130322'); +INSERT INTO "public"."cardcodes" VALUES (100, '河北省', '秦皇岛市', '抚宁县', '130323'); +INSERT INTO "public"."cardcodes" VALUES (101, '河北省', '秦皇岛市', '卢龙县', '130324'); +INSERT INTO "public"."cardcodes" VALUES (102, '河北省', '邯郸市', '市辖区', '130401'); +INSERT INTO "public"."cardcodes" VALUES (103, '河北省', '邯郸市', '邯山区', '130402'); +INSERT INTO "public"."cardcodes" VALUES (104, '河北省', '邯郸市', '丛台区', '130403'); +INSERT INTO "public"."cardcodes" VALUES (105, '河北省', '邯郸市', '复兴区', '130404'); +INSERT INTO "public"."cardcodes" VALUES (106, '河北省', '邯郸市', '郊区', '130405'); +INSERT INTO "public"."cardcodes" VALUES (107, '河北省', '邯郸市', '峰峰矿区', '130406'); +INSERT INTO "public"."cardcodes" VALUES (108, '河北省', '邯郸市', '邯郸县', '130421'); +INSERT INTO "public"."cardcodes" VALUES (109, '河北省', '邯郸市', '武安县', '130422'); +INSERT INTO "public"."cardcodes" VALUES (110, '河北省', '邯郸市', '临漳县', '130423'); +INSERT INTO "public"."cardcodes" VALUES (111, '河北省', '邯郸市', '成安县', '130424'); +INSERT INTO "public"."cardcodes" VALUES (112, '河北省', '邯郸市', '大名县', '130425'); +INSERT INTO "public"."cardcodes" VALUES (113, '河北省', '邯郸市', '涉县', '130426'); +INSERT INTO "public"."cardcodes" VALUES (114, '河北省', '邯郸市', '磁县', '130427'); +INSERT INTO "public"."cardcodes" VALUES (115, '河北省', '邯郸市', '肥乡县', '130428'); +INSERT INTO "public"."cardcodes" VALUES (116, '河北省', '邯郸市', '永年县', '130429'); +INSERT INTO "public"."cardcodes" VALUES (117, '河北省', '邯郸市', '邱县', '130430'); +INSERT INTO "public"."cardcodes" VALUES (118, '河北省', '邯郸市', '鸡泽县', '130431'); +INSERT INTO "public"."cardcodes" VALUES (119, '河北省', '邯郸市', '广平县', '130432'); +INSERT INTO "public"."cardcodes" VALUES (120, '河北省', '邯郸市', '馆陶县', '130433'); +INSERT INTO "public"."cardcodes" VALUES (121, '河北省', '邯郸市', '魏县', '130434'); +INSERT INTO "public"."cardcodes" VALUES (122, '河北省', '邯郸市', '曲周县', '130435'); +INSERT INTO "public"."cardcodes" VALUES (123, '河北省', '邯郸市', '武安市', '130481'); +INSERT INTO "public"."cardcodes" VALUES (124, '河北省', '邢台市', '市辖区', '130501'); +INSERT INTO "public"."cardcodes" VALUES (125, '河北省', '邢台市', '桥东区', '130502'); +INSERT INTO "public"."cardcodes" VALUES (126, '河北省', '邢台市', '桥西区', '130503'); +INSERT INTO "public"."cardcodes" VALUES (127, '河北省', '邢台市', '邢台县', '130521'); +INSERT INTO "public"."cardcodes" VALUES (128, '河北省', '邢台市', '临城县', '130522'); +INSERT INTO "public"."cardcodes" VALUES (129, '河北省', '邢台市', '内丘县', '130523'); +INSERT INTO "public"."cardcodes" VALUES (130, '河北省', '邢台市', '柏乡县', '130524'); +INSERT INTO "public"."cardcodes" VALUES (131, '河北省', '邢台市', '隆尧县', '130525'); +INSERT INTO "public"."cardcodes" VALUES (132, '河北省', '邢台市', '任县', '130526'); +INSERT INTO "public"."cardcodes" VALUES (133, '河北省', '邢台市', '南和县', '130527'); +INSERT INTO "public"."cardcodes" VALUES (134, '河北省', '邢台市', '宁晋县', '130528'); +INSERT INTO "public"."cardcodes" VALUES (135, '河北省', '邢台市', '巨鹿县', '130529'); +INSERT INTO "public"."cardcodes" VALUES (136, '河北省', '邢台市', '新河县', '130530'); +INSERT INTO "public"."cardcodes" VALUES (137, '河北省', '邢台市', '广宗县', '130531'); +INSERT INTO "public"."cardcodes" VALUES (138, '河北省', '邢台市', '平乡县', '130532'); +INSERT INTO "public"."cardcodes" VALUES (139, '河北省', '邢台市', '威县', '130533'); +INSERT INTO "public"."cardcodes" VALUES (140, '河北省', '邢台市', '清河县', '130534'); +INSERT INTO "public"."cardcodes" VALUES (141, '河北省', '邢台市', '临西县', '130535'); +INSERT INTO "public"."cardcodes" VALUES (142, '河北省', '邢台市', '南宫市', '130581'); +INSERT INTO "public"."cardcodes" VALUES (143, '河北省', '邢台市', '沙河市', '130582'); +INSERT INTO "public"."cardcodes" VALUES (144, '河北省', '保定市', '市辖区', '130601'); +INSERT INTO "public"."cardcodes" VALUES (145, '河北省', '保定市', '新市区', '130602'); +INSERT INTO "public"."cardcodes" VALUES (146, '河北省', '保定市', '北市区', '130603'); +INSERT INTO "public"."cardcodes" VALUES (147, '河北省', '保定市', '南市区', '130604'); +INSERT INTO "public"."cardcodes" VALUES (148, '河北省', '保定市', '满城县', '130621'); +INSERT INTO "public"."cardcodes" VALUES (149, '河北省', '保定市', '清苑县', '130622'); +INSERT INTO "public"."cardcodes" VALUES (150, '河北省', '保定市', '涞水县', '130623'); +INSERT INTO "public"."cardcodes" VALUES (151, '河北省', '保定市', '阜平县', '130624'); +INSERT INTO "public"."cardcodes" VALUES (152, '河北省', '保定市', '徐水县', '130625'); +INSERT INTO "public"."cardcodes" VALUES (153, '河北省', '保定市', '定兴县', '130626'); +INSERT INTO "public"."cardcodes" VALUES (154, '河北省', '保定市', '唐县', '130627'); +INSERT INTO "public"."cardcodes" VALUES (155, '河北省', '保定市', '高阳县', '130628'); +INSERT INTO "public"."cardcodes" VALUES (156, '河北省', '保定市', '容城县', '130629'); +INSERT INTO "public"."cardcodes" VALUES (157, '河北省', '保定市', '涞源县', '130630'); +INSERT INTO "public"."cardcodes" VALUES (158, '河北省', '保定市', '望都县', '130631'); +INSERT INTO "public"."cardcodes" VALUES (159, '河北省', '保定市', '安新县', '130632'); +INSERT INTO "public"."cardcodes" VALUES (160, '河北省', '保定市', '易县', '130633'); +INSERT INTO "public"."cardcodes" VALUES (161, '河北省', '保定市', '曲阳县', '130634'); +INSERT INTO "public"."cardcodes" VALUES (162, '河北省', '保定市', '蠡县', '130635'); +INSERT INTO "public"."cardcodes" VALUES (163, '河北省', '保定市', '顺平县', '130636'); +INSERT INTO "public"."cardcodes" VALUES (164, '河北省', '保定市', '博野县', '130637'); +INSERT INTO "public"."cardcodes" VALUES (165, '河北省', '保定市', '雄县', '130638'); +INSERT INTO "public"."cardcodes" VALUES (166, '河北省', '保定市', '涿州市', '130681'); +INSERT INTO "public"."cardcodes" VALUES (167, '河北省', '保定市', '定州市', '130682'); +INSERT INTO "public"."cardcodes" VALUES (168, '河北省', '保定市', '安国市', '130683'); +INSERT INTO "public"."cardcodes" VALUES (169, '河北省', '保定市', '高碑店市', '130684'); +INSERT INTO "public"."cardcodes" VALUES (170, '河北省', '张家口市', '市辖区', '130701'); +INSERT INTO "public"."cardcodes" VALUES (171, '河北省', '张家口市', '桥东区', '130702'); +INSERT INTO "public"."cardcodes" VALUES (172, '河北省', '张家口市', '桥西区', '130703'); +INSERT INTO "public"."cardcodes" VALUES (173, '河北省', '张家口市', '宣化区', '130705'); +INSERT INTO "public"."cardcodes" VALUES (174, '河北省', '张家口市', '下花园区', '130706'); +INSERT INTO "public"."cardcodes" VALUES (175, '河北省', '张家口市', '宣化县', '130721'); +INSERT INTO "public"."cardcodes" VALUES (176, '河北省', '张家口市', '张北县', '130722'); +INSERT INTO "public"."cardcodes" VALUES (177, '河北省', '张家口市', '康保县', '130723'); +INSERT INTO "public"."cardcodes" VALUES (178, '河北省', '张家口市', '沽源县', '130724'); +INSERT INTO "public"."cardcodes" VALUES (179, '河北省', '张家口市', '尚义县', '130725'); +INSERT INTO "public"."cardcodes" VALUES (180, '河北省', '张家口市', '蔚县', '130726'); +INSERT INTO "public"."cardcodes" VALUES (181, '河北省', '张家口市', '阳原县', '130727'); +INSERT INTO "public"."cardcodes" VALUES (182, '河北省', '张家口市', '怀安县', '130728'); +INSERT INTO "public"."cardcodes" VALUES (183, '河北省', '张家口市', '万全县', '130729'); +INSERT INTO "public"."cardcodes" VALUES (184, '河北省', '张家口市', '怀来县', '130730'); +INSERT INTO "public"."cardcodes" VALUES (185, '河北省', '张家口市', '涿鹿县', '130731'); +INSERT INTO "public"."cardcodes" VALUES (186, '河北省', '张家口市', '赤城县', '130732'); +INSERT INTO "public"."cardcodes" VALUES (187, '河北省', '张家口市', '崇礼县', '130733'); +INSERT INTO "public"."cardcodes" VALUES (188, '河北省', '承德市', '市辖区', '130801'); +INSERT INTO "public"."cardcodes" VALUES (189, '河北省', '承德市', '双桥区', '130802'); +INSERT INTO "public"."cardcodes" VALUES (190, '河北省', '承德市', '双滦区', '130803'); +INSERT INTO "public"."cardcodes" VALUES (191, '河北省', '承德市', '鹰手营子矿区', '130804'); +INSERT INTO "public"."cardcodes" VALUES (192, '河北省', '承德市', '承德县', '130821'); +INSERT INTO "public"."cardcodes" VALUES (193, '河北省', '承德市', '兴隆县', '130822'); +INSERT INTO "public"."cardcodes" VALUES (194, '河北省', '承德市', '平泉县', '130823'); +INSERT INTO "public"."cardcodes" VALUES (195, '河北省', '承德市', '滦平县', '130824'); +INSERT INTO "public"."cardcodes" VALUES (196, '河北省', '承德市', '隆化县', '130825'); +INSERT INTO "public"."cardcodes" VALUES (197, '河北省', '承德市', '丰宁满族自治县', '130826'); +INSERT INTO "public"."cardcodes" VALUES (198, '河北省', '承德市', '宽城满族自治县', '130827'); +INSERT INTO "public"."cardcodes" VALUES (199, '河北省', '承德市', '围场满族蒙古族自治县', '130828'); +INSERT INTO "public"."cardcodes" VALUES (200, '河北省', '沧州市', '市辖区', '130901'); +INSERT INTO "public"."cardcodes" VALUES (201, '河北省', '沧州市', '新华区', '130902'); +INSERT INTO "public"."cardcodes" VALUES (202, '河北省', '沧州市', '运河区', '130903'); +INSERT INTO "public"."cardcodes" VALUES (203, '河北省', '沧州市', '郊区', '130904'); +INSERT INTO "public"."cardcodes" VALUES (204, '河北省', '沧州市', '沧县', '130921'); +INSERT INTO "public"."cardcodes" VALUES (205, '河北省', '沧州市', '青县', '130922'); +INSERT INTO "public"."cardcodes" VALUES (206, '河北省', '沧州市', '东光县', '130923'); +INSERT INTO "public"."cardcodes" VALUES (207, '河北省', '沧州市', '海兴县', '130924'); +INSERT INTO "public"."cardcodes" VALUES (208, '河北省', '沧州市', '盐山县', '130925'); +INSERT INTO "public"."cardcodes" VALUES (209, '河北省', '沧州市', '肃宁县', '130926'); +INSERT INTO "public"."cardcodes" VALUES (210, '河北省', '沧州市', '南皮县', '130927'); +INSERT INTO "public"."cardcodes" VALUES (211, '河北省', '沧州市', '吴桥县', '130928'); +INSERT INTO "public"."cardcodes" VALUES (212, '河北省', '沧州市', '献县', '130929'); +INSERT INTO "public"."cardcodes" VALUES (213, '河北省', '沧州市', '孟村回族自治县', '130930'); +INSERT INTO "public"."cardcodes" VALUES (214, '河北省', '沧州市', '泊头市', '130981'); +INSERT INTO "public"."cardcodes" VALUES (215, '河北省', '沧州市', '任丘市', '130982'); +INSERT INTO "public"."cardcodes" VALUES (216, '河北省', '沧州市', '黄骅市', '130983'); +INSERT INTO "public"."cardcodes" VALUES (217, '河北省', '沧州市', '河间市', '130984'); +INSERT INTO "public"."cardcodes" VALUES (218, '河北省', '廊坊市', '市辖区', '131001'); +INSERT INTO "public"."cardcodes" VALUES (219, '河北省', '廊坊市', '安次区', '131002'); +INSERT INTO "public"."cardcodes" VALUES (220, '河北省', '廊坊市', '广阳区', '131003'); +INSERT INTO "public"."cardcodes" VALUES (221, '河北省', '廊坊市', '三河县', '131021'); +INSERT INTO "public"."cardcodes" VALUES (222, '河北省', '廊坊市', '固安县', '131022'); +INSERT INTO "public"."cardcodes" VALUES (223, '河北省', '廊坊市', '永清县', '131023'); +INSERT INTO "public"."cardcodes" VALUES (224, '河北省', '廊坊市', '香河县', '131024'); +INSERT INTO "public"."cardcodes" VALUES (225, '河北省', '廊坊市', '大城县', '131025'); +INSERT INTO "public"."cardcodes" VALUES (226, '河北省', '廊坊市', '文安县', '131026'); +INSERT INTO "public"."cardcodes" VALUES (227, '河北省', '廊坊市', '霸县', '131027'); +INSERT INTO "public"."cardcodes" VALUES (228, '河北省', '廊坊市', '大厂回族自治县', '131028'); +INSERT INTO "public"."cardcodes" VALUES (229, '河北省', '廊坊市', '霸州市', '131081'); +INSERT INTO "public"."cardcodes" VALUES (230, '河北省', '廊坊市', '三河市', '131082'); +INSERT INTO "public"."cardcodes" VALUES (231, '河北省', '衡水市', '市辖区', '131101'); +INSERT INTO "public"."cardcodes" VALUES (232, '河北省', '衡水市', '桃城区', '131102'); +INSERT INTO "public"."cardcodes" VALUES (233, '河北省', '衡水市', '枣强县', '131121'); +INSERT INTO "public"."cardcodes" VALUES (234, '河北省', '衡水市', '武邑县', '131122'); +INSERT INTO "public"."cardcodes" VALUES (235, '河北省', '衡水市', '武强县', '131123'); +INSERT INTO "public"."cardcodes" VALUES (236, '河北省', '衡水市', '饶阳县', '131124'); +INSERT INTO "public"."cardcodes" VALUES (237, '河北省', '衡水市', '安平县', '131125'); +INSERT INTO "public"."cardcodes" VALUES (238, '河北省', '衡水市', '故城县', '131126'); +INSERT INTO "public"."cardcodes" VALUES (239, '河北省', '衡水市', '景县', '131127'); +INSERT INTO "public"."cardcodes" VALUES (240, '河北省', '衡水市', '阜城县', '131128'); +INSERT INTO "public"."cardcodes" VALUES (241, '河北省', '衡水市', '冀州市', '131181'); +INSERT INTO "public"."cardcodes" VALUES (242, '河北省', '衡水市', '深州市', '131182'); +INSERT INTO "public"."cardcodes" VALUES (243, '河北省', '邯郸地区', '邯郸市', '132101'); +INSERT INTO "public"."cardcodes" VALUES (244, '河北省', '邯郸地区', '大名县', '132121'); +INSERT INTO "public"."cardcodes" VALUES (245, '河北省', '邯郸地区', '魏县', '132122'); +INSERT INTO "public"."cardcodes" VALUES (246, '河北省', '邯郸地区', '曲周县', '132123'); +INSERT INTO "public"."cardcodes" VALUES (247, '河北省', '邯郸地区', '丘县', '132124'); +INSERT INTO "public"."cardcodes" VALUES (248, '河北省', '邯郸地区', '鸡泽县', '132125'); +INSERT INTO "public"."cardcodes" VALUES (249, '河北省', '邯郸地区', '肥乡县', '132126'); +INSERT INTO "public"."cardcodes" VALUES (250, '河北省', '邯郸地区', '广平县', '132127'); +INSERT INTO "public"."cardcodes" VALUES (251, '河北省', '邯郸地区', '成安县', '132128'); +INSERT INTO "public"."cardcodes" VALUES (252, '河北省', '邯郸地区', '临漳县', '132129'); +INSERT INTO "public"."cardcodes" VALUES (253, '河北省', '邯郸地区', '磁县', '132130'); +INSERT INTO "public"."cardcodes" VALUES (254, '河北省', '邯郸地区', '武安县', '132131'); +INSERT INTO "public"."cardcodes" VALUES (255, '河北省', '邯郸地区', '涉县', '132132'); +INSERT INTO "public"."cardcodes" VALUES (256, '河北省', '邯郸地区', '永年县', '132133'); +INSERT INTO "public"."cardcodes" VALUES (257, '河北省', '邯郸地区', '邯郸县', '132134'); +INSERT INTO "public"."cardcodes" VALUES (258, '河北省', '邯郸地区', '馆陶县', '132135'); +INSERT INTO "public"."cardcodes" VALUES (259, '河北省', '邢台地区', '南宫市', '132201'); +INSERT INTO "public"."cardcodes" VALUES (260, '河北省', '邢台地区', '沙河市', '132202'); +INSERT INTO "public"."cardcodes" VALUES (261, '河北省', '邢台地区', '邢台县', '132221'); +INSERT INTO "public"."cardcodes" VALUES (262, '河北省', '邢台地区', '沙河县', '132222'); +INSERT INTO "public"."cardcodes" VALUES (263, '河北省', '邢台地区', '临城县', '132223'); +INSERT INTO "public"."cardcodes" VALUES (264, '河北省', '邢台地区', '内丘县', '132224'); +INSERT INTO "public"."cardcodes" VALUES (265, '河北省', '邢台地区', '柏乡县', '132225'); +INSERT INTO "public"."cardcodes" VALUES (266, '河北省', '邢台地区', '隆尧县', '132226'); +INSERT INTO "public"."cardcodes" VALUES (267, '河北省', '邢台地区', '任县', '132227'); +INSERT INTO "public"."cardcodes" VALUES (268, '河北省', '邢台地区', '南和县', '132228'); +INSERT INTO "public"."cardcodes" VALUES (269, '河北省', '邢台地区', '宁晋县', '132229'); +INSERT INTO "public"."cardcodes" VALUES (270, '河北省', '邢台地区', '南宫县', '132230'); +INSERT INTO "public"."cardcodes" VALUES (271, '河北省', '邢台地区', '巨鹿县', '132231'); +INSERT INTO "public"."cardcodes" VALUES (272, '河北省', '邢台地区', '新河县', '132232'); +INSERT INTO "public"."cardcodes" VALUES (273, '河北省', '邢台地区', '广宗县', '132233'); +INSERT INTO "public"."cardcodes" VALUES (274, '河北省', '邢台地区', '平乡县', '132234'); +INSERT INTO "public"."cardcodes" VALUES (275, '河北省', '邢台地区', '威县', '132235'); +INSERT INTO "public"."cardcodes" VALUES (276, '河北省', '邢台地区', '清河县', '132236'); +INSERT INTO "public"."cardcodes" VALUES (277, '河北省', '邢台地区', '临西县', '132237'); +INSERT INTO "public"."cardcodes" VALUES (278, '河北省', '石家庄市', '辛集市', '132301'); +INSERT INTO "public"."cardcodes" VALUES (279, '河北省', '石家庄市', '藁城市', '132302'); +INSERT INTO "public"."cardcodes" VALUES (280, '河北省', '石家庄市', '束鹿县', '132321'); +INSERT INTO "public"."cardcodes" VALUES (281, '河北省', '石家庄市', '晋县', '132322'); +INSERT INTO "public"."cardcodes" VALUES (282, '河北省', '石家庄市', '深泽县', '132323'); +INSERT INTO "public"."cardcodes" VALUES (283, '河北省', '石家庄市', '无极县', '132324'); +INSERT INTO "public"."cardcodes" VALUES (284, '河北省', '石家庄市', '藁城县', '132325'); +INSERT INTO "public"."cardcodes" VALUES (285, '河北省', '石家庄市', '赵县', '132326'); +INSERT INTO "public"."cardcodes" VALUES (286, '河北省', '石家庄市', '栾城县', '132327'); +INSERT INTO "public"."cardcodes" VALUES (287, '河北省', '石家庄市', '正定县', '132328'); +INSERT INTO "public"."cardcodes" VALUES (288, '河北省', '石家庄市', '新乐县', '132329'); +INSERT INTO "public"."cardcodes" VALUES (289, '河北省', '石家庄市', '高邑县', '132330'); +INSERT INTO "public"."cardcodes" VALUES (290, '河北省', '石家庄市', '元氏县', '132331'); +INSERT INTO "public"."cardcodes" VALUES (291, '河北省', '石家庄市', '赞皇县', '132332'); +INSERT INTO "public"."cardcodes" VALUES (292, '河北省', '石家庄市', '井陉县', '132333'); +INSERT INTO "public"."cardcodes" VALUES (293, '河北省', '石家庄市', '获鹿县', '132334'); +INSERT INTO "public"."cardcodes" VALUES (294, '河北省', '石家庄市', '平山县', '132335'); +INSERT INTO "public"."cardcodes" VALUES (295, '河北省', '石家庄市', '灵寿县', '132336'); +INSERT INTO "public"."cardcodes" VALUES (296, '河北省', '石家庄市', '行唐县', '132337'); +INSERT INTO "public"."cardcodes" VALUES (297, '河北省', '保定地区', '定州市', '132401'); +INSERT INTO "public"."cardcodes" VALUES (298, '河北省', '保定地区', '涿州市', '132402'); +INSERT INTO "public"."cardcodes" VALUES (299, '河北省', '保定地区', '安国市', '132403'); +INSERT INTO "public"."cardcodes" VALUES (300, '河北省', '保定地区', '高碑店市', '132404'); +INSERT INTO "public"."cardcodes" VALUES (301, '河北省', '保定地区', '易县', '132421'); +INSERT INTO "public"."cardcodes" VALUES (302, '河北省', '保定地区', '满城县', '132422'); +INSERT INTO "public"."cardcodes" VALUES (303, '河北省', '保定地区', '徐水县', '132423'); +INSERT INTO "public"."cardcodes" VALUES (304, '河北省', '保定地区', '涞源县', '132424'); +INSERT INTO "public"."cardcodes" VALUES (305, '河北省', '保定地区', '定兴县', '132425'); +INSERT INTO "public"."cardcodes" VALUES (306, '河北省', '保定地区', '完县', '132426'); +INSERT INTO "public"."cardcodes" VALUES (307, '河北省', '保定地区', '唐县', '132427'); +INSERT INTO "public"."cardcodes" VALUES (308, '河北省', '保定地区', '望都县', '132428'); +INSERT INTO "public"."cardcodes" VALUES (309, '河北省', '保定地区', '涞水县', '132429'); +INSERT INTO "public"."cardcodes" VALUES (310, '河北省', '保定地区', '涿县', '132430'); +INSERT INTO "public"."cardcodes" VALUES (311, '河北省', '保定地区', '清苑县', '132431'); +INSERT INTO "public"."cardcodes" VALUES (312, '河北省', '保定地区', '高阳县', '132432'); +INSERT INTO "public"."cardcodes" VALUES (313, '河北省', '保定地区', '安新县', '132433'); +INSERT INTO "public"."cardcodes" VALUES (314, '河北省', '保定地区', '雄县', '132434'); +INSERT INTO "public"."cardcodes" VALUES (315, '河北省', '保定地区', '容城县', '132435'); +INSERT INTO "public"."cardcodes" VALUES (316, '河北省', '保定地区', '新城县', '132436'); +INSERT INTO "public"."cardcodes" VALUES (317, '河北省', '保定地区', '曲阳县', '132437'); +INSERT INTO "public"."cardcodes" VALUES (318, '河北省', '保定地区', '阜平县', '132438'); +INSERT INTO "public"."cardcodes" VALUES (319, '河北省', '保定地区', '定县', '132439'); +INSERT INTO "public"."cardcodes" VALUES (320, '河北省', '保定地区', '安国县', '132440'); +INSERT INTO "public"."cardcodes" VALUES (321, '河北省', '保定地区', '博野县', '132441'); +INSERT INTO "public"."cardcodes" VALUES (322, '河北省', '保定地区', '蠡县', '132442'); +INSERT INTO "public"."cardcodes" VALUES (323, '河北省', '张家口地区', '张家口市', '132501'); +INSERT INTO "public"."cardcodes" VALUES (324, '河北省', '张家口地区', '张北市', '132521'); +INSERT INTO "public"."cardcodes" VALUES (1332, '上海市', NULL, '宝山县', '310223'); +INSERT INTO "public"."cardcodes" VALUES (325, '河北省', '张家口地区', '康保县', '132522'); +INSERT INTO "public"."cardcodes" VALUES (326, '河北省', '张家口地区', '沽源县', '132523'); +INSERT INTO "public"."cardcodes" VALUES (327, '河北省', '张家口地区', '尚义县', '132524'); +INSERT INTO "public"."cardcodes" VALUES (328, '河北省', '张家口地区', '蔚县', '132525'); +INSERT INTO "public"."cardcodes" VALUES (329, '河北省', '张家口地区', '阳原县', '132526'); +INSERT INTO "public"."cardcodes" VALUES (330, '河北省', '张家口地区', '怀安县', '132527'); +INSERT INTO "public"."cardcodes" VALUES (331, '河北省', '张家口地区', '万全县', '132528'); +INSERT INTO "public"."cardcodes" VALUES (332, '河北省', '张家口地区', '怀来县', '132529'); +INSERT INTO "public"."cardcodes" VALUES (333, '河北省', '张家口地区', '涿鹿县', '132530'); +INSERT INTO "public"."cardcodes" VALUES (334, '河北省', '张家口地区', '宣化县', '132531'); +INSERT INTO "public"."cardcodes" VALUES (335, '河北省', '张家口地区', '赤城县', '132532'); +INSERT INTO "public"."cardcodes" VALUES (336, '河北省', '张家口地区', '崇礼县', '132533'); +INSERT INTO "public"."cardcodes" VALUES (337, '河北省', '承德地区', '承德市', '132601'); +INSERT INTO "public"."cardcodes" VALUES (338, '河北省', '承德地区', '青龙县', '132621'); +INSERT INTO "public"."cardcodes" VALUES (339, '河北省', '承德地区', '宽城满族自治县', '132622'); +INSERT INTO "public"."cardcodes" VALUES (340, '河北省', '承德地区', '兴隆县', '132623'); +INSERT INTO "public"."cardcodes" VALUES (341, '河北省', '承德地区', '平泉县', '132624'); +INSERT INTO "public"."cardcodes" VALUES (342, '河北省', '承德地区', '承德县', '132625'); +INSERT INTO "public"."cardcodes" VALUES (343, '河北省', '承德地区', '滦平县', '132626'); +INSERT INTO "public"."cardcodes" VALUES (344, '河北省', '承德地区', '丰宁满族自治县', '132627'); +INSERT INTO "public"."cardcodes" VALUES (345, '河北省', '承德地区', '隆化县', '132628'); +INSERT INTO "public"."cardcodes" VALUES (346, '河北省', '承德地区', '围场满族蒙古族自治县', '132629'); +INSERT INTO "public"."cardcodes" VALUES (347, '河北省', '廊坊地区', '廊坊市', '132801'); +INSERT INTO "public"."cardcodes" VALUES (348, '河北省', '廊坊地区', '三河县', '132821'); +INSERT INTO "public"."cardcodes" VALUES (349, '河北省', '廊坊地区', '大厂回族自治县', '132822'); +INSERT INTO "public"."cardcodes" VALUES (350, '河北省', '廊坊地区', '香河县', '132823'); +INSERT INTO "public"."cardcodes" VALUES (351, '河北省', '廊坊地区', '永清县', '132825'); +INSERT INTO "public"."cardcodes" VALUES (352, '河北省', '廊坊地区', '固安县', '132826'); +INSERT INTO "public"."cardcodes" VALUES (353, '河北省', '廊坊地区', '霸县', '132827'); +INSERT INTO "public"."cardcodes" VALUES (354, '河北省', '廊坊地区', '文安县', '132828'); +INSERT INTO "public"."cardcodes" VALUES (355, '河北省', '廊坊地区', '大城县', '132829'); +INSERT INTO "public"."cardcodes" VALUES (356, '河北省', '沧州地区', '沧州市', '132901'); +INSERT INTO "public"."cardcodes" VALUES (357, '河北省', '沧州地区', '泊头市', '132902'); +INSERT INTO "public"."cardcodes" VALUES (358, '河北省', '沧州地区', '任丘市', '132903'); +INSERT INTO "public"."cardcodes" VALUES (359, '河北省', '沧州地区', '黄骅市', '132904'); +INSERT INTO "public"."cardcodes" VALUES (360, '河北省', '沧州地区', '河间市', '132905'); +INSERT INTO "public"."cardcodes" VALUES (361, '河北省', '沧州地区', '沧县', '132921'); +INSERT INTO "public"."cardcodes" VALUES (362, '河北省', '沧州地区', '河间县', '132922'); +INSERT INTO "public"."cardcodes" VALUES (363, '河北省', '沧州地区', '肃宁县', '132923'); +INSERT INTO "public"."cardcodes" VALUES (364, '河北省', '沧州地区', '献县', '132924'); +INSERT INTO "public"."cardcodes" VALUES (365, '河北省', '沧州地区', '交河县', '132925'); +INSERT INTO "public"."cardcodes" VALUES (366, '河北省', '沧州地区', '吴桥县', '132926'); +INSERT INTO "public"."cardcodes" VALUES (367, '河北省', '沧州地区', '东光县', '132927'); +INSERT INTO "public"."cardcodes" VALUES (368, '河北省', '沧州地区', '南皮县', '132928'); +INSERT INTO "public"."cardcodes" VALUES (369, '河北省', '沧州地区', '盐山县', '132929'); +INSERT INTO "public"."cardcodes" VALUES (370, '河北省', '沧州地区', '黄骅县', '132930'); +INSERT INTO "public"."cardcodes" VALUES (371, '河北省', '沧州地区', '孟村回族自治县', '132931'); +INSERT INTO "public"."cardcodes" VALUES (372, '河北省', '沧州地区', '青县', '132932'); +INSERT INTO "public"."cardcodes" VALUES (373, '河北省', '沧州地区', '任丘县', '132933'); +INSERT INTO "public"."cardcodes" VALUES (374, '河北省', '沧州地区', '海兴县', '132934'); +INSERT INTO "public"."cardcodes" VALUES (375, '河北省', '衡水地区', '衡水市', '133001'); +INSERT INTO "public"."cardcodes" VALUES (376, '河北省', '衡水地区', '冀州市', '133002'); +INSERT INTO "public"."cardcodes" VALUES (377, '河北省', '衡水地区', '衡水县', '133021'); +INSERT INTO "public"."cardcodes" VALUES (378, '河北省', '衡水地区', '冀县', '133022'); +INSERT INTO "public"."cardcodes" VALUES (379, '河北省', '衡水地区', '枣强县', '133023'); +INSERT INTO "public"."cardcodes" VALUES (380, '河北省', '衡水地区', '武邑县', '133024'); +INSERT INTO "public"."cardcodes" VALUES (381, '河北省', '衡水地区', '深县', '133025'); +INSERT INTO "public"."cardcodes" VALUES (382, '河北省', '衡水地区', '武强县', '133026'); +INSERT INTO "public"."cardcodes" VALUES (383, '河北省', '衡水地区', '饶阳县', '133027'); +INSERT INTO "public"."cardcodes" VALUES (384, '河北省', '衡水地区', '安平县', '133028'); +INSERT INTO "public"."cardcodes" VALUES (385, '河北省', '衡水地区', '故城县', '133029'); +INSERT INTO "public"."cardcodes" VALUES (386, '河北省', '衡水地区', '景县', '133030'); +INSERT INTO "public"."cardcodes" VALUES (387, '河北省', '衡水地区', '阜城县', '133031'); +INSERT INTO "public"."cardcodes" VALUES (388, '河北省', NULL, '武安市', '139001'); +INSERT INTO "public"."cardcodes" VALUES (389, '山西省', '太原市', '市辖区', '140101'); +INSERT INTO "public"."cardcodes" VALUES (390, '山西省', '太原市', '南城区', '140102'); +INSERT INTO "public"."cardcodes" VALUES (391, '山西省', '太原市', '北城区', '140103'); +INSERT INTO "public"."cardcodes" VALUES (392, '山西省', '太原市', '河西区', '140104'); +INSERT INTO "public"."cardcodes" VALUES (393, '山西省', '太原市', '小店区', '140105'); +INSERT INTO "public"."cardcodes" VALUES (394, '山西省', '太原市', '迎泽区', '140106'); +INSERT INTO "public"."cardcodes" VALUES (395, '山西省', '太原市', '杏花岭区', '140107'); +INSERT INTO "public"."cardcodes" VALUES (396, '山西省', '太原市', '尖草坪区', '140108'); +INSERT INTO "public"."cardcodes" VALUES (397, '山西省', '太原市', '万柏林区', '140109'); +INSERT INTO "public"."cardcodes" VALUES (398, '山西省', '太原市', '晋源区', '140110'); +INSERT INTO "public"."cardcodes" VALUES (399, '山西省', '太原市', '古交工矿区', '140111'); +INSERT INTO "public"."cardcodes" VALUES (400, '山西省', '太原市', '南郊区', '140112'); +INSERT INTO "public"."cardcodes" VALUES (401, '山西省', '太原市', '北郊区', '140113'); +INSERT INTO "public"."cardcodes" VALUES (402, '山西省', '太原市', '清徐县', '140121'); +INSERT INTO "public"."cardcodes" VALUES (403, '山西省', '太原市', '阳曲县', '140122'); +INSERT INTO "public"."cardcodes" VALUES (404, '山西省', '太原市', '娄烦县', '140123'); +INSERT INTO "public"."cardcodes" VALUES (405, '山西省', '太原市', '古交市', '140181'); +INSERT INTO "public"."cardcodes" VALUES (406, '山西省', '大同市', '市辖区', '140201'); +INSERT INTO "public"."cardcodes" VALUES (407, '山西省', '大同市', '城区', '140202'); +INSERT INTO "public"."cardcodes" VALUES (408, '山西省', '大同市', '矿区', '140203'); +INSERT INTO "public"."cardcodes" VALUES (409, '山西省', '大同市', '南郊区', '140211'); +INSERT INTO "public"."cardcodes" VALUES (410, '山西省', '大同市', '新荣区', '140212'); +INSERT INTO "public"."cardcodes" VALUES (411, '山西省', '大同市', '阳高县', '140221'); +INSERT INTO "public"."cardcodes" VALUES (412, '山西省', '大同市', '天镇县', '140222'); +INSERT INTO "public"."cardcodes" VALUES (413, '山西省', '大同市', '广灵县', '140223'); +INSERT INTO "public"."cardcodes" VALUES (414, '山西省', '大同市', '灵丘县', '140224'); +INSERT INTO "public"."cardcodes" VALUES (415, '山西省', '大同市', '浑源县', '140225'); +INSERT INTO "public"."cardcodes" VALUES (416, '山西省', '大同市', '左云县', '140226'); +INSERT INTO "public"."cardcodes" VALUES (417, '山西省', '大同市', '大同县', '140227'); +INSERT INTO "public"."cardcodes" VALUES (418, '山西省', '大同市', '左云县', '140230'); +INSERT INTO "public"."cardcodes" VALUES (419, '山西省', '大同市', '大同县', '140232'); +INSERT INTO "public"."cardcodes" VALUES (420, '山西省', '阳泉市', '市辖区', '140301'); +INSERT INTO "public"."cardcodes" VALUES (421, '山西省', '阳泉市', '城区', '140302'); +INSERT INTO "public"."cardcodes" VALUES (422, '山西省', '阳泉市', '矿区', '140303'); +INSERT INTO "public"."cardcodes" VALUES (423, '山西省', '阳泉市', '郊区', '140311'); +INSERT INTO "public"."cardcodes" VALUES (424, '山西省', '阳泉市', '平定县', '140321'); +INSERT INTO "public"."cardcodes" VALUES (425, '山西省', '阳泉市', '盂县', '140322'); +INSERT INTO "public"."cardcodes" VALUES (426, '山西省', '长治市', '市辖区', '140401'); +INSERT INTO "public"."cardcodes" VALUES (427, '山西省', '长治市', '城区', '140402'); +INSERT INTO "public"."cardcodes" VALUES (428, '山西省', '长治市', '郊区', '140411'); +INSERT INTO "public"."cardcodes" VALUES (429, '山西省', '长治市', '长治县', '140421'); +INSERT INTO "public"."cardcodes" VALUES (430, '山西省', '长治市', '襄垣县', '140423'); +INSERT INTO "public"."cardcodes" VALUES (431, '山西省', '长治市', '屯留县', '140424'); +INSERT INTO "public"."cardcodes" VALUES (432, '山西省', '长治市', '平顺县', '140425'); +INSERT INTO "public"."cardcodes" VALUES (433, '山西省', '长治市', '黎城县', '140426'); +INSERT INTO "public"."cardcodes" VALUES (434, '山西省', '长治市', '壶关县', '140427'); +INSERT INTO "public"."cardcodes" VALUES (435, '山西省', '长治市', '长子县', '140428'); +INSERT INTO "public"."cardcodes" VALUES (436, '山西省', '长治市', '武乡县', '140429'); +INSERT INTO "public"."cardcodes" VALUES (437, '山西省', '长治市', '沁县', '140430'); +INSERT INTO "public"."cardcodes" VALUES (438, '山西省', '长治市', '沁源县', '140431'); +INSERT INTO "public"."cardcodes" VALUES (439, '山西省', '长治市', '潞城市', '140481'); +INSERT INTO "public"."cardcodes" VALUES (440, '山西省', '晋城市', '市辖区', '140501'); +INSERT INTO "public"."cardcodes" VALUES (441, '山西省', '晋城市', '城区', '140502'); +INSERT INTO "public"."cardcodes" VALUES (442, '山西省', '晋城市', '郊区', '140511'); +INSERT INTO "public"."cardcodes" VALUES (443, '山西省', '晋城市', '沁水县', '140521'); +INSERT INTO "public"."cardcodes" VALUES (444, '山西省', '晋城市', '阳城县', '140522'); +INSERT INTO "public"."cardcodes" VALUES (445, '山西省', '晋城市', '高平县', '140523'); +INSERT INTO "public"."cardcodes" VALUES (446, '山西省', '晋城市', '陵川县', '140524'); +INSERT INTO "public"."cardcodes" VALUES (447, '山西省', '晋城市', '泽州县', '140525'); +INSERT INTO "public"."cardcodes" VALUES (448, '山西省', '晋城市', '高平市', '140581'); +INSERT INTO "public"."cardcodes" VALUES (449, '山西省', '朔州市', '市辖区', '140601'); +INSERT INTO "public"."cardcodes" VALUES (450, '山西省', '朔州市', '朔城区', '140602'); +INSERT INTO "public"."cardcodes" VALUES (451, '山西省', '朔州市', '平鲁区', '140603'); +INSERT INTO "public"."cardcodes" VALUES (452, '山西省', '朔州市', '山阴县', '140621'); +INSERT INTO "public"."cardcodes" VALUES (453, '山西省', '朔州市', '应县', '140622'); +INSERT INTO "public"."cardcodes" VALUES (454, '山西省', '朔州市', '右玉县', '140623'); +INSERT INTO "public"."cardcodes" VALUES (455, '山西省', '朔州市', '怀仁县', '140624'); +INSERT INTO "public"."cardcodes" VALUES (456, '山西省', '晋中市', '市辖区', '140701'); +INSERT INTO "public"."cardcodes" VALUES (457, '山西省', '晋中市', '榆次区', '140702'); +INSERT INTO "public"."cardcodes" VALUES (458, '山西省', '晋中市', '榆社县', '140721'); +INSERT INTO "public"."cardcodes" VALUES (459, '山西省', '晋中市', '左权县', '140722'); +INSERT INTO "public"."cardcodes" VALUES (460, '山西省', '晋中市', '和顺县', '140723'); +INSERT INTO "public"."cardcodes" VALUES (461, '山西省', '晋中市', '昔阳县', '140724'); +INSERT INTO "public"."cardcodes" VALUES (462, '山西省', '晋中市', '寿阳县', '140725'); +INSERT INTO "public"."cardcodes" VALUES (463, '山西省', '晋中市', '太谷县', '140726'); +INSERT INTO "public"."cardcodes" VALUES (464, '山西省', '晋中市', '祁县', '140727'); +INSERT INTO "public"."cardcodes" VALUES (465, '山西省', '晋中市', '平遥县', '140728'); +INSERT INTO "public"."cardcodes" VALUES (466, '山西省', '晋中市', '灵石县', '140729'); +INSERT INTO "public"."cardcodes" VALUES (467, '山西省', '晋中市', '介休市', '140781'); +INSERT INTO "public"."cardcodes" VALUES (468, '山西省', '运城市', '市辖区', '140801'); +INSERT INTO "public"."cardcodes" VALUES (469, '山西省', '运城市', '盐湖区', '140802'); +INSERT INTO "public"."cardcodes" VALUES (470, '山西省', '运城市', '临猗县', '140821'); +INSERT INTO "public"."cardcodes" VALUES (471, '山西省', '运城市', '万荣县', '140822'); +INSERT INTO "public"."cardcodes" VALUES (472, '山西省', '运城市', '闻喜县', '140823'); +INSERT INTO "public"."cardcodes" VALUES (473, '山西省', '运城市', '稷山县', '140824'); +INSERT INTO "public"."cardcodes" VALUES (474, '山西省', '运城市', '新绛县', '140825'); +INSERT INTO "public"."cardcodes" VALUES (475, '山西省', '运城市', '绛县', '140826'); +INSERT INTO "public"."cardcodes" VALUES (476, '山西省', '运城市', '垣曲县', '140827'); +INSERT INTO "public"."cardcodes" VALUES (477, '山西省', '运城市', '夏县', '140828'); +INSERT INTO "public"."cardcodes" VALUES (478, '山西省', '运城市', '平陆县', '140829'); +INSERT INTO "public"."cardcodes" VALUES (479, '山西省', '运城市', '芮城县', '140830'); +INSERT INTO "public"."cardcodes" VALUES (480, '山西省', '运城市', '永济市', '140881'); +INSERT INTO "public"."cardcodes" VALUES (481, '山西省', '运城市', '河津市', '140882'); +INSERT INTO "public"."cardcodes" VALUES (482, '山西省', '忻州市', '市辖区', '140901'); +INSERT INTO "public"."cardcodes" VALUES (483, '山西省', '忻州市', '忻府区', '140902'); +INSERT INTO "public"."cardcodes" VALUES (484, '山西省', '忻州市', '定襄县', '140921'); +INSERT INTO "public"."cardcodes" VALUES (485, '山西省', '忻州市', '五台县', '140922'); +INSERT INTO "public"."cardcodes" VALUES (486, '山西省', '忻州市', '代县', '140923'); +INSERT INTO "public"."cardcodes" VALUES (487, '山西省', '忻州市', '繁峙县', '140924'); +INSERT INTO "public"."cardcodes" VALUES (488, '山西省', '忻州市', '宁武县', '140925'); +INSERT INTO "public"."cardcodes" VALUES (489, '山西省', '忻州市', '静乐县', '140926'); +INSERT INTO "public"."cardcodes" VALUES (490, '山西省', '忻州市', '神池县', '140927'); +INSERT INTO "public"."cardcodes" VALUES (491, '山西省', '忻州市', '五寨县', '140928'); +INSERT INTO "public"."cardcodes" VALUES (492, '山西省', '忻州市', '岢岚县', '140929'); +INSERT INTO "public"."cardcodes" VALUES (493, '山西省', '忻州市', '河曲县', '140930'); +INSERT INTO "public"."cardcodes" VALUES (494, '山西省', '忻州市', '保德县', '140931'); +INSERT INTO "public"."cardcodes" VALUES (495, '山西省', '忻州市', '偏关县', '140932'); +INSERT INTO "public"."cardcodes" VALUES (496, '山西省', '忻州市', '原平市', '140981'); +INSERT INTO "public"."cardcodes" VALUES (497, '山西省', '临汾市', '市辖区', '141001'); +INSERT INTO "public"."cardcodes" VALUES (498, '山西省', '临汾市', '尧都区', '141002'); +INSERT INTO "public"."cardcodes" VALUES (499, '山西省', '临汾市', '曲沃县', '141021'); +INSERT INTO "public"."cardcodes" VALUES (500, '山西省', '临汾市', '翼城县', '141022'); +INSERT INTO "public"."cardcodes" VALUES (501, '山西省', '临汾市', '襄汾县', '141023'); +INSERT INTO "public"."cardcodes" VALUES (502, '山西省', '临汾市', '洪洞县', '141024'); +INSERT INTO "public"."cardcodes" VALUES (503, '山西省', '临汾市', '古县', '141025'); +INSERT INTO "public"."cardcodes" VALUES (504, '山西省', '临汾市', '安泽县', '141026'); +INSERT INTO "public"."cardcodes" VALUES (505, '山西省', '临汾市', '浮山县', '141027'); +INSERT INTO "public"."cardcodes" VALUES (506, '山西省', '临汾市', '吉县', '141028'); +INSERT INTO "public"."cardcodes" VALUES (507, '山西省', '临汾市', '乡宁县', '141029'); +INSERT INTO "public"."cardcodes" VALUES (508, '山西省', '临汾市', '大宁县', '141030'); +INSERT INTO "public"."cardcodes" VALUES (509, '山西省', '临汾市', '隰县', '141031'); +INSERT INTO "public"."cardcodes" VALUES (510, '山西省', '临汾市', '永和县', '141032'); +INSERT INTO "public"."cardcodes" VALUES (511, '山西省', '临汾市', '蒲县', '141033'); +INSERT INTO "public"."cardcodes" VALUES (512, '山西省', '临汾市', '汾西县', '141034'); +INSERT INTO "public"."cardcodes" VALUES (513, '山西省', '临汾市', '侯马市', '141081'); +INSERT INTO "public"."cardcodes" VALUES (514, '山西省', '临汾市', '霍州市', '141082'); +INSERT INTO "public"."cardcodes" VALUES (515, '山西省', '吕梁市', '市辖区', '141101'); +INSERT INTO "public"."cardcodes" VALUES (516, '山西省', '吕梁市', '离石区', '141102'); +INSERT INTO "public"."cardcodes" VALUES (517, '山西省', '吕梁市', '文水县', '141121'); +INSERT INTO "public"."cardcodes" VALUES (518, '山西省', '吕梁市', '交城县', '141122'); +INSERT INTO "public"."cardcodes" VALUES (519, '山西省', '吕梁市', '兴县', '141123'); +INSERT INTO "public"."cardcodes" VALUES (520, '山西省', '吕梁市', '临县', '141124'); +INSERT INTO "public"."cardcodes" VALUES (521, '山西省', '吕梁市', '柳林县', '141125'); +INSERT INTO "public"."cardcodes" VALUES (522, '山西省', '吕梁市', '石楼县', '141126'); +INSERT INTO "public"."cardcodes" VALUES (523, '山西省', '吕梁市', '岚县', '141127'); +INSERT INTO "public"."cardcodes" VALUES (524, '山西省', '吕梁市', '方山县', '141128'); +INSERT INTO "public"."cardcodes" VALUES (525, '山西省', '吕梁市', '中阳县', '141129'); +INSERT INTO "public"."cardcodes" VALUES (526, '山西省', '吕梁市', '交口县', '141130'); +INSERT INTO "public"."cardcodes" VALUES (527, '山西省', '吕梁市', '孝义市', '141181'); +INSERT INTO "public"."cardcodes" VALUES (528, '山西省', '吕梁市', '汾阳市', '141182'); +INSERT INTO "public"."cardcodes" VALUES (529, '山西省', '雁北地区', '阳高县', '142121'); +INSERT INTO "public"."cardcodes" VALUES (530, '山西省', '雁北地区', '天镇县', '142122'); +INSERT INTO "public"."cardcodes" VALUES (531, '山西省', '雁北地区', '广灵县', '142123'); +INSERT INTO "public"."cardcodes" VALUES (532, '山西省', '雁北地区', '灵丘县', '142124'); +INSERT INTO "public"."cardcodes" VALUES (533, '山西省', '雁北地区', '浑源县', '142125'); +INSERT INTO "public"."cardcodes" VALUES (534, '山西省', '雁北地区', '应县', '142126'); +INSERT INTO "public"."cardcodes" VALUES (535, '山西省', '雁北地区', '山阴县', '142127'); +INSERT INTO "public"."cardcodes" VALUES (536, '山西省', '雁北地区', '朔县', '142128'); +INSERT INTO "public"."cardcodes" VALUES (537, '山西省', '雁北地区', '平鲁县', '142129'); +INSERT INTO "public"."cardcodes" VALUES (538, '山西省', '雁北地区', '左云县', '142130'); +INSERT INTO "public"."cardcodes" VALUES (539, '山西省', '雁北地区', '右玉县', '142131'); +INSERT INTO "public"."cardcodes" VALUES (540, '山西省', '雁北地区', '大同县', '142132'); +INSERT INTO "public"."cardcodes" VALUES (541, '山西省', '雁北地区', '怀仁县', '142133'); +INSERT INTO "public"."cardcodes" VALUES (542, '山西省', '忻州地区', '忻州市', '142201'); +INSERT INTO "public"."cardcodes" VALUES (543, '山西省', '忻州地区', '原平市', '142202'); +INSERT INTO "public"."cardcodes" VALUES (544, '山西省', '忻州地区', '定襄县', '142222'); +INSERT INTO "public"."cardcodes" VALUES (545, '山西省', '忻州地区', '五台县', '142223'); +INSERT INTO "public"."cardcodes" VALUES (546, '山西省', '忻州地区', '代县', '142225'); +INSERT INTO "public"."cardcodes" VALUES (547, '山西省', '忻州地区', '繁峙县', '142226'); +INSERT INTO "public"."cardcodes" VALUES (548, '山西省', '忻州地区', '宁武县', '142227'); +INSERT INTO "public"."cardcodes" VALUES (549, '山西省', '忻州地区', '静乐县', '142228'); +INSERT INTO "public"."cardcodes" VALUES (550, '山西省', '忻州地区', '神池县', '142229'); +INSERT INTO "public"."cardcodes" VALUES (551, '山西省', '忻州地区', '五寨县', '142230'); +INSERT INTO "public"."cardcodes" VALUES (552, '山西省', '忻州地区', '岢岚县', '142231'); +INSERT INTO "public"."cardcodes" VALUES (553, '山西省', '忻州地区', '河曲县', '142232'); +INSERT INTO "public"."cardcodes" VALUES (554, '山西省', '忻州地区', '保德县', '142233'); +INSERT INTO "public"."cardcodes" VALUES (555, '山西省', '忻州地区', '偏关县', '142234'); +INSERT INTO "public"."cardcodes" VALUES (556, '山西省', '吕梁地区', '孝义市', '142301'); +INSERT INTO "public"."cardcodes" VALUES (557, '山西省', '吕梁地区', '离石市', '142302'); +INSERT INTO "public"."cardcodes" VALUES (558, '山西省', '吕梁地区', '汾阳市', '142303'); +INSERT INTO "public"."cardcodes" VALUES (559, '山西省', '吕梁地区', '汾阳县', '142321'); +INSERT INTO "public"."cardcodes" VALUES (560, '山西省', '吕梁地区', '文水县', '142322'); +INSERT INTO "public"."cardcodes" VALUES (561, '山西省', '吕梁地区', '交城县', '142323'); +INSERT INTO "public"."cardcodes" VALUES (562, '山西省', '吕梁地区', '兴县', '142325'); +INSERT INTO "public"."cardcodes" VALUES (563, '山西省', '吕梁地区', '临县', '142326'); +INSERT INTO "public"."cardcodes" VALUES (564, '山西省', '吕梁地区', '柳林县', '142327'); +INSERT INTO "public"."cardcodes" VALUES (565, '山西省', '吕梁地区', '石楼县', '142328'); +INSERT INTO "public"."cardcodes" VALUES (566, '山西省', '吕梁地区', '岚县', '142329'); +INSERT INTO "public"."cardcodes" VALUES (567, '山西省', '吕梁地区', '方山县', '142330'); +INSERT INTO "public"."cardcodes" VALUES (568, '山西省', '吕梁地区', '中阳县', '142332'); +INSERT INTO "public"."cardcodes" VALUES (569, '山西省', '吕梁地区', '交口县', '142333'); +INSERT INTO "public"."cardcodes" VALUES (570, '山西省', '晋中地区', '榆次市', '142401'); +INSERT INTO "public"."cardcodes" VALUES (571, '山西省', '晋中地区', '介休市', '142402'); +INSERT INTO "public"."cardcodes" VALUES (572, '山西省', '晋中地区', '榆社县', '142421'); +INSERT INTO "public"."cardcodes" VALUES (573, '山西省', '晋中地区', '左权县', '142422'); +INSERT INTO "public"."cardcodes" VALUES (574, '山西省', '晋中地区', '和顺县', '142423'); +INSERT INTO "public"."cardcodes" VALUES (575, '山西省', '晋中地区', '昔阳县', '142424'); +INSERT INTO "public"."cardcodes" VALUES (576, '山西省', '晋中地区', '寿阳县', '142427'); +INSERT INTO "public"."cardcodes" VALUES (577, '山西省', '晋中地区', '太谷县', '142429'); +INSERT INTO "public"."cardcodes" VALUES (578, '山西省', '晋中地区', '祁县', '142430'); +INSERT INTO "public"."cardcodes" VALUES (579, '山西省', '晋中地区', '平遥县', '142431'); +INSERT INTO "public"."cardcodes" VALUES (580, '山西省', '晋中地区', '灵石县', '142433'); +INSERT INTO "public"."cardcodes" VALUES (581, '山西省', '临汾地区', '临汾市', '142601'); +INSERT INTO "public"."cardcodes" VALUES (582, '山西省', '临汾地区', '侯马市', '142602'); +INSERT INTO "public"."cardcodes" VALUES (583, '山西省', '临汾地区', '霍州市', '142603'); +INSERT INTO "public"."cardcodes" VALUES (584, '山西省', '临汾地区', '曲沃县', '142621'); +INSERT INTO "public"."cardcodes" VALUES (585, '山西省', '临汾地区', '翼城县', '142622'); +INSERT INTO "public"."cardcodes" VALUES (586, '山西省', '临汾地区', '襄汾县', '142623'); +INSERT INTO "public"."cardcodes" VALUES (587, '山西省', '临汾地区', '洪洞县', '142625'); +INSERT INTO "public"."cardcodes" VALUES (588, '山西省', '临汾地区', '古县', '142627'); +INSERT INTO "public"."cardcodes" VALUES (589, '山西省', '临汾地区', '安泽县', '142628'); +INSERT INTO "public"."cardcodes" VALUES (590, '山西省', '临汾地区', '浮山县', '142629'); +INSERT INTO "public"."cardcodes" VALUES (591, '山西省', '临汾地区', '吉县', '142630'); +INSERT INTO "public"."cardcodes" VALUES (592, '山西省', '临汾地区', '乡宁县', '142631'); +INSERT INTO "public"."cardcodes" VALUES (593, '山西省', '临汾地区', '蒲县', '142632'); +INSERT INTO "public"."cardcodes" VALUES (594, '山西省', '临汾地区', '大宁县', '142633'); +INSERT INTO "public"."cardcodes" VALUES (595, '山西省', '临汾地区', '永和县', '142634'); +INSERT INTO "public"."cardcodes" VALUES (596, '山西省', '临汾地区', '隰县', '142635'); +INSERT INTO "public"."cardcodes" VALUES (597, '山西省', '临汾地区', '汾西县', '142636'); +INSERT INTO "public"."cardcodes" VALUES (598, '山西省', '运城地区', '运城市', '142701'); +INSERT INTO "public"."cardcodes" VALUES (599, '山西省', '运城地区', '永济市', '142702'); +INSERT INTO "public"."cardcodes" VALUES (600, '山西省', '运城地区', '河津市', '142703'); +INSERT INTO "public"."cardcodes" VALUES (601, '山西省', '运城地区', '芮城县', '142723'); +INSERT INTO "public"."cardcodes" VALUES (602, '山西省', '运城地区', '临猗县', '142724'); +INSERT INTO "public"."cardcodes" VALUES (603, '山西省', '运城地区', '万荣县', '142725'); +INSERT INTO "public"."cardcodes" VALUES (604, '山西省', '运城地区', '新绛县', '142726'); +INSERT INTO "public"."cardcodes" VALUES (605, '山西省', '运城地区', '稷山县', '142727'); +INSERT INTO "public"."cardcodes" VALUES (606, '山西省', '运城地区', '闻喜县', '142729'); +INSERT INTO "public"."cardcodes" VALUES (607, '山西省', '运城地区', '夏县', '142730'); +INSERT INTO "public"."cardcodes" VALUES (608, '山西省', '运城地区', '绛县', '142731'); +INSERT INTO "public"."cardcodes" VALUES (609, '山西省', '运城地区', '平陆县', '142732'); +INSERT INTO "public"."cardcodes" VALUES (610, '山西省', '运城地区', '垣曲县', '142733'); +INSERT INTO "public"."cardcodes" VALUES (611, '山西省', NULL, '古交市', '149001'); +INSERT INTO "public"."cardcodes" VALUES (612, '内蒙古自治区', '呼和浩特市', '市辖区', '150101'); +INSERT INTO "public"."cardcodes" VALUES (613, '内蒙古自治区', '呼和浩特市', '新城区', '150102'); +INSERT INTO "public"."cardcodes" VALUES (614, '内蒙古自治区', '呼和浩特市', '回民区', '150103'); +INSERT INTO "public"."cardcodes" VALUES (615, '内蒙古自治区', '呼和浩特市', '玉泉区', '150104'); +INSERT INTO "public"."cardcodes" VALUES (616, '内蒙古自治区', '呼和浩特市', '郊区', '150105'); +INSERT INTO "public"."cardcodes" VALUES (617, '内蒙古自治区', '呼和浩特市', '土默特左旗', '150121'); +INSERT INTO "public"."cardcodes" VALUES (618, '内蒙古自治区', '呼和浩特市', '托克托县', '150122'); +INSERT INTO "public"."cardcodes" VALUES (619, '内蒙古自治区', '呼和浩特市', '和林格尔县', '150123'); +INSERT INTO "public"."cardcodes" VALUES (620, '内蒙古自治区', '呼和浩特市', '清水河县', '150124'); +INSERT INTO "public"."cardcodes" VALUES (621, '内蒙古自治区', '呼和浩特市', '武川县', '150125'); +INSERT INTO "public"."cardcodes" VALUES (622, '内蒙古自治区', '包头市', '市辖区', '150201'); +INSERT INTO "public"."cardcodes" VALUES (623, '内蒙古自治区', '包头市', '东河区', '150202'); +INSERT INTO "public"."cardcodes" VALUES (624, '内蒙古自治区', '包头市', '昆都伦区', '150203'); +INSERT INTO "public"."cardcodes" VALUES (625, '内蒙古自治区', '包头市', '青山区', '150204'); +INSERT INTO "public"."cardcodes" VALUES (626, '内蒙古自治区', '包头市', '石拐矿区', '150205'); +INSERT INTO "public"."cardcodes" VALUES (627, '内蒙古自治区', '包头市', '白云矿区', '150206'); +INSERT INTO "public"."cardcodes" VALUES (628, '内蒙古自治区', '包头市', '郊区', '150207'); +INSERT INTO "public"."cardcodes" VALUES (629, '内蒙古自治区', '包头市', '土默特右旗', '150221'); +INSERT INTO "public"."cardcodes" VALUES (630, '内蒙古自治区', '包头市', '固阳县', '150222'); +INSERT INTO "public"."cardcodes" VALUES (631, '内蒙古自治区', '包头市', '达尔罕茂明安联合旗', '150223'); +INSERT INTO "public"."cardcodes" VALUES (632, '内蒙古自治区', '乌海市', '市辖区', '150301'); +INSERT INTO "public"."cardcodes" VALUES (633, '内蒙古自治区', '乌海市', '海勃湾区', '150302'); +INSERT INTO "public"."cardcodes" VALUES (634, '内蒙古自治区', '乌海市', '海南区', '150303'); +INSERT INTO "public"."cardcodes" VALUES (635, '内蒙古自治区', '乌海市', '乌达区', '150304'); +INSERT INTO "public"."cardcodes" VALUES (636, '内蒙古自治区', '赤峰市', '市辖区', '150401'); +INSERT INTO "public"."cardcodes" VALUES (637, '内蒙古自治区', '赤峰市', '红山区', '150402'); +INSERT INTO "public"."cardcodes" VALUES (638, '内蒙古自治区', '赤峰市', '元宝山区', '150403'); +INSERT INTO "public"."cardcodes" VALUES (639, '内蒙古自治区', '赤峰市', '松山区', '150404'); +INSERT INTO "public"."cardcodes" VALUES (640, '内蒙古自治区', '赤峰市', '阿鲁科尔沁旗', '150421'); +INSERT INTO "public"."cardcodes" VALUES (641, '内蒙古自治区', '赤峰市', '巴林左旗', '150422'); +INSERT INTO "public"."cardcodes" VALUES (642, '内蒙古自治区', '赤峰市', '巴林右旗', '150423'); +INSERT INTO "public"."cardcodes" VALUES (643, '内蒙古自治区', '赤峰市', '林西县', '150424'); +INSERT INTO "public"."cardcodes" VALUES (644, '内蒙古自治区', '赤峰市', '克什克腾旗', '150425'); +INSERT INTO "public"."cardcodes" VALUES (645, '内蒙古自治区', '赤峰市', '翁牛特旗', '150426'); +INSERT INTO "public"."cardcodes" VALUES (646, '内蒙古自治区', '赤峰市', '喀喇沁旗', '150428'); +INSERT INTO "public"."cardcodes" VALUES (647, '内蒙古自治区', '赤峰市', '宁城县', '150429'); +INSERT INTO "public"."cardcodes" VALUES (648, '内蒙古自治区', '赤峰市', '敖汉旗', '150430'); +INSERT INTO "public"."cardcodes" VALUES (649, '内蒙古自治区', '通辽市', '市辖区', '150501'); +INSERT INTO "public"."cardcodes" VALUES (650, '内蒙古自治区', '通辽市', '科尔沁区', '150502'); +INSERT INTO "public"."cardcodes" VALUES (651, '内蒙古自治区', '通辽市', '科尔沁左翼中旗', '150521'); +INSERT INTO "public"."cardcodes" VALUES (652, '内蒙古自治区', '通辽市', '科尔沁左翼后旗', '150522'); +INSERT INTO "public"."cardcodes" VALUES (653, '内蒙古自治区', '通辽市', '开鲁县', '150523'); +INSERT INTO "public"."cardcodes" VALUES (654, '内蒙古自治区', '通辽市', '库伦旗', '150524'); +INSERT INTO "public"."cardcodes" VALUES (655, '内蒙古自治区', '通辽市', '奈曼旗', '150525'); +INSERT INTO "public"."cardcodes" VALUES (656, '内蒙古自治区', '通辽市', '扎鲁特旗', '150526'); +INSERT INTO "public"."cardcodes" VALUES (657, '内蒙古自治区', '通辽市', '霍林郭勒市', '150581'); +INSERT INTO "public"."cardcodes" VALUES (658, '内蒙古自治区', '鄂尔多斯市', '鄂尔多斯市', '150601'); +INSERT INTO "public"."cardcodes" VALUES (659, '内蒙古自治区', '鄂尔多斯市', '东胜区', '150602'); +INSERT INTO "public"."cardcodes" VALUES (660, '内蒙古自治区', '鄂尔多斯市', '达拉特旗', '150621'); +INSERT INTO "public"."cardcodes" VALUES (661, '内蒙古自治区', '鄂尔多斯市', '准格尔旗', '150622'); +INSERT INTO "public"."cardcodes" VALUES (662, '内蒙古自治区', '鄂尔多斯市', '鄂托克前旗', '150623'); +INSERT INTO "public"."cardcodes" VALUES (663, '内蒙古自治区', '鄂尔多斯市', '鄂托克旗', '150624'); +INSERT INTO "public"."cardcodes" VALUES (664, '内蒙古自治区', '鄂尔多斯市', '杭锦旗', '150625'); +INSERT INTO "public"."cardcodes" VALUES (665, '内蒙古自治区', '鄂尔多斯市', '乌审旗', '150626'); +INSERT INTO "public"."cardcodes" VALUES (666, '内蒙古自治区', '鄂尔多斯市', '伊金霍洛旗', '150627'); +INSERT INTO "public"."cardcodes" VALUES (667, '内蒙古自治区', '呼伦贝尔市', '市辖区', '150701'); +INSERT INTO "public"."cardcodes" VALUES (668, '内蒙古自治区', '呼伦贝尔市', '海拉尔区', '150702'); +INSERT INTO "public"."cardcodes" VALUES (669, '内蒙古自治区', '呼伦贝尔市', '阿荣旗', '150721'); +INSERT INTO "public"."cardcodes" VALUES (670, '内蒙古自治区', '呼伦贝尔市', '莫力达瓦达斡尔族自治旗', '150722'); +INSERT INTO "public"."cardcodes" VALUES (671, '内蒙古自治区', '呼伦贝尔市', '鄂伦春自治旗', '150723'); +INSERT INTO "public"."cardcodes" VALUES (672, '内蒙古自治区', '呼伦贝尔市', '鄂温克族自治旗', '150724'); +INSERT INTO "public"."cardcodes" VALUES (673, '内蒙古自治区', '呼伦贝尔市', '陈巴尔虎旗', '150725'); +INSERT INTO "public"."cardcodes" VALUES (674, '内蒙古自治区', '呼伦贝尔市', '新巴尔虎左旗', '150726'); +INSERT INTO "public"."cardcodes" VALUES (675, '内蒙古自治区', '呼伦贝尔市', '新巴尔虎右旗', '150727'); +INSERT INTO "public"."cardcodes" VALUES (676, '内蒙古自治区', '呼伦贝尔市', '满洲里市', '150781'); +INSERT INTO "public"."cardcodes" VALUES (677, '内蒙古自治区', '呼伦贝尔市', '牙克石市', '150782'); +INSERT INTO "public"."cardcodes" VALUES (678, '内蒙古自治区', '呼伦贝尔市', '扎兰屯市', '150783'); +INSERT INTO "public"."cardcodes" VALUES (679, '内蒙古自治区', '呼伦贝尔市', '额尔古纳市', '150784'); +INSERT INTO "public"."cardcodes" VALUES (680, '内蒙古自治区', '呼伦贝尔市', '根河市', '150785'); +INSERT INTO "public"."cardcodes" VALUES (681, '内蒙古自治区', '巴彦淖尔市', '市辖区', '150801'); +INSERT INTO "public"."cardcodes" VALUES (682, '内蒙古自治区', '巴彦淖尔市', '临河区', '150802'); +INSERT INTO "public"."cardcodes" VALUES (683, '内蒙古自治区', '巴彦淖尔市', '五原县', '150821'); +INSERT INTO "public"."cardcodes" VALUES (684, '内蒙古自治区', '巴彦淖尔市', '磴口县', '150822'); +INSERT INTO "public"."cardcodes" VALUES (685, '内蒙古自治区', '巴彦淖尔市', '乌拉特前旗', '150823'); +INSERT INTO "public"."cardcodes" VALUES (686, '内蒙古自治区', '巴彦淖尔市', '乌拉特中旗', '150824'); +INSERT INTO "public"."cardcodes" VALUES (687, '内蒙古自治区', '巴彦淖尔市', '乌拉特后旗', '150825'); +INSERT INTO "public"."cardcodes" VALUES (688, '内蒙古自治区', '巴彦淖尔市', '杭锦后旗', '150826'); +INSERT INTO "public"."cardcodes" VALUES (689, '内蒙古自治区', '乌兰察布市', '市辖区', '150901'); +INSERT INTO "public"."cardcodes" VALUES (690, '内蒙古自治区', '乌兰察布市', '集宁区', '150902'); +INSERT INTO "public"."cardcodes" VALUES (691, '内蒙古自治区', '乌兰察布市', '卓资县', '150921'); +INSERT INTO "public"."cardcodes" VALUES (692, '内蒙古自治区', '乌兰察布市', '化德县', '150922'); +INSERT INTO "public"."cardcodes" VALUES (693, '内蒙古自治区', '乌兰察布市', '商都县', '150923'); +INSERT INTO "public"."cardcodes" VALUES (694, '内蒙古自治区', '乌兰察布市', '兴和县', '150924'); +INSERT INTO "public"."cardcodes" VALUES (695, '内蒙古自治区', '乌兰察布市', '凉城县', '150925'); +INSERT INTO "public"."cardcodes" VALUES (696, '内蒙古自治区', '乌兰察布市', '察哈尔右翼前旗', '150926'); +INSERT INTO "public"."cardcodes" VALUES (697, '内蒙古自治区', '乌兰察布市', '察哈尔右翼中旗', '150927'); +INSERT INTO "public"."cardcodes" VALUES (698, '内蒙古自治区', '乌兰察布市', '察哈尔右翼后旗', '150928'); +INSERT INTO "public"."cardcodes" VALUES (699, '内蒙古自治区', '乌兰察布市', '四子王旗', '150929'); +INSERT INTO "public"."cardcodes" VALUES (700, '内蒙古自治区', '乌兰察布市', '丰镇市', '150981'); +INSERT INTO "public"."cardcodes" VALUES (701, '内蒙古自治区', '呼伦贝尔盟', '海拉尔市', '152101'); +INSERT INTO "public"."cardcodes" VALUES (702, '内蒙古自治区', '呼伦贝尔盟', '满洲里市', '152102'); +INSERT INTO "public"."cardcodes" VALUES (703, '内蒙古自治区', '呼伦贝尔盟', '扎兰屯市', '152103'); +INSERT INTO "public"."cardcodes" VALUES (704, '内蒙古自治区', '呼伦贝尔盟', '牙克石市', '152104'); +INSERT INTO "public"."cardcodes" VALUES (705, '内蒙古自治区', '呼伦贝尔盟', '根河市', '152105'); +INSERT INTO "public"."cardcodes" VALUES (706, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳市', '152106'); +INSERT INTO "public"."cardcodes" VALUES (707, '内蒙古自治区', '呼伦贝尔盟', '布特哈旗', '152121'); +INSERT INTO "public"."cardcodes" VALUES (708, '内蒙古自治区', '呼伦贝尔盟', '阿荣旗', '152122'); +INSERT INTO "public"."cardcodes" VALUES (709, '内蒙古自治区', '呼伦贝尔盟', '莫力达瓦达斡尔族自治旗', '152123'); +INSERT INTO "public"."cardcodes" VALUES (710, '内蒙古自治区', '呼伦贝尔盟', '喜桂图旗', '152124'); +INSERT INTO "public"."cardcodes" VALUES (711, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳右旗', '152125'); +INSERT INTO "public"."cardcodes" VALUES (712, '内蒙古自治区', '呼伦贝尔盟', '额尔古纳左旗', '152126'); +INSERT INTO "public"."cardcodes" VALUES (713, '内蒙古自治区', '呼伦贝尔盟', '鄂伦春自治旗', '152127'); +INSERT INTO "public"."cardcodes" VALUES (714, '内蒙古自治区', '呼伦贝尔盟', '鄂温克族自治旗', '152128'); +INSERT INTO "public"."cardcodes" VALUES (715, '内蒙古自治区', '呼伦贝尔盟', '新巴尔虎右旗', '152129'); +INSERT INTO "public"."cardcodes" VALUES (716, '内蒙古自治区', '呼伦贝尔盟', '新巴尔虎左旗', '152130'); +INSERT INTO "public"."cardcodes" VALUES (717, '内蒙古自治区', '呼伦贝尔盟', '陈巴尔虎旗', '152131'); +INSERT INTO "public"."cardcodes" VALUES (718, '内蒙古自治区', '兴安盟', '乌兰浩特市', '152201'); +INSERT INTO "public"."cardcodes" VALUES (719, '内蒙古自治区', '兴安盟', '阿尔山市', '152202'); +INSERT INTO "public"."cardcodes" VALUES (720, '内蒙古自治区', '兴安盟', '科尔沁右翼前旗', '152221'); +INSERT INTO "public"."cardcodes" VALUES (721, '内蒙古自治区', '兴安盟', '科尔沁右翼中旗', '152222'); +INSERT INTO "public"."cardcodes" VALUES (722, '内蒙古自治区', '兴安盟', '扎赉特旗', '152223'); +INSERT INTO "public"."cardcodes" VALUES (723, '内蒙古自治区', '兴安盟', '突泉县', '152224'); +INSERT INTO "public"."cardcodes" VALUES (724, '内蒙古自治区', '哲里木盟', '通辽市', '152301'); +INSERT INTO "public"."cardcodes" VALUES (725, '内蒙古自治区', '哲里木盟', '霍林郭勒市', '152302'); +INSERT INTO "public"."cardcodes" VALUES (726, '内蒙古自治区', '哲里木盟', '通辽县', '152321'); +INSERT INTO "public"."cardcodes" VALUES (727, '内蒙古自治区', '哲里木盟', '科尔沁左翼中旗', '152322'); +INSERT INTO "public"."cardcodes" VALUES (728, '内蒙古自治区', '哲里木盟', '科尔沁左翼后旗', '152323'); +INSERT INTO "public"."cardcodes" VALUES (729, '内蒙古自治区', '哲里木盟', '开鲁县', '152324'); +INSERT INTO "public"."cardcodes" VALUES (730, '内蒙古自治区', '哲里木盟', '库伦旗', '152325'); +INSERT INTO "public"."cardcodes" VALUES (731, '内蒙古自治区', '哲里木盟', '奈曼旗', '152326'); +INSERT INTO "public"."cardcodes" VALUES (732, '内蒙古自治区', '哲里木盟', '扎鲁特旗', '152327'); +INSERT INTO "public"."cardcodes" VALUES (733, '内蒙古自治区', '锡林郭勒盟', '二连浩特市', '152501'); +INSERT INTO "public"."cardcodes" VALUES (734, '内蒙古自治区', '锡林郭勒盟', '锡林浩特市', '152502'); +INSERT INTO "public"."cardcodes" VALUES (735, '内蒙古自治区', '锡林郭勒盟', '阿巴嘎旗', '152522'); +INSERT INTO "public"."cardcodes" VALUES (736, '内蒙古自治区', '锡林郭勒盟', '苏尼特左旗', '152523'); +INSERT INTO "public"."cardcodes" VALUES (737, '内蒙古自治区', '锡林郭勒盟', '苏尼特右旗', '152524'); +INSERT INTO "public"."cardcodes" VALUES (738, '内蒙古自治区', '锡林郭勒盟', '东乌珠穆沁旗', '152525'); +INSERT INTO "public"."cardcodes" VALUES (739, '内蒙古自治区', '锡林郭勒盟', '西乌珠穆沁旗', '152526'); +INSERT INTO "public"."cardcodes" VALUES (740, '内蒙古自治区', '锡林郭勒盟', '太仆寺旗', '152527'); +INSERT INTO "public"."cardcodes" VALUES (741, '内蒙古自治区', '锡林郭勒盟', '镶黄旗', '152528'); +INSERT INTO "public"."cardcodes" VALUES (742, '内蒙古自治区', '锡林郭勒盟', '正镶白旗', '152529'); +INSERT INTO "public"."cardcodes" VALUES (743, '内蒙古自治区', '锡林郭勒盟', '正蓝旗', '152530'); +INSERT INTO "public"."cardcodes" VALUES (744, '内蒙古自治区', '锡林郭勒盟', '多伦县', '152531'); +INSERT INTO "public"."cardcodes" VALUES (745, '内蒙古自治区', '乌兰察布盟', '集宁市', '152601'); +INSERT INTO "public"."cardcodes" VALUES (746, '内蒙古自治区', '乌兰察布盟', '丰镇市', '152602'); +INSERT INTO "public"."cardcodes" VALUES (747, '内蒙古自治区', '乌兰察布盟', '武川县', '152621'); +INSERT INTO "public"."cardcodes" VALUES (748, '内蒙古自治区', '乌兰察布盟', '和林格尔县', '152622'); +INSERT INTO "public"."cardcodes" VALUES (749, '内蒙古自治区', '乌兰察布盟', '清水河县', '152623'); +INSERT INTO "public"."cardcodes" VALUES (750, '内蒙古自治区', '乌兰察布盟', '卓资县', '152624'); +INSERT INTO "public"."cardcodes" VALUES (751, '内蒙古自治区', '乌兰察布盟', '化德县', '152625'); +INSERT INTO "public"."cardcodes" VALUES (752, '内蒙古自治区', '乌兰察布盟', '商都县', '152626'); +INSERT INTO "public"."cardcodes" VALUES (753, '内蒙古自治区', '乌兰察布盟', '兴和县', '152627'); +INSERT INTO "public"."cardcodes" VALUES (754, '内蒙古自治区', '乌兰察布盟', '丰镇县', '152628'); +INSERT INTO "public"."cardcodes" VALUES (755, '内蒙古自治区', '乌兰察布盟', '凉城县', '152629'); +INSERT INTO "public"."cardcodes" VALUES (756, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼前旗', '152630'); +INSERT INTO "public"."cardcodes" VALUES (757, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼中旗', '152631'); +INSERT INTO "public"."cardcodes" VALUES (758, '内蒙古自治区', '乌兰察布盟', '察哈尔右翼后旗', '152632'); +INSERT INTO "public"."cardcodes" VALUES (759, '内蒙古自治区', '乌兰察布盟', '达尔罕茂明安联合旗', '152633'); +INSERT INTO "public"."cardcodes" VALUES (760, '内蒙古自治区', '乌兰察布盟', '四子王旗', '152634'); +INSERT INTO "public"."cardcodes" VALUES (761, '内蒙古自治区', '伊克昭盟', '东胜市', '152701'); +INSERT INTO "public"."cardcodes" VALUES (762, '内蒙古自治区', '伊克昭盟', '东胜县', '152721'); +INSERT INTO "public"."cardcodes" VALUES (763, '内蒙古自治区', '伊克昭盟', '达拉特旗', '152722'); +INSERT INTO "public"."cardcodes" VALUES (764, '内蒙古自治区', '伊克昭盟', '准格尔旗', '152723'); +INSERT INTO "public"."cardcodes" VALUES (765, '内蒙古自治区', '伊克昭盟', '鄂托克前旗', '152724'); +INSERT INTO "public"."cardcodes" VALUES (766, '内蒙古自治区', '伊克昭盟', '鄂托克旗', '152725'); +INSERT INTO "public"."cardcodes" VALUES (767, '内蒙古自治区', '伊克昭盟', '杭锦旗', '152726'); +INSERT INTO "public"."cardcodes" VALUES (768, '内蒙古自治区', '伊克昭盟', '乌审旗', '152727'); +INSERT INTO "public"."cardcodes" VALUES (769, '内蒙古自治区', '伊克昭盟', '伊金霍洛旗', '152728'); +INSERT INTO "public"."cardcodes" VALUES (770, '内蒙古自治区', '巴彦淖尔盟', '临河市', '152801'); +INSERT INTO "public"."cardcodes" VALUES (771, '内蒙古自治区', '巴彦淖尔盟', '临河县', '152821'); +INSERT INTO "public"."cardcodes" VALUES (772, '内蒙古自治区', '巴彦淖尔盟', '五原县', '152822'); +INSERT INTO "public"."cardcodes" VALUES (773, '内蒙古自治区', '巴彦淖尔盟', '磴口县', '152823'); +INSERT INTO "public"."cardcodes" VALUES (774, '内蒙古自治区', '巴彦淖尔盟', '乌拉特前旗', '152824'); +INSERT INTO "public"."cardcodes" VALUES (775, '内蒙古自治区', '巴彦淖尔盟', '乌拉特中旗', '152825'); +INSERT INTO "public"."cardcodes" VALUES (776, '内蒙古自治区', '巴彦淖尔盟', '乌拉特后旗', '152826'); +INSERT INTO "public"."cardcodes" VALUES (777, '内蒙古自治区', '巴彦淖尔盟', '杭锦后旗', '152827'); +INSERT INTO "public"."cardcodes" VALUES (778, '内蒙古自治区', '阿拉善盟', '阿拉善左旗', '152921'); +INSERT INTO "public"."cardcodes" VALUES (779, '内蒙古自治区', '阿拉善盟', '阿拉善右旗', '152922'); +INSERT INTO "public"."cardcodes" VALUES (780, '内蒙古自治区', '阿拉善盟', '额济纳旗', '152923'); +INSERT INTO "public"."cardcodes" VALUES (781, '辽宁省', '沈阳市', '市辖区', '210101'); +INSERT INTO "public"."cardcodes" VALUES (782, '辽宁省', '沈阳市', '和平区', '210102'); +INSERT INTO "public"."cardcodes" VALUES (783, '辽宁省', '沈阳市', '沈河区', '210103'); +INSERT INTO "public"."cardcodes" VALUES (784, '辽宁省', '沈阳市', '大东区', '210104'); +INSERT INTO "public"."cardcodes" VALUES (785, '辽宁省', '沈阳市', '皇姑区', '210105'); +INSERT INTO "public"."cardcodes" VALUES (786, '辽宁省', '沈阳市', '铁西区', '210106'); +INSERT INTO "public"."cardcodes" VALUES (787, '辽宁省', '沈阳市', '苏家屯区', '210111'); +INSERT INTO "public"."cardcodes" VALUES (788, '辽宁省', '沈阳市', '东陵区', '210112'); +INSERT INTO "public"."cardcodes" VALUES (789, '辽宁省', '沈阳市', '沈北新区', '210113'); +INSERT INTO "public"."cardcodes" VALUES (790, '辽宁省', '沈阳市', '于洪区', '210114'); +INSERT INTO "public"."cardcodes" VALUES (791, '辽宁省', '沈阳市', '市区', '210120'); +INSERT INTO "public"."cardcodes" VALUES (792, '辽宁省', '沈阳市', '新民县', '210121'); +INSERT INTO "public"."cardcodes" VALUES (793, '辽宁省', '沈阳市', '辽中县', '210122'); +INSERT INTO "public"."cardcodes" VALUES (794, '辽宁省', '沈阳市', '康平县', '210123'); +INSERT INTO "public"."cardcodes" VALUES (795, '辽宁省', '沈阳市', '法库县', '210124'); +INSERT INTO "public"."cardcodes" VALUES (796, '辽宁省', '沈阳市', '新民市', '210181'); +INSERT INTO "public"."cardcodes" VALUES (797, '辽宁省', '大连市', '市辖区', '210201'); +INSERT INTO "public"."cardcodes" VALUES (798, '辽宁省', '大连市', '中山区', '210202'); +INSERT INTO "public"."cardcodes" VALUES (799, '辽宁省', '大连市', '西岗区', '210203'); +INSERT INTO "public"."cardcodes" VALUES (800, '辽宁省', '大连市', '沙河口区', '210204'); +INSERT INTO "public"."cardcodes" VALUES (801, '辽宁省', '大连市', '甘井子区', '210211'); +INSERT INTO "public"."cardcodes" VALUES (802, '辽宁省', '大连市', '旅顺口区', '210212'); +INSERT INTO "public"."cardcodes" VALUES (803, '辽宁省', '大连市', '金州区', '210213'); +INSERT INTO "public"."cardcodes" VALUES (804, '辽宁省', '大连市', '瓦房店市', '210219'); +INSERT INTO "public"."cardcodes" VALUES (805, '辽宁省', '大连市', '市区', '210220'); +INSERT INTO "public"."cardcodes" VALUES (806, '辽宁省', '大连市', '金县', '210221'); +INSERT INTO "public"."cardcodes" VALUES (807, '辽宁省', '大连市', '新金县', '210222'); +INSERT INTO "public"."cardcodes" VALUES (808, '辽宁省', '大连市', '复县', '210223'); +INSERT INTO "public"."cardcodes" VALUES (809, '辽宁省', '大连市', '长海县', '210224'); +INSERT INTO "public"."cardcodes" VALUES (810, '辽宁省', '大连市', '庄河县', '210225'); +INSERT INTO "public"."cardcodes" VALUES (811, '辽宁省', '大连市', '瓦房店市', '210281'); +INSERT INTO "public"."cardcodes" VALUES (812, '辽宁省', '大连市', '普兰店市', '210282'); +INSERT INTO "public"."cardcodes" VALUES (813, '辽宁省', '大连市', '庄河市', '210283'); +INSERT INTO "public"."cardcodes" VALUES (814, '辽宁省', '鞍山市', '市辖区', '210301'); +INSERT INTO "public"."cardcodes" VALUES (815, '辽宁省', '鞍山市', '铁东区', '210302'); +INSERT INTO "public"."cardcodes" VALUES (816, '辽宁省', '鞍山市', '铁西区', '210303'); +INSERT INTO "public"."cardcodes" VALUES (817, '辽宁省', '鞍山市', '立山区', '210304'); +INSERT INTO "public"."cardcodes" VALUES (1333, '上海市', NULL, '川沙县', '310224'); +INSERT INTO "public"."cardcodes" VALUES (818, '辽宁省', '鞍山市', '千山区', '210311'); +INSERT INTO "public"."cardcodes" VALUES (819, '辽宁省', '鞍山市', '开发区', '210319'); +INSERT INTO "public"."cardcodes" VALUES (820, '辽宁省', '鞍山市', '台安县', '210321'); +INSERT INTO "public"."cardcodes" VALUES (821, '辽宁省', '鞍山市', '岫岩满族自治县', '210323'); +INSERT INTO "public"."cardcodes" VALUES (822, '辽宁省', '鞍山市', '海城市', '210381'); +INSERT INTO "public"."cardcodes" VALUES (823, '辽宁省', '抚顺市', '市辖区', '210401'); +INSERT INTO "public"."cardcodes" VALUES (824, '辽宁省', '抚顺市', '新抚区', '210402'); +INSERT INTO "public"."cardcodes" VALUES (825, '辽宁省', '抚顺市', '东洲区', '210403'); +INSERT INTO "public"."cardcodes" VALUES (826, '辽宁省', '抚顺市', '望花区', '210404'); +INSERT INTO "public"."cardcodes" VALUES (827, '辽宁省', '抚顺市', '顺城区', '210411'); +INSERT INTO "public"."cardcodes" VALUES (828, '辽宁省', '抚顺市', '抚顺县', '210421'); +INSERT INTO "public"."cardcodes" VALUES (829, '辽宁省', '抚顺市', '新宾满族自治县', '210422'); +INSERT INTO "public"."cardcodes" VALUES (830, '辽宁省', '抚顺市', '清原满族自治县', '210423'); +INSERT INTO "public"."cardcodes" VALUES (831, '辽宁省', '本溪市', '市辖区', '210501'); +INSERT INTO "public"."cardcodes" VALUES (832, '辽宁省', '本溪市', '平山区', '210502'); +INSERT INTO "public"."cardcodes" VALUES (833, '辽宁省', '本溪市', '溪湖区', '210503'); +INSERT INTO "public"."cardcodes" VALUES (834, '辽宁省', '本溪市', '明山区', '210504'); +INSERT INTO "public"."cardcodes" VALUES (835, '辽宁省', '本溪市', '南芬区', '210505'); +INSERT INTO "public"."cardcodes" VALUES (836, '辽宁省', '本溪市', '南芬区', '210511'); +INSERT INTO "public"."cardcodes" VALUES (837, '辽宁省', '本溪市', '本溪满族自治县', '210521'); +INSERT INTO "public"."cardcodes" VALUES (838, '辽宁省', '本溪市', '桓仁满族自治县', '210522'); +INSERT INTO "public"."cardcodes" VALUES (839, '辽宁省', '丹东市', '市辖区', '210601'); +INSERT INTO "public"."cardcodes" VALUES (840, '辽宁省', '丹东市', '元宝区', '210602'); +INSERT INTO "public"."cardcodes" VALUES (841, '辽宁省', '丹东市', '振兴区', '210603'); +INSERT INTO "public"."cardcodes" VALUES (842, '辽宁省', '丹东市', '振安区', '210604'); +INSERT INTO "public"."cardcodes" VALUES (843, '辽宁省', '丹东市', '市区', '210620'); +INSERT INTO "public"."cardcodes" VALUES (844, '辽宁省', '丹东市', '凤城满族自治县', '210621'); +INSERT INTO "public"."cardcodes" VALUES (845, '辽宁省', '丹东市', '岫岩满族自治县', '210622'); +INSERT INTO "public"."cardcodes" VALUES (846, '辽宁省', '丹东市', '东沟县', '210623'); +INSERT INTO "public"."cardcodes" VALUES (847, '辽宁省', '丹东市', '宽甸满族自治县', '210624'); +INSERT INTO "public"."cardcodes" VALUES (848, '辽宁省', '丹东市', '东港市', '210681'); +INSERT INTO "public"."cardcodes" VALUES (849, '辽宁省', '丹东市', '凤城市', '210682'); +INSERT INTO "public"."cardcodes" VALUES (850, '辽宁省', '锦州市', '市辖区', '210701'); +INSERT INTO "public"."cardcodes" VALUES (851, '辽宁省', '锦州市', '古塔区', '210702'); +INSERT INTO "public"."cardcodes" VALUES (852, '辽宁省', '锦州市', '凌河区', '210703'); +INSERT INTO "public"."cardcodes" VALUES (853, '辽宁省', '锦州市', '南票区', '210704'); +INSERT INTO "public"."cardcodes" VALUES (854, '辽宁省', '锦州市', '葫芦岛区', '210705'); +INSERT INTO "public"."cardcodes" VALUES (855, '辽宁省', '锦州市', '太和区', '210711'); +INSERT INTO "public"."cardcodes" VALUES (856, '辽宁省', '锦州市', '锦西市', '210719'); +INSERT INTO "public"."cardcodes" VALUES (857, '辽宁省', '锦州市', '市区', '210720'); +INSERT INTO "public"."cardcodes" VALUES (858, '辽宁省', '锦州市', '锦西县', '210721'); +INSERT INTO "public"."cardcodes" VALUES (859, '辽宁省', '锦州市', '兴城县', '210722'); +INSERT INTO "public"."cardcodes" VALUES (860, '辽宁省', '锦州市', '绥中县', '210723'); +INSERT INTO "public"."cardcodes" VALUES (861, '辽宁省', '锦州市', '锦县', '210724'); +INSERT INTO "public"."cardcodes" VALUES (862, '辽宁省', '锦州市', '北镇满族自治县', '210725'); +INSERT INTO "public"."cardcodes" VALUES (863, '辽宁省', '锦州市', '黑山县', '210726'); +INSERT INTO "public"."cardcodes" VALUES (864, '辽宁省', '锦州市', '义县', '210727'); +INSERT INTO "public"."cardcodes" VALUES (865, '辽宁省', '锦州市', '凌海市', '210781'); +INSERT INTO "public"."cardcodes" VALUES (866, '辽宁省', '锦州市', '北镇市', '210782'); +INSERT INTO "public"."cardcodes" VALUES (867, '辽宁省', '营口市', '市辖区', '210801'); +INSERT INTO "public"."cardcodes" VALUES (868, '辽宁省', '营口市', '站前区', '210802'); +INSERT INTO "public"."cardcodes" VALUES (869, '辽宁省', '营口市', '西市区', '210803'); +INSERT INTO "public"."cardcodes" VALUES (870, '辽宁省', '营口市', '鲅鱼圈区', '210804'); +INSERT INTO "public"."cardcodes" VALUES (871, '辽宁省', '营口市', '老边区', '210811'); +INSERT INTO "public"."cardcodes" VALUES (872, '辽宁省', '营口市', '营口县', '210821'); +INSERT INTO "public"."cardcodes" VALUES (873, '辽宁省', '营口市', '盖县', '210824'); +INSERT INTO "public"."cardcodes" VALUES (874, '辽宁省', '营口市', '盖州市', '210881'); +INSERT INTO "public"."cardcodes" VALUES (875, '辽宁省', '营口市', '大石桥市', '210882'); +INSERT INTO "public"."cardcodes" VALUES (876, '辽宁省', '阜新市', '市辖区', '210901'); +INSERT INTO "public"."cardcodes" VALUES (877, '辽宁省', '阜新市', '海州区', '210902'); +INSERT INTO "public"."cardcodes" VALUES (878, '辽宁省', '阜新市', '新邱区', '210903'); +INSERT INTO "public"."cardcodes" VALUES (879, '辽宁省', '阜新市', '太平区', '210904'); +INSERT INTO "public"."cardcodes" VALUES (880, '辽宁省', '阜新市', '清河门区', '210905'); +INSERT INTO "public"."cardcodes" VALUES (881, '辽宁省', '阜新市', '细河区', '210911'); +INSERT INTO "public"."cardcodes" VALUES (882, '辽宁省', '阜新市', '阜新蒙古族自治县', '210921'); +INSERT INTO "public"."cardcodes" VALUES (883, '辽宁省', '阜新市', '彰武县', '210922'); +INSERT INTO "public"."cardcodes" VALUES (884, '辽宁省', '辽阳市', '市辖区', '211001'); +INSERT INTO "public"."cardcodes" VALUES (885, '辽宁省', '辽阳市', '白塔区', '211002'); +INSERT INTO "public"."cardcodes" VALUES (886, '辽宁省', '辽阳市', '文圣区', '211003'); +INSERT INTO "public"."cardcodes" VALUES (887, '辽宁省', '辽阳市', '宏伟区', '211004'); +INSERT INTO "public"."cardcodes" VALUES (888, '辽宁省', '辽阳市', '弓长岭区', '211005'); +INSERT INTO "public"."cardcodes" VALUES (889, '辽宁省', '辽阳市', '太子河区', '211011'); +INSERT INTO "public"."cardcodes" VALUES (890, '辽宁省', '辽阳市', '辽阳县', '211021'); +INSERT INTO "public"."cardcodes" VALUES (891, '辽宁省', '辽阳市', '灯塔县', '211022'); +INSERT INTO "public"."cardcodes" VALUES (892, '辽宁省', '辽阳市', '灯塔市', '211081'); +INSERT INTO "public"."cardcodes" VALUES (893, '辽宁省', '盘锦市', '市辖区', '211101'); +INSERT INTO "public"."cardcodes" VALUES (894, '辽宁省', '盘锦市', '双台子区', '211102'); +INSERT INTO "public"."cardcodes" VALUES (895, '辽宁省', '盘锦市', '兴隆台区', '211103'); +INSERT INTO "public"."cardcodes" VALUES (896, '辽宁省', '盘锦市', '郊区', '211111'); +INSERT INTO "public"."cardcodes" VALUES (897, '辽宁省', '盘锦市', '大洼县', '211121'); +INSERT INTO "public"."cardcodes" VALUES (898, '辽宁省', '盘锦市', '盘山县', '211122'); +INSERT INTO "public"."cardcodes" VALUES (899, '辽宁省', '铁岭市', '市辖区', '211201'); +INSERT INTO "public"."cardcodes" VALUES (900, '辽宁省', '铁岭市', '银州区', '211202'); +INSERT INTO "public"."cardcodes" VALUES (901, '辽宁省', '铁岭市', '铁法区', '211203'); +INSERT INTO "public"."cardcodes" VALUES (902, '辽宁省', '铁岭市', '清河区', '211204'); +INSERT INTO "public"."cardcodes" VALUES (903, '辽宁省', '铁岭市', '铁岭县', '211221'); +INSERT INTO "public"."cardcodes" VALUES (904, '辽宁省', '铁岭市', '开原县', '211222'); +INSERT INTO "public"."cardcodes" VALUES (905, '辽宁省', '铁岭市', '西丰县', '211223'); +INSERT INTO "public"."cardcodes" VALUES (906, '辽宁省', '铁岭市', '昌图县', '211224'); +INSERT INTO "public"."cardcodes" VALUES (907, '辽宁省', '铁岭市', '康平县', '211225'); +INSERT INTO "public"."cardcodes" VALUES (908, '辽宁省', '铁岭市', '法库县', '211226'); +INSERT INTO "public"."cardcodes" VALUES (909, '辽宁省', '铁岭市', '调兵山市', '211281'); +INSERT INTO "public"."cardcodes" VALUES (910, '辽宁省', '铁岭市', '开原市', '211282'); +INSERT INTO "public"."cardcodes" VALUES (911, '辽宁省', '朝阳市', '市辖区', '211301'); +INSERT INTO "public"."cardcodes" VALUES (912, '辽宁省', '朝阳市', '双塔区', '211302'); +INSERT INTO "public"."cardcodes" VALUES (913, '辽宁省', '朝阳市', '龙城区', '211303'); +INSERT INTO "public"."cardcodes" VALUES (914, '辽宁省', '朝阳市', '朝阳县', '211321'); +INSERT INTO "public"."cardcodes" VALUES (915, '辽宁省', '朝阳市', '建平县', '211322'); +INSERT INTO "public"."cardcodes" VALUES (916, '辽宁省', '朝阳市', '凌源县', '211323'); +INSERT INTO "public"."cardcodes" VALUES (917, '辽宁省', '朝阳市', '喀喇沁左翼蒙古族自治县', '211324'); +INSERT INTO "public"."cardcodes" VALUES (918, '辽宁省', '朝阳市', '建昌县', '211325'); +INSERT INTO "public"."cardcodes" VALUES (919, '辽宁省', '朝阳市', '北票县', '211326'); +INSERT INTO "public"."cardcodes" VALUES (920, '辽宁省', '朝阳市', '北票市', '211381'); +INSERT INTO "public"."cardcodes" VALUES (921, '辽宁省', '朝阳市', '凌源市', '211382'); +INSERT INTO "public"."cardcodes" VALUES (922, '辽宁省', '葫芦岛市', '市辖区', '211401'); +INSERT INTO "public"."cardcodes" VALUES (923, '辽宁省', '葫芦岛市', '连山区', '211402'); +INSERT INTO "public"."cardcodes" VALUES (924, '辽宁省', '葫芦岛市', '龙港区', '211403'); +INSERT INTO "public"."cardcodes" VALUES (925, '辽宁省', '葫芦岛市', '南票区', '211404'); +INSERT INTO "public"."cardcodes" VALUES (926, '辽宁省', '葫芦岛市', '绥中县', '211421'); +INSERT INTO "public"."cardcodes" VALUES (927, '辽宁省', '葫芦岛市', '建昌县', '211422'); +INSERT INTO "public"."cardcodes" VALUES (928, '辽宁省', '葫芦岛市', '兴城市', '211481'); +INSERT INTO "public"."cardcodes" VALUES (929, '辽宁省', '铁岭市', '铁岭市', '212101'); +INSERT INTO "public"."cardcodes" VALUES (930, '辽宁省', '铁岭市', '铁法市', '212102'); +INSERT INTO "public"."cardcodes" VALUES (931, '辽宁省', '铁岭市', '铁岭县', '212121'); +INSERT INTO "public"."cardcodes" VALUES (932, '辽宁省', '铁岭市', '开原县', '212122'); +INSERT INTO "public"."cardcodes" VALUES (933, '辽宁省', '铁岭市', '西丰县', '212123'); +INSERT INTO "public"."cardcodes" VALUES (934, '辽宁省', '铁岭市', '昌图县', '212124'); +INSERT INTO "public"."cardcodes" VALUES (935, '辽宁省', '铁岭市', '康平县', '212125'); +INSERT INTO "public"."cardcodes" VALUES (936, '辽宁省', '铁岭市', '法库县', '212126'); +INSERT INTO "public"."cardcodes" VALUES (937, '辽宁省', '朝阳市', '建昌县', '212225'); +INSERT INTO "public"."cardcodes" VALUES (938, '辽宁省', '朝阳市', '北票县', '212226'); +INSERT INTO "public"."cardcodes" VALUES (939, '辽宁省', NULL, '瓦房店市', '219001'); +INSERT INTO "public"."cardcodes" VALUES (940, '辽宁省', NULL, '海城市', '219002'); +INSERT INTO "public"."cardcodes" VALUES (941, '辽宁省', NULL, '锦西市', '219003'); +INSERT INTO "public"."cardcodes" VALUES (942, '辽宁省', NULL, '兴城市', '219004'); +INSERT INTO "public"."cardcodes" VALUES (943, '辽宁省', NULL, '铁法市', '219005'); +INSERT INTO "public"."cardcodes" VALUES (944, '辽宁省', NULL, '北票市', '219006'); +INSERT INTO "public"."cardcodes" VALUES (945, '辽宁省', NULL, '开原市', '219007'); +INSERT INTO "public"."cardcodes" VALUES (946, '吉林省', '长春市', '市辖区', '220101'); +INSERT INTO "public"."cardcodes" VALUES (947, '吉林省', '长春市', '南关区', '220102'); +INSERT INTO "public"."cardcodes" VALUES (948, '吉林省', '长春市', '宽城区', '220103'); +INSERT INTO "public"."cardcodes" VALUES (949, '吉林省', '长春市', '朝阳区', '220104'); +INSERT INTO "public"."cardcodes" VALUES (950, '吉林省', '长春市', '二道区', '220105'); +INSERT INTO "public"."cardcodes" VALUES (951, '吉林省', '长春市', '绿园区', '220106'); +INSERT INTO "public"."cardcodes" VALUES (952, '吉林省', '长春市', '郊区', '220111'); +INSERT INTO "public"."cardcodes" VALUES (953, '吉林省', '长春市', '双阳区', '220112'); +INSERT INTO "public"."cardcodes" VALUES (954, '吉林省', '长春市', '市区', '220120'); +INSERT INTO "public"."cardcodes" VALUES (955, '吉林省', '长春市', '榆树县', '220121'); +INSERT INTO "public"."cardcodes" VALUES (956, '吉林省', '长春市', '农安县', '220122'); +INSERT INTO "public"."cardcodes" VALUES (957, '吉林省', '长春市', '九台县', '220123'); +INSERT INTO "public"."cardcodes" VALUES (958, '吉林省', '长春市', '德惠县', '220124'); +INSERT INTO "public"."cardcodes" VALUES (959, '吉林省', '长春市', '双阳县', '220125'); +INSERT INTO "public"."cardcodes" VALUES (960, '吉林省', '长春市', '九台市', '220181'); +INSERT INTO "public"."cardcodes" VALUES (961, '吉林省', '长春市', '榆树市', '220182'); +INSERT INTO "public"."cardcodes" VALUES (962, '吉林省', '长春市', '德惠市', '220183'); +INSERT INTO "public"."cardcodes" VALUES (963, '吉林省', '吉林市', '市辖区', '220201'); +INSERT INTO "public"."cardcodes" VALUES (964, '吉林省', '吉林市', '昌邑区', '220202'); +INSERT INTO "public"."cardcodes" VALUES (965, '吉林省', '吉林市', '龙潭区', '220203'); +INSERT INTO "public"."cardcodes" VALUES (966, '吉林省', '吉林市', '船营区', '220204'); +INSERT INTO "public"."cardcodes" VALUES (967, '吉林省', '吉林市', '丰满区', '220211'); +INSERT INTO "public"."cardcodes" VALUES (968, '吉林省', '吉林市', '市区', '220220'); +INSERT INTO "public"."cardcodes" VALUES (969, '吉林省', '吉林市', '永吉县', '220221'); +INSERT INTO "public"."cardcodes" VALUES (970, '吉林省', '吉林市', '舒兰县', '220222'); +INSERT INTO "public"."cardcodes" VALUES (971, '吉林省', '吉林市', '磐石县', '220223'); +INSERT INTO "public"."cardcodes" VALUES (972, '吉林省', '吉林市', '蛟河县', '220224'); +INSERT INTO "public"."cardcodes" VALUES (973, '吉林省', '吉林市', '桦甸县', '220225'); +INSERT INTO "public"."cardcodes" VALUES (974, '吉林省', '吉林市', '蛟河市', '220281'); +INSERT INTO "public"."cardcodes" VALUES (975, '吉林省', '吉林市', '桦甸市', '220282'); +INSERT INTO "public"."cardcodes" VALUES (976, '吉林省', '吉林市', '舒兰市', '220283'); +INSERT INTO "public"."cardcodes" VALUES (977, '吉林省', '吉林市', '磐石市', '220284'); +INSERT INTO "public"."cardcodes" VALUES (978, '吉林省', '四平市', '市辖区', '220301'); +INSERT INTO "public"."cardcodes" VALUES (979, '吉林省', '四平市', '铁西区', '220302'); +INSERT INTO "public"."cardcodes" VALUES (980, '吉林省', '四平市', '铁东区', '220303'); +INSERT INTO "public"."cardcodes" VALUES (981, '吉林省', '四平市', '公主岭市', '220319'); +INSERT INTO "public"."cardcodes" VALUES (982, '吉林省', '四平市', '怀德县', '220321'); +INSERT INTO "public"."cardcodes" VALUES (983, '吉林省', '四平市', '梨树县', '220322'); +INSERT INTO "public"."cardcodes" VALUES (984, '吉林省', '四平市', '伊通满族自治县', '220323'); +INSERT INTO "public"."cardcodes" VALUES (985, '吉林省', '四平市', '双辽县', '220324'); +INSERT INTO "public"."cardcodes" VALUES (986, '吉林省', '四平市', '公主岭市', '220381'); +INSERT INTO "public"."cardcodes" VALUES (987, '吉林省', '四平市', '双辽市', '220382'); +INSERT INTO "public"."cardcodes" VALUES (988, '吉林省', '辽源市', '市辖区', '220401'); +INSERT INTO "public"."cardcodes" VALUES (989, '吉林省', '辽源市', '龙山区', '220402'); +INSERT INTO "public"."cardcodes" VALUES (990, '吉林省', '辽源市', '西安区', '220403'); +INSERT INTO "public"."cardcodes" VALUES (991, '吉林省', '辽源市', '东丰县', '220421'); +INSERT INTO "public"."cardcodes" VALUES (992, '吉林省', '辽源市', '东辽县', '220422'); +INSERT INTO "public"."cardcodes" VALUES (993, '吉林省', '通化市', '市辖区', '220501'); +INSERT INTO "public"."cardcodes" VALUES (994, '吉林省', '通化市', '东昌区', '220502'); +INSERT INTO "public"."cardcodes" VALUES (995, '吉林省', '通化市', '二道江区', '220503'); +INSERT INTO "public"."cardcodes" VALUES (996, '吉林省', '通化市', '梅河口市', '220519'); +INSERT INTO "public"."cardcodes" VALUES (997, '吉林省', '通化市', '通化县', '220521'); +INSERT INTO "public"."cardcodes" VALUES (998, '吉林省', '通化市', '集安县', '220522'); +INSERT INTO "public"."cardcodes" VALUES (999, '吉林省', '通化市', '辉南县', '220523'); +INSERT INTO "public"."cardcodes" VALUES (1000, '吉林省', '通化市', '柳河县', '220524'); +INSERT INTO "public"."cardcodes" VALUES (1001, '吉林省', '通化市', '梅河口市', '220581'); +INSERT INTO "public"."cardcodes" VALUES (1002, '吉林省', '通化市', '集安市', '220582'); +INSERT INTO "public"."cardcodes" VALUES (1003, '吉林省', '白山市', '市辖区', '220601'); +INSERT INTO "public"."cardcodes" VALUES (1004, '吉林省', '白山市', '八道江区', '220602'); +INSERT INTO "public"."cardcodes" VALUES (1005, '吉林省', '白山市', '三岔子区', '220603'); +INSERT INTO "public"."cardcodes" VALUES (1006, '吉林省', '白山市', '临江区', '220604'); +INSERT INTO "public"."cardcodes" VALUES (1007, '吉林省', '白山市', '抚松县', '220621'); +INSERT INTO "public"."cardcodes" VALUES (1008, '吉林省', '白山市', '靖宇县', '220622'); +INSERT INTO "public"."cardcodes" VALUES (1009, '吉林省', '白山市', '长白朝鲜族自治县', '220623'); +INSERT INTO "public"."cardcodes" VALUES (1010, '吉林省', '白山市', '江源县', '220625'); +INSERT INTO "public"."cardcodes" VALUES (1011, '吉林省', '白山市', '临江市', '220681'); +INSERT INTO "public"."cardcodes" VALUES (1012, '吉林省', '松原市', '市辖区', '220701'); +INSERT INTO "public"."cardcodes" VALUES (1013, '吉林省', '松原市', '宁江区', '220702'); +INSERT INTO "public"."cardcodes" VALUES (1014, '吉林省', '松原市', '前郭尔罗斯蒙古族自治县', '220721'); +INSERT INTO "public"."cardcodes" VALUES (1015, '吉林省', '松原市', '长岭县', '220722'); +INSERT INTO "public"."cardcodes" VALUES (1016, '吉林省', '松原市', '乾安县', '220723'); +INSERT INTO "public"."cardcodes" VALUES (1017, '吉林省', '松原市', '扶余县', '220724'); +INSERT INTO "public"."cardcodes" VALUES (1018, '吉林省', '白城市', '市辖区', '220801'); +INSERT INTO "public"."cardcodes" VALUES (1019, '吉林省', '白城市', '洮北区', '220802'); +INSERT INTO "public"."cardcodes" VALUES (1020, '吉林省', '白城市', '镇赉县', '220821'); +INSERT INTO "public"."cardcodes" VALUES (1021, '吉林省', '白城市', '通榆县', '220822'); +INSERT INTO "public"."cardcodes" VALUES (1022, '吉林省', '白城市', '洮南市', '220881'); +INSERT INTO "public"."cardcodes" VALUES (1023, '吉林省', '白城市', '大安市', '220882'); +INSERT INTO "public"."cardcodes" VALUES (1024, '吉林省', '白城地区', '白城市', '222301'); +INSERT INTO "public"."cardcodes" VALUES (1025, '吉林省', '白城地区', '洮南市', '222302'); +INSERT INTO "public"."cardcodes" VALUES (1026, '吉林省', '白城地区', '扶余市', '222303'); +INSERT INTO "public"."cardcodes" VALUES (1027, '吉林省', '白城地区', '大安市', '222304'); +INSERT INTO "public"."cardcodes" VALUES (1028, '吉林省', '白城地区', '扶余县', '222321'); +INSERT INTO "public"."cardcodes" VALUES (1029, '吉林省', '白城地区', '洮安县', '222322'); +INSERT INTO "public"."cardcodes" VALUES (1030, '吉林省', '白城地区', '长岭县', '222323'); +INSERT INTO "public"."cardcodes" VALUES (1031, '吉林省', '白城地区', '前郭尔罗斯蒙古族自治县', '222324'); +INSERT INTO "public"."cardcodes" VALUES (1032, '吉林省', '白城地区', '大安县', '222325'); +INSERT INTO "public"."cardcodes" VALUES (1033, '吉林省', '白城地区', '镇赉县', '222326'); +INSERT INTO "public"."cardcodes" VALUES (1034, '吉林省', '白城地区', '通榆县', '222327'); +INSERT INTO "public"."cardcodes" VALUES (1035, '吉林省', '白城地区', '乾安县', '222328'); +INSERT INTO "public"."cardcodes" VALUES (1036, '吉林省', '延边朝鲜族自治州', '延吉市', '222401'); +INSERT INTO "public"."cardcodes" VALUES (1037, '吉林省', '延边朝鲜族自治州', '图们市', '222402'); +INSERT INTO "public"."cardcodes" VALUES (1038, '吉林省', '延边朝鲜族自治州', '敦化市', '222403'); +INSERT INTO "public"."cardcodes" VALUES (1039, '吉林省', '延边朝鲜族自治州', '珲春市', '222404'); +INSERT INTO "public"."cardcodes" VALUES (1040, '吉林省', '延边朝鲜族自治州', '龙井市', '222405'); +INSERT INTO "public"."cardcodes" VALUES (1041, '吉林省', '延边朝鲜族自治州', '和龙市', '222406'); +INSERT INTO "public"."cardcodes" VALUES (1042, '吉林省', '延边朝鲜族自治州', '龙井县', '222421'); +INSERT INTO "public"."cardcodes" VALUES (1043, '吉林省', '延边朝鲜族自治州', '敦化县', '222422'); +INSERT INTO "public"."cardcodes" VALUES (1044, '吉林省', '延边朝鲜族自治州', '和龙县', '222423'); +INSERT INTO "public"."cardcodes" VALUES (1045, '吉林省', '延边朝鲜族自治州', '汪清县', '222424'); +INSERT INTO "public"."cardcodes" VALUES (1046, '吉林省', '延边朝鲜族自治州', '珲春县', '222425'); +INSERT INTO "public"."cardcodes" VALUES (1047, '吉林省', '延边朝鲜族自治州', '安图县', '222426'); +INSERT INTO "public"."cardcodes" VALUES (1048, '吉林省', NULL, '四平市', '222101'); +INSERT INTO "public"."cardcodes" VALUES (1049, '吉林省', NULL, '辽源市', '222102'); +INSERT INTO "public"."cardcodes" VALUES (1050, '吉林省', NULL, '怀德县', '222121'); +INSERT INTO "public"."cardcodes" VALUES (1051, '吉林省', NULL, '梨树县', '222122'); +INSERT INTO "public"."cardcodes" VALUES (1052, '吉林省', NULL, '伊通满族自治县', '222123'); +INSERT INTO "public"."cardcodes" VALUES (1053, '吉林省', NULL, '东丰县', '222124'); +INSERT INTO "public"."cardcodes" VALUES (1054, '吉林省', NULL, '双辽县', '222125'); +INSERT INTO "public"."cardcodes" VALUES (1055, '吉林省', NULL, '通化市', '222201'); +INSERT INTO "public"."cardcodes" VALUES (1056, '吉林省', NULL, '浑江市', '222202'); +INSERT INTO "public"."cardcodes" VALUES (1057, '吉林省', NULL, '海龙县', '222221'); +INSERT INTO "public"."cardcodes" VALUES (1058, '吉林省', NULL, '通化县', '222222'); +INSERT INTO "public"."cardcodes" VALUES (1059, '吉林省', NULL, '柳河县', '222223'); +INSERT INTO "public"."cardcodes" VALUES (1060, '吉林省', NULL, '辉南县', '222224'); +INSERT INTO "public"."cardcodes" VALUES (1061, '吉林省', NULL, '集安县', '222225'); +INSERT INTO "public"."cardcodes" VALUES (1062, '吉林省', NULL, '抚松县', '222226'); +INSERT INTO "public"."cardcodes" VALUES (1063, '吉林省', NULL, '靖宇县', '222227'); +INSERT INTO "public"."cardcodes" VALUES (1064, '吉林省', NULL, '长白朝鲜族自治县', '222228'); +INSERT INTO "public"."cardcodes" VALUES (1065, '吉林省', NULL, '公主岭市', '229001'); +INSERT INTO "public"."cardcodes" VALUES (1066, '吉林省', NULL, '梅河口市', '229002'); +INSERT INTO "public"."cardcodes" VALUES (1067, '吉林省', NULL, '集安市', '229003'); +INSERT INTO "public"."cardcodes" VALUES (1068, '吉林省', NULL, '桦甸市', '229004'); +INSERT INTO "public"."cardcodes" VALUES (1069, '吉林省', NULL, '九台市', '229005'); +INSERT INTO "public"."cardcodes" VALUES (1070, '黑龙江省', '哈尔滨市', '市辖区', '230101'); +INSERT INTO "public"."cardcodes" VALUES (1071, '黑龙江省', '哈尔滨市', '道里区', '230102'); +INSERT INTO "public"."cardcodes" VALUES (1072, '黑龙江省', '哈尔滨市', '南岗区', '230103'); +INSERT INTO "public"."cardcodes" VALUES (1073, '黑龙江省', '哈尔滨市', '道外区', '230104'); +INSERT INTO "public"."cardcodes" VALUES (1074, '黑龙江省', '哈尔滨市', '太平区', '230105'); +INSERT INTO "public"."cardcodes" VALUES (1075, '黑龙江省', '哈尔滨市', '香坊区', '230106'); +INSERT INTO "public"."cardcodes" VALUES (1076, '黑龙江省', '哈尔滨市', '动力区', '230107'); +INSERT INTO "public"."cardcodes" VALUES (1077, '黑龙江省', '哈尔滨市', '平房区', '230108'); +INSERT INTO "public"."cardcodes" VALUES (1078, '黑龙江省', '哈尔滨市', '松北区', '230109'); +INSERT INTO "public"."cardcodes" VALUES (1079, '黑龙江省', '哈尔滨市', '香坊区', '230110'); +INSERT INTO "public"."cardcodes" VALUES (1080, '黑龙江省', '哈尔滨市', '呼兰区', '230111'); +INSERT INTO "public"."cardcodes" VALUES (1081, '黑龙江省', '哈尔滨市', '阿城区', '230112'); +INSERT INTO "public"."cardcodes" VALUES (1082, '黑龙江省', '哈尔滨市', '阿城市', '230119'); +INSERT INTO "public"."cardcodes" VALUES (1083, '黑龙江省', '哈尔滨市', '呼兰县', '230121'); +INSERT INTO "public"."cardcodes" VALUES (1084, '黑龙江省', '哈尔滨市', '阿城县', '230122'); +INSERT INTO "public"."cardcodes" VALUES (1085, '黑龙江省', '哈尔滨市', '依兰县', '230123'); +INSERT INTO "public"."cardcodes" VALUES (1086, '黑龙江省', '哈尔滨市', '方正县', '230124'); +INSERT INTO "public"."cardcodes" VALUES (1087, '黑龙江省', '哈尔滨市', '宾县', '230125'); +INSERT INTO "public"."cardcodes" VALUES (1088, '黑龙江省', '哈尔滨市', '巴彦县', '230126'); +INSERT INTO "public"."cardcodes" VALUES (1089, '黑龙江省', '哈尔滨市', '木兰县', '230127'); +INSERT INTO "public"."cardcodes" VALUES (1090, '黑龙江省', '哈尔滨市', '通河县', '230128'); +INSERT INTO "public"."cardcodes" VALUES (1091, '黑龙江省', '哈尔滨市', '延寿县', '230129'); +INSERT INTO "public"."cardcodes" VALUES (1092, '黑龙江省', '哈尔滨市', '阿城市', '230181'); +INSERT INTO "public"."cardcodes" VALUES (1093, '黑龙江省', '哈尔滨市', '双城市', '230182'); +INSERT INTO "public"."cardcodes" VALUES (1094, '黑龙江省', '哈尔滨市', '尚志市', '230183'); +INSERT INTO "public"."cardcodes" VALUES (1095, '黑龙江省', '哈尔滨市', '五常市', '230184'); +INSERT INTO "public"."cardcodes" VALUES (1096, '黑龙江省', '齐齐哈尔市', '市辖区', '230201'); +INSERT INTO "public"."cardcodes" VALUES (1097, '黑龙江省', '齐齐哈尔市', '龙沙区', '230202'); +INSERT INTO "public"."cardcodes" VALUES (1098, '黑龙江省', '齐齐哈尔市', '建华区', '230203'); +INSERT INTO "public"."cardcodes" VALUES (1099, '黑龙江省', '齐齐哈尔市', '铁锋区', '230204'); +INSERT INTO "public"."cardcodes" VALUES (1100, '黑龙江省', '齐齐哈尔市', '昂昂溪区', '230205'); +INSERT INTO "public"."cardcodes" VALUES (1101, '黑龙江省', '齐齐哈尔市', '富拉尔基区', '230206'); +INSERT INTO "public"."cardcodes" VALUES (1102, '黑龙江省', '齐齐哈尔市', '碾子山区', '230207'); +INSERT INTO "public"."cardcodes" VALUES (1103, '黑龙江省', '齐齐哈尔市', '梅里斯达斡尔族区', '230208'); +INSERT INTO "public"."cardcodes" VALUES (1104, '黑龙江省', '齐齐哈尔市', '龙江县', '230221'); +INSERT INTO "public"."cardcodes" VALUES (1105, '黑龙江省', '齐齐哈尔市', '讷河县', '230222'); +INSERT INTO "public"."cardcodes" VALUES (1106, '黑龙江省', '齐齐哈尔市', '依安县', '230223'); +INSERT INTO "public"."cardcodes" VALUES (1107, '黑龙江省', '齐齐哈尔市', '泰来县', '230224'); +INSERT INTO "public"."cardcodes" VALUES (1108, '黑龙江省', '齐齐哈尔市', '甘南县', '230225'); +INSERT INTO "public"."cardcodes" VALUES (1109, '黑龙江省', '齐齐哈尔市', '杜尔伯特蒙古族自治县', '230226'); +INSERT INTO "public"."cardcodes" VALUES (1110, '黑龙江省', '齐齐哈尔市', '富裕县', '230227'); +INSERT INTO "public"."cardcodes" VALUES (1111, '黑龙江省', '齐齐哈尔市', '林甸县', '230228'); +INSERT INTO "public"."cardcodes" VALUES (1112, '黑龙江省', '齐齐哈尔市', '克山县', '230229'); +INSERT INTO "public"."cardcodes" VALUES (1113, '黑龙江省', '齐齐哈尔市', '克东县', '230230'); +INSERT INTO "public"."cardcodes" VALUES (1114, '黑龙江省', '齐齐哈尔市', '拜泉县', '230231'); +INSERT INTO "public"."cardcodes" VALUES (1115, '黑龙江省', '齐齐哈尔市', '讷河市', '230281'); +INSERT INTO "public"."cardcodes" VALUES (1116, '黑龙江省', '鸡西市', '市辖区', '230301'); +INSERT INTO "public"."cardcodes" VALUES (1117, '黑龙江省', '鸡西市', '鸡冠区', '230302'); +INSERT INTO "public"."cardcodes" VALUES (1118, '黑龙江省', '鸡西市', '恒山区', '230303'); +INSERT INTO "public"."cardcodes" VALUES (1119, '黑龙江省', '鸡西市', '滴道区', '230304'); +INSERT INTO "public"."cardcodes" VALUES (1120, '黑龙江省', '鸡西市', '梨树区', '230305'); +INSERT INTO "public"."cardcodes" VALUES (1121, '黑龙江省', '鸡西市', '城子河区', '230306'); +INSERT INTO "public"."cardcodes" VALUES (1122, '黑龙江省', '鸡西市', '麻山区', '230307'); +INSERT INTO "public"."cardcodes" VALUES (1123, '黑龙江省', '鸡西市', '鸡东县', '230321'); +INSERT INTO "public"."cardcodes" VALUES (1124, '黑龙江省', '鸡西市', '虎林市', '230381'); +INSERT INTO "public"."cardcodes" VALUES (1125, '黑龙江省', '鸡西市', '密山市', '230382'); +INSERT INTO "public"."cardcodes" VALUES (1126, '黑龙江省', '鹤岗市', '市辖区', '230401'); +INSERT INTO "public"."cardcodes" VALUES (1127, '黑龙江省', '鹤岗市', '向阳区', '230402'); +INSERT INTO "public"."cardcodes" VALUES (1128, '黑龙江省', '鹤岗市', '工农区', '230403'); +INSERT INTO "public"."cardcodes" VALUES (1129, '黑龙江省', '鹤岗市', '南山区', '230404'); +INSERT INTO "public"."cardcodes" VALUES (1334, '上海市', NULL, '南汇县', '310225'); +INSERT INTO "public"."cardcodes" VALUES (1130, '黑龙江省', '鹤岗市', '兴安区', '230405'); +INSERT INTO "public"."cardcodes" VALUES (1131, '黑龙江省', '鹤岗市', '东山区', '230406'); +INSERT INTO "public"."cardcodes" VALUES (1132, '黑龙江省', '鹤岗市', '兴山区', '230407'); +INSERT INTO "public"."cardcodes" VALUES (1133, '黑龙江省', '鹤岗市', '萝北县', '230421'); +INSERT INTO "public"."cardcodes" VALUES (1134, '黑龙江省', '鹤岗市', '绥滨县', '230422'); +INSERT INTO "public"."cardcodes" VALUES (1135, '黑龙江省', '双鸭山市', '市辖区', '230501'); +INSERT INTO "public"."cardcodes" VALUES (1136, '黑龙江省', '双鸭山市', '尖山区', '230502'); +INSERT INTO "public"."cardcodes" VALUES (1137, '黑龙江省', '双鸭山市', '岭东区', '230503'); +INSERT INTO "public"."cardcodes" VALUES (1138, '黑龙江省', '双鸭山市', '岭西区', '230504'); +INSERT INTO "public"."cardcodes" VALUES (1139, '黑龙江省', '双鸭山市', '四方台区', '230505'); +INSERT INTO "public"."cardcodes" VALUES (1140, '黑龙江省', '双鸭山市', '宝山区', '230506'); +INSERT INTO "public"."cardcodes" VALUES (1141, '黑龙江省', '双鸭山市', '集贤县', '230521'); +INSERT INTO "public"."cardcodes" VALUES (1142, '黑龙江省', '双鸭山市', '友谊县', '230522'); +INSERT INTO "public"."cardcodes" VALUES (1143, '黑龙江省', '双鸭山市', '宝清县', '230523'); +INSERT INTO "public"."cardcodes" VALUES (1144, '黑龙江省', '双鸭山市', '饶河县', '230524'); +INSERT INTO "public"."cardcodes" VALUES (1145, '黑龙江省', '大庆市', '市辖区', '230601'); +INSERT INTO "public"."cardcodes" VALUES (1146, '黑龙江省', '大庆市', '萨尔图区', '230602'); +INSERT INTO "public"."cardcodes" VALUES (1147, '黑龙江省', '大庆市', '龙凤区', '230603'); +INSERT INTO "public"."cardcodes" VALUES (1148, '黑龙江省', '大庆市', '让胡路区', '230604'); +INSERT INTO "public"."cardcodes" VALUES (1149, '黑龙江省', '大庆市', '红岗区', '230605'); +INSERT INTO "public"."cardcodes" VALUES (1150, '黑龙江省', '大庆市', '大同区', '230606'); +INSERT INTO "public"."cardcodes" VALUES (1151, '黑龙江省', '大庆市', '肇州县', '230621'); +INSERT INTO "public"."cardcodes" VALUES (1152, '黑龙江省', '大庆市', '肇源县', '230622'); +INSERT INTO "public"."cardcodes" VALUES (1153, '黑龙江省', '大庆市', '林甸县', '230623'); +INSERT INTO "public"."cardcodes" VALUES (1154, '黑龙江省', '大庆市', '杜尔伯特蒙古族自治县', '230624'); +INSERT INTO "public"."cardcodes" VALUES (1155, '黑龙江省', '伊春市', '市辖区', '230701'); +INSERT INTO "public"."cardcodes" VALUES (1156, '黑龙江省', '伊春市', '伊春区', '230702'); +INSERT INTO "public"."cardcodes" VALUES (1157, '黑龙江省', '伊春市', '南岔区', '230703'); +INSERT INTO "public"."cardcodes" VALUES (1158, '黑龙江省', '伊春市', '友好区', '230704'); +INSERT INTO "public"."cardcodes" VALUES (1159, '黑龙江省', '伊春市', '西林区', '230705'); +INSERT INTO "public"."cardcodes" VALUES (1160, '黑龙江省', '伊春市', '翠峦区', '230706'); +INSERT INTO "public"."cardcodes" VALUES (1161, '黑龙江省', '伊春市', '新青区', '230707'); +INSERT INTO "public"."cardcodes" VALUES (1162, '黑龙江省', '伊春市', '美溪区', '230708'); +INSERT INTO "public"."cardcodes" VALUES (1163, '黑龙江省', '伊春市', '金山屯区', '230709'); +INSERT INTO "public"."cardcodes" VALUES (1164, '黑龙江省', '伊春市', '五营区', '230710'); +INSERT INTO "public"."cardcodes" VALUES (1165, '黑龙江省', '伊春市', '乌马河区', '230711'); +INSERT INTO "public"."cardcodes" VALUES (1166, '黑龙江省', '伊春市', '汤旺河区', '230712'); +INSERT INTO "public"."cardcodes" VALUES (1167, '黑龙江省', '伊春市', '带岭区', '230713'); +INSERT INTO "public"."cardcodes" VALUES (1168, '黑龙江省', '伊春市', '乌伊岭区', '230714'); +INSERT INTO "public"."cardcodes" VALUES (1169, '黑龙江省', '伊春市', '红星区', '230715'); +INSERT INTO "public"."cardcodes" VALUES (1170, '黑龙江省', '伊春市', '上甘岭区', '230716'); +INSERT INTO "public"."cardcodes" VALUES (1171, '黑龙江省', '伊春市', '铁力县', '230721'); +INSERT INTO "public"."cardcodes" VALUES (1172, '黑龙江省', '伊春市', '嘉荫县', '230722'); +INSERT INTO "public"."cardcodes" VALUES (1173, '黑龙江省', '伊春市', '铁力市', '230781'); +INSERT INTO "public"."cardcodes" VALUES (1174, '黑龙江省', '佳木斯市', '市辖区', '230801'); +INSERT INTO "public"."cardcodes" VALUES (1175, '黑龙江省', '佳木斯市', '永红区', '230802'); +INSERT INTO "public"."cardcodes" VALUES (1176, '黑龙江省', '佳木斯市', '向阳区', '230803'); +INSERT INTO "public"."cardcodes" VALUES (1177, '黑龙江省', '佳木斯市', '前进区', '230804'); +INSERT INTO "public"."cardcodes" VALUES (1178, '黑龙江省', '佳木斯市', '东风区', '230805'); +INSERT INTO "public"."cardcodes" VALUES (1179, '黑龙江省', '佳木斯市', '郊区', '230811'); +INSERT INTO "public"."cardcodes" VALUES (1180, '黑龙江省', '佳木斯市', '富锦县', '230821'); +INSERT INTO "public"."cardcodes" VALUES (1181, '黑龙江省', '佳木斯市', '桦南县', '230822'); +INSERT INTO "public"."cardcodes" VALUES (1182, '黑龙江省', '佳木斯市', '依兰县', '230823'); +INSERT INTO "public"."cardcodes" VALUES (1183, '黑龙江省', '佳木斯市', '集贤县', '230825'); +INSERT INTO "public"."cardcodes" VALUES (1184, '黑龙江省', '佳木斯市', '桦川县', '230826'); +INSERT INTO "public"."cardcodes" VALUES (1185, '黑龙江省', '佳木斯市', '宝清县', '230827'); +INSERT INTO "public"."cardcodes" VALUES (1186, '黑龙江省', '佳木斯市', '汤原县', '230828'); +INSERT INTO "public"."cardcodes" VALUES (1187, '黑龙江省', '佳木斯市', '绥滨县', '230829'); +INSERT INTO "public"."cardcodes" VALUES (1188, '黑龙江省', '佳木斯市', '萝北县', '230830'); +INSERT INTO "public"."cardcodes" VALUES (1189, '黑龙江省', '佳木斯市', '同江县', '230831'); +INSERT INTO "public"."cardcodes" VALUES (1190, '黑龙江省', '佳木斯市', '饶河县', '230832'); +INSERT INTO "public"."cardcodes" VALUES (1191, '黑龙江省', '佳木斯市', '抚远县', '230833'); +INSERT INTO "public"."cardcodes" VALUES (1192, '黑龙江省', '佳木斯市', '友谊县', '230834'); +INSERT INTO "public"."cardcodes" VALUES (1193, '黑龙江省', '佳木斯市', '同江市', '230881'); +INSERT INTO "public"."cardcodes" VALUES (1194, '黑龙江省', '佳木斯市', '富锦市', '230882'); +INSERT INTO "public"."cardcodes" VALUES (1195, '黑龙江省', '七台河市', '市辖区', '230901'); +INSERT INTO "public"."cardcodes" VALUES (1196, '黑龙江省', '七台河市', '新兴区', '230902'); +INSERT INTO "public"."cardcodes" VALUES (1197, '黑龙江省', '七台河市', '桃山区', '230903'); +INSERT INTO "public"."cardcodes" VALUES (1198, '黑龙江省', '七台河市', '茄子河区', '230904'); +INSERT INTO "public"."cardcodes" VALUES (1199, '黑龙江省', '七台河市', '勃利县', '230921'); +INSERT INTO "public"."cardcodes" VALUES (1200, '黑龙江省', '牡丹江市', '市辖区', '231001'); +INSERT INTO "public"."cardcodes" VALUES (1201, '黑龙江省', '牡丹江市', '东安区', '231002'); +INSERT INTO "public"."cardcodes" VALUES (1202, '黑龙江省', '牡丹江市', '阳明区', '231003'); +INSERT INTO "public"."cardcodes" VALUES (1203, '黑龙江省', '牡丹江市', '爱民区', '231004'); +INSERT INTO "public"."cardcodes" VALUES (1204, '黑龙江省', '牡丹江市', '西安区', '231005'); +INSERT INTO "public"."cardcodes" VALUES (1205, '黑龙江省', '牡丹江市', '郊区', '231011'); +INSERT INTO "public"."cardcodes" VALUES (1206, '黑龙江省', '牡丹江市', '绥芬河市', '231020'); +INSERT INTO "public"."cardcodes" VALUES (1207, '黑龙江省', '牡丹江市', '宁安县', '231021'); +INSERT INTO "public"."cardcodes" VALUES (1208, '黑龙江省', '牡丹江市', '海林县', '231022'); +INSERT INTO "public"."cardcodes" VALUES (1209, '黑龙江省', '牡丹江市', '穆棱县', '231023'); +INSERT INTO "public"."cardcodes" VALUES (1210, '黑龙江省', '牡丹江市', '东宁县', '231024'); +INSERT INTO "public"."cardcodes" VALUES (1211, '黑龙江省', '牡丹江市', '林口县', '231025'); +INSERT INTO "public"."cardcodes" VALUES (1212, '黑龙江省', '牡丹江市', '密山县', '231026'); +INSERT INTO "public"."cardcodes" VALUES (1213, '黑龙江省', '牡丹江市', '虎林县', '231027'); +INSERT INTO "public"."cardcodes" VALUES (1214, '黑龙江省', '牡丹江市', '绥芬河市', '231081'); +INSERT INTO "public"."cardcodes" VALUES (1215, '黑龙江省', '牡丹江市', '密山市', '231082'); +INSERT INTO "public"."cardcodes" VALUES (1216, '黑龙江省', '牡丹江市', '海林市', '231083'); +INSERT INTO "public"."cardcodes" VALUES (1217, '黑龙江省', '牡丹江市', '宁安市', '231084'); +INSERT INTO "public"."cardcodes" VALUES (1218, '黑龙江省', '牡丹江市', '穆棱市', '231085'); +INSERT INTO "public"."cardcodes" VALUES (1219, '黑龙江省', '黑河市', '市辖区', '231101'); +INSERT INTO "public"."cardcodes" VALUES (1220, '黑龙江省', '黑河市', '爱辉区', '231102'); +INSERT INTO "public"."cardcodes" VALUES (1221, '黑龙江省', '黑河市', '嫩江县', '231121'); +INSERT INTO "public"."cardcodes" VALUES (1222, '黑龙江省', '黑河市', '逊克县', '231123'); +INSERT INTO "public"."cardcodes" VALUES (1223, '黑龙江省', '黑河市', '孙吴县', '231124'); +INSERT INTO "public"."cardcodes" VALUES (1224, '黑龙江省', '黑河市', '北安市', '231181'); +INSERT INTO "public"."cardcodes" VALUES (1225, '黑龙江省', '黑河市', '五大连池市', '231182'); +INSERT INTO "public"."cardcodes" VALUES (1226, '黑龙江省', '绥化市', '市辖区', '231201'); +INSERT INTO "public"."cardcodes" VALUES (1227, '黑龙江省', '绥化市', '北林区', '231202'); +INSERT INTO "public"."cardcodes" VALUES (1228, '黑龙江省', '绥化市', '望奎县', '231221'); +INSERT INTO "public"."cardcodes" VALUES (1229, '黑龙江省', '绥化市', '兰西县', '231222'); +INSERT INTO "public"."cardcodes" VALUES (1230, '黑龙江省', '绥化市', '青冈县', '231223'); +INSERT INTO "public"."cardcodes" VALUES (1231, '黑龙江省', '绥化市', '庆安县', '231224'); +INSERT INTO "public"."cardcodes" VALUES (1232, '黑龙江省', '绥化市', '明水县', '231225'); +INSERT INTO "public"."cardcodes" VALUES (1233, '黑龙江省', '绥化市', '绥棱县', '231226'); +INSERT INTO "public"."cardcodes" VALUES (1234, '黑龙江省', '绥化市', '安达市', '231281'); +INSERT INTO "public"."cardcodes" VALUES (1235, '黑龙江省', '绥化市', '肇东市', '231282'); +INSERT INTO "public"."cardcodes" VALUES (1236, '黑龙江省', '绥化市', '海伦市', '231283'); +INSERT INTO "public"."cardcodes" VALUES (1237, '黑龙江省', '松花江地区', '双城市', '232101'); +INSERT INTO "public"."cardcodes" VALUES (1238, '黑龙江省', '松花江地区', '尚志市', '232102'); +INSERT INTO "public"."cardcodes" VALUES (1239, '黑龙江省', '松花江地区', '五常市', '232103'); +INSERT INTO "public"."cardcodes" VALUES (1240, '黑龙江省', '松花江地区', '阿城市', '232121'); +INSERT INTO "public"."cardcodes" VALUES (1241, '黑龙江省', '松花江地区', '宾县', '232122'); +INSERT INTO "public"."cardcodes" VALUES (1242, '黑龙江省', '松花江地区', '呼兰县', '232123'); +INSERT INTO "public"."cardcodes" VALUES (1243, '黑龙江省', '松花江地区', '双城市', '232124'); +INSERT INTO "public"."cardcodes" VALUES (1244, '黑龙江省', '松花江地区', '五常市', '232125'); +INSERT INTO "public"."cardcodes" VALUES (1245, '黑龙江省', '松花江地区', '巴彦县', '232126'); +INSERT INTO "public"."cardcodes" VALUES (1246, '黑龙江省', '松花江地区', '木兰县', '232127'); +INSERT INTO "public"."cardcodes" VALUES (1247, '黑龙江省', '松花江地区', '通河县', '232128'); +INSERT INTO "public"."cardcodes" VALUES (1248, '黑龙江省', '松花江地区', '尚志市', '232129'); +INSERT INTO "public"."cardcodes" VALUES (1249, '黑龙江省', '松花江地区', '方正县', '232130'); +INSERT INTO "public"."cardcodes" VALUES (1250, '黑龙江省', '松花江地区', '延寿县', '232131'); +INSERT INTO "public"."cardcodes" VALUES (1251, '黑龙江省', '绥化地区', '绥化市', '232301'); +INSERT INTO "public"."cardcodes" VALUES (1252, '黑龙江省', '绥化地区', '安达市', '232302'); +INSERT INTO "public"."cardcodes" VALUES (1253, '黑龙江省', '绥化地区', '肇东市', '232303'); +INSERT INTO "public"."cardcodes" VALUES (1254, '黑龙江省', '绥化地区', '海伦市', '232304'); +INSERT INTO "public"."cardcodes" VALUES (1255, '黑龙江省', '绥化地区', '海伦县', '232321'); +INSERT INTO "public"."cardcodes" VALUES (1256, '黑龙江省', '绥化地区', '肇东县', '232322'); +INSERT INTO "public"."cardcodes" VALUES (1257, '黑龙江省', '绥化地区', '绥化县', '232323'); +INSERT INTO "public"."cardcodes" VALUES (1258, '黑龙江省', '绥化地区', '望奎县', '232324'); +INSERT INTO "public"."cardcodes" VALUES (1259, '黑龙江省', '绥化地区', '兰西县', '232325'); +INSERT INTO "public"."cardcodes" VALUES (1260, '黑龙江省', '绥化地区', '青冈县', '232326'); +INSERT INTO "public"."cardcodes" VALUES (1261, '黑龙江省', '绥化地区', '安达县', '232327'); +INSERT INTO "public"."cardcodes" VALUES (1262, '黑龙江省', '绥化地区', '肇源县', '232328'); +INSERT INTO "public"."cardcodes" VALUES (1263, '黑龙江省', '绥化地区', '肇州县', '232329'); +INSERT INTO "public"."cardcodes" VALUES (1264, '黑龙江省', '绥化地区', '庆安县', '232330'); +INSERT INTO "public"."cardcodes" VALUES (1265, '黑龙江省', '绥化地区', '明水县', '232331'); +INSERT INTO "public"."cardcodes" VALUES (1266, '黑龙江省', '绥化地区', '绥棱县', '232332'); +INSERT INTO "public"."cardcodes" VALUES (1267, '黑龙江省', '佳木斯地区', '佳木斯市', '232401'); +INSERT INTO "public"."cardcodes" VALUES (1268, '黑龙江省', '佳木斯地区', '富锦县', '232421'); +INSERT INTO "public"."cardcodes" VALUES (1269, '黑龙江省', '佳木斯地区', '桦南县', '232422'); +INSERT INTO "public"."cardcodes" VALUES (1270, '黑龙江省', '佳木斯地区', '依兰县', '232423'); +INSERT INTO "public"."cardcodes" VALUES (1271, '黑龙江省', '佳木斯地区', '勃利县', '232424'); +INSERT INTO "public"."cardcodes" VALUES (1272, '黑龙江省', '佳木斯地区', '集贤县', '232425'); +INSERT INTO "public"."cardcodes" VALUES (1273, '黑龙江省', '佳木斯地区', '桦川县', '232426'); +INSERT INTO "public"."cardcodes" VALUES (1274, '黑龙江省', '佳木斯地区', '宝清县', '232427'); +INSERT INTO "public"."cardcodes" VALUES (1275, '黑龙江省', '佳木斯地区', '汤原县', '232428'); +INSERT INTO "public"."cardcodes" VALUES (1276, '黑龙江省', '佳木斯地区', '绥滨县', '232429'); +INSERT INTO "public"."cardcodes" VALUES (1277, '黑龙江省', '佳木斯地区', '萝北县', '232430'); +INSERT INTO "public"."cardcodes" VALUES (1278, '黑龙江省', '佳木斯地区', '同江县', '232431'); +INSERT INTO "public"."cardcodes" VALUES (1279, '黑龙江省', '佳木斯地区', '饶河县', '232432'); +INSERT INTO "public"."cardcodes" VALUES (1280, '黑龙江省', '佳木斯地区', '抚远县', '232433'); +INSERT INTO "public"."cardcodes" VALUES (1281, '黑龙江省', '牡丹江地区', '牡丹江市', '232501'); +INSERT INTO "public"."cardcodes" VALUES (1282, '黑龙江省', '牡丹江地区', '绥芬河市', '232502'); +INSERT INTO "public"."cardcodes" VALUES (1283, '黑龙江省', '牡丹江地区', '宁安县', '232521'); +INSERT INTO "public"."cardcodes" VALUES (1284, '黑龙江省', '牡丹江地区', '海林县', '232522'); +INSERT INTO "public"."cardcodes" VALUES (1285, '黑龙江省', '牡丹江地区', '穆棱县', '232523'); +INSERT INTO "public"."cardcodes" VALUES (1286, '黑龙江省', '牡丹江地区', '东宁县', '232524'); +INSERT INTO "public"."cardcodes" VALUES (1287, '黑龙江省', '牡丹江地区', '林口县', '232525'); +INSERT INTO "public"."cardcodes" VALUES (1288, '黑龙江省', '牡丹江地区', '鸡东县', '232526'); +INSERT INTO "public"."cardcodes" VALUES (1289, '黑龙江省', '牡丹江地区', '密山县', '232527'); +INSERT INTO "public"."cardcodes" VALUES (1290, '黑龙江省', '牡丹江地区', '虎林县', '232528'); +INSERT INTO "public"."cardcodes" VALUES (1291, '黑龙江省', '黑河地区', '黑河市', '232601'); +INSERT INTO "public"."cardcodes" VALUES (1292, '黑龙江省', '黑河地区', '北安市', '232602'); +INSERT INTO "public"."cardcodes" VALUES (1293, '黑龙江省', '黑河地区', '五大连池市', '232603'); +INSERT INTO "public"."cardcodes" VALUES (1294, '黑龙江省', '黑河地区', '北安县', '232621'); +INSERT INTO "public"."cardcodes" VALUES (1295, '黑龙江省', '黑河地区', '嫩江县', '232622'); +INSERT INTO "public"."cardcodes" VALUES (1296, '黑龙江省', '黑河地区', '德都县', '232623'); +INSERT INTO "public"."cardcodes" VALUES (1297, '黑龙江省', '黑河地区', '逊克县', '232625'); +INSERT INTO "public"."cardcodes" VALUES (1298, '黑龙江省', '黑河地区', '孙吴县', '232626'); +INSERT INTO "public"."cardcodes" VALUES (1299, '黑龙江省', '大兴安岭地区', '加格达奇区', '232701'); +INSERT INTO "public"."cardcodes" VALUES (1300, '黑龙江省', '大兴安岭地区', '呼玛县', '232721'); +INSERT INTO "public"."cardcodes" VALUES (1301, '黑龙江省', '大兴安岭地区', '塔河县', '232722'); +INSERT INTO "public"."cardcodes" VALUES (1302, '黑龙江省', '大兴安岭地区', '漠河县', '232723'); +INSERT INTO "public"."cardcodes" VALUES (1303, '黑龙江省', '大兴安岭地区', '漠河县', '232724'); +INSERT INTO "public"."cardcodes" VALUES (1304, '黑龙江省', NULL, '绥芬河市', '239001'); +INSERT INTO "public"."cardcodes" VALUES (1305, '黑龙江省', NULL, '阿城市', '239002'); +INSERT INTO "public"."cardcodes" VALUES (1306, '黑龙江省', NULL, '同江市', '239003'); +INSERT INTO "public"."cardcodes" VALUES (1307, '黑龙江省', NULL, '富锦市', '239004'); +INSERT INTO "public"."cardcodes" VALUES (1308, '黑龙江省', NULL, '铁力市', '239005'); +INSERT INTO "public"."cardcodes" VALUES (1309, '黑龙江省', NULL, '密山市', '239006'); +INSERT INTO "public"."cardcodes" VALUES (1310, '上海市', NULL, '黄浦区', '310101'); +INSERT INTO "public"."cardcodes" VALUES (1311, '上海市', NULL, '南市区', '310102'); +INSERT INTO "public"."cardcodes" VALUES (1312, '上海市', NULL, '卢湾区', '310103'); +INSERT INTO "public"."cardcodes" VALUES (1313, '上海市', NULL, '徐汇区', '310104'); +INSERT INTO "public"."cardcodes" VALUES (1314, '上海市', NULL, '长宁区', '310105'); +INSERT INTO "public"."cardcodes" VALUES (1315, '上海市', NULL, '静安区', '310106'); +INSERT INTO "public"."cardcodes" VALUES (1316, '上海市', NULL, '普陀区', '310107'); +INSERT INTO "public"."cardcodes" VALUES (1317, '上海市', NULL, '闸北区', '310108'); +INSERT INTO "public"."cardcodes" VALUES (1318, '上海市', NULL, '虹口区', '310109'); +INSERT INTO "public"."cardcodes" VALUES (1319, '上海市', NULL, '杨浦区', '310110'); +INSERT INTO "public"."cardcodes" VALUES (1320, '上海市', NULL, '吴凇区', '310111'); +INSERT INTO "public"."cardcodes" VALUES (1321, '上海市', NULL, '闵行区', '310112'); +INSERT INTO "public"."cardcodes" VALUES (1322, '上海市', NULL, '宝山区', '310113'); +INSERT INTO "public"."cardcodes" VALUES (1323, '上海市', NULL, '嘉定区', '310114'); +INSERT INTO "public"."cardcodes" VALUES (1324, '上海市', NULL, '浦东新区', '310115'); +INSERT INTO "public"."cardcodes" VALUES (1325, '上海市', NULL, '金山区', '310116'); +INSERT INTO "public"."cardcodes" VALUES (1326, '上海市', NULL, '松江区', '310117'); +INSERT INTO "public"."cardcodes" VALUES (1327, '上海市', NULL, '青浦区', '310118'); +INSERT INTO "public"."cardcodes" VALUES (1328, '上海市', NULL, '南汇区', '310119'); +INSERT INTO "public"."cardcodes" VALUES (1329, '上海市', NULL, '奉贤区', '310120'); +INSERT INTO "public"."cardcodes" VALUES (1330, '上海市', NULL, '上海县', '310221'); +INSERT INTO "public"."cardcodes" VALUES (1331, '上海市', NULL, '嘉定县', '310222'); +INSERT INTO "public"."cardcodes" VALUES (1335, '上海市', NULL, '奉贤县', '310226'); +INSERT INTO "public"."cardcodes" VALUES (1336, '上海市', NULL, '松江县', '310227'); +INSERT INTO "public"."cardcodes" VALUES (1337, '上海市', NULL, '金山县', '310228'); +INSERT INTO "public"."cardcodes" VALUES (1338, '上海市', NULL, '青浦县', '310229'); +INSERT INTO "public"."cardcodes" VALUES (1339, '上海市', NULL, '崇明县', '310230'); +INSERT INTO "public"."cardcodes" VALUES (1340, '江苏省', '南京市', '市辖区', '320101'); +INSERT INTO "public"."cardcodes" VALUES (1341, '江苏省', '南京市', '玄武区', '320102'); +INSERT INTO "public"."cardcodes" VALUES (1342, '江苏省', '南京市', '白下区', '320103'); +INSERT INTO "public"."cardcodes" VALUES (1343, '江苏省', '南京市', '秦淮区', '320104'); +INSERT INTO "public"."cardcodes" VALUES (1344, '江苏省', '南京市', '建邺区', '320105'); +INSERT INTO "public"."cardcodes" VALUES (1345, '江苏省', '南京市', '鼓楼区', '320106'); +INSERT INTO "public"."cardcodes" VALUES (1346, '江苏省', '南京市', '下关区', '320107'); +INSERT INTO "public"."cardcodes" VALUES (1347, '江苏省', '南京市', '浦口区', '320111'); +INSERT INTO "public"."cardcodes" VALUES (1348, '江苏省', '南京市', '大厂区', '320112'); +INSERT INTO "public"."cardcodes" VALUES (1349, '江苏省', '南京市', '栖霞区', '320113'); +INSERT INTO "public"."cardcodes" VALUES (1350, '江苏省', '南京市', '雨花台区', '320114'); +INSERT INTO "public"."cardcodes" VALUES (1351, '江苏省', '南京市', '江宁区', '320115'); +INSERT INTO "public"."cardcodes" VALUES (1352, '江苏省', '南京市', '六合区', '320116'); +INSERT INTO "public"."cardcodes" VALUES (1353, '江苏省', '南京市', '市区', '320120'); +INSERT INTO "public"."cardcodes" VALUES (1354, '江苏省', '南京市', '江宁县', '320121'); +INSERT INTO "public"."cardcodes" VALUES (1355, '江苏省', '南京市', '江浦县', '320122'); +INSERT INTO "public"."cardcodes" VALUES (1356, '江苏省', '南京市', '六合县', '320123'); +INSERT INTO "public"."cardcodes" VALUES (1357, '江苏省', '南京市', '溧水县', '320124'); +INSERT INTO "public"."cardcodes" VALUES (1358, '江苏省', '南京市', '高淳县', '320125'); +INSERT INTO "public"."cardcodes" VALUES (1359, '江苏省', '南京市', '江都县', '320126'); +INSERT INTO "public"."cardcodes" VALUES (1360, '江苏省', '无锡市', '市辖区', '320201'); +INSERT INTO "public"."cardcodes" VALUES (1361, '江苏省', '无锡市', '崇安区', '320202'); +INSERT INTO "public"."cardcodes" VALUES (1362, '江苏省', '无锡市', '南长区', '320203'); +INSERT INTO "public"."cardcodes" VALUES (1363, '江苏省', '无锡市', '北塘区', '320204'); +INSERT INTO "public"."cardcodes" VALUES (1364, '江苏省', '无锡市', '锡山区', '320205'); +INSERT INTO "public"."cardcodes" VALUES (1365, '江苏省', '无锡市', '惠山区', '320206'); +INSERT INTO "public"."cardcodes" VALUES (1366, '江苏省', '无锡市', '郊区', '320211'); +INSERT INTO "public"."cardcodes" VALUES (1367, '江苏省', '无锡市', '马山区', '320212'); +INSERT INTO "public"."cardcodes" VALUES (1368, '江苏省', '无锡市', '江阴县', '320219'); +INSERT INTO "public"."cardcodes" VALUES (1369, '江苏省', '无锡市', '江阴县', '320221'); +INSERT INTO "public"."cardcodes" VALUES (1370, '江苏省', '无锡市', '无锡县', '320222'); +INSERT INTO "public"."cardcodes" VALUES (1371, '江苏省', '无锡市', '宜兴县', '320223'); +INSERT INTO "public"."cardcodes" VALUES (1372, '江苏省', '无锡市', '江阴市', '320281'); +INSERT INTO "public"."cardcodes" VALUES (1373, '江苏省', '无锡市', '宜兴市', '320282'); +INSERT INTO "public"."cardcodes" VALUES (1374, '江苏省', '无锡市', '锡山市', '320283'); +INSERT INTO "public"."cardcodes" VALUES (1375, '江苏省', '徐州市', '市辖区', '320301'); +INSERT INTO "public"."cardcodes" VALUES (1376, '江苏省', '徐州市', '鼓楼区', '320302'); +INSERT INTO "public"."cardcodes" VALUES (1377, '江苏省', '徐州市', '云龙区', '320303'); +INSERT INTO "public"."cardcodes" VALUES (1378, '江苏省', '徐州市', '九里区', '320304'); +INSERT INTO "public"."cardcodes" VALUES (1379, '江苏省', '徐州市', '贾汪区', '320305'); +INSERT INTO "public"."cardcodes" VALUES (1380, '江苏省', '徐州市', '泉山区', '320311'); +INSERT INTO "public"."cardcodes" VALUES (1381, '江苏省', '徐州市', '丰县', '320321'); +INSERT INTO "public"."cardcodes" VALUES (1382, '江苏省', '徐州市', '沛县', '320322'); +INSERT INTO "public"."cardcodes" VALUES (1383, '江苏省', '徐州市', '铜山县', '320323'); +INSERT INTO "public"."cardcodes" VALUES (1384, '江苏省', '徐州市', '睢宁县', '320324'); +INSERT INTO "public"."cardcodes" VALUES (1385, '江苏省', '徐州市', '邳县', '320325'); +INSERT INTO "public"."cardcodes" VALUES (1386, '江苏省', '徐州市', '新沂县', '320326'); +INSERT INTO "public"."cardcodes" VALUES (1387, '江苏省', '徐州市', '新沂市', '320381'); +INSERT INTO "public"."cardcodes" VALUES (1388, '江苏省', '徐州市', '邳州市', '320382'); +INSERT INTO "public"."cardcodes" VALUES (1389, '江苏省', '常州市', '市辖区', '320401'); +INSERT INTO "public"."cardcodes" VALUES (1390, '江苏省', '常州市', '天宁区', '320402'); +INSERT INTO "public"."cardcodes" VALUES (1391, '江苏省', '常州市', '钟楼区', '320404'); +INSERT INTO "public"."cardcodes" VALUES (1392, '江苏省', '常州市', '戚墅堰区', '320405'); +INSERT INTO "public"."cardcodes" VALUES (1393, '江苏省', '常州市', '郊区', '320411'); +INSERT INTO "public"."cardcodes" VALUES (1394, '江苏省', '常州市', '武进区', '320412'); +INSERT INTO "public"."cardcodes" VALUES (1395, '江苏省', '常州市', '武进市', '320419'); +INSERT INTO "public"."cardcodes" VALUES (1396, '江苏省', '常州市', '武进县', '320421'); +INSERT INTO "public"."cardcodes" VALUES (1397, '江苏省', '常州市', '金坛县', '320422'); +INSERT INTO "public"."cardcodes" VALUES (1398, '江苏省', '常州市', '溧阳县', '320423'); +INSERT INTO "public"."cardcodes" VALUES (1399, '江苏省', '常州市', '溧阳市', '320481'); +INSERT INTO "public"."cardcodes" VALUES (1400, '江苏省', '常州市', '金坛市', '320482'); +INSERT INTO "public"."cardcodes" VALUES (1401, '江苏省', '常州市', '武进市', '320483'); +INSERT INTO "public"."cardcodes" VALUES (1402, '江苏省', '苏州市', '市辖区', '320501'); +INSERT INTO "public"."cardcodes" VALUES (1403, '江苏省', '苏州市', '沧浪区', '320502'); +INSERT INTO "public"."cardcodes" VALUES (1404, '江苏省', '苏州市', '平江区', '320503'); +INSERT INTO "public"."cardcodes" VALUES (1405, '江苏省', '苏州市', '金阊区', '320504'); +INSERT INTO "public"."cardcodes" VALUES (1406, '江苏省', '苏州市', '虎丘区', '320505'); +INSERT INTO "public"."cardcodes" VALUES (1407, '江苏省', '苏州市', '吴中区', '320506'); +INSERT INTO "public"."cardcodes" VALUES (1408, '江苏省', '苏州市', '相城区', '320507'); +INSERT INTO "public"."cardcodes" VALUES (1409, '江苏省', '苏州市', '郊区', '320511'); +INSERT INTO "public"."cardcodes" VALUES (1410, '江苏省', '苏州市', '常熟市', '320520'); +INSERT INTO "public"."cardcodes" VALUES (1411, '江苏省', '苏州市', '沙洲县', '320521'); +INSERT INTO "public"."cardcodes" VALUES (1412, '江苏省', '苏州市', '太仓县', '320522'); +INSERT INTO "public"."cardcodes" VALUES (1413, '江苏省', '苏州市', '昆山县', '320523'); +INSERT INTO "public"."cardcodes" VALUES (1414, '江苏省', '苏州市', '吴县', '320524'); +INSERT INTO "public"."cardcodes" VALUES (1415, '江苏省', '苏州市', '吴江县', '320525'); +INSERT INTO "public"."cardcodes" VALUES (1416, '江苏省', '苏州市', '常熟市', '320581'); +INSERT INTO "public"."cardcodes" VALUES (1417, '江苏省', '苏州市', '张家港市', '320582'); +INSERT INTO "public"."cardcodes" VALUES (1418, '江苏省', '苏州市', '昆山市', '320583'); +INSERT INTO "public"."cardcodes" VALUES (1419, '江苏省', '苏州市', '吴江市', '320584'); +INSERT INTO "public"."cardcodes" VALUES (1420, '江苏省', '苏州市', '太仓市', '320585'); +INSERT INTO "public"."cardcodes" VALUES (1421, '江苏省', '苏州市', '吴县市', '320586'); +INSERT INTO "public"."cardcodes" VALUES (1422, '江苏省', '南通市', '市辖区', '320601'); +INSERT INTO "public"."cardcodes" VALUES (1423, '江苏省', '南通市', '崇川区', '320602'); +INSERT INTO "public"."cardcodes" VALUES (1424, '江苏省', '南通市', '港闸区', '320611'); +INSERT INTO "public"."cardcodes" VALUES (1425, '江苏省', '南通市', '海安县', '320621'); +INSERT INTO "public"."cardcodes" VALUES (1426, '江苏省', '南通市', '如皋县', '320622'); +INSERT INTO "public"."cardcodes" VALUES (1427, '江苏省', '南通市', '如东县', '320623'); +INSERT INTO "public"."cardcodes" VALUES (1428, '江苏省', '南通市', '南通县', '320624'); +INSERT INTO "public"."cardcodes" VALUES (1429, '江苏省', '南通市', '海门县', '320625'); +INSERT INTO "public"."cardcodes" VALUES (1430, '江苏省', '南通市', '启东县', '320626'); +INSERT INTO "public"."cardcodes" VALUES (1431, '江苏省', '南通市', '启东市', '320681'); +INSERT INTO "public"."cardcodes" VALUES (1432, '江苏省', '南通市', '如皋市', '320682'); +INSERT INTO "public"."cardcodes" VALUES (1433, '江苏省', '南通市', '通州市', '320683'); +INSERT INTO "public"."cardcodes" VALUES (1434, '江苏省', '南通市', '海门市', '320684'); +INSERT INTO "public"."cardcodes" VALUES (1435, '江苏省', '连云港市', '市辖区', '320701'); +INSERT INTO "public"."cardcodes" VALUES (1436, '江苏省', '连云港市', '连云区', '320703'); +INSERT INTO "public"."cardcodes" VALUES (1437, '江苏省', '连云港市', '云台区', '320704'); +INSERT INTO "public"."cardcodes" VALUES (1438, '江苏省', '连云港市', '新浦区', '320705'); +INSERT INTO "public"."cardcodes" VALUES (1439, '江苏省', '连云港市', '海州区', '320706'); +INSERT INTO "public"."cardcodes" VALUES (1440, '江苏省', '连云港市', '赣榆县', '320721'); +INSERT INTO "public"."cardcodes" VALUES (1441, '江苏省', '连云港市', '东海县', '320722'); +INSERT INTO "public"."cardcodes" VALUES (1442, '江苏省', '连云港市', '灌云县', '320723'); +INSERT INTO "public"."cardcodes" VALUES (1443, '江苏省', '连云港市', '灌南县', '320724'); +INSERT INTO "public"."cardcodes" VALUES (1444, '江苏省', '淮安市', '市辖区', '320801'); +INSERT INTO "public"."cardcodes" VALUES (1445, '江苏省', '淮安市', '清河区', '320802'); +INSERT INTO "public"."cardcodes" VALUES (1446, '江苏省', '淮安市', '楚州区', '320803'); +INSERT INTO "public"."cardcodes" VALUES (1447, '江苏省', '淮安市', '淮阴区', '320804'); +INSERT INTO "public"."cardcodes" VALUES (1448, '江苏省', '淮安市', '清浦区', '320811'); +INSERT INTO "public"."cardcodes" VALUES (1449, '江苏省', '淮安市', '宿迁市', '320819'); +INSERT INTO "public"."cardcodes" VALUES (1450, '江苏省', '淮安市', '淮阴县', '320821'); +INSERT INTO "public"."cardcodes" VALUES (1451, '江苏省', '淮安市', '灌南县', '320822'); +INSERT INTO "public"."cardcodes" VALUES (1452, '江苏省', '淮安市', '沭阳县', '320823'); +INSERT INTO "public"."cardcodes" VALUES (1453, '江苏省', '淮安市', '宿迁县', '320824'); +INSERT INTO "public"."cardcodes" VALUES (1454, '江苏省', '淮安市', '泗阳县', '320825'); +INSERT INTO "public"."cardcodes" VALUES (1455, '江苏省', '淮安市', '涟水县', '320826'); +INSERT INTO "public"."cardcodes" VALUES (1456, '江苏省', '淮安市', '泗洪县', '320827'); +INSERT INTO "public"."cardcodes" VALUES (1457, '江苏省', '淮安市', '淮安县', '320828'); +INSERT INTO "public"."cardcodes" VALUES (1458, '江苏省', '淮安市', '洪泽县', '320829'); +INSERT INTO "public"."cardcodes" VALUES (1459, '江苏省', '淮安市', '盱眙县', '320830'); +INSERT INTO "public"."cardcodes" VALUES (1460, '江苏省', '淮安市', '金湖县', '320831'); +INSERT INTO "public"."cardcodes" VALUES (1461, '江苏省', '淮安市', '宿迁市', '320881'); +INSERT INTO "public"."cardcodes" VALUES (1462, '江苏省', '淮安市', '淮安市', '320882'); +INSERT INTO "public"."cardcodes" VALUES (1463, '江苏省', '盐城市', '市辖区', '320901'); +INSERT INTO "public"."cardcodes" VALUES (1464, '江苏省', '盐城市', '城区', '320902'); +INSERT INTO "public"."cardcodes" VALUES (1465, '江苏省', '盐城市', '盐都区', '320903'); +INSERT INTO "public"."cardcodes" VALUES (1466, '江苏省', '盐城市', '郊区', '320911'); +INSERT INTO "public"."cardcodes" VALUES (1467, '江苏省', '盐城市', '东台市', '320919'); +INSERT INTO "public"."cardcodes" VALUES (1468, '江苏省', '盐城市', '响水县', '320921'); +INSERT INTO "public"."cardcodes" VALUES (1469, '江苏省', '盐城市', '滨海县', '320922'); +INSERT INTO "public"."cardcodes" VALUES (1470, '江苏省', '盐城市', '阜宁县', '320923'); +INSERT INTO "public"."cardcodes" VALUES (1471, '江苏省', '盐城市', '射阳县', '320924'); +INSERT INTO "public"."cardcodes" VALUES (1472, '江苏省', '盐城市', '建湖县', '320925'); +INSERT INTO "public"."cardcodes" VALUES (1473, '江苏省', '盐城市', '大丰县', '320926'); +INSERT INTO "public"."cardcodes" VALUES (1474, '江苏省', '盐城市', '东台县', '320927'); +INSERT INTO "public"."cardcodes" VALUES (1475, '江苏省', '盐城市', '盐都县', '320928'); +INSERT INTO "public"."cardcodes" VALUES (1476, '江苏省', '盐城市', '东台市', '320981'); +INSERT INTO "public"."cardcodes" VALUES (1477, '江苏省', '盐城市', '大丰市', '320982'); +INSERT INTO "public"."cardcodes" VALUES (1478, '江苏省', '扬州市', '市辖区', '321001'); +INSERT INTO "public"."cardcodes" VALUES (1479, '江苏省', '扬州市', '广陵区', '321002'); +INSERT INTO "public"."cardcodes" VALUES (1480, '江苏省', '扬州市', '邗江区', '321003'); +INSERT INTO "public"."cardcodes" VALUES (1481, '江苏省', '扬州市', '郊区', '321011'); +INSERT INTO "public"."cardcodes" VALUES (1482, '江苏省', '扬州市', '仪征市', '321019'); +INSERT INTO "public"."cardcodes" VALUES (1483, '江苏省', '扬州市', '泰州市', '321020'); +INSERT INTO "public"."cardcodes" VALUES (1484, '江苏省', '扬州市', '兴化县', '321021'); +INSERT INTO "public"."cardcodes" VALUES (1485, '江苏省', '扬州市', '高邮县', '321022'); +INSERT INTO "public"."cardcodes" VALUES (1486, '江苏省', '扬州市', '宝应县', '321023'); +INSERT INTO "public"."cardcodes" VALUES (1487, '江苏省', '扬州市', '靖江县', '321024'); +INSERT INTO "public"."cardcodes" VALUES (1488, '江苏省', '扬州市', '泰兴县', '321025'); +INSERT INTO "public"."cardcodes" VALUES (1489, '江苏省', '扬州市', '江都县', '321026'); +INSERT INTO "public"."cardcodes" VALUES (1490, '江苏省', '扬州市', '邗江县', '321027'); +INSERT INTO "public"."cardcodes" VALUES (1491, '江苏省', '扬州市', '泰县', '321028'); +INSERT INTO "public"."cardcodes" VALUES (1492, '江苏省', '扬州市', '仪征县', '321029'); +INSERT INTO "public"."cardcodes" VALUES (1493, '江苏省', '扬州市', '仪征市', '321081'); +INSERT INTO "public"."cardcodes" VALUES (1494, '江苏省', '扬州市', '泰州市', '321082'); +INSERT INTO "public"."cardcodes" VALUES (1495, '江苏省', '扬州市', '兴化市', '321083'); +INSERT INTO "public"."cardcodes" VALUES (1496, '江苏省', '扬州市', '高邮市', '321084'); +INSERT INTO "public"."cardcodes" VALUES (1497, '江苏省', '扬州市', '泰兴市', '321085'); +INSERT INTO "public"."cardcodes" VALUES (1498, '江苏省', '扬州市', '靖江市', '321086'); +INSERT INTO "public"."cardcodes" VALUES (1499, '江苏省', '扬州市', '江都市', '321087'); +INSERT INTO "public"."cardcodes" VALUES (1500, '江苏省', '扬州市', '江都市', '321088'); +INSERT INTO "public"."cardcodes" VALUES (1501, '江苏省', '镇江市', '市辖区', '321101'); +INSERT INTO "public"."cardcodes" VALUES (1502, '江苏省', '镇江市', '京口区', '321102'); +INSERT INTO "public"."cardcodes" VALUES (1503, '江苏省', '镇江市', '润州区', '321111'); +INSERT INTO "public"."cardcodes" VALUES (1504, '江苏省', '镇江市', '丹徒区', '321112'); +INSERT INTO "public"."cardcodes" VALUES (1505, '江苏省', '镇江市', '丹阳市', '321119'); +INSERT INTO "public"."cardcodes" VALUES (1506, '江苏省', '镇江市', '丹徒县', '321121'); +INSERT INTO "public"."cardcodes" VALUES (1507, '江苏省', '镇江市', '丹阳县', '321122'); +INSERT INTO "public"."cardcodes" VALUES (1508, '江苏省', '镇江市', '句容县', '321123'); +INSERT INTO "public"."cardcodes" VALUES (1509, '江苏省', '镇江市', '扬中县', '321124'); +INSERT INTO "public"."cardcodes" VALUES (1510, '江苏省', '镇江市', '丹阳市', '321181'); +INSERT INTO "public"."cardcodes" VALUES (1511, '江苏省', '镇江市', '扬中市', '321182'); +INSERT INTO "public"."cardcodes" VALUES (1512, '江苏省', '镇江市', '句容市', '321183'); +INSERT INTO "public"."cardcodes" VALUES (1513, '江苏省', '泰州市', '市辖区', '321201'); +INSERT INTO "public"."cardcodes" VALUES (1514, '江苏省', '泰州市', '海陵区', '321202'); +INSERT INTO "public"."cardcodes" VALUES (1515, '江苏省', '泰州市', '高港区', '321203'); +INSERT INTO "public"."cardcodes" VALUES (1516, '江苏省', '泰州市', '兴化市', '321281'); +INSERT INTO "public"."cardcodes" VALUES (1517, '江苏省', '泰州市', '靖江市', '321282'); +INSERT INTO "public"."cardcodes" VALUES (1518, '江苏省', '泰州市', '泰兴市', '321283'); +INSERT INTO "public"."cardcodes" VALUES (1519, '江苏省', '泰州市', '姜堰市', '321284'); +INSERT INTO "public"."cardcodes" VALUES (1520, '江苏省', '宿迁市', '市辖区', '321301'); +INSERT INTO "public"."cardcodes" VALUES (1521, '江苏省', '宿迁市', '宿城区', '321302'); +INSERT INTO "public"."cardcodes" VALUES (1522, '江苏省', '宿迁市', '宿豫区', '321311'); +INSERT INTO "public"."cardcodes" VALUES (1523, '江苏省', '宿迁市', '宿豫县', '321321'); +INSERT INTO "public"."cardcodes" VALUES (1524, '江苏省', '宿迁市', '沭阳县', '321322'); +INSERT INTO "public"."cardcodes" VALUES (1525, '江苏省', '宿迁市', '泗阳县', '321323'); +INSERT INTO "public"."cardcodes" VALUES (1526, '江苏省', '宿迁市', '泗洪县', '321324'); +INSERT INTO "public"."cardcodes" VALUES (1527, '浙江省', '杭州市', '市辖区', '330101'); +INSERT INTO "public"."cardcodes" VALUES (1528, '浙江省', '杭州市', '上城区', '330102'); +INSERT INTO "public"."cardcodes" VALUES (1529, '浙江省', '杭州市', '下城区', '330103'); +INSERT INTO "public"."cardcodes" VALUES (1530, '浙江省', '杭州市', '江干区', '330104'); +INSERT INTO "public"."cardcodes" VALUES (1531, '浙江省', '杭州市', '拱墅区', '330105'); +INSERT INTO "public"."cardcodes" VALUES (1532, '浙江省', '杭州市', '西湖区', '330106'); +INSERT INTO "public"."cardcodes" VALUES (1533, '浙江省', '杭州市', '滨江区', '330107'); +INSERT INTO "public"."cardcodes" VALUES (1534, '浙江省', '杭州市', '滨江区', '330108'); +INSERT INTO "public"."cardcodes" VALUES (1535, '浙江省', '杭州市', '萧山区', '330109'); +INSERT INTO "public"."cardcodes" VALUES (1536, '浙江省', '杭州市', '余杭区', '330110'); +INSERT INTO "public"."cardcodes" VALUES (1537, '浙江省', '杭州市', '市区', '330120'); +INSERT INTO "public"."cardcodes" VALUES (1538, '浙江省', '杭州市', '萧山县', '330121'); +INSERT INTO "public"."cardcodes" VALUES (1539, '浙江省', '杭州市', '桐庐县', '330122'); +INSERT INTO "public"."cardcodes" VALUES (1540, '浙江省', '杭州市', '富阳县', '330123'); +INSERT INTO "public"."cardcodes" VALUES (1541, '浙江省', '杭州市', '临安县', '330124'); +INSERT INTO "public"."cardcodes" VALUES (1542, '浙江省', '杭州市', '余杭县', '330125'); +INSERT INTO "public"."cardcodes" VALUES (1543, '浙江省', '杭州市', '建德县', '330126'); +INSERT INTO "public"."cardcodes" VALUES (1544, '浙江省', '杭州市', '淳安县', '330127'); +INSERT INTO "public"."cardcodes" VALUES (1545, '浙江省', '杭州市', '萧山市', '330181'); +INSERT INTO "public"."cardcodes" VALUES (1546, '浙江省', '杭州市', '建德市', '330182'); +INSERT INTO "public"."cardcodes" VALUES (1547, '浙江省', '杭州市', '富阳市', '330183'); +INSERT INTO "public"."cardcodes" VALUES (1548, '浙江省', '杭州市', '余杭市', '330184'); +INSERT INTO "public"."cardcodes" VALUES (1549, '浙江省', '杭州市', '临安市', '330185'); +INSERT INTO "public"."cardcodes" VALUES (1550, '浙江省', '台州市', '椒江区', '331002'); +INSERT INTO "public"."cardcodes" VALUES (1551, '浙江省', '台州市', '黄岩区', '331003'); +INSERT INTO "public"."cardcodes" VALUES (1552, '浙江省', '台州市', '路桥区', '331004'); +INSERT INTO "public"."cardcodes" VALUES (1553, '浙江省', '台州市', '玉环县', '331021'); +INSERT INTO "public"."cardcodes" VALUES (1554, '浙江省', '台州市', '三门县', '331022'); +INSERT INTO "public"."cardcodes" VALUES (1555, '浙江省', '台州市', '天台县', '331023'); +INSERT INTO "public"."cardcodes" VALUES (1556, '浙江省', '台州市', '仙居县', '331024'); +INSERT INTO "public"."cardcodes" VALUES (1557, '浙江省', '台州市', '温岭市', '331081'); +INSERT INTO "public"."cardcodes" VALUES (1558, '浙江省', '台州市', '临海市', '331082'); +INSERT INTO "public"."cardcodes" VALUES (1559, '浙江省', '台州市', '市辖区', '331001'); +INSERT INTO "public"."cardcodes" VALUES (1560, '浙江省', '丽水市', '市辖区', '331101'); +INSERT INTO "public"."cardcodes" VALUES (1561, '浙江省', '丽水市', '莲都区', '331102'); +INSERT INTO "public"."cardcodes" VALUES (1562, '浙江省', '丽水市', '青田县', '331121'); +INSERT INTO "public"."cardcodes" VALUES (1563, '浙江省', '丽水市', '缙云县', '331122'); +INSERT INTO "public"."cardcodes" VALUES (1564, '浙江省', '丽水市', '遂昌县', '331123'); +INSERT INTO "public"."cardcodes" VALUES (1565, '浙江省', '丽水市', '松阳县', '331124'); +INSERT INTO "public"."cardcodes" VALUES (1566, '浙江省', '丽水市', '云和县', '331125'); +INSERT INTO "public"."cardcodes" VALUES (1567, '浙江省', '丽水市', '庆元县', '331126'); +INSERT INTO "public"."cardcodes" VALUES (1568, '浙江省', '丽水市', '景宁畲族自治县', '331127'); +INSERT INTO "public"."cardcodes" VALUES (1569, '浙江省', '丽水市', '龙泉市', '331181'); +INSERT INTO "public"."cardcodes" VALUES (1570, '浙江省', '丽水地区', '丽水市', '332501'); +INSERT INTO "public"."cardcodes" VALUES (1571, '浙江省', '丽水地区', '龙泉市', '332502'); +INSERT INTO "public"."cardcodes" VALUES (1572, '浙江省', '丽水地区', '丽水县', '332521'); +INSERT INTO "public"."cardcodes" VALUES (1573, '浙江省', '丽水地区', '青田县', '332522'); +INSERT INTO "public"."cardcodes" VALUES (1574, '浙江省', '丽水地区', '云和县', '332523'); +INSERT INTO "public"."cardcodes" VALUES (1575, '浙江省', '丽水地区', '龙泉县', '332524'); +INSERT INTO "public"."cardcodes" VALUES (1576, '浙江省', '丽水地区', '庆元县', '332525'); +INSERT INTO "public"."cardcodes" VALUES (1577, '浙江省', '丽水地区', '缙云县', '332526'); +INSERT INTO "public"."cardcodes" VALUES (1578, '浙江省', '丽水地区', '遂昌县', '332527'); +INSERT INTO "public"."cardcodes" VALUES (1579, '浙江省', '丽水地区', '松阳县', '332528'); +INSERT INTO "public"."cardcodes" VALUES (1580, '浙江省', '丽水地区', '景宁畲族自治县', '332529'); +INSERT INTO "public"."cardcodes" VALUES (1581, '浙江省', '台州地区', '椒江市', '332601'); +INSERT INTO "public"."cardcodes" VALUES (1582, '浙江省', '台州地区', '临海市', '332602'); +INSERT INTO "public"."cardcodes" VALUES (1583, '浙江省', '台州地区', '黄岩市', '332603'); +INSERT INTO "public"."cardcodes" VALUES (1584, '浙江省', '台州地区', '临海县', '332621'); +INSERT INTO "public"."cardcodes" VALUES (1585, '浙江省', '台州地区', '黄岩县', '332622'); +INSERT INTO "public"."cardcodes" VALUES (1586, '浙江省', '台州地区', '温岭县', '332623'); +INSERT INTO "public"."cardcodes" VALUES (1587, '浙江省', '台州地区', '仙居县', '332624'); +INSERT INTO "public"."cardcodes" VALUES (1588, '浙江省', '台州地区', '天台县', '332625'); +INSERT INTO "public"."cardcodes" VALUES (1589, '浙江省', '台州地区', '三门县', '332626'); +INSERT INTO "public"."cardcodes" VALUES (1590, '浙江省', '台州地区', '玉环县', '332627'); +INSERT INTO "public"."cardcodes" VALUES (1591, '浙江省', '舟山地区', '定海县', '332721'); +INSERT INTO "public"."cardcodes" VALUES (1592, '浙江省', '舟山地区', '普陀县', '332722'); +INSERT INTO "public"."cardcodes" VALUES (1593, '浙江省', '舟山地区', '岱山县', '332723'); +INSERT INTO "public"."cardcodes" VALUES (1594, '浙江省', '舟山地区', '嵊泗县', '332724'); +INSERT INTO "public"."cardcodes" VALUES (1595, '浙江省', '宁波市', '市辖区', '330201'); +INSERT INTO "public"."cardcodes" VALUES (1596, '浙江省', '宁波市', '镇明区', '330202'); +INSERT INTO "public"."cardcodes" VALUES (1597, '浙江省', '宁波市', '海曙区', '330203'); +INSERT INTO "public"."cardcodes" VALUES (1598, '浙江省', '宁波市', '江东区', '330204'); +INSERT INTO "public"."cardcodes" VALUES (1599, '浙江省', '宁波市', '江北区', '330205'); +INSERT INTO "public"."cardcodes" VALUES (1600, '浙江省', '宁波市', '北仑区', '330206'); +INSERT INTO "public"."cardcodes" VALUES (1601, '浙江省', '宁波市', '鄞州区', '330207'); +INSERT INTO "public"."cardcodes" VALUES (1602, '浙江省', '宁波市', '镇海区', '330211'); +INSERT INTO "public"."cardcodes" VALUES (1603, '浙江省', '宁波市', '鄞州区', '330212'); +INSERT INTO "public"."cardcodes" VALUES (1604, '浙江省', '宁波市', '余姚市', '330219'); +INSERT INTO "public"."cardcodes" VALUES (1605, '浙江省', '宁波市', '镇海县', '330221'); +INSERT INTO "public"."cardcodes" VALUES (1606, '浙江省', '宁波市', '慈溪县', '330222'); +INSERT INTO "public"."cardcodes" VALUES (1607, '浙江省', '宁波市', '余姚县', '330223'); +INSERT INTO "public"."cardcodes" VALUES (1608, '浙江省', '宁波市', '奉化县', '330224'); +INSERT INTO "public"."cardcodes" VALUES (1609, '浙江省', '宁波市', '象山县', '330225'); +INSERT INTO "public"."cardcodes" VALUES (1610, '浙江省', '宁波市', '宁海县', '330226'); +INSERT INTO "public"."cardcodes" VALUES (1611, '浙江省', '宁波市', '鄞县', '330227'); +INSERT INTO "public"."cardcodes" VALUES (1612, '浙江省', '宁波市', '余姚市', '330281'); +INSERT INTO "public"."cardcodes" VALUES (1613, '浙江省', '宁波市', '慈溪市', '330282'); +INSERT INTO "public"."cardcodes" VALUES (1614, '浙江省', '宁波市', '奉化市', '330283'); +INSERT INTO "public"."cardcodes" VALUES (1615, '浙江省', '温州市', '市辖区', '330301'); +INSERT INTO "public"."cardcodes" VALUES (1616, '浙江省', '温州市', '鹿城区', '330302'); +INSERT INTO "public"."cardcodes" VALUES (1617, '浙江省', '温州市', '龙湾区', '330303'); +INSERT INTO "public"."cardcodes" VALUES (1618, '浙江省', '温州市', '瓯海区', '330304'); +INSERT INTO "public"."cardcodes" VALUES (1619, '浙江省', '温州市', '瓯海县', '330321'); +INSERT INTO "public"."cardcodes" VALUES (1620, '浙江省', '温州市', '洞头县', '330322'); +INSERT INTO "public"."cardcodes" VALUES (1621, '浙江省', '温州市', '乐清县', '330323'); +INSERT INTO "public"."cardcodes" VALUES (1622, '浙江省', '温州市', '永嘉县', '330324'); +INSERT INTO "public"."cardcodes" VALUES (1623, '浙江省', '温州市', '瑞安县', '330325'); +INSERT INTO "public"."cardcodes" VALUES (1624, '浙江省', '温州市', '平阳县', '330326'); +INSERT INTO "public"."cardcodes" VALUES (1625, '浙江省', '温州市', '苍南县', '330327'); +INSERT INTO "public"."cardcodes" VALUES (1626, '浙江省', '温州市', '文成县', '330328'); +INSERT INTO "public"."cardcodes" VALUES (1627, '浙江省', '温州市', '泰顺县', '330329'); +INSERT INTO "public"."cardcodes" VALUES (1628, '浙江省', '温州市', '瑞安市', '330381'); +INSERT INTO "public"."cardcodes" VALUES (1629, '浙江省', '温州市', '乐清市', '330382'); +INSERT INTO "public"."cardcodes" VALUES (1630, '浙江省', '嘉兴市', '市辖区', '330401'); +INSERT INTO "public"."cardcodes" VALUES (1631, '浙江省', '嘉兴市', '秀城区', '330402'); +INSERT INTO "public"."cardcodes" VALUES (1632, '浙江省', '嘉兴市', '郊区', '330411'); +INSERT INTO "public"."cardcodes" VALUES (1633, '浙江省', '嘉兴市', '海宁市', '330419'); +INSERT INTO "public"."cardcodes" VALUES (1634, '浙江省', '嘉兴市', '嘉善县', '330421'); +INSERT INTO "public"."cardcodes" VALUES (1635, '浙江省', '嘉兴市', '平湖县', '330422'); +INSERT INTO "public"."cardcodes" VALUES (1636, '浙江省', '嘉兴市', '海宁县', '330423'); +INSERT INTO "public"."cardcodes" VALUES (1637, '浙江省', '嘉兴市', '海盐县', '330424'); +INSERT INTO "public"."cardcodes" VALUES (1638, '浙江省', '嘉兴市', '桐乡县', '330425'); +INSERT INTO "public"."cardcodes" VALUES (1639, '浙江省', '嘉兴市', '海宁市', '330481'); +INSERT INTO "public"."cardcodes" VALUES (1640, '浙江省', '嘉兴市', '平湖市', '330482'); +INSERT INTO "public"."cardcodes" VALUES (1641, '浙江省', '嘉兴市', '桐乡市', '330483'); +INSERT INTO "public"."cardcodes" VALUES (1642, '浙江省', '湖州市', '市辖区', '330501'); +INSERT INTO "public"."cardcodes" VALUES (1643, '浙江省', '湖州市', '吴兴区', '330502'); +INSERT INTO "public"."cardcodes" VALUES (1644, '浙江省', '湖州市', '南浔区', '330503'); +INSERT INTO "public"."cardcodes" VALUES (1645, '浙江省', '湖州市', '郊区', '330511'); +INSERT INTO "public"."cardcodes" VALUES (1646, '浙江省', '湖州市', '德清县', '330521'); +INSERT INTO "public"."cardcodes" VALUES (1647, '浙江省', '湖州市', '长兴县', '330522'); +INSERT INTO "public"."cardcodes" VALUES (1648, '浙江省', '湖州市', '安吉县', '330523'); +INSERT INTO "public"."cardcodes" VALUES (1649, '浙江省', '绍兴市', '市辖区', '330601'); +INSERT INTO "public"."cardcodes" VALUES (1650, '浙江省', '绍兴市', '越城区', '330602'); +INSERT INTO "public"."cardcodes" VALUES (1651, '浙江省', '绍兴市', '绍兴县', '330621'); +INSERT INTO "public"."cardcodes" VALUES (1652, '浙江省', '绍兴市', '上虞县', '330622'); +INSERT INTO "public"."cardcodes" VALUES (1653, '浙江省', '绍兴市', '嵊县', '330623'); +INSERT INTO "public"."cardcodes" VALUES (1654, '浙江省', '绍兴市', '新昌县', '330624'); +INSERT INTO "public"."cardcodes" VALUES (1655, '浙江省', '绍兴市', '诸暨县', '330625'); +INSERT INTO "public"."cardcodes" VALUES (1656, '浙江省', '绍兴市', '诸暨市', '330681'); +INSERT INTO "public"."cardcodes" VALUES (1657, '浙江省', '绍兴市', '上虞市', '330682'); +INSERT INTO "public"."cardcodes" VALUES (1658, '浙江省', '绍兴市', '嵊州市', '330683'); +INSERT INTO "public"."cardcodes" VALUES (1659, '浙江省', '金华市', '市辖区', '330701'); +INSERT INTO "public"."cardcodes" VALUES (1660, '浙江省', '金华市', '婺城区', '330702'); +INSERT INTO "public"."cardcodes" VALUES (1661, '浙江省', '金华市', '金东区', '330703'); +INSERT INTO "public"."cardcodes" VALUES (1662, '浙江省', '金华市', '兰溪市', '330719'); +INSERT INTO "public"."cardcodes" VALUES (1663, '浙江省', '金华市', '金华县', '330721'); +INSERT INTO "public"."cardcodes" VALUES (1664, '浙江省', '金华市', '永康县', '330722'); +INSERT INTO "public"."cardcodes" VALUES (1665, '浙江省', '金华市', '武义县', '330723'); +INSERT INTO "public"."cardcodes" VALUES (1666, '浙江省', '金华市', '东阳县', '330724'); +INSERT INTO "public"."cardcodes" VALUES (1667, '浙江省', '金华市', '义乌县', '330725'); +INSERT INTO "public"."cardcodes" VALUES (1668, '浙江省', '金华市', '浦江县', '330726'); +INSERT INTO "public"."cardcodes" VALUES (1669, '浙江省', '金华市', '磐安县', '330727'); +INSERT INTO "public"."cardcodes" VALUES (1670, '浙江省', '金华市', '兰溪市', '330781'); +INSERT INTO "public"."cardcodes" VALUES (1671, '浙江省', '金华市', '义乌市', '330782'); +INSERT INTO "public"."cardcodes" VALUES (1672, '浙江省', '金华市', '东阳市', '330783'); +INSERT INTO "public"."cardcodes" VALUES (1673, '浙江省', '金华市', '永康市', '330784'); +INSERT INTO "public"."cardcodes" VALUES (1674, '浙江省', '衢州市', '市辖区', '330801'); +INSERT INTO "public"."cardcodes" VALUES (1675, '浙江省', '衢州市', '柯城区', '330802'); +INSERT INTO "public"."cardcodes" VALUES (1676, '浙江省', '衢州市', '衢江区', '330803'); +INSERT INTO "public"."cardcodes" VALUES (1677, '浙江省', '衢州市', '衢县', '330821'); +INSERT INTO "public"."cardcodes" VALUES (1678, '浙江省', '衢州市', '常山县', '330822'); +INSERT INTO "public"."cardcodes" VALUES (1679, '浙江省', '衢州市', '江山县', '330823'); +INSERT INTO "public"."cardcodes" VALUES (1680, '浙江省', '衢州市', '开化县', '330824'); +INSERT INTO "public"."cardcodes" VALUES (1681, '浙江省', '衢州市', '龙游县', '330825'); +INSERT INTO "public"."cardcodes" VALUES (1682, '浙江省', '衢州市', '江山市', '330881'); +INSERT INTO "public"."cardcodes" VALUES (1683, '浙江省', '舟山市', '市辖区', '330901'); +INSERT INTO "public"."cardcodes" VALUES (1684, '浙江省', '舟山市', '定海区', '330902'); +INSERT INTO "public"."cardcodes" VALUES (1685, '浙江省', '舟山市', '普陀区', '330903'); +INSERT INTO "public"."cardcodes" VALUES (1686, '浙江省', '舟山市', '岱山县', '330921'); +INSERT INTO "public"."cardcodes" VALUES (1687, '浙江省', '舟山市', '嵊泗县', '330922'); +INSERT INTO "public"."cardcodes" VALUES (1688, '浙江省', NULL, '余姚市', '339001'); +INSERT INTO "public"."cardcodes" VALUES (1689, '浙江省', NULL, '海宁市', '339002'); +INSERT INTO "public"."cardcodes" VALUES (1690, '浙江省', NULL, '兰溪市', '339003'); +INSERT INTO "public"."cardcodes" VALUES (1691, '浙江省', NULL, '瑞安市', '339004'); +INSERT INTO "public"."cardcodes" VALUES (1692, '浙江省', NULL, '萧山市', '339005'); +INSERT INTO "public"."cardcodes" VALUES (1693, '浙江省', NULL, '江山市', '339006'); +INSERT INTO "public"."cardcodes" VALUES (1694, '浙江省', NULL, '义乌市', '339007'); +INSERT INTO "public"."cardcodes" VALUES (1695, '浙江省', NULL, '东阳市', '339008'); +INSERT INTO "public"."cardcodes" VALUES (1696, '浙江省', NULL, '慈溪市', '339009'); +INSERT INTO "public"."cardcodes" VALUES (1697, '浙江省', NULL, '奉化市', '339010'); +INSERT INTO "public"."cardcodes" VALUES (1698, '浙江省', NULL, '诸暨市', '339011'); +INSERT INTO "public"."cardcodes" VALUES (1699, '安徽省', '阜阳市', '临泉县', '341221'); +INSERT INTO "public"."cardcodes" VALUES (1700, '安徽省', '阜阳市', '太和县', '341222'); +INSERT INTO "public"."cardcodes" VALUES (1701, '安徽省', '阜阳市', '涡阳县', '341223'); +INSERT INTO "public"."cardcodes" VALUES (1702, '安徽省', '阜阳市', '蒙城县', '341224'); +INSERT INTO "public"."cardcodes" VALUES (1703, '安徽省', '阜阳市', '阜南县', '341225'); +INSERT INTO "public"."cardcodes" VALUES (1704, '安徽省', '阜阳市', '颍上县', '341226'); +INSERT INTO "public"."cardcodes" VALUES (1705, '安徽省', '阜阳市', '利辛县', '341227'); +INSERT INTO "public"."cardcodes" VALUES (1706, '安徽省', '阜阳市', '亳州市', '341281'); +INSERT INTO "public"."cardcodes" VALUES (1707, '安徽省', '阜阳市', '界首市', '341282'); +INSERT INTO "public"."cardcodes" VALUES (1708, '安徽省', '阜阳市', '市辖区', '341201'); +INSERT INTO "public"."cardcodes" VALUES (1709, '安徽省', '阜阳市', '颍州区', '341202'); +INSERT INTO "public"."cardcodes" VALUES (1710, '安徽省', '阜阳市', '颍东区', '341203'); +INSERT INTO "public"."cardcodes" VALUES (1711, '安徽省', '阜阳市', '颍泉区', '341204'); +INSERT INTO "public"."cardcodes" VALUES (1712, '安徽省', '宿州市', '市辖区', '341301'); +INSERT INTO "public"."cardcodes" VALUES (1713, '安徽省', '宿州市', '墉桥区', '341302'); +INSERT INTO "public"."cardcodes" VALUES (1714, '安徽省', '宿州市', '砀山县', '341321'); +INSERT INTO "public"."cardcodes" VALUES (1715, '安徽省', '宿州市', '萧县', '341322'); +INSERT INTO "public"."cardcodes" VALUES (1716, '安徽省', '宿州市', '灵璧县', '341323'); +INSERT INTO "public"."cardcodes" VALUES (1717, '安徽省', '宿州市', '泗县', '341324'); +INSERT INTO "public"."cardcodes" VALUES (1718, '安徽省', '巢湖市', '市辖区', '341401'); +INSERT INTO "public"."cardcodes" VALUES (1719, '安徽省', '巢湖市', '居巢区', '341402'); +INSERT INTO "public"."cardcodes" VALUES (1720, '安徽省', '巢湖市', '庐江县', '341421'); +INSERT INTO "public"."cardcodes" VALUES (1721, '安徽省', '巢湖市', '无为县', '341422'); +INSERT INTO "public"."cardcodes" VALUES (1722, '安徽省', '巢湖市', '含山县', '341423'); +INSERT INTO "public"."cardcodes" VALUES (1723, '安徽省', '巢湖市', '和县', '341424'); +INSERT INTO "public"."cardcodes" VALUES (1724, '安徽省', '六安市', '市辖区', '341501'); +INSERT INTO "public"."cardcodes" VALUES (1725, '安徽省', '六安市', '金安区', '341502'); +INSERT INTO "public"."cardcodes" VALUES (1726, '安徽省', '六安市', '裕安区', '341503'); +INSERT INTO "public"."cardcodes" VALUES (1727, '安徽省', '六安市', '寿县', '341521'); +INSERT INTO "public"."cardcodes" VALUES (1728, '安徽省', '六安市', '霍邱县', '341522'); +INSERT INTO "public"."cardcodes" VALUES (1729, '安徽省', '六安市', '舒城县', '341523'); +INSERT INTO "public"."cardcodes" VALUES (1730, '安徽省', '六安市', '金寨县', '341524'); +INSERT INTO "public"."cardcodes" VALUES (1731, '安徽省', '六安市', '霍山县', '341525'); +INSERT INTO "public"."cardcodes" VALUES (1732, '安徽省', '亳州市', '市辖区', '341601'); +INSERT INTO "public"."cardcodes" VALUES (1733, '安徽省', '亳州市', '谯城区', '341602'); +INSERT INTO "public"."cardcodes" VALUES (1734, '安徽省', '亳州市', '涡阳县', '341621'); +INSERT INTO "public"."cardcodes" VALUES (1735, '安徽省', '亳州市', '蒙城县', '341622'); +INSERT INTO "public"."cardcodes" VALUES (1736, '安徽省', '亳州市', '利辛县', '341623'); +INSERT INTO "public"."cardcodes" VALUES (1737, '安徽省', '池州市', '市辖区', '341701'); +INSERT INTO "public"."cardcodes" VALUES (1738, '安徽省', '池州市', '贵池区', '341702'); +INSERT INTO "public"."cardcodes" VALUES (1739, '安徽省', '池州市', '东至县', '341721'); +INSERT INTO "public"."cardcodes" VALUES (1740, '安徽省', '池州市', '石台县', '341722'); +INSERT INTO "public"."cardcodes" VALUES (1741, '安徽省', '池州市', '青阳县', '341723'); +INSERT INTO "public"."cardcodes" VALUES (1742, '安徽省', '宣城市', '市辖区', '341801'); +INSERT INTO "public"."cardcodes" VALUES (1743, '安徽省', '宣城市', '宣州区', '341802'); +INSERT INTO "public"."cardcodes" VALUES (1744, '安徽省', '宣城市', '郎溪县', '341821'); +INSERT INTO "public"."cardcodes" VALUES (1745, '安徽省', '宣城市', '广德县', '341822'); +INSERT INTO "public"."cardcodes" VALUES (1746, '安徽省', '宣城市', '泾县', '341823'); +INSERT INTO "public"."cardcodes" VALUES (1747, '安徽省', '宣城市', '绩溪县', '341824'); +INSERT INTO "public"."cardcodes" VALUES (1748, '安徽省', '宣城市', '旌德县', '341825'); +INSERT INTO "public"."cardcodes" VALUES (1749, '安徽省', '宣城市', '宁国市', '341881'); +INSERT INTO "public"."cardcodes" VALUES (1750, '安徽省', '阜阳地区', '阜阳市', '342101'); +INSERT INTO "public"."cardcodes" VALUES (1751, '安徽省', '阜阳地区', '阜阳县', '342121'); +INSERT INTO "public"."cardcodes" VALUES (1752, '安徽省', '阜阳地区', '临泉县', '342122'); +INSERT INTO "public"."cardcodes" VALUES (1753, '安徽省', '阜阳地区', '太和县', '342123'); +INSERT INTO "public"."cardcodes" VALUES (1754, '安徽省', '阜阳地区', '涡阳县', '342124'); +INSERT INTO "public"."cardcodes" VALUES (1755, '安徽省', '阜阳地区', '蒙城县', '342125'); +INSERT INTO "public"."cardcodes" VALUES (1756, '安徽省', '阜阳地区', '亳县', '342126'); +INSERT INTO "public"."cardcodes" VALUES (1757, '安徽省', '阜阳地区', '阜南县', '342127'); +INSERT INTO "public"."cardcodes" VALUES (1758, '安徽省', '阜阳地区', '颍上县', '342128'); +INSERT INTO "public"."cardcodes" VALUES (1759, '安徽省', '阜阳地区', '界首县', '342129'); +INSERT INTO "public"."cardcodes" VALUES (1760, '安徽省', '阜阳地区', '利辛县', '342130'); +INSERT INTO "public"."cardcodes" VALUES (1761, '安徽省', '宿县地区', '宿州市', '342201'); +INSERT INTO "public"."cardcodes" VALUES (1762, '安徽省', '宿县地区', '砀山县', '342221'); +INSERT INTO "public"."cardcodes" VALUES (1763, '安徽省', '宿县地区', '萧县', '342222'); +INSERT INTO "public"."cardcodes" VALUES (1764, '安徽省', '宿县地区', '宿县', '342223'); +INSERT INTO "public"."cardcodes" VALUES (1765, '安徽省', '宿县地区', '灵璧县', '342224'); +INSERT INTO "public"."cardcodes" VALUES (1766, '安徽省', '宿县地区', '泗县', '342225'); +INSERT INTO "public"."cardcodes" VALUES (1767, '安徽省', '宿县地区', '怀远县', '342226'); +INSERT INTO "public"."cardcodes" VALUES (1768, '安徽省', '宿县地区', '五河县', '342227'); +INSERT INTO "public"."cardcodes" VALUES (1769, '安徽省', '宿县地区', '固镇县', '342228'); +INSERT INTO "public"."cardcodes" VALUES (1770, '安徽省', '滁县地区', '滁州市', '342301'); +INSERT INTO "public"."cardcodes" VALUES (1771, '安徽省', '滁县地区', '天长县', '342321'); +INSERT INTO "public"."cardcodes" VALUES (1772, '安徽省', '滁县地区', '来安县', '342322'); +INSERT INTO "public"."cardcodes" VALUES (1773, '安徽省', '滁县地区', '滁县', '342323'); +INSERT INTO "public"."cardcodes" VALUES (1774, '安徽省', '滁县地区', '全椒县', '342324'); +INSERT INTO "public"."cardcodes" VALUES (1775, '安徽省', '滁县地区', '定远县', '342325'); +INSERT INTO "public"."cardcodes" VALUES (1776, '安徽省', '滁县地区', '凤阳县', '342326'); +INSERT INTO "public"."cardcodes" VALUES (1777, '安徽省', '滁县地区', '嘉山县', '342327'); +INSERT INTO "public"."cardcodes" VALUES (1778, '安徽省', '六安地区', '六安市', '342401'); +INSERT INTO "public"."cardcodes" VALUES (1779, '安徽省', '六安地区', '六安县', '342421'); +INSERT INTO "public"."cardcodes" VALUES (1780, '安徽省', '六安地区', '寿县', '342422'); +INSERT INTO "public"."cardcodes" VALUES (1781, '安徽省', '六安地区', '霍邱县', '342423'); +INSERT INTO "public"."cardcodes" VALUES (1782, '安徽省', '六安地区', '肥西县', '342424'); +INSERT INTO "public"."cardcodes" VALUES (1783, '安徽省', '六安地区', '舒城县', '342425'); +INSERT INTO "public"."cardcodes" VALUES (1784, '安徽省', '六安地区', '金寨县', '342426'); +INSERT INTO "public"."cardcodes" VALUES (1785, '安徽省', '六安地区', '霍山县', '342427'); +INSERT INTO "public"."cardcodes" VALUES (1786, '安徽省', '宣城地区', '宣州市', '342501'); +INSERT INTO "public"."cardcodes" VALUES (1787, '安徽省', '宣城地区', '宁国市', '342502'); +INSERT INTO "public"."cardcodes" VALUES (1788, '安徽省', '宣城地区', '宣州县', '342521'); +INSERT INTO "public"."cardcodes" VALUES (1789, '安徽省', '宣城地区', '郎溪县', '342522'); +INSERT INTO "public"."cardcodes" VALUES (1790, '安徽省', '宣城地区', '广德县', '342523'); +INSERT INTO "public"."cardcodes" VALUES (1791, '安徽省', '宣城地区', '宁国县', '342524'); +INSERT INTO "public"."cardcodes" VALUES (1792, '安徽省', '宣城地区', '当涂县', '342525'); +INSERT INTO "public"."cardcodes" VALUES (1793, '安徽省', '宣城地区', '繁昌县', '342526'); +INSERT INTO "public"."cardcodes" VALUES (1794, '安徽省', '宣城地区', '南陵县', '342527'); +INSERT INTO "public"."cardcodes" VALUES (1795, '安徽省', '宣城地区', '青阳县', '342528'); +INSERT INTO "public"."cardcodes" VALUES (1796, '安徽省', '宣城地区', '泾县', '342529'); +INSERT INTO "public"."cardcodes" VALUES (1797, '安徽省', '宣城地区', '旌德县', '342530'); +INSERT INTO "public"."cardcodes" VALUES (1798, '安徽省', '宣城地区', '绩溪县', '342531'); +INSERT INTO "public"."cardcodes" VALUES (1799, '安徽省', '巢湖地区', '巢湖市', '342601'); +INSERT INTO "public"."cardcodes" VALUES (1800, '安徽省', '巢湖地区', '肥东县', '342621'); +INSERT INTO "public"."cardcodes" VALUES (1801, '安徽省', '巢湖地区', '庐江县', '342622'); +INSERT INTO "public"."cardcodes" VALUES (1802, '安徽省', '巢湖地区', '无为县', '342623'); +INSERT INTO "public"."cardcodes" VALUES (1803, '安徽省', '巢湖地区', '巢县', '342624'); +INSERT INTO "public"."cardcodes" VALUES (1804, '安徽省', '巢湖地区', '含山县', '342625'); +INSERT INTO "public"."cardcodes" VALUES (1805, '安徽省', '巢湖地区', '和县', '342626'); +INSERT INTO "public"."cardcodes" VALUES (1806, '安徽省', '徽州地区', '屯溪市', '342701'); +INSERT INTO "public"."cardcodes" VALUES (1807, '安徽省', '徽州地区', '绩溪县', '342721'); +INSERT INTO "public"."cardcodes" VALUES (1808, '安徽省', '徽州地区', '旌德县', '342722'); +INSERT INTO "public"."cardcodes" VALUES (1809, '安徽省', '徽州地区', '歙县', '342723'); +INSERT INTO "public"."cardcodes" VALUES (1810, '安徽省', '徽州地区', '休宁县', '342724'); +INSERT INTO "public"."cardcodes" VALUES (1811, '安徽省', '徽州地区', '黟县', '342725'); +INSERT INTO "public"."cardcodes" VALUES (1812, '安徽省', '徽州地区', '祁门县', '342726'); +INSERT INTO "public"."cardcodes" VALUES (1813, '安徽省', '徽州地区', '太平县', '342727'); +INSERT INTO "public"."cardcodes" VALUES (1814, '安徽省', '徽州地区', '石台县', '342728'); +INSERT INTO "public"."cardcodes" VALUES (1815, '安徽省', '安庆地区', '怀宁县', '342821'); +INSERT INTO "public"."cardcodes" VALUES (1816, '安徽省', '安庆地区', '桐城县', '342822'); +INSERT INTO "public"."cardcodes" VALUES (1817, '安徽省', '安庆地区', '枞阳县', '342823'); +INSERT INTO "public"."cardcodes" VALUES (1818, '安徽省', '安庆地区', '潜山县', '342824'); +INSERT INTO "public"."cardcodes" VALUES (1819, '安徽省', '安庆地区', '太湖县', '342825'); +INSERT INTO "public"."cardcodes" VALUES (1820, '安徽省', '安庆地区', '宿松县', '342826'); +INSERT INTO "public"."cardcodes" VALUES (1821, '安徽省', '安庆地区', '望江县', '342827'); +INSERT INTO "public"."cardcodes" VALUES (1822, '安徽省', '安庆地区', '岳西县', '342828'); +INSERT INTO "public"."cardcodes" VALUES (1823, '安徽省', '安庆地区', '东至县', '342829'); +INSERT INTO "public"."cardcodes" VALUES (1824, '安徽省', '安庆地区', '贵池县', '342830'); +INSERT INTO "public"."cardcodes" VALUES (1825, '安徽省', '池州地区', '贵池市', '342901'); +INSERT INTO "public"."cardcodes" VALUES (1826, '安徽省', '池州地区', '东至县', '342921'); +INSERT INTO "public"."cardcodes" VALUES (1827, '安徽省', '池州地区', '石台县', '342922'); +INSERT INTO "public"."cardcodes" VALUES (1828, '安徽省', '池州地区', '青阳县', '342923'); +INSERT INTO "public"."cardcodes" VALUES (1829, '安徽省', '合肥市', '市辖区', '340101'); +INSERT INTO "public"."cardcodes" VALUES (1830, '安徽省', '合肥市', '瑶海区', '340102'); +INSERT INTO "public"."cardcodes" VALUES (1831, '安徽省', '合肥市', '庐阳区', '340103'); +INSERT INTO "public"."cardcodes" VALUES (1832, '安徽省', '合肥市', '蜀山区', '340104'); +INSERT INTO "public"."cardcodes" VALUES (1833, '安徽省', '合肥市', '包河区', '340111'); +INSERT INTO "public"."cardcodes" VALUES (1834, '安徽省', '合肥市', '长丰县', '340121'); +INSERT INTO "public"."cardcodes" VALUES (1835, '安徽省', '合肥市', '肥西县', '340122'); +INSERT INTO "public"."cardcodes" VALUES (1836, '安徽省', '合肥市', '肥东县', '340123'); +INSERT INTO "public"."cardcodes" VALUES (1837, '安徽省', '芜湖市', '市辖区', '340201'); +INSERT INTO "public"."cardcodes" VALUES (1838, '安徽省', '芜湖市', '镜湖区', '340202'); +INSERT INTO "public"."cardcodes" VALUES (1839, '安徽省', '芜湖市', '弋江区', '340203'); +INSERT INTO "public"."cardcodes" VALUES (1840, '安徽省', '芜湖市', '新芜区', '340204'); +INSERT INTO "public"."cardcodes" VALUES (1841, '安徽省', '芜湖市', '裕溪口区', '340205'); +INSERT INTO "public"."cardcodes" VALUES (1842, '安徽省', '芜湖市', '四褐山区', '340206'); +INSERT INTO "public"."cardcodes" VALUES (1843, '安徽省', '芜湖市', '鸠江区', '340207'); +INSERT INTO "public"."cardcodes" VALUES (1844, '安徽省', '芜湖市', '三山区', '340208'); +INSERT INTO "public"."cardcodes" VALUES (1845, '安徽省', '芜湖市', '郊区', '340211'); +INSERT INTO "public"."cardcodes" VALUES (1846, '安徽省', '芜湖市', '市区', '340220'); +INSERT INTO "public"."cardcodes" VALUES (1847, '安徽省', '芜湖市', '芜湖县', '340221'); +INSERT INTO "public"."cardcodes" VALUES (1848, '安徽省', '芜湖市', '繁昌县', '340222'); +INSERT INTO "public"."cardcodes" VALUES (1849, '安徽省', '芜湖市', '南陵县', '340223'); +INSERT INTO "public"."cardcodes" VALUES (1850, '安徽省', '芜湖市', '青阳县', '340224'); +INSERT INTO "public"."cardcodes" VALUES (1851, '安徽省', '蚌埠市', '市辖区', '340301'); +INSERT INTO "public"."cardcodes" VALUES (1852, '安徽省', '蚌埠市', '龙子湖区', '340302'); +INSERT INTO "public"."cardcodes" VALUES (1853, '安徽省', '蚌埠市', '蚌山区', '340303'); +INSERT INTO "public"."cardcodes" VALUES (1854, '安徽省', '蚌埠市', '禹会区', '340304'); +INSERT INTO "public"."cardcodes" VALUES (1855, '安徽省', '蚌埠市', '淮上区', '340311'); +INSERT INTO "public"."cardcodes" VALUES (1856, '安徽省', '蚌埠市', '怀远县', '340321'); +INSERT INTO "public"."cardcodes" VALUES (1857, '安徽省', '蚌埠市', '五河县', '340322'); +INSERT INTO "public"."cardcodes" VALUES (1858, '安徽省', '蚌埠市', '固镇县', '340323'); +INSERT INTO "public"."cardcodes" VALUES (1859, '安徽省', '淮南市', '市辖区', '340401'); +INSERT INTO "public"."cardcodes" VALUES (1860, '安徽省', '淮南市', '大通区', '340402'); +INSERT INTO "public"."cardcodes" VALUES (1861, '安徽省', '淮南市', '田家庵区', '340403'); +INSERT INTO "public"."cardcodes" VALUES (1862, '安徽省', '淮南市', '谢家集区', '340404'); +INSERT INTO "public"."cardcodes" VALUES (1863, '安徽省', '淮南市', '八公山区', '340405'); +INSERT INTO "public"."cardcodes" VALUES (1864, '安徽省', '淮南市', '潘集区', '340406'); +INSERT INTO "public"."cardcodes" VALUES (1865, '安徽省', '淮南市', '凤台县', '340421'); +INSERT INTO "public"."cardcodes" VALUES (1866, '安徽省', '马鞍山市', '市辖区', '340501'); +INSERT INTO "public"."cardcodes" VALUES (1867, '安徽省', '马鞍山市', '金家庄区', '340502'); +INSERT INTO "public"."cardcodes" VALUES (1868, '安徽省', '马鞍山市', '花山区', '340503'); +INSERT INTO "public"."cardcodes" VALUES (1869, '安徽省', '马鞍山市', '雨山区', '340504'); +INSERT INTO "public"."cardcodes" VALUES (1870, '安徽省', '马鞍山市', '向山区', '340505'); +INSERT INTO "public"."cardcodes" VALUES (1871, '安徽省', '马鞍山市', '当涂县', '340521'); +INSERT INTO "public"."cardcodes" VALUES (1872, '安徽省', '淮北市', '市辖区', '340601'); +INSERT INTO "public"."cardcodes" VALUES (1873, '安徽省', '淮北市', '杜集区', '340602'); +INSERT INTO "public"."cardcodes" VALUES (1874, '安徽省', '淮北市', '相山区', '340603'); +INSERT INTO "public"."cardcodes" VALUES (1875, '安徽省', '淮北市', '烈山区', '340604'); +INSERT INTO "public"."cardcodes" VALUES (1876, '安徽省', '淮北市', '濉溪县', '340621'); +INSERT INTO "public"."cardcodes" VALUES (1877, '安徽省', '铜陵市', '市辖区', '340701'); +INSERT INTO "public"."cardcodes" VALUES (1878, '安徽省', '铜陵市', '铜官山区', '340702'); +INSERT INTO "public"."cardcodes" VALUES (1879, '安徽省', '铜陵市', '狮子山区', '340703'); +INSERT INTO "public"."cardcodes" VALUES (1880, '安徽省', '铜陵市', '郊区', '340711'); +INSERT INTO "public"."cardcodes" VALUES (1881, '安徽省', '铜陵市', '铜陵县', '340721'); +INSERT INTO "public"."cardcodes" VALUES (1882, '安徽省', '安庆市', '市辖区', '340801'); +INSERT INTO "public"."cardcodes" VALUES (1883, '安徽省', '安庆市', '迎江区', '340802'); +INSERT INTO "public"."cardcodes" VALUES (1884, '安徽省', '安庆市', '大观区', '340803'); +INSERT INTO "public"."cardcodes" VALUES (1885, '安徽省', '安庆市', '郊区', '340811'); +INSERT INTO "public"."cardcodes" VALUES (1886, '安徽省', '安庆市', '桐城县', '340821'); +INSERT INTO "public"."cardcodes" VALUES (1887, '安徽省', '安庆市', '怀宁县', '340822'); +INSERT INTO "public"."cardcodes" VALUES (1888, '安徽省', '安庆市', '枞阳县', '340823'); +INSERT INTO "public"."cardcodes" VALUES (1889, '安徽省', '安庆市', '潜山县', '340824'); +INSERT INTO "public"."cardcodes" VALUES (1890, '安徽省', '安庆市', '太湖县', '340825'); +INSERT INTO "public"."cardcodes" VALUES (1891, '安徽省', '安庆市', '宿松县', '340826'); +INSERT INTO "public"."cardcodes" VALUES (1892, '安徽省', '安庆市', '望江县', '340827'); +INSERT INTO "public"."cardcodes" VALUES (1893, '安徽省', '安庆市', '岳西县', '340828'); +INSERT INTO "public"."cardcodes" VALUES (1894, '安徽省', '安庆市', '桐城市', '340881'); +INSERT INTO "public"."cardcodes" VALUES (1895, '安徽省', '黄山市', '市辖区', '341001'); +INSERT INTO "public"."cardcodes" VALUES (1896, '安徽省', '黄山市', '屯溪区', '341002'); +INSERT INTO "public"."cardcodes" VALUES (1897, '安徽省', '黄山市', '黄山区', '341003'); +INSERT INTO "public"."cardcodes" VALUES (1898, '安徽省', '黄山市', '徽州区', '341004'); +INSERT INTO "public"."cardcodes" VALUES (1899, '安徽省', '黄山市', '歙县', '341021'); +INSERT INTO "public"."cardcodes" VALUES (1900, '安徽省', '黄山市', '休宁县', '341022'); +INSERT INTO "public"."cardcodes" VALUES (1901, '安徽省', '黄山市', '黟县', '341023'); +INSERT INTO "public"."cardcodes" VALUES (1902, '安徽省', '黄山市', '祁门县', '341024'); +INSERT INTO "public"."cardcodes" VALUES (1903, '安徽省', '滁州市', '市辖区', '341101'); +INSERT INTO "public"."cardcodes" VALUES (1904, '安徽省', '滁州市', '琅琊区', '341102'); +INSERT INTO "public"."cardcodes" VALUES (1905, '安徽省', '滁州市', '南谯区', '341103'); +INSERT INTO "public"."cardcodes" VALUES (1906, '安徽省', '滁州市', '天长县', '341121'); +INSERT INTO "public"."cardcodes" VALUES (1907, '安徽省', '滁州市', '来安县', '341122'); +INSERT INTO "public"."cardcodes" VALUES (1908, '安徽省', '滁州市', '全椒县', '341124'); +INSERT INTO "public"."cardcodes" VALUES (1909, '安徽省', '滁州市', '定远县', '341125'); +INSERT INTO "public"."cardcodes" VALUES (1910, '安徽省', '滁州市', '凤阳县', '341126'); +INSERT INTO "public"."cardcodes" VALUES (1911, '安徽省', '滁州市', '嘉山县', '341127'); +INSERT INTO "public"."cardcodes" VALUES (1912, '安徽省', '滁州市', '天长市', '341181'); +INSERT INTO "public"."cardcodes" VALUES (1913, '安徽省', '滁州市', '明光市', '341182'); +INSERT INTO "public"."cardcodes" VALUES (1914, '福建省', '宁德市', '市辖区', '350901'); +INSERT INTO "public"."cardcodes" VALUES (1915, '福建省', '宁德市', '蕉城区', '350902'); +INSERT INTO "public"."cardcodes" VALUES (1916, '福建省', '宁德市', '霞浦县', '350921'); +INSERT INTO "public"."cardcodes" VALUES (1917, '福建省', '宁德市', '古田县', '350922'); +INSERT INTO "public"."cardcodes" VALUES (1918, '福建省', '宁德市', '屏南县', '350923'); +INSERT INTO "public"."cardcodes" VALUES (1919, '福建省', '宁德市', '寿宁县', '350924'); +INSERT INTO "public"."cardcodes" VALUES (1920, '福建省', '宁德市', '周宁县', '350925'); +INSERT INTO "public"."cardcodes" VALUES (1921, '福建省', '宁德市', '柘荣县', '350926'); +INSERT INTO "public"."cardcodes" VALUES (1922, '福建省', '宁德市', '福安市', '350981'); +INSERT INTO "public"."cardcodes" VALUES (1923, '福建省', '宁德市', '福鼎市', '350982'); +INSERT INTO "public"."cardcodes" VALUES (1924, '福建省', '南平地区', '南平市', '352101'); +INSERT INTO "public"."cardcodes" VALUES (1925, '福建省', '南平地区', '邵武市', '352102'); +INSERT INTO "public"."cardcodes" VALUES (1926, '福建省', '南平地区', '武夷山市', '352103'); +INSERT INTO "public"."cardcodes" VALUES (1927, '福建省', '南平地区', '建瓯市', '352104'); +INSERT INTO "public"."cardcodes" VALUES (1928, '福建省', '南平地区', '顺昌县', '352121'); +INSERT INTO "public"."cardcodes" VALUES (1929, '福建省', '南平地区', '建阳县', '352122'); +INSERT INTO "public"."cardcodes" VALUES (1930, '福建省', '南平地区', '建瓯县', '352123'); +INSERT INTO "public"."cardcodes" VALUES (1931, '福建省', '南平地区', '浦城县', '352124'); +INSERT INTO "public"."cardcodes" VALUES (1932, '福建省', '南平地区', '邵武县', '352125'); +INSERT INTO "public"."cardcodes" VALUES (1933, '福建省', '南平地区', '崇安县', '352126'); +INSERT INTO "public"."cardcodes" VALUES (1934, '福建省', '南平地区', '光泽县', '352127'); +INSERT INTO "public"."cardcodes" VALUES (1935, '福建省', '南平地区', '松溪县', '352128'); +INSERT INTO "public"."cardcodes" VALUES (1936, '福建省', '南平地区', '政和县', '352129'); +INSERT INTO "public"."cardcodes" VALUES (1937, '福建省', '宁德地区', '宁德市', '352201'); +INSERT INTO "public"."cardcodes" VALUES (1938, '福建省', '宁德地区', '福安市', '352202'); +INSERT INTO "public"."cardcodes" VALUES (1939, '福建省', '宁德地区', '福鼎市', '352203'); +INSERT INTO "public"."cardcodes" VALUES (1940, '福建省', '宁德地区', '宁德县', '352221'); +INSERT INTO "public"."cardcodes" VALUES (1941, '福建省', '宁德地区', '连江县', '352222'); +INSERT INTO "public"."cardcodes" VALUES (1942, '福建省', '宁德地区', '罗源县', '352223'); +INSERT INTO "public"."cardcodes" VALUES (1943, '福建省', '宁德地区', '福鼎县', '352224'); +INSERT INTO "public"."cardcodes" VALUES (1944, '福建省', '宁德地区', '霞浦县', '352225'); +INSERT INTO "public"."cardcodes" VALUES (1945, '福建省', '宁德地区', '福安县', '352226'); +INSERT INTO "public"."cardcodes" VALUES (1946, '福建省', '宁德地区', '古田县', '352227'); +INSERT INTO "public"."cardcodes" VALUES (1947, '福建省', '宁德地区', '屏南县', '352228'); +INSERT INTO "public"."cardcodes" VALUES (1948, '福建省', '宁德地区', '寿宁县', '352229'); +INSERT INTO "public"."cardcodes" VALUES (1949, '福建省', '宁德地区', '周宁县', '352230'); +INSERT INTO "public"."cardcodes" VALUES (1950, '福建省', '宁德地区', '柘荣县', '352231'); +INSERT INTO "public"."cardcodes" VALUES (1951, '福建省', '龙岩地区', '龙岩市', '352601'); +INSERT INTO "public"."cardcodes" VALUES (1952, '福建省', '龙岩地区', '漳平市', '352602'); +INSERT INTO "public"."cardcodes" VALUES (1953, '福建省', '龙岩地区', '长汀县', '352622'); +INSERT INTO "public"."cardcodes" VALUES (1954, '福建省', '龙岩地区', '永定县', '352623'); +INSERT INTO "public"."cardcodes" VALUES (1955, '福建省', '龙岩地区', '上杭县', '352624'); +INSERT INTO "public"."cardcodes" VALUES (1956, '福建省', '龙岩地区', '武平县', '352625'); +INSERT INTO "public"."cardcodes" VALUES (1957, '福建省', '龙岩地区', '漳平县', '352626'); +INSERT INTO "public"."cardcodes" VALUES (1958, '福建省', '龙岩地区', '连城县', '352627'); +INSERT INTO "public"."cardcodes" VALUES (1959, '福建省', '三明市', '三明市', '352701'); +INSERT INTO "public"."cardcodes" VALUES (1960, '福建省', '三明市', '明溪县', '352721'); +INSERT INTO "public"."cardcodes" VALUES (1961, '福建省', '三明市', '永安县', '352722'); +INSERT INTO "public"."cardcodes" VALUES (1962, '福建省', '三明市', '清流县', '352723'); +INSERT INTO "public"."cardcodes" VALUES (1963, '福建省', '三明市', '宁化县', '352724'); +INSERT INTO "public"."cardcodes" VALUES (1964, '福建省', '三明市', '大田县', '352725'); +INSERT INTO "public"."cardcodes" VALUES (1965, '福建省', '三明市', '尤溪县', '352726'); +INSERT INTO "public"."cardcodes" VALUES (1966, '福建省', '三明市', '沙县', '352727'); +INSERT INTO "public"."cardcodes" VALUES (1967, '福建省', '三明市', '将乐县', '352728'); +INSERT INTO "public"."cardcodes" VALUES (1968, '福建省', '三明市', '泰宁县', '352729'); +INSERT INTO "public"."cardcodes" VALUES (1969, '福建省', '三明市', '建宁县', '352730'); +INSERT INTO "public"."cardcodes" VALUES (1970, '福建省', '福州市', '市辖区', '350101'); +INSERT INTO "public"."cardcodes" VALUES (1971, '福建省', '福州市', '鼓楼区', '350102'); +INSERT INTO "public"."cardcodes" VALUES (1972, '福建省', '福州市', '台江区', '350103'); +INSERT INTO "public"."cardcodes" VALUES (1973, '福建省', '福州市', '仓山区', '350104'); +INSERT INTO "public"."cardcodes" VALUES (1974, '福建省', '福州市', '马尾区', '350105'); +INSERT INTO "public"."cardcodes" VALUES (1975, '福建省', '福州市', '晋安区', '350111'); +INSERT INTO "public"."cardcodes" VALUES (1976, '福建省', '福州市', '市区', '350120'); +INSERT INTO "public"."cardcodes" VALUES (1977, '福建省', '福州市', '闽侯县', '350121'); +INSERT INTO "public"."cardcodes" VALUES (1978, '福建省', '福州市', '连江县', '350122'); +INSERT INTO "public"."cardcodes" VALUES (1979, '福建省', '福州市', '罗源县', '350123'); +INSERT INTO "public"."cardcodes" VALUES (1980, '福建省', '福州市', '闽清县', '350124'); +INSERT INTO "public"."cardcodes" VALUES (1981, '福建省', '福州市', '永泰县', '350125'); +INSERT INTO "public"."cardcodes" VALUES (1982, '福建省', '福州市', '长乐县', '350126'); +INSERT INTO "public"."cardcodes" VALUES (1983, '福建省', '福州市', '福清县', '350127'); +INSERT INTO "public"."cardcodes" VALUES (1984, '福建省', '福州市', '平潭县', '350128'); +INSERT INTO "public"."cardcodes" VALUES (1985, '福建省', '福州市', '福清市', '350181'); +INSERT INTO "public"."cardcodes" VALUES (1986, '福建省', '福州市', '长乐市', '350182'); +INSERT INTO "public"."cardcodes" VALUES (1987, '福建省', '厦门市', '市辖区', '350201'); +INSERT INTO "public"."cardcodes" VALUES (1988, '福建省', '厦门市', '鼓浪屿区', '350202'); +INSERT INTO "public"."cardcodes" VALUES (1989, '福建省', '厦门市', '思明区', '350203'); +INSERT INTO "public"."cardcodes" VALUES (1990, '福建省', '厦门市', '开元区', '350204'); +INSERT INTO "public"."cardcodes" VALUES (1991, '福建省', '厦门市', '海沧区', '350205'); +INSERT INTO "public"."cardcodes" VALUES (1992, '福建省', '厦门市', '湖里区', '350206'); +INSERT INTO "public"."cardcodes" VALUES (1993, '福建省', '厦门市', '集美区', '350211'); +INSERT INTO "public"."cardcodes" VALUES (1994, '福建省', '厦门市', '同安区', '350212'); +INSERT INTO "public"."cardcodes" VALUES (1995, '福建省', '厦门市', '翔安区', '350213'); +INSERT INTO "public"."cardcodes" VALUES (1996, '福建省', '莆田市', '市辖区', '350301'); +INSERT INTO "public"."cardcodes" VALUES (1997, '福建省', '莆田市', '城厢区', '350302'); +INSERT INTO "public"."cardcodes" VALUES (1998, '福建省', '莆田市', '涵江区', '350303'); +INSERT INTO "public"."cardcodes" VALUES (1999, '福建省', '莆田市', '荔城区', '350304'); +INSERT INTO "public"."cardcodes" VALUES (2000, '福建省', '莆田市', '秀屿区', '350305'); +INSERT INTO "public"."cardcodes" VALUES (2001, '福建省', '莆田市', '莆田县', '350321'); +INSERT INTO "public"."cardcodes" VALUES (2002, '福建省', '莆田市', '仙游县', '350322'); +INSERT INTO "public"."cardcodes" VALUES (2003, '福建省', '三明市', '市辖区', '350401'); +INSERT INTO "public"."cardcodes" VALUES (2004, '福建省', '三明市', '梅列区', '350402'); +INSERT INTO "public"."cardcodes" VALUES (2005, '福建省', '三明市', '三元区', '350403'); +INSERT INTO "public"."cardcodes" VALUES (2006, '福建省', '三明市', '永安市', '350404'); +INSERT INTO "public"."cardcodes" VALUES (2007, '福建省', '三明市', '永安市', '350420'); +INSERT INTO "public"."cardcodes" VALUES (2008, '福建省', '三明市', '明溪县', '350421'); +INSERT INTO "public"."cardcodes" VALUES (2009, '福建省', '三明市', '永安县', '350422'); +INSERT INTO "public"."cardcodes" VALUES (2010, '福建省', '三明市', '清流县', '350423'); +INSERT INTO "public"."cardcodes" VALUES (2011, '福建省', '三明市', '宁化县', '350424'); +INSERT INTO "public"."cardcodes" VALUES (2012, '福建省', '三明市', '大田县', '350425'); +INSERT INTO "public"."cardcodes" VALUES (2013, '福建省', '三明市', '尤溪县', '350426'); +INSERT INTO "public"."cardcodes" VALUES (2014, '福建省', '三明市', '沙县', '350427'); +INSERT INTO "public"."cardcodes" VALUES (2015, '福建省', '三明市', '将乐县', '350428'); +INSERT INTO "public"."cardcodes" VALUES (2016, '福建省', '三明市', '泰宁县', '350429'); +INSERT INTO "public"."cardcodes" VALUES (2017, '福建省', '三明市', '建宁县', '350430'); +INSERT INTO "public"."cardcodes" VALUES (2018, '福建省', '三明市', '永安市', '350481'); +INSERT INTO "public"."cardcodes" VALUES (2019, '福建省', '泉州市', '市辖区', '350501'); +INSERT INTO "public"."cardcodes" VALUES (2020, '福建省', '泉州市', '鲤城区', '350502'); +INSERT INTO "public"."cardcodes" VALUES (2021, '福建省', '泉州市', '丰泽区', '350503'); +INSERT INTO "public"."cardcodes" VALUES (2022, '福建省', '泉州市', '洛江区', '350504'); +INSERT INTO "public"."cardcodes" VALUES (2023, '福建省', '泉州市', '泉港区', '350505'); +INSERT INTO "public"."cardcodes" VALUES (2024, '福建省', '泉州市', '惠安县', '350521'); +INSERT INTO "public"."cardcodes" VALUES (2025, '福建省', '泉州市', '晋江县', '350522'); +INSERT INTO "public"."cardcodes" VALUES (2026, '福建省', '泉州市', '南安县', '350523'); +INSERT INTO "public"."cardcodes" VALUES (2027, '福建省', '泉州市', '安溪县', '350524'); +INSERT INTO "public"."cardcodes" VALUES (2028, '福建省', '泉州市', '永春县', '350525'); +INSERT INTO "public"."cardcodes" VALUES (2029, '福建省', '泉州市', '德化县', '350526'); +INSERT INTO "public"."cardcodes" VALUES (2030, '福建省', '泉州市', '金门县', '350527'); +INSERT INTO "public"."cardcodes" VALUES (2031, '福建省', '泉州市', '石狮市', '350581'); +INSERT INTO "public"."cardcodes" VALUES (2032, '福建省', '泉州市', '晋江市', '350582'); +INSERT INTO "public"."cardcodes" VALUES (2033, '福建省', '泉州市', '南安市', '350583'); +INSERT INTO "public"."cardcodes" VALUES (2034, '福建省', '漳州市', '市辖区', '350601'); +INSERT INTO "public"."cardcodes" VALUES (2035, '福建省', '漳州市', '芗城区', '350602'); +INSERT INTO "public"."cardcodes" VALUES (2036, '福建省', '漳州市', '龙文区', '350603'); +INSERT INTO "public"."cardcodes" VALUES (2037, '福建省', '漳州市', '龙海县', '350621'); +INSERT INTO "public"."cardcodes" VALUES (2038, '福建省', '漳州市', '云霄县', '350622'); +INSERT INTO "public"."cardcodes" VALUES (2039, '福建省', '漳州市', '漳浦县', '350623'); +INSERT INTO "public"."cardcodes" VALUES (2040, '福建省', '漳州市', '诏安县', '350624'); +INSERT INTO "public"."cardcodes" VALUES (2041, '福建省', '漳州市', '长泰县', '350625'); +INSERT INTO "public"."cardcodes" VALUES (2042, '福建省', '漳州市', '东山县', '350626'); +INSERT INTO "public"."cardcodes" VALUES (2043, '福建省', '漳州市', '南靖县', '350627'); +INSERT INTO "public"."cardcodes" VALUES (2044, '福建省', '漳州市', '平和县', '350628'); +INSERT INTO "public"."cardcodes" VALUES (2045, '福建省', '漳州市', '华安县', '350629'); +INSERT INTO "public"."cardcodes" VALUES (2046, '福建省', '漳州市', '龙海市', '350681'); +INSERT INTO "public"."cardcodes" VALUES (2047, '福建省', '南平市', '市辖区', '350701'); +INSERT INTO "public"."cardcodes" VALUES (2048, '福建省', '南平市', '延平区', '350702'); +INSERT INTO "public"."cardcodes" VALUES (2049, '福建省', '南平市', '顺昌县', '350721'); +INSERT INTO "public"."cardcodes" VALUES (2050, '福建省', '南平市', '浦城县', '350722'); +INSERT INTO "public"."cardcodes" VALUES (2051, '福建省', '南平市', '光泽县', '350723'); +INSERT INTO "public"."cardcodes" VALUES (2052, '福建省', '南平市', '松溪县', '350724'); +INSERT INTO "public"."cardcodes" VALUES (2053, '福建省', '南平市', '政和县', '350725'); +INSERT INTO "public"."cardcodes" VALUES (2054, '福建省', '南平市', '邵武市', '350781'); +INSERT INTO "public"."cardcodes" VALUES (2055, '福建省', '南平市', '武夷山市', '350782'); +INSERT INTO "public"."cardcodes" VALUES (2056, '福建省', '南平市', '建瓯市', '350783'); +INSERT INTO "public"."cardcodes" VALUES (2057, '福建省', '南平市', '建阳市', '350784'); +INSERT INTO "public"."cardcodes" VALUES (2058, '福建省', '龙岩市', '市辖区', '350801'); +INSERT INTO "public"."cardcodes" VALUES (2059, '福建省', '龙岩市', '新罗区', '350802'); +INSERT INTO "public"."cardcodes" VALUES (2060, '福建省', '龙岩市', '长汀县', '350821'); +INSERT INTO "public"."cardcodes" VALUES (2061, '福建省', '龙岩市', '永定县', '350822'); +INSERT INTO "public"."cardcodes" VALUES (2062, '福建省', '龙岩市', '上杭县', '350823'); +INSERT INTO "public"."cardcodes" VALUES (2063, '福建省', '龙岩市', '武平县', '350824'); +INSERT INTO "public"."cardcodes" VALUES (2064, '福建省', '龙岩市', '连城县', '350825'); +INSERT INTO "public"."cardcodes" VALUES (2065, '福建省', '龙岩市', '漳平市', '350881'); +INSERT INTO "public"."cardcodes" VALUES (2066, '福建省', NULL, '永安市', '359001'); +INSERT INTO "public"."cardcodes" VALUES (2067, '福建省', NULL, '石狮市', '359002'); +INSERT INTO "public"."cardcodes" VALUES (2068, '江西省', '南昌市', '市辖区', '360101'); +INSERT INTO "public"."cardcodes" VALUES (2069, '江西省', '南昌市', '东湖区', '360102'); +INSERT INTO "public"."cardcodes" VALUES (2070, '江西省', '南昌市', '西湖区', '360103'); +INSERT INTO "public"."cardcodes" VALUES (2071, '江西省', '南昌市', '青云谱区', '360104'); +INSERT INTO "public"."cardcodes" VALUES (2072, '江西省', '南昌市', '湾里区', '360105'); +INSERT INTO "public"."cardcodes" VALUES (2073, '江西省', '南昌市', '郊区', '360111'); +INSERT INTO "public"."cardcodes" VALUES (2074, '江西省', '南昌市', '南昌县', '360121'); +INSERT INTO "public"."cardcodes" VALUES (2075, '江西省', '南昌市', '新建县', '360122'); +INSERT INTO "public"."cardcodes" VALUES (2076, '江西省', '南昌市', '安义县', '360123'); +INSERT INTO "public"."cardcodes" VALUES (2077, '江西省', '南昌市', '进贤县', '360124'); +INSERT INTO "public"."cardcodes" VALUES (2078, '江西省', '景德镇市', '市辖区', '360201'); +INSERT INTO "public"."cardcodes" VALUES (2079, '江西省', '景德镇市', '昌江区', '360202'); +INSERT INTO "public"."cardcodes" VALUES (2080, '江西省', '景德镇市', '珠山区', '360203'); +INSERT INTO "public"."cardcodes" VALUES (2081, '江西省', '景德镇市', '鹅湖区', '360211'); +INSERT INTO "public"."cardcodes" VALUES (2082, '江西省', '景德镇市', '蛟潭区', '360212'); +INSERT INTO "public"."cardcodes" VALUES (2083, '江西省', '景德镇市', '乐平县', '360221'); +INSERT INTO "public"."cardcodes" VALUES (2084, '江西省', '景德镇市', '浮梁县', '360222'); +INSERT INTO "public"."cardcodes" VALUES (2085, '江西省', '景德镇市', '乐平市', '360281'); +INSERT INTO "public"."cardcodes" VALUES (2086, '江西省', '上饶市', '鄱阳县', '361128'); +INSERT INTO "public"."cardcodes" VALUES (2087, '江西省', '上饶市', '万年县', '361129'); +INSERT INTO "public"."cardcodes" VALUES (2088, '江西省', '上饶市', '婺源县', '361130'); +INSERT INTO "public"."cardcodes" VALUES (2089, '江西省', '上饶市', '德兴市', '361181'); +INSERT INTO "public"."cardcodes" VALUES (2090, '江西省', '上饶市', '市辖区', '361101'); +INSERT INTO "public"."cardcodes" VALUES (2091, '江西省', '上饶市', '信州区', '361102'); +INSERT INTO "public"."cardcodes" VALUES (2092, '江西省', '上饶市', '上饶县', '361121'); +INSERT INTO "public"."cardcodes" VALUES (2093, '江西省', '上饶市', '广丰县', '361122'); +INSERT INTO "public"."cardcodes" VALUES (2094, '江西省', '上饶市', '玉山县', '361123'); +INSERT INTO "public"."cardcodes" VALUES (2095, '江西省', '上饶市', '铅山县', '361124'); +INSERT INTO "public"."cardcodes" VALUES (2096, '江西省', '上饶市', '横峰县', '361125'); +INSERT INTO "public"."cardcodes" VALUES (2097, '江西省', '上饶市', '弋阳县', '361126'); +INSERT INTO "public"."cardcodes" VALUES (2098, '江西省', '上饶市', '余干县', '361127'); +INSERT INTO "public"."cardcodes" VALUES (2099, '江西省', '赣州地区', '赣州市', '362101'); +INSERT INTO "public"."cardcodes" VALUES (2100, '江西省', '赣州地区', '瑞金市', '362102'); +INSERT INTO "public"."cardcodes" VALUES (2101, '江西省', '赣州地区', '南康市', '362103'); +INSERT INTO "public"."cardcodes" VALUES (2102, '江西省', '赣州地区', '赣县', '362121'); +INSERT INTO "public"."cardcodes" VALUES (2103, '江西省', '赣州地区', '南康市', '362122'); +INSERT INTO "public"."cardcodes" VALUES (2104, '江西省', '赣州地区', '信丰县', '362123'); +INSERT INTO "public"."cardcodes" VALUES (2105, '江西省', '赣州地区', '大余县', '362124'); +INSERT INTO "public"."cardcodes" VALUES (2106, '江西省', '赣州地区', '上犹县', '362125'); +INSERT INTO "public"."cardcodes" VALUES (2107, '江西省', '赣州地区', '崇义县', '362126'); +INSERT INTO "public"."cardcodes" VALUES (2108, '江西省', '赣州地区', '安远县', '362127'); +INSERT INTO "public"."cardcodes" VALUES (2109, '江西省', '赣州地区', '龙南县', '362128'); +INSERT INTO "public"."cardcodes" VALUES (2110, '江西省', '赣州地区', '定南县', '362129'); +INSERT INTO "public"."cardcodes" VALUES (2111, '江西省', '赣州地区', '全南县', '362130'); +INSERT INTO "public"."cardcodes" VALUES (2112, '江西省', '赣州地区', '宁都县', '362131'); +INSERT INTO "public"."cardcodes" VALUES (2113, '江西省', '赣州地区', '于都县', '362132'); +INSERT INTO "public"."cardcodes" VALUES (2114, '江西省', '赣州地区', '兴国县', '362133'); +INSERT INTO "public"."cardcodes" VALUES (2115, '江西省', '赣州地区', '瑞金市', '362134'); +INSERT INTO "public"."cardcodes" VALUES (2116, '江西省', '赣州地区', '会昌县', '362135'); +INSERT INTO "public"."cardcodes" VALUES (2117, '江西省', '赣州地区', '寻乌县', '362136'); +INSERT INTO "public"."cardcodes" VALUES (2118, '江西省', '赣州地区', '石城县', '362137'); +INSERT INTO "public"."cardcodes" VALUES (2119, '江西省', '赣州地区', '广昌县', '362138'); +INSERT INTO "public"."cardcodes" VALUES (2120, '江西省', '宜春地区', '宜春市', '362201'); +INSERT INTO "public"."cardcodes" VALUES (2121, '江西省', '宜春地区', '丰城市', '362202'); +INSERT INTO "public"."cardcodes" VALUES (2122, '江西省', '宜春地区', '樟树市', '362203'); +INSERT INTO "public"."cardcodes" VALUES (2123, '江西省', '宜春地区', '高安市', '362204'); +INSERT INTO "public"."cardcodes" VALUES (2124, '江西省', '宜春地区', '丰城县', '362221'); +INSERT INTO "public"."cardcodes" VALUES (2125, '江西省', '宜春地区', '高安县', '362222'); +INSERT INTO "public"."cardcodes" VALUES (2126, '江西省', '宜春地区', '清江县', '362223'); +INSERT INTO "public"."cardcodes" VALUES (2127, '江西省', '宜春地区', '新余县', '362224'); +INSERT INTO "public"."cardcodes" VALUES (2128, '江西省', '宜春地区', '宜春县', '362225'); +INSERT INTO "public"."cardcodes" VALUES (2129, '江西省', '宜春地区', '奉新县', '362226'); +INSERT INTO "public"."cardcodes" VALUES (2130, '江西省', '宜春地区', '万载县', '362227'); +INSERT INTO "public"."cardcodes" VALUES (2131, '江西省', '宜春地区', '上高县', '362228'); +INSERT INTO "public"."cardcodes" VALUES (2132, '江西省', '宜春地区', '宜丰县', '362229'); +INSERT INTO "public"."cardcodes" VALUES (2133, '江西省', '宜春地区', '分宜县', '362230'); +INSERT INTO "public"."cardcodes" VALUES (2134, '江西省', '宜春地区', '安义县', '362231'); +INSERT INTO "public"."cardcodes" VALUES (2135, '江西省', '宜春地区', '靖安县', '362232'); +INSERT INTO "public"."cardcodes" VALUES (2136, '江西省', '宜春地区', '铜鼓县', '362233'); +INSERT INTO "public"."cardcodes" VALUES (2137, '江西省', '上饶地区', '上饶市', '362301'); +INSERT INTO "public"."cardcodes" VALUES (2138, '江西省', '上饶地区', '德兴市', '362302'); +INSERT INTO "public"."cardcodes" VALUES (2139, '江西省', '上饶地区', '上饶县', '362321'); +INSERT INTO "public"."cardcodes" VALUES (2140, '江西省', '上饶地区', '广丰县', '362322'); +INSERT INTO "public"."cardcodes" VALUES (2141, '江西省', '上饶地区', '玉山县', '362323'); +INSERT INTO "public"."cardcodes" VALUES (2142, '江西省', '上饶地区', '铅山县', '362324'); +INSERT INTO "public"."cardcodes" VALUES (2143, '江西省', '上饶地区', '横峰县', '362325'); +INSERT INTO "public"."cardcodes" VALUES (2144, '江西省', '上饶地区', '弋阳县', '362326'); +INSERT INTO "public"."cardcodes" VALUES (2145, '江西省', '上饶地区', '贵溪县', '362327'); +INSERT INTO "public"."cardcodes" VALUES (2146, '江西省', '上饶地区', '余江县', '362328'); +INSERT INTO "public"."cardcodes" VALUES (2147, '江西省', '上饶地区', '余干县', '362329'); +INSERT INTO "public"."cardcodes" VALUES (2148, '江西省', '上饶地区', '波阳县', '362330'); +INSERT INTO "public"."cardcodes" VALUES (2149, '江西省', '上饶地区', '万年县', '362331'); +INSERT INTO "public"."cardcodes" VALUES (2150, '江西省', '上饶地区', '乐平县', '362332'); +INSERT INTO "public"."cardcodes" VALUES (2151, '江西省', '上饶地区', '德兴县', '362333'); +INSERT INTO "public"."cardcodes" VALUES (2152, '江西省', '上饶地区', '婺源县', '362334'); +INSERT INTO "public"."cardcodes" VALUES (2153, '江西省', '萍乡市', '市辖区', '360301'); +INSERT INTO "public"."cardcodes" VALUES (2154, '江西省', '萍乡市', '安源区', '360302'); +INSERT INTO "public"."cardcodes" VALUES (2155, '江西省', '萍乡市', '上栗区', '360311'); +INSERT INTO "public"."cardcodes" VALUES (2156, '江西省', '萍乡市', '芦溪区', '360312'); +INSERT INTO "public"."cardcodes" VALUES (2157, '江西省', '萍乡市', '湘东区', '360313'); +INSERT INTO "public"."cardcodes" VALUES (2158, '江西省', '萍乡市', '莲花县', '360321'); +INSERT INTO "public"."cardcodes" VALUES (2159, '江西省', '萍乡市', '上栗县', '360322'); +INSERT INTO "public"."cardcodes" VALUES (2160, '江西省', '萍乡市', '芦溪县', '360323'); +INSERT INTO "public"."cardcodes" VALUES (2161, '江西省', '九江市', '市辖区', '360401'); +INSERT INTO "public"."cardcodes" VALUES (2162, '江西省', '九江市', '庐山区', '360402'); +INSERT INTO "public"."cardcodes" VALUES (2163, '江西省', '九江市', '浔阳区', '360403'); +INSERT INTO "public"."cardcodes" VALUES (2164, '江西省', '九江市', '九江县', '360421'); +INSERT INTO "public"."cardcodes" VALUES (2165, '江西省', '九江市', '瑞昌县', '360422'); +INSERT INTO "public"."cardcodes" VALUES (2166, '江西省', '九江市', '武宁县', '360423'); +INSERT INTO "public"."cardcodes" VALUES (2167, '江西省', '九江市', '修水县', '360424'); +INSERT INTO "public"."cardcodes" VALUES (2168, '江西省', '九江市', '永修县', '360425'); +INSERT INTO "public"."cardcodes" VALUES (2169, '江西省', '九江市', '德安县', '360426'); +INSERT INTO "public"."cardcodes" VALUES (2170, '江西省', '九江市', '星子县', '360427'); +INSERT INTO "public"."cardcodes" VALUES (2171, '江西省', '九江市', '都昌县', '360428'); +INSERT INTO "public"."cardcodes" VALUES (2172, '江西省', '九江市', '湖口县', '360429'); +INSERT INTO "public"."cardcodes" VALUES (2173, '江西省', '九江市', '彭泽县', '360430'); +INSERT INTO "public"."cardcodes" VALUES (2174, '江西省', '九江市', '瑞昌市', '360481'); +INSERT INTO "public"."cardcodes" VALUES (2175, '江西省', '新余市', '市辖区', '360501'); +INSERT INTO "public"."cardcodes" VALUES (2176, '江西省', '新余市', '渝水区', '360502'); +INSERT INTO "public"."cardcodes" VALUES (2177, '江西省', '新余市', '分宜县', '360521'); +INSERT INTO "public"."cardcodes" VALUES (2178, '江西省', '鹰潭市', '市辖区', '360601'); +INSERT INTO "public"."cardcodes" VALUES (2179, '江西省', '鹰潭市', '月湖区', '360602'); +INSERT INTO "public"."cardcodes" VALUES (2180, '江西省', '鹰潭市', '贵溪县', '360621'); +INSERT INTO "public"."cardcodes" VALUES (2181, '江西省', '鹰潭市', '余江县', '360622'); +INSERT INTO "public"."cardcodes" VALUES (2182, '江西省', '鹰潭市', '贵溪市', '360681'); +INSERT INTO "public"."cardcodes" VALUES (2183, '江西省', '赣州市', '市辖区', '360701'); +INSERT INTO "public"."cardcodes" VALUES (2184, '江西省', '赣州市', '章贡区', '360702'); +INSERT INTO "public"."cardcodes" VALUES (2185, '江西省', '赣州市', '赣县', '360721'); +INSERT INTO "public"."cardcodes" VALUES (2186, '江西省', '赣州市', '信丰县', '360722'); +INSERT INTO "public"."cardcodes" VALUES (2187, '江西省', '赣州市', '大余县', '360723'); +INSERT INTO "public"."cardcodes" VALUES (2188, '江西省', '赣州市', '上犹县', '360724'); +INSERT INTO "public"."cardcodes" VALUES (2189, '江西省', '赣州市', '崇义县', '360725'); +INSERT INTO "public"."cardcodes" VALUES (2190, '江西省', '赣州市', '安远县', '360726'); +INSERT INTO "public"."cardcodes" VALUES (2191, '江西省', '赣州市', '龙南县', '360727'); +INSERT INTO "public"."cardcodes" VALUES (2192, '江西省', '赣州市', '定南县', '360728'); +INSERT INTO "public"."cardcodes" VALUES (2193, '江西省', '赣州市', '全南县', '360729'); +INSERT INTO "public"."cardcodes" VALUES (2194, '江西省', '赣州市', '宁都县', '360730'); +INSERT INTO "public"."cardcodes" VALUES (2195, '江西省', '赣州市', '于都县', '360731'); +INSERT INTO "public"."cardcodes" VALUES (2196, '江西省', '赣州市', '兴国县', '360732'); +INSERT INTO "public"."cardcodes" VALUES (2197, '江西省', '赣州市', '会昌县', '360733'); +INSERT INTO "public"."cardcodes" VALUES (2198, '江西省', '赣州市', '寻乌县', '360734'); +INSERT INTO "public"."cardcodes" VALUES (2199, '江西省', '赣州市', '石城县', '360735'); +INSERT INTO "public"."cardcodes" VALUES (2200, '江西省', '赣州市', '瑞金市', '360781'); +INSERT INTO "public"."cardcodes" VALUES (2201, '江西省', '赣州市', '南康市', '360782'); +INSERT INTO "public"."cardcodes" VALUES (2202, '江西省', '吉安市', '市辖区', '360801'); +INSERT INTO "public"."cardcodes" VALUES (2203, '江西省', '吉安市', '吉州区', '360802'); +INSERT INTO "public"."cardcodes" VALUES (2204, '江西省', '吉安市', '青原区', '360803'); +INSERT INTO "public"."cardcodes" VALUES (2205, '江西省', '吉安市', '吉安县', '360821'); +INSERT INTO "public"."cardcodes" VALUES (2206, '江西省', '吉安市', '吉水县', '360822'); +INSERT INTO "public"."cardcodes" VALUES (2207, '江西省', '吉安市', '峡江县', '360823'); +INSERT INTO "public"."cardcodes" VALUES (2208, '江西省', '吉安市', '新干县', '360824'); +INSERT INTO "public"."cardcodes" VALUES (2209, '江西省', '吉安市', '永丰县', '360825'); +INSERT INTO "public"."cardcodes" VALUES (2210, '江西省', '吉安市', '泰和县', '360826'); +INSERT INTO "public"."cardcodes" VALUES (2211, '江西省', '吉安市', '遂川县', '360827'); +INSERT INTO "public"."cardcodes" VALUES (2212, '江西省', '吉安市', '万安县', '360828'); +INSERT INTO "public"."cardcodes" VALUES (2213, '江西省', '吉安市', '安福县', '360829'); +INSERT INTO "public"."cardcodes" VALUES (2214, '江西省', '吉安市', '永新县', '360830'); +INSERT INTO "public"."cardcodes" VALUES (2215, '江西省', '吉安市', '井冈山市', '360881'); +INSERT INTO "public"."cardcodes" VALUES (2216, '江西省', '宜春市', '市辖区', '360901'); +INSERT INTO "public"."cardcodes" VALUES (2217, '江西省', '宜春市', '袁州区', '360902'); +INSERT INTO "public"."cardcodes" VALUES (2218, '江西省', '宜春市', '奉新县', '360921'); +INSERT INTO "public"."cardcodes" VALUES (2219, '江西省', '宜春市', '万载县', '360922'); +INSERT INTO "public"."cardcodes" VALUES (2220, '江西省', '宜春市', '上高县', '360923'); +INSERT INTO "public"."cardcodes" VALUES (2221, '江西省', '宜春市', '宜丰县', '360924'); +INSERT INTO "public"."cardcodes" VALUES (2222, '江西省', '宜春市', '靖安县', '360925'); +INSERT INTO "public"."cardcodes" VALUES (2223, '江西省', '宜春市', '铜鼓县', '360926'); +INSERT INTO "public"."cardcodes" VALUES (2224, '江西省', '宜春市', '丰城市', '360981'); +INSERT INTO "public"."cardcodes" VALUES (2225, '江西省', '宜春市', '樟树市', '360982'); +INSERT INTO "public"."cardcodes" VALUES (2226, '江西省', '宜春市', '高安市', '360983'); +INSERT INTO "public"."cardcodes" VALUES (2227, '江西省', '抚州市', '市辖区', '361001'); +INSERT INTO "public"."cardcodes" VALUES (2228, '江西省', '抚州市', '临川区', '361002'); +INSERT INTO "public"."cardcodes" VALUES (2229, '江西省', '抚州市', '南城县', '361021'); +INSERT INTO "public"."cardcodes" VALUES (2230, '江西省', '抚州市', '黎川县', '361022'); +INSERT INTO "public"."cardcodes" VALUES (2231, '江西省', '抚州市', '南丰县', '361023'); +INSERT INTO "public"."cardcodes" VALUES (2232, '江西省', '抚州市', '崇仁县', '361024'); +INSERT INTO "public"."cardcodes" VALUES (2233, '江西省', '抚州市', '乐安县', '361025'); +INSERT INTO "public"."cardcodes" VALUES (2234, '江西省', '抚州市', '宜黄县', '361026'); +INSERT INTO "public"."cardcodes" VALUES (2235, '江西省', '抚州市', '金溪县', '361027'); +INSERT INTO "public"."cardcodes" VALUES (2236, '江西省', '抚州市', '资溪县', '361028'); +INSERT INTO "public"."cardcodes" VALUES (2237, '江西省', '抚州市', '东乡县', '361029'); +INSERT INTO "public"."cardcodes" VALUES (2238, '江西省', '抚州市', '广昌县', '361030'); +INSERT INTO "public"."cardcodes" VALUES (2239, '江西省', '吉安地区', '吉安市', '362401'); +INSERT INTO "public"."cardcodes" VALUES (2240, '江西省', '吉安地区', '井冈山市', '362402'); +INSERT INTO "public"."cardcodes" VALUES (2241, '江西省', '吉安地区', '吉安县', '362421'); +INSERT INTO "public"."cardcodes" VALUES (2242, '江西省', '吉安地区', '吉水县', '362422'); +INSERT INTO "public"."cardcodes" VALUES (2243, '江西省', '吉安地区', '峡江县', '362423'); +INSERT INTO "public"."cardcodes" VALUES (2244, '江西省', '吉安地区', '新干县', '362424'); +INSERT INTO "public"."cardcodes" VALUES (2245, '江西省', '吉安地区', '永丰县', '362425'); +INSERT INTO "public"."cardcodes" VALUES (2246, '江西省', '吉安地区', '泰和县', '362426'); +INSERT INTO "public"."cardcodes" VALUES (2247, '江西省', '吉安地区', '遂川县', '362427'); +INSERT INTO "public"."cardcodes" VALUES (2248, '江西省', '吉安地区', '万安县', '362428'); +INSERT INTO "public"."cardcodes" VALUES (2249, '江西省', '吉安地区', '安福县', '362429'); +INSERT INTO "public"."cardcodes" VALUES (2250, '江西省', '吉安地区', '永新县', '362430'); +INSERT INTO "public"."cardcodes" VALUES (2251, '江西省', '吉安地区', '莲花县', '362431'); +INSERT INTO "public"."cardcodes" VALUES (2252, '江西省', '吉安地区', '宁冈县', '362432'); +INSERT INTO "public"."cardcodes" VALUES (2253, '江西省', '吉安地区', '井岗山县', '362433'); +INSERT INTO "public"."cardcodes" VALUES (2254, '江西省', '抚州地区', '临川市', '362501'); +INSERT INTO "public"."cardcodes" VALUES (2255, '江西省', '抚州地区', '临川市', '362502'); +INSERT INTO "public"."cardcodes" VALUES (2256, '江西省', '抚州地区', '临川县', '362521'); +INSERT INTO "public"."cardcodes" VALUES (2257, '江西省', '抚州地区', '南城县', '362522'); +INSERT INTO "public"."cardcodes" VALUES (2258, '江西省', '抚州地区', '黎川县', '362523'); +INSERT INTO "public"."cardcodes" VALUES (2259, '江西省', '抚州地区', '南丰县', '362524'); +INSERT INTO "public"."cardcodes" VALUES (2260, '江西省', '抚州地区', '崇仁县', '362525'); +INSERT INTO "public"."cardcodes" VALUES (2261, '江西省', '抚州地区', '乐安县', '362526'); +INSERT INTO "public"."cardcodes" VALUES (2262, '江西省', '抚州地区', '宜黄县', '362527'); +INSERT INTO "public"."cardcodes" VALUES (2263, '江西省', '抚州地区', '金溪县', '362528'); +INSERT INTO "public"."cardcodes" VALUES (2264, '江西省', '抚州地区', '资溪县', '362529'); +INSERT INTO "public"."cardcodes" VALUES (2265, '江西省', '抚州地区', '进贤县', '362530'); +INSERT INTO "public"."cardcodes" VALUES (2266, '江西省', '抚州地区', '东乡县', '362531'); +INSERT INTO "public"."cardcodes" VALUES (2267, '江西省', '抚州地区', '广昌县', '362532'); +INSERT INTO "public"."cardcodes" VALUES (2268, '江西省', '九江地区', '九江县', '362621'); +INSERT INTO "public"."cardcodes" VALUES (2269, '江西省', '九江地区', '瑞昌县', '362622'); +INSERT INTO "public"."cardcodes" VALUES (2270, '江西省', '九江地区', '武宁县', '362623'); +INSERT INTO "public"."cardcodes" VALUES (2271, '江西省', '九江地区', '修水县', '362624'); +INSERT INTO "public"."cardcodes" VALUES (2272, '江西省', '九江地区', '永修县', '362625'); +INSERT INTO "public"."cardcodes" VALUES (2273, '江西省', '九江地区', '德安县', '362626'); +INSERT INTO "public"."cardcodes" VALUES (2274, '江西省', '九江地区', '星子县', '362627'); +INSERT INTO "public"."cardcodes" VALUES (2275, '江西省', '九江地区', '都昌县', '362628'); +INSERT INTO "public"."cardcodes" VALUES (2276, '江西省', '九江地区', '湖口县', '362629'); +INSERT INTO "public"."cardcodes" VALUES (2277, '江西省', '九江地区', '彭泽县', '362630'); +INSERT INTO "public"."cardcodes" VALUES (2278, '山东省', '青岛市', '崂山区', '370212'); +INSERT INTO "public"."cardcodes" VALUES (2279, '山东省', '青岛市', '李沧区', '370213'); +INSERT INTO "public"."cardcodes" VALUES (2280, '山东省', '青岛市', '城阳区', '370214'); +INSERT INTO "public"."cardcodes" VALUES (2281, '山东省', '青岛市', '市区', '370220'); +INSERT INTO "public"."cardcodes" VALUES (2282, '山东省', '青岛市', '崂山县', '370221'); +INSERT INTO "public"."cardcodes" VALUES (2283, '山东省', '青岛市', '即墨县', '370222'); +INSERT INTO "public"."cardcodes" VALUES (2284, '山东省', '青岛市', '胶南县', '370223'); +INSERT INTO "public"."cardcodes" VALUES (2285, '山东省', '青岛市', '胶县', '370224'); +INSERT INTO "public"."cardcodes" VALUES (2286, '山东省', '青岛市', '莱西县', '370225'); +INSERT INTO "public"."cardcodes" VALUES (2287, '山东省', '青岛市', '平度县', '370226'); +INSERT INTO "public"."cardcodes" VALUES (2288, '山东省', '青岛市', '胶州市', '370281'); +INSERT INTO "public"."cardcodes" VALUES (2289, '山东省', '青岛市', '即墨市', '370282'); +INSERT INTO "public"."cardcodes" VALUES (2290, '山东省', '青岛市', '平度市', '370283'); +INSERT INTO "public"."cardcodes" VALUES (2291, '山东省', '青岛市', '胶南市', '370284'); +INSERT INTO "public"."cardcodes" VALUES (2292, '山东省', '青岛市', '莱西市', '370285'); +INSERT INTO "public"."cardcodes" VALUES (2293, '山东省', '青岛市', '市辖区', '370201'); +INSERT INTO "public"."cardcodes" VALUES (2294, '山东省', '青岛市', '市南区', '370202'); +INSERT INTO "public"."cardcodes" VALUES (2295, '山东省', '青岛市', '市北区', '370203'); +INSERT INTO "public"."cardcodes" VALUES (2296, '山东省', '青岛市', '台东区', '370204'); +INSERT INTO "public"."cardcodes" VALUES (2297, '山东省', '青岛市', '四方区', '370205'); +INSERT INTO "public"."cardcodes" VALUES (2298, '山东省', '青岛市', '沧口区', '370206'); +INSERT INTO "public"."cardcodes" VALUES (2299, '山东省', '青岛市', '黄岛区', '370211'); +INSERT INTO "public"."cardcodes" VALUES (2300, '山东省', '淄博市', '市辖区', '370301'); +INSERT INTO "public"."cardcodes" VALUES (2301, '山东省', '淄博市', '淄川区', '370302'); +INSERT INTO "public"."cardcodes" VALUES (2302, '山东省', '淄博市', '张店区', '370303'); +INSERT INTO "public"."cardcodes" VALUES (2303, '山东省', '淄博市', '博山区', '370304'); +INSERT INTO "public"."cardcodes" VALUES (2304, '山东省', '淄博市', '临淄区', '370305'); +INSERT INTO "public"."cardcodes" VALUES (2305, '山东省', '淄博市', '周村区', '370306'); +INSERT INTO "public"."cardcodes" VALUES (2306, '山东省', '淄博市', '桓台县', '370321'); +INSERT INTO "public"."cardcodes" VALUES (2307, '山东省', '淄博市', '高青县', '370322'); +INSERT INTO "public"."cardcodes" VALUES (2308, '山东省', '淄博市', '沂源县', '370323'); +INSERT INTO "public"."cardcodes" VALUES (2309, '山东省', '枣庄市', '市辖区', '370401'); +INSERT INTO "public"."cardcodes" VALUES (2310, '山东省', '枣庄市', '市中区', '370402'); +INSERT INTO "public"."cardcodes" VALUES (2311, '山东省', '枣庄市', '薛城区', '370403'); +INSERT INTO "public"."cardcodes" VALUES (2312, '山东省', '枣庄市', '峄城区', '370404'); +INSERT INTO "public"."cardcodes" VALUES (2313, '山东省', '枣庄市', '台儿庄区', '370405'); +INSERT INTO "public"."cardcodes" VALUES (2314, '山东省', '枣庄市', '山亭区', '370406'); +INSERT INTO "public"."cardcodes" VALUES (2315, '山东省', '枣庄市', '市区', '370420'); +INSERT INTO "public"."cardcodes" VALUES (2316, '山东省', '枣庄市', '滕县', '370421'); +INSERT INTO "public"."cardcodes" VALUES (2317, '山东省', '枣庄市', '滕州市', '370481'); +INSERT INTO "public"."cardcodes" VALUES (2318, '山东省', '东营市', '市辖区', '370501'); +INSERT INTO "public"."cardcodes" VALUES (2319, '山东省', '东营市', '东营区', '370502'); +INSERT INTO "public"."cardcodes" VALUES (2320, '山东省', '东营市', '河口区', '370503'); +INSERT INTO "public"."cardcodes" VALUES (2321, '山东省', '东营市', '垦利县', '370521'); +INSERT INTO "public"."cardcodes" VALUES (2322, '山东省', '东营市', '利津县', '370522'); +INSERT INTO "public"."cardcodes" VALUES (2323, '山东省', '东营市', '广饶县', '370523'); +INSERT INTO "public"."cardcodes" VALUES (2324, '山东省', '烟台市', '市辖区', '370601'); +INSERT INTO "public"."cardcodes" VALUES (2325, '山东省', '烟台市', '芝罘区', '370602'); +INSERT INTO "public"."cardcodes" VALUES (2326, '山东省', '烟台市', '福山区', '370611'); +INSERT INTO "public"."cardcodes" VALUES (2327, '山东省', '烟台市', '牟平区', '370612'); +INSERT INTO "public"."cardcodes" VALUES (2328, '山东省', '烟台市', '莱山区', '370613'); +INSERT INTO "public"."cardcodes" VALUES (2329, '山东省', '烟台市', '龙口市', '370619'); +INSERT INTO "public"."cardcodes" VALUES (2330, '山东省', '烟台市', '威海市', '370620'); +INSERT INTO "public"."cardcodes" VALUES (2331, '山东省', '烟台市', '蓬莱县', '370622'); +INSERT INTO "public"."cardcodes" VALUES (2332, '山东省', '烟台市', '黄县', '370623'); +INSERT INTO "public"."cardcodes" VALUES (2333, '山东省', '烟台市', '招远县', '370624'); +INSERT INTO "public"."cardcodes" VALUES (2334, '山东省', '烟台市', '掖县', '370625'); +INSERT INTO "public"."cardcodes" VALUES (2335, '山东省', '烟台市', '莱阳县', '370627'); +INSERT INTO "public"."cardcodes" VALUES (2336, '山东省', '烟台市', '栖霞县', '370628'); +INSERT INTO "public"."cardcodes" VALUES (2337, '山东省', '烟台市', '海阳县', '370629'); +INSERT INTO "public"."cardcodes" VALUES (2338, '山东省', '烟台市', '牟平县', '370631'); +INSERT INTO "public"."cardcodes" VALUES (2339, '山东省', '烟台市', '文登县', '370632'); +INSERT INTO "public"."cardcodes" VALUES (2340, '山东省', '烟台市', '荣城县', '370633'); +INSERT INTO "public"."cardcodes" VALUES (2341, '山东省', '烟台市', '长岛县', '370634'); +INSERT INTO "public"."cardcodes" VALUES (2342, '山东省', '烟台市', '龙口市', '370681'); +INSERT INTO "public"."cardcodes" VALUES (2343, '山东省', '烟台市', '莱阳市', '370682'); +INSERT INTO "public"."cardcodes" VALUES (2344, '山东省', '烟台市', '莱州市', '370683'); +INSERT INTO "public"."cardcodes" VALUES (2345, '山东省', '烟台市', '蓬莱市', '370684'); +INSERT INTO "public"."cardcodes" VALUES (2346, '山东省', '烟台市', '招远市', '370685'); +INSERT INTO "public"."cardcodes" VALUES (2347, '山东省', '烟台市', '栖霞市', '370686'); +INSERT INTO "public"."cardcodes" VALUES (2348, '山东省', '烟台市', '海阳市', '370687'); +INSERT INTO "public"."cardcodes" VALUES (2349, '山东省', '潍坊市', '市辖区', '370701'); +INSERT INTO "public"."cardcodes" VALUES (2350, '山东省', '潍坊市', '潍城区', '370702'); +INSERT INTO "public"."cardcodes" VALUES (2351, '山东省', '潍坊市', '寒亭区', '370703'); +INSERT INTO "public"."cardcodes" VALUES (2352, '山东省', '潍坊市', '坊子区', '370704'); +INSERT INTO "public"."cardcodes" VALUES (2353, '山东省', '潍坊市', '奎文区', '370705'); +INSERT INTO "public"."cardcodes" VALUES (2354, '山东省', '潍坊市', '青州市', '370719'); +INSERT INTO "public"."cardcodes" VALUES (2355, '山东省', '潍坊市', '益都县', '370721'); +INSERT INTO "public"."cardcodes" VALUES (2356, '山东省', '潍坊市', '安丘县', '370722'); +INSERT INTO "public"."cardcodes" VALUES (2357, '山东省', '潍坊市', '寿光县', '370723'); +INSERT INTO "public"."cardcodes" VALUES (2358, '山东省', '潍坊市', '临朐县', '370724'); +INSERT INTO "public"."cardcodes" VALUES (2359, '山东省', '潍坊市', '昌乐县', '370725'); +INSERT INTO "public"."cardcodes" VALUES (2360, '山东省', '潍坊市', '昌邑县', '370726'); +INSERT INTO "public"."cardcodes" VALUES (2361, '山东省', '潍坊市', '高密县', '370727'); +INSERT INTO "public"."cardcodes" VALUES (2362, '山东省', '潍坊市', '诸城县', '370728'); +INSERT INTO "public"."cardcodes" VALUES (2363, '山东省', '潍坊市', '五莲县', '370729'); +INSERT INTO "public"."cardcodes" VALUES (2364, '山东省', '潍坊市', '青州市', '370781'); +INSERT INTO "public"."cardcodes" VALUES (2365, '山东省', '潍坊市', '诸城市', '370782'); +INSERT INTO "public"."cardcodes" VALUES (2366, '山东省', '潍坊市', '寿光市', '370783'); +INSERT INTO "public"."cardcodes" VALUES (2367, '山东省', '潍坊市', '安丘市', '370784'); +INSERT INTO "public"."cardcodes" VALUES (2368, '山东省', '潍坊市', '高密市', '370785'); +INSERT INTO "public"."cardcodes" VALUES (2369, '山东省', '潍坊市', '昌邑市', '370786'); +INSERT INTO "public"."cardcodes" VALUES (2370, '山东省', '济宁市', '市辖区', '370801'); +INSERT INTO "public"."cardcodes" VALUES (2371, '山东省', '济宁市', '市中区', '370802'); +INSERT INTO "public"."cardcodes" VALUES (2372, '山东省', '济宁市', '任城区', '370811'); +INSERT INTO "public"."cardcodes" VALUES (2373, '山东省', '济宁市', '曲阜市', '370819'); +INSERT INTO "public"."cardcodes" VALUES (2374, '山东省', '济宁市', '兖州县', '370822'); +INSERT INTO "public"."cardcodes" VALUES (2375, '山东省', '济宁市', '曲阜县', '370823'); +INSERT INTO "public"."cardcodes" VALUES (2376, '山东省', '济宁市', '邹县', '370825'); +INSERT INTO "public"."cardcodes" VALUES (2377, '山东省', '济宁市', '微山县', '370826'); +INSERT INTO "public"."cardcodes" VALUES (2378, '山东省', '济宁市', '鱼台县', '370827'); +INSERT INTO "public"."cardcodes" VALUES (2379, '山东省', '济宁市', '金乡县', '370828'); +INSERT INTO "public"."cardcodes" VALUES (2380, '山东省', '济宁市', '嘉祥县', '370829'); +INSERT INTO "public"."cardcodes" VALUES (2381, '山东省', '济宁市', '汶上县', '370830'); +INSERT INTO "public"."cardcodes" VALUES (2382, '山东省', '济宁市', '泗水县', '370831'); +INSERT INTO "public"."cardcodes" VALUES (2383, '山东省', '济宁市', '梁山县', '370832'); +INSERT INTO "public"."cardcodes" VALUES (2384, '山东省', '济宁市', '曲阜市', '370881'); +INSERT INTO "public"."cardcodes" VALUES (2385, '山东省', '济宁市', '兖州市', '370882'); +INSERT INTO "public"."cardcodes" VALUES (2386, '山东省', '济宁市', '邹城市', '370883'); +INSERT INTO "public"."cardcodes" VALUES (2387, '山东省', '泰安市', '市辖区', '370901'); +INSERT INTO "public"."cardcodes" VALUES (2388, '山东省', '泰安市', '泰山区', '370902'); +INSERT INTO "public"."cardcodes" VALUES (2389, '山东省', '泰安市', '岱岳区', '370903'); +INSERT INTO "public"."cardcodes" VALUES (2390, '山东省', '泰安市', '郊区', '370911'); +INSERT INTO "public"."cardcodes" VALUES (2391, '山东省', '泰安市', '莱芜市', '370919'); +INSERT INTO "public"."cardcodes" VALUES (2392, '山东省', '泰安市', '新泰市', '370920'); +INSERT INTO "public"."cardcodes" VALUES (2393, '山东省', '泰安市', '宁阳县', '370921'); +INSERT INTO "public"."cardcodes" VALUES (2394, '山东省', '泰安市', '肥城县', '370922'); +INSERT INTO "public"."cardcodes" VALUES (2395, '山东省', '泰安市', '东平县', '370923'); +INSERT INTO "public"."cardcodes" VALUES (2396, '山东省', '泰安市', '莱芜市', '370981'); +INSERT INTO "public"."cardcodes" VALUES (2397, '山东省', '泰安市', '新泰市', '370982'); +INSERT INTO "public"."cardcodes" VALUES (2398, '山东省', '泰安市', '肥城市', '370983'); +INSERT INTO "public"."cardcodes" VALUES (2399, '山东省', '威海市', '市辖区', '371001'); +INSERT INTO "public"."cardcodes" VALUES (2400, '山东省', '威海市', '环翠区', '371002'); +INSERT INTO "public"."cardcodes" VALUES (2401, '山东省', '威海市', '乳山县', '371021'); +INSERT INTO "public"."cardcodes" VALUES (2402, '山东省', '威海市', '文登市', '371081'); +INSERT INTO "public"."cardcodes" VALUES (2403, '山东省', '威海市', '荣成市', '371082'); +INSERT INTO "public"."cardcodes" VALUES (2404, '山东省', '威海市', '乳山市', '371083'); +INSERT INTO "public"."cardcodes" VALUES (2405, '山东省', '日照市', '市辖区', '371101'); +INSERT INTO "public"."cardcodes" VALUES (2406, '山东省', '日照市', '东港区', '371102'); +INSERT INTO "public"."cardcodes" VALUES (2407, '山东省', '日照市', '岚山区', '371103'); +INSERT INTO "public"."cardcodes" VALUES (2408, '山东省', '日照市', '五莲县', '371121'); +INSERT INTO "public"."cardcodes" VALUES (2409, '山东省', '日照市', '莒县', '371122'); +INSERT INTO "public"."cardcodes" VALUES (2410, '山东省', '莱芜市', '市辖区', '371201'); +INSERT INTO "public"."cardcodes" VALUES (2411, '山东省', '莱芜市', '莱城区', '371202'); +INSERT INTO "public"."cardcodes" VALUES (2412, '山东省', '莱芜市', '钢城区', '371203'); +INSERT INTO "public"."cardcodes" VALUES (2413, '山东省', '临沂市', '市辖区', '371301'); +INSERT INTO "public"."cardcodes" VALUES (2414, '山东省', '临沂市', '兰山区', '371302'); +INSERT INTO "public"."cardcodes" VALUES (2415, '山东省', '临沂市', '罗庄区', '371311'); +INSERT INTO "public"."cardcodes" VALUES (2416, '山东省', '临沂市', '河东区', '371312'); +INSERT INTO "public"."cardcodes" VALUES (2417, '山东省', '临沂市', '沂南县', '371321'); +INSERT INTO "public"."cardcodes" VALUES (2418, '山东省', '临沂市', '郯城县', '371322'); +INSERT INTO "public"."cardcodes" VALUES (2419, '山东省', '临沂市', '沂水县', '371323'); +INSERT INTO "public"."cardcodes" VALUES (2420, '山东省', '临沂市', '苍山县', '371324'); +INSERT INTO "public"."cardcodes" VALUES (2421, '山东省', '临沂市', '费县', '371325'); +INSERT INTO "public"."cardcodes" VALUES (2422, '山东省', '临沂市', '平邑县', '371326'); +INSERT INTO "public"."cardcodes" VALUES (2423, '山东省', '临沂市', '莒南县', '371327'); +INSERT INTO "public"."cardcodes" VALUES (2424, '山东省', '临沂市', '蒙阴县', '371328'); +INSERT INTO "public"."cardcodes" VALUES (2425, '山东省', '临沂市', '临沭县', '371329'); +INSERT INTO "public"."cardcodes" VALUES (2426, '山东省', '德州市', '市辖区', '371401'); +INSERT INTO "public"."cardcodes" VALUES (2427, '山东省', '德州市', '德城区', '371402'); +INSERT INTO "public"."cardcodes" VALUES (2428, '山东省', '德州市', '陵县', '371421'); +INSERT INTO "public"."cardcodes" VALUES (2429, '山东省', '德州市', '宁津县', '371422'); +INSERT INTO "public"."cardcodes" VALUES (2430, '山东省', '德州市', '庆云县', '371423'); +INSERT INTO "public"."cardcodes" VALUES (2431, '山东省', '德州市', '临邑县', '371424'); +INSERT INTO "public"."cardcodes" VALUES (2432, '山东省', '德州市', '齐河县', '371425'); +INSERT INTO "public"."cardcodes" VALUES (2433, '山东省', '德州市', '平原县', '371426'); +INSERT INTO "public"."cardcodes" VALUES (2434, '山东省', '德州市', '夏津县', '371427'); +INSERT INTO "public"."cardcodes" VALUES (2435, '山东省', '德州市', '武城县', '371428'); +INSERT INTO "public"."cardcodes" VALUES (2436, '山东省', '德州市', '乐陵市', '371481'); +INSERT INTO "public"."cardcodes" VALUES (2437, '山东省', '德州市', '禹城市', '371482'); +INSERT INTO "public"."cardcodes" VALUES (2438, '山东省', '聊城市', '市辖区', '371501'); +INSERT INTO "public"."cardcodes" VALUES (2439, '山东省', '聊城市', '东昌府区', '371502'); +INSERT INTO "public"."cardcodes" VALUES (2440, '山东省', '聊城市', '阳谷县', '371521'); +INSERT INTO "public"."cardcodes" VALUES (2441, '山东省', '聊城市', '莘县', '371522'); +INSERT INTO "public"."cardcodes" VALUES (2442, '山东省', '聊城市', '茌平县', '371523'); +INSERT INTO "public"."cardcodes" VALUES (2443, '山东省', '聊城市', '东阿县', '371524'); +INSERT INTO "public"."cardcodes" VALUES (2444, '山东省', '聊城市', '冠县', '371525'); +INSERT INTO "public"."cardcodes" VALUES (2445, '山东省', '聊城市', '高唐县', '371526'); +INSERT INTO "public"."cardcodes" VALUES (2446, '山东省', '聊城市', '临清市', '371581'); +INSERT INTO "public"."cardcodes" VALUES (2447, '山东省', '滨州市', '市辖区', '371601'); +INSERT INTO "public"."cardcodes" VALUES (2448, '山东省', '滨州市', '滨城区', '371602'); +INSERT INTO "public"."cardcodes" VALUES (2449, '山东省', '滨州市', '惠民县', '371621'); +INSERT INTO "public"."cardcodes" VALUES (2450, '山东省', '滨州市', '阳信县', '371622'); +INSERT INTO "public"."cardcodes" VALUES (2451, '山东省', '滨州市', '无棣县', '371623'); +INSERT INTO "public"."cardcodes" VALUES (2452, '山东省', '滨州市', '沾化县', '371624'); +INSERT INTO "public"."cardcodes" VALUES (2453, '山东省', '滨州市', '博兴县', '371625'); +INSERT INTO "public"."cardcodes" VALUES (2454, '山东省', '滨州市', '邹平县', '371626'); +INSERT INTO "public"."cardcodes" VALUES (2455, '山东省', '济南市', '市辖区', '370101'); +INSERT INTO "public"."cardcodes" VALUES (2456, '山东省', '济南市', '历下区', '370102'); +INSERT INTO "public"."cardcodes" VALUES (2457, '山东省', '济南市', '市中区', '370103'); +INSERT INTO "public"."cardcodes" VALUES (2458, '山东省', '济南市', '槐荫区', '370104'); +INSERT INTO "public"."cardcodes" VALUES (2459, '山东省', '济南市', '天桥区', '370105'); +INSERT INTO "public"."cardcodes" VALUES (2460, '山东省', '济南市', '郊区', '370111'); +INSERT INTO "public"."cardcodes" VALUES (2461, '山东省', '济南市', '历城区', '370112'); +INSERT INTO "public"."cardcodes" VALUES (2462, '山东省', '济南市', '长清区', '370113'); +INSERT INTO "public"."cardcodes" VALUES (2463, '山东省', '济南市', '市区', '370120'); +INSERT INTO "public"."cardcodes" VALUES (2464, '山东省', '济南市', '历城县', '370121'); +INSERT INTO "public"."cardcodes" VALUES (2465, '山东省', '济南市', '章丘县', '370122'); +INSERT INTO "public"."cardcodes" VALUES (2466, '山东省', '济南市', '长清县', '370123'); +INSERT INTO "public"."cardcodes" VALUES (2467, '山东省', '济南市', '平阴县', '370124'); +INSERT INTO "public"."cardcodes" VALUES (2468, '山东省', '济南市', '济阳县', '370125'); +INSERT INTO "public"."cardcodes" VALUES (2469, '山东省', '济南市', '商河县', '370126'); +INSERT INTO "public"."cardcodes" VALUES (2470, '山东省', '济南市', '章丘市', '370181'); +INSERT INTO "public"."cardcodes" VALUES (2471, '山东省', '菏泽市', '市辖区', '371701'); +INSERT INTO "public"."cardcodes" VALUES (2472, '山东省', '菏泽市', '牡丹区', '371702'); +INSERT INTO "public"."cardcodes" VALUES (2473, '山东省', '菏泽市', '曹县', '371721'); +INSERT INTO "public"."cardcodes" VALUES (2474, '山东省', '菏泽市', '单县', '371722'); +INSERT INTO "public"."cardcodes" VALUES (2475, '山东省', '菏泽市', '成武县', '371723'); +INSERT INTO "public"."cardcodes" VALUES (2476, '山东省', '菏泽市', '巨野县', '371724'); +INSERT INTO "public"."cardcodes" VALUES (2477, '山东省', '菏泽市', '郓城县', '371725'); +INSERT INTO "public"."cardcodes" VALUES (2478, '山东省', '菏泽市', '鄄城县', '371726'); +INSERT INTO "public"."cardcodes" VALUES (2479, '山东省', '菏泽市', '定陶县', '371727'); +INSERT INTO "public"."cardcodes" VALUES (2480, '山东省', '菏泽市', '东明县', '371728'); +INSERT INTO "public"."cardcodes" VALUES (2481, '山东省', '烟台地区', '烟台市', '372101'); +INSERT INTO "public"."cardcodes" VALUES (2482, '山东省', '烟台地区', '威海市', '372102'); +INSERT INTO "public"."cardcodes" VALUES (2483, '山东省', '烟台地区', '福山县', '372121'); +INSERT INTO "public"."cardcodes" VALUES (2484, '山东省', '烟台地区', '蓬莱县', '372122'); +INSERT INTO "public"."cardcodes" VALUES (2485, '山东省', '烟台地区', '招远县', '372124'); +INSERT INTO "public"."cardcodes" VALUES (2486, '山东省', '烟台地区', '掖县', '372125'); +INSERT INTO "public"."cardcodes" VALUES (2487, '山东省', '烟台地区', '莱西县', '372126'); +INSERT INTO "public"."cardcodes" VALUES (2488, '山东省', '烟台地区', '莱阳县', '372127'); +INSERT INTO "public"."cardcodes" VALUES (2489, '山东省', '烟台地区', '栖霞县', '372128'); +INSERT INTO "public"."cardcodes" VALUES (2490, '山东省', '烟台地区', '海阳县', '372129'); +INSERT INTO "public"."cardcodes" VALUES (2491, '山东省', '烟台地区', '乳山县', '372130'); +INSERT INTO "public"."cardcodes" VALUES (2492, '山东省', '烟台地区', '牟平县', '372131'); +INSERT INTO "public"."cardcodes" VALUES (2493, '山东省', '烟台地区', '文登县', '372132'); +INSERT INTO "public"."cardcodes" VALUES (2494, '山东省', '烟台地区', '荣城县', '372133'); +INSERT INTO "public"."cardcodes" VALUES (2495, '山东省', '烟台地区', '长岛县', '372134'); +INSERT INTO "public"."cardcodes" VALUES (2496, '山东省', '潍坊地区', '潍坊市', '372201'); +INSERT INTO "public"."cardcodes" VALUES (2497, '山东省', '潍坊地区', '益都县', '372221'); +INSERT INTO "public"."cardcodes" VALUES (2498, '山东省', '潍坊地区', '安丘县', '372222'); +INSERT INTO "public"."cardcodes" VALUES (2499, '山东省', '潍坊地区', '寿光县', '372223'); +INSERT INTO "public"."cardcodes" VALUES (2500, '山东省', '潍坊地区', '临朐县', '372224'); +INSERT INTO "public"."cardcodes" VALUES (2501, '山东省', '潍坊地区', '昌乐县', '372225'); +INSERT INTO "public"."cardcodes" VALUES (2502, '山东省', '潍坊地区', '昌邑县', '372226'); +INSERT INTO "public"."cardcodes" VALUES (2503, '山东省', '潍坊地区', '高密县', '372227'); +INSERT INTO "public"."cardcodes" VALUES (2504, '山东省', '潍坊地区', '诸城县', '372228'); +INSERT INTO "public"."cardcodes" VALUES (2505, '山东省', '潍坊地区', '平度县', '372230'); +INSERT INTO "public"."cardcodes" VALUES (2506, '山东省', '潍坊地区', '潍县', '372231'); +INSERT INTO "public"."cardcodes" VALUES (2507, '山东省', '滨州地区', '滨州市', '372301'); +INSERT INTO "public"."cardcodes" VALUES (2508, '山东省', '滨州地区', '惠民县', '372321'); +INSERT INTO "public"."cardcodes" VALUES (2509, '山东省', '滨州地区', '滨县', '372322'); +INSERT INTO "public"."cardcodes" VALUES (2510, '山东省', '滨州地区', '阳信县', '372323'); +INSERT INTO "public"."cardcodes" VALUES (2511, '山东省', '滨州地区', '无棣县', '372324'); +INSERT INTO "public"."cardcodes" VALUES (2512, '山东省', '滨州地区', '沾化县', '372325'); +INSERT INTO "public"."cardcodes" VALUES (2513, '山东省', '滨州地区', '利津县', '372326'); +INSERT INTO "public"."cardcodes" VALUES (2514, '山东省', '滨州地区', '广饶县', '372327'); +INSERT INTO "public"."cardcodes" VALUES (2515, '山东省', '滨州地区', '博兴县', '372328'); +INSERT INTO "public"."cardcodes" VALUES (2516, '山东省', '滨州地区', '桓台县', '372329'); +INSERT INTO "public"."cardcodes" VALUES (2517, '山东省', '滨州地区', '邹平县', '372330'); +INSERT INTO "public"."cardcodes" VALUES (2518, '山东省', '滨州地区', '高青县', '372331'); +INSERT INTO "public"."cardcodes" VALUES (2519, '山东省', '滨州地区', '垦利县', '372332'); +INSERT INTO "public"."cardcodes" VALUES (2520, '山东省', '德州地区', '德州市', '372401'); +INSERT INTO "public"."cardcodes" VALUES (2521, '山东省', '德州地区', '乐陵市', '372402'); +INSERT INTO "public"."cardcodes" VALUES (2522, '山东省', '德州地区', '禹城市', '372403'); +INSERT INTO "public"."cardcodes" VALUES (2523, '山东省', '德州地区', '陵县', '372421'); +INSERT INTO "public"."cardcodes" VALUES (2524, '山东省', '德州地区', '平原县', '372422'); +INSERT INTO "public"."cardcodes" VALUES (2525, '山东省', '德州地区', '夏津县', '372423'); +INSERT INTO "public"."cardcodes" VALUES (2526, '山东省', '德州地区', '武城县', '372424'); +INSERT INTO "public"."cardcodes" VALUES (2527, '山东省', '德州地区', '齐河县', '372425'); +INSERT INTO "public"."cardcodes" VALUES (2528, '山东省', '德州地区', '禹城县', '372426'); +INSERT INTO "public"."cardcodes" VALUES (2529, '山东省', '德州地区', '乐陵县', '372427'); +INSERT INTO "public"."cardcodes" VALUES (2530, '山东省', '德州地区', '临邑县', '372428'); +INSERT INTO "public"."cardcodes" VALUES (2531, '山东省', '德州地区', '商河县', '372429'); +INSERT INTO "public"."cardcodes" VALUES (2532, '山东省', '德州地区', '济阳县', '372430'); +INSERT INTO "public"."cardcodes" VALUES (2533, '山东省', '德州地区', '宁津县', '372431'); +INSERT INTO "public"."cardcodes" VALUES (2534, '山东省', '德州地区', '庆云县', '372432'); +INSERT INTO "public"."cardcodes" VALUES (2535, '山东省', '聊城市', '聊城市', '372501'); +INSERT INTO "public"."cardcodes" VALUES (2536, '山东省', '聊城市', '东昌府区', '372502'); +INSERT INTO "public"."cardcodes" VALUES (2537, '山东省', '聊城市', '阳谷县', '372521'); +INSERT INTO "public"."cardcodes" VALUES (2538, '山东省', '聊城市', '莘县', '372522'); +INSERT INTO "public"."cardcodes" VALUES (2539, '山东省', '聊城市', '茌平县', '372523'); +INSERT INTO "public"."cardcodes" VALUES (2540, '山东省', '聊城市', '东阿县', '372524'); +INSERT INTO "public"."cardcodes" VALUES (2541, '山东省', '聊城市', '冠县', '372525'); +INSERT INTO "public"."cardcodes" VALUES (2542, '山东省', '聊城市', '高唐县', '372526'); +INSERT INTO "public"."cardcodes" VALUES (2543, '山东省', '聊城市', '高唐县', '372527'); +INSERT INTO "public"."cardcodes" VALUES (2544, '山东省', '聊城市', '临清县', '372528'); +INSERT INTO "public"."cardcodes" VALUES (2545, '山东省', '聊城市', '临清市', '372581'); +INSERT INTO "public"."cardcodes" VALUES (2546, '山东省', '泰安地区', '泰安市', '372601'); +INSERT INTO "public"."cardcodes" VALUES (2547, '山东省', '泰安地区', '莱芜市', '372602'); +INSERT INTO "public"."cardcodes" VALUES (2548, '山东省', '泰安地区', '新泰市', '372603'); +INSERT INTO "public"."cardcodes" VALUES (2549, '山东省', '泰安地区', '莱芜县', '372622'); +INSERT INTO "public"."cardcodes" VALUES (2550, '山东省', '泰安地区', '新泰县', '372623'); +INSERT INTO "public"."cardcodes" VALUES (2551, '山东省', '泰安地区', '宁阳县', '372624'); +INSERT INTO "public"."cardcodes" VALUES (2552, '山东省', '泰安地区', '肥城县', '372625'); +INSERT INTO "public"."cardcodes" VALUES (2553, '山东省', '泰安地区', '东平县', '372626'); +INSERT INTO "public"."cardcodes" VALUES (2554, '山东省', '泰安地区', '平阴县', '372627'); +INSERT INTO "public"."cardcodes" VALUES (2555, '山东省', '泰安地区', '新汶县', '372628'); +INSERT INTO "public"."cardcodes" VALUES (2556, '山东省', '泰安地区', '泗水县', '372630'); +INSERT INTO "public"."cardcodes" VALUES (2557, '山东省', '济宁地区', '济宁市', '372701'); +INSERT INTO "public"."cardcodes" VALUES (2558, '山东省', '济宁地区', '兖州县', '372722'); +INSERT INTO "public"."cardcodes" VALUES (2559, '山东省', '济宁地区', '曲阜县', '372723'); +INSERT INTO "public"."cardcodes" VALUES (2560, '山东省', '济宁地区', '泗水县', '372724'); +INSERT INTO "public"."cardcodes" VALUES (2561, '山东省', '济宁地区', '邹县', '372725'); +INSERT INTO "public"."cardcodes" VALUES (2562, '山东省', '济宁地区', '微山县', '372726'); +INSERT INTO "public"."cardcodes" VALUES (2563, '山东省', '济宁地区', '鱼台县', '372727'); +INSERT INTO "public"."cardcodes" VALUES (2564, '山东省', '济宁地区', '金乡县', '372728'); +INSERT INTO "public"."cardcodes" VALUES (2565, '山东省', '济宁地区', '嘉祥县', '372729'); +INSERT INTO "public"."cardcodes" VALUES (2566, '山东省', '临沂地区', '临沂市', '372801'); +INSERT INTO "public"."cardcodes" VALUES (2567, '山东省', '临沂地区', '日照市', '372802'); +INSERT INTO "public"."cardcodes" VALUES (2568, '山东省', '临沂地区', '临沂县', '372821'); +INSERT INTO "public"."cardcodes" VALUES (2569, '山东省', '临沂地区', '郯城县', '372822'); +INSERT INTO "public"."cardcodes" VALUES (2570, '山东省', '临沂地区', '苍山县', '372823'); +INSERT INTO "public"."cardcodes" VALUES (2571, '山东省', '临沂地区', '莒南县', '372824'); +INSERT INTO "public"."cardcodes" VALUES (2572, '山东省', '临沂地区', '日照县', '372825'); +INSERT INTO "public"."cardcodes" VALUES (2573, '山东省', '临沂地区', '莒县', '372826'); +INSERT INTO "public"."cardcodes" VALUES (2574, '山东省', '临沂地区', '沂水县', '372827'); +INSERT INTO "public"."cardcodes" VALUES (2575, '山东省', '临沂地区', '沂源县', '372828'); +INSERT INTO "public"."cardcodes" VALUES (2576, '山东省', '临沂地区', '蒙阴县', '372829'); +INSERT INTO "public"."cardcodes" VALUES (2577, '山东省', '临沂地区', '平邑县', '372830'); +INSERT INTO "public"."cardcodes" VALUES (2578, '山东省', '临沂地区', '费县', '372831'); +INSERT INTO "public"."cardcodes" VALUES (2579, '山东省', '临沂地区', '沂南县', '372832'); +INSERT INTO "public"."cardcodes" VALUES (2580, '山东省', '临沂地区', '临沭县', '372833'); +INSERT INTO "public"."cardcodes" VALUES (2581, '山东省', '菏泽地区', '菏泽市', '372901'); +INSERT INTO "public"."cardcodes" VALUES (2582, '山东省', '菏泽地区', '菏泽县', '372921'); +INSERT INTO "public"."cardcodes" VALUES (2583, '山东省', '菏泽地区', '曹县', '372922'); +INSERT INTO "public"."cardcodes" VALUES (2584, '山东省', '菏泽地区', '定陶县', '372923'); +INSERT INTO "public"."cardcodes" VALUES (2585, '山东省', '菏泽地区', '成武县', '372924'); +INSERT INTO "public"."cardcodes" VALUES (2586, '山东省', '菏泽地区', '单县', '372925'); +INSERT INTO "public"."cardcodes" VALUES (2587, '山东省', '菏泽地区', '巨野县', '372926'); +INSERT INTO "public"."cardcodes" VALUES (2588, '山东省', '菏泽地区', '粱山县', '372927'); +INSERT INTO "public"."cardcodes" VALUES (2589, '山东省', '菏泽地区', '郓城县', '372928'); +INSERT INTO "public"."cardcodes" VALUES (2590, '山东省', '菏泽地区', '鄄城县', '372929'); +INSERT INTO "public"."cardcodes" VALUES (2591, '山东省', '菏泽地区', '东明县', '372930'); +INSERT INTO "public"."cardcodes" VALUES (2592, '山东省', NULL, '青州市', '379001'); +INSERT INTO "public"."cardcodes" VALUES (2593, '山东省', NULL, '龙口市', '379002'); +INSERT INTO "public"."cardcodes" VALUES (2594, '山东省', NULL, '曲阜市', '379003'); +INSERT INTO "public"."cardcodes" VALUES (2595, '山东省', NULL, '莱芜市', '379004'); +INSERT INTO "public"."cardcodes" VALUES (2596, '山东省', NULL, '新泰市', '379005'); +INSERT INTO "public"."cardcodes" VALUES (2597, '山东省', NULL, '胶州市', '379006'); +INSERT INTO "public"."cardcodes" VALUES (2598, '山东省', NULL, '诸城市', '379007'); +INSERT INTO "public"."cardcodes" VALUES (2599, '山东省', NULL, '莱阳市', '379008'); +INSERT INTO "public"."cardcodes" VALUES (2600, '山东省', NULL, '莱州市', '379009'); +INSERT INTO "public"."cardcodes" VALUES (2601, '山东省', NULL, '滕州市', '379010'); +INSERT INTO "public"."cardcodes" VALUES (2602, '山东省', NULL, '文登市', '379011'); +INSERT INTO "public"."cardcodes" VALUES (2603, '山东省', NULL, '荣城市', '379012'); +INSERT INTO "public"."cardcodes" VALUES (2604, '河南省', '鹤壁市', '鹤山区', '410602'); +INSERT INTO "public"."cardcodes" VALUES (2605, '河南省', '鹤壁市', '山城区', '410603'); +INSERT INTO "public"."cardcodes" VALUES (2606, '河南省', '鹤壁市', '淇滨区', '410611'); +INSERT INTO "public"."cardcodes" VALUES (2607, '河南省', '鹤壁市', '浚县', '410621'); +INSERT INTO "public"."cardcodes" VALUES (2608, '河南省', '鹤壁市', '淇县', '410622'); +INSERT INTO "public"."cardcodes" VALUES (2609, '河南省', '鹤壁市', '市辖区', '410601'); +INSERT INTO "public"."cardcodes" VALUES (2610, '河南省', '新乡市', '市辖区', '410701'); +INSERT INTO "public"."cardcodes" VALUES (2611, '河南省', '新乡市', '红旗区', '410702'); +INSERT INTO "public"."cardcodes" VALUES (2612, '河南省', '新乡市', '新华区', '410703'); +INSERT INTO "public"."cardcodes" VALUES (2613, '河南省', '新乡市', '北站区', '410704'); +INSERT INTO "public"."cardcodes" VALUES (2614, '河南省', '新乡市', '郊区', '410711'); +INSERT INTO "public"."cardcodes" VALUES (2615, '河南省', '新乡市', '新乡县', '410721'); +INSERT INTO "public"."cardcodes" VALUES (2616, '河南省', '新乡市', '汲县', '410722'); +INSERT INTO "public"."cardcodes" VALUES (2617, '河南省', '新乡市', '辉县', '410723'); +INSERT INTO "public"."cardcodes" VALUES (2618, '河南省', '新乡市', '获嘉县', '410724'); +INSERT INTO "public"."cardcodes" VALUES (2619, '河南省', '新乡市', '原阳县', '410725'); +INSERT INTO "public"."cardcodes" VALUES (2620, '河南省', '新乡市', '延津县', '410726'); +INSERT INTO "public"."cardcodes" VALUES (2621, '河南省', '新乡市', '封丘县', '410727'); +INSERT INTO "public"."cardcodes" VALUES (2622, '河南省', '新乡市', '长垣县', '410728'); +INSERT INTO "public"."cardcodes" VALUES (2623, '河南省', '新乡市', '卫辉市', '410781'); +INSERT INTO "public"."cardcodes" VALUES (2624, '河南省', '新乡市', '辉县市', '410782'); +INSERT INTO "public"."cardcodes" VALUES (2625, '河南省', '焦作市', '市辖区', '410801'); +INSERT INTO "public"."cardcodes" VALUES (2626, '河南省', '焦作市', '解放区', '410802'); +INSERT INTO "public"."cardcodes" VALUES (2627, '河南省', '焦作市', '中站区', '410803'); +INSERT INTO "public"."cardcodes" VALUES (2628, '河南省', '焦作市', '马村区', '410804'); +INSERT INTO "public"."cardcodes" VALUES (2629, '河南省', '焦作市', '山阳区', '410811'); +INSERT INTO "public"."cardcodes" VALUES (2630, '河南省', '焦作市', '修武县', '410821'); +INSERT INTO "public"."cardcodes" VALUES (2631, '河南省', '焦作市', '博爱县', '410822'); +INSERT INTO "public"."cardcodes" VALUES (2632, '河南省', '焦作市', '武陟县', '410823'); +INSERT INTO "public"."cardcodes" VALUES (2633, '河南省', '焦作市', '沁阳县', '410824'); +INSERT INTO "public"."cardcodes" VALUES (2634, '河南省', '焦作市', '温县', '410825'); +INSERT INTO "public"."cardcodes" VALUES (2635, '河南省', '焦作市', '孟县', '410826'); +INSERT INTO "public"."cardcodes" VALUES (2636, '河南省', '焦作市', '济源县', '410827'); +INSERT INTO "public"."cardcodes" VALUES (2637, '河南省', '焦作市', '济源市', '410881'); +INSERT INTO "public"."cardcodes" VALUES (2638, '河南省', '焦作市', '沁阳市', '410882'); +INSERT INTO "public"."cardcodes" VALUES (2639, '河南省', '焦作市', '孟州市', '410883'); +INSERT INTO "public"."cardcodes" VALUES (2640, '河南省', '濮阳市', '市辖区', '410901'); +INSERT INTO "public"."cardcodes" VALUES (2641, '河南省', '濮阳市', '市区', '410902'); +INSERT INTO "public"."cardcodes" VALUES (2642, '河南省', '濮阳市', '滑县', '410921'); +INSERT INTO "public"."cardcodes" VALUES (2643, '河南省', '濮阳市', '清丰县', '410922'); +INSERT INTO "public"."cardcodes" VALUES (2644, '河南省', '濮阳市', '南乐县', '410923'); +INSERT INTO "public"."cardcodes" VALUES (2645, '河南省', '濮阳市', '内黄县', '410924'); +INSERT INTO "public"."cardcodes" VALUES (2646, '河南省', '濮阳市', '长垣县', '410925'); +INSERT INTO "public"."cardcodes" VALUES (2647, '河南省', '濮阳市', '范县', '410926'); +INSERT INTO "public"."cardcodes" VALUES (2648, '河南省', '濮阳市', '台前县', '410927'); +INSERT INTO "public"."cardcodes" VALUES (2649, '河南省', '濮阳市', '濮阳县', '410928'); +INSERT INTO "public"."cardcodes" VALUES (2650, '河南省', '许昌市', '市辖区', '411001'); +INSERT INTO "public"."cardcodes" VALUES (2651, '河南省', '许昌市', '魏都区', '411002'); +INSERT INTO "public"."cardcodes" VALUES (2652, '河南省', '许昌市', '禹县', '411021'); +INSERT INTO "public"."cardcodes" VALUES (2653, '河南省', '许昌市', '长葛县', '411022'); +INSERT INTO "public"."cardcodes" VALUES (2654, '河南省', '许昌市', '许昌县', '411023'); +INSERT INTO "public"."cardcodes" VALUES (2655, '河南省', '许昌市', '鄢陵县', '411024'); +INSERT INTO "public"."cardcodes" VALUES (2656, '河南省', '许昌市', '襄城县', '411025'); +INSERT INTO "public"."cardcodes" VALUES (2657, '河南省', '许昌市', '禹州市', '411081'); +INSERT INTO "public"."cardcodes" VALUES (2658, '河南省', '许昌市', '长葛市', '411082'); +INSERT INTO "public"."cardcodes" VALUES (2659, '河南省', '漯河市', '市辖区', '411101'); +INSERT INTO "public"."cardcodes" VALUES (2660, '河南省', '漯河市', '源汇区', '411102'); +INSERT INTO "public"."cardcodes" VALUES (2661, '河南省', '漯河市', '郾城区', '411103'); +INSERT INTO "public"."cardcodes" VALUES (2662, '河南省', '漯河市', '召陵区', '411104'); +INSERT INTO "public"."cardcodes" VALUES (2663, '河南省', '漯河市', '舞阳县', '411121'); +INSERT INTO "public"."cardcodes" VALUES (2664, '河南省', '漯河市', '临颍县', '411122'); +INSERT INTO "public"."cardcodes" VALUES (2665, '河南省', '漯河市', '郾城县', '411123'); +INSERT INTO "public"."cardcodes" VALUES (2666, '河南省', '三门峡市', '市辖区', '411201'); +INSERT INTO "public"."cardcodes" VALUES (2667, '河南省', '三门峡市', '湖滨区', '411202'); +INSERT INTO "public"."cardcodes" VALUES (2668, '河南省', '三门峡市', '渑池县', '411221'); +INSERT INTO "public"."cardcodes" VALUES (2669, '河南省', '三门峡市', '陕县', '411222'); +INSERT INTO "public"."cardcodes" VALUES (2670, '河南省', '三门峡市', '灵宝县', '411223'); +INSERT INTO "public"."cardcodes" VALUES (2671, '河南省', '三门峡市', '卢氏县', '411224'); +INSERT INTO "public"."cardcodes" VALUES (2672, '河南省', '三门峡市', '义马市', '411281'); +INSERT INTO "public"."cardcodes" VALUES (2673, '河南省', '三门峡市', '灵宝市', '411282'); +INSERT INTO "public"."cardcodes" VALUES (2674, '河南省', '南阳市', '市辖区', '411301'); +INSERT INTO "public"."cardcodes" VALUES (2675, '河南省', '南阳市', '宛城区', '411302'); +INSERT INTO "public"."cardcodes" VALUES (2676, '河南省', '南阳市', '卧龙区', '411303'); +INSERT INTO "public"."cardcodes" VALUES (2677, '河南省', '南阳市', '南召县', '411321'); +INSERT INTO "public"."cardcodes" VALUES (2678, '河南省', '南阳市', '方城县', '411322'); +INSERT INTO "public"."cardcodes" VALUES (2679, '河南省', '南阳市', '西峡县', '411323'); +INSERT INTO "public"."cardcodes" VALUES (2680, '河南省', '南阳市', '镇平县', '411324'); +INSERT INTO "public"."cardcodes" VALUES (2681, '河南省', '南阳市', '内乡县', '411325'); +INSERT INTO "public"."cardcodes" VALUES (2682, '河南省', '南阳市', '淅川县', '411326'); +INSERT INTO "public"."cardcodes" VALUES (2683, '河南省', '南阳市', '社旗县', '411327'); +INSERT INTO "public"."cardcodes" VALUES (2684, '河南省', '南阳市', '唐河县', '411328'); +INSERT INTO "public"."cardcodes" VALUES (2685, '河南省', '南阳市', '新野县', '411329'); +INSERT INTO "public"."cardcodes" VALUES (2686, '河南省', '南阳市', '桐柏县', '411330'); +INSERT INTO "public"."cardcodes" VALUES (2687, '河南省', '南阳市', '邓州市', '411381'); +INSERT INTO "public"."cardcodes" VALUES (2688, '河南省', '郑州市', '市辖区', '410101'); +INSERT INTO "public"."cardcodes" VALUES (2689, '河南省', '郑州市', '中原区', '410102'); +INSERT INTO "public"."cardcodes" VALUES (2690, '河南省', '郑州市', '二七区', '410103'); +INSERT INTO "public"."cardcodes" VALUES (2691, '河南省', '郑州市', '管城回族区', '410104'); +INSERT INTO "public"."cardcodes" VALUES (2692, '河南省', '郑州市', '金水区', '410105'); +INSERT INTO "public"."cardcodes" VALUES (2693, '河南省', '郑州市', '上街区', '410106'); +INSERT INTO "public"."cardcodes" VALUES (2694, '河南省', '郑州市', '新密区', '410107'); +INSERT INTO "public"."cardcodes" VALUES (2695, '河南省', '郑州市', '邙山区', '410108'); +INSERT INTO "public"."cardcodes" VALUES (2696, '河南省', '郑州市', '金海区', '410111'); +INSERT INTO "public"."cardcodes" VALUES (2697, '河南省', '郑州市', '郊区', '410112'); +INSERT INTO "public"."cardcodes" VALUES (2698, '河南省', '郑州市', '市区', '410120'); +INSERT INTO "public"."cardcodes" VALUES (2699, '河南省', '郑州市', '荥阳县', '410121'); +INSERT INTO "public"."cardcodes" VALUES (2700, '河南省', '郑州市', '中牟县', '410122'); +INSERT INTO "public"."cardcodes" VALUES (2701, '河南省', '郑州市', '新郑县', '410123'); +INSERT INTO "public"."cardcodes" VALUES (2702, '河南省', '郑州市', '巩县', '410124'); +INSERT INTO "public"."cardcodes" VALUES (2703, '河南省', '郑州市', '登封县', '410125'); +INSERT INTO "public"."cardcodes" VALUES (2704, '河南省', '郑州市', '密县', '410126'); +INSERT INTO "public"."cardcodes" VALUES (2705, '河南省', '郑州市', '巩义市', '410181'); +INSERT INTO "public"."cardcodes" VALUES (2706, '河南省', '郑州市', '荥阳市', '410182'); +INSERT INTO "public"."cardcodes" VALUES (2707, '河南省', '郑州市', '新密市', '410183'); +INSERT INTO "public"."cardcodes" VALUES (2708, '河南省', '郑州市', '新郑市', '410184'); +INSERT INTO "public"."cardcodes" VALUES (2709, '河南省', '郑州市', '登封市', '410185'); +INSERT INTO "public"."cardcodes" VALUES (2710, '河南省', '开封市', '市辖区', '410201'); +INSERT INTO "public"."cardcodes" VALUES (2711, '河南省', '开封市', '龙亭区', '410202'); +INSERT INTO "public"."cardcodes" VALUES (2712, '河南省', '开封市', '顺河回族区', '410203'); +INSERT INTO "public"."cardcodes" VALUES (2713, '河南省', '开封市', '鼓楼区', '410204'); +INSERT INTO "public"."cardcodes" VALUES (2714, '河南省', '开封市', '禹王台区', '410205'); +INSERT INTO "public"."cardcodes" VALUES (2715, '河南省', '开封市', '金明区', '410211'); +INSERT INTO "public"."cardcodes" VALUES (2716, '河南省', '开封市', '杞县', '410221'); +INSERT INTO "public"."cardcodes" VALUES (2717, '河南省', '开封市', '通许县', '410222'); +INSERT INTO "public"."cardcodes" VALUES (2718, '河南省', '开封市', '尉氏县', '410223'); +INSERT INTO "public"."cardcodes" VALUES (2719, '河南省', '开封市', '开封县', '410224'); +INSERT INTO "public"."cardcodes" VALUES (2720, '河南省', '开封市', '兰考县', '410225'); +INSERT INTO "public"."cardcodes" VALUES (2721, '河南省', '洛阳市', '市辖区', '410301'); +INSERT INTO "public"."cardcodes" VALUES (2722, '河南省', '洛阳市', '老城区', '410302'); +INSERT INTO "public"."cardcodes" VALUES (2723, '河南省', '洛阳市', '西工区', '410303'); +INSERT INTO "public"."cardcodes" VALUES (2724, '河南省', '洛阳市', '廛河回族区', '410304'); +INSERT INTO "public"."cardcodes" VALUES (2725, '河南省', '洛阳市', '涧西区', '410305'); +INSERT INTO "public"."cardcodes" VALUES (2726, '河南省', '洛阳市', '吉利区', '410306'); +INSERT INTO "public"."cardcodes" VALUES (2727, '河南省', '洛阳市', '洛龙区', '410307'); +INSERT INTO "public"."cardcodes" VALUES (2728, '河南省', '洛阳市', '郊区', '410311'); +INSERT INTO "public"."cardcodes" VALUES (2729, '河南省', '洛阳市', '偃师县', '410321'); +INSERT INTO "public"."cardcodes" VALUES (2730, '河南省', '洛阳市', '孟津县', '410322'); +INSERT INTO "public"."cardcodes" VALUES (2731, '河南省', '洛阳市', '新安县', '410323'); +INSERT INTO "public"."cardcodes" VALUES (2732, '河南省', '洛阳市', '栾川县', '410324'); +INSERT INTO "public"."cardcodes" VALUES (2733, '河南省', '洛阳市', '嵩县', '410325'); +INSERT INTO "public"."cardcodes" VALUES (2734, '河南省', '洛阳市', '汝阳县', '410326'); +INSERT INTO "public"."cardcodes" VALUES (2735, '河南省', '洛阳市', '宜阳县', '410327'); +INSERT INTO "public"."cardcodes" VALUES (2736, '河南省', '洛阳市', '洛宁县', '410328'); +INSERT INTO "public"."cardcodes" VALUES (2737, '河南省', '洛阳市', '伊川县', '410329'); +INSERT INTO "public"."cardcodes" VALUES (2738, '河南省', '洛阳市', '偃师市', '410381'); +INSERT INTO "public"."cardcodes" VALUES (2739, '河南省', '平顶山市', '市辖区', '410401'); +INSERT INTO "public"."cardcodes" VALUES (2740, '河南省', '平顶山市', '新华区', '410402'); +INSERT INTO "public"."cardcodes" VALUES (2741, '河南省', '平顶山市', '卫东区', '410403'); +INSERT INTO "public"."cardcodes" VALUES (2742, '河南省', '平顶山市', '石龙区', '410404'); +INSERT INTO "public"."cardcodes" VALUES (2743, '河南省', '平顶山市', '湛河区', '410411'); +INSERT INTO "public"."cardcodes" VALUES (2744, '河南省', '平顶山市', '舞钢区', '410412'); +INSERT INTO "public"."cardcodes" VALUES (2745, '河南省', '平顶山市', '宝丰县', '410421'); +INSERT INTO "public"."cardcodes" VALUES (2746, '河南省', '平顶山市', '叶县', '410422'); +INSERT INTO "public"."cardcodes" VALUES (2747, '河南省', '平顶山市', '鲁山县', '410423'); +INSERT INTO "public"."cardcodes" VALUES (2748, '河南省', '平顶山市', '临汝县', '410424'); +INSERT INTO "public"."cardcodes" VALUES (2749, '河南省', '平顶山市', '郏县', '410425'); +INSERT INTO "public"."cardcodes" VALUES (2750, '河南省', '平顶山市', '襄城县', '410426'); +INSERT INTO "public"."cardcodes" VALUES (2751, '河南省', '平顶山市', '舞钢市', '410481'); +INSERT INTO "public"."cardcodes" VALUES (2752, '河南省', '平顶山市', '汝州市', '410482'); +INSERT INTO "public"."cardcodes" VALUES (2753, '河南省', '安阳市', '市辖区', '410501'); +INSERT INTO "public"."cardcodes" VALUES (2754, '河南省', '安阳市', '文峰区', '410502'); +INSERT INTO "public"."cardcodes" VALUES (2755, '河南省', '安阳市', '北关区', '410503'); +INSERT INTO "public"."cardcodes" VALUES (2756, '河南省', '安阳市', '铁西区', '410504'); +INSERT INTO "public"."cardcodes" VALUES (2757, '河南省', '安阳市', '殷都区', '410505'); +INSERT INTO "public"."cardcodes" VALUES (2758, '河南省', '安阳市', '龙安区', '410506'); +INSERT INTO "public"."cardcodes" VALUES (2759, '河南省', '安阳市', '郊区', '410511'); +INSERT INTO "public"."cardcodes" VALUES (2760, '河南省', '安阳市', '林县', '410521'); +INSERT INTO "public"."cardcodes" VALUES (2761, '河南省', '安阳市', '安阳县', '410522'); +INSERT INTO "public"."cardcodes" VALUES (2762, '河南省', '安阳市', '汤阴县', '410523'); +INSERT INTO "public"."cardcodes" VALUES (2763, '河南省', '安阳市', '淇县', '410524'); +INSERT INTO "public"."cardcodes" VALUES (2764, '河南省', '安阳市', '浚县', '410525'); +INSERT INTO "public"."cardcodes" VALUES (2765, '河南省', '安阳市', '滑县', '410526'); +INSERT INTO "public"."cardcodes" VALUES (2766, '河南省', '安阳市', '内黄县', '410527'); +INSERT INTO "public"."cardcodes" VALUES (2767, '河南省', '安阳市', '林州市', '410581'); +INSERT INTO "public"."cardcodes" VALUES (2768, '河南省', '商丘市', '市辖区', '411401'); +INSERT INTO "public"."cardcodes" VALUES (2769, '河南省', '商丘市', '梁园区', '411402'); +INSERT INTO "public"."cardcodes" VALUES (2770, '河南省', '商丘市', '睢阳区', '411403'); +INSERT INTO "public"."cardcodes" VALUES (2771, '河南省', '商丘市', '民权县', '411421'); +INSERT INTO "public"."cardcodes" VALUES (2772, '河南省', '商丘市', '睢县', '411422'); +INSERT INTO "public"."cardcodes" VALUES (2773, '河南省', '商丘市', '宁陵县', '411423'); +INSERT INTO "public"."cardcodes" VALUES (2774, '河南省', '商丘市', '柘城县', '411424'); +INSERT INTO "public"."cardcodes" VALUES (2775, '河南省', '商丘市', '虞城县', '411425'); +INSERT INTO "public"."cardcodes" VALUES (2776, '河南省', '商丘市', '夏邑县', '411426'); +INSERT INTO "public"."cardcodes" VALUES (2777, '河南省', '商丘市', '永城市', '411481'); +INSERT INTO "public"."cardcodes" VALUES (2778, '河南省', '信阳市', '市辖区', '411501'); +INSERT INTO "public"."cardcodes" VALUES (2779, '河南省', '信阳市', '师河区', '411502'); +INSERT INTO "public"."cardcodes" VALUES (2780, '河南省', '信阳市', '平桥区', '411503'); +INSERT INTO "public"."cardcodes" VALUES (2781, '河南省', '信阳市', '罗山县', '411521'); +INSERT INTO "public"."cardcodes" VALUES (2782, '河南省', '信阳市', '光山县', '411522'); +INSERT INTO "public"."cardcodes" VALUES (2783, '河南省', '信阳市', '新县', '411523'); +INSERT INTO "public"."cardcodes" VALUES (2784, '河南省', '信阳市', '商城县', '411524'); +INSERT INTO "public"."cardcodes" VALUES (2785, '河南省', '信阳市', '固始县', '411525'); +INSERT INTO "public"."cardcodes" VALUES (2786, '河南省', '信阳市', '潢川县', '411526'); +INSERT INTO "public"."cardcodes" VALUES (2787, '河南省', '信阳市', '淮滨县', '411527'); +INSERT INTO "public"."cardcodes" VALUES (2788, '河南省', '信阳市', '息县', '411528'); +INSERT INTO "public"."cardcodes" VALUES (2789, '河南省', '周口市', '市辖区', '411601'); +INSERT INTO "public"."cardcodes" VALUES (2790, '河南省', '周口市', '川汇区', '411602'); +INSERT INTO "public"."cardcodes" VALUES (2791, '河南省', '周口市', '扶沟县', '411621'); +INSERT INTO "public"."cardcodes" VALUES (2792, '河南省', '周口市', '西华县', '411622'); +INSERT INTO "public"."cardcodes" VALUES (2793, '河南省', '周口市', '商水县', '411623'); +INSERT INTO "public"."cardcodes" VALUES (2794, '河南省', '周口市', '沈丘县', '411624'); +INSERT INTO "public"."cardcodes" VALUES (2795, '河南省', '周口市', '郸城县', '411625'); +INSERT INTO "public"."cardcodes" VALUES (2796, '河南省', '周口市', '淮阳县', '411626'); +INSERT INTO "public"."cardcodes" VALUES (2797, '河南省', '周口市', '太康县', '411627'); +INSERT INTO "public"."cardcodes" VALUES (2798, '河南省', '周口市', '鹿邑县', '411628'); +INSERT INTO "public"."cardcodes" VALUES (2799, '河南省', '周口市', '项城市', '411681'); +INSERT INTO "public"."cardcodes" VALUES (2800, '河南省', '驻马店市', '市辖区', '411701'); +INSERT INTO "public"."cardcodes" VALUES (2801, '河南省', '驻马店市', '驿城区', '411702'); +INSERT INTO "public"."cardcodes" VALUES (2802, '河南省', '驻马店市', '西平县', '411721'); +INSERT INTO "public"."cardcodes" VALUES (2803, '河南省', '驻马店市', '上蔡县', '411722'); +INSERT INTO "public"."cardcodes" VALUES (2804, '河南省', '驻马店市', '平舆县', '411723'); +INSERT INTO "public"."cardcodes" VALUES (2805, '河南省', '驻马店市', '正阳县', '411724'); +INSERT INTO "public"."cardcodes" VALUES (2806, '河南省', '驻马店市', '确山县', '411725'); +INSERT INTO "public"."cardcodes" VALUES (2807, '河南省', '驻马店市', '泌阳县', '411726'); +INSERT INTO "public"."cardcodes" VALUES (2808, '河南省', '驻马店市', '汝南县', '411727'); +INSERT INTO "public"."cardcodes" VALUES (2809, '河南省', '驻马店市', '遂平县', '411728'); +INSERT INTO "public"."cardcodes" VALUES (2810, '河南省', '驻马店市', '新蔡县', '411729'); +INSERT INTO "public"."cardcodes" VALUES (2811, '河南省', '商丘地区', '商丘市', '412301'); +INSERT INTO "public"."cardcodes" VALUES (2812, '河南省', '商丘地区', '永城市', '412302'); +INSERT INTO "public"."cardcodes" VALUES (2813, '河南省', '商丘地区', '虞城县', '412321'); +INSERT INTO "public"."cardcodes" VALUES (2814, '河南省', '商丘地区', '商丘县', '412322'); +INSERT INTO "public"."cardcodes" VALUES (2815, '河南省', '商丘地区', '民权县', '412323'); +INSERT INTO "public"."cardcodes" VALUES (2816, '河南省', '商丘地区', '宁陵县', '412324'); +INSERT INTO "public"."cardcodes" VALUES (2817, '河南省', '商丘地区', '睢县', '412325'); +INSERT INTO "public"."cardcodes" VALUES (2818, '河南省', '商丘地区', '夏邑县', '412326'); +INSERT INTO "public"."cardcodes" VALUES (2819, '河南省', '商丘地区', '柘城县', '412327'); +INSERT INTO "public"."cardcodes" VALUES (2820, '河南省', '商丘地区', '永城县', '412328'); +INSERT INTO "public"."cardcodes" VALUES (2821, '河南省', '开封地区', '杞县', '412421'); +INSERT INTO "public"."cardcodes" VALUES (2822, '河南省', '开封地区', '通许县', '412422'); +INSERT INTO "public"."cardcodes" VALUES (2823, '河南省', '开封地区', '尉氏县', '412423'); +INSERT INTO "public"."cardcodes" VALUES (2824, '河南省', '开封地区', '开封县', '412424'); +INSERT INTO "public"."cardcodes" VALUES (2825, '河南省', '开封地区', '中牟县', '412425'); +INSERT INTO "public"."cardcodes" VALUES (2826, '河南省', '开封地区', '新郑县', '412426'); +INSERT INTO "public"."cardcodes" VALUES (2827, '河南省', '开封地区', '巩县', '412427'); +INSERT INTO "public"."cardcodes" VALUES (2828, '河南省', '开封地区', '登封县', '412428'); +INSERT INTO "public"."cardcodes" VALUES (2829, '河南省', '开封地区', '密县', '412429'); +INSERT INTO "public"."cardcodes" VALUES (2830, '河南省', '开封地区', '兰考县', '412430'); +INSERT INTO "public"."cardcodes" VALUES (2831, '河南省', '三门峡市', '三门峡市', '412501'); +INSERT INTO "public"."cardcodes" VALUES (2832, '河南省', '三门峡市', '义马市', '412502'); +INSERT INTO "public"."cardcodes" VALUES (2833, '河南省', '三门峡市', '偃师县', '412521'); +INSERT INTO "public"."cardcodes" VALUES (2834, '河南省', '三门峡市', '孟津县', '412522'); +INSERT INTO "public"."cardcodes" VALUES (2835, '河南省', '三门峡市', '新安县', '412523'); +INSERT INTO "public"."cardcodes" VALUES (2836, '河南省', '三门峡市', '渑池县', '412524'); +INSERT INTO "public"."cardcodes" VALUES (2837, '河南省', '三门峡市', '陕县', '412525'); +INSERT INTO "public"."cardcodes" VALUES (2838, '河南省', '三门峡市', '灵宝县', '412526'); +INSERT INTO "public"."cardcodes" VALUES (2839, '河南省', '三门峡市', '伊川县', '412527'); +INSERT INTO "public"."cardcodes" VALUES (2840, '河南省', '三门峡市', '汝阳县', '412528'); +INSERT INTO "public"."cardcodes" VALUES (2841, '河南省', '三门峡市', '嵩县', '412529'); +INSERT INTO "public"."cardcodes" VALUES (2842, '河南省', '三门峡市', '洛宁县', '412530'); +INSERT INTO "public"."cardcodes" VALUES (2843, '河南省', '三门峡市', '卢氏县', '412531'); +INSERT INTO "public"."cardcodes" VALUES (2844, '河南省', '三门峡市', '栾川县', '412532'); +INSERT INTO "public"."cardcodes" VALUES (2845, '河南省', '三门峡市', '临汝县', '412533'); +INSERT INTO "public"."cardcodes" VALUES (2846, '河南省', '三门峡市', '宜阳县', '412534'); +INSERT INTO "public"."cardcodes" VALUES (2847, '河南省', '周口地区', '周口市', '412701'); +INSERT INTO "public"."cardcodes" VALUES (2848, '河南省', '周口地区', '项城市', '412702'); +INSERT INTO "public"."cardcodes" VALUES (2849, '河南省', '周口地区', '扶沟县', '412721'); +INSERT INTO "public"."cardcodes" VALUES (2850, '河南省', '周口地区', '西华县', '412722'); +INSERT INTO "public"."cardcodes" VALUES (2851, '河南省', '周口地区', '商水县', '412723'); +INSERT INTO "public"."cardcodes" VALUES (2852, '河南省', '周口地区', '太康县', '412724'); +INSERT INTO "public"."cardcodes" VALUES (2853, '河南省', '周口地区', '鹿邑县', '412725'); +INSERT INTO "public"."cardcodes" VALUES (2854, '河南省', '周口地区', '郸城县', '412726'); +INSERT INTO "public"."cardcodes" VALUES (2855, '河南省', '周口地区', '淮阳县', '412727'); +INSERT INTO "public"."cardcodes" VALUES (2856, '河南省', '周口地区', '沈丘县', '412728'); +INSERT INTO "public"."cardcodes" VALUES (2857, '河南省', '驻马店地区', '驻马店市', '412801'); +INSERT INTO "public"."cardcodes" VALUES (2858, '河南省', '驻马店地区', '确山县', '412821'); +INSERT INTO "public"."cardcodes" VALUES (2859, '河南省', '驻马店地区', '泌阳县', '412822'); +INSERT INTO "public"."cardcodes" VALUES (2860, '河南省', '驻马店地区', '遂平县', '412823'); +INSERT INTO "public"."cardcodes" VALUES (2861, '河南省', '驻马店地区', '西平县', '412824'); +INSERT INTO "public"."cardcodes" VALUES (2862, '河南省', '驻马店地区', '上蔡县', '412825'); +INSERT INTO "public"."cardcodes" VALUES (2863, '河南省', '驻马店地区', '汝南县', '412826'); +INSERT INTO "public"."cardcodes" VALUES (2864, '河南省', '驻马店地区', '平舆县', '412827'); +INSERT INTO "public"."cardcodes" VALUES (2865, '河南省', '驻马店地区', '新蔡县', '412828'); +INSERT INTO "public"."cardcodes" VALUES (2866, '河南省', '驻马店地区', '正阳县', '412829'); +INSERT INTO "public"."cardcodes" VALUES (2867, '河南省', '南阳市', '卧龙区', '412901'); +INSERT INTO "public"."cardcodes" VALUES (2868, '河南省', '南阳市', '邓州市', '412902'); +INSERT INTO "public"."cardcodes" VALUES (2869, '河南省', '南阳市', '宛城区', '412903'); +INSERT INTO "public"."cardcodes" VALUES (2870, '河南省', '南阳市', '南召县', '412921'); +INSERT INTO "public"."cardcodes" VALUES (2871, '河南省', '南阳市', '方城县', '412922'); +INSERT INTO "public"."cardcodes" VALUES (2872, '河南省', '南阳市', '西峡县', '412923'); +INSERT INTO "public"."cardcodes" VALUES (2873, '河南省', '南阳市', '南阳县', '412924'); +INSERT INTO "public"."cardcodes" VALUES (2874, '河南省', '南阳市', '镇平县', '412925'); +INSERT INTO "public"."cardcodes" VALUES (2875, '河南省', '南阳市', '内乡县', '412926'); +INSERT INTO "public"."cardcodes" VALUES (2876, '河南省', '南阳市', '淅川县', '412927'); +INSERT INTO "public"."cardcodes" VALUES (2877, '河南省', '南阳市', '社旗县', '412928'); +INSERT INTO "public"."cardcodes" VALUES (2878, '河南省', '南阳市', '唐河县', '412929'); +INSERT INTO "public"."cardcodes" VALUES (2879, '河南省', '南阳市', '邓县', '412930'); +INSERT INTO "public"."cardcodes" VALUES (2880, '河南省', '南阳市', '新野县', '412931'); +INSERT INTO "public"."cardcodes" VALUES (2881, '河南省', '南阳市', '桐柏县', '412932'); +INSERT INTO "public"."cardcodes" VALUES (2882, '河南省', '南阳市', '规划控制区', '412933'); +INSERT INTO "public"."cardcodes" VALUES (2883, '河南省', '信阳地区', '信阳市', '413001'); +INSERT INTO "public"."cardcodes" VALUES (2884, '河南省', '信阳地区', '息县', '413021'); +INSERT INTO "public"."cardcodes" VALUES (2885, '河南省', '信阳地区', '淮滨县', '413022'); +INSERT INTO "public"."cardcodes" VALUES (2886, '河南省', '信阳地区', '平桥区', '413023'); +INSERT INTO "public"."cardcodes" VALUES (2887, '河南省', '信阳地区', '潢川县', '413024'); +INSERT INTO "public"."cardcodes" VALUES (2888, '河南省', '信阳地区', '光山县', '413025'); +INSERT INTO "public"."cardcodes" VALUES (2889, '河南省', '信阳地区', '固始县', '413026'); +INSERT INTO "public"."cardcodes" VALUES (2890, '河南省', '信阳地区', '商城县', '413027'); +INSERT INTO "public"."cardcodes" VALUES (2891, '河南省', '信阳地区', '罗山县', '413028'); +INSERT INTO "public"."cardcodes" VALUES (2892, '河南省', '信阳地区', '新县', '413029'); +INSERT INTO "public"."cardcodes" VALUES (2893, '河南省', NULL, '许昌市', '412601'); +INSERT INTO "public"."cardcodes" VALUES (2894, '河南省', NULL, '漯河市', '412602'); +INSERT INTO "public"."cardcodes" VALUES (2895, '河南省', NULL, '长葛县', '412621'); +INSERT INTO "public"."cardcodes" VALUES (2896, '河南省', NULL, '禹县', '412622'); +INSERT INTO "public"."cardcodes" VALUES (2897, '河南省', NULL, '鄢陵县', '412623'); +INSERT INTO "public"."cardcodes" VALUES (2898, '河南省', NULL, '许昌县', '412624'); +INSERT INTO "public"."cardcodes" VALUES (2899, '河南省', NULL, '郏县', '412625'); +INSERT INTO "public"."cardcodes" VALUES (2900, '河南省', NULL, '临颍县', '412626'); +INSERT INTO "public"."cardcodes" VALUES (2901, '河南省', NULL, '襄城县', '412627'); +INSERT INTO "public"."cardcodes" VALUES (2902, '河南省', NULL, '宝丰县', '412628'); +INSERT INTO "public"."cardcodes" VALUES (2903, '河南省', NULL, '郾城县', '412629'); +INSERT INTO "public"."cardcodes" VALUES (2904, '河南省', NULL, '叶县', '412630'); +INSERT INTO "public"."cardcodes" VALUES (2905, '河南省', NULL, '鲁山县', '412631'); +INSERT INTO "public"."cardcodes" VALUES (2906, '河南省', NULL, '舞阳县', '412632'); +INSERT INTO "public"."cardcodes" VALUES (2907, '河南省', NULL, '义马市', '419001'); +INSERT INTO "public"."cardcodes" VALUES (2908, '河南省', NULL, '汝州市', '419002'); +INSERT INTO "public"."cardcodes" VALUES (2909, '河南省', NULL, '济源市', '419003'); +INSERT INTO "public"."cardcodes" VALUES (2910, '河南省', NULL, '禹州市', '419004'); +INSERT INTO "public"."cardcodes" VALUES (2911, '河南省', NULL, '卫辉市', '419005'); +INSERT INTO "public"."cardcodes" VALUES (2912, '河南省', NULL, '辉县市', '419006'); +INSERT INTO "public"."cardcodes" VALUES (2913, '湖北省', '宜昌市', '市辖区', '420501'); +INSERT INTO "public"."cardcodes" VALUES (2914, '湖北省', '宜昌市', '西陵区', '420502'); +INSERT INTO "public"."cardcodes" VALUES (2915, '湖北省', '宜昌市', '伍家岗区', '420503'); +INSERT INTO "public"."cardcodes" VALUES (2916, '湖北省', '宜昌市', '点军区', '420504'); +INSERT INTO "public"."cardcodes" VALUES (2917, '湖北省', '宜昌市', '猇亭区', '420505'); +INSERT INTO "public"."cardcodes" VALUES (2918, '湖北省', '宜昌市', '夷陵区', '420506'); +INSERT INTO "public"."cardcodes" VALUES (2919, '湖北省', '宜昌市', '宜昌县', '420521'); +INSERT INTO "public"."cardcodes" VALUES (2920, '湖北省', '宜昌市', '枝江县', '420523'); +INSERT INTO "public"."cardcodes" VALUES (2921, '湖北省', '宜昌市', '远安县', '420525'); +INSERT INTO "public"."cardcodes" VALUES (2922, '湖北省', '宜昌市', '兴山县', '420526'); +INSERT INTO "public"."cardcodes" VALUES (2923, '湖北省', '宜昌市', '秭归县', '420527'); +INSERT INTO "public"."cardcodes" VALUES (2924, '湖北省', '宜昌市', '长阳土家族自治县', '420528'); +INSERT INTO "public"."cardcodes" VALUES (2925, '湖北省', '宜昌市', '五峰土家族自治县', '420529'); +INSERT INTO "public"."cardcodes" VALUES (2926, '湖北省', '宜昌市', '宜都市', '420581'); +INSERT INTO "public"."cardcodes" VALUES (2927, '湖北省', '宜昌市', '当阳市', '420582'); +INSERT INTO "public"."cardcodes" VALUES (2928, '湖北省', '宜昌市', '枝江市', '420583'); +INSERT INTO "public"."cardcodes" VALUES (2929, '湖北省', '襄樊市', '市辖区', '420601'); +INSERT INTO "public"."cardcodes" VALUES (2930, '湖北省', '襄樊市', '襄城区', '420602'); +INSERT INTO "public"."cardcodes" VALUES (2931, '湖北省', '襄樊市', '樊东区', '420603'); +INSERT INTO "public"."cardcodes" VALUES (2932, '湖北省', '襄樊市', '樊西区', '420604'); +INSERT INTO "public"."cardcodes" VALUES (2933, '湖北省', '襄樊市', '郊区', '420605'); +INSERT INTO "public"."cardcodes" VALUES (2934, '湖北省', '襄樊市', '樊城区', '420606'); +INSERT INTO "public"."cardcodes" VALUES (2935, '湖北省', '襄樊市', '襄阳区', '420607'); +INSERT INTO "public"."cardcodes" VALUES (2936, '湖北省', '襄樊市', '随州市', '420619'); +INSERT INTO "public"."cardcodes" VALUES (2937, '湖北省', '襄樊市', '老河口市', '420620'); +INSERT INTO "public"."cardcodes" VALUES (2938, '湖北省', '襄樊市', '襄阳县', '420621'); +INSERT INTO "public"."cardcodes" VALUES (2939, '湖北省', '襄樊市', '枣阳县', '420622'); +INSERT INTO "public"."cardcodes" VALUES (2940, '湖北省', '襄樊市', '宜城县', '420623'); +INSERT INTO "public"."cardcodes" VALUES (2941, '湖北省', '襄樊市', '南漳县', '420624'); +INSERT INTO "public"."cardcodes" VALUES (2942, '湖北省', '襄樊市', '谷城县', '420625'); +INSERT INTO "public"."cardcodes" VALUES (2943, '湖北省', '襄樊市', '保康县', '420626'); +INSERT INTO "public"."cardcodes" VALUES (2944, '湖北省', '襄樊市', '随州市', '420681'); +INSERT INTO "public"."cardcodes" VALUES (2945, '湖北省', '襄樊市', '老河口市', '420682'); +INSERT INTO "public"."cardcodes" VALUES (2946, '湖北省', '襄樊市', '枣阳市', '420683'); +INSERT INTO "public"."cardcodes" VALUES (2947, '湖北省', '襄樊市', '宜城市', '420684'); +INSERT INTO "public"."cardcodes" VALUES (2948, '湖北省', '鄂州市', '市辖区', '420701'); +INSERT INTO "public"."cardcodes" VALUES (2949, '湖北省', '鄂州市', '梁子湖区', '420702'); +INSERT INTO "public"."cardcodes" VALUES (2950, '湖北省', '鄂州市', '华容区', '420703'); +INSERT INTO "public"."cardcodes" VALUES (2951, '湖北省', '鄂州市', '鄂城区', '420704'); +INSERT INTO "public"."cardcodes" VALUES (2952, '湖北省', '荆门市', '市辖区', '420801'); +INSERT INTO "public"."cardcodes" VALUES (2953, '湖北省', '荆门市', '东宝区', '420802'); +INSERT INTO "public"."cardcodes" VALUES (2954, '湖北省', '荆门市', '沙洋区', '420803'); +INSERT INTO "public"."cardcodes" VALUES (2955, '湖北省', '荆门市', '掇刀区', '420804'); +INSERT INTO "public"."cardcodes" VALUES (2956, '湖北省', '荆门市', '京山县', '420821'); +INSERT INTO "public"."cardcodes" VALUES (2957, '湖北省', '荆门市', '沙洋县', '420822'); +INSERT INTO "public"."cardcodes" VALUES (2958, '湖北省', '荆门市', '钟祥市', '420881'); +INSERT INTO "public"."cardcodes" VALUES (2959, '湖北省', '孝感市', '市辖区', '420901'); +INSERT INTO "public"."cardcodes" VALUES (2960, '湖北省', '孝感市', '孝南区', '420902'); +INSERT INTO "public"."cardcodes" VALUES (2961, '湖北省', '孝感市', '孝昌县', '420921'); +INSERT INTO "public"."cardcodes" VALUES (2962, '湖北省', '孝感市', '大悟县', '420922'); +INSERT INTO "public"."cardcodes" VALUES (2963, '湖北省', '孝感市', '云梦县', '420923'); +INSERT INTO "public"."cardcodes" VALUES (2964, '湖北省', '孝感市', '应城市', '420981'); +INSERT INTO "public"."cardcodes" VALUES (2965, '湖北省', '孝感市', '安陆市', '420982'); +INSERT INTO "public"."cardcodes" VALUES (2966, '湖北省', '孝感市', '广水市', '420983'); +INSERT INTO "public"."cardcodes" VALUES (2967, '湖北省', '孝感市', '汉川市', '420984'); +INSERT INTO "public"."cardcodes" VALUES (2968, '湖北省', '荆州市', '市辖区', '421001'); +INSERT INTO "public"."cardcodes" VALUES (2969, '湖北省', '荆州市', '沙市区', '421002'); +INSERT INTO "public"."cardcodes" VALUES (2970, '湖北省', '荆州市', '荆州区', '421003'); +INSERT INTO "public"."cardcodes" VALUES (2971, '湖北省', '荆州市', '江陵区', '421004'); +INSERT INTO "public"."cardcodes" VALUES (2972, '湖北省', '荆州市', '松滋县', '421021'); +INSERT INTO "public"."cardcodes" VALUES (2973, '湖北省', '荆州市', '公安县', '421022'); +INSERT INTO "public"."cardcodes" VALUES (2974, '湖北省', '荆州市', '监利县', '421023'); +INSERT INTO "public"."cardcodes" VALUES (2975, '湖北省', '荆州市', '江陵县', '421024'); +INSERT INTO "public"."cardcodes" VALUES (2976, '湖北省', '荆州市', '石首市', '421081'); +INSERT INTO "public"."cardcodes" VALUES (2977, '湖北省', '荆州市', '洪湖市', '421083'); +INSERT INTO "public"."cardcodes" VALUES (2978, '湖北省', '荆州市', '松滋市', '421087'); +INSERT INTO "public"."cardcodes" VALUES (2979, '湖北省', '黄冈市', '市辖区', '421101'); +INSERT INTO "public"."cardcodes" VALUES (2980, '湖北省', '黄冈市', '黄州区', '421102'); +INSERT INTO "public"."cardcodes" VALUES (2981, '湖北省', '黄冈市', '龙感湖管理区', '421103'); +INSERT INTO "public"."cardcodes" VALUES (2982, '湖北省', '黄冈市', '团风县', '421121'); +INSERT INTO "public"."cardcodes" VALUES (2983, '湖北省', '黄冈市', '红安县', '421122'); +INSERT INTO "public"."cardcodes" VALUES (2984, '湖北省', '黄冈市', '罗田县', '421123'); +INSERT INTO "public"."cardcodes" VALUES (2985, '湖北省', '黄冈市', '英山县', '421124'); +INSERT INTO "public"."cardcodes" VALUES (2986, '湖北省', '黄冈市', '浠水县', '421125'); +INSERT INTO "public"."cardcodes" VALUES (2987, '湖北省', '黄冈市', '蕲春县', '421126'); +INSERT INTO "public"."cardcodes" VALUES (2988, '湖北省', '黄冈市', '黄梅县', '421127'); +INSERT INTO "public"."cardcodes" VALUES (2989, '湖北省', '黄冈市', '麻城市', '421181'); +INSERT INTO "public"."cardcodes" VALUES (2990, '湖北省', '黄冈市', '武穴市', '421182'); +INSERT INTO "public"."cardcodes" VALUES (2991, '湖北省', '咸宁市', '市辖区', '421201'); +INSERT INTO "public"."cardcodes" VALUES (2992, '湖北省', '咸宁市', '咸安区', '421202'); +INSERT INTO "public"."cardcodes" VALUES (2993, '湖北省', '咸宁市', '嘉鱼县', '421221'); +INSERT INTO "public"."cardcodes" VALUES (2994, '湖北省', '咸宁市', '通城县', '421222'); +INSERT INTO "public"."cardcodes" VALUES (2995, '湖北省', '咸宁市', '崇阳县', '421223'); +INSERT INTO "public"."cardcodes" VALUES (2996, '湖北省', '咸宁市', '通山县', '421224'); +INSERT INTO "public"."cardcodes" VALUES (2997, '湖北省', '咸宁市', '赤壁市', '421281'); +INSERT INTO "public"."cardcodes" VALUES (2998, '湖北省', '随州市', '市辖区', '421301'); +INSERT INTO "public"."cardcodes" VALUES (2999, '湖北省', '随州市', '曾都区', '421302'); +INSERT INTO "public"."cardcodes" VALUES (3000, '湖北省', '随州市', '广水市', '421381'); +INSERT INTO "public"."cardcodes" VALUES (3001, '湖北省', '黄冈地区', '鄂州市', '422101'); +INSERT INTO "public"."cardcodes" VALUES (3002, '湖北省', '黄冈地区', '武穴市', '422102'); +INSERT INTO "public"."cardcodes" VALUES (3003, '湖北省', '黄冈地区', '黄州市', '422103'); +INSERT INTO "public"."cardcodes" VALUES (3004, '湖北省', '黄冈地区', '黄冈县', '422121'); +INSERT INTO "public"."cardcodes" VALUES (3005, '湖北省', '黄冈地区', '新洲县', '422122'); +INSERT INTO "public"."cardcodes" VALUES (3006, '湖北省', '黄冈地区', '红安县', '422123'); +INSERT INTO "public"."cardcodes" VALUES (3007, '湖北省', '黄冈地区', '麻城县', '422124'); +INSERT INTO "public"."cardcodes" VALUES (3008, '湖北省', '黄冈地区', '罗田县', '422125'); +INSERT INTO "public"."cardcodes" VALUES (3009, '湖北省', '黄冈地区', '英山县', '422126'); +INSERT INTO "public"."cardcodes" VALUES (3010, '湖北省', '黄冈地区', '浠水县', '422127'); +INSERT INTO "public"."cardcodes" VALUES (3011, '湖北省', '黄冈地区', '蕲春县', '422128'); +INSERT INTO "public"."cardcodes" VALUES (3012, '湖北省', '黄冈地区', '广济县', '422129'); +INSERT INTO "public"."cardcodes" VALUES (3013, '湖北省', '黄冈地区', '黄梅县', '422130'); +INSERT INTO "public"."cardcodes" VALUES (3014, '湖北省', '黄冈地区', '鄂城县', '422131'); +INSERT INTO "public"."cardcodes" VALUES (3015, '湖北省', '孝感地区', '孝感市', '422201'); +INSERT INTO "public"."cardcodes" VALUES (3016, '湖北省', '孝感地区', '应城市', '422202'); +INSERT INTO "public"."cardcodes" VALUES (3017, '湖北省', '孝感地区', '安陆市', '422203'); +INSERT INTO "public"."cardcodes" VALUES (3018, '湖北省', '孝感地区', '广水市', '422204'); +INSERT INTO "public"."cardcodes" VALUES (3019, '湖北省', '孝感地区', '孝感县', '422221'); +INSERT INTO "public"."cardcodes" VALUES (3020, '湖北省', '孝感地区', '黄陂县', '422222'); +INSERT INTO "public"."cardcodes" VALUES (3021, '湖北省', '孝感地区', '大悟县', '422223'); +INSERT INTO "public"."cardcodes" VALUES (3022, '湖北省', '孝感地区', '应山县', '422224'); +INSERT INTO "public"."cardcodes" VALUES (3023, '湖北省', '孝感地区', '安陆县', '422225'); +INSERT INTO "public"."cardcodes" VALUES (3024, '湖北省', '孝感地区', '云梦县', '422226'); +INSERT INTO "public"."cardcodes" VALUES (3025, '湖北省', '孝感地区', '应城县', '422227'); +INSERT INTO "public"."cardcodes" VALUES (3026, '湖北省', '孝感地区', '汉川县', '422228'); +INSERT INTO "public"."cardcodes" VALUES (3027, '湖北省', '省直辖行政单位', '神农架林区', '422921'); +INSERT INTO "public"."cardcodes" VALUES (3028, '湖北省', '省直辖行政单位', '随州市', '429001'); +INSERT INTO "public"."cardcodes" VALUES (3029, '湖北省', '省直辖行政单位', '枣阳市', '429003'); +INSERT INTO "public"."cardcodes" VALUES (3030, '湖北省', '省直辖行政单位', '仙桃市', '429004'); +INSERT INTO "public"."cardcodes" VALUES (3031, '湖北省', '省直辖行政单位', '潜江市', '429005'); +INSERT INTO "public"."cardcodes" VALUES (3032, '湖北省', '省直辖行政单位', '天门市', '429006'); +INSERT INTO "public"."cardcodes" VALUES (3033, '湖北省', '省直辖行政单位', '神农架林区', '429021'); +INSERT INTO "public"."cardcodes" VALUES (3034, '湖北省', '武汉市', '市辖区', '420101'); +INSERT INTO "public"."cardcodes" VALUES (3035, '湖北省', '武汉市', '江岸区', '420102'); +INSERT INTO "public"."cardcodes" VALUES (3036, '湖北省', '武汉市', '江汉区', '420103'); +INSERT INTO "public"."cardcodes" VALUES (3037, '湖北省', '武汉市', '乔口区', '420104'); +INSERT INTO "public"."cardcodes" VALUES (3038, '湖北省', '武汉市', '汉阳区', '420105'); +INSERT INTO "public"."cardcodes" VALUES (3039, '湖北省', '武汉市', '武昌区', '420106'); +INSERT INTO "public"."cardcodes" VALUES (3040, '湖北省', '武汉市', '青山区', '420107'); +INSERT INTO "public"."cardcodes" VALUES (3041, '湖北省', '武汉市', '东湖管理分局', '420109'); +INSERT INTO "public"."cardcodes" VALUES (3042, '湖北省', '武汉市', '洪山区', '420111'); +INSERT INTO "public"."cardcodes" VALUES (3043, '湖北省', '武汉市', '东西湖区', '420112'); +INSERT INTO "public"."cardcodes" VALUES (3044, '湖北省', '武汉市', '汉南区', '420113'); +INSERT INTO "public"."cardcodes" VALUES (3045, '湖北省', '武汉市', '蔡甸区', '420114'); +INSERT INTO "public"."cardcodes" VALUES (3046, '湖北省', '武汉市', '江夏区', '420115'); +INSERT INTO "public"."cardcodes" VALUES (3047, '湖北省', '武汉市', '黄陂区', '420116'); +INSERT INTO "public"."cardcodes" VALUES (3048, '湖北省', '武汉市', '新洲区', '420117'); +INSERT INTO "public"."cardcodes" VALUES (3049, '湖北省', '武汉市', '蔡甸区', '420121'); +INSERT INTO "public"."cardcodes" VALUES (3050, '湖北省', '武汉市', '江夏区', '420122'); +INSERT INTO "public"."cardcodes" VALUES (3051, '湖北省', '武汉市', '黄陂区', '420123'); +INSERT INTO "public"."cardcodes" VALUES (3052, '湖北省', '武汉市', '新洲县', '420124'); +INSERT INTO "public"."cardcodes" VALUES (3053, '湖北省', '黄石市', '市辖区', '420201'); +INSERT INTO "public"."cardcodes" VALUES (3054, '湖北省', '黄石市', '黄石港区', '420202'); +INSERT INTO "public"."cardcodes" VALUES (3055, '湖北省', '黄石市', '石灰窑区', '420203'); +INSERT INTO "public"."cardcodes" VALUES (3056, '湖北省', '黄石市', '下陆区', '420204'); +INSERT INTO "public"."cardcodes" VALUES (3057, '湖北省', '黄石市', '铁山区', '420205'); +INSERT INTO "public"."cardcodes" VALUES (3058, '湖北省', '黄石市', '市区', '420220'); +INSERT INTO "public"."cardcodes" VALUES (3059, '湖北省', '黄石市', '大冶县', '420221'); +INSERT INTO "public"."cardcodes" VALUES (3060, '湖北省', '黄石市', '阳新县', '420222'); +INSERT INTO "public"."cardcodes" VALUES (3061, '湖北省', '黄石市', '大冶市', '420281'); +INSERT INTO "public"."cardcodes" VALUES (3062, '湖北省', '十堰市', '市辖区', '420301'); +INSERT INTO "public"."cardcodes" VALUES (3063, '湖北省', '十堰市', '茅箭区', '420302'); +INSERT INTO "public"."cardcodes" VALUES (3064, '湖北省', '十堰市', '张湾区', '420303'); +INSERT INTO "public"."cardcodes" VALUES (3065, '湖北省', '十堰市', '郧县', '420321'); +INSERT INTO "public"."cardcodes" VALUES (3066, '湖北省', '十堰市', '郧西县', '420322'); +INSERT INTO "public"."cardcodes" VALUES (3067, '湖北省', '十堰市', '竹山县', '420323'); +INSERT INTO "public"."cardcodes" VALUES (3068, '湖北省', '十堰市', '竹溪县', '420324'); +INSERT INTO "public"."cardcodes" VALUES (3069, '湖北省', '十堰市', '房县', '420325'); +INSERT INTO "public"."cardcodes" VALUES (3070, '湖北省', '十堰市', '丹江口市', '420381'); +INSERT INTO "public"."cardcodes" VALUES (3071, '湖北省', '咸宁地区', '咸宁市', '422301'); +INSERT INTO "public"."cardcodes" VALUES (3072, '湖北省', '咸宁地区', '赤壁市', '422302'); +INSERT INTO "public"."cardcodes" VALUES (3073, '湖北省', '咸宁地区', '咸宁县', '422321'); +INSERT INTO "public"."cardcodes" VALUES (3074, '湖北省', '咸宁地区', '嘉鱼县', '422322'); +INSERT INTO "public"."cardcodes" VALUES (3075, '湖北省', '咸宁地区', '蒲圻县', '422323'); +INSERT INTO "public"."cardcodes" VALUES (3076, '湖北省', '咸宁地区', '通城县', '422324'); +INSERT INTO "public"."cardcodes" VALUES (3077, '湖北省', '咸宁地区', '崇阳县', '422325'); +INSERT INTO "public"."cardcodes" VALUES (3078, '湖北省', '咸宁地区', '通山县', '422326'); +INSERT INTO "public"."cardcodes" VALUES (3079, '湖北省', '咸宁地区', '阳新县', '422327'); +INSERT INTO "public"."cardcodes" VALUES (3080, '湖北省', '荆州地区', '仙桃市', '422401'); +INSERT INTO "public"."cardcodes" VALUES (3081, '湖北省', '荆州地区', '石首市', '422402'); +INSERT INTO "public"."cardcodes" VALUES (3082, '湖北省', '荆州地区', '洪湖市', '422403'); +INSERT INTO "public"."cardcodes" VALUES (3083, '湖北省', '荆州地区', '天门市', '422404'); +INSERT INTO "public"."cardcodes" VALUES (3084, '湖北省', '荆州地区', '潜江市', '422405'); +INSERT INTO "public"."cardcodes" VALUES (3085, '湖北省', '荆州地区', '钟祥市', '422406'); +INSERT INTO "public"."cardcodes" VALUES (3086, '湖北省', '荆州地区', '江陵县', '422421'); +INSERT INTO "public"."cardcodes" VALUES (3087, '湖北省', '荆州地区', '松滋县', '422422'); +INSERT INTO "public"."cardcodes" VALUES (3088, '湖北省', '荆州地区', '公安县', '422423'); +INSERT INTO "public"."cardcodes" VALUES (3089, '湖北省', '荆州地区', '石首县', '422424'); +INSERT INTO "public"."cardcodes" VALUES (3090, '湖北省', '荆州地区', '监利县', '422425'); +INSERT INTO "public"."cardcodes" VALUES (3091, '湖北省', '荆州地区', '洪湖县', '422426'); +INSERT INTO "public"."cardcodes" VALUES (3092, '湖北省', '荆州地区', '沔阳县', '422427'); +INSERT INTO "public"."cardcodes" VALUES (3093, '湖北省', '荆州地区', '天门县', '422428'); +INSERT INTO "public"."cardcodes" VALUES (3094, '湖北省', '荆州地区', '潜江县', '422429'); +INSERT INTO "public"."cardcodes" VALUES (3095, '湖北省', '荆州地区', '荆门县', '422430'); +INSERT INTO "public"."cardcodes" VALUES (3096, '湖北省', '荆州地区', '钟祥县', '422431'); +INSERT INTO "public"."cardcodes" VALUES (3097, '湖北省', '荆州地区', '京山县', '422432'); +INSERT INTO "public"."cardcodes" VALUES (3098, '湖北省', '随州地区', '随州市', '422501'); +INSERT INTO "public"."cardcodes" VALUES (3099, '湖北省', '随州地区', '老河口市', '422502'); +INSERT INTO "public"."cardcodes" VALUES (3100, '湖北省', '随州地区', '襄阳县', '422521'); +INSERT INTO "public"."cardcodes" VALUES (3101, '湖北省', '随州地区', '枣阳县', '422522'); +INSERT INTO "public"."cardcodes" VALUES (3102, '湖北省', '随州地区', '宜城县', '422524'); +INSERT INTO "public"."cardcodes" VALUES (3103, '湖北省', '随州地区', '南漳县', '422525'); +INSERT INTO "public"."cardcodes" VALUES (3104, '湖北省', '随州地区', '谷城县', '422527'); +INSERT INTO "public"."cardcodes" VALUES (3105, '湖北省', '随州地区', '保康县', '422528'); +INSERT INTO "public"."cardcodes" VALUES (3106, '湖北省', '郧阳地区', '丹江口市', '422601'); +INSERT INTO "public"."cardcodes" VALUES (3107, '湖北省', '郧阳地区', '郧县', '422622'); +INSERT INTO "public"."cardcodes" VALUES (3108, '湖北省', '郧阳地区', '郧西县', '422623'); +INSERT INTO "public"."cardcodes" VALUES (3109, '湖北省', '郧阳地区', '竹山县', '422624'); +INSERT INTO "public"."cardcodes" VALUES (3110, '湖北省', '郧阳地区', '竹溪县', '422625'); +INSERT INTO "public"."cardcodes" VALUES (3111, '湖北省', '郧阳地区', '房县', '422626'); +INSERT INTO "public"."cardcodes" VALUES (3112, '湖北省', '郧阳地区', '神农架林区', '422627'); +INSERT INTO "public"."cardcodes" VALUES (3113, '湖北省', '宜昌地区', '枝城市', '422701'); +INSERT INTO "public"."cardcodes" VALUES (3114, '湖北省', '宜昌地区', '当阳市', '422702'); +INSERT INTO "public"."cardcodes" VALUES (3115, '湖北省', '宜昌地区', '宜昌县', '422721'); +INSERT INTO "public"."cardcodes" VALUES (3116, '湖北省', '宜昌地区', '宜都县', '422722'); +INSERT INTO "public"."cardcodes" VALUES (3117, '湖北省', '宜昌地区', '枝江县', '422723'); +INSERT INTO "public"."cardcodes" VALUES (3118, '湖北省', '宜昌地区', '当阳县', '422724'); +INSERT INTO "public"."cardcodes" VALUES (3119, '湖北省', '宜昌地区', '远安县', '422725'); +INSERT INTO "public"."cardcodes" VALUES (3120, '湖北省', '宜昌地区', '兴山县', '422726'); +INSERT INTO "public"."cardcodes" VALUES (3121, '湖北省', '宜昌地区', '秭归县', '422727'); +INSERT INTO "public"."cardcodes" VALUES (3122, '湖北省', '宜昌地区', '长阳土家族自治县', '422728'); +INSERT INTO "public"."cardcodes" VALUES (3123, '湖北省', '宜昌地区', '五峰土家族自治县', '422729'); +INSERT INTO "public"."cardcodes" VALUES (3124, '湖北省', '恩施土家族苗族自治州', '恩施市', '422801'); +INSERT INTO "public"."cardcodes" VALUES (3125, '湖北省', '恩施土家族苗族自治州', '利川市', '422802'); +INSERT INTO "public"."cardcodes" VALUES (3126, '湖北省', '恩施土家族苗族自治州', '建始县', '422822'); +INSERT INTO "public"."cardcodes" VALUES (3127, '湖北省', '恩施土家族苗族自治州', '巴东县', '422823'); +INSERT INTO "public"."cardcodes" VALUES (3128, '湖北省', '恩施土家族苗族自治州', '宣恩县', '422825'); +INSERT INTO "public"."cardcodes" VALUES (3129, '湖北省', '恩施土家族苗族自治州', '咸丰县', '422826'); +INSERT INTO "public"."cardcodes" VALUES (3130, '湖北省', '恩施土家族苗族自治州', '来凤县', '422827'); +INSERT INTO "public"."cardcodes" VALUES (3131, '湖北省', '恩施土家族苗族自治州', '鹤峰县', '422828'); +INSERT INTO "public"."cardcodes" VALUES (3132, '湖北省', NULL, '沙市', '420400'); +INSERT INTO "public"."cardcodes" VALUES (3133, '湖北省', NULL, '沙洋监狱管理局', '423022'); +INSERT INTO "public"."cardcodes" VALUES (3134, '湖南省', '长沙市', '市辖区', '430101'); +INSERT INTO "public"."cardcodes" VALUES (3135, '湖南省', '长沙市', '芙蓉区', '430102'); +INSERT INTO "public"."cardcodes" VALUES (3136, '湖南省', '长沙市', '天心区', '430103'); +INSERT INTO "public"."cardcodes" VALUES (3137, '湖南省', '长沙市', '岳麓区', '430104'); +INSERT INTO "public"."cardcodes" VALUES (3138, '湖南省', '长沙市', '开福区', '430105'); +INSERT INTO "public"."cardcodes" VALUES (3139, '湖南省', '长沙市', '雨花区', '430111'); +INSERT INTO "public"."cardcodes" VALUES (3140, '湖南省', '长沙市', '市区', '430120'); +INSERT INTO "public"."cardcodes" VALUES (3141, '湖南省', '长沙市', '长沙县', '430121'); +INSERT INTO "public"."cardcodes" VALUES (3142, '湖南省', '长沙市', '望城县', '430122'); +INSERT INTO "public"."cardcodes" VALUES (3143, '湖南省', '长沙市', '浏阳县', '430123'); +INSERT INTO "public"."cardcodes" VALUES (3144, '湖南省', '长沙市', '宁乡县', '430124'); +INSERT INTO "public"."cardcodes" VALUES (3145, '湖南省', '长沙市', '浏阳市', '430181'); +INSERT INTO "public"."cardcodes" VALUES (3146, '湖南省', '株洲市', '市辖区', '430201'); +INSERT INTO "public"."cardcodes" VALUES (3147, '湖南省', '株洲市', '荷塘区', '430202'); +INSERT INTO "public"."cardcodes" VALUES (3148, '湖南省', '株洲市', '芦淞区', '430203'); +INSERT INTO "public"."cardcodes" VALUES (3149, '湖南省', '株洲市', '石峰区', '430204'); +INSERT INTO "public"."cardcodes" VALUES (3150, '湖南省', '株洲市', '天元区', '430211'); +INSERT INTO "public"."cardcodes" VALUES (3151, '湖南省', '株洲市', '醴陵市', '430219'); +INSERT INTO "public"."cardcodes" VALUES (3152, '湖南省', '株洲市', '市区', '430220'); +INSERT INTO "public"."cardcodes" VALUES (3153, '湖南省', '株洲市', '株洲县', '430221'); +INSERT INTO "public"."cardcodes" VALUES (3154, '湖南省', '株洲市', '醴陵县', '430222'); +INSERT INTO "public"."cardcodes" VALUES (3155, '湖南省', '株洲市', '攸县', '430223'); +INSERT INTO "public"."cardcodes" VALUES (3156, '湖南省', '株洲市', '茶陵县', '430224'); +INSERT INTO "public"."cardcodes" VALUES (3157, '湖南省', '株洲市', '炎陵县', '430225'); +INSERT INTO "public"."cardcodes" VALUES (3158, '湖南省', '株洲市', '醴陵市', '430281'); +INSERT INTO "public"."cardcodes" VALUES (3159, '湖南省', '湘潭市', '市辖区', '430301'); +INSERT INTO "public"."cardcodes" VALUES (3160, '湖南省', '湘潭市', '雨湖区', '430302'); +INSERT INTO "public"."cardcodes" VALUES (3161, '湖南省', '湘潭市', '湘江区', '430303'); +INSERT INTO "public"."cardcodes" VALUES (3162, '湖南省', '湘潭市', '岳塘区', '430304'); +INSERT INTO "public"."cardcodes" VALUES (3163, '湖南省', '湘潭市', '板塘区', '430305'); +INSERT INTO "public"."cardcodes" VALUES (3164, '湖南省', '湘潭市', '韶山区', '430306'); +INSERT INTO "public"."cardcodes" VALUES (3165, '湖南省', '湘潭市', '郊区', '430311'); +INSERT INTO "public"."cardcodes" VALUES (3166, '湖南省', '湘潭市', '韶山区', '430312'); +INSERT INTO "public"."cardcodes" VALUES (3167, '湖南省', '湘潭市', '湘潭县', '430321'); +INSERT INTO "public"."cardcodes" VALUES (3168, '湖南省', '湘潭市', '湘乡县', '430322'); +INSERT INTO "public"."cardcodes" VALUES (3169, '湖南省', '湘潭市', '湘乡市', '430381'); +INSERT INTO "public"."cardcodes" VALUES (3170, '湖南省', '湘潭市', '韶山市', '430382'); +INSERT INTO "public"."cardcodes" VALUES (3171, '湖南省', '衡阳市', '市辖区', '430401'); +INSERT INTO "public"."cardcodes" VALUES (3172, '湖南省', '衡阳市', '江东区', '430402'); +INSERT INTO "public"."cardcodes" VALUES (3173, '湖南省', '衡阳市', '城南区', '430403'); +INSERT INTO "public"."cardcodes" VALUES (3174, '湖南省', '衡阳市', '城北区', '430404'); +INSERT INTO "public"."cardcodes" VALUES (3175, '湖南省', '衡阳市', '珠晖区', '430405'); +INSERT INTO "public"."cardcodes" VALUES (3176, '湖南省', '衡阳市', '雁峰区', '430406'); +INSERT INTO "public"."cardcodes" VALUES (3177, '湖南省', '衡阳市', '石鼓区', '430407'); +INSERT INTO "public"."cardcodes" VALUES (3178, '湖南省', '衡阳市', '蒸湘区', '430408'); +INSERT INTO "public"."cardcodes" VALUES (3179, '湖南省', '衡阳市', '郊区', '430411'); +INSERT INTO "public"."cardcodes" VALUES (3180, '湖南省', '衡阳市', '南岳区', '430412'); +INSERT INTO "public"."cardcodes" VALUES (3181, '湖南省', '衡阳市', '耒阳市', '430419'); +INSERT INTO "public"."cardcodes" VALUES (3182, '湖南省', '衡阳市', '衡阳县', '430421'); +INSERT INTO "public"."cardcodes" VALUES (3183, '湖南省', '衡阳市', '衡南县', '430422'); +INSERT INTO "public"."cardcodes" VALUES (3184, '湖南省', '衡阳市', '衡山县', '430423'); +INSERT INTO "public"."cardcodes" VALUES (3185, '湖南省', '衡阳市', '衡东县', '430424'); +INSERT INTO "public"."cardcodes" VALUES (3186, '湖南省', '衡阳市', '常宁县', '430425'); +INSERT INTO "public"."cardcodes" VALUES (3187, '湖南省', '衡阳市', '祁东县', '430426'); +INSERT INTO "public"."cardcodes" VALUES (3188, '湖南省', '衡阳市', '耒阳县', '430427'); +INSERT INTO "public"."cardcodes" VALUES (3189, '湖南省', '衡阳市', '耒阳市', '430481'); +INSERT INTO "public"."cardcodes" VALUES (3190, '湖南省', '衡阳市', '常宁市', '430482'); +INSERT INTO "public"."cardcodes" VALUES (3191, '湖南省', '湘潭地区', '湘潭县', '432121'); +INSERT INTO "public"."cardcodes" VALUES (3192, '湖南省', '湘潭地区', '湘乡县', '432122'); +INSERT INTO "public"."cardcodes" VALUES (3193, '湖南省', '湘潭地区', '醴陵县', '432123'); +INSERT INTO "public"."cardcodes" VALUES (3194, '湖南省', '湘潭地区', '浏阳县', '432124'); +INSERT INTO "public"."cardcodes" VALUES (3195, '湖南省', '湘潭地区', '攸县', '432125'); +INSERT INTO "public"."cardcodes" VALUES (3196, '湖南省', '湘潭地区', '茶陵县', '432126'); +INSERT INTO "public"."cardcodes" VALUES (3197, '湖南省', '湘潭地区', '酃县', '432127'); +INSERT INTO "public"."cardcodes" VALUES (3198, '湖南省', '岳阳地区', '岳阳市', '432201'); +INSERT INTO "public"."cardcodes" VALUES (3199, '湖南省', '岳阳地区', '平江县', '432222'); +INSERT INTO "public"."cardcodes" VALUES (3200, '湖南省', '岳阳地区', '湘阴县', '432223'); +INSERT INTO "public"."cardcodes" VALUES (3201, '湖南省', '岳阳地区', '汨罗县', '432224'); +INSERT INTO "public"."cardcodes" VALUES (3202, '湖南省', '岳阳地区', '临湘市', '432225'); +INSERT INTO "public"."cardcodes" VALUES (3203, '湖南省', '岳阳地区', '华容县', '432226'); +INSERT INTO "public"."cardcodes" VALUES (3204, '湖南省', '益阳地区', '益阳市', '432301'); +INSERT INTO "public"."cardcodes" VALUES (3205, '湖南省', '益阳地区', '沅江市', '432302'); +INSERT INTO "public"."cardcodes" VALUES (3206, '湖南省', '益阳地区', '益阳县', '432321'); +INSERT INTO "public"."cardcodes" VALUES (3207, '湖南省', '益阳地区', '南县', '432322'); +INSERT INTO "public"."cardcodes" VALUES (3208, '湖南省', '益阳地区', '沅江县', '432323'); +INSERT INTO "public"."cardcodes" VALUES (3209, '湖南省', '益阳地区', '宁乡县', '432324'); +INSERT INTO "public"."cardcodes" VALUES (3210, '湖南省', '益阳地区', '桃江县', '432325'); +INSERT INTO "public"."cardcodes" VALUES (3211, '湖南省', '益阳地区', '安化县', '432326'); +INSERT INTO "public"."cardcodes" VALUES (3212, '湖南省', '常德地区', '常德市', '432401'); +INSERT INTO "public"."cardcodes" VALUES (3213, '湖南省', '常德地区', '津市市', '432402'); +INSERT INTO "public"."cardcodes" VALUES (3214, '湖南省', '常德地区', '常德县', '432421'); +INSERT INTO "public"."cardcodes" VALUES (3215, '湖南省', '常德地区', '安乡县', '432422'); +INSERT INTO "public"."cardcodes" VALUES (3216, '湖南省', '常德地区', '汉寿县', '432423'); +INSERT INTO "public"."cardcodes" VALUES (3217, '湖南省', '常德地区', '澧县', '432424'); +INSERT INTO "public"."cardcodes" VALUES (3218, '湖南省', '常德地区', '临澧县', '432425'); +INSERT INTO "public"."cardcodes" VALUES (3219, '湖南省', '常德地区', '桃源县', '432426'); +INSERT INTO "public"."cardcodes" VALUES (3220, '湖南省', '常德地区', '石门县', '432427'); +INSERT INTO "public"."cardcodes" VALUES (3221, '湖南省', '常德地区', '慈利县', '432428'); +INSERT INTO "public"."cardcodes" VALUES (3222, '湖南省', '娄底地区', '娄底市', '432501'); +INSERT INTO "public"."cardcodes" VALUES (3223, '湖南省', '娄底地区', '冷水江市', '432502'); +INSERT INTO "public"."cardcodes" VALUES (3224, '湖南省', '娄底地区', '涟源市', '432503'); +INSERT INTO "public"."cardcodes" VALUES (3225, '湖南省', '娄底地区', '涟源县', '432521'); +INSERT INTO "public"."cardcodes" VALUES (3226, '湖南省', '娄底地区', '双峰县', '432522'); +INSERT INTO "public"."cardcodes" VALUES (3227, '湖南省', '娄底地区', '邵东县', '432523'); +INSERT INTO "public"."cardcodes" VALUES (3228, '湖南省', '娄底地区', '新化县', '432524'); +INSERT INTO "public"."cardcodes" VALUES (3229, '湖南省', '娄底地区', '新邵县', '432525'); +INSERT INTO "public"."cardcodes" VALUES (3230, '湖南省', '邵阳地区', '邵阳县', '432621'); +INSERT INTO "public"."cardcodes" VALUES (3231, '湖南省', '邵阳地区', '隆回县', '432622'); +INSERT INTO "public"."cardcodes" VALUES (3232, '湖南省', '邵阳地区', '武冈县', '432623'); +INSERT INTO "public"."cardcodes" VALUES (3233, '湖南省', '邵阳地区', '洞口县', '432624'); +INSERT INTO "public"."cardcodes" VALUES (3234, '湖南省', '邵阳地区', '新宁县', '432625'); +INSERT INTO "public"."cardcodes" VALUES (3235, '湖南省', '邵阳地区', '绥宁县', '432626'); +INSERT INTO "public"."cardcodes" VALUES (3236, '湖南省', '邵阳地区', '城步苗族自治县', '432627'); +INSERT INTO "public"."cardcodes" VALUES (3237, '湖南省', '衡阳地区', '衡阳县', '432721'); +INSERT INTO "public"."cardcodes" VALUES (3238, '湖南省', '衡阳地区', '衡南县', '432722'); +INSERT INTO "public"."cardcodes" VALUES (3239, '湖南省', '衡阳地区', '衡山县', '432723'); +INSERT INTO "public"."cardcodes" VALUES (3240, '湖南省', '衡阳地区', '衡东县', '432724'); +INSERT INTO "public"."cardcodes" VALUES (3241, '湖南省', '衡阳地区', '常宁县', '432725'); +INSERT INTO "public"."cardcodes" VALUES (3242, '湖南省', '衡阳地区', '祁东县', '432726'); +INSERT INTO "public"."cardcodes" VALUES (3243, '湖南省', '衡阳地区', '祁阳县', '432727'); +INSERT INTO "public"."cardcodes" VALUES (3244, '湖南省', '郴州地区', '郴州市', '432801'); +INSERT INTO "public"."cardcodes" VALUES (3245, '湖南省', '郴州地区', '资兴市', '432802'); +INSERT INTO "public"."cardcodes" VALUES (3246, '湖南省', '郴州地区', '郴县', '432821'); +INSERT INTO "public"."cardcodes" VALUES (3247, '湖南省', '郴州地区', '桂阳县', '432822'); +INSERT INTO "public"."cardcodes" VALUES (3248, '湖南省', '郴州地区', '永兴县', '432823'); +INSERT INTO "public"."cardcodes" VALUES (3249, '湖南省', '郴州地区', '宜章县', '432824'); +INSERT INTO "public"."cardcodes" VALUES (3250, '湖南省', '郴州地区', '资兴县', '432825'); +INSERT INTO "public"."cardcodes" VALUES (3251, '湖南省', '郴州地区', '嘉禾县', '432826'); +INSERT INTO "public"."cardcodes" VALUES (3252, '湖南省', '郴州地区', '临武县', '432827'); +INSERT INTO "public"."cardcodes" VALUES (3253, '湖南省', '郴州地区', '汝城县', '432828'); +INSERT INTO "public"."cardcodes" VALUES (3254, '湖南省', '郴州地区', '桂东县', '432829'); +INSERT INTO "public"."cardcodes" VALUES (3255, '湖南省', '郴州地区', '耒阳县', '432830'); +INSERT INTO "public"."cardcodes" VALUES (3256, '湖南省', '郴州地区', '安仁县', '432831'); +INSERT INTO "public"."cardcodes" VALUES (3257, '湖南省', '零陵地区', '永州市', '432901'); +INSERT INTO "public"."cardcodes" VALUES (3258, '湖南省', '零陵地区', '冷水滩市', '432902'); +INSERT INTO "public"."cardcodes" VALUES (3259, '湖南省', '零陵地区', '零陵县', '432921'); +INSERT INTO "public"."cardcodes" VALUES (3260, '湖南省', '零陵地区', '东安县', '432922'); +INSERT INTO "public"."cardcodes" VALUES (3261, '湖南省', '零陵地区', '道县', '432923'); +INSERT INTO "public"."cardcodes" VALUES (3262, '湖南省', '零陵地区', '宁远县', '432924'); +INSERT INTO "public"."cardcodes" VALUES (3263, '湖南省', '零陵地区', '江永县', '432925'); +INSERT INTO "public"."cardcodes" VALUES (3264, '湖南省', '零陵地区', '江华瑶族自治县', '432926'); +INSERT INTO "public"."cardcodes" VALUES (3265, '湖南省', '零陵地区', '蓝山县', '432927'); +INSERT INTO "public"."cardcodes" VALUES (3266, '湖南省', '零陵地区', '新田县', '432928'); +INSERT INTO "public"."cardcodes" VALUES (3267, '湖南省', '零陵地区', '双牌县', '432929'); +INSERT INTO "public"."cardcodes" VALUES (3268, '湖南省', '零陵地区', '双牌县', '432930'); +INSERT INTO "public"."cardcodes" VALUES (3269, '湖南省', '邵阳市', '市辖区', '430501'); +INSERT INTO "public"."cardcodes" VALUES (3270, '湖南省', '邵阳市', '双清区', '430502'); +INSERT INTO "public"."cardcodes" VALUES (3271, '湖南省', '邵阳市', '大祥区', '430503'); +INSERT INTO "public"."cardcodes" VALUES (3272, '湖南省', '邵阳市', '北塔区', '430511'); +INSERT INTO "public"."cardcodes" VALUES (3273, '湖南省', '邵阳市', '邵东县', '430521'); +INSERT INTO "public"."cardcodes" VALUES (3274, '湖南省', '邵阳市', '新邵县', '430522'); +INSERT INTO "public"."cardcodes" VALUES (3275, '湖南省', '邵阳市', '邵阳县', '430523'); +INSERT INTO "public"."cardcodes" VALUES (3276, '湖南省', '邵阳市', '隆回县', '430524'); +INSERT INTO "public"."cardcodes" VALUES (3277, '湖南省', '邵阳市', '洞口县', '430525'); +INSERT INTO "public"."cardcodes" VALUES (3278, '湖南省', '邵阳市', '武冈县', '430526'); +INSERT INTO "public"."cardcodes" VALUES (3279, '湖南省', '邵阳市', '绥宁县', '430527'); +INSERT INTO "public"."cardcodes" VALUES (3280, '湖南省', '邵阳市', '新宁县', '430528'); +INSERT INTO "public"."cardcodes" VALUES (3281, '湖南省', '邵阳市', '城步苗族自治县', '430529'); +INSERT INTO "public"."cardcodes" VALUES (3282, '湖南省', '邵阳市', '武冈市', '430581'); +INSERT INTO "public"."cardcodes" VALUES (3283, '湖南省', '岳阳市', '市辖区', '430601'); +INSERT INTO "public"."cardcodes" VALUES (3284, '湖南省', '岳阳市', '岳阳楼区', '430602'); +INSERT INTO "public"."cardcodes" VALUES (3285, '湖南省', '岳阳市', '云溪区', '430603'); +INSERT INTO "public"."cardcodes" VALUES (3286, '湖南省', '岳阳市', '君山区', '430611'); +INSERT INTO "public"."cardcodes" VALUES (3287, '湖南省', '岳阳市', '岳阳县', '430621'); +INSERT INTO "public"."cardcodes" VALUES (3288, '湖南省', '岳阳市', '临湘县', '430622'); +INSERT INTO "public"."cardcodes" VALUES (3289, '湖南省', '岳阳市', '华容县', '430623'); +INSERT INTO "public"."cardcodes" VALUES (3290, '湖南省', '岳阳市', '湘阴县', '430624'); +INSERT INTO "public"."cardcodes" VALUES (3291, '湖南省', '岳阳市', '汨罗县', '430625'); +INSERT INTO "public"."cardcodes" VALUES (3292, '湖南省', '岳阳市', '平江县', '430626'); +INSERT INTO "public"."cardcodes" VALUES (3293, '湖南省', '岳阳市', '汨罗市', '430681'); +INSERT INTO "public"."cardcodes" VALUES (3294, '湖南省', '岳阳市', '临湘市', '430682'); +INSERT INTO "public"."cardcodes" VALUES (3295, '湖南省', '常德市', '市辖区', '430701'); +INSERT INTO "public"."cardcodes" VALUES (3296, '湖南省', '常德市', '武陵区', '430702'); +INSERT INTO "public"."cardcodes" VALUES (3297, '湖南省', '常德市', '鼎城区', '430703'); +INSERT INTO "public"."cardcodes" VALUES (3298, '湖南省', '常德市', '安乡县', '430721'); +INSERT INTO "public"."cardcodes" VALUES (3299, '湖南省', '常德市', '汉寿县', '430722'); +INSERT INTO "public"."cardcodes" VALUES (3300, '湖南省', '常德市', '澧县', '430723'); +INSERT INTO "public"."cardcodes" VALUES (3301, '湖南省', '常德市', '临澧县', '430724'); +INSERT INTO "public"."cardcodes" VALUES (3302, '湖南省', '常德市', '桃源县', '430725'); +INSERT INTO "public"."cardcodes" VALUES (3303, '湖南省', '常德市', '石门县', '430726'); +INSERT INTO "public"."cardcodes" VALUES (3304, '湖南省', '常德市', '津市市', '430781'); +INSERT INTO "public"."cardcodes" VALUES (3305, '湖南省', '张家界市', '市辖区', '430801'); +INSERT INTO "public"."cardcodes" VALUES (3306, '湖南省', '张家界市', '永定区', '430802'); +INSERT INTO "public"."cardcodes" VALUES (3307, '湖南省', '张家界市', '武陵源区', '430811'); +INSERT INTO "public"."cardcodes" VALUES (3308, '湖南省', '张家界市', '慈利县', '430821'); +INSERT INTO "public"."cardcodes" VALUES (3309, '湖南省', '张家界市', '桑植县', '430822'); +INSERT INTO "public"."cardcodes" VALUES (3310, '湖南省', '益阳市', '市辖区', '430901'); +INSERT INTO "public"."cardcodes" VALUES (3311, '湖南省', '益阳市', '资阳区', '430902'); +INSERT INTO "public"."cardcodes" VALUES (3312, '湖南省', '益阳市', '赫山区', '430903'); +INSERT INTO "public"."cardcodes" VALUES (3313, '湖南省', '益阳市', '市区', '430911'); +INSERT INTO "public"."cardcodes" VALUES (3314, '湖南省', '益阳市', '南县', '430921'); +INSERT INTO "public"."cardcodes" VALUES (3315, '湖南省', '益阳市', '桃江县', '430922'); +INSERT INTO "public"."cardcodes" VALUES (3316, '湖南省', '益阳市', '安化县', '430923'); +INSERT INTO "public"."cardcodes" VALUES (3317, '湖南省', '益阳市', '沅江市', '430981'); +INSERT INTO "public"."cardcodes" VALUES (3318, '湖南省', '郴州市', '市辖区', '431001'); +INSERT INTO "public"."cardcodes" VALUES (3319, '湖南省', '郴州市', '北湖区', '431002'); +INSERT INTO "public"."cardcodes" VALUES (3320, '湖南省', '郴州市', '苏仙区', '431003'); +INSERT INTO "public"."cardcodes" VALUES (3321, '湖南省', '郴州市', '桂阳县', '431021'); +INSERT INTO "public"."cardcodes" VALUES (3322, '湖南省', '郴州市', '宜章县', '431022'); +INSERT INTO "public"."cardcodes" VALUES (3323, '湖南省', '郴州市', '永兴县', '431023'); +INSERT INTO "public"."cardcodes" VALUES (3324, '湖南省', '郴州市', '嘉禾县', '431024'); +INSERT INTO "public"."cardcodes" VALUES (3325, '湖南省', '郴州市', '临武县', '431025'); +INSERT INTO "public"."cardcodes" VALUES (3326, '湖南省', '郴州市', '汝城县', '431026'); +INSERT INTO "public"."cardcodes" VALUES (3327, '湖南省', '郴州市', '桂东县', '431027'); +INSERT INTO "public"."cardcodes" VALUES (3328, '湖南省', '郴州市', '安仁县', '431028'); +INSERT INTO "public"."cardcodes" VALUES (3329, '湖南省', '郴州市', '资兴市', '431081'); +INSERT INTO "public"."cardcodes" VALUES (3330, '湖南省', '永州市', '市辖区', '431101'); +INSERT INTO "public"."cardcodes" VALUES (3331, '湖南省', '永州市', '零陵区', '431102'); +INSERT INTO "public"."cardcodes" VALUES (3332, '湖南省', '永州市', '冷水滩区', '431103'); +INSERT INTO "public"."cardcodes" VALUES (3333, '湖南省', '永州市', '祁阳县', '431121'); +INSERT INTO "public"."cardcodes" VALUES (3334, '湖南省', '永州市', '东安县', '431122'); +INSERT INTO "public"."cardcodes" VALUES (3335, '湖南省', '永州市', '双牌县', '431123'); +INSERT INTO "public"."cardcodes" VALUES (3336, '湖南省', '永州市', '道县', '431124'); +INSERT INTO "public"."cardcodes" VALUES (3337, '湖南省', '永州市', '江永县', '431125'); +INSERT INTO "public"."cardcodes" VALUES (3338, '湖南省', '永州市', '宁远县', '431126'); +INSERT INTO "public"."cardcodes" VALUES (3339, '湖南省', '永州市', '蓝山县', '431127'); +INSERT INTO "public"."cardcodes" VALUES (3340, '湖南省', '永州市', '新田县', '431128'); +INSERT INTO "public"."cardcodes" VALUES (3341, '湖南省', '永州市', '江华瑶族自治县', '431129'); +INSERT INTO "public"."cardcodes" VALUES (3342, '湖南省', '怀化市', '市辖区', '431201'); +INSERT INTO "public"."cardcodes" VALUES (3343, '湖南省', '怀化市', '鹤城区', '431202'); +INSERT INTO "public"."cardcodes" VALUES (3344, '湖南省', '怀化市', '中方县', '431221'); +INSERT INTO "public"."cardcodes" VALUES (3345, '湖南省', '怀化市', '沅陵县', '431222'); +INSERT INTO "public"."cardcodes" VALUES (3346, '湖南省', '怀化市', '辰溪县', '431223'); +INSERT INTO "public"."cardcodes" VALUES (3347, '湖南省', '怀化市', '溆浦县', '431224'); +INSERT INTO "public"."cardcodes" VALUES (3348, '湖南省', '怀化市', '会同县', '431225'); +INSERT INTO "public"."cardcodes" VALUES (3349, '湖南省', '怀化市', '麻阳苗族自治县', '431226'); +INSERT INTO "public"."cardcodes" VALUES (3350, '湖南省', '怀化市', '新晃侗族自治县', '431227'); +INSERT INTO "public"."cardcodes" VALUES (3351, '湖南省', '怀化市', '芷江侗族自治县', '431228'); +INSERT INTO "public"."cardcodes" VALUES (3352, '湖南省', '怀化市', '靖州苗族侗族自治县', '431229'); +INSERT INTO "public"."cardcodes" VALUES (3353, '湖南省', '怀化市', '通道侗族自治县', '431230'); +INSERT INTO "public"."cardcodes" VALUES (3354, '湖南省', '怀化市', '洪江市', '431281'); +INSERT INTO "public"."cardcodes" VALUES (3355, '湖南省', '娄底市', '市辖区', '431301'); +INSERT INTO "public"."cardcodes" VALUES (3356, '湖南省', '娄底市', '娄星区', '431302'); +INSERT INTO "public"."cardcodes" VALUES (3357, '湖南省', '娄底市', '双峰县', '431321'); +INSERT INTO "public"."cardcodes" VALUES (3358, '湖南省', '娄底市', '新化县', '431322'); +INSERT INTO "public"."cardcodes" VALUES (3359, '湖南省', '娄底市', '冷水江市', '431381'); +INSERT INTO "public"."cardcodes" VALUES (3360, '湖南省', '娄底市', '涟源市', '431382'); +INSERT INTO "public"."cardcodes" VALUES (3361, '湖南省', '怀化地区', '怀化市', '433001'); +INSERT INTO "public"."cardcodes" VALUES (3362, '湖南省', '怀化地区', '洪江市', '433002'); +INSERT INTO "public"."cardcodes" VALUES (3363, '湖南省', '怀化地区', '黔阳县', '433021'); +INSERT INTO "public"."cardcodes" VALUES (3364, '湖南省', '怀化地区', '沅陵县', '433022'); +INSERT INTO "public"."cardcodes" VALUES (3365, '湖南省', '怀化地区', '辰溪县', '433023'); +INSERT INTO "public"."cardcodes" VALUES (3366, '湖南省', '怀化地区', '溆浦县', '433024'); +INSERT INTO "public"."cardcodes" VALUES (3367, '湖南省', '怀化地区', '麻阳县', '433025'); +INSERT INTO "public"."cardcodes" VALUES (3368, '湖南省', '怀化地区', '新晃侗族自治县', '433026'); +INSERT INTO "public"."cardcodes" VALUES (3369, '湖南省', '怀化地区', '芷江县', '433027'); +INSERT INTO "public"."cardcodes" VALUES (3370, '湖南省', '怀化地区', '怀化县', '433028'); +INSERT INTO "public"."cardcodes" VALUES (3371, '湖南省', '怀化地区', '会同县', '433029'); +INSERT INTO "public"."cardcodes" VALUES (3372, '湖南省', '怀化地区', '靖县', '433030'); +INSERT INTO "public"."cardcodes" VALUES (3373, '湖南省', '怀化地区', '通道侗族自治县', '433031'); +INSERT INTO "public"."cardcodes" VALUES (3374, '湖南省', '湘西土家族苗族自治州', '吉首市', '433101'); +INSERT INTO "public"."cardcodes" VALUES (3375, '湖南省', '湘西土家族苗族自治州', '吉首县', '433121'); +INSERT INTO "public"."cardcodes" VALUES (3376, '湖南省', '湘西土家族苗族自治州', '泸溪县', '433122'); +INSERT INTO "public"."cardcodes" VALUES (3377, '湖南省', '湘西土家族苗族自治州', '凤凰县', '433123'); +INSERT INTO "public"."cardcodes" VALUES (3378, '湖南省', '湘西土家族苗族自治州', '花垣县', '433124'); +INSERT INTO "public"."cardcodes" VALUES (3379, '湖南省', '湘西土家族苗族自治州', '保靖县', '433125'); +INSERT INTO "public"."cardcodes" VALUES (3380, '湖南省', '湘西土家族苗族自治州', '古丈县', '433126'); +INSERT INTO "public"."cardcodes" VALUES (3381, '湖南省', '湘西土家族苗族自治州', '永顺县', '433127'); +INSERT INTO "public"."cardcodes" VALUES (3382, '湖南省', '湘西土家族苗族自治州', '大庸县', '433128'); +INSERT INTO "public"."cardcodes" VALUES (3383, '湖南省', '湘西土家族苗族自治州', '桑植县', '433129'); +INSERT INTO "public"."cardcodes" VALUES (3384, '湖南省', '湘西土家族苗族自治州', '龙山县', '433130'); +INSERT INTO "public"."cardcodes" VALUES (3385, '湖南省', NULL, '醴陵市', '439001'); +INSERT INTO "public"."cardcodes" VALUES (3386, '湖南省', NULL, '湘乡市', '439002'); +INSERT INTO "public"."cardcodes" VALUES (3387, '湖南省', NULL, '耒阳市', '439003'); +INSERT INTO "public"."cardcodes" VALUES (3388, '湖南省', NULL, '汨罗市', '439004'); +INSERT INTO "public"."cardcodes" VALUES (3389, '湖南省', NULL, '津市市', '439005'); +INSERT INTO "public"."cardcodes" VALUES (3390, '广东省', '广州市', '市辖区', '440101'); +INSERT INTO "public"."cardcodes" VALUES (3391, '广东省', '广州市', '东山区', '440102'); +INSERT INTO "public"."cardcodes" VALUES (3392, '广东省', '广州市', '荔湾区', '440103'); +INSERT INTO "public"."cardcodes" VALUES (3393, '广东省', '广州市', '越秀区', '440104'); +INSERT INTO "public"."cardcodes" VALUES (3394, '广东省', '广州市', '海珠区', '440105'); +INSERT INTO "public"."cardcodes" VALUES (3395, '广东省', '广州市', '天河区', '440106'); +INSERT INTO "public"."cardcodes" VALUES (3396, '广东省', '广州市', '芳村区', '440107'); +INSERT INTO "public"."cardcodes" VALUES (3397, '广东省', '广州市', '白云区', '440111'); +INSERT INTO "public"."cardcodes" VALUES (3398, '广东省', '广州市', '黄埔区', '440112'); +INSERT INTO "public"."cardcodes" VALUES (3399, '广东省', '广州市', '番禺区', '440113'); +INSERT INTO "public"."cardcodes" VALUES (3400, '广东省', '广州市', '花都区', '440114'); +INSERT INTO "public"."cardcodes" VALUES (3401, '广东省', '广州市', '南沙区', '440115'); +INSERT INTO "public"."cardcodes" VALUES (3402, '广东省', '广州市', '萝岗区', '440116'); +INSERT INTO "public"."cardcodes" VALUES (3403, '广东省', '广州市', '市区', '440120'); +INSERT INTO "public"."cardcodes" VALUES (3404, '广东省', '广州市', '花县', '440121'); +INSERT INTO "public"."cardcodes" VALUES (3405, '广东省', '广州市', '从化县', '440122'); +INSERT INTO "public"."cardcodes" VALUES (3406, '广东省', '广州市', '新丰县', '440123'); +INSERT INTO "public"."cardcodes" VALUES (3407, '广东省', '广州市', '龙门县', '440124'); +INSERT INTO "public"."cardcodes" VALUES (3408, '广东省', '广州市', '增城县', '440125'); +INSERT INTO "public"."cardcodes" VALUES (3409, '广东省', '广州市', '番禺县', '440126'); +INSERT INTO "public"."cardcodes" VALUES (3410, '广东省', '广州市', '清远县', '440127'); +INSERT INTO "public"."cardcodes" VALUES (3411, '广东省', '广州市', '佛冈县', '440128'); +INSERT INTO "public"."cardcodes" VALUES (3412, '广东省', '广州市', '番禺市', '440181'); +INSERT INTO "public"."cardcodes" VALUES (3413, '广东省', '广州市', '花都市', '440182'); +INSERT INTO "public"."cardcodes" VALUES (3414, '广东省', '广州市', '增城市', '440183'); +INSERT INTO "public"."cardcodes" VALUES (3415, '广东省', '广州市', '从化市', '440184'); +INSERT INTO "public"."cardcodes" VALUES (3416, '广东省', '韶关市', '市辖区', '440201'); +INSERT INTO "public"."cardcodes" VALUES (3417, '广东省', '韶关市', '北江区', '440202'); +INSERT INTO "public"."cardcodes" VALUES (3418, '广东省', '韶关市', '武江区', '440203'); +INSERT INTO "public"."cardcodes" VALUES (3419, '广东省', '韶关市', '浈江区', '440204'); +INSERT INTO "public"."cardcodes" VALUES (3420, '广东省', '韶关市', '曲江区', '440205'); +INSERT INTO "public"."cardcodes" VALUES (3421, '广东省', '韶关市', '曲江县', '440221'); +INSERT INTO "public"."cardcodes" VALUES (3422, '广东省', '韶关市', '始兴县', '440222'); +INSERT INTO "public"."cardcodes" VALUES (3423, '广东省', '韶关市', '南雄县', '440223'); +INSERT INTO "public"."cardcodes" VALUES (3424, '广东省', '韶关市', '仁化县', '440224'); +INSERT INTO "public"."cardcodes" VALUES (3425, '广东省', '韶关市', '乐昌县', '440225'); +INSERT INTO "public"."cardcodes" VALUES (3426, '广东省', '韶关市', '连县', '440226'); +INSERT INTO "public"."cardcodes" VALUES (3427, '广东省', '韶关市', '阳山县', '440227'); +INSERT INTO "public"."cardcodes" VALUES (3428, '广东省', '韶关市', '英德县', '440228'); +INSERT INTO "public"."cardcodes" VALUES (3429, '广东省', '韶关市', '翁源县', '440229'); +INSERT INTO "public"."cardcodes" VALUES (3430, '广东省', '韶关市', '连山壮族瑶族自治县', '440230'); +INSERT INTO "public"."cardcodes" VALUES (3431, '广东省', '韶关市', '连南瑶族自治县', '440231'); +INSERT INTO "public"."cardcodes" VALUES (3432, '广东省', '韶关市', '乳源瑶族自治县', '440232'); +INSERT INTO "public"."cardcodes" VALUES (3433, '广东省', '韶关市', '新丰县', '440233'); +INSERT INTO "public"."cardcodes" VALUES (3434, '广东省', '韶关市', '乐昌市', '440281'); +INSERT INTO "public"."cardcodes" VALUES (3435, '广东省', '韶关市', '南雄市', '440282'); +INSERT INTO "public"."cardcodes" VALUES (3436, '广东省', '深圳市', '市辖区', '440301'); +INSERT INTO "public"."cardcodes" VALUES (3437, '广东省', '深圳市', '盐田区', '440302'); +INSERT INTO "public"."cardcodes" VALUES (3438, '广东省', '深圳市', '罗湖区', '440303'); +INSERT INTO "public"."cardcodes" VALUES (3439, '广东省', '深圳市', '福田区', '440304'); +INSERT INTO "public"."cardcodes" VALUES (3440, '广东省', '深圳市', '南山区', '440305'); +INSERT INTO "public"."cardcodes" VALUES (3441, '广东省', '深圳市', '宝安区', '440306'); +INSERT INTO "public"."cardcodes" VALUES (3442, '广东省', '深圳市', '龙岗区', '440307'); +INSERT INTO "public"."cardcodes" VALUES (3443, '广东省', '深圳市', '盐田区', '440308'); +INSERT INTO "public"."cardcodes" VALUES (3444, '广东省', '深圳市', '市区', '440320'); +INSERT INTO "public"."cardcodes" VALUES (3445, '广东省', '深圳市', '宝安县', '440321'); +INSERT INTO "public"."cardcodes" VALUES (3446, '广东省', '珠海市', '市辖区', '440401'); +INSERT INTO "public"."cardcodes" VALUES (3447, '广东省', '珠海市', '香洲区', '440402'); +INSERT INTO "public"."cardcodes" VALUES (3448, '广东省', '珠海市', '斗门区', '440403'); +INSERT INTO "public"."cardcodes" VALUES (3449, '广东省', '珠海市', '金湾区', '440404'); +INSERT INTO "public"."cardcodes" VALUES (3450, '广东省', '珠海市', '斗门县', '440421'); +INSERT INTO "public"."cardcodes" VALUES (3451, '广东省', '汕头市', '市辖区', '440501'); +INSERT INTO "public"."cardcodes" VALUES (3452, '广东省', '汕头市', '同平区', '440502'); +INSERT INTO "public"."cardcodes" VALUES (3453, '广东省', '汕头市', '安平区', '440503'); +INSERT INTO "public"."cardcodes" VALUES (3454, '广东省', '汕头市', '公园区', '440504'); +INSERT INTO "public"."cardcodes" VALUES (3455, '广东省', '汕头市', '金砂区', '440505'); +INSERT INTO "public"."cardcodes" VALUES (3456, '广东省', '汕头市', '达濠区', '440506'); +INSERT INTO "public"."cardcodes" VALUES (3457, '广东省', '汕头市', '龙湖区', '440507'); +INSERT INTO "public"."cardcodes" VALUES (3458, '广东省', '汕头市', '金园区', '440508'); +INSERT INTO "public"."cardcodes" VALUES (3459, '广东省', '汕头市', '升平区', '440509'); +INSERT INTO "public"."cardcodes" VALUES (3460, '广东省', '汕头市', '河浦区', '440510'); +INSERT INTO "public"."cardcodes" VALUES (3461, '广东省', '汕头市', '金平区', '440511'); +INSERT INTO "public"."cardcodes" VALUES (3462, '广东省', '汕头市', '濠江区', '440512'); +INSERT INTO "public"."cardcodes" VALUES (3463, '广东省', '汕头市', '潮阳区', '440513'); +INSERT INTO "public"."cardcodes" VALUES (3464, '广东省', '汕头市', '潮南区', '440514'); +INSERT INTO "public"."cardcodes" VALUES (3465, '广东省', '汕头市', '澄海区', '440515'); +INSERT INTO "public"."cardcodes" VALUES (3466, '广东省', '汕头市', '潮州市', '440520'); +INSERT INTO "public"."cardcodes" VALUES (3467, '广东省', '汕头市', '澄海县', '440521'); +INSERT INTO "public"."cardcodes" VALUES (3468, '广东省', '汕头市', '饶平县', '440522'); +INSERT INTO "public"."cardcodes" VALUES (3469, '广东省', '汕头市', '南澳县', '440523'); +INSERT INTO "public"."cardcodes" VALUES (3470, '广东省', '汕头市', '潮阳县', '440524'); +INSERT INTO "public"."cardcodes" VALUES (3471, '广东省', '汕头市', '揭阳县', '440525'); +INSERT INTO "public"."cardcodes" VALUES (3472, '广东省', '汕头市', '揭西县', '440526'); +INSERT INTO "public"."cardcodes" VALUES (3473, '广东省', '汕头市', '普宁县', '440527'); +INSERT INTO "public"."cardcodes" VALUES (3474, '广东省', '汕头市', '惠来县', '440528'); +INSERT INTO "public"."cardcodes" VALUES (3475, '广东省', '汕头市', '潮州市', '440581'); +INSERT INTO "public"."cardcodes" VALUES (3476, '广东省', '汕头市', '潮阳市', '440582'); +INSERT INTO "public"."cardcodes" VALUES (3477, '广东省', '汕头市', '澄海市', '440583'); +INSERT INTO "public"."cardcodes" VALUES (3478, '广东省', '佛山市', '市辖区', '440601'); +INSERT INTO "public"."cardcodes" VALUES (3479, '广东省', '佛山市', '城区', '440602'); +INSERT INTO "public"."cardcodes" VALUES (3480, '广东省', '佛山市', '石湾区', '440603'); +INSERT INTO "public"."cardcodes" VALUES (3481, '广东省', '佛山市', '禅城区', '440604'); +INSERT INTO "public"."cardcodes" VALUES (3482, '广东省', '佛山市', '南海区', '440605'); +INSERT INTO "public"."cardcodes" VALUES (3483, '广东省', '佛山市', '顺德区', '440606'); +INSERT INTO "public"."cardcodes" VALUES (3484, '广东省', '佛山市', '三水区', '440607'); +INSERT INTO "public"."cardcodes" VALUES (3485, '广东省', '佛山市', '高明区', '440608'); +INSERT INTO "public"."cardcodes" VALUES (3486, '广东省', '佛山市', '中山市', '440620'); +INSERT INTO "public"."cardcodes" VALUES (3487, '广东省', '佛山市', '三水县', '440621'); +INSERT INTO "public"."cardcodes" VALUES (3488, '广东省', '佛山市', '南海县', '440622'); +INSERT INTO "public"."cardcodes" VALUES (3489, '广东省', '佛山市', '顺德县', '440623'); +INSERT INTO "public"."cardcodes" VALUES (3490, '广东省', '佛山市', '高明县', '440624'); +INSERT INTO "public"."cardcodes" VALUES (3491, '广东省', '佛山市', '顺德市', '440681'); +INSERT INTO "public"."cardcodes" VALUES (3492, '广东省', '佛山市', '南海市', '440682'); +INSERT INTO "public"."cardcodes" VALUES (3493, '广东省', '佛山市', '三水市', '440683'); +INSERT INTO "public"."cardcodes" VALUES (3494, '广东省', '佛山市', '高明市', '440684'); +INSERT INTO "public"."cardcodes" VALUES (3495, '广东省', '江门市', '市辖区', '440701'); +INSERT INTO "public"."cardcodes" VALUES (3496, '广东省', '江门市', '城区', '440702'); +INSERT INTO "public"."cardcodes" VALUES (3497, '广东省', '江门市', '蓬江区', '440703'); +INSERT INTO "public"."cardcodes" VALUES (3498, '广东省', '江门市', '江海区', '440704'); +INSERT INTO "public"."cardcodes" VALUES (3499, '广东省', '江门市', '新会区', '440705'); +INSERT INTO "public"."cardcodes" VALUES (3500, '广东省', '江门市', '郊区', '440711'); +INSERT INTO "public"."cardcodes" VALUES (3501, '广东省', '江门市', '新会县', '440721'); +INSERT INTO "public"."cardcodes" VALUES (3502, '广东省', '江门市', '台山县', '440722'); +INSERT INTO "public"."cardcodes" VALUES (3503, '广东省', '江门市', '恩平县', '440723'); +INSERT INTO "public"."cardcodes" VALUES (3504, '广东省', '江门市', '开平县', '440724'); +INSERT INTO "public"."cardcodes" VALUES (3505, '广东省', '江门市', '鹤山县', '440725'); +INSERT INTO "public"."cardcodes" VALUES (3506, '广东省', '江门市', '阳江县', '440726'); +INSERT INTO "public"."cardcodes" VALUES (3507, '广东省', '江门市', '阳春县', '440727'); +INSERT INTO "public"."cardcodes" VALUES (3508, '广东省', '江门市', '台山市', '440781'); +INSERT INTO "public"."cardcodes" VALUES (3509, '广东省', '江门市', '新会市', '440782'); +INSERT INTO "public"."cardcodes" VALUES (3510, '广东省', '江门市', '开平市', '440783'); +INSERT INTO "public"."cardcodes" VALUES (3511, '广东省', '江门市', '鹤山市', '440784'); +INSERT INTO "public"."cardcodes" VALUES (3512, '广东省', '江门市', '恩平市', '440785'); +INSERT INTO "public"."cardcodes" VALUES (3513, '广东省', '清远市', '连州市', '441882'); +INSERT INTO "public"."cardcodes" VALUES (3514, '广东省', '清远市', '市辖区', '441801'); +INSERT INTO "public"."cardcodes" VALUES (3515, '广东省', '清远市', '清城区', '441802'); +INSERT INTO "public"."cardcodes" VALUES (3516, '广东省', '清远市', '清郊区', '441811'); +INSERT INTO "public"."cardcodes" VALUES (3517, '广东省', '清远市', '佛冈县', '441821'); +INSERT INTO "public"."cardcodes" VALUES (3518, '广东省', '清远市', '英德县', '441822'); +INSERT INTO "public"."cardcodes" VALUES (3519, '广东省', '清远市', '阳山县', '441823'); +INSERT INTO "public"."cardcodes" VALUES (3520, '广东省', '清远市', '连县', '441824'); +INSERT INTO "public"."cardcodes" VALUES (3521, '广东省', '清远市', '连山壮族瑶族自治县', '441825'); +INSERT INTO "public"."cardcodes" VALUES (3522, '广东省', '清远市', '连南瑶族自治县', '441826'); +INSERT INTO "public"."cardcodes" VALUES (3523, '广东省', '清远市', '清新县', '441827'); +INSERT INTO "public"."cardcodes" VALUES (3524, '广东省', '清远市', '英德市', '441881'); +INSERT INTO "public"."cardcodes" VALUES (3525, '广东省', '佛山市', '佛山市', '442701'); +INSERT INTO "public"."cardcodes" VALUES (3526, '广东省', '佛山市', '江门市', '442702'); +INSERT INTO "public"."cardcodes" VALUES (3527, '广东省', '佛山市', '三水县', '442721'); +INSERT INTO "public"."cardcodes" VALUES (3528, '广东省', '佛山市', '南海县', '442722'); +INSERT INTO "public"."cardcodes" VALUES (3529, '广东省', '佛山市', '顺德县', '442723'); +INSERT INTO "public"."cardcodes" VALUES (3530, '广东省', '佛山市', '中山县', '442724'); +INSERT INTO "public"."cardcodes" VALUES (3531, '广东省', '佛山市', '斗门县', '442725'); +INSERT INTO "public"."cardcodes" VALUES (3532, '广东省', '佛山市', '新会县', '442726'); +INSERT INTO "public"."cardcodes" VALUES (3533, '广东省', '佛山市', '台山县', '442727'); +INSERT INTO "public"."cardcodes" VALUES (3534, '广东省', '佛山市', '恩平县', '442728'); +INSERT INTO "public"."cardcodes" VALUES (3535, '广东省', '佛山市', '开平县', '442729'); +INSERT INTO "public"."cardcodes" VALUES (3536, '广东省', '佛山市', '鹤山县', '442731'); +INSERT INTO "public"."cardcodes" VALUES (3537, '广东省', '佛山市', '高明县', '442732'); +INSERT INTO "public"."cardcodes" VALUES (3538, '广东省', '湛江市', '湛江市', '442901'); +INSERT INTO "public"."cardcodes" VALUES (3539, '广东省', '湛江市', '茂名市', '442902'); +INSERT INTO "public"."cardcodes" VALUES (3540, '广东省', '湛江市', '阳江县', '442921'); +INSERT INTO "public"."cardcodes" VALUES (3541, '广东省', '湛江市', '阳春县', '442922'); +INSERT INTO "public"."cardcodes" VALUES (3542, '广东省', '湛江市', '信宜县', '442923'); +INSERT INTO "public"."cardcodes" VALUES (3543, '广东省', '湛江市', '高州县', '442924'); +INSERT INTO "public"."cardcodes" VALUES (3544, '广东省', '湛江市', '电白县', '442925'); +INSERT INTO "public"."cardcodes" VALUES (3545, '广东省', '湛江市', '吴川县', '442926'); +INSERT INTO "public"."cardcodes" VALUES (3546, '广东省', '湛江市', '化州县', '442927'); +INSERT INTO "public"."cardcodes" VALUES (3547, '广东省', '湛江市', '廉江县', '442928'); +INSERT INTO "public"."cardcodes" VALUES (3548, '广东省', '湛江市', '遂溪县', '442929'); +INSERT INTO "public"."cardcodes" VALUES (3549, '广东省', '湛江市', '海康县', '442930'); +INSERT INTO "public"."cardcodes" VALUES (3550, '广东省', '湛江市', '徐闻县', '442931'); +INSERT INTO "public"."cardcodes" VALUES (3551, '广东省', '潮州市', '市辖区', '445101'); +INSERT INTO "public"."cardcodes" VALUES (3552, '广东省', '潮州市', '湘桥区', '445102'); +INSERT INTO "public"."cardcodes" VALUES (3553, '广东省', '潮州市', '潮安县', '445121'); +INSERT INTO "public"."cardcodes" VALUES (3554, '广东省', '潮州市', '饶平县', '445122'); +INSERT INTO "public"."cardcodes" VALUES (3555, '广东省', '揭阳市', '市辖区', '445201'); +INSERT INTO "public"."cardcodes" VALUES (3556, '广东省', '揭阳市', '榕城区', '445202'); +INSERT INTO "public"."cardcodes" VALUES (3557, '广东省', '揭阳市', '揭东县', '445221'); +INSERT INTO "public"."cardcodes" VALUES (3558, '广东省', '揭阳市', '揭西县', '445222'); +INSERT INTO "public"."cardcodes" VALUES (3559, '广东省', '揭阳市', '惠来县', '445224'); +INSERT INTO "public"."cardcodes" VALUES (3560, '广东省', '揭阳市', '普宁市', '445281'); +INSERT INTO "public"."cardcodes" VALUES (3561, '广东省', '湛江市', '市辖区', '440801'); +INSERT INTO "public"."cardcodes" VALUES (3562, '广东省', '湛江市', '赤坎区', '440802'); +INSERT INTO "public"."cardcodes" VALUES (3563, '广东省', '湛江市', '霞山区', '440803'); +INSERT INTO "public"."cardcodes" VALUES (3564, '广东省', '湛江市', '坡头区', '440804'); +INSERT INTO "public"."cardcodes" VALUES (3565, '广东省', '湛江市', '麻章区', '440811'); +INSERT INTO "public"."cardcodes" VALUES (3566, '广东省', '湛江市', '吴川县', '440821'); +INSERT INTO "public"."cardcodes" VALUES (3567, '广东省', '湛江市', '廉江县', '440822'); +INSERT INTO "public"."cardcodes" VALUES (3568, '广东省', '湛江市', '遂溪县', '440823'); +INSERT INTO "public"."cardcodes" VALUES (3569, '广东省', '湛江市', '海康县', '440824'); +INSERT INTO "public"."cardcodes" VALUES (3570, '广东省', '湛江市', '徐闻县', '440825'); +INSERT INTO "public"."cardcodes" VALUES (3571, '广东省', '湛江市', '廉江市', '440881'); +INSERT INTO "public"."cardcodes" VALUES (3572, '广东省', '湛江市', '雷州市', '440882'); +INSERT INTO "public"."cardcodes" VALUES (3573, '广东省', '湛江市', '吴川市', '440883'); +INSERT INTO "public"."cardcodes" VALUES (3574, '广东省', '茂名市', '市辖区', '440901'); +INSERT INTO "public"."cardcodes" VALUES (3575, '广东省', '茂名市', '茂南区', '440902'); +INSERT INTO "public"."cardcodes" VALUES (3576, '广东省', '茂名市', '茂港区', '440903'); +INSERT INTO "public"."cardcodes" VALUES (3577, '广东省', '茂名市', '信宜县', '440921'); +INSERT INTO "public"."cardcodes" VALUES (3578, '广东省', '茂名市', '高州县', '440922'); +INSERT INTO "public"."cardcodes" VALUES (3579, '广东省', '茂名市', '电白县', '440923'); +INSERT INTO "public"."cardcodes" VALUES (3580, '广东省', '茂名市', '化州县', '440924'); +INSERT INTO "public"."cardcodes" VALUES (3581, '广东省', '茂名市', '高州市', '440981'); +INSERT INTO "public"."cardcodes" VALUES (3582, '广东省', '茂名市', '化州市', '440982'); +INSERT INTO "public"."cardcodes" VALUES (3583, '广东省', '茂名市', '信宜市', '440983'); +INSERT INTO "public"."cardcodes" VALUES (3584, '广东省', '肇庆市', '市辖区', '441201'); +INSERT INTO "public"."cardcodes" VALUES (3585, '广东省', '肇庆市', '端州区', '441202'); +INSERT INTO "public"."cardcodes" VALUES (3586, '广东省', '肇庆市', '鼎湖区', '441203'); +INSERT INTO "public"."cardcodes" VALUES (3587, '广东省', '肇庆市', '高要县', '441221'); +INSERT INTO "public"."cardcodes" VALUES (3588, '广东省', '肇庆市', '四会县', '441222'); +INSERT INTO "public"."cardcodes" VALUES (3589, '广东省', '肇庆市', '广宁县', '441223'); +INSERT INTO "public"."cardcodes" VALUES (3590, '广东省', '肇庆市', '怀集县', '441224'); +INSERT INTO "public"."cardcodes" VALUES (3591, '广东省', '肇庆市', '封开县', '441225'); +INSERT INTO "public"."cardcodes" VALUES (3592, '广东省', '肇庆市', '德庆县', '441226'); +INSERT INTO "public"."cardcodes" VALUES (3593, '广东省', '肇庆市', '云浮县', '441227'); +INSERT INTO "public"."cardcodes" VALUES (3594, '广东省', '肇庆市', '新兴县', '441228'); +INSERT INTO "public"."cardcodes" VALUES (3595, '广东省', '肇庆市', '郁南县', '441229'); +INSERT INTO "public"."cardcodes" VALUES (3596, '广东省', '肇庆市', '罗定县', '441230'); +INSERT INTO "public"."cardcodes" VALUES (3597, '广东省', '肇庆市', '云浮市', '441281'); +INSERT INTO "public"."cardcodes" VALUES (3598, '广东省', '肇庆市', '罗定市', '441282'); +INSERT INTO "public"."cardcodes" VALUES (3599, '广东省', '肇庆市', '高要市', '441283'); +INSERT INTO "public"."cardcodes" VALUES (3600, '广东省', '肇庆市', '四会市', '441284'); +INSERT INTO "public"."cardcodes" VALUES (3601, '广东省', '惠州市', '市辖区', '441301'); +INSERT INTO "public"."cardcodes" VALUES (3602, '广东省', '惠州市', '惠城区', '441302'); +INSERT INTO "public"."cardcodes" VALUES (3603, '广东省', '惠州市', '惠阳区', '441303'); +INSERT INTO "public"."cardcodes" VALUES (3604, '广东省', '惠州市', '惠阳县', '441321'); +INSERT INTO "public"."cardcodes" VALUES (3605, '广东省', '惠州市', '博罗县', '441322'); +INSERT INTO "public"."cardcodes" VALUES (3606, '广东省', '惠州市', '惠东县', '441323'); +INSERT INTO "public"."cardcodes" VALUES (3607, '广东省', '惠州市', '龙门县', '441324'); +INSERT INTO "public"."cardcodes" VALUES (3608, '广东省', '惠州市', '惠阳市', '441381'); +INSERT INTO "public"."cardcodes" VALUES (3609, '广东省', '梅州市', '市辖区', '441401'); +INSERT INTO "public"."cardcodes" VALUES (3610, '广东省', '梅州市', '梅江区', '441402'); +INSERT INTO "public"."cardcodes" VALUES (3611, '广东省', '梅州市', '梅县', '441421'); +INSERT INTO "public"."cardcodes" VALUES (3612, '广东省', '梅州市', '大埔县', '441422'); +INSERT INTO "public"."cardcodes" VALUES (3613, '广东省', '梅州市', '丰顺县', '441423'); +INSERT INTO "public"."cardcodes" VALUES (3614, '广东省', '梅州市', '五华县', '441424'); +INSERT INTO "public"."cardcodes" VALUES (3615, '广东省', '梅州市', '兴宁县', '441425'); +INSERT INTO "public"."cardcodes" VALUES (3616, '广东省', '梅州市', '平远县', '441426'); +INSERT INTO "public"."cardcodes" VALUES (3617, '广东省', '梅州市', '蕉岭县', '441427'); +INSERT INTO "public"."cardcodes" VALUES (3618, '广东省', '梅州市', '兴宁市', '441481'); +INSERT INTO "public"."cardcodes" VALUES (3619, '广东省', '汕尾市', '市辖区', '441501'); +INSERT INTO "public"."cardcodes" VALUES (3620, '广东省', '汕尾市', '城区', '441502'); +INSERT INTO "public"."cardcodes" VALUES (3621, '广东省', '汕尾市', '海丰县', '441521'); +INSERT INTO "public"."cardcodes" VALUES (3622, '广东省', '汕尾市', '陆丰县', '441522'); +INSERT INTO "public"."cardcodes" VALUES (3623, '广东省', '汕尾市', '陆河县', '441523'); +INSERT INTO "public"."cardcodes" VALUES (3624, '广东省', '汕尾市', '陆丰市', '441581'); +INSERT INTO "public"."cardcodes" VALUES (3625, '广东省', '河源市', '市辖区', '441601'); +INSERT INTO "public"."cardcodes" VALUES (3626, '广东省', '河源市', '源城区', '441602'); +INSERT INTO "public"."cardcodes" VALUES (3627, '广东省', '河源市', '郊区', '441611'); +INSERT INTO "public"."cardcodes" VALUES (3628, '广东省', '河源市', '紫金县', '441621'); +INSERT INTO "public"."cardcodes" VALUES (3629, '广东省', '河源市', '龙川县', '441622'); +INSERT INTO "public"."cardcodes" VALUES (3630, '广东省', '河源市', '连平县', '441623'); +INSERT INTO "public"."cardcodes" VALUES (3631, '广东省', '河源市', '和平县', '441624'); +INSERT INTO "public"."cardcodes" VALUES (3632, '广东省', '河源市', '东源县', '441625'); +INSERT INTO "public"."cardcodes" VALUES (3633, '广东省', '阳江市', '市辖区', '441701'); +INSERT INTO "public"."cardcodes" VALUES (3634, '广东省', '阳江市', '江城区', '441702'); +INSERT INTO "public"."cardcodes" VALUES (3635, '广东省', '阳江市', '阳东区', '441703'); +INSERT INTO "public"."cardcodes" VALUES (3636, '广东省', '阳江市', '阳西县', '441721'); +INSERT INTO "public"."cardcodes" VALUES (3637, '广东省', '阳江市', '阳春县', '441722'); +INSERT INTO "public"."cardcodes" VALUES (3638, '广东省', '阳江市', '阳东县', '441723'); +INSERT INTO "public"."cardcodes" VALUES (3639, '广东省', '阳江市', '阳春市', '441781'); +INSERT INTO "public"."cardcodes" VALUES (3640, '广东省', '云浮市', '市辖区', '445301'); +INSERT INTO "public"."cardcodes" VALUES (3641, '广东省', '云浮市', '云城区', '445302'); +INSERT INTO "public"."cardcodes" VALUES (3642, '广东省', '云浮市', '新兴县', '445321'); +INSERT INTO "public"."cardcodes" VALUES (3643, '广东省', '云浮市', '郁南县', '445322'); +INSERT INTO "public"."cardcodes" VALUES (3644, '广东省', '云浮市', '云安县', '445323'); +INSERT INTO "public"."cardcodes" VALUES (3645, '广东省', '云浮市', '罗定市', '445381'); +INSERT INTO "public"."cardcodes" VALUES (3646, '广东省', NULL, '东莞市', '441900'); +INSERT INTO "public"."cardcodes" VALUES (3647, '广东省', NULL, '中山市', '442000'); +INSERT INTO "public"."cardcodes" VALUES (3648, '广东省', NULL, '连平县', '442524'); +INSERT INTO "public"."cardcodes" VALUES (3649, '广东省', NULL, '河源县', '442525'); +INSERT INTO "public"."cardcodes" VALUES (3650, '广东省', NULL, '博罗县', '442526'); +INSERT INTO "public"."cardcodes" VALUES (3651, '广东省', NULL, '东莞县', '442527'); +INSERT INTO "public"."cardcodes" VALUES (3652, '广东省', NULL, '惠东县', '442528'); +INSERT INTO "public"."cardcodes" VALUES (3653, '广东省', NULL, '龙川县', '442529'); +INSERT INTO "public"."cardcodes" VALUES (3654, '广东省', NULL, '陆丰县', '442530'); +INSERT INTO "public"."cardcodes" VALUES (3655, '广东省', NULL, '海丰县', '442531'); +INSERT INTO "public"."cardcodes" VALUES (3656, '广东省', NULL, '始兴县', '442621'); +INSERT INTO "public"."cardcodes" VALUES (3657, '广东省', NULL, '南雄县', '442622'); +INSERT INTO "public"."cardcodes" VALUES (3658, '广东省', NULL, '仁化县', '442623'); +INSERT INTO "public"."cardcodes" VALUES (3659, '广东省', NULL, '乐昌县', '442624'); +INSERT INTO "public"."cardcodes" VALUES (3660, '广东省', NULL, '清远县', '442628'); +INSERT INTO "public"."cardcodes" VALUES (3661, '广东省', NULL, '翁源县', '442630'); +INSERT INTO "public"."cardcodes" VALUES (3662, '广东省', NULL, '连山壮族瑶族自治县', '442631'); +INSERT INTO "public"."cardcodes" VALUES (3663, '广东省', NULL, '连南瑶族自治县', '442632'); +INSERT INTO "public"."cardcodes" VALUES (3664, '广东省', NULL, '乳源瑶族自治县', '442633'); +INSERT INTO "public"."cardcodes" VALUES (3665, '广东省', NULL, '高要县', '442821'); +INSERT INTO "public"."cardcodes" VALUES (3666, '广东省', NULL, '四会县', '442822'); +INSERT INTO "public"."cardcodes" VALUES (3667, '广东省', NULL, '广宁县', '442823'); +INSERT INTO "public"."cardcodes" VALUES (3668, '广东省', NULL, '怀集县', '442824'); +INSERT INTO "public"."cardcodes" VALUES (3669, '广东省', NULL, '封开县', '442825'); +INSERT INTO "public"."cardcodes" VALUES (3670, '广东省', NULL, '德庆县', '442826'); +INSERT INTO "public"."cardcodes" VALUES (3671, '广东省', NULL, '云浮县', '442827'); +INSERT INTO "public"."cardcodes" VALUES (3672, '广东省', NULL, '新兴县', '442828'); +INSERT INTO "public"."cardcodes" VALUES (3673, '广东省', NULL, '郁南县', '442829'); +INSERT INTO "public"."cardcodes" VALUES (3674, '广东省', NULL, '罗定县', '442830'); +INSERT INTO "public"."cardcodes" VALUES (3675, '广东省', NULL, '惠州市', '442501'); +INSERT INTO "public"."cardcodes" VALUES (3676, '广东省', NULL, '东莞市', '442502'); +INSERT INTO "public"."cardcodes" VALUES (3677, '广东省', NULL, '惠阳县', '442521'); +INSERT INTO "public"."cardcodes" VALUES (3678, '广东省', NULL, '紫金县', '442522'); +INSERT INTO "public"."cardcodes" VALUES (3679, '广东省', NULL, '和平县', '442523'); +INSERT INTO "public"."cardcodes" VALUES (3680, '广西壮族自治区', '百色市', '市辖区', '451001'); +INSERT INTO "public"."cardcodes" VALUES (3681, '广西壮族自治区', '百色市', '右江区', '451002'); +INSERT INTO "public"."cardcodes" VALUES (3682, '广西壮族自治区', '百色市', '田阳县', '451021'); +INSERT INTO "public"."cardcodes" VALUES (3683, '广西壮族自治区', '百色市', '田东县', '451022'); +INSERT INTO "public"."cardcodes" VALUES (3684, '广西壮族自治区', '百色市', '平果县', '451023'); +INSERT INTO "public"."cardcodes" VALUES (3685, '广西壮族自治区', '百色市', '德保县', '451024'); +INSERT INTO "public"."cardcodes" VALUES (3686, '广西壮族自治区', '百色市', '靖西县', '451025'); +INSERT INTO "public"."cardcodes" VALUES (3687, '广西壮族自治区', '百色市', '那坡县', '451026'); +INSERT INTO "public"."cardcodes" VALUES (3688, '广西壮族自治区', '百色市', '凌云县', '451027'); +INSERT INTO "public"."cardcodes" VALUES (3689, '广西壮族自治区', '百色市', '乐业县', '451028'); +INSERT INTO "public"."cardcodes" VALUES (3690, '广西壮族自治区', '百色市', '田林县', '451029'); +INSERT INTO "public"."cardcodes" VALUES (3691, '广西壮族自治区', '百色市', '西林县', '451030'); +INSERT INTO "public"."cardcodes" VALUES (3692, '广西壮族自治区', '百色市', '隆林各族自治县', '451031'); +INSERT INTO "public"."cardcodes" VALUES (3693, '广西壮族自治区', '贺州市', '市辖区', '451101'); +INSERT INTO "public"."cardcodes" VALUES (3694, '广西壮族自治区', '贺州市', '八步区', '451102'); +INSERT INTO "public"."cardcodes" VALUES (3695, '广西壮族自治区', '贺州市', '昭平县', '451121'); +INSERT INTO "public"."cardcodes" VALUES (3696, '广西壮族自治区', '贺州市', '钟山县', '451122'); +INSERT INTO "public"."cardcodes" VALUES (3697, '广西壮族自治区', '贺州市', '富川瑶族自治县', '451123'); +INSERT INTO "public"."cardcodes" VALUES (3698, '广西壮族自治区', '河池市', '市辖区', '451201'); +INSERT INTO "public"."cardcodes" VALUES (3699, '广西壮族自治区', '河池市', '金城江区', '451202'); +INSERT INTO "public"."cardcodes" VALUES (3700, '广西壮族自治区', '河池市', '南丹县', '451221'); +INSERT INTO "public"."cardcodes" VALUES (3701, '广西壮族自治区', '河池市', '天峨县', '451222'); +INSERT INTO "public"."cardcodes" VALUES (3702, '广西壮族自治区', '河池市', '凤山县', '451223'); +INSERT INTO "public"."cardcodes" VALUES (3703, '广西壮族自治区', '河池市', '东兰县', '451224'); +INSERT INTO "public"."cardcodes" VALUES (3704, '广西壮族自治区', '河池市', '罗城仫佬族自治县', '451225'); +INSERT INTO "public"."cardcodes" VALUES (3705, '广西壮族自治区', '河池市', '环江毛南族自治县', '451226'); +INSERT INTO "public"."cardcodes" VALUES (3706, '广西壮族自治区', '河池市', '巴马瑶族自治县', '451227'); +INSERT INTO "public"."cardcodes" VALUES (3707, '广西壮族自治区', '河池市', '都安瑶族自治县', '451228'); +INSERT INTO "public"."cardcodes" VALUES (3708, '广西壮族自治区', '河池市', '大化瑶族自治县', '451229'); +INSERT INTO "public"."cardcodes" VALUES (3709, '广西壮族自治区', '河池市', '宜州市', '451281'); +INSERT INTO "public"."cardcodes" VALUES (3710, '广西壮族自治区', '来宾市', '市辖区', '451301'); +INSERT INTO "public"."cardcodes" VALUES (3711, '广西壮族自治区', '来宾市', '兴宾区', '451302'); +INSERT INTO "public"."cardcodes" VALUES (3712, '广西壮族自治区', '来宾市', '忻城县', '451321'); +INSERT INTO "public"."cardcodes" VALUES (3713, '广西壮族自治区', '来宾市', '象州县', '451322'); +INSERT INTO "public"."cardcodes" VALUES (3714, '广西壮族自治区', '来宾市', '武宣县', '451323'); +INSERT INTO "public"."cardcodes" VALUES (3715, '广西壮族自治区', '来宾市', '金秀瑶族自治县', '451324'); +INSERT INTO "public"."cardcodes" VALUES (3716, '广西壮族自治区', '来宾市', '合山市', '451381'); +INSERT INTO "public"."cardcodes" VALUES (3717, '广西壮族自治区', '崇左市', '市辖区', '451401'); +INSERT INTO "public"."cardcodes" VALUES (3718, '广西壮族自治区', '崇左市', '江洲区', '451402'); +INSERT INTO "public"."cardcodes" VALUES (3719, '广西壮族自治区', '崇左市', '扶绥县', '451421'); +INSERT INTO "public"."cardcodes" VALUES (3720, '广西壮族自治区', '崇左市', '宁明县', '451422'); +INSERT INTO "public"."cardcodes" VALUES (3721, '广西壮族自治区', '崇左市', '龙州县', '451423'); +INSERT INTO "public"."cardcodes" VALUES (3722, '广西壮族自治区', '崇左市', '大新县', '451424'); +INSERT INTO "public"."cardcodes" VALUES (3723, '广西壮族自治区', '崇左市', '天等县', '451425'); +INSERT INTO "public"."cardcodes" VALUES (3724, '广西壮族自治区', '崇左市', '凭祥市', '451481'); +INSERT INTO "public"."cardcodes" VALUES (3725, '广西壮族自治区', '南宁地区', '凭祥市', '452101'); +INSERT INTO "public"."cardcodes" VALUES (3726, '广西壮族自治区', '南宁地区', '横县', '452122'); +INSERT INTO "public"."cardcodes" VALUES (3727, '广西壮族自治区', '南宁地区', '宾阳县', '452123'); +INSERT INTO "public"."cardcodes" VALUES (3728, '广西壮族自治区', '南宁地区', '上林县', '452124'); +INSERT INTO "public"."cardcodes" VALUES (3729, '广西壮族自治区', '南宁地区', '隆安县', '452126'); +INSERT INTO "public"."cardcodes" VALUES (3730, '广西壮族自治区', '南宁地区', '马山县', '452127'); +INSERT INTO "public"."cardcodes" VALUES (3731, '广西壮族自治区', '南宁地区', '扶绥县', '452128'); +INSERT INTO "public"."cardcodes" VALUES (3732, '广西壮族自治区', '南宁地区', '崇左县', '452129'); +INSERT INTO "public"."cardcodes" VALUES (3733, '广西壮族自治区', '南宁地区', '大新县', '452130'); +INSERT INTO "public"."cardcodes" VALUES (3734, '广西壮族自治区', '南宁地区', '天等县', '452131'); +INSERT INTO "public"."cardcodes" VALUES (3735, '广西壮族自治区', '南宁地区', '宁明县', '452132'); +INSERT INTO "public"."cardcodes" VALUES (3736, '广西壮族自治区', '南宁地区', '龙州县', '452133'); +INSERT INTO "public"."cardcodes" VALUES (3737, '广西壮族自治区', '柳州地区', '合山市', '452201'); +INSERT INTO "public"."cardcodes" VALUES (3738, '广西壮族自治区', '柳州地区', '鹿寨县', '452223'); +INSERT INTO "public"."cardcodes" VALUES (3739, '广西壮族自治区', '柳州地区', '象州县', '452224'); +INSERT INTO "public"."cardcodes" VALUES (3740, '广西壮族自治区', '柳州地区', '武宣县', '452225'); +INSERT INTO "public"."cardcodes" VALUES (3741, '广西壮族自治区', '柳州地区', '来宾县', '452226'); +INSERT INTO "public"."cardcodes" VALUES (3742, '广西壮族自治区', '柳州地区', '融安县', '452227'); +INSERT INTO "public"."cardcodes" VALUES (3743, '广西壮族自治区', '柳州地区', '三江侗族自治县', '452228'); +INSERT INTO "public"."cardcodes" VALUES (3744, '广西壮族自治区', '柳州地区', '融水苗族自治县', '452229'); +INSERT INTO "public"."cardcodes" VALUES (3745, '广西壮族自治区', '柳州地区', '金秀瑶族自治县', '452230'); +INSERT INTO "public"."cardcodes" VALUES (3746, '广西壮族自治区', '柳州地区', '忻城县', '452231'); +INSERT INTO "public"."cardcodes" VALUES (3747, '广西壮族自治区', '南宁市', '市辖区', '450101'); +INSERT INTO "public"."cardcodes" VALUES (3748, '广西壮族自治区', '南宁市', '兴宁区', '450102'); +INSERT INTO "public"."cardcodes" VALUES (3749, '广西壮族自治区', '南宁市', '青秀区', '450103'); +INSERT INTO "public"."cardcodes" VALUES (3750, '广西壮族自治区', '南宁市', '城北区', '450104'); +INSERT INTO "public"."cardcodes" VALUES (3751, '广西壮族自治区', '南宁市', '江南区', '450105'); +INSERT INTO "public"."cardcodes" VALUES (3752, '广西壮族自治区', '南宁市', '永新区', '450106'); +INSERT INTO "public"."cardcodes" VALUES (3753, '广西壮族自治区', '南宁市', '西乡塘区', '450107'); +INSERT INTO "public"."cardcodes" VALUES (3754, '广西壮族自治区', '南宁市', '良庆区', '450108'); +INSERT INTO "public"."cardcodes" VALUES (3755, '广西壮族自治区', '南宁市', '邕宁区', '450109'); +INSERT INTO "public"."cardcodes" VALUES (3756, '广西壮族自治区', '南宁市', '郊区', '450111'); +INSERT INTO "public"."cardcodes" VALUES (3757, '广西壮族自治区', '南宁市', '邕宁县', '450121'); +INSERT INTO "public"."cardcodes" VALUES (3758, '广西壮族自治区', '南宁市', '武鸣县', '450122'); +INSERT INTO "public"."cardcodes" VALUES (3759, '广西壮族自治区', '南宁市', '隆安县', '450123'); +INSERT INTO "public"."cardcodes" VALUES (3760, '广西壮族自治区', '南宁市', '马山县', '450124'); +INSERT INTO "public"."cardcodes" VALUES (3761, '广西壮族自治区', '南宁市', '上林县', '450125'); +INSERT INTO "public"."cardcodes" VALUES (3762, '广西壮族自治区', '南宁市', '宾阳县', '450126'); +INSERT INTO "public"."cardcodes" VALUES (3763, '广西壮族自治区', '南宁市', '横县', '450127'); +INSERT INTO "public"."cardcodes" VALUES (3764, '广西壮族自治区', '柳州市', '市辖区', '450201'); +INSERT INTO "public"."cardcodes" VALUES (3765, '广西壮族自治区', '柳州市', '城中区', '450202'); +INSERT INTO "public"."cardcodes" VALUES (3766, '广西壮族自治区', '柳州市', '鱼峰区', '450203'); +INSERT INTO "public"."cardcodes" VALUES (3767, '广西壮族自治区', '柳州市', '柳南区', '450204'); +INSERT INTO "public"."cardcodes" VALUES (3768, '广西壮族自治区', '柳州市', '柳北区', '450205'); +INSERT INTO "public"."cardcodes" VALUES (3769, '广西壮族自治区', '柳州市', '市郊区', '450211'); +INSERT INTO "public"."cardcodes" VALUES (3770, '广西壮族自治区', '柳州市', '柳江县', '450221'); +INSERT INTO "public"."cardcodes" VALUES (3771, '广西壮族自治区', '柳州市', '柳城县', '450222'); +INSERT INTO "public"."cardcodes" VALUES (3772, '广西壮族自治区', '柳州市', '鹿寨县', '450223'); +INSERT INTO "public"."cardcodes" VALUES (3773, '广西壮族自治区', '柳州市', '融安县', '450224'); +INSERT INTO "public"."cardcodes" VALUES (3774, '广西壮族自治区', '柳州市', '融水苗族自治县', '450225'); +INSERT INTO "public"."cardcodes" VALUES (3775, '广西壮族自治区', '柳州市', '三江侗族自治县', '450226'); +INSERT INTO "public"."cardcodes" VALUES (3776, '广西壮族自治区', '桂林市', '市辖区', '450301'); +INSERT INTO "public"."cardcodes" VALUES (3777, '广西壮族自治区', '桂林市', '秀峰区', '450302'); +INSERT INTO "public"."cardcodes" VALUES (3778, '广西壮族自治区', '桂林市', '叠彩区', '450303'); +INSERT INTO "public"."cardcodes" VALUES (3779, '广西壮族自治区', '桂林市', '象山区', '450304'); +INSERT INTO "public"."cardcodes" VALUES (3780, '广西壮族自治区', '桂林市', '七星区', '450305'); +INSERT INTO "public"."cardcodes" VALUES (3781, '广西壮族自治区', '桂林市', '雁山区', '450311'); +INSERT INTO "public"."cardcodes" VALUES (3782, '广西壮族自治区', '桂林市', '阳朔县', '450321'); +INSERT INTO "public"."cardcodes" VALUES (3783, '广西壮族自治区', '桂林市', '临桂县', '450322'); +INSERT INTO "public"."cardcodes" VALUES (3784, '广西壮族自治区', '桂林市', '灵川县', '450323'); +INSERT INTO "public"."cardcodes" VALUES (3785, '广西壮族自治区', '桂林市', '全州县', '450324'); +INSERT INTO "public"."cardcodes" VALUES (3786, '广西壮族自治区', '桂林市', '兴安县', '450325'); +INSERT INTO "public"."cardcodes" VALUES (3787, '广西壮族自治区', '桂林市', '永福县', '450326'); +INSERT INTO "public"."cardcodes" VALUES (3788, '广西壮族自治区', '桂林市', '灌阳县', '450327'); +INSERT INTO "public"."cardcodes" VALUES (3789, '广西壮族自治区', '桂林市', '龙胜各族自治县', '450328'); +INSERT INTO "public"."cardcodes" VALUES (3790, '广西壮族自治区', '桂林市', '资源县', '450329'); +INSERT INTO "public"."cardcodes" VALUES (3791, '广西壮族自治区', '桂林市', '平乐县', '450330'); +INSERT INTO "public"."cardcodes" VALUES (3792, '广西壮族自治区', '桂林市', '荔蒲县', '450331'); +INSERT INTO "public"."cardcodes" VALUES (3793, '广西壮族自治区', '桂林市', '恭城瑶族自治县', '450332'); +INSERT INTO "public"."cardcodes" VALUES (3794, '广西壮族自治区', '梧州市', '市辖区', '450401'); +INSERT INTO "public"."cardcodes" VALUES (3795, '广西壮族自治区', '梧州市', '白云区', '450402'); +INSERT INTO "public"."cardcodes" VALUES (3796, '广西壮族自治区', '梧州市', '万秀区', '450403'); +INSERT INTO "public"."cardcodes" VALUES (3797, '广西壮族自治区', '梧州市', '蝶山区', '450404'); +INSERT INTO "public"."cardcodes" VALUES (3798, '广西壮族自治区', '梧州市', '长洲区', '450405'); +INSERT INTO "public"."cardcodes" VALUES (3799, '广西壮族自治区', '梧州市', '市郊区', '450411'); +INSERT INTO "public"."cardcodes" VALUES (3800, '广西壮族自治区', '梧州市', '苍梧县', '450421'); +INSERT INTO "public"."cardcodes" VALUES (3801, '广西壮族自治区', '梧州市', '藤县', '450422'); +INSERT INTO "public"."cardcodes" VALUES (3802, '广西壮族自治区', '梧州市', '蒙山县', '450423'); +INSERT INTO "public"."cardcodes" VALUES (3803, '广西壮族自治区', '梧州市', '岑溪市', '450481'); +INSERT INTO "public"."cardcodes" VALUES (3804, '广西壮族自治区', '北海市', '市辖区', '450501'); +INSERT INTO "public"."cardcodes" VALUES (3805, '广西壮族自治区', '北海市', '海城区', '450502'); +INSERT INTO "public"."cardcodes" VALUES (3806, '广西壮族自治区', '北海市', '银海区', '450503'); +INSERT INTO "public"."cardcodes" VALUES (3807, '广西壮族自治区', '北海市', '铁山港区', '450512'); +INSERT INTO "public"."cardcodes" VALUES (3808, '广西壮族自治区', '北海市', '合浦县', '450521'); +INSERT INTO "public"."cardcodes" VALUES (3809, '广西壮族自治区', '防城港市', '市辖区', '450601'); +INSERT INTO "public"."cardcodes" VALUES (3810, '广西壮族自治区', '防城港市', '港口区', '450602'); +INSERT INTO "public"."cardcodes" VALUES (3811, '广西壮族自治区', '防城港市', '防城区', '450603'); +INSERT INTO "public"."cardcodes" VALUES (3812, '广西壮族自治区', '防城港市', '上思县', '450621'); +INSERT INTO "public"."cardcodes" VALUES (3813, '广西壮族自治区', '防城港市', '东兴市', '450681'); +INSERT INTO "public"."cardcodes" VALUES (3814, '广西壮族自治区', '钦州市', '市辖区', '450701'); +INSERT INTO "public"."cardcodes" VALUES (3815, '广西壮族自治区', '钦州市', '钦南区', '450702'); +INSERT INTO "public"."cardcodes" VALUES (3816, '广西壮族自治区', '钦州市', '钦北区', '450703'); +INSERT INTO "public"."cardcodes" VALUES (3817, '广西壮族自治区', '钦州市', '灵山县', '450721'); +INSERT INTO "public"."cardcodes" VALUES (3818, '广西壮族自治区', '钦州市', '浦北县', '450722'); +INSERT INTO "public"."cardcodes" VALUES (3819, '广西壮族自治区', '贵港市', '市辖区', '450801'); +INSERT INTO "public"."cardcodes" VALUES (3820, '广西壮族自治区', '贵港市', '港北区', '450802'); +INSERT INTO "public"."cardcodes" VALUES (3821, '广西壮族自治区', '贵港市', '港南区', '450803'); +INSERT INTO "public"."cardcodes" VALUES (3822, '广西壮族自治区', '贵港市', '覃塘区', '450804'); +INSERT INTO "public"."cardcodes" VALUES (3823, '广西壮族自治区', '贵港市', '平南县', '450821'); +INSERT INTO "public"."cardcodes" VALUES (3824, '广西壮族自治区', '贵港市', '桂平市', '450881'); +INSERT INTO "public"."cardcodes" VALUES (3825, '广西壮族自治区', '玉林市', '市辖区', '450901'); +INSERT INTO "public"."cardcodes" VALUES (3826, '广西壮族自治区', '玉林市', '玉州区', '450902'); +INSERT INTO "public"."cardcodes" VALUES (3827, '广西壮族自治区', '玉林市', '容县', '450921'); +INSERT INTO "public"."cardcodes" VALUES (3828, '广西壮族自治区', '玉林市', '陆川县', '450922'); +INSERT INTO "public"."cardcodes" VALUES (3829, '广西壮族自治区', '玉林市', '博白县', '450923'); +INSERT INTO "public"."cardcodes" VALUES (3830, '广西壮族自治区', '玉林市', '兴业县', '450924'); +INSERT INTO "public"."cardcodes" VALUES (3831, '广西壮族自治区', '玉林市', '北流市', '450981'); +INSERT INTO "public"."cardcodes" VALUES (3832, '广西壮族自治区', '桂林地区', '临桂县', '452321'); +INSERT INTO "public"."cardcodes" VALUES (3833, '广西壮族自治区', '桂林地区', '灵川县', '452322'); +INSERT INTO "public"."cardcodes" VALUES (3834, '广西壮族自治区', '桂林地区', '全州县', '452323'); +INSERT INTO "public"."cardcodes" VALUES (3835, '广西壮族自治区', '桂林地区', '兴安县', '452324'); +INSERT INTO "public"."cardcodes" VALUES (3836, '广西壮族自治区', '桂林地区', '永福县', '452325'); +INSERT INTO "public"."cardcodes" VALUES (3837, '广西壮族自治区', '桂林地区', '灌阳县', '452327'); +INSERT INTO "public"."cardcodes" VALUES (3838, '广西壮族自治区', '桂林地区', '龙胜各族自治县', '452328'); +INSERT INTO "public"."cardcodes" VALUES (3839, '广西壮族自治区', '桂林地区', '资源县', '452329'); +INSERT INTO "public"."cardcodes" VALUES (3840, '广西壮族自治区', '桂林地区', '平乐县', '452330'); +INSERT INTO "public"."cardcodes" VALUES (3841, '广西壮族自治区', '桂林地区', '荔蒲县', '452331'); +INSERT INTO "public"."cardcodes" VALUES (3842, '广西壮族自治区', '桂林地区', '恭城瑶族自治县', '452332'); +INSERT INTO "public"."cardcodes" VALUES (3843, '广西壮族自治区', '贺州地区', '岑溪市', '452401'); +INSERT INTO "public"."cardcodes" VALUES (3844, '广西壮族自治区', '贺州地区', '贺州市', '452402'); +INSERT INTO "public"."cardcodes" VALUES (3845, '广西壮族自治区', '贺州地区', '岑溪县', '452421'); +INSERT INTO "public"."cardcodes" VALUES (3846, '广西壮族自治区', '贺州地区', '苍梧县', '452422'); +INSERT INTO "public"."cardcodes" VALUES (3847, '广西壮族自治区', '贺州地区', '藤县', '452423'); +INSERT INTO "public"."cardcodes" VALUES (3848, '广西壮族自治区', '贺州地区', '昭平县', '452424'); +INSERT INTO "public"."cardcodes" VALUES (3849, '广西壮族自治区', '贺州地区', '蒙山县', '452425'); +INSERT INTO "public"."cardcodes" VALUES (3850, '广西壮族自治区', '贺州地区', '贺县', '452426'); +INSERT INTO "public"."cardcodes" VALUES (3851, '广西壮族自治区', '贺州地区', '钟山县', '452427'); +INSERT INTO "public"."cardcodes" VALUES (3852, '广西壮族自治区', '贺州地区', '富川瑶族自治县', '452428'); +INSERT INTO "public"."cardcodes" VALUES (3853, '广西壮族自治区', '玉林地区', '玉林市', '452501'); +INSERT INTO "public"."cardcodes" VALUES (3854, '广西壮族自治区', '玉林地区', '贵港市', '452502'); +INSERT INTO "public"."cardcodes" VALUES (3855, '广西壮族自治区', '玉林地区', '北流市', '452503'); +INSERT INTO "public"."cardcodes" VALUES (3856, '广西壮族自治区', '玉林地区', '桂平市', '452504'); +INSERT INTO "public"."cardcodes" VALUES (3857, '广西壮族自治区', '玉林地区', '玉林县', '452521'); +INSERT INTO "public"."cardcodes" VALUES (3858, '广西壮族自治区', '玉林地区', '贵县', '452522'); +INSERT INTO "public"."cardcodes" VALUES (3859, '广西壮族自治区', '玉林地区', '桂平县', '452523'); +INSERT INTO "public"."cardcodes" VALUES (3860, '广西壮族自治区', '玉林地区', '平南县', '452524'); +INSERT INTO "public"."cardcodes" VALUES (3861, '广西壮族自治区', '玉林地区', '容县', '452525'); +INSERT INTO "public"."cardcodes" VALUES (3862, '广西壮族自治区', '玉林地区', '北流县', '452526'); +INSERT INTO "public"."cardcodes" VALUES (3863, '广西壮族自治区', '玉林地区', '陆川县', '452527'); +INSERT INTO "public"."cardcodes" VALUES (3864, '广西壮族自治区', '玉林地区', '博白县', '452528'); +INSERT INTO "public"."cardcodes" VALUES (3865, '广西壮族自治区', '百色地区', '百色市', '452601'); +INSERT INTO "public"."cardcodes" VALUES (3866, '广西壮族自治区', '百色地区', '百色县', '452621'); +INSERT INTO "public"."cardcodes" VALUES (3867, '广西壮族自治区', '百色地区', '田阳县', '452622'); +INSERT INTO "public"."cardcodes" VALUES (3868, '广西壮族自治区', '百色地区', '田东县', '452623'); +INSERT INTO "public"."cardcodes" VALUES (3869, '广西壮族自治区', '百色地区', '平果县', '452624'); +INSERT INTO "public"."cardcodes" VALUES (3870, '广西壮族自治区', '百色地区', '德保县', '452625'); +INSERT INTO "public"."cardcodes" VALUES (3871, '广西壮族自治区', '百色地区', '靖西县', '452626'); +INSERT INTO "public"."cardcodes" VALUES (3872, '广西壮族自治区', '百色地区', '那坡县', '452627'); +INSERT INTO "public"."cardcodes" VALUES (3873, '广西壮族自治区', '百色地区', '凌云县', '452628'); +INSERT INTO "public"."cardcodes" VALUES (3874, '广西壮族自治区', '百色地区', '乐业县', '452629'); +INSERT INTO "public"."cardcodes" VALUES (3875, '广西壮族自治区', '百色地区', '田林县', '452630'); +INSERT INTO "public"."cardcodes" VALUES (3876, '广西壮族自治区', '百色地区', '隆林各族自治县', '452631'); +INSERT INTO "public"."cardcodes" VALUES (3877, '广西壮族自治区', '百色地区', '西林县', '452632'); +INSERT INTO "public"."cardcodes" VALUES (3878, '广西壮族自治区', '河池地区', '河池市', '452701'); +INSERT INTO "public"."cardcodes" VALUES (3879, '广西壮族自治区', '河池地区', '宜州市', '452702'); +INSERT INTO "public"."cardcodes" VALUES (3880, '广西壮族自治区', '河池地区', '河池县', '452721'); +INSERT INTO "public"."cardcodes" VALUES (3881, '广西壮族自治区', '河池地区', '宜山县', '452722'); +INSERT INTO "public"."cardcodes" VALUES (3882, '广西壮族自治区', '河池地区', '罗城仫佬族自治县', '452723'); +INSERT INTO "public"."cardcodes" VALUES (3883, '广西壮族自治区', '河池地区', '环江毛南族自治县', '452724'); +INSERT INTO "public"."cardcodes" VALUES (3884, '广西壮族自治区', '河池地区', '南丹县', '452725'); +INSERT INTO "public"."cardcodes" VALUES (3885, '广西壮族自治区', '河池地区', '天峨县', '452726'); +INSERT INTO "public"."cardcodes" VALUES (3886, '广西壮族自治区', '河池地区', '凤山县', '452727'); +INSERT INTO "public"."cardcodes" VALUES (3887, '广西壮族自治区', '河池地区', '东兰县', '452728'); +INSERT INTO "public"."cardcodes" VALUES (3888, '广西壮族自治区', '河池地区', '巴马瑶族自治县', '452729'); +INSERT INTO "public"."cardcodes" VALUES (3889, '广西壮族自治区', '河池地区', '都安瑶族自治县', '452730'); +INSERT INTO "public"."cardcodes" VALUES (3890, '广西壮族自治区', '河池地区', '大化瑶族自治县', '452731'); +INSERT INTO "public"."cardcodes" VALUES (3891, '广西壮族自治区', '钦州地区', '北海市', '452801'); +INSERT INTO "public"."cardcodes" VALUES (3892, '广西壮族自治区', '钦州地区', '钦州市', '452802'); +INSERT INTO "public"."cardcodes" VALUES (3893, '广西壮族自治区', '钦州地区', '上思县', '452821'); +INSERT INTO "public"."cardcodes" VALUES (3894, '广西壮族自治区', '钦州地区', '防城各族自治县', '452822'); +INSERT INTO "public"."cardcodes" VALUES (3895, '广西壮族自治区', '钦州地区', '钦州县', '452823'); +INSERT INTO "public"."cardcodes" VALUES (3896, '广西壮族自治区', '钦州地区', '灵山县', '452824'); +INSERT INTO "public"."cardcodes" VALUES (3897, '广西壮族自治区', '钦州地区', '合浦县', '452825'); +INSERT INTO "public"."cardcodes" VALUES (3898, '广西壮族自治区', '钦州地区', '浦北县', '452826'); +INSERT INTO "public"."cardcodes" VALUES (3899, '海南省', '海口市', '市辖区', '460101'); +INSERT INTO "public"."cardcodes" VALUES (3900, '海南省', '海口市', '振东区', '460102'); +INSERT INTO "public"."cardcodes" VALUES (3901, '海南省', '海口市', '新华区', '460103'); +INSERT INTO "public"."cardcodes" VALUES (3902, '海南省', '海口市', '秀英区', '460104'); +INSERT INTO "public"."cardcodes" VALUES (3903, '海南省', '海口市', '秀英区', '460105'); +INSERT INTO "public"."cardcodes" VALUES (3904, '海南省', '海口市', '龙华区', '460106'); +INSERT INTO "public"."cardcodes" VALUES (3905, '海南省', '海口市', '琼山区', '460107'); +INSERT INTO "public"."cardcodes" VALUES (3906, '海南省', '海口市', '美兰区', '460108'); +INSERT INTO "public"."cardcodes" VALUES (3907, '海南省', '三亚市', '市辖区', '460201'); +INSERT INTO "public"."cardcodes" VALUES (3908, '海南省', NULL, '陵水黎族自治县', '469034'); +INSERT INTO "public"."cardcodes" VALUES (3909, '海南省', NULL, '保亭黎族苗族自治县', '469035'); +INSERT INTO "public"."cardcodes" VALUES (3910, '海南省', NULL, '琼中黎族苗族自治县', '469036'); +INSERT INTO "public"."cardcodes" VALUES (3911, '海南省', NULL, '西沙群岛', '469037'); +INSERT INTO "public"."cardcodes" VALUES (3912, '海南省', NULL, '南沙群岛', '469038'); +INSERT INTO "public"."cardcodes" VALUES (3913, '海南省', NULL, '中沙群岛的岛礁及其海域', '469039'); +INSERT INTO "public"."cardcodes" VALUES (3914, '海南省', NULL, '通什市', '460001'); +INSERT INTO "public"."cardcodes" VALUES (3915, '海南省', NULL, '琼海市', '460002'); +INSERT INTO "public"."cardcodes" VALUES (3916, '海南省', NULL, '儋州市', '460003'); +INSERT INTO "public"."cardcodes" VALUES (3917, '海南省', NULL, '琼山市', '460004'); +INSERT INTO "public"."cardcodes" VALUES (3918, '海南省', NULL, '文昌市', '460005'); +INSERT INTO "public"."cardcodes" VALUES (3919, '海南省', NULL, '万宁市', '460006'); +INSERT INTO "public"."cardcodes" VALUES (3920, '海南省', NULL, '东方市', '460007'); +INSERT INTO "public"."cardcodes" VALUES (3921, '海南省', NULL, '琼山县', '460021'); +INSERT INTO "public"."cardcodes" VALUES (3922, '海南省', NULL, '文昌县', '460022'); +INSERT INTO "public"."cardcodes" VALUES (3923, '海南省', NULL, '琼海县', '460023'); +INSERT INTO "public"."cardcodes" VALUES (3924, '海南省', NULL, '万宁县', '460024'); +INSERT INTO "public"."cardcodes" VALUES (3925, '海南省', NULL, '定安县', '460025'); +INSERT INTO "public"."cardcodes" VALUES (3926, '海南省', NULL, '屯昌县', '460026'); +INSERT INTO "public"."cardcodes" VALUES (3927, '海南省', NULL, '澄迈县', '460027'); +INSERT INTO "public"."cardcodes" VALUES (3928, '海南省', NULL, '临高县', '460028'); +INSERT INTO "public"."cardcodes" VALUES (3929, '海南省', NULL, '儋县', '460029'); +INSERT INTO "public"."cardcodes" VALUES (3930, '海南省', NULL, '白沙黎族自治县', '460030'); +INSERT INTO "public"."cardcodes" VALUES (3931, '海南省', NULL, '昌江黎族自治县', '460031'); +INSERT INTO "public"."cardcodes" VALUES (3932, '海南省', NULL, '东方黎族自治县', '460032'); +INSERT INTO "public"."cardcodes" VALUES (3933, '海南省', NULL, '乐东黎族自治县', '460033'); +INSERT INTO "public"."cardcodes" VALUES (3934, '海南省', NULL, '陵水黎族自治县', '460034'); +INSERT INTO "public"."cardcodes" VALUES (3935, '海南省', NULL, '保亭黎族苗族自治县', '460035'); +INSERT INTO "public"."cardcodes" VALUES (3936, '海南省', NULL, '琼中黎族苗族自治县', '460036'); +INSERT INTO "public"."cardcodes" VALUES (3937, '海南省', NULL, '西沙群岛', '460037'); +INSERT INTO "public"."cardcodes" VALUES (3938, '海南省', NULL, '南沙群岛', '460038'); +INSERT INTO "public"."cardcodes" VALUES (3939, '海南省', NULL, '中沙群岛的岛礁及其海域', '460039'); +INSERT INTO "public"."cardcodes" VALUES (3940, '海南省', NULL, '五指山市', '469001'); +INSERT INTO "public"."cardcodes" VALUES (3941, '海南省', NULL, '琼海市', '469002'); +INSERT INTO "public"."cardcodes" VALUES (3942, '海南省', NULL, '儋州市', '469003'); +INSERT INTO "public"."cardcodes" VALUES (3943, '海南省', NULL, '文昌市', '469005'); +INSERT INTO "public"."cardcodes" VALUES (3944, '海南省', NULL, '万宁市', '469006'); +INSERT INTO "public"."cardcodes" VALUES (3945, '海南省', NULL, '东方市', '469007'); +INSERT INTO "public"."cardcodes" VALUES (3946, '海南省', NULL, '定安县', '469025'); +INSERT INTO "public"."cardcodes" VALUES (3947, '海南省', NULL, '屯昌县', '469026'); +INSERT INTO "public"."cardcodes" VALUES (3948, '海南省', NULL, '澄迈县', '469027'); +INSERT INTO "public"."cardcodes" VALUES (3949, '海南省', NULL, '临高县', '469028'); +INSERT INTO "public"."cardcodes" VALUES (3950, '海南省', NULL, '白沙黎族自治县', '469030'); +INSERT INTO "public"."cardcodes" VALUES (3951, '海南省', NULL, '昌江黎族自治县', '469031'); +INSERT INTO "public"."cardcodes" VALUES (3952, '海南省', NULL, '乐东黎族自治县', '469033'); +INSERT INTO "public"."cardcodes" VALUES (3953, '重庆市', '市', '江津市', '500381'); +INSERT INTO "public"."cardcodes" VALUES (3954, '重庆市', '市', '合川市', '500382'); +INSERT INTO "public"."cardcodes" VALUES (3955, '重庆市', '市', '永川市', '500383'); +INSERT INTO "public"."cardcodes" VALUES (3956, '重庆市', '市', '南川市', '500384'); +INSERT INTO "public"."cardcodes" VALUES (3957, '重庆市', NULL, '万州区', '500101'); +INSERT INTO "public"."cardcodes" VALUES (3958, '重庆市', NULL, '涪陵区', '500102'); +INSERT INTO "public"."cardcodes" VALUES (3959, '重庆市', NULL, '渝中区', '500103'); +INSERT INTO "public"."cardcodes" VALUES (3960, '重庆市', NULL, '大渡口区', '500104'); +INSERT INTO "public"."cardcodes" VALUES (3961, '重庆市', NULL, '江北区', '500105'); +INSERT INTO "public"."cardcodes" VALUES (3962, '重庆市', NULL, '沙坪坝区', '500106'); +INSERT INTO "public"."cardcodes" VALUES (3963, '重庆市', NULL, '九龙坡区', '500107'); +INSERT INTO "public"."cardcodes" VALUES (3964, '重庆市', NULL, '南岸区', '500108'); +INSERT INTO "public"."cardcodes" VALUES (3965, '重庆市', NULL, '北碚区', '500109'); +INSERT INTO "public"."cardcodes" VALUES (3966, '重庆市', NULL, '万盛区', '500110'); +INSERT INTO "public"."cardcodes" VALUES (3967, '重庆市', NULL, '双桥区', '500111'); +INSERT INTO "public"."cardcodes" VALUES (3968, '重庆市', NULL, '渝北区', '500112'); +INSERT INTO "public"."cardcodes" VALUES (3969, '重庆市', NULL, '巴南区', '500113'); +INSERT INTO "public"."cardcodes" VALUES (3970, '重庆市', NULL, '黔江区', '500114'); +INSERT INTO "public"."cardcodes" VALUES (3971, '重庆市', NULL, '长寿区', '500115'); +INSERT INTO "public"."cardcodes" VALUES (3972, '重庆市', NULL, '渝中区', '500201'); +INSERT INTO "public"."cardcodes" VALUES (3973, '重庆市', NULL, '江北区', '500211'); +INSERT INTO "public"."cardcodes" VALUES (3974, '重庆市', NULL, '沙坪坝区', '500212'); +INSERT INTO "public"."cardcodes" VALUES (3975, '重庆市', NULL, '九龙坡区', '500213'); +INSERT INTO "public"."cardcodes" VALUES (3976, '重庆市', NULL, '南岸区', '500214'); +INSERT INTO "public"."cardcodes" VALUES (3977, '重庆市', NULL, '北碚区', '500215'); +INSERT INTO "public"."cardcodes" VALUES (3978, '重庆市', NULL, '万盛区', '500216'); +INSERT INTO "public"."cardcodes" VALUES (3979, '重庆市', NULL, '双桥区', '500217'); +INSERT INTO "public"."cardcodes" VALUES (3980, '重庆市', NULL, '长寿县', '500221'); +INSERT INTO "public"."cardcodes" VALUES (3981, '重庆市', NULL, '綦江县', '500222'); +INSERT INTO "public"."cardcodes" VALUES (3982, '重庆市', NULL, '潼南县', '500223'); +INSERT INTO "public"."cardcodes" VALUES (3983, '重庆市', NULL, '铜梁县', '500224'); +INSERT INTO "public"."cardcodes" VALUES (3984, '重庆市', NULL, '大足县', '500225'); +INSERT INTO "public"."cardcodes" VALUES (3985, '重庆市', NULL, '荣昌县', '500226'); +INSERT INTO "public"."cardcodes" VALUES (3986, '重庆市', NULL, '璧山县', '500227'); +INSERT INTO "public"."cardcodes" VALUES (3987, '重庆市', NULL, '梁平县', '500228'); +INSERT INTO "public"."cardcodes" VALUES (3988, '重庆市', NULL, '城口县', '500229'); +INSERT INTO "public"."cardcodes" VALUES (3989, '重庆市', NULL, '丰都县', '500230'); +INSERT INTO "public"."cardcodes" VALUES (3990, '重庆市', NULL, '垫江县', '500231'); +INSERT INTO "public"."cardcodes" VALUES (3991, '重庆市', NULL, '武隆县', '500232'); +INSERT INTO "public"."cardcodes" VALUES (3992, '重庆市', NULL, '忠县', '500233'); +INSERT INTO "public"."cardcodes" VALUES (3993, '重庆市', NULL, '开县', '500234'); +INSERT INTO "public"."cardcodes" VALUES (3994, '重庆市', NULL, '云阳县', '500235'); +INSERT INTO "public"."cardcodes" VALUES (3995, '重庆市', NULL, '奉节县', '500236'); +INSERT INTO "public"."cardcodes" VALUES (3996, '重庆市', NULL, '巫山县', '500237'); +INSERT INTO "public"."cardcodes" VALUES (3997, '重庆市', NULL, '巫溪县', '500238'); +INSERT INTO "public"."cardcodes" VALUES (3998, '重庆市', NULL, '黔江土家族苗族自治县', '500239'); +INSERT INTO "public"."cardcodes" VALUES (3999, '重庆市', NULL, '石柱土家族自治县', '500240'); +INSERT INTO "public"."cardcodes" VALUES (4000, '重庆市', NULL, '秀山土家族苗族自治县', '500241'); +INSERT INTO "public"."cardcodes" VALUES (4001, '重庆市', NULL, '酉阳土家族苗族自治县', '500242'); +INSERT INTO "public"."cardcodes" VALUES (4002, '重庆市', NULL, '彭水苗族土家族自治县', '500243'); +INSERT INTO "public"."cardcodes" VALUES (4003, '四川省', '自贡市', '市辖区', '510301'); +INSERT INTO "public"."cardcodes" VALUES (4004, '四川省', '自贡市', '自流井区', '510302'); +INSERT INTO "public"."cardcodes" VALUES (4005, '四川省', '自贡市', '贡井区', '510303'); +INSERT INTO "public"."cardcodes" VALUES (4006, '四川省', '自贡市', '大安区', '510304'); +INSERT INTO "public"."cardcodes" VALUES (4007, '四川省', '自贡市', '沿滩区', '510311'); +INSERT INTO "public"."cardcodes" VALUES (4008, '四川省', '自贡市', '荣县', '510321'); +INSERT INTO "public"."cardcodes" VALUES (4009, '四川省', '自贡市', '富顺县', '510322'); +INSERT INTO "public"."cardcodes" VALUES (4010, '四川省', '攀枝花市', '市辖区', '510401'); +INSERT INTO "public"."cardcodes" VALUES (4011, '四川省', '攀枝花市', '东区', '510402'); +INSERT INTO "public"."cardcodes" VALUES (4012, '四川省', '攀枝花市', '西区', '510403'); +INSERT INTO "public"."cardcodes" VALUES (4013, '四川省', '攀枝花市', '仁和区', '510411'); +INSERT INTO "public"."cardcodes" VALUES (4014, '四川省', '攀枝花市', '米易县', '510421'); +INSERT INTO "public"."cardcodes" VALUES (4015, '四川省', '攀枝花市', '盐边县', '510422'); +INSERT INTO "public"."cardcodes" VALUES (4016, '四川省', '泸州市', '市辖区', '510501'); +INSERT INTO "public"."cardcodes" VALUES (4017, '四川省', '泸州市', '江阳区', '510502'); +INSERT INTO "public"."cardcodes" VALUES (4018, '四川省', '泸州市', '纳溪区', '510503'); +INSERT INTO "public"."cardcodes" VALUES (4019, '四川省', '泸州市', '龙马潭区', '510504'); +INSERT INTO "public"."cardcodes" VALUES (4020, '四川省', '泸州市', '泸县', '510521'); +INSERT INTO "public"."cardcodes" VALUES (4021, '四川省', '泸州市', '合江县', '510522'); +INSERT INTO "public"."cardcodes" VALUES (4022, '四川省', '泸州市', '纳溪县', '510523'); +INSERT INTO "public"."cardcodes" VALUES (4023, '四川省', '泸州市', '叙永县', '510524'); +INSERT INTO "public"."cardcodes" VALUES (4024, '四川省', '泸州市', '古蔺县', '510525'); +INSERT INTO "public"."cardcodes" VALUES (4025, '四川省', '德阳市', '市辖区', '510601'); +INSERT INTO "public"."cardcodes" VALUES (4026, '四川省', '德阳市', '市中区', '510602'); +INSERT INTO "public"."cardcodes" VALUES (4027, '四川省', '德阳市', '旌阳区', '510603'); +INSERT INTO "public"."cardcodes" VALUES (4028, '四川省', '德阳市', '绵竹县', '510622'); +INSERT INTO "public"."cardcodes" VALUES (4029, '四川省', '德阳市', '中江县', '510623'); +INSERT INTO "public"."cardcodes" VALUES (4030, '四川省', '德阳市', '广汉县', '510624'); +INSERT INTO "public"."cardcodes" VALUES (4031, '四川省', '德阳市', '什邡县', '510625'); +INSERT INTO "public"."cardcodes" VALUES (4032, '四川省', '德阳市', '罗江县', '510626'); +INSERT INTO "public"."cardcodes" VALUES (4033, '四川省', '德阳市', '广汉市', '510681'); +INSERT INTO "public"."cardcodes" VALUES (4034, '四川省', '德阳市', '什邡市', '510682'); +INSERT INTO "public"."cardcodes" VALUES (4035, '四川省', '德阳市', '绵竹市', '510683'); +INSERT INTO "public"."cardcodes" VALUES (4036, '四川省', '绵阳市', '市辖区', '510701'); +INSERT INTO "public"."cardcodes" VALUES (4037, '四川省', '绵阳市', '市中区', '510702'); +INSERT INTO "public"."cardcodes" VALUES (4038, '四川省', '绵阳市', '涪城区', '510703'); +INSERT INTO "public"."cardcodes" VALUES (4039, '四川省', '绵阳市', '游仙区', '510704'); +INSERT INTO "public"."cardcodes" VALUES (4040, '四川省', '绵阳市', '江油县', '510721'); +INSERT INTO "public"."cardcodes" VALUES (4041, '四川省', '绵阳市', '三台县', '510722'); +INSERT INTO "public"."cardcodes" VALUES (4042, '四川省', '绵阳市', '盐亭县', '510723'); +INSERT INTO "public"."cardcodes" VALUES (4043, '四川省', '绵阳市', '安县', '510724'); +INSERT INTO "public"."cardcodes" VALUES (4044, '四川省', '绵阳市', '梓潼县', '510725'); +INSERT INTO "public"."cardcodes" VALUES (4045, '四川省', '绵阳市', '北川县', '510726'); +INSERT INTO "public"."cardcodes" VALUES (4046, '四川省', '绵阳市', '平武县', '510727'); +INSERT INTO "public"."cardcodes" VALUES (4047, '四川省', '绵阳市', '江油市', '510781'); +INSERT INTO "public"."cardcodes" VALUES (4048, '四川省', '广元市', '市辖区', '510801'); +INSERT INTO "public"."cardcodes" VALUES (4049, '四川省', '广元市', '市中区', '510802'); +INSERT INTO "public"."cardcodes" VALUES (4050, '四川省', '广元市', '元坝区', '510811'); +INSERT INTO "public"."cardcodes" VALUES (4051, '四川省', '广元市', '朝天区', '510812'); +INSERT INTO "public"."cardcodes" VALUES (4052, '四川省', '广元市', '旺苍县', '510821'); +INSERT INTO "public"."cardcodes" VALUES (4053, '四川省', '广元市', '青川县', '510822'); +INSERT INTO "public"."cardcodes" VALUES (4054, '四川省', '广元市', '剑阁县', '510823'); +INSERT INTO "public"."cardcodes" VALUES (4055, '四川省', '广元市', '苍溪县', '510824'); +INSERT INTO "public"."cardcodes" VALUES (4056, '四川省', '遂宁市', '市辖区', '510901'); +INSERT INTO "public"."cardcodes" VALUES (4057, '四川省', '遂宁市', '市中区', '510902'); +INSERT INTO "public"."cardcodes" VALUES (4058, '四川省', '遂宁市', '船山区', '510903'); +INSERT INTO "public"."cardcodes" VALUES (4059, '四川省', '遂宁市', '安居区', '510904'); +INSERT INTO "public"."cardcodes" VALUES (4060, '四川省', '遂宁市', '蓬溪县', '510921'); +INSERT INTO "public"."cardcodes" VALUES (4061, '四川省', '遂宁市', '射洪县', '510922'); +INSERT INTO "public"."cardcodes" VALUES (4062, '四川省', '遂宁市', '大英县', '510923'); +INSERT INTO "public"."cardcodes" VALUES (4063, '四川省', '内江市', '市辖区', '511001'); +INSERT INTO "public"."cardcodes" VALUES (4064, '四川省', '内江市', '市中区', '511002'); +INSERT INTO "public"."cardcodes" VALUES (4065, '四川省', '内江市', '东兴区', '511011'); +INSERT INTO "public"."cardcodes" VALUES (4066, '四川省', '内江市', '内江县', '511021'); +INSERT INTO "public"."cardcodes" VALUES (4067, '四川省', '内江市', '乐至县', '511022'); +INSERT INTO "public"."cardcodes" VALUES (4068, '四川省', '内江市', '安岳县', '511023'); +INSERT INTO "public"."cardcodes" VALUES (4069, '四川省', '内江市', '威远县', '511024'); +INSERT INTO "public"."cardcodes" VALUES (4070, '四川省', '内江市', '资中县', '511025'); +INSERT INTO "public"."cardcodes" VALUES (4071, '四川省', '内江市', '资阳市', '511026'); +INSERT INTO "public"."cardcodes" VALUES (4072, '四川省', '内江市', '简阳县', '511027'); +INSERT INTO "public"."cardcodes" VALUES (4073, '四川省', '内江市', '隆昌县', '511028'); +INSERT INTO "public"."cardcodes" VALUES (4074, '四川省', '内江市', '资阳市', '511081'); +INSERT INTO "public"."cardcodes" VALUES (4075, '四川省', '万县地区', '奉节县', '512226'); +INSERT INTO "public"."cardcodes" VALUES (4076, '四川省', '万县地区', '巫山县', '512227'); +INSERT INTO "public"."cardcodes" VALUES (4077, '四川省', '万县地区', '巫溪县', '512228'); +INSERT INTO "public"."cardcodes" VALUES (4078, '四川省', '万县地区', '城口县', '512229'); +INSERT INTO "public"."cardcodes" VALUES (4079, '四川省', '万县地区', '万县市', '512201'); +INSERT INTO "public"."cardcodes" VALUES (4080, '四川省', '万县地区', '万县', '512221'); +INSERT INTO "public"."cardcodes" VALUES (4081, '四川省', '万县地区', '开县', '512222'); +INSERT INTO "public"."cardcodes" VALUES (4082, '四川省', '万县地区', '忠县', '512223'); +INSERT INTO "public"."cardcodes" VALUES (4083, '四川省', '万县地区', '梁平县', '512224'); +INSERT INTO "public"."cardcodes" VALUES (4084, '四川省', '万县地区', '云阳县', '512225'); +INSERT INTO "public"."cardcodes" VALUES (4085, '四川省', '涪陵地区', '涪陵市', '512301'); +INSERT INTO "public"."cardcodes" VALUES (4086, '四川省', '涪陵地区', '南川市', '512302'); +INSERT INTO "public"."cardcodes" VALUES (4087, '四川省', '涪陵地区', '涪陵县', '512321'); +INSERT INTO "public"."cardcodes" VALUES (4088, '四川省', '涪陵地区', '垫江县', '512322'); +INSERT INTO "public"."cardcodes" VALUES (4089, '四川省', '涪陵地区', '南川县', '512323'); +INSERT INTO "public"."cardcodes" VALUES (4090, '四川省', '涪陵地区', '丰都县', '512324'); +INSERT INTO "public"."cardcodes" VALUES (4091, '四川省', '涪陵地区', '石柱县', '512325'); +INSERT INTO "public"."cardcodes" VALUES (4092, '四川省', '涪陵地区', '武隆县', '512326'); +INSERT INTO "public"."cardcodes" VALUES (4093, '四川省', '涪陵地区', '彭水县', '512327'); +INSERT INTO "public"."cardcodes" VALUES (4094, '四川省', '涪陵地区', '黔江县', '512328'); +INSERT INTO "public"."cardcodes" VALUES (4095, '四川省', '涪陵地区', '酉阳县', '512329'); +INSERT INTO "public"."cardcodes" VALUES (4096, '四川省', '涪陵地区', '秀山县', '512330'); +INSERT INTO "public"."cardcodes" VALUES (4097, '四川省', '宜宾地区', '宜宾市', '512501'); +INSERT INTO "public"."cardcodes" VALUES (4098, '四川省', '宜宾地区', '宜宾县', '512527'); +INSERT INTO "public"."cardcodes" VALUES (4099, '四川省', '宜宾地区', '南溪县', '512528'); +INSERT INTO "public"."cardcodes" VALUES (4100, '四川省', '宜宾地区', '江安县', '512529'); +INSERT INTO "public"."cardcodes" VALUES (4101, '四川省', '宜宾地区', '长宁县', '512530'); +INSERT INTO "public"."cardcodes" VALUES (4102, '四川省', '宜宾地区', '高县', '512531'); +INSERT INTO "public"."cardcodes" VALUES (4103, '四川省', '宜宾地区', '筠连县', '512532'); +INSERT INTO "public"."cardcodes" VALUES (4104, '四川省', '宜宾地区', '珙县', '512533'); +INSERT INTO "public"."cardcodes" VALUES (4105, '四川省', '宜宾地区', '兴文县', '512534'); +INSERT INTO "public"."cardcodes" VALUES (4106, '四川省', '宜宾地区', '屏山县', '512535'); +INSERT INTO "public"."cardcodes" VALUES (4107, '四川省', '南充地区', '南充市', '512901'); +INSERT INTO "public"."cardcodes" VALUES (4108, '四川省', '南充地区', '华蓥市', '512902'); +INSERT INTO "public"."cardcodes" VALUES (4109, '四川省', '南充地区', '阆中市', '512903'); +INSERT INTO "public"."cardcodes" VALUES (4110, '四川省', '南充地区', '南充县', '512921'); +INSERT INTO "public"."cardcodes" VALUES (4111, '四川省', '南充地区', '南部县', '512922'); +INSERT INTO "public"."cardcodes" VALUES (4112, '四川省', '南充地区', '岳池县', '512923'); +INSERT INTO "public"."cardcodes" VALUES (4113, '四川省', '南充地区', '营山县', '512924'); +INSERT INTO "public"."cardcodes" VALUES (4114, '四川省', '南充地区', '广安县', '512925'); +INSERT INTO "public"."cardcodes" VALUES (4115, '四川省', '南充地区', '蓬安县', '512926'); +INSERT INTO "public"."cardcodes" VALUES (4116, '四川省', '南充地区', '仪陇县', '512927'); +INSERT INTO "public"."cardcodes" VALUES (4117, '四川省', '南充地区', '武胜县', '512928'); +INSERT INTO "public"."cardcodes" VALUES (4118, '四川省', '南充地区', '西充县', '512929'); +INSERT INTO "public"."cardcodes" VALUES (4119, '四川省', '南充地区', '阆中县', '512930'); +INSERT INTO "public"."cardcodes" VALUES (4120, '四川省', '南充地区', '苍溪县', '512931'); +INSERT INTO "public"."cardcodes" VALUES (4121, '四川省', '南充地区', '华云工农区', '512932'); +INSERT INTO "public"."cardcodes" VALUES (4122, '四川省', '达川地区', '达川市', '513001'); +INSERT INTO "public"."cardcodes" VALUES (4123, '四川省', '达川地区', '万源市', '513002'); +INSERT INTO "public"."cardcodes" VALUES (4124, '四川省', '达川地区', '达县', '513021'); +INSERT INTO "public"."cardcodes" VALUES (4125, '四川省', '达川地区', '宣汉县', '513022'); +INSERT INTO "public"."cardcodes" VALUES (4126, '四川省', '达川地区', '开江县', '513023'); +INSERT INTO "public"."cardcodes" VALUES (4127, '四川省', '达川地区', '万源县', '513024'); +INSERT INTO "public"."cardcodes" VALUES (4128, '四川省', '达川地区', '通江县', '513025'); +INSERT INTO "public"."cardcodes" VALUES (4129, '四川省', '达川地区', '南江县', '513026'); +INSERT INTO "public"."cardcodes" VALUES (4130, '四川省', '达川地区', '巴中县', '513027'); +INSERT INTO "public"."cardcodes" VALUES (4131, '四川省', '达川地区', '平昌县', '513028'); +INSERT INTO "public"."cardcodes" VALUES (4132, '四川省', '达川地区', '大竹县', '513029'); +INSERT INTO "public"."cardcodes" VALUES (4133, '四川省', '达川地区', '渠县', '513030'); +INSERT INTO "public"."cardcodes" VALUES (4134, '四川省', '达川地区', '邻水县', '513031'); +INSERT INTO "public"."cardcodes" VALUES (4135, '四川省', '达川地区', '白沙工农区', '513032'); +INSERT INTO "public"."cardcodes" VALUES (4136, '四川省', '雅安地区', '雅安市', '513101'); +INSERT INTO "public"."cardcodes" VALUES (4137, '四川省', '雅安地区', '名山县', '513122'); +INSERT INTO "public"."cardcodes" VALUES (4138, '四川省', '雅安地区', '荥经县', '513123'); +INSERT INTO "public"."cardcodes" VALUES (4139, '四川省', '雅安地区', '汉源县', '513124'); +INSERT INTO "public"."cardcodes" VALUES (4140, '四川省', '雅安地区', '石棉县', '513125'); +INSERT INTO "public"."cardcodes" VALUES (4141, '四川省', '雅安地区', '天全县', '513126'); +INSERT INTO "public"."cardcodes" VALUES (4142, '四川省', '雅安地区', '芦山县', '513127'); +INSERT INTO "public"."cardcodes" VALUES (4143, '四川省', '雅安地区', '宝兴县', '513128'); +INSERT INTO "public"."cardcodes" VALUES (4144, '四川省', '阿坝藏族羌族自治州', '汶川县', '513221'); +INSERT INTO "public"."cardcodes" VALUES (4145, '四川省', '阿坝藏族羌族自治州', '理县', '513222'); +INSERT INTO "public"."cardcodes" VALUES (4146, '四川省', '阿坝藏族羌族自治州', '茂县', '513223'); +INSERT INTO "public"."cardcodes" VALUES (4147, '四川省', '阿坝藏族羌族自治州', '松潘县', '513224'); +INSERT INTO "public"."cardcodes" VALUES (4148, '四川省', '阿坝藏族羌族自治州', '九寨沟县', '513225'); +INSERT INTO "public"."cardcodes" VALUES (4149, '四川省', '阿坝藏族羌族自治州', '金川县', '513226'); +INSERT INTO "public"."cardcodes" VALUES (4150, '四川省', '阿坝藏族羌族自治州', '小金县', '513227'); +INSERT INTO "public"."cardcodes" VALUES (4151, '四川省', '阿坝藏族羌族自治州', '黑水县', '513228'); +INSERT INTO "public"."cardcodes" VALUES (4152, '四川省', '阿坝藏族羌族自治州', '马尔康县', '513229'); +INSERT INTO "public"."cardcodes" VALUES (4153, '四川省', '阿坝藏族羌族自治州', '壤塘县', '513230'); +INSERT INTO "public"."cardcodes" VALUES (4154, '四川省', '阿坝藏族羌族自治州', '阿坝县', '513231'); +INSERT INTO "public"."cardcodes" VALUES (4155, '四川省', '阿坝藏族羌族自治州', '若尔盖县', '513232'); +INSERT INTO "public"."cardcodes" VALUES (4156, '四川省', '阿坝藏族羌族自治州', '红原县', '513233'); +INSERT INTO "public"."cardcodes" VALUES (4157, '四川省', '甘孜藏族自治州', '康定县', '513321'); +INSERT INTO "public"."cardcodes" VALUES (4158, '四川省', '甘孜藏族自治州', '泸定县', '513322'); +INSERT INTO "public"."cardcodes" VALUES (4159, '四川省', '甘孜藏族自治州', '丹巴县', '513323'); +INSERT INTO "public"."cardcodes" VALUES (4160, '四川省', '甘孜藏族自治州', '九龙县', '513324'); +INSERT INTO "public"."cardcodes" VALUES (4161, '四川省', '甘孜藏族自治州', '雅江县', '513325'); +INSERT INTO "public"."cardcodes" VALUES (4162, '四川省', '甘孜藏族自治州', '道孚县', '513326'); +INSERT INTO "public"."cardcodes" VALUES (4163, '四川省', '甘孜藏族自治州', '炉霍县', '513327'); +INSERT INTO "public"."cardcodes" VALUES (4164, '四川省', '甘孜藏族自治州', '甘孜县', '513328'); +INSERT INTO "public"."cardcodes" VALUES (4165, '四川省', '甘孜藏族自治州', '新龙县', '513329'); +INSERT INTO "public"."cardcodes" VALUES (4166, '四川省', '甘孜藏族自治州', '德格县', '513330'); +INSERT INTO "public"."cardcodes" VALUES (4167, '四川省', '甘孜藏族自治州', '白玉县', '513331'); +INSERT INTO "public"."cardcodes" VALUES (4168, '四川省', '甘孜藏族自治州', '石渠县', '513332'); +INSERT INTO "public"."cardcodes" VALUES (4169, '四川省', '甘孜藏族自治州', '色达县', '513333'); +INSERT INTO "public"."cardcodes" VALUES (4170, '四川省', '甘孜藏族自治州', '理塘县', '513334'); +INSERT INTO "public"."cardcodes" VALUES (4171, '四川省', '甘孜藏族自治州', '巴塘县', '513335'); +INSERT INTO "public"."cardcodes" VALUES (4172, '四川省', '甘孜藏族自治州', '乡城县', '513336'); +INSERT INTO "public"."cardcodes" VALUES (4173, '四川省', '甘孜藏族自治州', '稻城县', '513337'); +INSERT INTO "public"."cardcodes" VALUES (4174, '四川省', '甘孜藏族自治州', '得荣县', '513338'); +INSERT INTO "public"."cardcodes" VALUES (4175, '四川省', '凉山彝族自治州', '西昌市', '513401'); +INSERT INTO "public"."cardcodes" VALUES (4176, '四川省', '凉山彝族自治州', '木里藏族自治县', '513422'); +INSERT INTO "public"."cardcodes" VALUES (4177, '四川省', '凉山彝族自治州', '盐源县', '513423'); +INSERT INTO "public"."cardcodes" VALUES (4178, '四川省', '凉山彝族自治州', '德昌县', '513424'); +INSERT INTO "public"."cardcodes" VALUES (4179, '四川省', '凉山彝族自治州', '会理县', '513425'); +INSERT INTO "public"."cardcodes" VALUES (4180, '四川省', '凉山彝族自治州', '会东县', '513426'); +INSERT INTO "public"."cardcodes" VALUES (4181, '四川省', '凉山彝族自治州', '宁南县', '513427'); +INSERT INTO "public"."cardcodes" VALUES (4182, '四川省', '凉山彝族自治州', '普格县', '513428'); +INSERT INTO "public"."cardcodes" VALUES (4183, '四川省', '凉山彝族自治州', '布拖县', '513429'); +INSERT INTO "public"."cardcodes" VALUES (4184, '四川省', '凉山彝族自治州', '金阳县', '513430'); +INSERT INTO "public"."cardcodes" VALUES (4185, '四川省', '凉山彝族自治州', '昭觉县', '513431'); +INSERT INTO "public"."cardcodes" VALUES (4186, '四川省', '凉山彝族自治州', '喜德县', '513432'); +INSERT INTO "public"."cardcodes" VALUES (4187, '四川省', '凉山彝族自治州', '冕宁县', '513433'); +INSERT INTO "public"."cardcodes" VALUES (4188, '四川省', '凉山彝族自治州', '越西县', '513434'); +INSERT INTO "public"."cardcodes" VALUES (4189, '四川省', '凉山彝族自治州', '甘洛县', '513435'); +INSERT INTO "public"."cardcodes" VALUES (4190, '四川省', '凉山彝族自治州', '美姑县', '513436'); +INSERT INTO "public"."cardcodes" VALUES (4191, '四川省', '凉山彝族自治州', '雷波县', '513437'); +INSERT INTO "public"."cardcodes" VALUES (4192, '四川省', '成都市', '市辖区', '510101'); +INSERT INTO "public"."cardcodes" VALUES (4193, '四川省', '成都市', '东城区', '510102'); +INSERT INTO "public"."cardcodes" VALUES (4194, '四川省', '成都市', '西城区', '510103'); +INSERT INTO "public"."cardcodes" VALUES (4195, '四川省', '成都市', '锦江区', '510104'); +INSERT INTO "public"."cardcodes" VALUES (4196, '四川省', '成都市', '青羊区', '510105'); +INSERT INTO "public"."cardcodes" VALUES (4197, '四川省', '成都市', '金牛区', '510106'); +INSERT INTO "public"."cardcodes" VALUES (4198, '四川省', '成都市', '武侯区', '510107'); +INSERT INTO "public"."cardcodes" VALUES (4199, '四川省', '成都市', '成华区', '510108'); +INSERT INTO "public"."cardcodes" VALUES (4200, '四川省', '成都市', '金牛区', '510111'); +INSERT INTO "public"."cardcodes" VALUES (4201, '四川省', '成都市', '龙泉驿区', '510112'); +INSERT INTO "public"."cardcodes" VALUES (4202, '四川省', '成都市', '青白江区', '510113'); +INSERT INTO "public"."cardcodes" VALUES (4203, '四川省', '成都市', '新都区', '510114'); +INSERT INTO "public"."cardcodes" VALUES (4204, '四川省', '成都市', '市区', '510120'); +INSERT INTO "public"."cardcodes" VALUES (4205, '四川省', '成都市', '金堂县', '510121'); +INSERT INTO "public"."cardcodes" VALUES (4206, '四川省', '成都市', '双流县', '510122'); +INSERT INTO "public"."cardcodes" VALUES (4207, '四川省', '成都市', '温江县', '510123'); +INSERT INTO "public"."cardcodes" VALUES (4208, '四川省', '成都市', '郫县', '510124'); +INSERT INTO "public"."cardcodes" VALUES (4209, '四川省', '成都市', '新都县', '510125'); +INSERT INTO "public"."cardcodes" VALUES (4210, '四川省', '成都市', '彭县', '510126'); +INSERT INTO "public"."cardcodes" VALUES (4211, '四川省', '成都市', '灌县', '510127'); +INSERT INTO "public"."cardcodes" VALUES (4212, '四川省', '成都市', '崇庆县', '510128'); +INSERT INTO "public"."cardcodes" VALUES (4213, '四川省', '成都市', '大邑县', '510129'); +INSERT INTO "public"."cardcodes" VALUES (4214, '四川省', '成都市', '邛崃县', '510130'); +INSERT INTO "public"."cardcodes" VALUES (4215, '四川省', '成都市', '蒲江县', '510131'); +INSERT INTO "public"."cardcodes" VALUES (4216, '四川省', '成都市', '新津县', '510132'); +INSERT INTO "public"."cardcodes" VALUES (4217, '四川省', '成都市', '都江堰市', '510181'); +INSERT INTO "public"."cardcodes" VALUES (4218, '四川省', '成都市', '彭州市', '510182'); +INSERT INTO "public"."cardcodes" VALUES (4219, '四川省', '成都市', '邛崃市', '510183'); +INSERT INTO "public"."cardcodes" VALUES (4220, '四川省', '成都市', '崇州市', '510184'); +INSERT INTO "public"."cardcodes" VALUES (4221, '四川省', '重庆市', '市辖区', '510201'); +INSERT INTO "public"."cardcodes" VALUES (4222, '四川省', '重庆市', '市中区', '510202'); +INSERT INTO "public"."cardcodes" VALUES (4223, '四川省', '重庆市', '大渡口区', '510203'); +INSERT INTO "public"."cardcodes" VALUES (4224, '四川省', '重庆市', '江北区', '510211'); +INSERT INTO "public"."cardcodes" VALUES (4225, '四川省', '重庆市', '沙坪坝区', '510212'); +INSERT INTO "public"."cardcodes" VALUES (4226, '四川省', '重庆市', '九龙坡区', '510213'); +INSERT INTO "public"."cardcodes" VALUES (4227, '四川省', '重庆市', '南岸区', '510214'); +INSERT INTO "public"."cardcodes" VALUES (4228, '四川省', '重庆市', '北碚区', '510215'); +INSERT INTO "public"."cardcodes" VALUES (4229, '四川省', '重庆市', '万盛区', '510216'); +INSERT INTO "public"."cardcodes" VALUES (4230, '四川省', '重庆市', '双桥区', '510217'); +INSERT INTO "public"."cardcodes" VALUES (4231, '四川省', '重庆市', '渝北区', '510218'); +INSERT INTO "public"."cardcodes" VALUES (4232, '四川省', '重庆市', '巴南区', '510219'); +INSERT INTO "public"."cardcodes" VALUES (4233, '四川省', '重庆市', '市区', '510220'); +INSERT INTO "public"."cardcodes" VALUES (4234, '四川省', '重庆市', '长寿县', '510221'); +INSERT INTO "public"."cardcodes" VALUES (4235, '四川省', '重庆市', '巴县', '510222'); +INSERT INTO "public"."cardcodes" VALUES (4236, '四川省', '重庆市', '綦江县', '510223'); +INSERT INTO "public"."cardcodes" VALUES (4237, '四川省', '重庆市', '江北县', '510224'); +INSERT INTO "public"."cardcodes" VALUES (4238, '四川省', '重庆市', '江津县', '510225'); +INSERT INTO "public"."cardcodes" VALUES (4239, '四川省', '重庆市', '合川县', '510226'); +INSERT INTO "public"."cardcodes" VALUES (4240, '四川省', '重庆市', '潼南县', '510227'); +INSERT INTO "public"."cardcodes" VALUES (4241, '四川省', '重庆市', '铜梁县', '510228'); +INSERT INTO "public"."cardcodes" VALUES (4242, '四川省', '重庆市', '永川县', '510229'); +INSERT INTO "public"."cardcodes" VALUES (4243, '四川省', '重庆市', '大足县', '510230'); +INSERT INTO "public"."cardcodes" VALUES (4244, '四川省', '重庆市', '北碚区', '510231'); +INSERT INTO "public"."cardcodes" VALUES (4245, '四川省', '重庆市', '璧山县', '510232'); +INSERT INTO "public"."cardcodes" VALUES (4246, '四川省', '重庆市', '永川市', '510281'); +INSERT INTO "public"."cardcodes" VALUES (4247, '四川省', '重庆市', '江津市', '510282'); +INSERT INTO "public"."cardcodes" VALUES (4248, '四川省', '重庆市', '合川市', '510283'); +INSERT INTO "public"."cardcodes" VALUES (4249, '四川省', '乐山市', '市辖区', '511101'); +INSERT INTO "public"."cardcodes" VALUES (4250, '四川省', '乐山市', '市中区', '511102'); +INSERT INTO "public"."cardcodes" VALUES (4251, '四川省', '乐山市', '沙湾区', '511111'); +INSERT INTO "public"."cardcodes" VALUES (4252, '四川省', '乐山市', '五通桥区', '511112'); +INSERT INTO "public"."cardcodes" VALUES (4253, '四川省', '乐山市', '金口河区', '511113'); +INSERT INTO "public"."cardcodes" VALUES (4254, '四川省', '乐山市', '仁寿县', '511121'); +INSERT INTO "public"."cardcodes" VALUES (4255, '四川省', '乐山市', '眉山县', '511122'); +INSERT INTO "public"."cardcodes" VALUES (4256, '四川省', '乐山市', '犍为县', '511123'); +INSERT INTO "public"."cardcodes" VALUES (4257, '四川省', '乐山市', '井研县', '511124'); +INSERT INTO "public"."cardcodes" VALUES (4258, '四川省', '乐山市', '峨眉县', '511125'); +INSERT INTO "public"."cardcodes" VALUES (4259, '四川省', '乐山市', '夹江县', '511126'); +INSERT INTO "public"."cardcodes" VALUES (4260, '四川省', '乐山市', '洪雅县', '511127'); +INSERT INTO "public"."cardcodes" VALUES (4261, '四川省', '乐山市', '彭山县', '511128'); +INSERT INTO "public"."cardcodes" VALUES (4262, '四川省', '乐山市', '沐川县', '511129'); +INSERT INTO "public"."cardcodes" VALUES (4263, '四川省', '乐山市', '青神县', '511130'); +INSERT INTO "public"."cardcodes" VALUES (4264, '四川省', '乐山市', '丹棱县', '511131'); +INSERT INTO "public"."cardcodes" VALUES (4265, '四川省', '乐山市', '峨边彝族自治县', '511132'); +INSERT INTO "public"."cardcodes" VALUES (4266, '四川省', '乐山市', '马边彝族自治县', '511133'); +INSERT INTO "public"."cardcodes" VALUES (4267, '四川省', '乐山市', '峨眉山市', '511181'); +INSERT INTO "public"."cardcodes" VALUES (4268, '四川省', '万县市', '市辖区', '511201'); +INSERT INTO "public"."cardcodes" VALUES (4269, '四川省', '万县市', '龙宝区', '511202'); +INSERT INTO "public"."cardcodes" VALUES (4270, '四川省', '万县市', '天成区', '511203'); +INSERT INTO "public"."cardcodes" VALUES (4271, '四川省', '万县市', '五桥区', '511204'); +INSERT INTO "public"."cardcodes" VALUES (4272, '四川省', '万县市', '开县', '511221'); +INSERT INTO "public"."cardcodes" VALUES (4273, '四川省', '万县市', '忠县', '511222'); +INSERT INTO "public"."cardcodes" VALUES (4274, '四川省', '万县市', '梁平县', '511223'); +INSERT INTO "public"."cardcodes" VALUES (4275, '四川省', '万县市', '云阳县', '511224'); +INSERT INTO "public"."cardcodes" VALUES (4276, '四川省', '万县市', '奉节县', '511225'); +INSERT INTO "public"."cardcodes" VALUES (4277, '四川省', '万县市', '巫山县', '511226'); +INSERT INTO "public"."cardcodes" VALUES (4278, '四川省', '万县市', '巫溪县', '511227'); +INSERT INTO "public"."cardcodes" VALUES (4279, '四川省', '万县市', '城口县', '511228'); +INSERT INTO "public"."cardcodes" VALUES (4280, '四川省', '南充市', '市辖区', '511301'); +INSERT INTO "public"."cardcodes" VALUES (4281, '四川省', '南充市', '顺庆区', '511302'); +INSERT INTO "public"."cardcodes" VALUES (4282, '四川省', '南充市', '高坪区', '511303'); +INSERT INTO "public"."cardcodes" VALUES (4283, '四川省', '南充市', '嘉陵区', '511304'); +INSERT INTO "public"."cardcodes" VALUES (4284, '四川省', '南充市', '南部县', '511321'); +INSERT INTO "public"."cardcodes" VALUES (4285, '四川省', '南充市', '营山县', '511322'); +INSERT INTO "public"."cardcodes" VALUES (4286, '四川省', '南充市', '蓬安县', '511323'); +INSERT INTO "public"."cardcodes" VALUES (4287, '四川省', '南充市', '仪陇县', '511324'); +INSERT INTO "public"."cardcodes" VALUES (4288, '四川省', '南充市', '西充县', '511325'); +INSERT INTO "public"."cardcodes" VALUES (4289, '四川省', '南充市', '阆中市', '511381'); +INSERT INTO "public"."cardcodes" VALUES (4290, '四川省', '眉山市', '市辖区', '511401'); +INSERT INTO "public"."cardcodes" VALUES (4291, '四川省', '眉山市', '东坡区', '511402'); +INSERT INTO "public"."cardcodes" VALUES (4292, '四川省', '眉山市', '仁寿县', '511421'); +INSERT INTO "public"."cardcodes" VALUES (4293, '四川省', '眉山市', '彭山县', '511422'); +INSERT INTO "public"."cardcodes" VALUES (4294, '四川省', '眉山市', '洪雅县', '511423'); +INSERT INTO "public"."cardcodes" VALUES (4295, '四川省', '眉山市', '丹棱县', '511424'); +INSERT INTO "public"."cardcodes" VALUES (4296, '四川省', '眉山市', '青神县', '511425'); +INSERT INTO "public"."cardcodes" VALUES (4297, '四川省', '宜宾市', '市辖区', '511501'); +INSERT INTO "public"."cardcodes" VALUES (4298, '四川省', '宜宾市', '翠屏区', '511502'); +INSERT INTO "public"."cardcodes" VALUES (4299, '四川省', '宜宾市', '宜宾县', '511521'); +INSERT INTO "public"."cardcodes" VALUES (4300, '四川省', '宜宾市', '南溪县', '511522'); +INSERT INTO "public"."cardcodes" VALUES (4301, '四川省', '宜宾市', '江安县', '511523'); +INSERT INTO "public"."cardcodes" VALUES (4302, '四川省', '宜宾市', '长宁县', '511524'); +INSERT INTO "public"."cardcodes" VALUES (4303, '四川省', '宜宾市', '高县', '511525'); +INSERT INTO "public"."cardcodes" VALUES (4304, '四川省', '宜宾市', '珙县', '511526'); +INSERT INTO "public"."cardcodes" VALUES (4305, '四川省', '宜宾市', '筠连县', '511527'); +INSERT INTO "public"."cardcodes" VALUES (4306, '四川省', '宜宾市', '兴文县', '511528'); +INSERT INTO "public"."cardcodes" VALUES (4307, '四川省', '宜宾市', '屏山县', '511529'); +INSERT INTO "public"."cardcodes" VALUES (4308, '四川省', '广安市', '市辖区', '511601'); +INSERT INTO "public"."cardcodes" VALUES (4309, '四川省', '广安市', '广安区', '511602'); +INSERT INTO "public"."cardcodes" VALUES (4310, '四川省', '广安市', '岳池县', '511621'); +INSERT INTO "public"."cardcodes" VALUES (4311, '四川省', '广安市', '武胜县', '511622'); +INSERT INTO "public"."cardcodes" VALUES (4312, '四川省', '广安市', '邻水县', '511623'); +INSERT INTO "public"."cardcodes" VALUES (4313, '四川省', '广安市', '华蓥市', '511681'); +INSERT INTO "public"."cardcodes" VALUES (4314, '四川省', '达州市', '市辖区', '511701'); +INSERT INTO "public"."cardcodes" VALUES (4315, '四川省', '达州市', '通川区', '511702'); +INSERT INTO "public"."cardcodes" VALUES (4316, '四川省', '达州市', '达县', '511721'); +INSERT INTO "public"."cardcodes" VALUES (4317, '四川省', '达州市', '宣汉县', '511722'); +INSERT INTO "public"."cardcodes" VALUES (4318, '四川省', '达州市', '开江县', '511723'); +INSERT INTO "public"."cardcodes" VALUES (4319, '四川省', '达州市', '大竹县', '511724'); +INSERT INTO "public"."cardcodes" VALUES (4320, '四川省', '达州市', '渠县', '511725'); +INSERT INTO "public"."cardcodes" VALUES (4321, '四川省', '达州市', '万源市', '511781'); +INSERT INTO "public"."cardcodes" VALUES (4322, '四川省', '雅安市', '市辖区', '511801'); +INSERT INTO "public"."cardcodes" VALUES (4323, '四川省', '雅安市', '雨城区', '511802'); +INSERT INTO "public"."cardcodes" VALUES (4324, '四川省', '雅安市', '名山县', '511821'); +INSERT INTO "public"."cardcodes" VALUES (4325, '四川省', '雅安市', '荥经县', '511822'); +INSERT INTO "public"."cardcodes" VALUES (4326, '四川省', '雅安市', '汉源县', '511823'); +INSERT INTO "public"."cardcodes" VALUES (4327, '四川省', '雅安市', '石棉县', '511824'); +INSERT INTO "public"."cardcodes" VALUES (4328, '四川省', '雅安市', '天全县', '511825'); +INSERT INTO "public"."cardcodes" VALUES (4329, '四川省', '雅安市', '芦山县', '511826'); +INSERT INTO "public"."cardcodes" VALUES (4330, '四川省', '雅安市', '宝兴县', '511827'); +INSERT INTO "public"."cardcodes" VALUES (4331, '四川省', '巴中市', '市辖区', '511901'); +INSERT INTO "public"."cardcodes" VALUES (4332, '四川省', '巴中市', '巴州区', '511902'); +INSERT INTO "public"."cardcodes" VALUES (4333, '四川省', '巴中市', '通江县', '511921'); +INSERT INTO "public"."cardcodes" VALUES (4334, '四川省', '巴中市', '南江县', '511922'); +INSERT INTO "public"."cardcodes" VALUES (4335, '四川省', '巴中市', '平昌县', '511923'); +INSERT INTO "public"."cardcodes" VALUES (4336, '四川省', '资阳市', '市辖区', '512001'); +INSERT INTO "public"."cardcodes" VALUES (4337, '四川省', '资阳市', '雁江区', '512002'); +INSERT INTO "public"."cardcodes" VALUES (4338, '四川省', '资阳市', '安岳县', '512021'); +INSERT INTO "public"."cardcodes" VALUES (4339, '四川省', '资阳市', '乐至县', '512022'); +INSERT INTO "public"."cardcodes" VALUES (4340, '四川省', '资阳市', '简阳市', '512081'); +INSERT INTO "public"."cardcodes" VALUES (4341, '四川省', '黔江地区', '石柱土家族自治县', '513521'); +INSERT INTO "public"."cardcodes" VALUES (4342, '四川省', '黔江地区', '秀山土家族苗族自治县', '513522'); +INSERT INTO "public"."cardcodes" VALUES (4343, '四川省', '黔江地区', '黔江土家族苗族自治县', '513523'); +INSERT INTO "public"."cardcodes" VALUES (4344, '四川省', '黔江地区', '酉阳土家族苗族自治县', '513524'); +INSERT INTO "public"."cardcodes" VALUES (4345, '四川省', '广安市', '华蓥市', '513601'); +INSERT INTO "public"."cardcodes" VALUES (4346, '四川省', '广安市', '岳池县', '513621'); +INSERT INTO "public"."cardcodes" VALUES (4347, '四川省', '广安市', '广安县', '513622'); +INSERT INTO "public"."cardcodes" VALUES (4348, '四川省', '广安市', '武胜县', '513623'); +INSERT INTO "public"."cardcodes" VALUES (4349, '四川省', '广安市', '邻水县', '513624'); +INSERT INTO "public"."cardcodes" VALUES (4350, '四川省', '巴中地区', '巴中市', '513701'); +INSERT INTO "public"."cardcodes" VALUES (4351, '四川省', '巴中地区', '通江县', '513721'); +INSERT INTO "public"."cardcodes" VALUES (4352, '四川省', '巴中地区', '南江县', '513722'); +INSERT INTO "public"."cardcodes" VALUES (4353, '四川省', '巴中地区', '平昌县', '513723'); +INSERT INTO "public"."cardcodes" VALUES (4354, '四川省', '眉山地区', '眉山县', '513821'); +INSERT INTO "public"."cardcodes" VALUES (4355, '四川省', '眉山地区', '仁寿县', '513822'); +INSERT INTO "public"."cardcodes" VALUES (4356, '四川省', '眉山地区', '彭山县', '513823'); +INSERT INTO "public"."cardcodes" VALUES (4357, '四川省', '眉山地区', '洪雅县', '513824'); +INSERT INTO "public"."cardcodes" VALUES (4358, '四川省', '眉山地区', '丹棱县', '513825'); +INSERT INTO "public"."cardcodes" VALUES (4359, '四川省', '眉山地区', '青神县', '513826'); +INSERT INTO "public"."cardcodes" VALUES (4360, '四川省', '资阳地区', '资阳市', '513901'); +INSERT INTO "public"."cardcodes" VALUES (4361, '四川省', '资阳地区', '简阳市', '513902'); +INSERT INTO "public"."cardcodes" VALUES (4362, '四川省', '资阳地区', '安岳县', '513921'); +INSERT INTO "public"."cardcodes" VALUES (4363, '四川省', '资阳地区', '乐至县', '513922'); +INSERT INTO "public"."cardcodes" VALUES (4364, '四川省', NULL, '广汉市', '519001'); +INSERT INTO "public"."cardcodes" VALUES (4365, '四川省', NULL, '江油市', '519002'); +INSERT INTO "public"."cardcodes" VALUES (4366, '四川省', NULL, '都江堰市', '519003'); +INSERT INTO "public"."cardcodes" VALUES (4367, '四川省', NULL, '峨眉山市', '519004'); +INSERT INTO "public"."cardcodes" VALUES (4368, '贵州省', '贵阳市', '市辖区', '520101'); +INSERT INTO "public"."cardcodes" VALUES (4369, '贵州省', '贵阳市', '南明区', '520102'); +INSERT INTO "public"."cardcodes" VALUES (4370, '贵州省', '贵阳市', '云岩区', '520103'); +INSERT INTO "public"."cardcodes" VALUES (4371, '贵州省', '贵阳市', '花溪区', '520111'); +INSERT INTO "public"."cardcodes" VALUES (4372, '贵州省', '贵阳市', '乌当区', '520112'); +INSERT INTO "public"."cardcodes" VALUES (4373, '贵州省', '贵阳市', '白云区', '520113'); +INSERT INTO "public"."cardcodes" VALUES (4374, '贵州省', '贵阳市', '小河区', '520114'); +INSERT INTO "public"."cardcodes" VALUES (4375, '贵州省', '贵阳市', '开阳县', '520121'); +INSERT INTO "public"."cardcodes" VALUES (4376, '贵州省', '贵阳市', '息烽县', '520122'); +INSERT INTO "public"."cardcodes" VALUES (4377, '贵州省', '贵阳市', '修文县', '520123'); +INSERT INTO "public"."cardcodes" VALUES (4378, '贵州省', '贵阳市', '清镇市', '520181'); +INSERT INTO "public"."cardcodes" VALUES (4379, '贵州省', '六盘水市', '钟山区', '520201'); +INSERT INTO "public"."cardcodes" VALUES (4380, '贵州省', '六盘水市', '盘县特区', '520202'); +INSERT INTO "public"."cardcodes" VALUES (4381, '贵州省', '六盘水市', '六枝特区', '520203'); +INSERT INTO "public"."cardcodes" VALUES (4382, '贵州省', '六盘水市', '水城县', '520221'); +INSERT INTO "public"."cardcodes" VALUES (4383, '贵州省', '六盘水市', '盘县', '520222'); +INSERT INTO "public"."cardcodes" VALUES (4384, '贵州省', '遵义市', '市辖区', '520301'); +INSERT INTO "public"."cardcodes" VALUES (4385, '贵州省', '遵义市', '红花岗区', '520302'); +INSERT INTO "public"."cardcodes" VALUES (4386, '贵州省', '遵义市', '汇川区', '520303'); +INSERT INTO "public"."cardcodes" VALUES (4387, '贵州省', '遵义市', '遵义县', '520321'); +INSERT INTO "public"."cardcodes" VALUES (4388, '贵州省', '遵义市', '桐梓县', '520322'); +INSERT INTO "public"."cardcodes" VALUES (4389, '贵州省', '遵义市', '绥阳县', '520323'); +INSERT INTO "public"."cardcodes" VALUES (4390, '贵州省', '遵义市', '正安县', '520324'); +INSERT INTO "public"."cardcodes" VALUES (4391, '贵州省', '遵义市', '道真仡佬族苗族自治县', '520325'); +INSERT INTO "public"."cardcodes" VALUES (4392, '贵州省', '遵义市', '务川仡佬族苗族自治县', '520326'); +INSERT INTO "public"."cardcodes" VALUES (4393, '贵州省', '遵义市', '凤冈县', '520327'); +INSERT INTO "public"."cardcodes" VALUES (4394, '贵州省', '遵义市', '湄潭县', '520328'); +INSERT INTO "public"."cardcodes" VALUES (4395, '贵州省', '遵义市', '余庆县', '520329'); +INSERT INTO "public"."cardcodes" VALUES (4396, '贵州省', '遵义市', '习水县', '520330'); +INSERT INTO "public"."cardcodes" VALUES (4397, '贵州省', '遵义市', '赤水市', '520381'); +INSERT INTO "public"."cardcodes" VALUES (4398, '贵州省', '遵义市', '仁怀市', '520382'); +INSERT INTO "public"."cardcodes" VALUES (4399, '贵州省', '安顺市', '市辖区', '520401'); +INSERT INTO "public"."cardcodes" VALUES (4400, '贵州省', '安顺市', '西秀区', '520402'); +INSERT INTO "public"."cardcodes" VALUES (4401, '贵州省', '安顺市', '平坝县', '520421'); +INSERT INTO "public"."cardcodes" VALUES (4402, '贵州省', '安顺市', '普定县', '520422'); +INSERT INTO "public"."cardcodes" VALUES (4403, '贵州省', '安顺市', '镇宁布依族苗族自治县', '520423'); +INSERT INTO "public"."cardcodes" VALUES (4404, '贵州省', '安顺市', '关岭布依族苗族自治县', '520424'); +INSERT INTO "public"."cardcodes" VALUES (4405, '贵州省', '安顺市', '紫云苗族布依族自治县', '520425'); +INSERT INTO "public"."cardcodes" VALUES (4406, '贵州省', '遵义地区', '遵义市', '522101'); +INSERT INTO "public"."cardcodes" VALUES (4407, '贵州省', '遵义地区', '赤水市', '522102'); +INSERT INTO "public"."cardcodes" VALUES (4408, '贵州省', '遵义地区', '仁怀市', '522103'); +INSERT INTO "public"."cardcodes" VALUES (4409, '贵州省', '遵义地区', '遵义县', '522121'); +INSERT INTO "public"."cardcodes" VALUES (4410, '贵州省', '遵义地区', '桐梓县', '522122'); +INSERT INTO "public"."cardcodes" VALUES (4411, '贵州省', '遵义地区', '绥阳县', '522123'); +INSERT INTO "public"."cardcodes" VALUES (4412, '贵州省', '遵义地区', '正安县', '522124'); +INSERT INTO "public"."cardcodes" VALUES (4413, '贵州省', '遵义地区', '道真仡佬族苗族自治县', '522125'); +INSERT INTO "public"."cardcodes" VALUES (4414, '贵州省', '遵义地区', '务川仡佬族苗族自治县', '522126'); +INSERT INTO "public"."cardcodes" VALUES (4415, '贵州省', '遵义地区', '凤冈县', '522127'); +INSERT INTO "public"."cardcodes" VALUES (4416, '贵州省', '遵义地区', '湄潭县', '522128'); +INSERT INTO "public"."cardcodes" VALUES (4417, '贵州省', '遵义地区', '余庆县', '522129'); +INSERT INTO "public"."cardcodes" VALUES (4418, '贵州省', '遵义地区', '仁怀县', '522130'); +INSERT INTO "public"."cardcodes" VALUES (4419, '贵州省', '遵义地区', '赤水县', '522131'); +INSERT INTO "public"."cardcodes" VALUES (4420, '贵州省', '遵义地区', '习水县', '522132'); +INSERT INTO "public"."cardcodes" VALUES (4421, '贵州省', '铜仁地区', '铜仁市', '522201'); +INSERT INTO "public"."cardcodes" VALUES (4422, '贵州省', '铜仁地区', '铜仁县', '522221'); +INSERT INTO "public"."cardcodes" VALUES (4423, '贵州省', '铜仁地区', '江口县', '522222'); +INSERT INTO "public"."cardcodes" VALUES (4424, '贵州省', '铜仁地区', '玉屏侗族自治县', '522223'); +INSERT INTO "public"."cardcodes" VALUES (4425, '贵州省', '铜仁地区', '石阡县', '522224'); +INSERT INTO "public"."cardcodes" VALUES (4426, '贵州省', '铜仁地区', '思南县', '522225'); +INSERT INTO "public"."cardcodes" VALUES (4427, '贵州省', '铜仁地区', '印江土家族苗族自治县', '522226'); +INSERT INTO "public"."cardcodes" VALUES (4428, '贵州省', '铜仁地区', '德江县', '522227'); +INSERT INTO "public"."cardcodes" VALUES (4429, '贵州省', '铜仁地区', '沿河土家族自治县', '522228'); +INSERT INTO "public"."cardcodes" VALUES (4430, '贵州省', '铜仁地区', '松桃苗族自治县', '522229'); +INSERT INTO "public"."cardcodes" VALUES (4431, '贵州省', '铜仁地区', '万山特区', '522230'); +INSERT INTO "public"."cardcodes" VALUES (4432, '贵州省', '黔西南布依族苗族自治州', '兴义市', '522301'); +INSERT INTO "public"."cardcodes" VALUES (4433, '贵州省', '黔西南布依族苗族自治州', '赤壁市', '522302'); +INSERT INTO "public"."cardcodes" VALUES (4434, '贵州省', '黔西南布依族苗族自治州', '兴义县', '522321'); +INSERT INTO "public"."cardcodes" VALUES (4435, '贵州省', '黔西南布依族苗族自治州', '兴仁县', '522322'); +INSERT INTO "public"."cardcodes" VALUES (4436, '贵州省', '黔西南布依族苗族自治州', '普安县', '522323'); +INSERT INTO "public"."cardcodes" VALUES (4437, '贵州省', '黔西南布依族苗族自治州', '晴隆县', '522324'); +INSERT INTO "public"."cardcodes" VALUES (4438, '贵州省', '黔西南布依族苗族自治州', '贞丰县', '522325'); +INSERT INTO "public"."cardcodes" VALUES (4439, '贵州省', '黔西南布依族苗族自治州', '望谟县', '522326'); +INSERT INTO "public"."cardcodes" VALUES (4440, '贵州省', '黔西南布依族苗族自治州', '册亨县', '522327'); +INSERT INTO "public"."cardcodes" VALUES (4441, '贵州省', '黔西南布依族苗族自治州', '安龙县', '522328'); +INSERT INTO "public"."cardcodes" VALUES (4442, '贵州省', '毕节地区', '毕节市', '522401'); +INSERT INTO "public"."cardcodes" VALUES (4443, '贵州省', '毕节地区', '毕节县', '522421'); +INSERT INTO "public"."cardcodes" VALUES (4444, '贵州省', '毕节地区', '大方县', '522422'); +INSERT INTO "public"."cardcodes" VALUES (4445, '贵州省', '毕节地区', '黔西县', '522423'); +INSERT INTO "public"."cardcodes" VALUES (4446, '贵州省', '毕节地区', '金沙县', '522424'); +INSERT INTO "public"."cardcodes" VALUES (4447, '贵州省', '毕节地区', '织金县', '522425'); +INSERT INTO "public"."cardcodes" VALUES (4448, '贵州省', '毕节地区', '纳雍县', '522426'); +INSERT INTO "public"."cardcodes" VALUES (4449, '贵州省', '毕节地区', '威宁彝族回族苗族自治县', '522427'); +INSERT INTO "public"."cardcodes" VALUES (4450, '贵州省', '毕节地区', '赫章县', '522428'); +INSERT INTO "public"."cardcodes" VALUES (4451, '贵州省', '安顺地区', '安顺市', '522501'); +INSERT INTO "public"."cardcodes" VALUES (4452, '贵州省', '安顺地区', '清镇市', '522502'); +INSERT INTO "public"."cardcodes" VALUES (4453, '贵州省', '安顺地区', '安顺县', '522521'); +INSERT INTO "public"."cardcodes" VALUES (4454, '贵州省', '安顺地区', '开阳县', '522522'); +INSERT INTO "public"."cardcodes" VALUES (4455, '贵州省', '安顺地区', '息烽县', '522523'); +INSERT INTO "public"."cardcodes" VALUES (4456, '贵州省', '安顺地区', '修文县', '522524'); +INSERT INTO "public"."cardcodes" VALUES (4457, '贵州省', '安顺地区', '清镇县', '522525'); +INSERT INTO "public"."cardcodes" VALUES (4458, '贵州省', '安顺地区', '平坝县', '522526'); +INSERT INTO "public"."cardcodes" VALUES (4459, '贵州省', '安顺地区', '普定县', '522527'); +INSERT INTO "public"."cardcodes" VALUES (4460, '贵州省', '安顺地区', '关岭布依族苗族自治县', '522528'); +INSERT INTO "public"."cardcodes" VALUES (4461, '贵州省', '安顺地区', '镇宁布依族苗族自治县', '522529'); +INSERT INTO "public"."cardcodes" VALUES (4462, '贵州省', '安顺地区', '紫云苗族布依族自治县', '522530'); +INSERT INTO "public"."cardcodes" VALUES (4463, '贵州省', '黔东南苗族侗族自治州', '凯里市', '522601'); +INSERT INTO "public"."cardcodes" VALUES (4464, '贵州省', '黔东南苗族侗族自治州', '黄平县', '522622'); +INSERT INTO "public"."cardcodes" VALUES (4465, '贵州省', '黔东南苗族侗族自治州', '施秉县', '522623'); +INSERT INTO "public"."cardcodes" VALUES (4466, '贵州省', '黔东南苗族侗族自治州', '三穗县', '522624'); +INSERT INTO "public"."cardcodes" VALUES (4467, '贵州省', '黔东南苗族侗族自治州', '镇远县', '522625'); +INSERT INTO "public"."cardcodes" VALUES (4468, '贵州省', '黔东南苗族侗族自治州', '岑巩县', '522626'); +INSERT INTO "public"."cardcodes" VALUES (4469, '贵州省', '黔东南苗族侗族自治州', '天柱县', '522627'); +INSERT INTO "public"."cardcodes" VALUES (4470, '贵州省', '黔东南苗族侗族自治州', '锦屏县', '522628'); +INSERT INTO "public"."cardcodes" VALUES (4471, '贵州省', '黔东南苗族侗族自治州', '剑河县', '522629'); +INSERT INTO "public"."cardcodes" VALUES (4472, '贵州省', '黔东南苗族侗族自治州', '台江县', '522630'); +INSERT INTO "public"."cardcodes" VALUES (4473, '贵州省', '黔东南苗族侗族自治州', '黎平县', '522631'); +INSERT INTO "public"."cardcodes" VALUES (4474, '贵州省', '黔东南苗族侗族自治州', '榕江县', '522632'); +INSERT INTO "public"."cardcodes" VALUES (4475, '贵州省', '黔东南苗族侗族自治州', '从江县', '522633'); +INSERT INTO "public"."cardcodes" VALUES (4476, '贵州省', '黔东南苗族侗族自治州', '雷山县', '522634'); +INSERT INTO "public"."cardcodes" VALUES (4477, '贵州省', '黔东南苗族侗族自治州', '麻江县', '522635'); +INSERT INTO "public"."cardcodes" VALUES (4478, '贵州省', '黔东南苗族侗族自治州', '丹寨县', '522636'); +INSERT INTO "public"."cardcodes" VALUES (4479, '贵州省', '黔南布依族苗族自治州', '都匀市', '522701'); +INSERT INTO "public"."cardcodes" VALUES (4480, '贵州省', '黔南布依族苗族自治州', '福泉市', '522702'); +INSERT INTO "public"."cardcodes" VALUES (4481, '贵州省', '黔南布依族苗族自治州', '荔波县', '522722'); +INSERT INTO "public"."cardcodes" VALUES (4482, '贵州省', '黔南布依族苗族自治州', '贵定县', '522723'); +INSERT INTO "public"."cardcodes" VALUES (4483, '贵州省', '黔南布依族苗族自治州', '福泉县', '522724'); +INSERT INTO "public"."cardcodes" VALUES (4484, '贵州省', '黔南布依族苗族自治州', '瓮安县', '522725'); +INSERT INTO "public"."cardcodes" VALUES (4485, '贵州省', '黔南布依族苗族自治州', '独山县', '522726'); +INSERT INTO "public"."cardcodes" VALUES (4486, '中华人民共和国香港特别行政区', NULL, NULL, '810000'); +INSERT INTO "public"."cardcodes" VALUES (4487, '中华人民共和国澳门特别行政区', NULL, NULL, '820000'); +INSERT INTO "public"."cardcodes" VALUES (4488, '台湾省', NULL, NULL, '710000'); + +-- ---------------------------- +-- Table structure for cashinfo +-- ---------------------------- +DROP TABLE IF EXISTS "public"."cashinfo"; +CREATE TABLE "public"."cashinfo" ( + "CashNo" varchar(12) COLLATE "pg_catalog"."default" NOT NULL, + "CashName" varchar(300) COLLATE "pg_catalog"."default" NOT NULL, + "CashPrice" numeric(10,2) NOT NULL, + "CashClub" varchar(800) COLLATE "pg_catalog"."default" NOT NULL, + "CashTime" timestamp(6) NOT NULL, + "CashSource" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, + "CashPerson" varchar(800) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."cashinfo"."CashNo" IS '资产编号'; +COMMENT ON COLUMN "public"."cashinfo"."CashName" IS '资产名称'; +COMMENT ON COLUMN "public"."cashinfo"."CashPrice" IS '资产总值'; +COMMENT ON COLUMN "public"."cashinfo"."CashClub" IS '所属部门'; +COMMENT ON COLUMN "public"."cashinfo"."CashTime" IS '入库时间'; +COMMENT ON COLUMN "public"."cashinfo"."CashSource" IS '资产来源'; +COMMENT ON COLUMN "public"."cashinfo"."CashPerson" IS '资产经办人'; +COMMENT ON COLUMN "public"."cashinfo"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."cashinfo"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."cashinfo"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."cashinfo"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."cashinfo"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."cashinfo" IS '酒店资产表'; + +-- ---------------------------- +-- Records of cashinfo +-- ---------------------------- +INSERT INTO "public"."cashinfo" VALUES ('CN001', '购入18台PC', 150000.00, 'D-001', '2018-12-03 15:49:16', '联想电脑', 'WK001', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN002', '购入150平方的瓷砖', 800000.00, 'D-001', '2018-12-03 15:49:16', '京瓷', 'WK002', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN003', '与KaMiFood达成合作', 870000.00, 'D-001', '2018-12-04 00:00:00', '神之食餐饮', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN004', '购入40台高配笔记本', 900000.00, 'D-003', '2018-12-05 00:00:00', '戴尔电脑', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN005', '与闪修达成合作', 600000.00, 'D-001', '2018-12-05 00:00:00', '闪修公司', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN006', '顶级床单3000张', 900000.00, 'D-001', '2018-12-15 00:00:00', '席梦思', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN007', '办公椅300张', 50000.00, 'D-003', '2018-12-05 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN008', '办公桌300张', 80000.00, 'D-001', '2018-12-05 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN009', '测试数据', 200000.00, 'D-006', '2018-12-05 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN010', '测试数据', 300000.00, 'D-002', '2018-12-06 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN011', '测试数据', 400000.00, 'D-002', '2018-12-07 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN012', '测试数据', 500000.00, 'D-002', '2018-12-08 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN013', '测试数据', 600000.00, 'D-002', '2018-12-09 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN014', '测试数据', 700000.00, 'D-002', '2018-12-23 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN015', '测试数据', 800000.00, 'D-002', '2018-12-23 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN016', '测试数据', 900000.00, 'D-002', '2018-12-24 00:00:00', 'XX公司', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN017', '纪念品', 500.00, 'D-011', '2020-08-22 15:22:44', '赠予', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN1262', '古董', 10000000.00, 'D-001', '2020-08-22 15:22:44', '赠送', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN202100013', '测试测试', 600000.00, 'D-004', '2021-01-30 00:00:00', '测试工厂', 'WK010', 0, 'admin', '2021-02-16', NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN20210002', '戴尔笔记本6台', 80000.00, 'D-010', '2021-01-30 00:00:00', '戴尔(珠海)经销商', 'WK202102007', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN4610', '购入20套办公桌', 50000.00, 'D-010', '2020-04-16 23:25:22', '志远办公', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN4665', '购入10套办公桌椅', 50000.00, 'D-010', '2020-04-16 23:26:57', '志远办公', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN6816', 'test', 20000.00, 'D-002', '2020-04-16 23:42:08', 'adasd', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('CN8051', 'cccccc', 10000.00, 'D-002', '2020-08-14 14:33:21', 'ccccccc', 'WK010', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."cashinfo" VALUES ('RG001', '唯秒合作入股', 770000.00, 'D-001', '2018-12-05 00:00:00', '唯秒', 'WK001', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for checkinfo +-- ---------------------------- +DROP TABLE IF EXISTS "public"."checkinfo"; +CREATE TABLE "public"."checkinfo" ( + "CheckNo" varchar(10) COLLATE "pg_catalog"."default" NOT NULL, + "CheckClub" varchar(12) COLLATE "pg_catalog"."default" NOT NULL, + "CheckProgres" varchar(250) COLLATE "pg_catalog"."default" NOT NULL, + "CheckCash" varchar(250) COLLATE "pg_catalog"."default" NOT NULL, + "CheckScore" int4 NOT NULL, + "CheckPerson" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, + "CheckAdvice" varchar(45) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."checkinfo"."CheckNo" IS '监管统计编号'; +COMMENT ON COLUMN "public"."checkinfo"."CheckClub" IS '受监管部门'; +COMMENT ON COLUMN "public"."checkinfo"."CheckProgres" IS '受监管部门总体概述'; +COMMENT ON COLUMN "public"."checkinfo"."CheckCash" IS '受监管部门交易情况'; +COMMENT ON COLUMN "public"."checkinfo"."CheckScore" IS '受监管部门得分情况'; +COMMENT ON COLUMN "public"."checkinfo"."CheckPerson" IS '本次监管负责人'; +COMMENT ON COLUMN "public"."checkinfo"."CheckAdvice" IS '监管建议'; +COMMENT ON COLUMN "public"."checkinfo"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."checkinfo"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."checkinfo"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."checkinfo"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."checkinfo"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."checkinfo" IS '监管统计表'; + +-- ---------------------------- +-- Records of checkinfo +-- ---------------------------- +INSERT INTO "public"."checkinfo" VALUES ('CI001', '后勤部', '有人偷懒', '(^-^)', 4, '罗良建', '合理分配时间', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."checkinfo" VALUES ('CI002', '餐饮部', '有人偷懒', 'QAQ', 4, '罗良建', '合理分配时间', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."checkinfo" VALUES ('CI003', '酒店部', '有人偷懒', '(-_-)', 4, '罗良建', '合理分配时间', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for counterrule +-- ---------------------------- +DROP TABLE IF EXISTS "public"."counterrule"; +CREATE TABLE "public"."counterrule" ( + "rule_id" int4 NOT NULL, + "rule_name" varchar(50) COLLATE "pg_catalog"."default", + "rule_desc" varchar(100) COLLATE "pg_catalog"."default", + "now_id" int4, + "prefix_name" varchar(20) COLLATE "pg_catalog"."default", + "custo_format" varchar(50) COLLATE "pg_catalog"."default", + "number_format" varchar(10) COLLATE "pg_catalog"."default", + "separating_char" varchar(5) COLLATE "pg_catalog"."default", + "datains_usrid" varchar(20) COLLATE "pg_catalog"."default", + "datains_time" timestamp(6), + "datachg_usrid" varchar(20) COLLATE "pg_catalog"."default", + "datachg_time" timestamp(6) +) +; +COMMENT ON COLUMN "public"."counterrule"."rule_id" IS '规则编号'; +COMMENT ON COLUMN "public"."counterrule"."rule_name" IS '规格名称'; +COMMENT ON COLUMN "public"."counterrule"."rule_desc" IS '规则描述'; +COMMENT ON COLUMN "public"."counterrule"."now_id" IS '当前ID'; +COMMENT ON COLUMN "public"."counterrule"."prefix_name" IS '规则简写'; +COMMENT ON COLUMN "public"."counterrule"."custo_format" IS '规则格式'; +COMMENT ON COLUMN "public"."counterrule"."number_format" IS '编号前缀'; +COMMENT ON COLUMN "public"."counterrule"."separating_char" IS '规则分割符'; +COMMENT ON COLUMN "public"."counterrule"."datains_usrid" IS '资料新增人'; +COMMENT ON COLUMN "public"."counterrule"."datains_time" IS '资料新增时间'; +COMMENT ON COLUMN "public"."counterrule"."datachg_usrid" IS '资料更新人'; +COMMENT ON COLUMN "public"."counterrule"."datachg_time" IS '资料更新时间'; +COMMENT ON TABLE "public"."counterrule" IS '业务流水号规则表'; + +-- ---------------------------- +-- Records of counterrule +-- ---------------------------- +INSERT INTO "public"."counterrule" VALUES (1, 'WorkerId', '员工工号流水号规则', 44, 'WK', 'yyyyMM', '00', '', 'System', NULL, NULL, NULL); +INSERT INTO "public"."counterrule" VALUES (9, 'EducationId', '学历编号', 3, 'E', 'yyyy', '0', '-', 'System', NULL, NULL, NULL); +INSERT INTO "public"."counterrule" VALUES (4, 'ReserId', '预约编号', 25, 'R', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); +INSERT INTO "public"."counterrule" VALUES (2, 'NationId', '民族类型编号', 7, 'N', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); +INSERT INTO "public"."counterrule" VALUES (10, 'PositionId', '职位编号', 8, 'P', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); +INSERT INTO "public"."counterrule" VALUES (6, 'NoticeId', '公告编号', 5, 'UP', 'yyyyMM', '00', '-', 'System', NULL, NULL, NULL); +INSERT INTO "public"."counterrule" VALUES (3, 'CustoId', '客户类型编号', 169, 'TS', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); +INSERT INTO "public"."counterrule" VALUES (5, 'SellId', '商品编号', 161, 'ST', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); +INSERT INTO "public"."counterrule" VALUES (11, 'VipRuleId', '会员等级类型编号', 126, 'VR', 'yyyyMMdd', '000', '-', 'System', NULL, NULL, NULL); +INSERT INTO "public"."counterrule" VALUES (8, 'DeptInfo', '部门编号', 145, 'D', 'yyyy', '00', '-', 'System', NULL, NULL, NULL); +INSERT INTO "public"."counterrule" VALUES (7, 'CashInfo', '资产编号', 96, 'CN', 'yyyy', '000', '-', 'System', NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for customer +-- ---------------------------- +DROP TABLE IF EXISTS "public"."customer"; +CREATE TABLE "public"."customer" ( + "custo_no" varchar(30) COLLATE "pg_catalog"."default" NOT NULL, + "custo_name" varchar(200) COLLATE "pg_catalog"."default", + "custo_sex" int2 DEFAULT 0, + "custo_tel" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, + "passport_type" int2 NOT NULL DEFAULT 0, + "passport_id" varchar(30) COLLATE "pg_catalog"."default" NOT NULL, + "custo_address" varchar(300) COLLATE "pg_catalog"."default", + "custo_birth" date, + "custo_type" int2 NOT NULL DEFAULT 0, + "delete_mk" int2 NOT NULL DEFAULT 0, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."customer"."custo_no" IS '客户编号'; +COMMENT ON COLUMN "public"."customer"."custo_name" IS '客户姓名'; +COMMENT ON COLUMN "public"."customer"."custo_sex" IS '客户性别'; +COMMENT ON COLUMN "public"."customer"."custo_tel" IS '客户电话'; +COMMENT ON COLUMN "public"."customer"."passport_type" IS '证件类型'; +COMMENT ON COLUMN "public"."customer"."passport_id" IS '证件号码'; +COMMENT ON COLUMN "public"."customer"."custo_address" IS '客户地址'; +COMMENT ON COLUMN "public"."customer"."custo_birth" IS '客户生日'; +COMMENT ON COLUMN "public"."customer"."custo_type" IS '客户类型'; +COMMENT ON COLUMN "public"."customer"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."customer"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."customer"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."customer"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."customer"."datachg_date" IS '资料更新时间'; + +-- ---------------------------- +-- Records of customer +-- ---------------------------- +INSERT INTO "public"."customer" VALUES ('TS-1506895026', '刘秀英', 0, '1002550414', 0, '440921199501209853', '中国北京市西城区西長安街377号华润大厦43室', '1995-04-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7454724132', '廖杰宏', 0, '76986162986', 0, '440921199502100103', '中国东莞坑美十五巷640号36栋', '1995-12-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2536719205', '尹璐', 0, '7550103816', 0, '440921199501112666', '中国深圳龙岗区布吉镇西环路459号36楼', '1995-09-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7681845999', '侯嘉伦', 1, '1073313320', 0, '440921199511115587', '中国北京市朝阳区三里屯路950号36楼', '1995-06-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0076151469', '郭璐', 1, '7608982112', 0, '440921199500110565', '中国中山天河区大信商圈大信南路363号华润大厦12室', '1995-10-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5029974816', '吴杰宏', 1, '287480376', 0, '440921199512102541', '中国成都市成华区玉双路6号214号24号楼', '1995-11-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0659693478', '赵璐', 0, '14221176252', 0, '440921199502239705', '中国上海市黄浦区淮海中路40号4楼', '1995-03-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3237516123', '潘岚', 0, '19060568695', 0, '440921199520126770', '中国深圳罗湖区田贝一路543号3楼', '1995-05-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1108748503', '何岚', 0, '76058613687', 0, '440921199521232646', '中国中山天河区大信商圈大信南路77号44号楼', '1995-10-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1451459598', '夏云熙', 1, '17390261215', 0, '440921199502335726', '中国东莞环区南街二巷243号32楼', '1995-08-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6348049575', '丁睿', 0, '16631857575', 0, '440921199522216230', '中国深圳龙岗区布吉镇西环路635号24号楼', '1995-07-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7904382112', '武子韬', 0, '13749390032', 0, '440921199501221402', '中国上海市浦东新区橄榄路416号42楼', '1995-10-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5148194116', '秦云熙', 1, '7600076168', 0, '440921199500017960', '中国中山乐丰六路153号27室', '1995-01-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8820534363', '汪安琪', 1, '2848550841', 0, '440921199512030253', '中国成都市成华区双庆路365号18楼', '1995-08-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0447565875', '陶睿', 0, '17924625895', 0, '440921199520227152', '中国深圳福田区景田东一街509号50号楼', '1995-11-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7320427604', '孟杰宏', 1, '2165351055', 0, '440921199522003354', '中国上海市徐汇区虹桥路23号32号楼', '1995-05-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0562473946', '贾杰宏', 0, '2024962459', 0, '440921199500107279', '中国广州市越秀区中山二路228号14栋', '1995-03-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6271997365', '傅安琪', 1, '76928029795', 0, '440921199502028830', '中国东莞珊瑚路961号26室', '1995-10-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8731516492', '向岚', 0, '18476669107', 0, '440921199511336010', '中国东莞环区南街二巷64号华润大厦44室', '1995-07-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8494374625', '莫晓明', 0, '75510662594', 0, '440921199500316029', '中国深圳福田区景田东一街943号28室', '1995-01-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2951045520', '陆璐', 1, '17971970026', 0, '440921199500230551', '中国深圳福田区深南大道633号39号楼', '1995-08-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9034881014', '孙秀英', 0, '14321077607', 0, '440921199500217773', '中国深圳罗湖区清水河一路713号34号楼', '1995-05-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7740031409', '史致远', 0, '76985440647', 0, '440921199501300278', '中国东莞环区南街二巷174号华润大厦2室', '1995-08-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8835828548', '姜宇宁', 0, '76098855332', 0, '440921199511326343', '中国中山乐丰六路565号23楼', '1995-06-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3766806889', '龚致远', 1, '18135152058', 0, '440921199510138488', '中国上海市浦东新区橄榄路425号华润大厦1室', '1995-02-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2947713697', '郝嘉伦', 1, '17228480588', 0, '440921199500106502', '中国东莞珊瑚路387号华润大厦21室', '1995-06-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5998331717', '戴秀英', 0, '207951286', 0, '440921199501035881', '中国广州市白云区机场路棠苑街五巷27号5栋', '1995-02-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3315789438', '周安琪', 0, '16016632008', 0, '440921199522205749', '中国深圳福田区深南大道483号11楼', '1995-05-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3722674359', '龚岚', 0, '2054278064', 0, '440921199522239234', '中国广州市白云区小坪东路613号42号楼', '1995-09-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7913919899', '戴岚', 0, '1012562024', 0, '440921199512318979', '中国北京市西城区西長安街223号42栋', '1995-10-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2723006499', '黎云熙', 0, '283797049', 0, '440921199501202708', '中国成都市锦江区红星路三段18号24栋', '1995-09-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4912843193', '莫岚', 0, '17937242259', 0, '440921199522117944', '中国深圳福田区深南大道962号1楼', '1995-03-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4519488103', '李子异', 1, '210387900', 0, '440921199510116675', '中国上海市浦东新区橄榄路918号49室', '1995-07-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0042840822', '孙宇宁', 0, '2131230320', 0, '440921199510324251', '中国上海市浦东新区橄榄路998号20室', '1995-05-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5250717193', '傅秀英', 1, '2119415200', 0, '440921199501124209', '中国上海市徐汇区虹桥路648号35栋', '1995-11-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2299417933', '梁秀英', 0, '7696423615', 0, '440921199501236449', '中国东莞环区南街二巷876号36号楼', '1995-12-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0541659159', '李云熙', 0, '109528627', 0, '440921199522134572', '中国北京市海淀区清河中街68号736号17室', '1995-03-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1305328364', '钟云熙', 0, '102884467', 0, '440921199500012844', '中国北京市房山区岳琉路488号47室', '1995-07-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7459119445', '龚岚', 1, '209548728', 0, '440921199522314346', '中国广州市白云区小坪东路613号48室', '1995-05-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9460045616', '黎岚', 1, '16330927402', 0, '440921199511125340', '中国北京市房山区岳琉路315号36号楼', '1995-06-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9213656191', '许震南', 0, '18717939778', 0, '440921199502104618', '中国北京市延庆区028县道823号华润大厦1室', '1995-06-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1444003293', '赵岚', 1, '19232815766', 0, '440921199501316652', '中国广州市越秀区中山二路55号8室', '1995-12-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5190936732', '汤宇宁', 0, '7555880099', 0, '440921199500030940', '中国深圳福田区深南大道547号8楼', '1995-10-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1247930699', '孔璐', 1, '18175499474', 0, '440921199501003425', '中国深圳罗湖区蔡屋围深南东路606号28室', '1995-12-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5090277667', '叶睿', 0, '286626983', 0, '440921199510314013', '中国成都市成华区二仙桥东三路861号28室', '1995-07-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9767114625', '罗嘉伦', 1, '2013560681', 0, '440921199521002005', '中国广州市天河区天河路800号5号楼', '1995-03-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6240657918', '顾杰宏', 1, '15683008279', 0, '440921199521101105', '中国中山紫马岭商圈中山五路387号42室', '1995-06-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4378336852', '孔嘉伦', 1, '18278596494', 0, '440921199501014017', '中国成都市锦江区红星路三段401号28室', '1995-05-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7220171651', '许嘉伦', 0, '280572397', 0, '440921199521101225', '中国成都市锦江区人民南路四段879号华润大厦13室', '1995-06-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8266464299', '陆子韬', 0, '16524719594', 0, '440921199502219107', '中国广州市白云区机场路棠苑街五巷511号9栋', '1995-12-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0347489190', '任安琪', 0, '2199069199', 0, '440921199520120942', '中国上海市徐汇区虹桥路728号17室', '1995-01-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5358185163', '龙子异', 0, '15811897659', 0, '440921199520307885', '中国成都市锦江区人民南路四段665号37号楼', '1995-10-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4605633937', '吴安琪', 1, '17430801171', 0, '440921199511202781', '中国深圳罗湖区清水河一路649号华润大厦14室', '1995-12-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8126172478', '尹秀英', 0, '17779054816', 0, '440921199502332005', '中国深圳龙岗区布吉镇西环路381号18室', '1995-05-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7032243530', '朱宇宁', 0, '17309137840', 0, '440921199500212715', '中国中山紫马岭商圈中山五路334号华润大厦7室', '1995-01-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3153729511', '何杰宏', 1, '16045584998', 0, '440921199522304491', '中国广州市越秀区中山二路230号43楼', '1995-12-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6052973200', '林睿', 0, '7698204796', 0, '440921199502113961', '中国东莞坑美十五巷121号50楼', '1995-06-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6354973614', '叶杰宏', 1, '101774004', 0, '440921199522209952', '中国北京市朝阳区三里屯路162号1楼', '1995-01-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4485168990', '李秀英', 0, '286150470', 0, '440921199520119397', '中国成都市成华区双庆路82号15楼', '1995-06-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4826661328', '程子异', 0, '7693264925', 0, '440921199522205703', '中国东莞珊瑚路930号44号楼', '1995-10-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7492758157', '汤詩涵', 0, '209984709', 0, '440921199512101975', '中国广州市白云区机场路棠苑街五巷29号13栋', '1995-02-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3770536170', '崔嘉伦', 1, '1012327017', 0, '440921199511129121', '中国北京市延庆区028县道768号26室', '1995-03-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2580670018', '邱致远', 1, '19688997435', 0, '440921199501131015', '中国深圳福田区景田东一街232号42号楼', '1995-01-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4091080759', '莫子韬', 0, '18377779909', 0, '440921199500335526', '中国成都市成华区双庆路850号华润大厦34室', '1995-07-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2908524241', '袁子韬', 0, '16850881610', 0, '440921199522312182', '中国广州市海珠区江南西路104号48室', '1995-12-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2346109039', '林子韬', 0, '102727748', 0, '440921199512031266', '中国北京市西城区西長安街715号26室', '1995-01-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9827887246', '沈璐', 0, '15947236068', 0, '440921199500107366', '中国成都市锦江区红星路三段529号30号楼', '1995-03-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9942426044', '杨秀英', 0, '15692405566', 0, '440921199520306411', '中国深圳福田区深南大道970号8楼', '1995-03-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9336503578', '陶子韬', 0, '209782624', 0, '440921199502225255', '中国广州市海珠区江南西路336号13楼', '1995-12-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3111002539', '吴安琪', 1, '7601588859', 0, '440921199511115097', '中国中山乐丰六路198号45室', '1995-06-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6674657973', '莫詩涵', 1, '17184979541', 0, '440921199522209316', '中国上海市黄浦区淮海中路549号40栋', '1995-07-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7780654731', '张子异', 1, '2872119388', 0, '440921199502113515', '中国成都市成华区双庆路869号18号楼', '1995-07-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8702174595', '尹璐', 1, '7559925975', 0, '440921199511006830', '中国深圳福田区深南大道982号40楼', '1995-10-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5004013513', '宋安琪', 0, '217514766', 0, '440921199510119891', '中国上海市黄浦区淮海中路103号12栋', '1995-01-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0019935016', '郝致远', 0, '75547677638', 0, '440921199502302892', '中国深圳福田区深南大道955号21室', '1995-02-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2109860464', '吕晓明', 1, '104332966', 0, '440921199511338017', '中国北京市房山区岳琉路951号20楼', '1995-09-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9492775412', '许晓明', 1, '1026153799', 0, '440921199512203237', '中国北京市东城区东单王府井东街216号1号楼', '1995-08-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7199980214', '龙岚', 0, '7604850538', 0, '440921199521219788', '中国中山天河区大信商圈大信南路410号10楼', '1995-08-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4047272062', '曹岚', 1, '1059733914', 0, '440921199500019217', '中国北京市朝阳区三里屯路841号25室', '1995-02-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4279504949', '段岚', 1, '75539917042', 0, '440921199500005652', '中国深圳龙岗区布吉镇西环路590号18栋', '1995-12-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5835719492', '赵子韬', 1, '18792268720', 0, '440921199520237890', '中国成都市成华区玉双路6号256号华润大厦20室', '1995-10-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9325982117', '廖致远', 0, '14015888795', 0, '440921199511024302', '中国北京市房山区岳琉路200号9楼', '1995-05-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2238461704', '吴秀英', 1, '17906354588', 0, '440921199511214595', '中国成都市锦江区红星路三段973号47号楼', '1995-06-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2747760502', '徐安琪', 0, '75591445637', 0, '440921199510110686', '中国深圳龙岗区布吉镇西环路305号25号楼', '1995-03-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2859205191', '陶杰宏', 1, '15652413353', 0, '440921199502011801', '中国深圳罗湖区蔡屋围深南东路300号华润大厦43室', '1995-05-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3160992163', '夏嘉伦', 0, '17469869813', 0, '440921199511322234', '中国东莞环区南街二巷398号25栋', '1995-08-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0114962334', '傅安琪', 0, '7609585450', 0, '440921199512008600', '中国中山天河区大信商圈大信南路335号16号楼', '1995-08-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5445789563', '蒋璐', 0, '2809713908', 0, '440921199510221422', '中国成都市成华区双庆路121号38号楼', '1995-07-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7742375935', '唐云熙', 1, '14995734309', 0, '440921199502209649', '中国深圳龙岗区学园一巷130号9栋', '1995-05-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9991878383', '周致远', 1, '13929785083', 0, '440921199500224719', '中国东莞珊瑚路179号华润大厦9室', '1995-07-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5925358907', '顾云熙', 1, '102839391', 0, '440921199500306745', '中国北京市朝阳区三里屯路111号46楼', '1995-09-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9230672127', '罗震南', 1, '15183144137', 0, '440921199501119452', '中国广州市越秀区中山二路444号39室', '1995-10-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4694412474', '马致远', 1, '7698353247', 0, '440921199521034134', '中国东莞东泰五街362号华润大厦27室', '1995-06-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5450170972', '任震南', 0, '18398650430', 0, '440921199521110494', '中国北京市房山区岳琉路832号36号楼', '1995-09-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2359010491', '周睿', 1, '7693651352', 0, '440921199501318088', '中国东莞东泰五街617号8室', '1995-07-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3924976501', '雷秀英', 0, '18073285834', 0, '440921199510119545', '中国深圳福田区景田东一街571号10室', '1995-12-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0049936941', '姜岚', 1, '1013798583', 0, '440921199502237341', '中国北京市海淀区清河中街68号254号18楼', '1995-04-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1456225234', '钱致远', 1, '19766290835', 0, '440921199501308373', '中国深圳罗湖区田贝一路282号华润大厦12室', '1995-08-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3064868068', '韦秀英', 1, '105528479', 0, '440921199522224912', '中国北京市西城区复兴门内大街448号18栋', '1995-02-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5325669283', '雷致远', 0, '211992008', 0, '440921199512023152', '中国上海市黄浦区淮海中路60号22栋', '1995-06-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9867368224', '陶岚', 1, '76067542644', 0, '440921199500321035', '中国中山紫马岭商圈中山五路375号24楼', '1995-12-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9549887820', '黎安琪', 0, '17693208084', 0, '440921199510111635', '中国北京市西城区西長安街435号华润大厦41室', '1995-02-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0415635745', '姚子韬', 0, '107819237', 0, '440921199521339506', '中国北京市海淀区清河中街68号55号华润大厦3室', '1995-03-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9919521225', '严震南', 0, '2125977588', 0, '440921199522107344', '中国上海市徐汇区虹桥路554号42号楼', '1995-06-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0097082646', '向岚', 0, '287033526', 0, '440921199510314548', '中国成都市成华区玉双路6号421号13楼', '1995-02-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4042264986', '梁子异', 0, '18700471868', 0, '440921199521139052', '中国成都市锦江区人民南路四段612号50室', '1995-12-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6667725270', '方詩涵', 0, '14192039266', 0, '440921199520315744', '中国上海市闵行区宾川路294号12楼', '1995-09-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4248589548', '张睿', 0, '2837876080', 0, '440921199510233060', '中国成都市成华区二仙桥东三路980号35楼', '1995-05-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5856146439', '常詩涵', 1, '18075576267', 0, '440921199520111543', '中国东莞坑美十五巷49号12栋', '1995-05-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2564808537', '孙睿', 0, '100995609', 0, '440921199501313668', '中国北京市海淀区清河中街68号982号22号楼', '1995-06-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8805779844', '赵璐', 0, '1059638194', 0, '440921199512025442', '中国北京市东城区东单王府井东街500号38栋', '1995-01-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7097090777', '郭致远', 0, '18507121052', 0, '440921199501327851', '中国成都市成华区双庆路461号6楼', '1995-03-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3659054792', '贺秀英', 1, '13402823711', 0, '440921199502207559', '中国深圳龙岗区布吉镇西环路361号14号楼', '1995-11-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1194186908', '蒋安琪', 0, '2176894335', 0, '440921199511234615', '中国上海市闵行区宾川路535号2号楼', '1995-07-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7681919136', '曾致远', 1, '13197551276', 0, '440921199510115070', '中国广州市天河区天河路386号5栋', '1995-08-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2560754328', '韩璐', 0, '7605282251', 0, '440921199512235669', '中国中山京华商圈华夏街479号39楼', '1995-11-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2768087522', '郝杰宏', 0, '17802325538', 0, '440921199520113853', '中国成都市成华区双庆路692号38室', '1995-10-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0439044976', '杨致远', 1, '19474308010', 0, '440921199502318693', '中国中山京华商圈华夏街71号20室', '1995-01-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5494608787', '袁璐', 0, '13326237858', 0, '440921199511203157', '中国广州市越秀区中山二路951号29号楼', '1995-04-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0640586395', '黎晓明', 0, '14623516111', 0, '440921199521026747', '中国北京市延庆区028县道505号49楼', '1995-04-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9050987144', '吴嘉伦', 0, '214083917', 0, '440921199512329273', '中国上海市徐汇区虹桥路772号37室', '1995-11-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5390497903', '崔安琪', 0, '15167747596', 0, '440921199511114439', '中国北京市东城区东单王府井东街810号27室', '1995-12-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3110385527', '黎宇宁', 0, '76904743832', 0, '440921199512108041', '中国东莞东泰五街926号29室', '1995-11-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0809336770', '武璐', 1, '17356778485', 0, '440921199511025096', '中国中山天河区大信商圈大信南路565号45号楼', '1995-04-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5134657861', '杜璐', 1, '16057889821', 0, '440921199521100112', '中国中山乐丰六路59号42号楼', '1995-08-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5408143084', '冯嘉伦', 1, '14492035311', 0, '440921199500104621', '中国北京市房山区岳琉路792号18号楼', '1995-04-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6149575377', '吴晓明', 1, '202091934', 0, '440921199512101759', '中国广州市海珠区江南西路750号14栋', '1995-11-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0324661497', '萧詩涵', 0, '287999002', 0, '440921199512302515', '中国成都市锦江区红星路三段871号38室', '1995-04-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8803205240', '秦安琪', 1, '1017603007', 0, '440921199512116562', '中国北京市东城区东单王府井东街135号13楼', '1995-02-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7178412013', '薛杰宏', 1, '19263213232', 0, '440921199500325663', '中国深圳龙岗区布吉镇西环路562号2号楼', '1995-09-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6697989021', '叶云熙', 0, '7608692600', 0, '440921199500028451', '中国中山紫马岭商圈中山五路946号华润大厦22室', '1995-10-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4981292952', '萧安琪', 1, '17601225687', 0, '440921199521215919', '中国成都市锦江区人民南路四段221号23楼', '1995-02-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4446385837', '毛嘉伦', 1, '19320896044', 0, '440921199512010235', '中国成都市成华区双庆路11号27栋', '1995-04-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7336638213', '林睿', 0, '19854963112', 0, '440921199510008634', '中国东莞环区南街二巷257号20号楼', '1995-02-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8946451920', '董詩涵', 1, '7694862256', 0, '440921199501029931', '中国东莞环区南街二巷10号华润大厦32室', '1995-05-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6321279176', '谢岚', 1, '214137280', 0, '440921199501323658', '中国上海市浦东新区健祥路358号12号楼', '1995-05-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6883336433', '孟璐', 1, '2061434533', 0, '440921199512330907', '中国广州市天河区天河路455号华润大厦44室', '1995-01-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8319412676', '邱秀英', 0, '1065616887', 0, '440921199512108061', '中国北京市东城区东单王府井东街182号34号楼', '1995-05-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4417486873', '崔震南', 0, '15849405087', 0, '440921199502003653', '中国上海市浦东新区橄榄路545号3楼', '1995-02-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1215620538', '郑杰宏', 0, '16041999603', 0, '440921199500301785', '中国广州市越秀区中山二路882号21室', '1995-04-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3267330507', '丁詩涵', 1, '2161773655', 0, '440921199522033112', '中国上海市闵行区宾川路195号44栋', '1995-02-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4849175917', '陈震南', 0, '15027162678', 0, '440921199521310618', '中国北京市房山区岳琉路70号40室', '1995-06-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3766153942', '何宇宁', 0, '15684378978', 0, '440921199501007949', '中国成都市成华区二仙桥东三路408号6室', '1995-11-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7126522076', '冯杰宏', 1, '1008139430', 0, '440921199512211743', '中国北京市东城区东单王府井东街350号48室', '1995-09-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9073742549', '丁宇宁', 1, '18060186044', 0, '440921199522131501', '中国广州市白云区小坪东路152号19楼', '1995-03-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3334020575', '孟致远', 0, '17595293918', 0, '440921199512228579', '中国北京市东城区东单王府井东街712号18栋', '1995-01-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6226177471', '汪宇宁', 1, '19446902806', 0, '440921199500017388', '中国北京市房山区岳琉路136号24楼', '1995-07-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7849674625', '邵詩涵', 0, '7606711523', 0, '440921199510125621', '中国中山紫马岭商圈中山五路88号12栋', '1995-12-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4423639766', '朱安琪', 1, '1036338458', 0, '440921199522125632', '中国北京市西城区复兴门内大街354号华润大厦44室', '1995-04-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4560915691', '蔡睿', 0, '19948041198', 0, '440921199521133320', '中国东莞环区南街二巷777号36室', '1995-01-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2038996022', '丁震南', 0, '17659631502', 0, '440921199501320533', '中国北京市房山区岳琉路804号6号楼', '1995-04-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8686175713', '林璐', 0, '211035434', 0, '440921199500213564', '中国上海市浦东新区健祥路180号华润大厦44室', '1995-10-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6558661353', '武杰宏', 0, '15788153897', 0, '440921199510102838', '中国深圳福田区景田东一街875号32楼', '1995-06-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5028213000', '贺云熙', 0, '7694238988', 0, '440921199512204404', '中国东莞珊瑚路176号33号楼', '1995-12-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5089305262', '余安琪', 0, '17498362343', 0, '440921199501120483', '中国东莞环区南街二巷121号46楼', '1995-03-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0044014880', '罗子异', 1, '19436469429', 0, '440921199520121180', '中国东莞坑美十五巷431号37楼', '1995-05-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4721541803', '贾璐', 0, '2838482603', 0, '440921199512316705', '中国成都市锦江区人民南路四段84号40栋', '1995-10-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6992862287', '谭璐', 0, '19458193633', 0, '440921199501215195', '中国广州市海珠区江南西路103号40号楼', '1995-03-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2483907401', '萧睿', 1, '109004900', 0, '440921199510214768', '中国北京市房山区岳琉路680号19楼', '1995-01-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6269522067', '崔秀英', 1, '7550061846', 0, '440921199522315860', '中国深圳罗湖区清水河一路230号42栋', '1995-06-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2737747732', '汪安琪', 0, '102894171', 0, '440921199501302040', '中国北京市房山区岳琉路813号37室', '1995-07-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1598334183', '周璐', 0, '7690999463', 0, '440921199511031250', '中国东莞环区南街二巷889号22栋', '1995-07-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7180693351', '顾杰宏', 0, '13883674012', 0, '440921199510309778', '中国成都市锦江区人民南路四段325号华润大厦27室', '1995-02-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8344449119', '张宇宁', 1, '7698415997', 0, '440921199511136720', '中国东莞珊瑚路928号37号楼', '1995-10-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8405681776', '姜睿', 1, '1015034147', 0, '440921199512313470', '中国北京市房山区岳琉路191号18栋', '1995-12-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4339928263', '梁岚', 0, '2188325656', 0, '440921199521239741', '中国上海市浦东新区健祥路915号29室', '1995-11-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5287057844', '龚詩涵', 1, '19936168235', 0, '440921199511330500', '中国广州市海珠区江南西路644号42楼', '1995-10-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8135388469', '萧岚', 1, '76019009897', 0, '440921199500337656', '中国中山乐丰六路44号43楼', '1995-05-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4810740915', '陶震南', 1, '18464598464', 0, '440921199511334963', '中国上海市浦东新区橄榄路444号44号楼', '1995-03-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6807405987', '石杰宏', 0, '19874462227', 0, '440921199500338179', '中国东莞坑美十五巷289号华润大厦50室', '1995-06-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8348187320', '姚睿', 1, '7550988206', 0, '440921199522300246', '中国深圳罗湖区田贝一路388号3号楼', '1995-07-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5540353720', '余子韬', 1, '16229803799', 0, '440921199502131064', '中国中山天河区大信商圈大信南路144号43号楼', '1995-07-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5152300869', '何安琪', 0, '15540774689', 0, '440921199500037780', '中国广州市白云区小坪东路840号10栋', '1995-09-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7738593978', '郝秀英', 0, '13003699972', 0, '440921199512115494', '中国中山天河区大信商圈大信南路217号46号楼', '1995-04-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0357487013', '尹震南', 1, '202835964', 0, '440921199521000178', '中国广州市白云区机场路棠苑街五巷225号华润大厦9室', '1995-03-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5555244732', '苏嘉伦', 1, '2089395684', 0, '440921199510232233', '中国广州市越秀区中山二路58号8楼', '1995-03-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8255717173', '丁子异', 0, '7601570856', 0, '440921199511111618', '中国中山紫马岭商圈中山五路581号6号楼', '1995-04-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2613116383', '郝晓明', 0, '13862491654', 0, '440921199501120806', '中国北京市房山区岳琉路403号42室', '1995-08-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7654674829', '贾致远', 0, '76077520987', 0, '440921199501224913', '中国中山天河区大信商圈大信南路172号华润大厦23室', '1995-10-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1653683664', '莫秀英', 1, '1034224699', 0, '440921199501223067', '中国北京市房山区岳琉路821号14室', '1995-09-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6970982877', '朱秀英', 1, '1095756301', 0, '440921199512113465', '中国北京市西城区复兴门内大街4号华润大厦18室', '1995-03-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1298722648', '江秀英', 1, '19853089596', 0, '440921199511301507', '中国中山乐丰六路833号34栋', '1995-10-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7200128506', '董震南', 0, '16378228526', 0, '440921199501331100', '中国东莞珊瑚路984号44楼', '1995-05-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9972817417', '宋嘉伦', 1, '16535629114', 0, '440921199502022480', '中国北京市朝阳区三里屯路922号50栋', '1995-08-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4297615388', '熊秀英', 0, '16079350161', 0, '440921199522018276', '中国北京市朝阳区三里屯路60号华润大厦34室', '1995-07-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1633990353', '陆璐', 0, '19764303403', 0, '440921199500129315', '中国深圳罗湖区清水河一路185号华润大厦36室', '1995-11-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2602649127', '贾嘉伦', 0, '75588491742', 0, '440921199511218328', '中国深圳罗湖区清水河一路454号22楼', '1995-01-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1409696321', '韩云熙', 1, '109432097', 0, '440921199510326334', '中国北京市西城区西長安街691号华润大厦25室', '1995-07-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4904575204', '陈安琪', 0, '18474164905', 0, '440921199500131569', '中国上海市闵行区宾川路418号华润大厦6室', '1995-10-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7364097039', '胡安琪', 0, '75512262711', 0, '440921199521225768', '中国深圳罗湖区田贝一路919号28栋', '1995-02-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3956388450', '姜嘉伦', 1, '7604266384', 0, '440921199500031239', '中国中山京华商圈华夏街423号20楼', '1995-09-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7065007182', '薛致远', 0, '210465433', 0, '440921199510101417', '中国上海市黄浦区淮海中路367号32栋', '1995-07-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5900018647', '莫云熙', 0, '13958297182', 0, '440921199521307237', '中国上海市徐汇区虹桥路240号46栋', '1995-01-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5906270574', '贾子异', 1, '76932858967', 0, '440921199510111344', '中国东莞东泰五街959号42号楼', '1995-09-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9524132267', '邵嘉伦', 1, '102149906', 0, '440921199521212753', '中国北京市西城区西長安街455号2栋', '1995-10-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4165613988', '吕杰宏', 1, '2192364351', 0, '440921199501115280', '中国上海市黄浦区淮海中路35号14楼', '1995-11-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2154697728', '龙致远', 0, '2059997285', 0, '440921199502233258', '中国广州市海珠区江南西路956号华润大厦19室', '1995-06-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7104592339', '石詩涵', 0, '18330969703', 0, '440921199511006645', '中国深圳罗湖区清水河一路641号33栋', '1995-11-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8716385529', '丁璐', 1, '7695790505', 0, '440921199501120236', '中国东莞环区南街二巷649号29室', '1995-03-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8280491101', '陆宇宁', 1, '7558307175', 0, '440921199502023288', '中国深圳罗湖区蔡屋围深南东路953号华润大厦7室', '1995-11-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7995790740', '郭子异', 0, '2003316143', 0, '440921199512319343', '中国广州市白云区小坪东路397号26楼', '1995-06-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4376173405', '吕云熙', 0, '19966031396', 0, '440921199520237566', '中国东莞环区南街二巷247号22栋', '1995-10-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6458419716', '郭詩涵', 1, '16720419639', 0, '440921199500025238', '中国北京市朝阳区三里屯路632号26号楼', '1995-07-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4565770213', '胡晓明', 1, '16003424385', 0, '440921199522304853', '中国中山天河区大信商圈大信南路839号28楼', '1995-06-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8107227983', '唐安琪', 0, '13674058117', 0, '440921199512231994', '中国北京市房山区岳琉路111号1栋', '1995-10-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4320708970', '贾岚', 1, '16634068061', 0, '440921199511229679', '中国深圳罗湖区田贝一路997号21号楼', '1995-02-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2688721767', '邱致远', 0, '18690191397', 0, '440921199500221906', '中国中山紫马岭商圈中山五路209号47栋', '1995-06-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2219849863', '傅子韬', 1, '7556215988', 0, '440921199510125825', '中国深圳罗湖区田贝一路782号1号楼', '1995-02-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7640496884', '朱震南', 1, '17728345841', 0, '440921199502338071', '中国北京市東城区東直門內大街862号46号楼', '1995-08-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8004703390', '秦震南', 1, '16695142845', 0, '440921199500034255', '中国东莞坑美十五巷394号10室', '1995-05-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0889046442', '段岚', 0, '14416229775', 0, '440921199512033568', '中国北京市西城区复兴门内大街502号50号楼', '1995-02-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9324196419', '丁秀英', 0, '283331279', 0, '440921199502121282', '中国成都市成华区玉双路6号26号1室', '1995-08-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1146357766', '谢岚', 0, '7550480149', 0, '440921199500033439', '中国深圳福田区深南大道718号43室', '1995-04-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3889172918', '罗詩涵', 1, '13450689763', 0, '440921199520317691', '中国上海市浦东新区橄榄路558号39楼', '1995-06-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5138980144', '贺嘉伦', 0, '211166445', 0, '440921199521030097', '中国上海市闵行区宾川路548号华润大厦30室', '1995-09-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2846534600', '宋秀英', 0, '7605657127', 0, '440921199521008715', '中国中山天河区大信商圈大信南路330号43楼', '1995-02-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4956934389', '熊睿', 1, '19055741252', 0, '440921199521110086', '中国成都市锦江区红星路三段892号46楼', '1995-03-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5776507371', '崔杰宏', 1, '104621569', 0, '440921199511324923', '中国北京市海淀区清河中街68号223号华润大厦41室', '1995-02-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5354175281', '丁宇宁', 1, '284594107', 0, '440921199520117322', '中国成都市锦江区人民南路四段903号23楼', '1995-02-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7378905773', '严宇宁', 1, '16217274369', 0, '440921199502222369', '中国深圳罗湖区田贝一路812号41号楼', '1995-11-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8802501695', '武震南', 1, '13175156540', 0, '440921199502030731', '中国东莞坑美十五巷504号3室', '1995-07-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2323190521', '韩岚', 0, '13842547294', 0, '440921199522036063', '中国北京市西城区西長安街370号17楼', '1995-07-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1318046852', '龚詩涵', 1, '15381691617', 0, '440921199510107034', '中国深圳福田区景田东一街611号37栋', '1995-12-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6143150806', '姜震南', 1, '2093778443', 0, '440921199501302496', '中国广州市白云区机场路棠苑街五巷478号46楼', '1995-02-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5599096096', '陶震南', 1, '14433438688', 0, '440921199510322849', '中国广州市白云区小坪东路850号37室', '1995-08-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5921169804', '林睿', 1, '14316571935', 0, '440921199501200721', '中国上海市徐汇区虹桥路632号49室', '1995-09-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1951443754', '梁杰宏', 0, '1064282445', 0, '440921199502000610', '中国北京市西城区西長安街709号9号楼', '1995-03-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2095820079', '吴璐', 1, '1014840207', 0, '440921199512119698', '中国北京市房山区岳琉路44号华润大厦46室', '1995-02-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9011365855', '韩子异', 1, '14253035468', 0, '440921199512229425', '中国深圳罗湖区田贝一路297号3楼', '1995-04-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7738129567', '萧安琪', 0, '19817363753', 0, '440921199510332203', '中国深圳福田区景田东一街564号18号楼', '1995-12-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2692220468', '汤璐', 1, '13012721870', 0, '440921199521200802', '中国深圳罗湖区清水河一路768号45栋', '1995-05-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4793587885', '任致远', 1, '1053956199', 0, '440921199522102159', '中国北京市房山区岳琉路456号28号楼', '1995-05-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8529322882', '严致远', 1, '2887364297', 0, '440921199521214554', '中国成都市锦江区红星路三段261号42号楼', '1995-04-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5816426857', '韩子异', 0, '18961657223', 0, '440921199520207756', '中国上海市徐汇区虹桥路678号华润大厦14室', '1995-09-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9410726408', '段晓明', 1, '15394157874', 0, '440921199500016493', '中国北京市房山区岳琉路819号26室', '1995-09-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1820878638', '胡安琪', 0, '18260786106', 0, '440921199502302779', '中国成都市锦江区红星路三段16号11栋', '1995-03-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4748962088', '姚子异', 0, '13799664770', 0, '440921199510305406', '中国深圳龙岗区布吉镇西环路979号23楼', '1995-10-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7052388687', '孟震南', 1, '219396338', 0, '440921199522220561', '中国上海市徐汇区虹桥路80号13号楼', '1995-11-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1100608362', '段云熙', 0, '2848939241', 0, '440921199500324256', '中国成都市成华区二仙桥东三路403号39室', '1995-05-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7026815803', '黄子异', 1, '16168791862', 0, '440921199521134659', '中国中山紫马岭商圈中山五路975号26室', '1995-02-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8138240318', '顾杰宏', 0, '209310248', 0, '440921199512125097', '中国广州市白云区机场路棠苑街五巷241号46栋', '1995-03-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0844981498', '黄璐', 0, '13213700815', 0, '440921199510136119', '中国深圳福田区景田东一街86号华润大厦8室', '1995-04-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7465309822', '唐子韬', 1, '76983871835', 0, '440921199511118438', '中国东莞坑美十五巷111号10栋', '1995-01-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7506647058', '李晓明', 0, '17980592663', 0, '440921199520333959', '中国中山京华商圈华夏街868号26栋', '1995-10-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5582759401', '刘震南', 1, '15862403599', 0, '440921199511132630', '中国成都市成华区二仙桥东三路215号21号楼', '1995-01-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1045946924', '韦睿', 0, '7699528379', 0, '440921199511334956', '中国东莞环区南街二巷986号21号楼', '1995-08-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0167154596', '许子异', 0, '13352683786', 0, '440921199502130778', '中国深圳罗湖区清水河一路811号21楼', '1995-02-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9721625653', '梁子韬', 0, '15212432411', 0, '440921199521016672', '中国中山天河区大信商圈大信南路334号40号楼', '1995-01-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9151234946', '薛杰宏', 0, '19401754043', 0, '440921199520008645', '中国深圳龙岗区学园一巷563号26号楼', '1995-12-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0955152628', '孙岚', 1, '16424684303', 0, '440921199500027429', '中国广州市白云区机场路棠苑街五巷65号18号楼', '1995-07-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5705542434', '郑云熙', 0, '18162817369', 0, '440921199510234667', '中国上海市浦东新区橄榄路213号5室', '1995-04-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0737313379', '程詩涵', 0, '76090769197', 0, '440921199521337963', '中国中山天河区大信商圈大信南路121号20室', '1995-03-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7613189448', '谭詩涵', 1, '206501986', 0, '440921199511110039', '中国广州市海珠区江南西路834号1楼', '1995-04-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8460286510', '薛子韬', 0, '13089857283', 0, '440921199510202859', '中国北京市西城区西長安街772号8栋', '1995-04-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5143856143', '董岚', 0, '2860412773', 0, '440921199500128226', '中国成都市锦江区人民南路四段893号华润大厦47室', '1995-05-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8107843261', '傅震南', 0, '16295875521', 0, '440921199521121728', '中国深圳罗湖区清水河一路777号华润大厦19室', '1995-02-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2077393211', '武晓明', 0, '19339319027', 0, '440921199502120719', '中国深圳福田区深南大道92号36楼', '1995-08-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3480032845', '邵子韬', 1, '212012008', 0, '440921199520225531', '中国上海市黄浦区淮海中路866号5栋', '1995-02-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3318299316', '武秀英', 1, '14406900268', 0, '440921199520237259', '中国北京市海淀区清河中街68号456号12室', '1995-06-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4894094226', '何晓明', 0, '7553764775', 0, '440921199521034709', '中国深圳罗湖区清水河一路976号华润大厦13室', '1995-07-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3619652416', '罗秀英', 0, '17311068137', 0, '440921199510235213', '中国北京市房山区岳琉路92号华润大厦10室', '1995-11-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5113853250', '邓晓明', 0, '13707877369', 0, '440921199502304638', '中国北京市東城区東直門內大街780号25栋', '1995-04-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7310918062', '常晓明', 1, '13620256900', 0, '440921199512109275', '中国广州市海珠区江南西路14号25楼', '1995-02-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5074145800', '毛晓明', 0, '7552521210', 0, '440921199510017521', '中国深圳罗湖区田贝一路782号13楼', '1995-05-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2492415622', '方秀英', 1, '1043594874', 0, '440921199502106695', '中国北京市東城区東直門內大街776号华润大厦1室', '1995-12-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4258519803', '田致远', 0, '14141448476', 0, '440921199511314643', '中国广州市天河区天河路516号50号楼', '1995-04-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1967106392', '许秀英', 0, '2095099169', 0, '440921199501303449', '中国广州市海珠区江南西路278号10室', '1995-05-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2306430605', '毛晓明', 0, '2180125522', 0, '440921199500313311', '中国上海市徐汇区虹桥路208号45栋', '1995-11-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6115881238', '范安琪', 1, '17908950123', 0, '440921199510126540', '中国东莞坑美十五巷683号华润大厦12室', '1995-04-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1605461927', '丁杰宏', 0, '18018936027', 0, '440921199512115754', '中国深圳龙岗区布吉镇西环路190号11室', '1995-06-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7551638616', '廖嘉伦', 0, '1095423967', 0, '440921199520203310', '中国北京市朝阳区三里屯路113号华润大厦26室', '1995-09-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3531919732', '潘璐', 1, '217990567', 0, '440921199502207103', '中国上海市浦东新区健祥路167号43栋', '1995-04-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8451704699', '段秀英', 0, '76995030633', 0, '440921199520123591', '中国东莞东泰五街124号16号楼', '1995-01-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0145438468', '蒋子韬', 1, '18001869925', 0, '440921199521110990', '中国北京市朝阳区三里屯路26号6楼', '1995-08-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1626785606', '谭安琪', 0, '14241237211', 0, '440921199522028523', '中国东莞坑美十五巷235号华润大厦24室', '1995-01-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9130410822', '傅安琪', 1, '14210422189', 0, '440921199500011269', '中国东莞坑美十五巷505号11栋', '1995-11-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9272847760', '莫詩涵', 0, '7559359437', 0, '440921199500315986', '中国深圳罗湖区清水河一路882号40室', '1995-03-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4158939756', '吕云熙', 0, '19379328021', 0, '440921199511108131', '中国北京市东城区东单王府井东街860号1号楼', '1995-03-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9235895644', '吕致远', 1, '2184200842', 0, '440921199501004194', '中国上海市徐汇区虹桥路472号3楼', '1995-08-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9333525102', '曹致远', 0, '14920496222', 0, '440921199501011736', '中国广州市越秀区中山二路676号47楼', '1995-12-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1968474786', '郭岚', 0, '19594552992', 0, '440921199510303181', '中国东莞坑美十五巷227号28楼', '1995-02-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0126763433', '邹宇宁', 0, '19841108278', 0, '440921199500316474', '中国成都市锦江区红星路三段637号46栋', '1995-01-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0293188363', '侯震南', 0, '19791269073', 0, '440921199500113018', '中国上海市浦东新区橄榄路726号7楼', '1995-02-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6718457013', '莫安琪', 0, '75579137210', 0, '440921199521122808', '中国深圳罗湖区清水河一路3号20室', '1995-06-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2504079279', '陶云熙', 0, '16722931847', 0, '440921199512113857', '中国北京市朝阳区三里屯路571号40栋', '1995-02-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0518976929', '林云熙', 0, '19422682683', 0, '440921199522207968', '中国深圳龙岗区布吉镇西环路900号39室', '1995-10-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7090153473', '史杰宏', 1, '19507909016', 0, '440921199521311230', '中国上海市浦东新区橄榄路160号50栋', '1995-02-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1909617977', '郭嘉伦', 0, '18946561269', 0, '440921199520210881', '中国北京市延庆区028县道719号华润大厦10室', '1995-01-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5507446123', '戴安琪', 1, '280234811', 0, '440921199502228190', '中国成都市成华区二仙桥东三路33号49栋', '1995-09-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8241853688', '黄岚', 1, '2143874625', 0, '440921199522137168', '中国上海市浦东新区健祥路39号1栋', '1995-09-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0241355643', '顾安琪', 1, '285471020', 0, '440921199510229123', '中国成都市成华区二仙桥东三路365号华润大厦28室', '1995-10-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3084490278', '孙云熙', 1, '75597255591', 0, '440921199500019132', '中国深圳罗湖区田贝一路880号32栋', '1995-01-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2569850529', '崔云熙', 0, '2042431644', 0, '440921199502237871', '中国广州市越秀区中山二路868号17室', '1995-03-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6176727237', '郑嘉伦', 1, '17991320294', 0, '440921199510039059', '中国成都市成华区玉双路6号229号3楼', '1995-04-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3359610839', '马璐', 1, '104418922', 0, '440921199502321722', '中国北京市东城区东单王府井东街540号34楼', '1995-07-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6564292567', '胡晓明', 0, '2008909116', 0, '440921199520229184', '中国广州市海珠区江南西路169号27室', '1995-07-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3418007530', '向安琪', 1, '15213333317', 0, '440921199501215808', '中国北京市西城区西長安街755号34号楼', '1995-12-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6505285600', '胡子韬', 1, '1077677721', 0, '440921199510124662', '中国北京市延庆区028县道143号12栋', '1995-10-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9868004010', '段秀英', 0, '16260194669', 0, '440921199510023989', '中国北京市东城区东单王府井东街610号50号楼', '1995-01-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0542054160', '宋宇宁', 1, '1061155389', 0, '440921199511208730', '中国北京市房山区岳琉路844号42楼', '1995-05-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0602643729', '叶睿', 0, '13810171580', 0, '440921199500136925', '中国深圳罗湖区田贝一路999号30栋', '1995-09-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0955370668', '蔡秀英', 0, '1008711819', 0, '440921199501136868', '中国北京市東城区東直門內大街228号18室', '1995-12-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6388264440', '毛嘉伦', 0, '14263963779', 0, '440921199520209792', '中国成都市锦江区红星路三段599号华润大厦21室', '1995-05-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2148636631', '谢云熙', 1, '19043085248', 0, '440921199522131040', '中国北京市东城区东单王府井东街678号36楼', '1995-06-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8503514125', '王云熙', 1, '14674066455', 0, '440921199510308769', '中国成都市成华区双庆路862号36栋', '1995-01-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9813592997', '孙詩涵', 1, '14155093697', 0, '440921199500009539', '中国深圳罗湖区蔡屋围深南东路714号华润大厦40室', '1995-09-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0872451950', '钟宇宁', 0, '19064519241', 0, '440921199520305787', '中国北京市東城区東直門內大街989号2楼', '1995-01-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4638938231', '谭璐', 1, '16337841652', 0, '440921199522027840', '中国成都市锦江区人民南路四段871号11栋', '1995-05-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5136124649', '戴安琪', 1, '75596146532', 0, '440921199522127087', '中国深圳福田区深南大道254号19号楼', '1995-12-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5332840076', '谭子韬', 0, '16001838299', 0, '440921199500006929', '中国中山天河区大信商圈大信南路15号43栋', '1995-01-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1416997421', '段安琪', 1, '212861462', 0, '440921199502015237', '中国上海市浦东新区健祥路41号33号楼', '1995-10-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2469975181', '赵睿', 1, '14564537114', 0, '440921199522219249', '中国上海市徐汇区虹桥路436号华润大厦36室', '1995-09-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9691491638', '沈秀英', 1, '18431580699', 0, '440921199510138839', '中国成都市锦江区红星路三段30号华润大厦40室', '1995-06-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9640274009', '顾震南', 0, '76926417905', 0, '440921199501228266', '中国东莞东泰五街451号华润大厦22室', '1995-08-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8968550789', '武璐', 0, '287591472', 0, '440921199502331494', '中国成都市成华区二仙桥东三路452号华润大厦47室', '1995-12-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7485102734', '黎宇宁', 0, '19252242296', 0, '440921199510234475', '中国成都市锦江区红星路三段859号26楼', '1995-01-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5924489430', '李嘉伦', 1, '16394644738', 0, '440921199502216544', '中国广州市越秀区中山二路149号20栋', '1995-02-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8940548144', '孔晓明', 1, '202685391', 0, '440921199510235208', '中国广州市越秀区中山二路673号23号楼', '1995-12-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0517235494', '吴致远', 0, '107258236', 0, '440921199512034761', '中国北京市朝阳区三里屯路475号38号楼', '1995-11-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5944348317', '段睿', 1, '282320040', 0, '440921199501209120', '中国成都市锦江区人民南路四段753号41栋', '1995-09-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4476406809', '顾睿', 1, '2864981231', 0, '440921199521310012', '中国成都市成华区双庆路803号32楼', '1995-08-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0528262513', '郝致远', 1, '19430603108', 0, '440921199512026057', '中国成都市锦江区人民南路四段315号18号楼', '1995-09-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2786105782', '田岚', 0, '287243710', 0, '440921199512033693', '中国成都市成华区玉双路6号737号28栋', '1995-08-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8033412457', '邹震南', 1, '18258463784', 0, '440921199510029875', '中国广州市天河区天河路471号华润大厦39室', '1995-10-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3011616434', '谭震南', 1, '2869836959', 0, '440921199501222566', '中国成都市成华区二仙桥东三路289号33号楼', '1995-06-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1182825170', '赵杰宏', 1, '75539974796', 0, '440921199511012752', '中国深圳罗湖区田贝一路715号华润大厦47室', '1995-02-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4773269758', '方安琪', 0, '214103822', 0, '440921199520312501', '中国上海市浦东新区橄榄路513号2栋', '1995-10-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0918560505', '汪秀英', 0, '206673481', 0, '440921199502139271', '中国广州市天河区天河路776号16栋', '1995-04-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8297035122', '周杰宏', 1, '14722855267', 0, '440921199502328706', '中国北京市西城区复兴门内大街406号37室', '1995-11-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3576922966', '武岚', 0, '1021842874', 0, '440921199521112359', '中国北京市延庆区028县道951号6号楼', '1995-07-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2359277879', '丁杰宏', 0, '7554797153', 0, '440921199511323508', '中国深圳罗湖区蔡屋围深南东路436号43室', '1995-03-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2291897756', '唐岚', 1, '16558801412', 0, '440921199502300951', '中国上海市浦东新区健祥路607号24栋', '1995-04-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6352979402', '段詩涵', 1, '2170990126', 0, '440921199522106418', '中国上海市徐汇区虹桥路155号27号楼', '1995-09-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1063132120', '彭睿', 0, '19343447149', 0, '440921199501102668', '中国深圳罗湖区蔡屋围深南东路180号44室', '1995-03-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8793914955', '胡震南', 0, '14042599153', 0, '440921199520038517', '中国北京市海淀区清河中街68号698号华润大厦22室', '1995-02-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3498780071', '严睿', 1, '16563278443', 0, '440921199511225174', '中国深圳龙岗区学园一巷728号4栋', '1995-12-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4114076179', '高秀英', 1, '7691807629', 0, '440921199522132053', '中国东莞坑美十五巷897号6栋', '1995-08-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9665500010', '杜璐', 0, '106054411', 0, '440921199521331144', '中国北京市延庆区028县道252号46号楼', '1995-05-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0438306624', '金云熙', 0, '18994521306', 0, '440921199510038356', '中国上海市浦东新区橄榄路379号27室', '1995-01-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2427796712', '蒋杰宏', 1, '18978035232', 0, '440921199500027751', '中国广州市白云区机场路棠苑街五巷130号华润大厦47室', '1995-02-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8055304430', '梁睿', 1, '16820397277', 0, '440921199522317456', '中国深圳罗湖区田贝一路407号40栋', '1995-07-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8679981803', '徐詩涵', 1, '13034564783', 0, '440921199520324546', '中国东莞坑美十五巷215号11栋', '1995-09-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6126538598', '杨嘉伦', 1, '289929419', 0, '440921199522107251', '中国成都市成华区双庆路948号22楼', '1995-05-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5373656985', '汪致远', 1, '1007033639', 0, '440921199510005664', '中国北京市西城区复兴门内大街656号40栋', '1995-02-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8990113285', '龙子韬', 1, '7556421469', 0, '440921199520038346', '中国深圳罗湖区清水河一路765号25号楼', '1995-07-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6848600534', '彭震南', 1, '1076051256', 0, '440921199522017961', '中国北京市西城区西長安街193号华润大厦13室', '1995-02-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3178203592', '向詩涵', 1, '1068200065', 0, '440921199511134610', '中国北京市房山区岳琉路81号华润大厦47室', '1995-10-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1847944326', '郝詩涵', 1, '75592930102', 0, '440921199522328258', '中国深圳罗湖区蔡屋围深南东路584号9楼', '1995-11-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5917136464', '戴宇宁', 0, '7551343476', 0, '440921199510203675', '中国深圳龙岗区布吉镇西环路948号20栋', '1995-02-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8359688195', '孟璐', 0, '103458684', 0, '440921199501334544', '中国北京市朝阳区三里屯路140号34楼', '1995-04-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5958220897', '严致远', 0, '76016304559', 0, '440921199511125404', '中国中山乐丰六路683号34栋', '1995-12-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7584990725', '毛云熙', 1, '285125411', 0, '440921199521131151', '中国成都市锦江区人民南路四段469号5栋', '1995-03-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6441337245', '顾璐', 1, '17266503763', 0, '440921199500220330', '中国成都市锦江区人民南路四段593号47号楼', '1995-01-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5071174117', '常詩涵', 0, '218455171', 0, '440921199512119288', '中国上海市黄浦区淮海中路368号华润大厦35室', '1995-01-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2254883194', '蔡晓明', 1, '1014080741', 0, '440921199501123480', '中国北京市西城区西長安街387号49栋', '1995-12-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3327873080', '莫璐', 0, '14449742507', 0, '440921199512114943', '中国成都市成华区二仙桥东三路963号华润大厦17室', '1995-04-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6782160535', '韩安琪', 1, '18730995959', 0, '440921199502003604', '中国广州市白云区机场路棠苑街五巷887号41栋', '1995-06-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6400462526', '武致远', 1, '1070778358', 0, '440921199502117438', '中国北京市東城区東直門內大街918号6号楼', '1995-11-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1828933787', '夏璐', 1, '76033088830', 0, '440921199522004014', '中国中山乐丰六路895号华润大厦22室', '1995-11-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0100709783', '阎致远', 0, '13106789989', 0, '440921199521010022', '中国东莞坑美十五巷615号9楼', '1995-10-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1747337550', '顾詩涵', 1, '1020835932', 0, '440921199511233465', '中国北京市海淀区清河中街68号927号华润大厦17室', '1995-08-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5667396205', '钟秀英', 1, '217428333', 0, '440921199500039933', '中国上海市徐汇区虹桥路395号华润大厦47室', '1995-05-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1968586420', '顾致远', 1, '16184079406', 0, '440921199500331249', '中国北京市东城区东单王府井东街17号34楼', '1995-09-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4327390418', '曾云熙', 1, '19308075742', 0, '440921199501217679', '中国深圳龙岗区学园一巷228号17栋', '1995-09-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2035757907', '叶震南', 0, '18784515832', 0, '440921199500034438', '中国深圳罗湖区田贝一路48号43号楼', '1995-12-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6678063526', '董岚', 1, '13306560339', 0, '440921199510335333', '中国中山京华商圈华夏街495号36楼', '1995-09-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7103560180', '钟杰宏', 0, '17457951617', 0, '440921199512121450', '中国广州市白云区机场路棠苑街五巷262号40室', '1995-05-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7665618594', '韦致远', 1, '16951626943', 0, '440921199511231529', '中国成都市锦江区红星路三段177号6室', '1995-03-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7078854467', '段致远', 1, '19960914514', 0, '440921199512201617', '中国上海市浦东新区健祥路169号16号楼', '1995-01-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2933634798', '龚詩涵', 1, '76957636858', 0, '440921199522333357', '中国东莞环区南街二巷202号1楼', '1995-04-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2799350093', '林詩涵', 1, '75514878600', 0, '440921199502100485', '中国深圳龙岗区学园一巷883号33号楼', '1995-08-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5996438125', '董嘉伦', 1, '75591766730', 0, '440921199520237805', '中国深圳龙岗区布吉镇西环路886号10楼', '1995-09-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0286381056', '吕云熙', 1, '16250955932', 0, '440921199521024366', '中国成都市成华区双庆路380号12室', '1995-07-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4651090534', '胡秀英', 1, '7693073930', 0, '440921199502132462', '中国东莞坑美十五巷166号18栋', '1995-12-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6224776795', '吴安琪', 0, '7607664180', 0, '440921199520000942', '中国中山紫马岭商圈中山五路866号4室', '1995-12-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3271841202', '熊晓明', 1, '7697108504', 0, '440921199501330126', '中国东莞珊瑚路211号24楼', '1995-09-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9946863596', '严秀英', 1, '18203121679', 0, '440921199502039572', '中国成都市成华区二仙桥东三路427号45楼', '1995-01-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6525651933', '熊子韬', 0, '2033756400', 0, '440921199502035033', '中国广州市白云区机场路棠苑街五巷787号23栋', '1995-06-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9323997176', '史杰宏', 0, '76950381888', 0, '440921199521117260', '中国东莞环区南街二巷560号15室', '1995-01-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9110890762', '贺子异', 0, '288340787', 0, '440921199502014436', '中国成都市成华区双庆路404号27栋', '1995-03-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2825001428', '武杰宏', 0, '17984384100', 0, '440921199512235924', '中国深圳罗湖区田贝一路543号47楼', '1995-10-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5436100982', '崔震南', 0, '15390674780', 0, '440921199511134804', '中国北京市西城区西長安街521号34号楼', '1995-09-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6281951819', '段秀英', 1, '213346507', 0, '440921199500336550', '中国上海市浦东新区健祥路193号华润大厦20室', '1995-02-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9747972424', '龚嘉伦', 0, '18000033328', 0, '440921199500108363', '中国北京市西城区复兴门内大街539号21室', '1995-12-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9414629569', '贺嘉伦', 0, '102359469', 0, '440921199521303132', '中国北京市房山区岳琉路365号华润大厦19室', '1995-01-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2578609407', '黎安琪', 1, '14007868013', 0, '440921199511010301', '中国深圳福田区景田东一街75号4楼', '1995-07-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0754213339', '马子异', 1, '104708363', 0, '440921199500128572', '中国北京市海淀区清河中街68号596号15楼', '1995-06-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4623008040', '孟子韬', 1, '2146066218', 0, '440921199521330453', '中国上海市黄浦区淮海中路600号华润大厦42室', '1995-03-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7137546863', '徐子韬', 1, '17615068086', 0, '440921199511228696', '中国东莞东泰五街902号华润大厦32室', '1995-06-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7222890258', '钟宇宁', 0, '15347251682', 0, '440921199520135174', '中国深圳福田区深南大道490号1楼', '1995-09-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4075805395', '陈云熙', 0, '105527372', 0, '440921199512220266', '中国北京市朝阳区三里屯路401号34栋', '1995-12-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0990898475', '邵杰宏', 0, '75598235087', 0, '440921199502332279', '中国深圳罗湖区田贝一路137号华润大厦3室', '1995-08-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9721728448', '蔡安琪', 0, '17402964884', 0, '440921199500139611', '中国深圳龙岗区学园一巷762号27号楼', '1995-12-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4217558137', '田震南', 1, '76054046118', 0, '440921199501128391', '中国中山天河区大信商圈大信南路959号32楼', '1995-11-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4530720351', '阎子异', 0, '17481498547', 0, '440921199522306432', '中国广州市海珠区江南西路100号50号楼', '1995-01-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6732421051', '林震南', 0, '288154982', 0, '440921199522228138', '中国成都市成华区双庆路824号华润大厦1室', '1995-08-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5328204178', '韦震南', 0, '14902289851', 0, '440921199520012231', '中国上海市浦东新区橄榄路267号41室', '1995-04-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5836111413', '徐杰宏', 1, '1084937935', 0, '440921199511134647', '中国北京市东城区东单王府井东街954号47栋', '1995-12-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7863664024', '金嘉伦', 1, '14081783880', 0, '440921199510106185', '中国北京市朝阳区三里屯路672号30号楼', '1995-06-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6214007885', '常岚', 1, '17400115146', 0, '440921199500217237', '中国北京市东城区东单王府井东街555号49栋', '1995-04-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0253199645', '梁震南', 0, '19279142727', 0, '440921199500237390', '中国北京市延庆区028县道328号34栋', '1995-11-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3164371172', '赵詩涵', 1, '2099287358', 0, '440921199502318120', '中国广州市天河区天河路395号7栋', '1995-06-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4364299376', '郭璐', 0, '75557785607', 0, '440921199522039669', '中国深圳福田区景田东一街992号23室', '1995-11-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1986683133', '金嘉伦', 1, '15431708699', 0, '440921199512127784', '中国深圳龙岗区学园一巷895号49室', '1995-02-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3415250840', '丁岚', 1, '16366833736', 0, '440921199502038999', '中国北京市东城区东单王府井东街680号39室', '1995-02-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2425593024', '卢杰宏', 0, '204355030', 0, '440921199500224323', '中国广州市海珠区江南西路362号16楼', '1995-01-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8844920081', '黄岚', 0, '14699411011', 0, '440921199510005466', '中国成都市锦江区红星路三段876号50栋', '1995-09-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0851038900', '戴璐', 0, '13993163641', 0, '440921199522231687', '中国中山紫马岭商圈中山五路865号47栋', '1995-03-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6882367384', '邵嘉伦', 0, '17497925873', 0, '440921199520230248', '中国深圳福田区深南大道443号44栋', '1995-04-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2153584956', '阎致远', 1, '76008003863', 0, '440921199512033441', '中国中山乐丰六路490号41楼', '1995-12-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7735731938', '邱震南', 1, '7696976889', 0, '440921199512335706', '中国东莞坑美十五巷717号43号楼', '1995-10-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8493463589', '曾詩涵', 1, '2079538486', 0, '440921199511034678', '中国广州市天河区天河路535号11室', '1995-05-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1715101708', '莫杰宏', 1, '7550249976', 0, '440921199521202891', '中国深圳罗湖区蔡屋围深南东路226号35栋', '1995-06-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1317349944', '孙嘉伦', 1, '15587053666', 0, '440921199520320905', '中国上海市浦东新区橄榄路451号3楼', '1995-03-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0757033686', '方宇宁', 1, '2161755598', 0, '440921199521204463', '中国上海市徐汇区虹桥路250号2室', '1995-03-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1006143044', '毛璐', 1, '15574711162', 0, '440921199511212698', '中国北京市海淀区清河中街68号593号15室', '1995-09-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2939646597', '向岚', 1, '13466411543', 0, '440921199510202407', '中国上海市徐汇区虹桥路198号44栋', '1995-08-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7748905254', '孟安琪', 1, '19053845224', 0, '440921199500229596', '中国上海市浦东新区健祥路109号19楼', '1995-10-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0099357068', '杜璐', 1, '19773340906', 0, '440921199521023336', '中国中山京华商圈华夏街881号36栋', '1995-12-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2691348110', '龙璐', 1, '14884397402', 0, '440921199502029873', '中国成都市锦江区人民南路四段160号华润大厦5室', '1995-09-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5405671261', '郑岚', 0, '13886510206', 0, '440921199521210938', '中国北京市朝阳区三里屯路969号18栋', '1995-03-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2557507475', '宋嘉伦', 1, '7558901595', 0, '440921199522336364', '中国深圳福田区景田东一街644号16号楼', '1995-08-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0244361837', '韩睿', 1, '76944452391', 0, '440921199511136085', '中国东莞东泰五街111号18楼', '1995-01-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0528323974', '韦子韬', 0, '19413503318', 0, '440921199502117021', '中国中山天河区大信商圈大信南路88号8号楼', '1995-08-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7678160527', '韩詩涵', 0, '15515198641', 0, '440921199501131509', '中国广州市越秀区中山二路348号14楼', '1995-11-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3417309580', '汤秀英', 0, '104494191', 0, '440921199501111140', '中国北京市延庆区028县道440号37室', '1995-04-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1030488111', '邹詩涵', 1, '14430290164', 0, '440921199501106850', '中国深圳龙岗区学园一巷167号华润大厦2室', '1995-07-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3816714832', '汪安琪', 0, '13712872748', 0, '440921199520120755', '中国深圳龙岗区学园一巷899号4室', '1995-05-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3923775594', '谭岚', 1, '17412943064', 0, '440921199520025156', '中国成都市成华区二仙桥东三路326号11栋', '1995-08-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6638020576', '薛睿', 0, '14964608025', 0, '440921199500216868', '中国中山京华商圈华夏街137号华润大厦12室', '1995-06-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4139502137', '汤睿', 1, '7555321727', 0, '440921199522231873', '中国深圳福田区深南大道616号24号楼', '1995-12-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9599859071', '王震南', 1, '287472493', 0, '440921199500216312', '中国成都市锦江区红星路三段201号华润大厦47室', '1995-03-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2393637635', '曹子异', 1, '18116674980', 0, '440921199510013941', '中国北京市朝阳区三里屯路572号43栋', '1995-12-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1929959604', '陆子异', 0, '207411581', 0, '440921199502226411', '中国广州市海珠区江南西路223号华润大厦49室', '1995-05-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4753029305', '薛宇宁', 0, '2805972174', 0, '440921199501111981', '中国成都市成华区玉双路6号64号23号楼', '1995-04-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1610630529', '潘子韬', 1, '19933233565', 0, '440921199502106085', '中国广州市白云区机场路棠苑街五巷920号8楼', '1995-09-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8278858975', '胡安琪', 1, '17629955790', 0, '440921199522112856', '中国广州市白云区小坪东路18号19室', '1995-02-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9344329400', '周睿', 0, '17359606953', 0, '440921199500009690', '中国广州市白云区小坪东路196号30号楼', '1995-01-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2651955383', '姚云熙', 0, '15986797680', 0, '440921199522203826', '中国广州市天河区天河路330号华润大厦49室', '1995-12-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0719771398', '马晓明', 1, '17352348251', 0, '440921199521224761', '中国北京市西城区西長安街20号5楼', '1995-07-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5142189467', '罗震南', 0, '1002729978', 0, '440921199500112592', '中国北京市東城区東直門內大街892号华润大厦28室', '1995-02-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4689947917', '宋致远', 0, '7557104662', 0, '440921199512117962', '中国深圳龙岗区布吉镇西环路664号13号楼', '1995-05-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7365280502', '贾杰宏', 0, '2005022772', 0, '440921199502234013', '中国广州市白云区小坪东路999号华润大厦32室', '1995-03-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3805456037', '武睿', 0, '101502048', 0, '440921199510210863', '中国北京市海淀区清河中街68号258号48楼', '1995-01-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8857910459', '罗云熙', 1, '19318264004', 0, '440921199520231532', '中国深圳罗湖区田贝一路207号48号楼', '1995-02-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2791445966', '姚子韬', 0, '16945375745', 0, '440921199510300444', '中国北京市西城区复兴门内大街310号10室', '1995-11-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3495287789', '魏岚', 0, '75583941004', 0, '440921199520025762', '中国深圳罗湖区田贝一路582号35栋', '1995-07-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2387665094', '武晓明', 0, '16858590556', 0, '440921199510000426', '中国深圳罗湖区蔡屋围深南东路332号31号楼', '1995-05-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5529663030', '袁詩涵', 0, '18733035265', 0, '440921199510200421', '中国北京市朝阳区三里屯路398号46栋', '1995-07-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1470794266', '卢晓明', 0, '2038819840', 0, '440921199502317115', '中国广州市越秀区中山二路912号14楼', '1995-03-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7085174047', '龙岚', 1, '7552815707', 0, '440921199512234223', '中国深圳福田区深南大道965号36号楼', '1995-11-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8421988046', '钟宇宁', 1, '76964819658', 0, '440921199501101070', '中国东莞坑美十五巷75号28栋', '1995-10-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4275718018', '邓杰宏', 0, '19258354624', 0, '440921199500122053', '中国北京市东城区东单王府井东街747号6栋', '1995-10-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2053880921', '姚晓明', 0, '14716155165', 0, '440921199521026718', '中国深圳龙岗区学园一巷200号14栋', '1995-08-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2974795265', '邓岚', 1, '204760427', 0, '440921199520316040', '中国广州市白云区小坪东路93号42楼', '1995-04-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6064647159', '顾云熙', 0, '19379854740', 0, '440921199501007254', '中国北京市東城区東直門內大街754号24栋', '1995-11-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0778003732', '秦宇宁', 1, '14937889028', 0, '440921199522013357', '中国上海市浦东新区橄榄路477号32栋', '1995-05-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7818560090', '田杰宏', 1, '19330370428', 0, '440921199500304323', '中国中山紫马岭商圈中山五路413号6室', '1995-06-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6462721526', '程秀英', 0, '75538653391', 0, '440921199512229734', '中国深圳龙岗区学园一巷541号33室', '1995-01-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3470605027', '韦晓明', 0, '2044597961', 0, '440921199501202109', '中国广州市白云区机场路棠苑街五巷144号35楼', '1995-06-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2375108445', '余子韬', 0, '14887856461', 0, '440921199521200793', '中国北京市西城区复兴门内大街339号23楼', '1995-08-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1292313306', '毛嘉伦', 1, '17817046636', 0, '440921199500107613', '中国上海市黄浦区淮海中路953号华润大厦47室', '1995-01-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9171056470', '李安琪', 0, '203816397', 0, '440921199512237515', '中国广州市天河区天河路783号27号楼', '1995-04-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1381299069', '张云熙', 0, '18227683038', 0, '440921199501236322', '中国北京市延庆区028县道484号18室', '1995-02-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4664020922', '夏秀英', 0, '7559175751', 0, '440921199520036521', '中国深圳龙岗区布吉镇西环路912号33号楼', '1995-06-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8541156719', '谢致远', 1, '7699663610', 0, '440921199521109878', '中国东莞东泰五街421号45室', '1995-03-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2745937449', '邹岚', 1, '287308587', 0, '440921199510004826', '中国成都市成华区二仙桥东三路228号50室', '1995-11-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8258470327', '江嘉伦', 0, '18737952013', 0, '440921199520110217', '中国上海市浦东新区橄榄路984号45楼', '1995-11-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9891288433', '许嘉伦', 0, '19883249019', 0, '440921199511333275', '中国上海市黄浦区淮海中路872号2号楼', '1995-08-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7815728179', '邵睿', 0, '17835332332', 0, '440921199522020055', '中国北京市西城区西長安街688号21号楼', '1995-12-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5539219490', '曾岚', 0, '1076887645', 0, '440921199511311294', '中国北京市西城区西長安街219号35号楼', '1995-12-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7273580139', '贺震南', 1, '288086651', 0, '440921199501222764', '中国成都市锦江区红星路三段186号27室', '1995-08-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1851076810', '孙秀英', 1, '103791560', 0, '440921199520037899', '中国北京市西城区西長安街601号37室', '1995-12-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8481097404', '朱子异', 1, '203240328', 0, '440921199500202788', '中国广州市海珠区江南西路174号48号楼', '1995-11-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8530874673', '严杰宏', 1, '106866446', 0, '440921199500228962', '中国北京市西城区西長安街947号48室', '1995-04-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8258760100', '萧睿', 1, '76978210342', 0, '440921199512335074', '中国东莞环区南街二巷534号15室', '1995-11-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7362714189', '王嘉伦', 1, '19214679071', 0, '440921199510302262', '中国北京市朝阳区三里屯路915号48室', '1995-03-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4905013646', '沈晓明', 1, '18539861246', 0, '440921199512210082', '中国北京市西城区西長安街463号25楼', '1995-11-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6759679923', '孔宇宁', 0, '18276321351', 0, '440921199501035838', '中国东莞环区南街二巷819号华润大厦9室', '1995-10-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6722568938', '史秀英', 0, '15046935284', 0, '440921199511316281', '中国东莞环区南街二巷42号10室', '1995-03-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0718034228', '梁璐', 0, '16962676089', 0, '440921199522103856', '中国东莞珊瑚路436号38栋', '1995-11-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0996204090', '邹璐', 0, '16753464137', 0, '440921199500330912', '中国北京市東城区東直門內大街982号13楼', '1995-07-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0368359861', '谢秀英', 1, '14523631753', 0, '440921199500312234', '中国上海市浦东新区健祥路682号16楼', '1995-01-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0966998996', '杜岚', 1, '14134728849', 0, '440921199520338012', '中国广州市白云区机场路棠苑街五巷536号26号楼', '1995-12-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7945737078', '贾晓明', 1, '286862443', 0, '440921199521327352', '中国成都市成华区双庆路421号44室', '1995-06-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7670941939', '吴晓明', 0, '1039396422', 0, '440921199522233550', '中国北京市延庆区028县道73号47号楼', '1995-03-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1644688717', '蔡致远', 1, '203845492', 0, '440921199512101065', '中国广州市天河区天河路67号10室', '1995-08-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2200931626', '方致远', 1, '13778590639', 0, '440921199521220347', '中国广州市白云区机场路棠苑街五巷381号46楼', '1995-09-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7232256323', '梁震南', 1, '7694765448', 0, '440921199522231426', '中国东莞东泰五街817号32室', '1995-09-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8017974129', '方詩涵', 0, '17983531692', 0, '440921199521200586', '中国广州市白云区机场路棠苑街五巷119号43栋', '1995-05-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2586971161', '秦晓明', 1, '19410620748', 0, '440921199521225916', '中国北京市朝阳区三里屯路157号19号楼', '1995-03-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6985634644', '陶子异', 0, '18739845420', 0, '440921199500208134', '中国上海市浦东新区橄榄路97号21号楼', '1995-06-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7296131906', '孔子韬', 0, '76003017271', 0, '440921199521309908', '中国中山乐丰六路154号6号楼', '1995-06-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2505788602', '杨秀英', 1, '17322619124', 0, '440921199501135919', '中国东莞坑美十五巷927号47室', '1995-04-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9447435474', '田子韬', 1, '75511940551', 0, '440921199521139661', '中国深圳龙岗区布吉镇西环路312号39栋', '1995-02-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7876960961', '袁子韬', 1, '75510220986', 0, '440921199510113392', '中国深圳福田区景田东一街673号45栋', '1995-11-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7300786763', '程秀英', 1, '13926797858', 0, '440921199520226801', '中国北京市東城区東直門內大街636号28楼', '1995-08-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8232439257', '罗岚', 1, '7559134147', 0, '440921199522206872', '中国深圳罗湖区蔡屋围深南东路286号43室', '1995-09-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4117818865', '孙岚', 0, '107409887', 0, '440921199501104934', '中国北京市延庆区028县道244号7楼', '1995-01-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4626471649', '段安琪', 0, '1003019803', 0, '440921199521230474', '中国北京市海淀区清河中街68号675号华润大厦21室', '1995-02-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9721655018', '杨致远', 0, '7552424073', 0, '440921199512127521', '中国深圳福田区景田东一街723号华润大厦15室', '1995-07-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3010262591', '韩安琪', 0, '14497018477', 0, '440921199511209014', '中国北京市西城区西長安街699号36楼', '1995-08-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3623184648', '傅睿', 0, '75515890129', 0, '440921199520324728', '中国深圳罗湖区田贝一路507号46栋', '1995-05-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7815017038', '邓宇宁', 0, '103263799', 0, '440921199510238599', '中国北京市延庆区028县道959号24室', '1995-11-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1539522371', '武宇宁', 0, '281890714', 0, '440921199522135716', '中国成都市锦江区红星路三段512号33号楼', '1995-07-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7735603998', '刘致远', 1, '15018865079', 0, '440921199522202177', '中国成都市成华区玉双路6号751号41栋', '1995-09-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9239641261', '罗子韬', 1, '2843709134', 0, '440921199510300455', '中国成都市锦江区人民南路四段403号5栋', '1995-01-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0518466110', '贺嘉伦', 0, '14811404594', 0, '440921199500102565', '中国上海市浦东新区健祥路634号32室', '1995-05-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0563991372', '雷宇宁', 0, '1015651836', 0, '440921199511110147', '中国北京市海淀区清河中街68号488号7号楼', '1995-12-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4921264849', '程云熙', 0, '15633244031', 0, '440921199510212017', '中国北京市延庆区028县道839号3栋', '1995-03-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2646538487', '吴云熙', 0, '16724896234', 0, '440921199510032705', '中国成都市成华区二仙桥东三路423号华润大厦21室', '1995-10-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0836277855', '毛岚', 1, '76931485317', 0, '440921199501205734', '中国东莞东泰五街673号华润大厦34室', '1995-12-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4861248250', '马云熙', 0, '16058550689', 0, '440921199511100106', '中国上海市闵行区宾川路738号华润大厦8室', '1995-04-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3627542959', '汤睿', 0, '19832864947', 0, '440921199521221876', '中国深圳龙岗区学园一巷743号24楼', '1995-08-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8049330146', '毛宇宁', 1, '75593533552', 0, '440921199511032189', '中国深圳龙岗区布吉镇西环路506号华润大厦30室', '1995-01-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4814750535', '江致远', 0, '7602329647', 0, '440921199511000187', '中国中山京华商圈华夏街22号华润大厦29室', '1995-05-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6487485098', '郑震南', 1, '13522609880', 0, '440921199501032185', '中国上海市黄浦区淮海中路105号22栋', '1995-04-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2949281539', '侯秀英', 1, '16904953522', 0, '440921199512206787', '中国中山乐丰六路986号46室', '1995-01-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7491236400', '萧璐', 0, '18889601761', 0, '440921199510105465', '中国北京市海淀区清河中街68号451号26楼', '1995-10-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4272992254', '段安琪', 1, '284661106', 0, '440921199511229415', '中国成都市锦江区红星路三段833号华润大厦23室', '1995-06-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8827316625', '熊岚', 0, '19192576089', 0, '440921199520101637', '中国广州市白云区机场路棠苑街五巷254号26室', '1995-06-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6517301385', '谢宇宁', 1, '104520375', 0, '440921199502109171', '中国北京市房山区岳琉路844号47室', '1995-04-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2329788834', '侯秀英', 1, '2027776032', 0, '440921199521330419', '中国广州市天河区天河路865号华润大厦15室', '1995-07-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3166411970', '武子异', 1, '15496764213', 0, '440921199522225199', '中国中山京华商圈华夏街421号23栋', '1995-05-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0105092428', '邵秀英', 1, '202348769', 0, '440921199502029226', '中国广州市白云区小坪东路176号华润大厦26室', '1995-05-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1700533618', '彭子异', 1, '1020311753', 0, '440921199510139146', '中国北京市东城区东单王府井东街547号30栋', '1995-08-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3414754837', '许子韬', 0, '19891650251', 0, '440921199511212190', '中国成都市成华区双庆路307号4号楼', '1995-08-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2845893736', '方致远', 0, '2115445560', 0, '440921199521305400', '中国上海市浦东新区橄榄路290号24栋', '1995-12-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8780844502', '杜致远', 0, '17065071053', 0, '440921199510027069', '中国成都市锦江区人民南路四段599号41室', '1995-01-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3127660257', '武子韬', 1, '16858914324', 0, '440921199510301993', '中国广州市天河区天河路22号31栋', '1995-02-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2338279990', '阎云熙', 0, '208727918', 0, '440921199502302538', '中国广州市越秀区中山二路210号45号楼', '1995-07-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6350691911', '向子异', 0, '7697113196', 0, '440921199510132521', '中国东莞坑美十五巷7号华润大厦23室', '1995-01-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9771596739', '周子韬', 0, '1055999628', 0, '440921199522219847', '中国北京市东城区东单王府井东街406号9栋', '1995-10-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2273603568', '胡璐', 0, '106080861', 0, '440921199500307294', '中国北京市房山区岳琉路968号34楼', '1995-09-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2182605993', '宋致远', 1, '16897797032', 0, '440921199522123670', '中国北京市延庆区028县道779号华润大厦1室', '1995-02-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6703524631', '孙杰宏', 0, '7555604629', 0, '440921199512130450', '中国深圳福田区深南大道525号39室', '1995-12-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2466989764', '戴岚', 0, '15922957102', 0, '440921199521228013', '中国中山紫马岭商圈中山五路687号34栋', '1995-11-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6137033704', '严安琪', 0, '14154914938', 0, '440921199512339033', '中国深圳龙岗区学园一巷85号18室', '1995-07-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6741153926', '张震南', 1, '75571619903', 0, '440921199502228252', '中国深圳福田区景田东一街833号29号楼', '1995-05-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6116222080', '杜秀英', 0, '15598123709', 0, '440921199500112380', '中国成都市成华区双庆路276号23号楼', '1995-06-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6145246892', '侯晓明', 0, '289519642', 0, '440921199510028955', '中国成都市成华区二仙桥东三路730号43室', '1995-12-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6770696054', '邱嘉伦', 0, '13120153609', 0, '440921199500229102', '中国北京市海淀区清河中街68号684号17号楼', '1995-07-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9728633909', '任安琪', 1, '76035547089', 0, '440921199521200173', '中国中山天河区大信商圈大信南路768号华润大厦1室', '1995-06-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8688980786', '莫子韬', 1, '18759278964', 0, '440921199520228937', '中国东莞珊瑚路258号9室', '1995-05-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0038030676', '卢詩涵', 0, '76928524029', 0, '440921199512014823', '中国东莞东泰五街172号39室', '1995-07-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9592472115', '袁致远', 1, '18545596190', 0, '440921199500019814', '中国深圳罗湖区蔡屋围深南东路775号39栋', '1995-09-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3374226443', '朱杰宏', 0, '289358638', 0, '440921199502209427', '中国成都市锦江区红星路三段180号14室', '1995-01-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9996845355', '卢璐', 0, '208681145', 0, '440921199522216129', '中国广州市越秀区中山二路861号34室', '1995-07-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9446013162', '冯宇宁', 1, '109166315', 0, '440921199501035035', '中国北京市西城区西長安街876号47室', '1995-02-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2007359738', '程秀英', 0, '13413722091', 0, '440921199510233913', '中国中山紫马岭商圈中山五路506号25楼', '1995-10-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6223737658', '傅晓明', 1, '207069920', 0, '440921199502315184', '中国广州市海珠区江南西路618号43栋', '1995-07-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9682342013', '史詩涵', 1, '16628391768', 0, '440921199501010537', '中国中山乐丰六路604号30楼', '1995-02-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8442197236', '杨云熙', 1, '7552007019', 0, '440921199522202556', '中国深圳福田区景田东一街254号13栋', '1995-10-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4203440929', '邓晓明', 1, '16216468262', 0, '440921199510035428', '中国深圳龙岗区布吉镇西环路579号39楼', '1995-05-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8526275001', '顾璐', 0, '7600297311', 0, '440921199522002322', '中国中山乐丰六路937号33号楼', '1995-05-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4320078640', '邵岚', 0, '13427986505', 0, '440921199511239276', '中国中山乐丰六路309号33楼', '1995-01-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9710720018', '龙震南', 0, '16881459303', 0, '440921199501117122', '中国北京市房山区岳琉路370号50号楼', '1995-08-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1063467304', '周睿', 0, '18938125751', 0, '440921199500031746', '中国北京市海淀区清河中街68号344号25室', '1995-08-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1200568263', '邓秀英', 1, '18681536120', 0, '440921199502122732', '中国上海市浦东新区健祥路718号14楼', '1995-08-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8376041129', '潘震南', 1, '2067755862', 0, '440921199502307259', '中国广州市白云区机场路棠苑街五巷252号38号楼', '1995-06-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4878534408', '邵安琪', 1, '76032671673', 0, '440921199521023944', '中国中山乐丰六路648号23栋', '1995-12-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9329316669', '孙岚', 0, '15722627473', 0, '440921199510310835', '中国上海市黄浦区淮海中路817号华润大厦47室', '1995-09-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5558512430', '陈子韬', 1, '7698885701', 0, '440921199501306304', '中国东莞环区南街二巷515号华润大厦35室', '1995-06-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6396786727', '何杰宏', 1, '2024123047', 0, '440921199512017818', '中国广州市海珠区江南西路251号38楼', '1995-05-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1468737942', '向宇宁', 0, '2831229231', 0, '440921199500206231', '中国成都市成华区玉双路6号183号华润大厦17室', '1995-12-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0019032769', '尹杰宏', 0, '16374888684', 0, '440921199522006626', '中国东莞珊瑚路732号6号楼', '1995-07-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8385297645', '朱璐', 0, '7555215377', 0, '440921199500114446', '中国深圳福田区景田东一街135号42号楼', '1995-08-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7876594098', '胡震南', 0, '7553658889', 0, '440921199512203253', '中国深圳福田区景田东一街540号华润大厦43室', '1995-09-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7946585191', '曹致远', 1, '13207544304', 0, '440921199522031219', '中国上海市闵行区宾川路293号华润大厦5室', '1995-06-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8071265804', '顾安琪', 0, '100400622', 0, '440921199502218438', '中国北京市西城区复兴门内大街508号华润大厦12室', '1995-04-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1007673047', '黄秀英', 1, '209784059', 0, '440921199520132550', '中国广州市天河区天河路848号31室', '1995-12-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6313396260', '江杰宏', 0, '76012606166', 0, '440921199502032509', '中国中山乐丰六路894号华润大厦37室', '1995-05-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6277534058', '杜晓明', 1, '288757466', 0, '440921199511231783', '中国成都市成华区玉双路6号730号44楼', '1995-07-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7742739996', '胡震南', 0, '19622475053', 0, '440921199511020057', '中国成都市成华区双庆路811号25栋', '1995-03-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4590567452', '傅秀英', 1, '2122529268', 0, '440921199510218170', '中国上海市徐汇区虹桥路745号24号楼', '1995-11-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6365613033', '冯致远', 1, '15145283882', 0, '440921199522102262', '中国深圳福田区景田东一街159号华润大厦23室', '1995-07-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7985981133', '傅子异', 1, '104083897', 0, '440921199512110197', '中国北京市西城区西長安街107号9栋', '1995-10-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7555506645', '邵子异', 1, '14043536553', 0, '440921199522318582', '中国广州市越秀区中山二路558号46栋', '1995-06-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2510816579', '李安琪', 0, '13280777928', 0, '440921199501131907', '中国北京市东城区东单王府井东街839号华润大厦33室', '1995-12-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5406374490', '张子韬', 0, '17311122556', 0, '440921199501217344', '中国中山乐丰六路343号32号楼', '1995-09-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6022870863', '郭震南', 1, '18877401454', 0, '440921199500111675', '中国深圳罗湖区蔡屋围深南东路990号42栋', '1995-03-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3960501757', '任震南', 1, '7694520185', 0, '440921199501302737', '中国东莞坑美十五巷694号10楼', '1995-10-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1641782339', '张云熙', 1, '16277499567', 0, '440921199520329860', '中国成都市成华区双庆路288号45楼', '1995-04-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2863156798', '薛秀英', 1, '1099723056', 0, '440921199522215991', '中国北京市海淀区清河中街68号927号20楼', '1995-04-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0805258493', '钟子韬', 1, '19364136025', 0, '440921199510111771', '中国深圳罗湖区清水河一路474号46室', '1995-03-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0790522134', '丁云熙', 0, '200912926', 0, '440921199520032402', '中国广州市白云区小坪东路209号29楼', '1995-12-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3830211710', '江岚', 1, '19354454547', 0, '440921199521012972', '中国东莞珊瑚路59号10室', '1995-12-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6275492684', '陈嘉伦', 1, '19722006530', 0, '440921199521018552', '中国中山乐丰六路534号6室', '1995-04-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0419935065', '苏杰宏', 0, '17952899716', 0, '440921199501309460', '中国成都市成华区二仙桥东三路685号11号楼', '1995-09-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5780898978', '孙嘉伦', 1, '13946602458', 0, '440921199502237220', '中国成都市锦江区人民南路四段10号12室', '1995-10-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0065758903', '余嘉伦', 0, '16477731464', 0, '440921199512036061', '中国上海市徐汇区虹桥路46号12号楼', '1995-09-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1390326694', '常岚', 0, '14328194862', 0, '440921199500026920', '中国成都市成华区二仙桥东三路507号1室', '1995-08-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9938388220', '夏安琪', 1, '17706249665', 0, '440921199512215408', '中国中山京华商圈华夏街533号11室', '1995-08-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8898586855', '徐杰宏', 0, '15272572861', 0, '440921199511315448', '中国深圳龙岗区学园一巷707号19栋', '1995-11-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2089569024', '向詩涵', 0, '13613598899', 0, '440921199522129515', '中国东莞东泰五街368号华润大厦18室', '1995-12-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9436257007', '韩璐', 0, '16289756918', 0, '440921199500313077', '中国东莞珊瑚路366号45号楼', '1995-07-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1833987088', '邓子异', 0, '107166701', 0, '440921199500037267', '中国北京市延庆区028县道455号46室', '1995-03-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9253994925', '邓晓明', 0, '2149486648', 0, '440921199512228821', '中国上海市闵行区宾川路506号35号楼', '1995-12-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3012155080', '雷璐', 0, '206472873', 0, '440921199501230336', '中国广州市白云区机场路棠苑街五巷585号19楼', '1995-06-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7442192742', '方宇宁', 0, '16120747777', 0, '440921199522135151', '中国上海市浦东新区橄榄路612号49楼', '1995-08-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3874722384', '余云熙', 0, '76908667863', 0, '440921199520124508', '中国东莞东泰五街694号32室', '1995-12-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0331354885', '顾震南', 0, '7557731566', 0, '440921199510224838', '中国深圳龙岗区布吉镇西环路842号39号楼', '1995-03-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4089955254', '崔嘉伦', 1, '104391683', 0, '440921199522021400', '中国北京市海淀区清河中街68号632号35栋', '1995-07-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4832701777', '陈安琪', 1, '16963050579', 0, '440921199522113406', '中国北京市房山区岳琉路82号45室', '1995-12-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6664376791', '吴璐', 0, '7602252837', 0, '440921199522033254', '中国中山乐丰六路398号10栋', '1995-09-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4092591971', '何子异', 1, '75572208505', 0, '440921199512335984', '中国深圳罗湖区田贝一路732号9室', '1995-03-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8917717363', '许嘉伦', 1, '2801339792', 0, '440921199512228975', '中国成都市成华区双庆路290号50楼', '1995-08-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9227101605', '向宇宁', 1, '19022401445', 0, '440921199501339470', '中国深圳福田区深南大道445号50栋', '1995-06-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3691855761', '曹睿', 0, '7551372599', 0, '440921199512326539', '中国深圳福田区景田东一街192号华润大厦32室', '1995-05-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4877222818', '尹杰宏', 1, '16750693379', 0, '440921199500227913', '中国广州市天河区天河路977号40室', '1995-08-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1206779485', '莫嘉伦', 0, '2162326215', 0, '440921199511133119', '中国上海市黄浦区淮海中路100号12栋', '1995-11-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1188692377', '徐璐', 1, '19490766658', 0, '440921199501238680', '中国成都市锦江区红星路三段365号40号楼', '1995-01-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5502147999', '薛璐', 1, '7557107438', 0, '440921199501023476', '中国深圳福田区景田东一街760号1室', '1995-06-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3934626563', '雷嘉伦', 1, '206445970', 0, '440921199502032492', '中国广州市海珠区江南西路467号3栋', '1995-02-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3341564246', '田璐', 0, '1082681795', 0, '440921199522308055', '中国北京市朝阳区三里屯路266号华润大厦36室', '1995-10-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1499227912', '方晓明', 1, '17713773315', 0, '440921199500128650', '中国广州市越秀区中山二路566号21号楼', '1995-02-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2745156417', '陈睿', 1, '13164245508', 0, '440921199521236893', '中国东莞坑美十五巷960号45号楼', '1995-04-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1257264009', '冯秀英', 0, '18067465819', 0, '440921199510238451', '中国东莞环区南街二巷774号16楼', '1995-06-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0641099763', '刘致远', 0, '15350583422', 0, '440921199511123043', '中国上海市浦东新区橄榄路929号华润大厦17室', '1995-11-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5724631950', '尹晓明', 1, '285360111', 0, '440921199501126846', '中国成都市成华区二仙桥东三路904号26楼', '1995-10-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9623093656', '贾子异', 0, '19660283321', 0, '440921199501131222', '中国中山乐丰六路211号39栋', '1995-08-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9420385883', '夏子韬', 0, '7604878944', 0, '440921199521039714', '中国中山紫马岭商圈中山五路72号华润大厦16室', '1995-02-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9751046022', '钟璐', 1, '16249732092', 0, '440921199521335212', '中国广州市天河区天河路716号华润大厦28室', '1995-04-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1795926010', '范岚', 0, '16862759245', 0, '440921199501319773', '中国中山京华商圈华夏街882号华润大厦31室', '1995-02-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6383964085', '熊致远', 0, '15332736807', 0, '440921199511130936', '中国广州市越秀区中山二路23号3室', '1995-03-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4578754001', '郭睿', 0, '18645223005', 0, '440921199521023989', '中国成都市锦江区红星路三段64号华润大厦11室', '1995-07-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5066307193', '赵致远', 0, '75558686136', 0, '440921199520105667', '中国深圳龙岗区布吉镇西环路526号40室', '1995-11-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1787065422', '汤致远', 1, '1088852564', 0, '440921199520126426', '中国北京市朝阳区三里屯路784号37号楼', '1995-06-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7255613373', '郑安琪', 0, '7696759042', 0, '440921199501012738', '中国东莞东泰五街942号华润大厦38室', '1995-11-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8583053687', '顾子韬', 0, '13164748123', 0, '440921199522110811', '中国北京市東城区東直門內大街161号47室', '1995-11-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9777703463', '赵震南', 1, '19630901542', 0, '440921199510101104', '中国广州市白云区机场路棠苑街五巷826号36栋', '1995-12-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6073421029', '陆安琪', 1, '75556339086', 0, '440921199522218578', '中国深圳罗湖区田贝一路400号16栋', '1995-10-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0354984002', '侯子异', 1, '1074885719', 0, '440921199500230765', '中国北京市东城区东单王府井东街501号16栋', '1995-10-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8208247474', '曹岚', 1, '209452739', 0, '440921199510104611', '中国广州市白云区小坪东路907号47楼', '1995-12-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7532646849', '邓安琪', 1, '1066969364', 0, '440921199522031511', '中国北京市房山区岳琉路507号40楼', '1995-06-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2962937115', '龚震南', 0, '7694399519', 0, '440921199510215515', '中国东莞东泰五街538号50栋', '1995-10-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2307752925', '金子韬', 1, '7552787984', 0, '440921199500035569', '中国深圳龙岗区学园一巷553号华润大厦29室', '1995-07-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0853353829', '黎杰宏', 1, '1043747179', 0, '440921199501211881', '中国北京市西城区复兴门内大街694号29楼', '1995-03-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2343494476', '姜震南', 1, '2823430138', 0, '440921199502308364', '中国成都市成华区双庆路923号32栋', '1995-06-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6662076780', '郭致远', 0, '18127220223', 0, '440921199522216885', '中国北京市东城区东单王府井东街384号3室', '1995-10-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0509115255', '潘嘉伦', 1, '102633579', 0, '440921199502225654', '中国北京市房山区岳琉路726号36楼', '1995-09-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0389391746', '贺岚', 0, '14869091947', 0, '440921199500239158', '中国东莞坑美十五巷478号29栋', '1995-08-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1529376193', '梁杰宏', 1, '19576255153', 0, '440921199510327709', '中国东莞珊瑚路773号17楼', '1995-05-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0749579061', '孔晓明', 1, '7553406155', 0, '440921199500122879', '中国深圳福田区景田东一街786号33楼', '1995-06-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8941856696', '邱杰宏', 0, '2147414822', 0, '440921199502337929', '中国上海市浦东新区健祥路936号7号楼', '1995-02-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9499557547', '冯安琪', 0, '14922468890', 0, '440921199512206275', '中国深圳罗湖区蔡屋围深南东路7号华润大厦24室', '1995-08-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8121046065', '卢秀英', 0, '100358286', 0, '440921199522008841', '中国北京市西城区西長安街147号5楼', '1995-12-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0729127902', '莫璐', 1, '1016819477', 0, '440921199502110579', '中国北京市延庆区028县道470号4号楼', '1995-08-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0111603802', '余秀英', 0, '15637358913', 0, '440921199510005660', '中国上海市闵行区宾川路204号42号楼', '1995-07-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2998249194', '陆震南', 1, '15762539585', 0, '440921199521309562', '中国北京市朝阳区三里屯路155号华润大厦49室', '1995-09-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4622076993', '卢嘉伦', 0, '17871148799', 0, '440921199501100322', '中国上海市黄浦区淮海中路319号13室', '1995-06-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9203341952', '严嘉伦', 0, '14293192570', 0, '440921199502305422', '中国深圳龙岗区布吉镇西环路272号3号楼', '1995-04-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6871690577', '陶宇宁', 1, '75525140185', 0, '440921199521102057', '中国深圳龙岗区学园一巷832号华润大厦23室', '1995-03-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8158804013', '陶岚', 1, '76914694961', 0, '440921199502316240', '中国东莞珊瑚路197号华润大厦3室', '1995-01-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2463792609', '夏嘉伦', 1, '19738436828', 0, '440921199511113331', '中国广州市越秀区中山二路938号32室', '1995-05-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1070374168', '萧詩涵', 0, '100141516', 0, '440921199521314519', '中国北京市東城区東直門內大街705号43楼', '1995-12-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9121085969', '姚詩涵', 0, '7601730807', 0, '440921199521112804', '中国中山乐丰六路756号41楼', '1995-02-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8390162271', '叶璐', 1, '13695064598', 0, '440921199501310855', '中国上海市徐汇区虹桥路508号华润大厦39室', '1995-09-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6666113168', '杜睿', 1, '76958312269', 0, '440921199501209157', '中国东莞东泰五街714号42室', '1995-03-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5631807599', '汤宇宁', 1, '7557722790', 0, '440921199500001531', '中国深圳龙岗区布吉镇西环路673号11楼', '1995-09-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7284123127', '谭晓明', 0, '15674113609', 0, '440921199521005834', '中国广州市天河区天河路435号13号楼', '1995-10-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6125513635', '贺杰宏', 0, '16617274182', 0, '440921199502111853', '中国北京市东城区东单王府井东街238号18室', '1995-05-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4390785818', '龙震南', 0, '19679641934', 0, '440921199512129650', '中国东莞珊瑚路64号19号楼', '1995-01-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3339070481', '莫致远', 1, '13125275830', 0, '440921199510338864', '中国广州市白云区机场路棠苑街五巷994号12室', '1995-05-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0655601363', '叶宇宁', 0, '7558661932', 0, '440921199512338898', '中国深圳龙岗区布吉镇西环路738号22楼', '1995-06-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9219358031', '方睿', 1, '19291482770', 0, '440921199511211408', '中国东莞坑美十五巷646号46号楼', '1995-09-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2816980469', '贺杰宏', 0, '200877009', 0, '440921199510231043', '中国广州市天河区天河路722号50栋', '1995-12-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4723697431', '宋杰宏', 1, '15902185814', 0, '440921199501001612', '中国成都市锦江区红星路三段786号41号楼', '1995-06-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5090234323', '钱璐', 1, '16374890815', 0, '440921199512119080', '中国中山京华商圈华夏街647号32楼', '1995-07-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7334528031', '叶子异', 1, '17293821989', 0, '440921199512300903', '中国成都市锦江区人民南路四段648号华润大厦35室', '1995-10-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0572102168', '姚宇宁', 0, '2100884507', 0, '440921199520127128', '中国上海市黄浦区淮海中路494号29室', '1995-06-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0081792144', '谭睿', 1, '18030435163', 0, '440921199500131743', '中国成都市成华区玉双路6号219号24楼', '1995-12-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0476705503', '莫嘉伦', 1, '19083405858', 0, '440921199501226424', '中国东莞东泰五街321号12栋', '1995-10-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3913451186', '刘云熙', 1, '18596600093', 0, '440921199520034867', '中国成都市锦江区红星路三段551号47室', '1995-06-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3334016745', '叶云熙', 0, '16467278203', 0, '440921199522116131', '中国深圳福田区景田东一街762号45栋', '1995-11-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0786279626', '袁詩涵', 1, '16845838323', 0, '440921199520312219', '中国中山京华商圈华夏街856号50室', '1995-09-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6949417986', '莫秀英', 0, '14465144038', 0, '440921199501310089', '中国东莞珊瑚路940号28室', '1995-10-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9996932397', '邱震南', 0, '7699355260', 0, '440921199520310336', '中国东莞环区南街二巷19号华润大厦48室', '1995-11-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8696183099', '许宇宁', 1, '18638312091', 0, '440921199501307144', '中国中山紫马岭商圈中山五路101号华润大厦21室', '1995-05-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4774929849', '严嘉伦', 1, '19280995710', 0, '440921199502123710', '中国深圳福田区深南大道613号24室', '1995-06-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2202840723', '杜睿', 1, '16258991322', 0, '440921199500204230', '中国东莞珊瑚路819号41楼', '1995-08-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4556456399', '戴宇宁', 0, '1071918423', 0, '440921199521120220', '中国北京市東城区東直門內大街307号华润大厦4室', '1995-09-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4660346163', '杜宇宁', 0, '15431501469', 0, '440921199520212018', '中国北京市朝阳区三里屯路835号华润大厦42室', '1995-06-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9829127803', '罗子异', 0, '13788459656', 0, '440921199522116415', '中国北京市朝阳区三里屯路141号26号楼', '1995-07-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0201346018', '严嘉伦', 0, '13015839816', 0, '440921199512108113', '中国北京市东城区东单王府井东街84号华润大厦45室', '1995-01-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2761437627', '郭晓明', 0, '7698848074', 0, '440921199500328292', '中国东莞坑美十五巷855号36栋', '1995-02-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6509592005', '杨晓明', 0, '17914242016', 0, '440921199510021281', '中国上海市黄浦区淮海中路651号5号楼', '1995-09-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8531194175', '宋嘉伦', 0, '2020583815', 0, '440921199512011775', '中国广州市白云区机场路棠苑街五巷42号华润大厦40室', '1995-03-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3542803400', '贺杰宏', 0, '15067154584', 0, '440921199522339692', '中国北京市西城区西長安街723号1号楼', '1995-03-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4234332732', '陆晓明', 1, '17505009985', 0, '440921199501304756', '中国广州市白云区机场路棠苑街五巷516号40号楼', '1995-03-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5054355777', '曾子异', 0, '1053444567', 0, '440921199501109813', '中国北京市朝阳区三里屯路344号50楼', '1995-01-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7611638612', '姜宇宁', 0, '288323462', 0, '440921199502230288', '中国成都市成华区双庆路932号华润大厦33室', '1995-08-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6120354452', '韩秀英', 0, '76060166443', 0, '440921199501339605', '中国中山天河区大信商圈大信南路418号28栋', '1995-01-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0400011647', '毛宇宁', 1, '2020987866', 0, '440921199511312807', '中国广州市天河区天河路42号34号楼', '1995-07-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4813420142', '陆嘉伦', 0, '15869694701', 0, '440921199522128662', '中国深圳龙岗区布吉镇西环路785号41楼', '1995-12-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8723950214', '龚嘉伦', 0, '19150374274', 0, '440921199511216582', '中国广州市天河区天河路322号30室', '1995-12-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4923791882', '梁睿', 1, '14291833096', 0, '440921199520120364', '中国中山京华商圈华夏街329号16室', '1995-08-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0185540260', '范子异', 1, '16437343071', 0, '440921199501322657', '中国北京市延庆区028县道151号华润大厦7室', '1995-01-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6522380116', '黄安琪', 1, '76960389621', 0, '440921199522021755', '中国东莞珊瑚路215号37号楼', '1995-10-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1195970852', '韦子韬', 0, '15984421980', 0, '440921199501009720', '中国东莞东泰五街553号50栋', '1995-02-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4387655183', '田子异', 0, '76952080277', 0, '440921199500001679', '中国东莞珊瑚路659号19楼', '1995-10-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8984021176', '叶震南', 1, '18956577950', 0, '440921199510001753', '中国北京市延庆区028县道510号30楼', '1995-10-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7927192657', '邓晓明', 0, '18226898563', 0, '440921199511021288', '中国广州市白云区小坪东路139号24室', '1995-07-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9649135198', '孔岚', 1, '75548113559', 0, '440921199511237036', '中国深圳罗湖区田贝一路557号50号楼', '1995-12-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4126566194', '常嘉伦', 0, '7558279946', 0, '440921199522017742', '中国深圳龙岗区布吉镇西环路367号28室', '1995-08-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7319726758', '谭璐', 1, '13866398595', 0, '440921199521012239', '中国成都市成华区玉双路6号385号24号楼', '1995-07-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0016144095', '孟睿', 1, '1016807924', 0, '440921199500303487', '中国北京市延庆区028县道509号2楼', '1995-10-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6958797880', '郝睿', 1, '14412677141', 0, '440921199520308186', '中国深圳罗湖区田贝一路247号华润大厦35室', '1995-01-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9936063400', '邓晓明', 0, '19401399031', 0, '440921199501039291', '中国北京市房山区岳琉路56号18楼', '1995-05-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3509269448', '袁震南', 1, '16753890763', 0, '440921199522001399', '中国成都市锦江区人民南路四段495号44号楼', '1995-06-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4568405478', '孙岚', 1, '75568300135', 0, '440921199502235876', '中国深圳龙岗区学园一巷266号5号楼', '1995-01-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9604315346', '薛致远', 0, '75536921841', 0, '440921199520332652', '中国深圳福田区深南大道26号2号楼', '1995-04-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2320669464', '阎云熙', 0, '2069752081', 0, '440921199511338015', '中国广州市海珠区江南西路332号9楼', '1995-12-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9377804008', '刘杰宏', 1, '75582241882', 0, '440921199520311038', '中国深圳福田区景田东一街681号38号楼', '1995-04-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0861783557', '邵震南', 0, '18813706558', 0, '440921199500006097', '中国成都市锦江区人民南路四段837号12栋', '1995-01-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0978914740', '姚秀英', 1, '16592496853', 0, '440921199511020399', '中国中山天河区大信商圈大信南路802号华润大厦48室', '1995-02-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1516388824', '高晓明', 0, '2847941002', 0, '440921199502105271', '中国成都市成华区双庆路511号50室', '1995-06-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1759925904', '林致远', 0, '17271635719', 0, '440921199501329080', '中国成都市成华区双庆路636号29室', '1995-09-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7011637116', '金睿', 1, '14181096994', 0, '440921199521117800', '中国深圳龙岗区学园一巷650号5室', '1995-01-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5113483833', '孔璐', 0, '15610879824', 0, '440921199511212309', '中国上海市闵行区宾川路678号华润大厦41室', '1995-01-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1601956654', '吴致远', 0, '14985038607', 0, '440921199521001221', '中国北京市房山区岳琉路737号45栋', '1995-04-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4441536229', '冯宇宁', 0, '14909008689', 0, '440921199521236540', '中国深圳龙岗区学园一巷427号50栋', '1995-09-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7253599211', '魏杰宏', 0, '105505445', 0, '440921199500004852', '中国北京市东城区东单王府井东街423号22号楼', '1995-03-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2940653592', '彭晓明', 0, '19506910038', 0, '440921199520137536', '中国深圳福田区深南大道388号28栋', '1995-07-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4201867128', '邹岚', 1, '19774584159', 0, '440921199511332078', '中国东莞坑美十五巷321号30号楼', '1995-05-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9678101893', '金睿', 1, '204362702', 0, '440921199522130433', '中国广州市白云区小坪东路729号22号楼', '1995-06-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2580237249', '何璐', 0, '7551349791', 0, '440921199511008781', '中国深圳龙岗区布吉镇西环路167号38楼', '1995-10-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5643683270', '蔡晓明', 1, '13376393242', 0, '440921199510205750', '中国东莞环区南街二巷36号25号楼', '1995-11-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8041119875', '邓子异', 0, '7698061279', 0, '440921199510237187', '中国东莞东泰五街941号50号楼', '1995-01-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1281739812', '袁睿', 0, '15729599192', 0, '440921199501339658', '中国东莞坑美十五巷915号48楼', '1995-10-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8603027633', '周震南', 1, '7694587596', 0, '440921199512123081', '中国东莞珊瑚路525号35号楼', '1995-07-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9299540009', '傅震南', 0, '18749254246', 0, '440921199522123693', '中国北京市延庆区028县道461号39号楼', '1995-02-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5211845117', '韩璐', 1, '2850046708', 0, '440921199520231102', '中国成都市锦江区人民南路四段877号18室', '1995-06-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3536390025', '冯詩涵', 0, '15942682234', 0, '440921199512329753', '中国广州市越秀区中山二路577号24室', '1995-01-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6522392982', '秦詩涵', 0, '13340170198', 0, '440921199501327371', '中国深圳罗湖区田贝一路712号22室', '1995-06-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0571036326', '曹睿', 0, '205696581', 0, '440921199501001333', '中国广州市海珠区江南西路82号40栋', '1995-04-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1399322645', '余秀英', 1, '282385131', 0, '440921199511308410', '中国成都市成华区二仙桥东三路844号17号楼', '1995-04-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0017435368', '方子韬', 1, '13588145779', 0, '440921199502203411', '中国北京市海淀区清河中街68号911号37室', '1995-07-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7310086559', '范子异', 0, '15345202277', 0, '440921199511321763', '中国上海市浦东新区橄榄路163号31号楼', '1995-08-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8280016311', '任子韬', 0, '280068782', 0, '440921199502123551', '中国成都市锦江区人民南路四段931号16楼', '1995-11-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0496909781', '唐子异', 0, '15667398938', 0, '440921199511221860', '中国广州市天河区天河路181号42栋', '1995-02-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0141284802', '江云熙', 0, '18378910002', 0, '440921199521232607', '中国广州市白云区机场路棠苑街五巷54号34号楼', '1995-11-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5981669371', '丁詩涵', 0, '13781887986', 0, '440921199510312997', '中国中山紫马岭商圈中山五路445号18楼', '1995-09-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4296027571', '陈安琪', 1, '14001617185', 0, '440921199522224502', '中国北京市朝阳区三里屯路292号28楼', '1995-10-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2949836229', '曾震南', 0, '76019821456', 0, '440921199522316162', '中国中山紫马岭商圈中山五路729号20号楼', '1995-07-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4946011649', '余秀英', 0, '16442809574', 0, '440921199510211209', '中国深圳福田区深南大道547号49号楼', '1995-09-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4083958386', '毛云熙', 1, '14759535986', 0, '440921199510210844', '中国上海市徐汇区虹桥路840号7室', '1995-07-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2524607559', '范睿', 1, '17110085961', 0, '440921199512022380', '中国北京市西城区复兴门内大街433号华润大厦26室', '1995-12-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1785009649', '汤晓明', 0, '13250443484', 0, '440921199500112035', '中国中山京华商圈华夏街77号34楼', '1995-06-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9273355963', '曹子异', 0, '7554038843', 0, '440921199511333634', '中国深圳罗湖区田贝一路914号15栋', '1995-01-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3212027080', '范璐', 0, '219238456', 0, '440921199521322527', '中国上海市徐汇区虹桥路952号20号楼', '1995-03-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7185282839', '石詩涵', 0, '75534007028', 0, '440921199500107493', '中国深圳罗湖区田贝一路385号4楼', '1995-07-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8875443909', '严睿', 1, '13929692247', 0, '440921199522127155', '中国北京市西城区西長安街970号21室', '1995-12-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9979938872', '高子韬', 1, '18376958182', 0, '440921199522111801', '中国上海市浦东新区健祥路6号3号楼', '1995-03-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5210361933', '莫致远', 1, '1002740083', 0, '440921199501225066', '中国北京市西城区西長安街137号46楼', '1995-08-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6897820572', '邱詩涵', 0, '2197013659', 0, '440921199521202934', '中国上海市浦东新区橄榄路875号华润大厦41室', '1995-06-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2329552898', '梁安琪', 1, '19678028898', 0, '440921199502010193', '中国深圳罗湖区清水河一路862号36楼', '1995-05-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1080710667', '侯詩涵', 0, '2004751833', 0, '440921199510126662', '中国广州市越秀区中山二路68号42号楼', '1995-08-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3128387154', '金安琪', 0, '18130234582', 0, '440921199502034457', '中国上海市徐汇区虹桥路366号18号楼', '1995-02-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5261012470', '董宇宁', 1, '13740991300', 0, '440921199511331754', '中国北京市朝阳区三里屯路82号华润大厦24室', '1995-01-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7393814962', '汪震南', 1, '14855547938', 0, '440921199502323092', '中国东莞东泰五街533号11楼', '1995-04-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6844361936', '范震南', 0, '17957578450', 0, '440921199521202817', '中国东莞坑美十五巷360号47号楼', '1995-03-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7920710889', '潘詩涵', 0, '2073596404', 0, '440921199501331499', '中国广州市白云区小坪东路873号43楼', '1995-06-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0430721545', '薛子韬', 0, '283357614', 0, '440921199511213769', '中国成都市成华区玉双路6号118号33楼', '1995-11-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3821726449', '邹嘉伦', 1, '7552360157', 0, '440921199502001937', '中国深圳罗湖区田贝一路244号11号楼', '1995-10-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6600739984', '顾震南', 1, '15314227694', 0, '440921199522320892', '中国深圳罗湖区蔡屋围深南东路834号华润大厦44室', '1995-09-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9445145759', '崔安琪', 1, '18559484163', 0, '440921199511124272', '中国北京市房山区岳琉路834号42室', '1995-02-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1501323912', '夏晓明', 0, '16760839471', 0, '440921199500203081', '中国上海市黄浦区淮海中路510号华润大厦29室', '1995-09-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3796749103', '韦宇宁', 0, '17428316286', 0, '440921199502107707', '中国东莞坑美十五巷846号华润大厦42室', '1995-06-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9826076772', '唐璐', 1, '7556571926', 0, '440921199520135266', '中国深圳罗湖区田贝一路336号19栋', '1995-05-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5590742506', '邵安琪', 1, '17567754871', 0, '440921199522224946', '中国成都市成华区二仙桥东三路763号8号楼', '1995-07-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4966479703', '黎秀英', 0, '18618941967', 0, '440921199512021059', '中国东莞珊瑚路789号6号楼', '1995-07-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0689833029', '许震南', 0, '75571344167', 0, '440921199521020313', '中国深圳罗湖区田贝一路93号36栋', '1995-07-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1186887272', '胡璐', 1, '7690589683', 0, '440921199502025398', '中国东莞坑美十五巷919号5楼', '1995-02-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5378301282', '钟子韬', 0, '7690325487', 0, '440921199511007394', '中国东莞珊瑚路511号49室', '1995-11-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7954044248', '邹云熙', 1, '13155231381', 0, '440921199522028847', '中国中山京华商圈华夏街829号14楼', '1995-04-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8357325207', '蔡子异', 1, '17330926302', 0, '440921199521026874', '中国深圳龙岗区学园一巷940号23楼', '1995-11-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5458503791', '江子异', 1, '15777165610', 0, '440921199512232797', '中国中山京华商圈华夏街740号47栋', '1995-11-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3888832610', '林晓明', 0, '7609675346', 0, '440921199520306907', '中国中山紫马岭商圈中山五路458号31栋', '1995-01-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8469918751', '宋岚', 0, '17388778479', 0, '440921199501222389', '中国上海市徐汇区虹桥路802号8号楼', '1995-09-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9326820562', '方晓明', 0, '17504622048', 0, '440921199510104558', '中国北京市延庆区028县道23号24号楼', '1995-08-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0324869342', '曾杰宏', 0, '16533495619', 0, '440921199522312571', '中国成都市锦江区红星路三段768号1室', '1995-05-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1287304718', '孙睿', 1, '2181771021', 0, '440921199521128636', '中国上海市浦东新区健祥路403号15室', '1995-10-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6341497683', '傅嘉伦', 0, '17671770319', 0, '440921199510135969', '中国成都市成华区二仙桥东三路643号华润大厦43室', '1995-02-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4559744566', '钱子韬', 1, '19877200893', 0, '440921199501132194', '中国上海市浦东新区健祥路897号华润大厦2室', '1995-02-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9934023782', '崔云熙', 1, '219679979', 0, '440921199512013414', '中国上海市徐汇区虹桥路196号6号楼', '1995-04-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1540907464', '黎晓明', 1, '2036406833', 0, '440921199500335744', '中国广州市白云区机场路棠苑街五巷597号47栋', '1995-04-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1709621049', '杜睿', 0, '2882635208', 0, '440921199500312216', '中国成都市成华区双庆路533号29号楼', '1995-06-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0459227308', '黄宇宁', 0, '16271277408', 0, '440921199510333226', '中国东莞珊瑚路700号华润大厦35室', '1995-04-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9002454630', '徐震南', 0, '75538955778', 0, '440921199502032975', '中国深圳罗湖区清水河一路602号19室', '1995-11-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6672069617', '许子韬', 0, '18923212841', 0, '440921199510202453', '中国成都市成华区双庆路972号45栋', '1995-12-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2695188648', '夏岚', 0, '16110829115', 0, '440921199522114839', '中国深圳龙岗区学园一巷792号9号楼', '1995-11-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0300032368', '冯晓明', 0, '218835756', 0, '440921199512336572', '中国上海市徐汇区虹桥路521号25楼', '1995-12-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1417711539', '莫安琪', 0, '14896568656', 0, '440921199500339108', '中国深圳龙岗区布吉镇西环路603号50室', '1995-12-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6580042392', '赵岚', 0, '218930000', 0, '440921199522214003', '中国上海市徐汇区虹桥路779号34室', '1995-09-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3002987402', '汤宇宁', 0, '2888358196', 0, '440921199501302160', '中国成都市成华区双庆路150号42室', '1995-07-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2482190336', '朱子异', 0, '14853522667', 0, '440921199501311018', '中国北京市海淀区清河中街68号802号39栋', '1995-04-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1974393777', '邱子韬', 0, '283619296', 0, '440921199510018729', '中国成都市锦江区人民南路四段242号华润大厦2室', '1995-11-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3585458399', '邵晓明', 1, '2114027985', 0, '440921199520108616', '中国上海市闵行区宾川路912号7楼', '1995-05-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6219918437', '钱秀英', 0, '13756764322', 0, '440921199510018000', '中国中山天河区大信商圈大信南路266号1楼', '1995-02-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9000350774', '周杰宏', 0, '18057893126', 0, '440921199520304781', '中国中山天河区大信商圈大信南路510号16号楼', '1995-08-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7523655606', '余安琪', 1, '16039670967', 0, '440921199510120095', '中国中山天河区大信商圈大信南路320号22室', '1995-06-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0342697436', '熊安琪', 1, '2842225915', 0, '440921199521213364', '中国成都市成华区双庆路107号14栋', '1995-07-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1731289342', '秦致远', 1, '13902555363', 0, '440921199502131159', '中国上海市浦东新区橄榄路938号31号楼', '1995-06-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4254489909', '郝安琪', 1, '205071970', 0, '440921199502236850', '中国广州市白云区小坪东路454号9楼', '1995-09-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7583734394', '何安琪', 1, '2088282479', 0, '440921199510128902', '中国广州市海珠区江南西路870号1楼', '1995-10-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6255861473', '江云熙', 0, '7602056017', 0, '440921199500130777', '中国中山天河区大信商圈大信南路262号39室', '1995-04-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6365141446', '郭云熙', 1, '1010152103', 0, '440921199520216634', '中国北京市延庆区028县道532号25栋', '1995-07-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3205556470', '范秀英', 0, '200264628', 0, '440921199500224343', '中国广州市越秀区中山二路312号27号楼', '1995-08-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5266086799', '沈秀英', 1, '18862944451', 0, '440921199512235623', '中国中山乐丰六路589号28栋', '1995-05-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6368897776', '唐云熙', 0, '75537668434', 0, '440921199521115061', '中国深圳龙岗区学园一巷314号50号楼', '1995-03-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0268453412', '萧詩涵', 0, '2016765699', 0, '440921199520206533', '中国广州市天河区天河路715号7号楼', '1995-12-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3323154656', '方璐', 1, '17508857700', 0, '440921199502111409', '中国中山天河区大信商圈大信南路718号华润大厦44室', '1995-04-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8975383882', '郝宇宁', 0, '17043587701', 0, '440921199512105867', '中国上海市闵行区宾川路60号华润大厦11室', '1995-05-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2577929018', '侯詩涵', 1, '17866324573', 0, '440921199510209780', '中国成都市锦江区红星路三段932号42号楼', '1995-09-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2044931988', '邓子韬', 1, '107164812', 0, '440921199520321978', '中国北京市西城区西長安街918号华润大厦24室', '1995-10-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5890315934', '常震南', 0, '18422528121', 0, '440921199520330703', '中国北京市东城区东单王府井东街71号37栋', '1995-05-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8586000380', '熊子异', 1, '75589770832', 0, '440921199500201670', '中国深圳罗湖区蔡屋围深南东路425号9室', '1995-03-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9450221603', '廖安琪', 1, '17924795966', 0, '440921199510132451', '中国东莞坑美十五巷57号华润大厦8室', '1995-06-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5996210327', '贺宇宁', 0, '14423233391', 0, '440921199521233604', '中国广州市白云区机场路棠苑街五巷305号23号楼', '1995-11-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4318510078', '彭杰宏', 1, '217903138', 0, '440921199500338769', '中国上海市闵行区宾川路291号32室', '1995-06-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6259755765', '武秀英', 0, '1045744098', 0, '440921199501316623', '中国北京市朝阳区三里屯路334号11室', '1995-07-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1431382243', '杜詩涵', 0, '19091031292', 0, '440921199522124722', '中国广州市天河区天河路915号4号楼', '1995-09-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2727940425', '林秀英', 1, '16299803014', 0, '440921199512315129', '中国成都市成华区玉双路6号916号22室', '1995-01-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5009775026', '谭睿', 0, '7693131323', 0, '440921199502323390', '中国东莞东泰五街181号1栋', '1995-01-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0684648831', '毛致远', 0, '16007756715', 0, '440921199510337528', '中国深圳罗湖区清水河一路488号27栋', '1995-10-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1172118411', '丁子韬', 0, '14132172383', 0, '440921199500327908', '中国北京市西城区复兴门内大街382号35栋', '1995-03-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5843261984', '汪子异', 0, '13707512975', 0, '440921199500230657', '中国广州市白云区小坪东路163号18室', '1995-05-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6838035738', '袁嘉伦', 1, '16058723080', 0, '440921199512330222', '中国成都市成华区玉双路6号599号43楼', '1995-10-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8912357203', '唐嘉伦', 0, '19429012310', 0, '440921199521111430', '中国成都市成华区二仙桥东三路670号26楼', '1995-04-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8763933097', '卢安琪', 0, '103008297', 0, '440921199522227443', '中国北京市東城区東直門內大街68号5栋', '1995-07-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6770674596', '侯晓明', 1, '7603328838', 0, '440921199500339461', '中国中山天河区大信商圈大信南路56号49室', '1995-02-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1622180874', '程震南', 1, '76042791295', 0, '440921199510136253', '中国中山京华商圈华夏街966号25号楼', '1995-02-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2070820933', '刘岚', 1, '1046254056', 0, '440921199501104022', '中国北京市东城区东单王府井东街642号华润大厦42室', '1995-03-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2188826282', '吕震南', 1, '18208365904', 0, '440921199510018568', '中国上海市浦东新区健祥路633号22栋', '1995-12-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8497238612', '史子韬', 0, '210698884', 0, '440921199501320284', '中国上海市闵行区宾川路66号45号楼', '1995-01-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1685845621', '吕杰宏', 1, '17962027869', 0, '440921199500215131', '中国上海市黄浦区淮海中路573号8楼', '1995-05-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6126974381', '卢杰宏', 1, '15018604686', 0, '440921199511027870', '中国东莞环区南街二巷312号49室', '1995-03-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5823743835', '秦睿', 0, '201744330', 0, '440921199502132690', '中国广州市海珠区江南西路569号华润大厦49室', '1995-06-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8146908807', '何杰宏', 1, '18620929737', 0, '440921199502300112', '中国广州市白云区机场路棠苑街五巷379号34楼', '1995-04-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0209505867', '高秀英', 0, '204192876', 0, '440921199520128018', '中国广州市白云区机场路棠苑街五巷376号华润大厦12室', '1995-11-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6492969222', '丁子异', 1, '17345686709', 0, '440921199501307151', '中国成都市成华区二仙桥东三路846号35栋', '1995-04-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3388020616', '杜子韬', 0, '15124629923', 0, '440921199512114513', '中国北京市房山区岳琉路142号40号楼', '1995-02-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3046500559', '郝致远', 1, '76955139402', 0, '440921199502139502', '中国东莞东泰五街339号23室', '1995-05-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1539787461', '于岚', 1, '100978206', 0, '440921199511138994', '中国北京市延庆区028县道357号5号楼', '1995-04-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3889991156', '黄云熙', 0, '76911859785', 0, '440921199520225634', '中国东莞坑美十五巷89号华润大厦35室', '1995-03-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0359373185', '孟岚', 0, '15560123324', 0, '440921199512304185', '中国深圳罗湖区蔡屋围深南东路267号9栋', '1995-12-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0551952535', '郝秀英', 1, '1086950435', 0, '440921199501219763', '中国北京市東城区東直門內大街459号26室', '1995-10-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0577985531', '吕璐', 0, '17463442065', 0, '440921199511020218', '中国深圳龙岗区布吉镇西环路866号44栋', '1995-03-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4948475480', '董嘉伦', 0, '18641838221', 0, '440921199520324593', '中国北京市西城区西長安街20号27楼', '1995-05-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7357694844', '李詩涵', 0, '19751466499', 0, '440921199522338828', '中国成都市成华区双庆路38号5号楼', '1995-04-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8708492873', '熊子韬', 0, '13885653233', 0, '440921199522219686', '中国深圳罗湖区蔡屋围深南东路226号14楼', '1995-12-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0779003783', '丁秀英', 1, '7550767575', 0, '440921199522202617', '中国深圳罗湖区蔡屋围深南东路660号37栋', '1995-06-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4201414533', '梁詩涵', 0, '104874458', 0, '440921199510122500', '中国北京市房山区岳琉路30号48栋', '1995-06-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6615898181', '傅秀英', 1, '75533388051', 0, '440921199522238335', '中国深圳罗湖区田贝一路673号15楼', '1995-08-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0796925154', '冯睿', 1, '76092379529', 0, '440921199511033798', '中国中山紫马岭商圈中山五路777号44栋', '1995-05-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3876029117', '谢璐', 0, '14863203439', 0, '440921199511234293', '中国东莞珊瑚路694号22号楼', '1995-03-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0029922831', '蔡云熙', 0, '14015392393', 0, '440921199522205536', '中国北京市西城区西長安街602号20室', '1995-11-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0922257504', '姜詩涵', 0, '7604094175', 0, '440921199502324129', '中国中山天河区大信商圈大信南路209号24室', '1995-08-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2273248947', '钟致远', 0, '108272180', 0, '440921199511118165', '中国北京市東城区東直門內大街716号华润大厦40室', '1995-06-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3970853072', '夏子韬', 1, '15263011266', 0, '440921199500020807', '中国东莞坑美十五巷921号12楼', '1995-09-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3372347797', '邹詩涵', 0, '7694530995', 0, '440921199522031745', '中国东莞环区南街二巷901号24栋', '1995-11-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5531015756', '陶杰宏', 1, '15222368695', 0, '440921199500237739', '中国成都市锦江区人民南路四段880号华润大厦7室', '1995-07-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7333040056', '史秀英', 1, '7692176658', 0, '440921199522001043', '中国东莞坑美十五巷689号25楼', '1995-08-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6590965578', '姜晓明', 1, '19417101417', 0, '440921199500334222', '中国上海市浦东新区健祥路441号21室', '1995-03-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6142725256', '程睿', 0, '19215098461', 0, '440921199521229614', '中国广州市越秀区中山二路38号48室', '1995-05-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2754508777', '苏杰宏', 0, '17412929192', 0, '440921199502214473', '中国成都市成华区二仙桥东三路435号华润大厦38室', '1995-02-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2178700094', '段震南', 0, '7603849901', 0, '440921199500135369', '中国中山天河区大信商圈大信南路421号华润大厦32室', '1995-08-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6308124537', '郑宇宁', 0, '2023811837', 0, '440921199521133061', '中国广州市海珠区江南西路264号华润大厦30室', '1995-05-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2398475167', '苏嘉伦', 0, '2167202944', 0, '440921199521239582', '中国上海市浦东新区健祥路102号42栋', '1995-10-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1458145271', '李云熙', 0, '2063410757', 0, '440921199500312638', '中国广州市海珠区江南西路993号华润大厦37室', '1995-01-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9106569424', '吕致远', 0, '213425495', 0, '440921199512019123', '中国上海市浦东新区健祥路441号24室', '1995-09-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5072741444', '贺安琪', 0, '14183588465', 0, '440921199500300204', '中国中山天河区大信商圈大信南路66号华润大厦18室', '1995-04-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7269504648', '萧杰宏', 1, '14802834900', 0, '440921199521231511', '中国中山天河区大信商圈大信南路686号华润大厦1室', '1995-09-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3488053364', '高詩涵', 1, '75593615354', 0, '440921199502107644', '中国深圳罗湖区清水河一路652号34楼', '1995-10-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7726938511', '顾岚', 1, '18606321831', 0, '440921199512033609', '中国成都市成华区二仙桥东三路447号6栋', '1995-10-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9471330373', '卢致远', 0, '1005099412', 0, '440921199500028355', '中国北京市西城区西長安街176号4号楼', '1995-12-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0802969948', '武嘉伦', 0, '7692541158', 0, '440921199510023404', '中国东莞东泰五街241号28楼', '1995-11-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5960969779', '阎致远', 0, '1029241451', 0, '440921199522038184', '中国北京市西城区西長安街648号34栋', '1995-07-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9972229249', '苏睿', 1, '201922160', 0, '440921199510210145', '中国广州市白云区小坪东路147号12号楼', '1995-07-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3119775385', '刘致远', 0, '19481498167', 0, '440921199511138611', '中国广州市越秀区中山二路197号47栋', '1995-04-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7955384537', '戴宇宁', 1, '76006845714', 0, '440921199522110385', '中国中山天河区大信商圈大信南路533号30室', '1995-03-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5622570095', '陆子韬', 0, '17899802692', 0, '440921199511225290', '中国北京市東城区東直門內大街103号华润大厦17室', '1995-06-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0487872726', '杨震南', 1, '15328751878', 0, '440921199500225976', '中国北京市东城区东单王府井东街383号4楼', '1995-05-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8617949725', '段宇宁', 1, '17517008735', 0, '440921199500317991', '中国上海市黄浦区淮海中路977号华润大厦4室', '1995-01-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3811420667', '钟睿', 1, '1063392376', 0, '440921199511322896', '中国北京市西城区复兴门内大街868号49楼', '1995-11-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4318537950', '邱杰宏', 1, '19699769177', 0, '440921199500316998', '中国北京市西城区西長安街492号29室', '1995-09-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4797656233', '林璐', 1, '14746022139', 0, '440921199500105945', '中国上海市黄浦区淮海中路884号1楼', '1995-09-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6773342100', '常杰宏', 1, '14989681203', 0, '440921199521115611', '中国上海市浦东新区橄榄路148号18号楼', '1995-08-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8404775149', '江安琪', 0, '1078124510', 0, '440921199500221284', '中国北京市房山区岳琉路707号25号楼', '1995-10-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9254684091', '冯岚', 1, '15947166371', 0, '440921199501018415', '中国广州市海珠区江南西路793号2室', '1995-08-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5415696678', '严詩涵', 0, '7695868289', 0, '440921199502239943', '中国东莞东泰五街598号9楼', '1995-02-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7613228300', '武晓明', 0, '2185967320', 0, '440921199520038353', '中国上海市黄浦区淮海中路239号40栋', '1995-09-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9638317441', '于宇宁', 1, '18678972110', 0, '440921199522027290', '中国成都市锦江区人民南路四段395号41栋', '1995-08-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8881613973', '史震南', 0, '1012871628', 0, '440921199502030447', '中国北京市西城区西長安街769号2栋', '1995-01-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6065194682', '钟嘉伦', 1, '17259194257', 0, '440921199500020414', '中国深圳龙岗区布吉镇西环路741号47号楼', '1995-03-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2852329247', '钱秀英', 0, '2133201414', 0, '440921199510013985', '中国上海市徐汇区虹桥路770号32栋', '1995-08-31', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4821017369', '程璐', 1, '7606027605', 0, '440921199521312829', '中国中山京华商圈华夏街415号13栋', '1995-04-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1307356566', '谢秀英', 0, '75521986883', 0, '440921199510113699', '中国深圳罗湖区清水河一路92号47室', '1995-11-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3106151742', '马宇宁', 1, '2893122398', 0, '440921199502238215', '中国成都市成华区二仙桥东三路934号华润大厦34室', '1995-11-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5319711597', '尹嘉伦', 0, '17124373437', 0, '440921199500302175', '中国上海市浦东新区健祥路763号华润大厦3室', '1995-08-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3271778668', '阎詩涵', 0, '7607425819', 0, '440921199500221012', '中国中山紫马岭商圈中山五路242号34楼', '1995-06-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1164089356', '侯嘉伦', 1, '18308595585', 0, '440921199510338912', '中国广州市越秀区中山二路859号40室', '1995-09-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5088554017', '赵嘉伦', 1, '16889884829', 0, '440921199512121145', '中国成都市成华区玉双路6号848号29号楼', '1995-11-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5125684207', '于岚', 0, '1060788275', 0, '440921199501020325', '中国北京市海淀区清河中街68号589号45室', '1995-03-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5887932885', '常震南', 0, '7692919694', 0, '440921199520135261', '中国东莞珊瑚路722号6号楼', '1995-05-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0468217944', '丁璐', 0, '2819416847', 0, '440921199512324293', '中国成都市成华区二仙桥东三路959号12栋', '1995-10-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3083443541', '陆晓明', 1, '7556281475', 0, '440921199521222420', '中国深圳龙岗区布吉镇西环路334号43室', '1995-11-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1523137320', '尹致远', 0, '16161935632', 0, '440921199510137927', '中国东莞坑美十五巷753号47栋', '1995-07-07', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3156783096', '叶宇宁', 0, '104103817', 0, '440921199511225033', '中国北京市東城区東直門內大街992号华润大厦40室', '1995-09-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0302980381', '姜詩涵', 1, '14136522638', 0, '440921199522222027', '中国成都市成华区玉双路6号143号14楼', '1995-05-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3460302075', '魏子韬', 0, '280579817', 0, '440921199500003440', '中国成都市成华区双庆路424号43室', '1995-01-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0625123078', '汪云熙', 0, '19865250451', 0, '440921199520123801', '中国上海市浦东新区橄榄路444号39号楼', '1995-04-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5468853322', '梁嘉伦', 0, '1061776229', 0, '440921199520038983', '中国北京市西城区西長安街136号14楼', '1995-03-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6638484256', '方子异', 0, '7556327395', 0, '440921199510008164', '中国深圳龙岗区布吉镇西环路256号48栋', '1995-03-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2506844450', '廖岚', 0, '1004835117', 0, '440921199520210216', '中国北京市海淀区清河中街68号125号40室', '1995-05-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5408398905', '董嘉伦', 0, '1099306548', 0, '440921199521029113', '中国北京市东城区东单王府井东街671号49栋', '1995-02-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3027215460', '钟震南', 0, '7694663679', 0, '440921199500000651', '中国东莞环区南街二巷80号华润大厦31室', '1995-02-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3737110873', '莫云熙', 1, '7606193186', 0, '440921199522018859', '中国中山京华商圈华夏街509号28栋', '1995-05-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0680221845', '于安琪', 1, '1046987724', 0, '440921199510006344', '中国北京市延庆区028县道750号46号楼', '1995-08-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4434407522', '杨晓明', 0, '7699806489', 0, '440921199522028412', '中国东莞坑美十五巷685号18楼', '1995-05-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6289038916', '唐云熙', 0, '7554267058', 0, '440921199512338900', '中国深圳福田区景田东一街765号华润大厦33室', '1995-11-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4785680626', '罗宇宁', 1, '103919131', 0, '440921199512238398', '中国北京市房山区岳琉路550号16号楼', '1995-08-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0181787949', '贾致远', 0, '14837962545', 0, '440921199500314116', '中国成都市锦江区红星路三段974号25号楼', '1995-10-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4411925672', '张安琪', 0, '15491839890', 0, '440921199500327513', '中国上海市黄浦区淮海中路210号华润大厦42室', '1995-07-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7069617344', '崔秀英', 0, '101809259', 0, '440921199510216023', '中国北京市西城区西長安街834号华润大厦7室', '1995-12-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2603273674', '尹嘉伦', 0, '76980110661', 0, '440921199521134761', '中国东莞珊瑚路583号49楼', '1995-10-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6883688265', '陆安琪', 1, '202231679', 0, '440921199521114064', '中国广州市越秀区中山二路515号华润大厦29室', '1995-02-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0187863496', '苏子异', 1, '19168027821', 0, '440921199500110176', '中国东莞坑美十五巷156号36楼', '1995-01-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2875884234', '卢睿', 1, '17713219736', 0, '440921199512224982', '中国上海市闵行区宾川路801号14楼', '1995-06-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9785477698', '龙子异', 1, '212786019', 0, '440921199510135870', '中国上海市黄浦区淮海中路765号华润大厦10室', '1995-04-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5106620168', '曹子异', 0, '7699390040', 0, '440921199521039698', '中国东莞坑美十五巷116号华润大厦4室', '1995-09-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8285220868', '阎致远', 0, '76996087629', 0, '440921199511036491', '中国东莞坑美十五巷11号20楼', '1995-03-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2767569751', '程致远', 1, '217590604', 0, '440921199501111402', '中国上海市黄浦区淮海中路252号47楼', '1995-12-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3455857666', '江子韬', 0, '100944888', 0, '440921199520006264', '中国北京市朝阳区三里屯路967号华润大厦45室', '1995-02-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9268255956', '薛晓明', 0, '14823330527', 0, '440921199502222845', '中国成都市成华区二仙桥东三路593号19栋', '1995-02-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3489594717', '邵安琪', 0, '19379024398', 0, '440921199501213790', '中国深圳罗湖区清水河一路859号6号楼', '1995-01-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2897747073', '彭詩涵', 0, '75513157656', 0, '440921199501208536', '中国深圳罗湖区清水河一路316号36楼', '1995-12-30', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0864337010', '宋震南', 1, '1002903466', 0, '440921199501214439', '中国北京市朝阳区三里屯路686号7楼', '1995-03-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6023041195', '夏璐', 0, '1034726392', 0, '440921199522234004', '中国北京市东城区东单王府井东街732号48楼', '1995-01-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6682184711', '陶岚', 1, '7609190412', 0, '440921199520018448', '中国中山天河区大信商圈大信南路654号33楼', '1995-02-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5686478075', '林睿', 1, '75539698749', 0, '440921199500309415', '中国深圳龙岗区学园一巷13号41室', '1995-08-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2813494895', '顾杰宏', 0, '2877512392', 0, '440921199510134601', '中国成都市锦江区人民南路四段438号48楼', '1995-08-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6327653890', '段安琪', 0, '2840549564', 0, '440921199512321533', '中国成都市锦江区人民南路四段530号华润大厦23室', '1995-05-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4410001591', '汤宇宁', 1, '100203628', 0, '440921199502223868', '中国北京市海淀区清河中街68号208号27栋', '1995-04-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0771977805', '潘云熙', 0, '16891152538', 0, '440921199520230263', '中国北京市东城区东单王府井东街943号21栋', '1995-11-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1262478866', '汪宇宁', 1, '15254179288', 0, '440921199511118378', '中国成都市成华区二仙桥东三路523号44室', '1995-02-17', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2593650108', '汪詩涵', 0, '2082391775', 0, '440921199501206174', '中国广州市白云区小坪东路101号华润大厦23室', '1995-02-26', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9841047126', '武震南', 0, '18912530192', 0, '440921199511336335', '中国北京市延庆区028县道139号24楼', '1995-05-13', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0427998705', '武子韬', 0, '17531038991', 0, '440921199500200778', '中国北京市東城区東直門內大街463号9室', '1995-08-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0215194602', '向岚', 0, '17386813132', 0, '440921199501034209', '中国北京市西城区西長安街472号华润大厦47室', '1995-02-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1548495062', '萧宇宁', 0, '7693065528', 0, '440921199502200281', '中国东莞坑美十五巷835号33室', '1995-11-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1100927217', '蔡子韬', 0, '2145101852', 0, '440921199500222137', '中国上海市浦东新区健祥路243号12号楼', '1995-10-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8911231697', '马子异', 1, '7559814830', 0, '440921199520314118', '中国深圳龙岗区学园一巷638号34栋', '1995-07-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3906868441', '许晓明', 0, '16079536157', 0, '440921199511004109', '中国深圳龙岗区学园一巷570号23室', '1995-10-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7574233769', '高嘉伦', 1, '2176844423', 0, '440921199522202421', '中国上海市浦东新区健祥路436号50栋', '1995-09-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4596330628', '余晓明', 1, '7551055751', 0, '440921199521134470', '中国深圳福田区景田东一街171号24室', '1995-08-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8574093995', '蔡詩涵', 1, '7603006375', 0, '440921199510134539', '中国中山京华商圈华夏街164号华润大厦4室', '1995-08-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5603000676', '薛致远', 0, '282584360', 0, '440921199511018878', '中国成都市成华区二仙桥东三路103号38号楼', '1995-09-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5708411586', '高嘉伦', 1, '16446456335', 0, '440921199500028975', '中国北京市延庆区028县道83号11号楼', '1995-05-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4847371321', '黄秀英', 0, '1011774954', 0, '440921199500003081', '中国北京市东城区东单王府井东街327号20栋', '1995-06-14', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2705276087', '傅子异', 1, '13051612441', 0, '440921199501130763', '中国广州市天河区天河路958号36号楼', '1995-08-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9417823426', '郝致远', 1, '202568153', 0, '440921199521039201', '中国广州市白云区小坪东路244号华润大厦50室', '1995-09-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8962785891', '杨宇宁', 0, '1096293529', 0, '440921199511017008', '中国北京市房山区岳琉路533号49楼', '1995-10-24', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3224665789', '姜詩涵', 0, '2166754960', 0, '440921199521332564', '中国上海市浦东新区橄榄路834号29栋', '1995-12-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3842578615', '刘岚', 0, '17827535336', 0, '440921199500317734', '中国深圳龙岗区布吉镇西环路112号华润大厦28室', '1995-09-16', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2983464354', '谭岚', 0, '16810710166', 0, '440921199510317247', '中国北京市朝阳区三里屯路990号华润大厦27室', '1995-03-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4174677989', '周子韬', 1, '18288237233', 0, '440921199512010010', '中国北京市房山区岳琉路947号18号楼', '1995-05-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-0200093143', '谢睿', 1, '13649145865', 0, '440921199512309245', '中国上海市徐汇区虹桥路528号37楼', '1995-04-09', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2477041961', '钟詩涵', 0, '19737681236', 0, '440921199521302393', '中国北京市延庆区028县道450号35楼', '1995-04-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4049197603', '向嘉伦', 1, '1021663234', 0, '440921199520338315', '中国北京市西城区复兴门内大街687号12室', '1995-05-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9050493869', '戴璐', 0, '16094135327', 0, '440921199520131074', '中国深圳罗湖区田贝一路834号华润大厦31室', '1995-06-12', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1899717284', '林宇宁', 0, '13969493393', 0, '440921199500109384', '中国上海市徐汇区虹桥路235号34栋', '1995-02-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1056989798', '孟秀英', 1, '14978933787', 0, '440921199511208440', '中国中山京华商圈华夏街761号23室', '1995-03-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9995080460', '汤云熙', 1, '14931913581', 0, '440921199511125570', '中国中山天河区大信商圈大信南路384号31号楼', '1995-03-15', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9500135798', '邵睿', 1, '13652024743', 0, '440921199512116213', '中国北京市朝阳区三里屯路531号华润大厦29室', '1995-09-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6999016454', '朱云熙', 1, '16538747521', 0, '440921199512135864', '中国深圳罗湖区田贝一路770号33号楼', '1995-09-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4915682910', '戴杰宏', 1, '7552714172', 0, '440921199521115027', '中国深圳龙岗区布吉镇西环路452号36栋', '1995-04-29', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3988896282', '魏安琪', 0, '107814885', 0, '440921199501214410', '中国北京市房山区岳琉路200号27室', '1995-04-19', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1599422339', '谢嘉伦', 1, '15943334150', 0, '440921199510126761', '中国成都市锦江区人民南路四段587号7室', '1995-01-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-2131741279', '苏晓明', 0, '19749538043', 0, '440921199521124959', '中国深圳龙岗区学园一巷496号华润大厦15室', '1995-05-20', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7529294757', '秦嘉伦', 0, '204177008', 0, '440921199510225687', '中国广州市海珠区江南西路725号16号楼', '1995-12-08', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5416659603', '廖璐', 1, '14789984896', 0, '440921199500125943', '中国北京市房山区岳琉路329号40室', '1995-02-28', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9549732648', '武晓明', 1, '101830791', 0, '440921199500001315', '中国北京市東城区東直門內大街619号华润大厦3室', '1995-03-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-7170191105', '曾震南', 0, '15570976972', 0, '440921199511234059', '中国成都市成华区双庆路851号15楼', '1995-05-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4530692982', '姜子异', 0, '14159317275', 0, '440921199500331248', '中国深圳龙岗区学园一巷677号6栋', '1995-01-11', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9809255048', '李云熙', 1, '13342532701', 0, '440921199502136839', '中国成都市成华区玉双路6号668号3栋', '1995-04-25', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1230855665', '江云熙', 0, '19885461577', 0, '440921199510106467', '中国广州市越秀区中山二路707号华润大厦44室', '1995-10-10', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5976945930', '邵璐', 0, '7604118285', 0, '440921199511208235', '中国中山乐丰六路315号32楼', '1995-10-04', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-3923363932', '黄嘉伦', 1, '15175091057', 0, '440921199512222371', '中国北京市朝阳区三里屯路641号38室', '1995-01-05', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-8454672352', '熊嘉伦', 1, '17624293813', 0, '440921199520112015', '中国北京市朝阳区三里屯路124号华润大厦43室', '1995-06-02', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6380123803', '杨岚', 0, '16805263576', 0, '440921199502201938', '中国广州市越秀区中山二路544号41栋', '1995-01-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-4264636106', '傅震南', 1, '15587393632', 0, '440921199502316147', '中国成都市成华区玉双路6号389号21号楼', '1995-11-27', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1024742215', '龙杰宏', 0, '13964037174', 0, '440921199502005165', '中国广州市越秀区中山二路828号华润大厦49室', '1995-04-23', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5997116834', '林詩涵', 1, '14954290425', 0, '440921199511128180', '中国广州市越秀区中山二路995号20室', '1995-09-18', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-1301570310', '范睿', 1, '16728920362', 0, '440921199511205449', '中国深圳罗湖区蔡屋围深南东路405号44号楼', '1995-09-22', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9416517886', '丁子异', 0, '280301682', 0, '440921199510137491', '中国成都市成华区玉双路6号808号25室', '1995-06-06', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-5027706049', '姜晓明', 1, '15950652660', 0, '440921199502137893', '中国广州市白云区小坪东路332号13室', '1995-05-03', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-6485791225', '张安琪', 0, '17514820190', 0, '440921199521303930', '中国广州市天河区天河路689号45室', '1995-03-21', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); +INSERT INTO "public"."customer" VALUES ('TS-9059236850', '钟岚', 0, '203777425', 0, '440921199522028113', '中国广州市白云区机场路棠苑街五巷294号44栋', '1995-01-01', 0, 0, 'System', '2022-12-06', 'System', '2022-12-06'); + +-- ---------------------------- +-- Table structure for custospend +-- ---------------------------- +DROP TABLE IF EXISTS "public"."custospend"; +CREATE TABLE "public"."custospend" ( + "SpendId" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "RoomNo" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, + "CustoNo" varchar(15) COLLATE "pg_catalog"."default" NOT NULL, + "SpendName" varchar(25) COLLATE "pg_catalog"."default" NOT NULL, + "SpendAmount" int4 NOT NULL, + "SpendPrice" numeric(10,2) NOT NULL, + "SpendMoney" numeric(10,2) NOT NULL, + "SpendTime" timestamp(6) NOT NULL, + "MoneyState" varchar(9) COLLATE "pg_catalog"."default", + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."custospend"."SpendId" IS '记录编号'; +COMMENT ON COLUMN "public"."custospend"."RoomNo" IS '房间编号'; +COMMENT ON COLUMN "public"."custospend"."CustoNo" IS '客户编号'; +COMMENT ON COLUMN "public"."custospend"."SpendName" IS '商品名称'; +COMMENT ON COLUMN "public"."custospend"."SpendAmount" IS '商品数量'; +COMMENT ON COLUMN "public"."custospend"."SpendPrice" IS '商品价格'; +COMMENT ON COLUMN "public"."custospend"."SpendMoney" IS '消费总额'; +COMMENT ON COLUMN "public"."custospend"."SpendTime" IS '消费时间'; +COMMENT ON COLUMN "public"."custospend"."MoneyState" IS '结算状态'; +COMMENT ON COLUMN "public"."custospend"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."custospend"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."custospend"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."custospend"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."custospend"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."custospend" IS '商品消费表'; + +-- ---------------------------- +-- Records of custospend +-- ---------------------------- +INSERT INTO "public"."custospend" VALUES (1, 'BS005', 'TS1081', '乐事薯片(原味)', 27, 20.00, 540.00, '2020-04-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (2, 'BS001', 'TS1571', '片(原味)', 1, 20.00, 0.00, '2020-08-21 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (3, 'BD001', 'TS1862', '特级DLS', 2, 40.00, 80.00, '2018-12-20 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (4, 'BD001', 'TS1239', '三只松鼠夏威夷坚果', 2, 40.00, 80.00, '2020-05-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (5, 'BS005', 'TS1081', '特级杜蕾斯', 27, 40.00, 1080.00, '2020-04-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (6, 'BD002', 'TS1816', '雪碧', 1, 2.50, 2.50, '2018-12-21 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (7, 'BD002', 'TS1816', '特级DLS', 1, 40.00, 40.00, '2018-12-21 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (8, 'BS005', 'TS1081', '青岛啤酒', 27, 15.00, 405.00, '2020-04-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (9, 'BS005', 'TS1081', '可口可乐', 31, 10.00, 310.00, '2020-04-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (10, 'HD006', 'TS1364', '居住HD0057天', 7, 4375.00, 4375.00, '2020-04-14 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (11, 'ZT002', 'TS1364', '居住HD0067天', 7, 4375.00, 4375.00, '2020-04-14 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (12, 'ZT002', 'TS1364', '可口可乐', 5, 2.50, 12.50, '2020-04-14 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (13, 'HD003', 'TS1001', '居住BD0050天', 0, 999.00, 0.00, '2020-04-26 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (14, 'BD004', 'TS1480', '火腿肠', 3, 10.00, 30.00, '2020-04-29 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (15, 'BD004', 'TS1480', '雪碧', 3, 2.50, 7.50, '2020-04-29 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (16, 'BD004', 'TS1480', '92拉菲', 2, 10800.00, 21600.00, '2020-04-29 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (17, 'HD001', 'TS1862', '康师傅方便面', 10, 10.00, 100.00, '2018-12-26 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (18, 'BD007', 'TS1002', '居住BS00865天', 65, 27625.00, 27625.00, '2020-07-05 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (19, 'BS007', 'TS1003', '居住BS00965天', 65, 27625.00, 27625.00, '2020-07-05 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (20, 'ZT005', 'TS1005', '居住HD00168天', 68, 42500.00, 42500.00, '2020-05-10 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (21, 'ZT005', 'TS1005', '特级杜蕾斯', 10, 40.00, 400.00, '2020-05-13 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (22, 'BS003', 'TS1084', '特级杜蕾斯', 20, 40.00, 800.00, '2018-12-26 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (23, 'BS007', 'TS1003', '特级杜蕾斯', 1, 40.00, 40.00, '2020-05-22 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (24, 'HS003', 'TS1194', '拉菲', 2, 10000.00, 20000.00, '2018-12-27 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (25, 'HS003', 'TS1194', '扑克牌', 2, 5.00, 10.00, '2018-12-27 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (26, 'HS003', 'TS1194', '火腿肠', 1, 10.00, 10.00, '2018-12-27 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (27, 'BD001', 'TS1365', '居住HD00247天', 47, 29375.00, 29375.00, '2020-07-19 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (28, 'BD001', 'TS1365', '香皂', 2, 25.00, 50.00, '2020-07-28 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (29, 'BD001', 'TS1365', '香皂', 2, 25.00, 50.00, '2020-07-28 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (30, 'BD001', 'TS1365', '青岛啤酒', 2, 15.00, 30.00, '2020-07-28 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (31, 'BS001', 'TS1571', 'WAHAHA', 2, 5.00, 10.00, '2020-08-21 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (32, 'BD002', 'TS1001', '三只松鼠夏威夷坚果', 12, 40.00, 480.00, '2019-10-07 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (33, 'BD005', 'TS1005', 'aaa', 1, 10.00, 10.00, '2020-08-22 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (34, 'ZT001', 'TS1457', '拉菲', 30, 10000.00, 300000.00, '2019-10-28 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (35, 'BD002', 'TS1001', '康师傅方便面', 1, 10.00, 10.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (36, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (37, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (38, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (39, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (40, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (41, 'BD002', 'TS1001', '康师傅方便面', 2, 10.00, 20.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (42, 'BD002', 'TS1001', '三只松鼠夏威夷坚果', 2, 40.00, 80.00, '2020-03-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (43, 'BD002', 'TS1001', '拉菲', 2, 10000.00, 20000.00, '2020-03-18 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (44, 'BD002', 'TS1001', '乐事薯片(原味)', 2, 20.00, 40.00, '2020-03-25 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (45, 'BS006', 'TS1998', '三只松鼠零食大礼包', 2, 299.00, 598.00, '2020-09-17 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (46, 'BD001', 'TS1862', '青岛啤酒', 2, 15.00, 30.00, '2018-12-20 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (47, 'HD001', 'TS1862', '雪碧', 5, 10.00, 50.00, '2018-12-26 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (48, 'HD001', 'TS1862', 'TS纪念品', 2, 10.00, 20.00, '2018-12-26 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (49, 'BS001', 'TS1005', '乐事薯片(原味)', 20, 20.00, 400.00, '2020-11-13 00:00:00', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (50, 'BS001', 'TS1005', '三只松鼠夏威夷坚果', 4, 40.00, 160.00, '2020-11-26 21:29:13', 'Settled', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."custospend" VALUES (51, 'HD008', 'TS1492', '92拉菲', 1, 10800.00, 10800.00, '2020-12-23 22:25:48', 'Settled', 0, NULL, NULL, 'WK010', '2022-01-30'); +INSERT INTO "public"."custospend" VALUES (52, 'HD008', 'TS1492', '92拉菲', 1, 10800.00, 10800.00, '2020-12-23 22:57:01', 'Settled', 0, NULL, NULL, 'WK010', '2022-01-30'); +INSERT INTO "public"."custospend" VALUES (53, 'BD010', 'TS1143', '雪碧', 2, 2.50, 5.00, '2021-01-24 17:02:12', 'Settled', 0, NULL, NULL, 'WK010', '2022-01-30'); +INSERT INTO "public"."custospend" VALUES (54, 'BD006', 'TS1347', '居住BD00270天', 70, 21000.00, 21000.00, '2021-02-09 18:04:21', 'Settled', 0, NULL, NULL, 'WK010', '2021-05-14'); +INSERT INTO "public"."custospend" VALUES (55, 'BD008', 'TS1812', '居住BD003共12天', 12, 3600.00, 3600.00, '2021-02-12 15:04:14', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); +INSERT INTO "public"."custospend" VALUES (56, 'BD008', 'TS1812', '三只松鼠夏威夷坚果', 1, 40.00, 40.00, '2021-02-12 15:54:38', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); +INSERT INTO "public"."custospend" VALUES (57, 'BD008', 'TS1812', '三只松鼠夏威夷坚果', 1, 40.00, 40.00, '2021-02-12 15:58:38', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); +INSERT INTO "public"."custospend" VALUES (58, 'BD001', 'TS1074', '黄油华夫饼', 5, 80.00, 400.00, '2021-02-16 00:30:12', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (59, 'BD008', 'TS1812', 'T仔', 20, 90.00, 1800.00, '2021-02-18 17:24:58', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); +INSERT INTO "public"."custospend" VALUES (60, 'BD002', 'R-2021009', '日清方便面', 10, 5.50, 55.00, '2021-03-11 22:34:40', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (61, 'BD002', 'R-2021009', '拉菲', 10, 1080.00, 10800.00, '2021-03-11 22:34:54', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (62, 'BD002', 'R-2021009', '92拉菲', 10, 10800.00, 108000.00, '2021-03-11 22:35:01', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (63, 'BD001', 'TS1074', '乐事薯片(原味)', 1, 20.00, 20.00, '2021-04-17 16:07:38', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (64, 'BD001', 'TS1074', '雪碧', 3, 2.50, 7.50, '2021-04-17 16:07:43', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (65, 'BD001', 'TS1074', '特级杜蕾斯', 3, 40.00, 120.00, '2021-04-17 16:07:52', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (66, 'BD001', 'TS1074', '可口可乐', 3, 10.00, 30.00, '2021-04-17 16:08:12', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (67, 'BD001', 'TS1074', '乐事薯片(原味)', 3, 20.00, 60.00, '2021-04-17 16:08:14', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (68, 'BD001', 'TS1074', '雪碧', 3, 2.50, 7.50, '2021-04-17 16:08:16', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (69, 'BD001', 'TS1074', '特级杜蕾斯', 3, 40.00, 120.00, '2021-04-17 16:08:19', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (70, 'BD001', 'TS1074', '可口可乐', 3, 10.00, 30.00, '2021-04-17 16:08:40', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (71, 'BD001', 'TS1074', '乐事薯片(原味)', 3, 20.00, 60.00, '2021-04-17 16:08:42', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (72, 'BD001', 'TS1074', '雪碧', 3, 2.50, 7.50, '2021-04-17 16:08:45', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (73, 'BD001', 'TS1074', '乐事薯片(原味)', 3, 20.00, 60.00, '2021-04-17 16:08:57', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (74, 'BD001', 'TS1074', '雪碧', 3, 2.50, 7.50, '2021-04-17 16:08:59', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (75, 'BD001', 'TS1074', '特级杜蕾斯', 3, 40.00, 120.00, '2021-04-17 16:09:02', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (76, 'BD001', 'TS1074', '三只松鼠夏威夷坚果', 3, 40.00, 120.00, '2021-04-17 16:09:04', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (77, 'BD002', 'R-2021009', '乐事薯片(原味)', 3, 20.00, 60.00, '2021-04-17 16:09:38', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-04-17'); +INSERT INTO "public"."custospend" VALUES (78, 'BD006', 'TS1347', '三只松鼠夏威夷坚果', 3, 40.00, 120.00, '2021-04-17 21:02:33', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-05-14'); +INSERT INTO "public"."custospend" VALUES (79, 'BD006', 'TS1347', '火腿肠', 5, 10.00, 50.00, '2021-04-17 21:13:30', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-05-14'); +INSERT INTO "public"."custospend" VALUES (80, 'BD006', 'TS1347', '澡巾', 5, 12.50, 62.50, '2021-04-17 21:13:36', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-05-14'); +INSERT INTO "public"."custospend" VALUES (81, 'BD006', 'TS1347', '扑克牌', 5, 5.00, 25.00, '2021-04-17 21:13:46', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-05-14'); +INSERT INTO "public"."custospend" VALUES (82, 'BD006', 'TS1347', '澡巾', 3, 12.50, 37.50, '2021-04-17 21:15:16', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-05-14'); +INSERT INTO "public"."custospend" VALUES (83, 'BD006', 'TS1347', '三只松鼠夏威夷坚果', 5, 40.00, 200.00, '2021-05-05 13:34:48', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2021-05-14'); +INSERT INTO "public"."custospend" VALUES (84, 'BD005', 'TS-20210068', '测试勿选', 1, 9999999.00, 9999999.00, '2021-06-06 00:07:49', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); +INSERT INTO "public"."custospend" VALUES (85, 'BS004', 'TS1364', '红枣', 10, 25.00, 250.00, '2021-07-17 17:45:20', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-07-17'); +INSERT INTO "public"."custospend" VALUES (86, 'BS004', 'TS1364', 'TS纪念品', 10, 10.00, 100.00, '2021-07-17 17:45:30', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-07-17'); +INSERT INTO "public"."custospend" VALUES (87, 'BS004', 'TS1364', '92拉菲', 50, 10800.00, 540000.00, '2021-07-17 17:45:49', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2021-07-17'); +INSERT INTO "public"."custospend" VALUES (88, 'BD010', 'TS1143', '测试数据(勿选)', 1, 9999999.99, 9999999.99, '2021-07-19 19:44:57', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-01-30'); +INSERT INTO "public"."custospend" VALUES (89, 'ZT002', 'TS-20210078', '黄油华夫饼', 2, 80.00, 160.00, '2022-01-30 23:38:14', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-02-26'); +INSERT INTO "public"."custospend" VALUES (90, 'ZT002', 'TS-20210078', '92拉菲', 5, 10800.00, 54000.00, '2022-01-30 23:38:52', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-02-26'); +INSERT INTO "public"."custospend" VALUES (363, 'BD001', 'TS001344013384', '雪碧', 1, 2.50, 2.50, '2022-04-05 21:38:31', 'Settled', 0, NULL, '0001-01-01', '', '2022-05-23'); +INSERT INTO "public"."custospend" VALUES (365, 'BD001', 'TS001344013384', '三只松鼠夏威夷坚果', 1, 40.00, 40.00, '2022-04-05 21:38:38', 'Settled', 0, NULL, '0001-01-01', '', '2022-05-23'); +INSERT INTO "public"."custospend" VALUES (370, 'BD001', 'TS001344013384', '可口可乐', 1, 10.00, 10.00, '2022-04-06 15:21:49', 'Settled', 0, NULL, '0001-01-01', '', '2022-05-23'); +INSERT INTO "public"."custospend" VALUES (372, 'BD001', 'TS001344013384', '黄油华夫饼', 1, 80.00, 80.00, '2022-04-06 15:21:55', 'Settled', 0, NULL, '0001-01-01', '', '2022-05-23'); +INSERT INTO "public"."custospend" VALUES (102, 'ZT005', 'TS-20210078', '火腿肠', 13, 10.00, 130.00, '2022-02-26 13:59:32', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-11-17'); +INSERT INTO "public"."custospend" VALUES (150, 'ZT005', 'TS-20210078', '毛巾', 3, 10.00, 30.00, '2022-02-26 15:58:38', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-11-17'); +INSERT INTO "public"."custospend" VALUES (656, 'BD012', 'TS004121649776', '哇哈哈矿泉水', 2, 3.00, 6.00, '2022-11-18 16:10:39', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-12-04'); +INSERT INTO "public"."custospend" VALUES (658, 'BD012', 'TS004121649776', '白象方便面', 2, 5.00, 10.00, '2022-11-18 16:10:53', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-12-04'); +INSERT INTO "public"."custospend" VALUES (660, 'BD012', 'TS004121649776', '老婆饼', 1, 15.00, 15.00, '2022-11-18 16:11:05', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-12-04'); +INSERT INTO "public"."custospend" VALUES (592, 'BD009', 'TS003574305322', '青岛啤酒', 10, 15.00, 150.00, '2022-10-04 00:49:02', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-12-05'); +INSERT INTO "public"."custospend" VALUES (687, 'BS003', 'TS006957585451', '三只松鼠零食大礼包', 5, 299.00, 1495.00, '2022-12-04 13:31:22', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-12-05'); +INSERT INTO "public"."custospend" VALUES (614, 'BD014', 'TS096263040047', '特级杜蕾斯', 2, 40.00, 80.00, '2022-11-17 11:09:17', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-12-06'); +INSERT INTO "public"."custospend" VALUES (616, 'BD014', 'TS096263040047', '扑克牌', 1, 5.00, 5.00, '2022-11-17 11:10:04', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-12-06'); +INSERT INTO "public"."custospend" VALUES (627, 'ZT003', 'TS063603838018', '可口可乐', 3, 10.00, 30.00, '2022-11-18 09:54:08', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2022-12-06'); +INSERT INTO "public"."custospend" VALUES (632, 'ZT003', 'TS063603838018', '香皂', 1, 25.00, 25.00, '2022-11-18 09:55:25', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-12-06'); +INSERT INTO "public"."custospend" VALUES (629, 'ZT003', 'TS063603838018', '蟹味瓜子仁', 2, 30.00, 60.00, '2022-11-18 09:54:27', 'Settled', 1, NULL, '0001-01-01', 'WK010', '2022-12-06'); +INSERT INTO "public"."custospend" VALUES (635, 'ZT003', 'TS063603838018', '黄油华夫饼', 1, 80.00, 80.00, '2022-11-18 09:55:43', 'Settled', 0, NULL, '0001-01-01', 'WK010', '2022-12-06'); + +-- ---------------------------- +-- Table structure for dept +-- ---------------------------- +DROP TABLE IF EXISTS "public"."dept"; +CREATE TABLE "public"."dept" ( + "dept_no" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, + "dept_name" varchar(100) COLLATE "pg_catalog"."default", + "dept_desc" varchar(255) COLLATE "pg_catalog"."default", + "dept_date" date, + "dept_leader" varchar(20) COLLATE "pg_catalog"."default", + "dept_parent" varchar(50) COLLATE "pg_catalog"."default", + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."dept"."dept_no" IS '部门编号'; +COMMENT ON COLUMN "public"."dept"."dept_name" IS '部门名称'; +COMMENT ON COLUMN "public"."dept"."dept_desc" IS '部门描述'; +COMMENT ON COLUMN "public"."dept"."dept_date" IS '创建时间(部门)'; +COMMENT ON COLUMN "public"."dept"."dept_leader" IS '部门主管'; +COMMENT ON COLUMN "public"."dept"."dept_parent" IS '上级部门'; +COMMENT ON COLUMN "public"."dept"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."dept"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."dept"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."dept"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."dept"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."dept" IS '部门表'; + +-- ---------------------------- +-- Records of dept +-- ---------------------------- +INSERT INTO "public"."dept" VALUES ('D-001', '经理部', '各部门经理', '2019-10-01', 'WK010', NULL, 0, 'System', '2019-10-01', NULL, NULL); +INSERT INTO "public"."dept" VALUES ('D-002', '酒店部', '酒店部门人员', '2019-10-02', 'WK010', NULL, 0, 'System', '2019-10-02', NULL, NULL); +INSERT INTO "public"."dept" VALUES ('D-003', '财务部', '财务部门人员', '2019-10-03', 'WK005', '', 0, 'System', '2019-10-03', '', '2021-02-17'); +INSERT INTO "public"."dept" VALUES ('D-004', '人力资源部', '人力资源部门人员', '2019-10-04', 'WK001', '', 0, 'System', '2019-10-04', '', '2021-02-17'); +INSERT INTO "public"."dept" VALUES ('D-005', '后勤部', '后勤部门人员', '2019-10-05', 'WK003', '', 0, 'System', '2019-10-05', '', '2021-02-17'); +INSERT INTO "public"."dept" VALUES ('D-006', '商品部', '商品部门人员', '2019-10-06', 'WK004', 'D-006', 0, 'System', '2019-10-06', 'WK010', '2021-02-28'); +INSERT INTO "public"."dept" VALUES ('D-007', '维修部', '维修部门人员', '2019-10-07', 'WK007', 'D-007', 0, 'System', '2019-10-07', 'WK010', '2021-02-28'); +INSERT INTO "public"."dept" VALUES ('D-008', '内控部', '内控部门人员', '2019-10-08', NULL, '', 0, 'System', '2019-10-08', NULL, NULL); +INSERT INTO "public"."dept" VALUES ('D-009', '监管小组', '监管小组人员', '2019-10-09', 'WK010', '', 0, 'System', '2019-10-09', 'WK009', '2021-05-29'); +INSERT INTO "public"."dept" VALUES ('D-010', '总经办', '总经办人员', '2019-10-10', 'WK010', 'D-001', 0, 'System', '2019-10-10', 'WK010', '2021-02-28'); +INSERT INTO "public"."dept" VALUES ('D-202200114', 'IT技术部', '维护酒店管理系统安全及更新', '2022-01-31', 'WK005', 'D-001', 0, NULL, '0001-01-01', NULL, '0001-01-01'); +INSERT INTO "public"."dept" VALUES ('D-011', '餐饮部', '餐饮部人员', '2019-10-11', 'Lien', 'D-008', 0, 'System', '2019-10-11', '', '2022-04-08'); +INSERT INTO "public"."dept" VALUES ('D-20210034', '测试测试', '测试测试', '2021-02-17', 'Shenyou', '', 0, NULL, '0001-01-01', '', '2022-09-18'); +INSERT INTO "public"."dept" VALUES ('D-20210087', '测试', '测试', '2021-05-30', 'Duyen', 'D-001', 0, NULL, '0001-01-01', '', '2022-09-18'); + +-- ---------------------------- +-- Table structure for education +-- ---------------------------- +DROP TABLE IF EXISTS "public"."education"; +CREATE TABLE "public"."education" ( + "education_no" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, + "education_name" varchar(100) COLLATE "pg_catalog"."default", + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."education"."education_no" IS '学历编号'; +COMMENT ON COLUMN "public"."education"."education_name" IS '学历名称'; +COMMENT ON COLUMN "public"."education"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."education"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."education"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."education"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."education"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."education" IS '学历表'; + +-- ---------------------------- +-- Records of education +-- ---------------------------- +INSERT INTO "public"."education" VALUES ('E-00001', '小学', 0, 'System', '2021-01-31', '', '2021-06-27'); +INSERT INTO "public"."education" VALUES ('E-00002', '初中', 0, 'System', '2021-02-01', 'System', '2021-02-01'); +INSERT INTO "public"."education" VALUES ('E-00003', '高中', 0, 'System', '2021-02-02', 'System', '2021-02-02'); +INSERT INTO "public"."education" VALUES ('E-00004', '中专', 0, 'System', '2021-02-03', 'WK009', '2021-05-29'); +INSERT INTO "public"."education" VALUES ('E-00005', '大专', 0, 'System', '2021-02-04', 'System', '2021-02-04'); +INSERT INTO "public"."education" VALUES ('E-00006', '本科', 0, 'System', '2021-02-05', 'System', '2021-02-05'); +INSERT INTO "public"."education" VALUES ('E-00007', '研究生', 0, 'System', '2021-02-06', 'System', '2021-02-06'); +INSERT INTO "public"."education" VALUES ('E-00008', '博士', 0, 'System', '2021-02-07', '', '2022-02-26'); +INSERT INTO "public"."education" VALUES ('E-202101', '硕士', 0, 'admin', '2021-05-10', '', '2022-02-26'); +INSERT INTO "public"."education" VALUES ('E-00009', '博士后', 0, 'System', '2021-02-08', '', '2022-02-26'); + +-- ---------------------------- +-- Table structure for fonts +-- ---------------------------- +DROP TABLE IF EXISTS "public"."fonts"; +CREATE TABLE "public"."fonts" ( + "FontsId" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "FontsMess" varchar(250) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."fonts"."FontsId" IS 'ID'; +COMMENT ON COLUMN "public"."fonts"."FontsMess" IS '文字信息'; +COMMENT ON COLUMN "public"."fonts"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."fonts"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."fonts"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."fonts"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."fonts"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."fonts" IS '主页跑马灯信息表'; + +-- ---------------------------- +-- Records of fonts +-- ---------------------------- +INSERT INTO "public"."fonts" VALUES (1, '本酒店即日起与闪修平台联合推出“多修多折”活动,详情请咨询前台!', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."fonts" VALUES (2, '本酒店即日起与神之食餐厅联合推出“吃多折多”活动,详情请咨询前台!', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."fonts" VALUES (3, '本酒店即日起与Second网吧联合推出“免费体验酒店式网吧”活动,详情请咨询前台!', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for gbtype +-- ---------------------------- +DROP TABLE IF EXISTS "public"."gbtype"; +CREATE TABLE "public"."gbtype" ( + "GBTypeId" int4 NOT NULL, + "GBName" varchar(255) COLLATE "pg_catalog"."default", + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."gbtype"."GBTypeId" IS '奖惩类型ID'; +COMMENT ON COLUMN "public"."gbtype"."GBName" IS '奖惩类型名称'; +COMMENT ON COLUMN "public"."gbtype"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."gbtype"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."gbtype"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."gbtype"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."gbtype"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."gbtype" IS '奖惩类型'; + +-- ---------------------------- +-- Records of gbtype +-- ---------------------------- +INSERT INTO "public"."gbtype" VALUES (0, '奖励', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."gbtype" VALUES (1, '惩罚', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for module +-- ---------------------------- +DROP TABLE IF EXISTS "public"."module"; +CREATE TABLE "public"."module" ( + "module_id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "module_name" varchar(200) COLLATE "pg_catalog"."default", + "module_desc" varchar(255) COLLATE "pg_catalog"."default", + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_time" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_time" date +) +; +COMMENT ON COLUMN "public"."module"."module_id" IS '模块ID'; +COMMENT ON COLUMN "public"."module"."module_name" IS '模块名称'; +COMMENT ON COLUMN "public"."module"."module_desc" IS '模块描述'; +COMMENT ON COLUMN "public"."module"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."module"."datains_usr" IS '资料新增人'; +COMMENT ON COLUMN "public"."module"."datains_time" IS '资料新增时间'; +COMMENT ON COLUMN "public"."module"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."module"."datachg_time" IS '资料更新时间'; +COMMENT ON TABLE "public"."module" IS '系统模块表'; + +-- ---------------------------- +-- Records of module +-- ---------------------------- +INSERT INTO "public"."module" VALUES (1, 'BaseInfo', NULL, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."module" VALUES (2, 'CashInfo', NULL, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."module" VALUES (3, 'WtiInfo', NULL, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."module" VALUES (4, 'CheckInfo', NULL, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."module" VALUES (5, 'RoomManager', NULL, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."module" VALUES (6, 'CustomerManager', NULL, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."module" VALUES (7, 'HumanResourcesManager', NULL, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."module" VALUES (8, 'MaterialManager', NULL, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."module" VALUES (9, 'OperationLogManager', NULL, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."module" VALUES (10, 'AdminManager', NULL, 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for module_zero +-- ---------------------------- +DROP TABLE IF EXISTS "public"."module_zero"; +CREATE TABLE "public"."module_zero" ( + "module_id" int4 NOT NULL, + "admin_account" varchar(15) COLLATE "pg_catalog"."default", + "module_name" varchar(200) COLLATE "pg_catalog"."default", + "module_enable" int4 +) +; +COMMENT ON COLUMN "public"."module_zero"."module_id" IS '模块ID'; +COMMENT ON COLUMN "public"."module_zero"."admin_account" IS '管理员账号'; +COMMENT ON COLUMN "public"."module_zero"."module_name" IS '模块名称'; +COMMENT ON COLUMN "public"."module_zero"."module_enable" IS '是否开启'; +COMMENT ON TABLE "public"."module_zero" IS '系统模块权限表'; + +-- ---------------------------- +-- Records of module_zero +-- ---------------------------- +INSERT INTO "public"."module_zero" VALUES (1, 'admin', 'BaseInfo', 1); +INSERT INTO "public"."module_zero" VALUES (2, 'admin', 'CashInfo', 1); +INSERT INTO "public"."module_zero" VALUES (3, 'admin', 'WtiInfo', 1); +INSERT INTO "public"."module_zero" VALUES (4, 'admin', 'CheckInfo', 1); +INSERT INTO "public"."module_zero" VALUES (5, 'admin', 'RoomManager', 1); +INSERT INTO "public"."module_zero" VALUES (6, 'admin', 'CustomerManager', 1); +INSERT INTO "public"."module_zero" VALUES (7, 'admin', 'HumanResourcesManager', 1); +INSERT INTO "public"."module_zero" VALUES (8, 'admin', 'MaterialManager', 1); +INSERT INTO "public"."module_zero" VALUES (9, 'admin', 'OperationLogManager', 1); +INSERT INTO "public"."module_zero" VALUES (10, 'admin', 'AdminManager', 1); + +-- ---------------------------- +-- Table structure for nation +-- ---------------------------- +DROP TABLE IF EXISTS "public"."nation"; +CREATE TABLE "public"."nation" ( + "nation_no" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, + "nation_name" varchar(100) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."nation"."nation_no" IS '民族编号'; +COMMENT ON COLUMN "public"."nation"."nation_name" IS '民族名称'; +COMMENT ON COLUMN "public"."nation"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."nation"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."nation"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."nation"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."nation"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."nation" IS '民族信息表'; + +-- ---------------------------- +-- Records of nation +-- ---------------------------- +INSERT INTO "public"."nation" VALUES ('N-00002', '满族', 0, 'System', '2021-02-01', 'System', '2021-02-01'); +INSERT INTO "public"."nation" VALUES ('N-00003', '蒙古族', 0, 'System', '2021-02-02', 'System', '2021-02-02'); +INSERT INTO "public"."nation" VALUES ('N-00004', '回族', 0, 'System', '2021-02-03', '', '2021-02-11'); +INSERT INTO "public"."nation" VALUES ('N-00005', '藏族', 0, 'System', '2021-02-04', 'System', '2021-02-04'); +INSERT INTO "public"."nation" VALUES ('N-00006', '维吾尔族', 0, 'System', '2021-02-05', '', '2021-02-01'); +INSERT INTO "public"."nation" VALUES ('N-00007', '苗族', 0, 'System', '2021-02-06', 'System', '2021-02-06'); +INSERT INTO "public"."nation" VALUES ('N-00008', '彝族', 0, 'System', '2021-02-07', '', '2021-06-29'); +INSERT INTO "public"."nation" VALUES ('N-00009', '壮族', 0, 'System', '2021-02-08', 'System', '2021-02-08'); +INSERT INTO "public"."nation" VALUES ('N-00010', '布依族', 0, 'System', '2021-02-09', '', '2021-02-01'); +INSERT INTO "public"."nation" VALUES ('N-00011', '侗族', 0, 'System', '2021-02-10', 'System', '2021-02-10'); +INSERT INTO "public"."nation" VALUES ('N-00012', '瑶族', 0, 'System', '2021-02-11', 'System', '2021-02-11'); +INSERT INTO "public"."nation" VALUES ('N-00026', '纳西族', 0, 'System', '2021-02-25', 'System', '2021-02-25'); +INSERT INTO "public"."nation" VALUES ('N-00027', '景颇族', 0, 'System', '2021-02-26', 'System', '2021-02-26'); +INSERT INTO "public"."nation" VALUES ('N-00044', '俄罗斯族', 0, 'System', '2021-03-15', 'System', '2021-03-15'); +INSERT INTO "public"."nation" VALUES ('N-00045', '鄂温克族', 0, 'System', '2021-03-16', 'System', '2021-03-16'); +INSERT INTO "public"."nation" VALUES ('N-00046', '德昂族', 0, 'System', '2021-03-17', 'System', '2021-03-17'); +INSERT INTO "public"."nation" VALUES ('N-00047', '保安族', 0, 'System', '2021-03-18', 'System', '2021-03-18'); +INSERT INTO "public"."nation" VALUES ('N-00048', '裕固族', 0, 'System', '2021-03-19', 'System', '2021-03-19'); +INSERT INTO "public"."nation" VALUES ('N-00049', '京族', 0, 'System', '2021-03-20', 'System', '2021-03-20'); +INSERT INTO "public"."nation" VALUES ('N-00050', '塔塔尔族', 0, 'System', '2021-03-21', '', '2021-02-11'); +INSERT INTO "public"."nation" VALUES ('N-00051', '独龙族', 0, 'System', '2021-03-22', 'System', '2021-03-22'); +INSERT INTO "public"."nation" VALUES ('N-00042', '怒族', 0, 'System', '2021-03-13', 'System', '2021-03-13'); +INSERT INTO "public"."nation" VALUES ('N-00043', '乌孜别克族', 0, 'System', '2021-03-14', 'System', '2021-03-14'); +INSERT INTO "public"."nation" VALUES ('N-2022006', '大韩民族', 0, 'admin', '2022-02-26', NULL, NULL); +INSERT INTO "public"."nation" VALUES ('N-00035', '毛南族', 0, 'System', '2021-03-06', '', '2022-05-09'); +INSERT INTO "public"."nation" VALUES ('N-00052', '鄂伦春族', 0, 'System', '2021-03-23', 'System', '2021-03-23'); +INSERT INTO "public"."nation" VALUES ('N-00053', '赫哲族', 0, 'System', '2021-03-24', 'System', '2021-03-24'); +INSERT INTO "public"."nation" VALUES ('N-00054', '门巴族', 0, 'System', '2021-03-25', 'System', '2021-03-25'); +INSERT INTO "public"."nation" VALUES ('N-00055', '珞巴族', 0, 'System', '2021-03-26', '', '2021-05-10'); +INSERT INTO "public"."nation" VALUES ('N-00056', '基诺族', 0, 'System', '2021-03-27', '', '2021-05-10'); +INSERT INTO "public"."nation" VALUES ('N-2022005', '大和民族', 0, 'admin', '2022-02-01', '', '2022-02-26'); +INSERT INTO "public"."nation" VALUES ('N-00013', '白族', 0, 'System', '2021-02-12', 'WK010', '2021-02-17'); +INSERT INTO "public"."nation" VALUES ('N-00014', '土家族', 0, 'System', '2021-02-13', 'System', '2021-02-13'); +INSERT INTO "public"."nation" VALUES ('N-00015', '哈尼族', 0, 'System', '2021-02-14', 'System', '2021-02-14'); +INSERT INTO "public"."nation" VALUES ('N-00016', '哈萨克族', 0, 'System', '2021-02-15', 'System', '2021-02-15'); +INSERT INTO "public"."nation" VALUES ('N-00017', '傣族', 0, 'System', '2021-02-16', 'System', '2021-02-16'); +INSERT INTO "public"."nation" VALUES ('N-00018', '黎族', 0, 'System', '2021-02-17', 'System', '2021-02-17'); +INSERT INTO "public"."nation" VALUES ('N-00019', '傈僳族', 0, 'System', '2021-02-18', '', '2021-02-11'); +INSERT INTO "public"."nation" VALUES ('N-00020', '佤族', 0, 'System', '2021-02-19', 'System', '2021-02-19'); +INSERT INTO "public"."nation" VALUES ('N-00021', '畲族', 0, 'System', '2021-02-20', 'System', '2021-02-20'); +INSERT INTO "public"."nation" VALUES ('N-00022', '高山族', 0, 'System', '2021-02-21', 'System', '2021-02-21'); +INSERT INTO "public"."nation" VALUES ('N-00023', '拉祜族', 0, 'System', '2021-02-22', 'System', '2021-02-22'); +INSERT INTO "public"."nation" VALUES ('N-00024', '水族', 0, 'System', '2021-02-23', 'System', '2021-02-23'); +INSERT INTO "public"."nation" VALUES ('N-00025', '东乡族', 0, 'System', '2021-02-24', 'System', '2021-02-24'); +INSERT INTO "public"."nation" VALUES ('N-00028', '柯尔克孜族', 0, 'System', '2021-02-27', 'System', '2021-02-27'); +INSERT INTO "public"."nation" VALUES ('N-00029', '土族', 0, 'System', '2021-02-28', 'System', '2021-02-28'); +INSERT INTO "public"."nation" VALUES ('N-00030', '达斡尔族', 0, 'System', '2021-03-01', 'System', '2021-03-01'); +INSERT INTO "public"."nation" VALUES ('N-00001', '汉族', 0, 'System', '2021-01-31', '', '2022-11-17'); +INSERT INTO "public"."nation" VALUES ('N-00031', '仫佬族', 0, 'System', '2021-03-02', 'System', '2021-03-02'); +INSERT INTO "public"."nation" VALUES ('N-00032', '羌族', 0, 'System', '2021-03-03', 'System', '2021-03-03'); +INSERT INTO "public"."nation" VALUES ('N-00033', '布朗族', 0, 'System', '2021-03-04', 'System', '2021-03-04'); +INSERT INTO "public"."nation" VALUES ('N-00034', '撒拉族', 0, 'System', '2021-03-05', 'System', '2021-03-05'); +INSERT INTO "public"."nation" VALUES ('N-00036', '仡佬族', 0, 'System', '2021-03-07', 'System', '2021-03-07'); +INSERT INTO "public"."nation" VALUES ('N-00037', '锡伯族', 0, 'System', '2021-03-08', 'System', '2021-03-08'); +INSERT INTO "public"."nation" VALUES ('N-00038', '阿昌族', 0, 'System', '2021-03-09', 'System', '2021-03-09'); +INSERT INTO "public"."nation" VALUES ('N-00039', '普米族', 0, 'System', '2021-03-10', 'System', '2021-03-10'); +INSERT INTO "public"."nation" VALUES ('N-00040', '朝鲜族', 0, 'System', '2021-03-11', 'System', '2021-03-11'); +INSERT INTO "public"."nation" VALUES ('N-00041', '塔吉克族', 0, 'System', '2021-03-12', 'System', '2021-03-12'); + +-- ---------------------------- +-- Table structure for nav_bar +-- ---------------------------- +DROP TABLE IF EXISTS "public"."nav_bar"; +CREATE TABLE "public"."nav_bar" ( + "nav_id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "nav_name" varchar(100) COLLATE "pg_catalog"."default" NOT NULL, + "nav_or" int4 DEFAULT 0, + "nav_pic" varchar(300) COLLATE "pg_catalog"."default", + "nav_event" varchar(255) COLLATE "pg_catalog"."default", + "delete_mk" int4 NOT NULL DEFAULT 0, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date, + "margin_left" int2 +) +; +COMMENT ON COLUMN "public"."nav_bar"."nav_id" IS '导航控件流水号'; +COMMENT ON COLUMN "public"."nav_bar"."nav_name" IS '导航控件名称'; +COMMENT ON COLUMN "public"."nav_bar"."nav_or" IS '导航控件排序'; +COMMENT ON COLUMN "public"."nav_bar"."nav_pic" IS '导航控件图片'; +COMMENT ON COLUMN "public"."nav_bar"."nav_event" IS '导航控件事件'; +COMMENT ON COLUMN "public"."nav_bar"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."nav_bar"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."nav_bar"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."nav_bar"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."nav_bar"."datachg_date" IS '资料更新时间'; +COMMENT ON COLUMN "public"."nav_bar"."margin_left" IS '左边距'; + +-- ---------------------------- +-- Records of nav_bar +-- ---------------------------- +INSERT INTO "public"."nav_bar" VALUES (708, '客房管理', 1, NULL, 'RoomManager_Event', 0, NULL, NULL, NULL, NULL, 0); +INSERT INTO "public"."nav_bar" VALUES (709, '用户管理', 2, NULL, 'CustoManager_Event', 0, NULL, NULL, NULL, NULL, 180); +INSERT INTO "public"."nav_bar" VALUES (710, '商品消费', 3, NULL, 'SellManager_Event', 0, NULL, NULL, NULL, NULL, 180); + +-- ---------------------------- +-- Table structure for operationlog +-- ---------------------------- +DROP TABLE IF EXISTS "public"."operationlog"; +CREATE TABLE "public"."operationlog" ( + "OperationId" int8 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "OperationTime" timestamp(0) NOT NULL, + "LogContent" varchar(8000) COLLATE "pg_catalog"."default" NOT NULL, + "OperationAccount" varchar(300) COLLATE "pg_catalog"."default" NOT NULL, + "OperationLevel" int4, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" timestamp(0) DEFAULT NULL::timestamp without time zone, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" timestamp(0) DEFAULT NULL::timestamp without time zone, + "SoftwareVersion" varchar(10) COLLATE "pg_catalog"."default", + "login_ip" varchar(10) COLLATE "pg_catalog"."default" +) +; +COMMENT ON COLUMN "public"."operationlog"."OperationId" IS '记录ID'; +COMMENT ON COLUMN "public"."operationlog"."OperationTime" IS '记录时间'; +COMMENT ON COLUMN "public"."operationlog"."LogContent" IS '日志内容'; +COMMENT ON COLUMN "public"."operationlog"."OperationAccount" IS '被记录账户'; +COMMENT ON COLUMN "public"."operationlog"."OperationLevel" IS '日志等级'; +COMMENT ON COLUMN "public"."operationlog"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."operationlog"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."operationlog"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."operationlog"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."operationlog"."datachg_date" IS '资料更新时间'; +COMMENT ON COLUMN "public"."operationlog"."SoftwareVersion" IS '软件版本'; +COMMENT ON COLUMN "public"."operationlog"."login_ip" IS '登录IP'; +COMMENT ON TABLE "public"."operationlog" IS '系统操作日志表'; + +-- ---------------------------- +-- Records of operationlog +-- ---------------------------- +INSERT INTO "public"."operationlog" VALUES (55, '2022-02-20 13:43:58', 'admin-杨俊杰在2022/2/20 13:43:57位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-20 13:43:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (56, '2022-02-20 20:05:40', 'WK010-杨俊杰在2022/2/20 20:05:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-20 20:05:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (57, '2022-02-20 20:43:48', 'admin-杨俊杰在2022/2/20 20:43:48位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-20 20:43:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (58, '2022-02-21 17:23:44', 'admin-杨俊杰在2022-02-21 17:23:43位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-21 17:23:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (59, '2022-02-21 17:24:18', 'admin-杨俊杰在2022-02-21 17:24:17位于1.5.0.7执行:新增职位类型操作!新增值为:P-2022006', 'admin', 200, 0, 'admin', '2022-02-21 17:24:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (60, '2022-02-21 20:29:44', 'WK010-杨俊杰在2022/2/21 20:29:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-21 20:29:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (62, '2022-02-21 20:29:54', 'SqlSugar.SqlSugarException: 23505: 重复键违反唯一约束"workercheck_pkey"', 'WK010', 300, 0, 'WK010', '2022-02-21 20:29:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (64, '2022-02-21 20:30:00', 'SqlSugar.SqlSugarException: 23505: 重复键违反唯一约束"workercheck_pkey"', 'WK010', 300, 0, 'WK010', '2022-02-21 20:30:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (65, '2022-02-21 20:31:16', 'WK010-杨俊杰在2022/2/21 20:31:15位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-21 20:31:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (67, '2022-02-22 23:11:35', 'admin-杨俊杰在2022/2/22 23:11:35位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-22 23:11:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (68, '2022-02-22 23:12:36', 'WK010-杨俊杰在2022/2/22 23:12:35位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-22 23:12:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (69, '2022-02-22 23:13:12', 'SqlSugar.SqlSugarException: 42804: 字段 "WtiNo" 的类型为 integer, 但表达式的类型为 text', 'WK010', 300, 0, 'WK010', '2022-02-22 23:13:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (70, '2022-02-22 23:13:19', 'SqlSugar.SqlSugarException: 42804: 字段 "WtiNo" 的类型为 integer, 但表达式的类型为 text', 'WK010', 300, 0, 'WK010', '2022-02-22 23:13:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (71, '2022-02-22 23:15:11', 'SqlSugar.SqlSugarException: 23502: null value in column "WtiNo" of relation "wtinfo" violates not-null constraint', 'WK010', 300, 0, 'WK010', '2022-02-22 23:15:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (73, '2022-02-23 23:17:30', 'admin-杨俊杰在2022/2/23 23:17:29位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-23 23:17:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (74, '2022-02-25 22:13:25', 'WK010-杨俊杰在2022/2/25 22:13:25位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-25 22:13:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (76, '2022-02-26 11:53:17', 'admin-杨俊杰在2022/2/26 11:53:17位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 11:53:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (77, '2022-02-26 11:54:54', 'admin-杨俊杰在2022/2/26 11:54:53位于1.5.0.7执行:删除学历类型操作!删除值为:E-00008', 'admin', 200, 0, 'admin', '2022-02-26 11:54:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (78, '2022-02-26 11:54:57', 'admin-杨俊杰在2022/2/26 11:54:57位于1.5.0.7执行:删除学历类型操作!删除值为:E-202101', 'admin', 200, 0, 'admin', '2022-02-26 11:54:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (79, '2022-02-26 11:55:00', 'admin-杨俊杰在2022/2/26 11:55:00位于1.5.0.7执行:删除学历类型操作!删除值为:E-00009', 'admin', 200, 0, 'admin', '2022-02-26 11:55:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (80, '2022-02-26 12:19:59', 'WK010-杨俊杰在2022/2/26 12:19:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 12:19:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (81, '2022-02-26 12:20:22', 'SqlSugar.SqlSugarException: 42804: 字段 "WtiNo" 的类型为 integer, 但表达式的类型为 text', 'WK010', 300, 0, 'WK010', '2022-02-26 12:20:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (82, '2022-02-26 12:21:04', 'WK010-杨俊杰在2022/2/26 12:21:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 12:21:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (83, '2022-02-26 12:22:00', 'SqlSugar.SqlSugarException: 42804: 字段 "WtiNo" 的类型为 integer, 但表达式的类型为 text', 'WK010', 300, 0, 'WK010', '2022-02-26 12:22:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (84, '2022-02-26 12:28:05', 'WK010-杨俊杰在2022/2/26 12:28:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 12:28:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (85, '2022-02-26 12:28:45', '经理部-总经理-杨俊杰于2022/2/26 12:28:44帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-02-26 12:28:45', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (87, '2022-02-26 12:29:23', '经理部-总经理-杨俊杰于2022/2/26 12:29:22帮助TS-20210078进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-02-26 12:29:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (88, '2022-02-26 12:29:41', '经理部-总经理-杨俊杰于2022/2/26 12:29:40帮助TS-20220089进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-02-26 12:29:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (89, '2022-02-26 12:29:57', '经理部-总经理-杨俊杰于2022/2/26 12:29:56帮助TS-20220090进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-02-26 12:29:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (90, '2022-02-26 12:30:12', '经理部-总经理-杨俊杰于2022/2/26 12:30:11帮助TS-20220099进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-02-26 12:30:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (91, '2022-02-26 12:31:08', 'WK010-杨俊杰在2022/2/26 12:31:08位于1.5.0.7执行:添加了一名客户,客户编号为:TS-202200136', 'WK010', 300, 0, 'WK010', '2022-02-26 12:31:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (92, '2022-02-26 13:33:18', 'WK010-杨俊杰在2022/2/26 13:33:18位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:33:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (93, '2022-02-26 13:33:43', 'admin-杨俊杰在2022/2/26 13:33:43位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 13:33:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (94, '2022-02-26 13:38:52', 'WK010-杨俊杰在2022/2/26 13:38:51位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:38:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (95, '2022-02-26 13:39:54', 'WK010-杨俊杰在2022/2/26 13:39:53位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:39:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (96, '2022-02-26 13:40:17', 'WK010-杨俊杰在2022/2/26 13:40:17位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:40:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (97, '2022-02-26 13:51:19', 'WK010-杨俊杰在2022/2/26 13:51:18位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:51:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (98, '2022-02-26 13:53:19', 'WK010-杨俊杰在2022/2/26 13:53:18位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:53:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (100, '2022-02-26 13:54:46', 'WK010-杨俊杰在2022/2/26 13:54:45位于1.5.0.7执行:帮助TS-20210078进行了消费商品:乐事薯片(原味)操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 13:54:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (101, '2022-02-26 13:59:10', 'WK010-杨俊杰在2022/2/26 13:59:09位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 13:59:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (103, '2022-02-26 13:59:34', 'WK010-杨俊杰在2022/2/26 13:59:34位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 13:59:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (104, '2022-02-26 14:22:12', 'WK010-杨俊杰在2022/2/26 14:22:11位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:22:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (105, '2022-02-26 14:22:49', 'WK010-杨俊杰在2022/2/26 14:22:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:22:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (106, '2022-02-26 14:24:34', 'WK010-杨俊杰在2022/2/26 14:24:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:24:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (107, '2022-02-26 14:26:30', 'WK010-杨俊杰在2022/2/26 14:26:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:26:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (108, '2022-02-26 14:27:59', 'WK010-杨俊杰在2022/2/26 14:27:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:27:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (109, '2022-02-26 14:31:00', 'WK010-杨俊杰在2022/2/26 14:30:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:31:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (110, '2022-02-26 14:36:26', 'WK010-杨俊杰在2022/2/26 14:36:25位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:36:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (112, '2022-02-26 14:37:06', 'SqlSugar.SqlSugarException: 23502: null value in column "SellName" of relation "sellthing" violates not-null constraint', 'WK010', 300, 0, 'WK010', '2022-02-26 14:37:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (113, '2022-02-26 14:37:25', 'WK010-杨俊杰在2022/2/26 14:37:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:37:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (115, '2022-02-26 14:38:04', 'SqlSugar.SqlSugarException: 23502: null value in column "SellName" of relation "sellthing" violates not-null constraint', 'WK010', 300, 0, 'WK010', '2022-02-26 14:38:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (116, '2022-02-26 14:46:52', 'WK010-杨俊杰在2022/2/26 14:46:51位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:46:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (118, '2022-02-26 14:47:15', 'WK010-杨俊杰在2022/2/26 14:47:15位于1.5.0.7执行:帮助TS-20210078进行了消费商品:毛巾操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 14:47:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (119, '2022-02-26 14:52:54', 'WK010-杨俊杰在2022/2/26 14:52:53位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:52:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (120, '2022-02-26 14:58:06', 'WK010-杨俊杰在2022/2/26 14:58:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:58:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (121, '2022-02-26 14:58:56', 'WK010-杨俊杰在2022/2/26 14:58:55位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 14:58:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (122, '2022-02-26 15:00:16', 'WK010-杨俊杰在2022/2/26 15:00:16位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:00:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (123, '2022-02-26 15:00:49', 'WK010-杨俊杰在2022/2/26 15:00:49位于1.5.0.7执行:帮助TS-20210078撤销了消费商品:操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:00:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (124, '2022-02-26 15:20:40', 'WK010-杨俊杰在2022/2/26 15:20:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:20:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (125, '2022-02-26 15:21:54', 'WK010-杨俊杰在2022/2/26 15:21:54位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:21:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (126, '2022-02-26 15:23:35', 'WK010-杨俊杰在2022/2/26 15:23:35位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:23:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (127, '2022-02-26 15:24:04', 'WK010-杨俊杰在2022/2/26 15:24:03位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:24:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (128, '2022-02-26 15:27:25', 'WK010-杨俊杰在2022/2/26 15:27:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:27:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (129, '2022-02-26 15:27:46', 'SqlSugar.SqlSugarException: 42601: 语法错误 在 ""SpendPrice"" 或附近的', 'WK010', 300, 0, 'WK010', '2022-02-26 15:27:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (130, '2022-02-26 15:27:57', 'WK010-杨俊杰在2022/2/26 15:27:56位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:27:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (131, '2022-02-26 15:28:29', 'SqlSugar.SqlSugarException: 42601: 语法错误 在 ""SpendPrice"" 或附近的', 'WK010', 300, 0, 'WK010', '2022-02-26 15:28:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (132, '2022-02-26 15:28:58', 'WK010-杨俊杰在2022/2/26 15:28:57位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:28:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (133, '2022-02-26 15:29:15', 'SqlSugar.SqlSugarException: 42601: 语法错误 在 "$3" 或附近的', 'WK010', 300, 0, 'WK010', '2022-02-26 15:29:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (134, '2022-02-26 15:29:49', 'WK010-杨俊杰在2022/2/26 15:29:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:29:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (135, '2022-02-26 15:32:04', 'SqlSugar.SqlSugarException: 42601: 语法错误 在 "$3" 或附近的', 'WK010', 300, 0, 'WK010', '2022-02-26 15:32:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (136, '2022-02-26 15:34:30', 'WK010-杨俊杰在2022/2/26 15:34:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:34:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (137, '2022-02-26 15:36:01', 'WK010-杨俊杰在2022/2/26 15:36:00位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:36:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (138, '2022-02-26 15:37:14', 'WK010-杨俊杰在2022/2/26 15:37:13位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:37:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (139, '2022-02-26 15:39:14', 'WK010-杨俊杰在2022/2/26 15:39:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:39:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (140, '2022-02-26 15:40:18', 'WK010-杨俊杰在2022/2/26 15:40:18位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:40:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (141, '2022-02-26 15:47:03', 'WK010-杨俊杰在2022/2/26 15:47:03位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:47:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (142, '2022-02-26 15:48:27', 'WK010-杨俊杰在2022/2/26 15:48:26位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:48:27', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (143, '2022-02-26 15:48:54', 'WK010-杨俊杰在2022/2/26 15:48:53位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:48:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (144, '2022-02-26 15:50:40', 'WK010-杨俊杰在2022/2/26 15:50:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:50:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (145, '2022-02-26 15:52:28', 'WK010-杨俊杰在2022/2/26 15:52:28位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:52:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (146, '2022-02-26 15:53:06', 'WK010-杨俊杰在2022/2/26 15:53:05位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:53:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (147, '2022-02-26 15:55:23', 'WK010-杨俊杰在2022/2/26 15:55:23位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:55:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (148, '2022-02-26 15:55:43', 'WK010-杨俊杰在2022/2/26 15:55:43位于1.5.0.7执行:帮助TS-20210078进行了消费商品:火腿肠操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:55:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (149, '2022-02-26 15:58:23', 'WK010-杨俊杰在2022/2/26 15:58:22位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 15:58:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (151, '2022-02-26 15:58:40', 'WK010-杨俊杰在2022/2/26 15:58:40位于1.5.0.7执行:帮助TS-20210078进行了消费商品:毛巾操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:58:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (152, '2022-02-26 15:58:54', 'WK010-杨俊杰在2022/2/26 15:58:53位于1.5.0.7执行:帮助TS-20210078进行了消费商品:毛巾操作!', 'WK010', 200, 0, 'WK010', '2022-02-26 15:58:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (153, '2022-02-26 15:59:34', 'WK010-杨俊杰在2022/2/26 15:59:34位于1.5.0.7执行:修改了一名客户信息,客户编号为:TS-20220099', 'WK010', 300, 0, 'WK010', '2022-02-26 15:59:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (154, '2022-02-26 16:02:33', 'WK010-杨俊杰在2022/2/26 16:02:33位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:02:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (155, '2022-02-26 16:03:29', 'WK010-杨俊杰在2022/2/26 16:03:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:03:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (156, '2022-02-26 16:04:46', 'WK010-杨俊杰在2022/2/26 16:04:45位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:04:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (157, '2022-02-26 16:06:30', 'WK010-杨俊杰在2022/2/26 16:06:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:06:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (158, '2022-02-26 16:08:18', 'WK010-杨俊杰在2022/2/26 16:08:18位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:08:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (159, '2022-02-26 16:09:01', 'WK010-杨俊杰在2022/2/26 16:09:00位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:09:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (160, '2022-02-26 16:09:23', 'WK010-杨俊杰在2022/2/26 16:09:22位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:09:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (161, '2022-02-26 16:10:38', 'WK010-杨俊杰在2022/2/26 16:10:38位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:10:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (162, '2022-02-26 16:13:00', 'WK010-杨俊杰在2022/2/26 16:12:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:13:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (163, '2022-02-26 16:15:31', 'WK010-杨俊杰在2022/2/26 16:15:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:15:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (164, '2022-02-26 16:17:50', 'WK010-杨俊杰在2022/2/26 16:17:50位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:17:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (165, '2022-02-26 16:20:22', 'WK010-杨俊杰在2022/2/26 16:20:21位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:20:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (166, '2022-02-26 16:21:31', 'WK010-杨俊杰在2022/2/26 16:21:31位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:21:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (167, '2022-02-26 16:47:30', 'WK010-杨俊杰在2022/2/26 16:47:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:47:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (168, '2022-02-26 16:48:22', 'SqlSugar.SqlSugarException: 22001: 对于可变字符类型来说,值太长了(11)', 'WK010', 300, 0, 'WK010', '2022-02-26 16:48:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (169, '2022-02-26 16:49:35', 'WK010-杨俊杰在2022/2/26 16:49:35位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:49:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (170, '2022-02-26 16:50:30', 'SqlSugar.SqlSugarException: 22001: 对于可变字符类型来说,值太长了(11)', 'WK010', 300, 0, 'WK010', '2022-02-26 16:50:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (171, '2022-02-26 16:51:19', 'WK010-杨俊杰在2022/2/26 16:51:19位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:51:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (172, '2022-02-26 16:51:40', 'SqlSugar.SqlSugarException: 22001: 对于可变字符类型来说,值太长了(11)', 'WK010', 300, 0, 'WK010', '2022-02-26 16:51:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (173, '2022-02-26 16:52:59', 'WK010-杨俊杰在2022/2/26 16:52:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:52:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (174, '2022-02-26 16:53:19', 'SqlSugar.SqlSugarException: 22001: 对于可变字符类型来说,值太长了(20)', 'WK010', 300, 0, 'WK010', '2022-02-26 16:53:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (175, '2022-02-26 16:54:41', 'WK010-杨俊杰在2022/2/26 16:54:41位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 16:54:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (176, '2022-02-26 16:55:06', '经理部总经理杨俊杰于2022/2/26 16:55:06帮助21321313213进行了预订房间操作!', 'WK010', 100, 0, 'WK010', '2022-02-26 16:55:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (177, '2022-02-26 17:01:13', 'admin-杨俊杰在2022/2/26 17:01:12位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:01:13', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (178, '2022-02-26 17:01:21', 'admin-杨俊杰在2022/2/26 17:01:20位于1.5.0.7执行:删除职位类型操作!删除值为:P-2022006', 'admin', 200, 0, 'admin', '2022-02-26 17:01:21', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (179, '2022-02-26 17:01:39', 'admin-杨俊杰在2022/2/26 17:01:38位于1.5.0.7执行:恢复学历类型操作!删除值为:E-00008', 'admin', 200, 0, 'admin', '2022-02-26 17:01:39', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (180, '2022-02-26 17:01:44', 'admin-杨俊杰在2022/2/26 17:01:43位于1.5.0.7执行:恢复学历类型操作!删除值为:E-202101', 'admin', 200, 0, 'admin', '2022-02-26 17:01:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (181, '2022-02-26 17:01:46', 'admin-杨俊杰在2022/2/26 17:01:45位于1.5.0.7执行:恢复学历类型操作!删除值为:E-00009', 'admin', 200, 0, 'admin', '2022-02-26 17:01:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (182, '2022-02-26 17:03:19', 'admin-杨俊杰在2022/2/26 17:03:18位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:03:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (183, '2022-02-26 17:04:13', 'admin-杨俊杰在2022/2/26 17:04:13位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:04:13', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (184, '2022-02-26 17:10:47', 'admin-杨俊杰在2022/2/26 17:10:47位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:10:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (185, '2022-02-26 17:12:36', 'admin-杨俊杰在2022/2/26 17:12:35位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:12:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (186, '2022-02-26 17:14:43', 'admin-杨俊杰在2022/2/26 17:14:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:14:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (187, '2022-02-26 17:15:52', 'admin-杨俊杰在2022/2/26 17:15:52位于1.5.0.7执行:添加会员规则操作!新增值为:VR-2022022600052', 'admin', 200, 0, 'admin', '2022-02-26 17:15:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (188, '2022-02-26 17:22:44', 'WK010-杨俊杰在2022/2/26 17:22:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 17:22:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (189, '2022-02-26 17:22:57', 'admin-杨俊杰在2022/2/26 17:22:57位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:22:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (190, '2022-02-26 17:36:42', 'admin-杨俊杰在2022/2/26 17:36:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:36:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (191, '2022-02-26 17:36:52', 'admin-杨俊杰在2022/2/26 17:36:52位于1.5.0.7执行:恢复职位类型操作!恢复值为:P-2022006', 'admin', 200, 0, 'admin', '2022-02-26 17:36:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (192, '2022-02-26 17:36:55', 'admin-杨俊杰在2022/2/26 17:36:55位于1.5.0.7执行:删除职位类型操作!删除值为:P-2022006', 'admin', 200, 0, 'admin', '2022-02-26 17:36:55', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (193, '2022-02-26 17:40:21', 'admin-杨俊杰在2022/2/26 17:40:21位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:40:21', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (194, '2022-02-26 17:49:47', 'admin-杨俊杰在2022/2/26 17:49:46位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:49:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (195, '2022-02-26 17:51:08', 'admin-杨俊杰在2022/2/26 17:51:08位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:51:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (196, '2022-02-26 17:57:30', 'admin-杨俊杰在2022/2/26 17:57:30位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 17:57:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (197, '2022-02-26 17:57:44', 'admin-杨俊杰在2022/2/26 17:57:44位于1.5.0.7执行:删除民族类型操作!删除值为:N-2022005', 'admin', 200, 0, 'admin', '2022-02-26 17:57:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (198, '2022-02-26 17:57:49', 'admin-杨俊杰在2022/2/26 17:57:48位于1.5.0.7执行:恢复民族类型操作!恢复值为:N-2022005', 'admin', 200, 0, 'admin', '2022-02-26 17:57:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (199, '2022-02-26 18:39:36', 'admin-杨俊杰在2022/2/26 18:39:35位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 18:39:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (200, '2022-02-26 18:40:42', 'admin-杨俊杰在2022/2/26 18:40:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 18:40:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (201, '2022-02-26 18:53:34', 'admin-杨俊杰在2022/2/26 18:53:34位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 18:53:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (202, '2022-02-26 18:54:48', 'admin-杨俊杰在2022/2/26 18:54:48位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 18:54:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (203, '2022-02-26 18:58:04', 'admin-杨俊杰在2022/2/26 18:58:03位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 18:58:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (204, '2022-02-26 19:30:36', 'admin-杨俊杰在2022/2/26 19:30:35位于1.5.0.7执行:新增民族类型操作!新增值为:N-2022006', 'admin', 200, 0, 'admin', '2022-02-26 19:30:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (205, '2022-02-26 19:31:41', 'admin-杨俊杰在2022/2/26 19:31:41位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 19:31:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (208, '2022-02-26 20:36:36', 'WK010-杨俊杰在2022/2/26 20:36:36位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-26 20:36:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (209, '2022-02-26 22:50:37', 'admin-杨俊杰在2022/2/26 22:50:36位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-26 22:50:37', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (210, '2022-02-27 01:10:49', 'WK010-杨俊杰在2022/2/27 1:10:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:10:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (212, '2022-02-27 01:24:30', 'WK010-杨俊杰在2022/2/27 1:24:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:24:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (213, '2022-02-27 01:25:08', 'WK010-杨俊杰在2022/2/27 1:25:08位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:25:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (214, '2022-02-27 01:25:26', 'WK010-杨俊杰在2022/2/27 1:25:26位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:25:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (215, '2022-02-27 01:30:48', 'WK010-杨俊杰在2022/2/27 1:30:48位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:30:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (216, '2022-02-27 01:31:18', 'WK010-杨俊杰在2022/2/27 1:31:17位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:31:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (217, '2022-02-27 01:32:12', 'WK010-杨俊杰在2022/2/27 1:32:11位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:32:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (218, '2022-02-27 01:36:45', 'WK010-杨俊杰在2022/2/27 1:36:45位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:36:45', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (219, '2022-02-27 01:38:15', 'WK010-杨俊杰在2022/2/27 1:38:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:38:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (220, '2022-02-27 01:38:28', 'admin-杨俊杰在2022/2/27 1:38:28位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-27 01:38:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (221, '2022-02-27 01:43:00', 'WK010-杨俊杰在2022/2/27 1:43:00位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:43:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (222, '2022-02-27 01:43:20', 'WK010-杨俊杰在2022/2/27 1:43:20位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:43:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (223, '2022-02-27 01:44:32', 'WK010-杨俊杰在2022/2/27 1:44:31位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-27 01:44:32', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (224, '2022-02-28 00:03:11', 'WK010-杨俊杰在2022/2/28 0:03:11位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-02-28 00:03:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (226, '2022-02-28 19:15:56', 'admin-杨俊杰在2022/2/28 19:15:55位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-02-28 19:15:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (227, '2022-02-28 19:16:38', 'SqlSugar.SqlSugarException: 23502: null value in column "module_id" of relation "module_zero" violates not-null constraint', 'admin', 300, 0, 'admin', '2022-02-28 19:16:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (228, '2022-03-01 23:36:38', 'WK010-杨俊杰在2022/3/1 23:36:37位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-01 23:36:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (229, '2022-03-01 23:39:04', 'admin-杨俊杰在2022/3/1 23:39:03位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-01 23:39:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (230, '2022-03-03 08:01:59', 'WK010-杨俊杰在2022-03-03 8:01:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-03 08:01:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (231, '2022-03-03 08:03:38', 'SqlSugar.SqlSugarException: 42804: 字段 "WtiNo" 的类型为 smallint, 但表达式的类型为 text', 'WK010', 300, 0, 'WK010', '2022-03-03 08:03:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (232, '2022-03-03 09:14:56', 'admin-杨俊杰在2022/3/3 9:14:55位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-03 09:14:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (233, '2022-03-03 09:21:23', 'admin-杨俊杰在2022/3/3 9:21:23位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-03 09:21:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (234, '2022-03-05 21:18:20', 'WK010-杨俊杰在2022/3/5 21:18:19位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-05 21:18:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (235, '2022-03-06 01:22:01', 'WK010-杨俊杰在2022/3/6 1:22:01位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-06 01:22:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (236, '2022-03-06 01:23:01', 'admin-杨俊杰在2022/3/6 1:23:01位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-06 01:23:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (237, '2022-03-06 12:39:56', 'WK010-杨俊杰在2022/3/6 12:39:56位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-06 12:39:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (238, '2022-03-09 17:23:43', 'admin-杨俊杰在2022/3/9 17:23:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-09 17:23:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (239, '2022-03-09 17:31:00', 'admin-杨俊杰在2022/3/9 17:30:59位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-09 17:31:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (240, '2022-03-09 23:12:25', 'WK010-杨俊杰在2022/3/9 23:12:25位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-09 23:12:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (241, '2022-03-10 17:43:52', 'WK010-杨俊杰在2022/3/10 17:43:52位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-10 17:43:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (242, '2022-03-11 20:43:40', 'admin-杨俊杰在2022/3/11 20:43:40位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-11 20:43:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (243, '2022-03-13 14:05:06', 'WK010-杨俊杰在2022/3/13 14:05:05位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 14:05:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (244, '2022-03-13 14:42:34', 'admin-杨俊杰在2022/3/13 14:42:33位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-13 14:42:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (245, '2022-03-13 14:43:15', 'WK010-杨俊杰在2022/3/13 14:43:15位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 14:43:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (246, '2022-03-13 14:46:11', 'WK010-杨俊杰在2022/3/13 14:46:10位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 14:46:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (247, '2022-03-13 14:47:45', 'WK010-杨俊杰在2022/3/13 14:47:45位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 14:47:45', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (248, '2022-03-13 14:49:06', 'WK010-杨俊杰在2022/3/13 14:49:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 14:49:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (249, '2022-03-13 14:52:30', 'WK010-杨俊杰在2022/3/13 14:52:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 14:52:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (250, '2022-03-13 14:53:01', '经理部-总经理-杨俊杰于2022/3/13 14:53:00帮助TS001344013384进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 14:53:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (252, '2022-03-13 14:54:46', '经理部-总经理-杨俊杰于2022/3/13 14:54:46帮助TS000299787414进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 14:54:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (253, '2022-03-13 14:55:12', '经理部-总经理-杨俊杰于2022/3/13 14:55:11帮助TS001535098782进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 14:55:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (254, '2022-03-13 14:55:35', '经理部-总经理-杨俊杰于2022/3/13 14:55:34帮助TS003574305322进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 14:55:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (255, '2022-03-13 14:56:01', '经理部-总经理-杨俊杰于2022/3/13 14:56:00帮助TS004121649776进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 14:56:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (256, '2022-03-13 15:02:23', 'WK010-杨俊杰在2022/3/13 15:02:23位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:02:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (257, '2022-03-13 15:04:04', 'WK010-杨俊杰在2022/3/13 15:04:03位于1.5.0.7执行:添加了一名客户,客户编号为:TS-202200141', 'WK010', 300, 0, 'WK010', '2022-03-13 15:04:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (258, '2022-03-13 15:08:38', 'WK010-杨俊杰在2022/3/13 15:08:37位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:08:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (259, '2022-03-13 15:11:39', 'WK010-杨俊杰在2022/3/13 15:11:38位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:11:39', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (260, '2022-03-13 15:14:06', 'WK010-杨俊杰在2022/3/13 15:14:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:14:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (261, '2022-03-13 15:14:31', '经理部-总经理-杨俊杰于2022/3/13 15:14:31帮助TS01562313进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 15:14:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (262, '2022-03-13 15:15:00', '经理部-总经理-杨俊杰于2022/3/13 15:14:59帮助TS096263040047进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 15:15:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (263, '2022-03-13 15:15:26', '经理部-总经理-杨俊杰于2022/3/13 15:15:26帮助TS039625402835进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 15:15:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (264, '2022-03-13 15:26:28', 'WK010-杨俊杰在2022/3/13 15:26:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:26:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (265, '2022-03-13 15:27:55', 'WK010-杨俊杰在2022/3/13 15:27:54位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:27:55', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (266, '2022-03-13 15:36:35', 'WK010-杨俊杰在2022/3/13 15:36:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:36:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (267, '2022-03-13 15:39:10', 'WK010-杨俊杰在2022/3/13 15:39:10位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:39:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (268, '2022-03-13 15:40:31', 'WK010-杨俊杰在2022/3/13 15:40:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:40:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (269, '2022-03-13 15:50:28', 'WK010-杨俊杰在2022/3/13 15:50:27位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:50:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (270, '2022-03-13 15:51:05', 'admin-杨俊杰在2022/3/13 15:51:04位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-13 15:51:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (271, '2022-03-13 15:57:15', 'WK010-杨俊杰在2022/3/13 15:57:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 15:57:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (272, '2022-03-13 15:59:33', 'admin-杨俊杰在2022/3/13 15:59:33位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-13 15:59:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (273, '2022-03-13 16:06:39', 'WK010-杨俊杰在2022/3/13 16:06:39位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 16:06:39', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (274, '2022-03-13 20:55:34', 'WK010-杨俊杰在2022/3/13 20:55:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-13 20:55:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (275, '2022-03-13 20:56:20', '经理部-总经理-杨俊杰于2022/3/13 20:56:20帮助TS006957585451进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-13 20:56:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (276, '2022-03-13 23:43:06', 'admin-杨俊杰在2022/3/13 23:43:06位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-13 23:43:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (278, '2022-03-14 19:54:50', 'WK010-杨俊杰在2022/3/14 19:54:50位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-14 19:54:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (280, '2022-03-14 19:55:42', '经理部-总经理-杨俊杰于2022/3/14 19:55:42帮助TS001535098782进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-14 19:55:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (281, '2022-03-14 19:56:13', '经理部-总经理-杨俊杰于2022/3/14 19:56:12帮助TS006292728074进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-14 19:56:13', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (282, '2022-03-14 20:04:10', 'WK010-杨俊杰在2022/3/14 20:04:10位于1.5.0.7执行:修改了一名客户信息,客户编号为:TS-202200136', 'WK010', 300, 0, 'WK010', '2022-03-14 20:04:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (283, '2022-03-14 22:34:43', 'WK010-杨俊杰在2022/3/14 22:34:42位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-14 22:34:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (284, '2022-03-14 22:39:19', 'WK010-杨俊杰在2022/3/14 22:39:18位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-14 22:39:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (285, '2022-03-14 22:39:36', 'WK010-杨俊杰在2022/3/14 22:39:35位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-14 22:39:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (286, '2022-03-14 22:40:34', 'WK010-杨俊杰在2022/3/14 22:40:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-14 22:40:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (288, '2022-03-14 23:31:29', 'WK010-杨俊杰在2022/3/14 23:31:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-14 23:31:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (289, '2022-03-14 23:31:52', '经理部-总经理-杨俊杰于2022/3/14 23:31:52帮助TS015253323658进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-14 23:31:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (290, '2022-03-14 23:32:19', '经理部-总经理-杨俊杰于2022/3/14 23:32:19帮助TS026428262056进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-14 23:32:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (291, '2022-03-14 23:32:47', '经理部-总经理-杨俊杰于2022/3/14 23:32:47帮助TS063603838018进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-14 23:32:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (292, '2022-03-14 23:33:59', 'admin-杨俊杰在2022/3/14 23:33:59位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-14 23:33:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (293, '2022-03-15 19:38:17', 'WK010-杨俊杰在2022/3/15 19:38:17位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-15 19:38:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (294, '2022-03-15 19:38:41', '经理部-总经理-杨俊杰于2022/3/15 19:38:40帮助TS012832200601进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-15 19:38:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (296, '2022-03-15 23:17:28', 'WK010-杨俊杰在2022/3/15 23:17:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-15 23:17:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (297, '2022-03-16 23:08:06', 'WK010-杨俊杰在2022/3/16 23:08:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-16 23:08:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (299, '2022-03-17 23:14:16', 'WK010-杨俊杰在2022/3/17 23:14:15位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-17 23:14:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (301, '2022-03-17 23:15:20', 'admin-杨俊杰在2022/3/17 23:15:20位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-17 23:15:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (302, '2022-03-20 16:05:46', 'WK010-杨俊杰在2022/3/20 16:05:45位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-20 16:05:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (304, '2022-03-20 16:06:22', '经理部-总经理-杨俊杰于2022/3/20 16:06:21帮助TS006957585451进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-20 16:06:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (305, '2022-03-20 16:06:46', '经理部-总经理-杨俊杰于2022/3/20 16:06:45帮助TS011721677405进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-20 16:06:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (306, '2022-03-21 18:58:59', 'admin-杨俊杰在2022/3/21 18:58:59位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-21 18:58:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (307, '2022-03-22 11:42:43', 'WK010-杨俊杰在2022-03-22 11:42:42位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-22 11:42:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (308, '2022-03-22 16:03:40', 'admin-杨俊杰在2022-03-22 16:03:40位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-22 16:03:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (309, '2022-03-22 16:04:24', 'WK010-杨俊杰在2022-03-22 16:04:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-22 16:04:24', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (311, '2022-03-23 19:44:05', 'WK010-杨俊杰在2022/3/23 19:44:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-23 19:44:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (313, '2022-03-24 23:03:01', 'WK010-杨俊杰在2022/3/24 23:03:00位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-24 23:03:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (315, '2022-03-25 19:38:14', 'WK010-杨俊杰在2022-03-25 19:38:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-25 19:38:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (316, '2022-03-26 00:48:02', 'WK010-杨俊杰在2022/3/26 0:48:02位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-26 00:48:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (317, '2022-03-26 20:44:52', 'WK010-杨俊杰在2022/3/26 20:44:52位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-26 20:44:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (319, '2022-03-28 23:05:20', 'WK010-杨俊杰在2022/3/28 23:05:20位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-28 23:05:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (321, '2022-03-28 23:06:03', '经理部-总经理-杨俊杰于2022/3/28 23:06:02帮助TS053630244707进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-28 23:06:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (322, '2022-03-28 23:06:37', '经理部-总经理-杨俊杰于2022/3/28 23:06:37帮助TS900880194151进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-28 23:06:37', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (323, '2022-03-28 23:07:09', '经理部-总经理-杨俊杰于2022/3/28 23:07:09帮助TS040379060037进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-03-28 23:07:09', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (324, '2022-03-29 15:23:35', 'admin-杨俊杰在2022/3/29 15:23:34位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-29 15:23:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (325, '2022-03-29 15:24:58', 'WK010-杨俊杰在2022/3/29 15:24:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-29 15:24:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (327, '2022-03-29 15:28:27', 'admin-杨俊杰在2022/3/29 15:28:27位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-29 15:28:27', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (328, '2022-03-29 16:44:20', 'WK010-杨俊杰在2022/3/29 16:44:19位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-29 16:44:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (329, '2022-03-29 16:47:25', '经理部-总经理-杨俊杰于2022/3/29 16:47:25帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-03-29 16:47:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (330, '2022-03-29 16:48:12', 'admin-杨俊杰在2022/3/29 16:48:12位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-29 16:48:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (331, '2022-03-29 16:49:34', 'WK010-杨俊杰在2022/3/29 16:49:33位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-29 16:49:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (332, '2022-03-30 19:13:03', 'WK010-杨俊杰在2022/3/30 19:13:03位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-30 19:13:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (334, '2022-03-30 20:52:14', 'admin-杨俊杰在2022/3/30 20:52:13位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-03-30 20:52:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (335, '2022-03-30 23:06:33', 'WK010-杨俊杰在2022/3/30 23:06:32位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-30 23:06:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (336, '2022-03-31 23:11:32', 'WK010-杨俊杰在2022/3/31 23:11:31位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-03-31 23:11:32', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (338, '2022-04-01 23:00:16', 'admin-杨俊杰在2022/4/1 23:00:16位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-01 23:00:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (339, '2022-04-03 12:48:05', 'WK010-杨俊杰在2022/4/3 12:48:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 12:48:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (341, '2022-04-03 13:39:57', 'WK010-杨俊杰在2022/4/3 13:39:56位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 13:39:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (342, '2022-04-03 13:40:41', 'WK010-杨俊杰在2022/4/3 13:40:41位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 13:40:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (343, '2022-04-03 13:53:28', 'WK010-杨俊杰在2022/4/3 13:53:27位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 13:53:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (344, '2022-04-03 13:55:12', 'WK010-杨俊杰在2022/4/3 13:55:12位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 13:55:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (345, '2022-04-03 13:56:07', 'WK010-杨俊杰在2022/4/3 13:56:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 13:56:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (346, '2022-04-03 13:58:34', 'WK010-杨俊杰在2022/4/3 13:58:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 13:58:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (347, '2022-04-03 14:00:41', 'WK010-杨俊杰在2022/4/3 14:00:41位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-03 14:00:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (348, '2022-04-04 12:10:04', 'WK010-杨俊杰在2022/4/4 12:10:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-04 12:10:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (349, '2022-04-04 12:10:37', 'admin-杨俊杰在2022/4/4 12:10:36位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-04 12:10:37', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (350, '2022-04-04 14:35:33', 'admin-杨俊杰在2022/4/4 14:35:33位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-04 14:35:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (351, '2022-04-05 16:57:32', 'WK010-杨俊杰在2022/4/5 16:57:32位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-05 16:57:32', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (352, '2022-04-05 17:00:15', 'admin-杨俊杰在2022/4/5 17:00:15位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-05 17:00:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (353, '2022-04-05 17:01:58', 'admin-杨俊杰在2022/4/5 17:01:58位于1.5.0.7执行:恢复职位类型操作!恢复值为:P-2022006', 'admin', 200, 0, 'admin', '2022-04-05 17:01:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (354, '2022-04-05 17:02:02', 'admin-杨俊杰在2022/4/5 17:02:01位于1.5.0.7执行:删除职位类型操作!删除值为:P-0001', 'admin', 200, 0, 'admin', '2022-04-05 17:02:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (355, '2022-04-05 17:08:50', 'admin-杨俊杰在2022/4/5 17:08:49位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-05 17:08:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (356, '2022-04-05 17:53:54', 'WK010-杨俊杰在2022/4/5 17:53:53位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-05 17:53:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (357, '2022-04-05 17:58:00', 'admin-杨俊杰在2022/4/5 17:57:59位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-05 17:58:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (358, '2022-04-05 18:04:58', 'SqlSugar.SqlSugarException: Exception while reading from stream', 'admin', 300, 0, 'admin', '2022-04-05 18:04:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (359, '2022-04-05 19:58:11', 'admin-杨俊杰在2022/4/5 19:58:11位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-05 19:58:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (360, '2022-04-05 20:01:07', 'WK010-杨俊杰在2022/4/5 20:01:07位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-05 20:01:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (361, '2022-04-05 20:32:02', 'WK010-杨俊杰在2022/4/5 20:32:02位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-05 20:32:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (362, '2022-04-05 20:50:10', 'WK010-杨俊杰在2022/4/5 20:50:10位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-05 20:50:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (364, '2022-04-05 21:38:33', 'WK010-杨俊杰在2022/4/5 21:38:33位于1.5.0.7执行:帮助TS001344013384进行了消费商品:雪碧操作!', 'WK010', 200, 0, 'WK010', '2022-04-05 21:38:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (366, '2022-04-05 21:38:40', 'WK010-杨俊杰在2022/4/5 21:38:39位于1.5.0.7执行:帮助TS001344013384进行了消费商品:三只松鼠夏威夷坚果操作!', 'WK010', 200, 0, 'WK010', '2022-04-05 21:38:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (367, '2022-04-06 15:14:06', 'WK010-杨俊杰在2022/4/6 15:14:05位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-06 15:14:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (369, '2022-04-06 15:18:50', '经理部总经理杨俊杰于2022/4/6 15:18:50帮助1111111进行了预订房间操作!', 'WK010', 100, 0, 'WK010', '2022-04-06 15:18:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (371, '2022-04-06 15:21:50', 'WK010-杨俊杰在2022/4/6 15:21:50位于1.5.0.7执行:帮助TS001344013384进行了消费商品:可口可乐操作!', 'WK010', 200, 0, 'WK010', '2022-04-06 15:21:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (373, '2022-04-06 15:21:57', 'WK010-杨俊杰在2022/4/6 15:21:56位于1.5.0.7执行:帮助TS001344013384进行了消费商品:黄油华夫饼操作!', 'WK010', 200, 0, 'WK010', '2022-04-06 15:21:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (374, '2022-04-06 15:22:48', 'admin-杨俊杰在2022/4/6 15:22:48位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-06 15:22:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (375, '2022-04-06 23:02:26', 'WK010-杨俊杰在2022/4/6 23:02:26位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-06 23:02:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (376, '2022-04-06 23:02:57', 'admin-杨俊杰在2022/4/6 23:02:57位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-06 23:02:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (377, '2022-04-06 23:04:54', 'admin-杨俊杰在2022/4/6 23:04:53位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-06 23:04:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (378, '2022-04-06 23:05:02', 'admin-杨俊杰在2022/4/6 23:05:02位于1.5.0.7执行:恢复职位类型操作!恢复值为:P-0001', 'admin', 200, 0, 'admin', '2022-04-06 23:05:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (379, '2022-04-07 16:18:44', 'WK010-杨俊杰在2022/4/7 16:18:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-07 16:18:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (381, '2022-04-07 16:22:11', 'admin-杨俊杰在2022/4/7 16:22:11位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-07 16:22:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (382, '2022-04-07 23:04:08', 'WK010-杨俊杰在2022/4/7 23:04:07位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-07 23:04:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (383, '2022-04-07 23:04:18', 'admin-杨俊杰在2022/4/7 23:04:18位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-07 23:04:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (384, '2022-04-08 23:06:49', 'admin-杨俊杰在2022/4/8 23:06:49位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-08 23:06:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (385, '2022-04-08 23:07:59', 'admin-杨俊杰在2022/4/8 23:07:58位于1.5.0.7执行:修改部门类型操作!修改值为:D-011', 'admin', 200, 0, 'admin', '2022-04-08 23:07:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (386, '2022-04-09 00:10:47', 'WK010-杨俊杰在2022/4/9 0:10:46位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-09 00:10:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (387, '2022-04-10 10:01:08', 'WK010-杨俊杰在2022/4/10 10:01:08位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-10 10:01:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (389, '2022-04-13 17:09:07', 'admin-杨俊杰在2022/4/13 17:09:06位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-13 17:09:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (390, '2022-04-14 13:33:52', 'WK010-杨俊杰在2022/4/14 13:33:51位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-14 13:33:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (392, '2022-04-15 09:52:15', 'WK010-杨俊杰在2022/4/15 9:52:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-15 09:52:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (393, '2022-04-15 09:55:11', 'admin-杨俊杰在2022/4/15 9:55:11位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-15 09:55:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (394, '2022-04-15 21:17:51', 'admin-杨俊杰在2022/4/15 星期五 21:17:50位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-15 21:17:51', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (395, '2022-04-15 21:19:08', 'admin-杨俊杰在2022/4/15 星期五 21:19:08位于1.5.0.7执行:新增商品操作!新增值为:ST-202200107', 'admin', 200, 0, 'admin', '2022-04-15 21:19:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (396, '2022-04-16 20:30:58', 'WK010-杨俊杰在2022/4/16 20:30:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-16 20:30:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (398, '2022-04-18 19:19:38', 'WK010-杨俊杰在2022/4/18 19:19:38位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-18 19:19:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (400, '2022-04-20 23:11:02', 'WK010-杨俊杰在2022/4/20 23:11:02位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-20 23:11:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (401, '2022-04-22 09:38:10', 'WK010-杨俊杰在2022/4/22 9:38:10位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-22 09:38:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (402, '2022-04-22 10:20:36', 'admin-杨俊杰在2022/4/22 10:20:35位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-22 10:20:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (403, '2022-04-22 10:21:47', 'WK010-杨俊杰在2022/4/22 10:21:46位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-22 10:21:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (404, '2022-04-22 10:26:02', 'admin-杨俊杰在2022/4/22 10:26:02位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-22 10:26:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (405, '2022-04-22 14:04:40', 'WK010-杨俊杰在2022/4/22 14:04:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-22 14:04:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (407, '2022-04-26 12:00:49', 'WK010-杨俊杰在2022/4/26 12:00:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-26 12:00:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (408, '2022-04-26 14:27:22', 'WK010-杨俊杰在2022-04-26 14:27:22位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-26 14:27:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (409, '2022-04-26 23:29:05', 'WK010-杨俊杰在2022/4/26 23:29:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-26 23:29:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (411, '2022-04-28 00:18:37', 'WK010-杨俊杰在2022/4/28 0:18:36位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-28 00:18:37', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (412, '2022-04-29 09:45:58', 'admin-杨俊杰在2022-04-29 9:45:58位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-29 09:45:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (413, '2022-04-29 09:47:04', 'WK010-杨俊杰在2022-04-29 9:47:03位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-29 09:47:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (414, '2022-04-29 11:28:26', 'admin-杨俊杰在2022/4/29 11:28:25位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-29 11:28:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (415, '2022-04-29 11:29:15', 'admin-杨俊杰在2022/4/29 11:29:15位于1.5.0.7执行:删除职位类型操作!删除值为:P-0004', 'admin', 200, 0, 'admin', '2022-04-29 11:29:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (416, '2022-04-29 11:29:36', 'admin-杨俊杰在2022/4/29 11:29:35位于1.5.0.7执行:新增职位类型操作!新增值为:P-2022007', 'admin', 200, 0, 'admin', '2022-04-29 11:29:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (417, '2022-04-29 11:29:43', 'admin-杨俊杰在2022/4/29 11:29:43位于1.5.0.7执行:恢复职位类型操作!恢复值为:P-0004', 'admin', 200, 0, 'admin', '2022-04-29 11:29:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (418, '2022-04-29 11:34:52', 'admin-杨俊杰在2022/4/29 11:34:52位于1.5.0.7执行:上传公告操作!新增值为:UP-202204004', 'admin', 200, 0, 'admin', '2022-04-29 11:34:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (419, '2022-04-29 11:35:29', 'WK010-杨俊杰在2022/4/29 11:35:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-29 11:35:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (421, '2022-04-29 11:38:04', 'WK010-杨俊杰在2022/4/29 11:38:03位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-04-29 11:38:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (422, '2022-04-29 13:34:01', 'admin-杨俊杰在2022/4/29 13:34:00位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-29 13:34:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (423, '2022-04-30 15:48:42', 'admin-杨俊杰在2022/4/30 15:48:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-04-30 15:48:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (424, '2022-05-02 00:51:57', 'WK010-杨俊杰在2022/5/2 0:51:56位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-02 00:51:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (426, '2022-05-03 19:21:56', 'admin-杨俊杰在2022-05-03 19:21:56位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-03 19:21:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (427, '2022-05-03 19:22:17', 'WK010-杨俊杰在2022-05-03 19:22:17位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-03 19:22:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (428, '2022-05-03 19:24:49', 'WK010-杨俊杰在2022-05-03 19:24:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-03 19:24:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (429, '2022-05-04 23:21:12', 'WK010-杨俊杰在2022/5/4 23:21:11位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-04 23:21:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (430, '2022-05-06 10:57:20', 'admin-杨俊杰在2022.05.06 10:57:19位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-06 10:57:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (431, '2022-05-06 14:14:28', 'admin-杨俊杰在2022.05.06 14:14:28位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-06 14:14:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (432, '2022-05-06 14:32:52', 'WK010-杨俊杰在2022-05-06 14:32:51位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-06 14:32:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (433, '2022-05-07 16:18:34', 'admin-杨俊杰在2022/5/7 16:18:33位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-07 16:18:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (434, '2022-05-07 19:14:55', 'WK010-杨俊杰在2022/5/7 19:14:54位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-07 19:14:55', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (435, '2022-05-07 19:15:14', 'admin-杨俊杰在2022/5/7 19:15:14位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-07 19:15:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (436, '2022-05-08 23:25:36', 'WK010-杨俊杰在2022/5/8 23:25:36位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-08 23:25:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (437, '2022-05-09 13:49:20', 'admin-杨俊杰在2022/5/9 13:49:19位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-09 13:49:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (438, '2022-05-09 13:49:40', 'admin-杨俊杰在2022/5/9 13:49:39位于1.5.0.7执行:删除民族类型操作!删除值为:N-00035', 'admin', 200, 0, 'admin', '2022-05-09 13:49:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (439, '2022-05-09 13:49:44', 'admin-杨俊杰在2022/5/9 13:49:43位于1.5.0.7执行:恢复民族类型操作!恢复值为:N-00035', 'admin', 200, 0, 'admin', '2022-05-09 13:49:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (440, '2022-05-09 13:51:06', 'admin-杨俊杰在2022/5/9 13:51:06位于1.5.0.7执行:禁用/启用管理账号操作!新增值为:1', 'admin', 200, 0, 'admin', '2022-05-09 13:51:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (441, '2022-05-10 00:12:57', 'admin-杨俊杰在2022/5/10 0:12:56位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-10 00:12:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (442, '2022-05-12 20:57:15', 'WK010-杨俊杰在2022/5/12 20:57:15位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-12 20:57:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (444, '2022-05-12 21:01:56', 'WK010-杨俊杰在2022/5/12 21:01:55位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-12 21:01:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (445, '2022-05-13 00:41:36', 'WK010-杨俊杰在2022/5/13 0:41:36位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-13 00:41:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (446, '2022-05-13 22:15:43', 'admin-杨俊杰在2022/5/13 22:15:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-13 22:15:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (447, '2022-05-15 16:15:28', 'WK010-杨俊杰在2022/5/15 16:15:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-15 16:15:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (448, '2022-05-16 10:59:19', 'WK010-杨俊杰在2022/5/16 10:59:19位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-16 10:59:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (449, '2022-05-16 11:02:04', 'admin-杨俊杰在2022/5/16 11:02:03位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-16 11:02:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (450, '2022-05-18 08:55:30', 'admin-杨俊杰在2022/5/18 8:55:30位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-18 08:55:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (451, '2022-05-18 08:56:57', 'admin-杨俊杰在2022/5/18 8:56:56位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-18 08:56:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (452, '2022-05-18 08:58:46', 'admin-杨俊杰在2022/5/18 8:58:45位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-18 08:58:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (453, '2022-05-18 15:46:10', 'admin-杨俊杰在2022/5/18 15:46:09位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-18 15:46:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (454, '2022-05-18 15:50:07', 'WK010-杨俊杰在2022/5/18 15:50:07位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-18 15:50:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (455, '2022-05-18 15:51:20', 'admin-杨俊杰在2022/5/18 15:51:19位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-18 15:51:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (456, '2022-05-18 15:51:31', 'WK010-杨俊杰在2022/5/18 15:51:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-18 15:51:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (457, '2022-05-18 15:54:30', 'admin-杨俊杰在2022/5/18 15:54:29位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-18 15:54:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (458, '2022-05-18 16:01:03', 'WK010-杨俊杰在2022/5/18 16:01:03位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-18 16:01:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (459, '2022-05-18 16:13:41', 'admin-杨俊杰在2022/5/18 16:13:41位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-18 16:13:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (460, '2022-05-18 17:42:29', 'WK010-杨俊杰在2022/5/18 17:42:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-18 17:42:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (461, '2022-05-18 17:46:08', 'WK010-杨俊杰在2022/5/18 17:46:08位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-18 17:46:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (462, '2022-05-18 19:56:26', 'WK010-杨俊杰在2022/5/18 19:56:26位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-18 19:56:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (463, '2022-05-18 23:03:38', 'WK010-杨俊杰在2022/5/18 23:03:37位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-18 23:03:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (464, '2022-05-19 15:54:42', 'admin-杨俊杰在2022/5/19 15:54:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-19 15:54:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (465, '2022-05-19 22:52:30', 'WK010-杨俊杰在2022/5/19 22:52:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-19 22:52:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (466, '2022-05-19 22:54:43', 'admin-杨俊杰在2022/5/19 22:54:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-19 22:54:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (467, '2022-05-21 09:38:58', 'WK010-杨俊杰在2022/5/21 9:38:57位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-21 09:38:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (469, '2022-05-21 21:36:50', 'admin-杨俊杰在2022/5/21 21:36:50位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-21 21:36:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (470, '2022-05-21 22:17:16', 'WK010-杨俊杰在2022/5/21 22:17:16位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-21 22:17:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (471, '2022-05-23 16:53:05', 'WK010-杨俊杰在2022-05-23 16:53:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-23 16:53:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (472, '2022-05-23 16:58:15', 'admin-杨俊杰在2022-05-23 16:58:14位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-23 16:58:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (473, '2022-05-23 17:03:35', 'SqlSugar.SqlSugarException: 23505: 重复键违反唯一约束"wtinfo_pkey"', 'admin', 300, 0, 'admin', '2022-05-23 17:03:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (474, '2022-05-23 17:07:28', 'WK010-杨俊杰在2022-05-23 17:07:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-23 17:07:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (475, '2022-05-23 17:15:07', 'admin-杨俊杰在2022-05-23 17:15:07位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-23 17:15:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (476, '2022-05-23 17:15:51', 'WK010-杨俊杰在2022-05-23 17:15:51位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-23 17:15:51', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (478, '2022-05-23 18:42:03', 'admin-杨俊杰在2022-05-23 18:42:03位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-23 18:42:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (479, '2022-05-25 11:08:57', 'admin-杨俊杰在2022/5/25 11:08:56位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-25 11:08:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (480, '2022-05-25 11:09:42', 'WK010-杨俊杰在2022/5/25 11:09:42位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-25 11:09:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (481, '2022-05-25 11:10:01', 'admin-杨俊杰在2022/5/25 11:10:00位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-25 11:10:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (482, '2022-05-25 17:22:51', 'admin-杨俊杰在5/25/2022 5:22:50 PM位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-25 17:22:51', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (483, '2022-05-26 09:07:49', 'admin-杨俊杰在2022/5/26 9:07:48位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-26 09:07:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (484, '2022-05-27 09:42:36', 'WK010-杨俊杰在2022-05-27 09:42:35位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-27 09:42:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (485, '2022-05-27 09:45:13', 'admin-杨俊杰在2022-05-27 09:45:13位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-27 09:45:13', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (486, '2022-05-27 22:32:21', 'WK010-杨俊杰在2022/5/27 22:32:21位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-27 22:32:21', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (487, '2022-05-27 22:33:48', 'admin-杨俊杰在2022/5/27 22:33:47位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-27 22:33:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (488, '2022-05-27 22:34:22', 'WK010-杨俊杰在2022/5/27 22:34:21位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-27 22:34:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (489, '2022-05-27 22:38:02', 'WK010-杨俊杰在2022/5/27 22:38:01位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-27 22:38:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (490, '2022-05-27 22:39:34', 'admin-杨俊杰在2022/5/27 22:39:33位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-27 22:39:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (491, '2022-05-28 10:06:40', 'WK010-杨俊杰在2022/5/28 10:06:39位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-28 10:06:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (492, '2022-05-28 10:10:11', 'admin-杨俊杰在2022/5/28 10:10:10位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-28 10:10:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (493, '2022-05-29 19:04:56', 'admin-杨俊杰在2022-5-29 19:04:56位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-29 19:04:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (494, '2022-05-29 19:05:32', 'admin-杨俊杰在2022-5-29 19:05:32位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-29 19:05:32', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (495, '2022-05-29 19:05:50', 'admin-杨俊杰在2022-5-29 19:05:50位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-29 19:05:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (496, '2022-05-29 19:06:43', 'admin-杨俊杰在2022-5-29 19:06:42位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-29 19:06:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (497, '2022-05-29 23:54:53', 'WK010-杨俊杰在2022/5/29 23:54:53位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-29 23:54:53', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (499, '2022-05-30 09:49:01', 'admin-杨俊杰在2022-05-30 09:49:01位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-30 09:49:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (500, '2022-05-30 17:05:12', 'admin-杨俊杰在2022/5/30 17:05:12位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-30 17:05:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (501, '2022-05-30 17:05:42', 'WK010-杨俊杰在2022/5/30 17:05:41位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-30 17:05:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (503, '2022-05-30 19:36:59', 'WK010-杨俊杰在2022/5/30 19:36:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-30 19:36:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (504, '2022-05-30 19:41:22', 'admin-杨俊杰在2022/5/30 19:41:22位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-30 19:41:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (505, '2022-05-30 19:43:06', 'WK010-杨俊杰在2022/5/30 19:43:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-30 19:43:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (507, '2022-05-30 19:44:06', 'WK010-杨俊杰在2022/5/30 19:44:06位于1.5.0.7执行:添加了一名客户,客户编号为:TS-202200157', 'WK010', 300, 0, 'WK010', '2022-05-30 19:44:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (508, '2022-05-30 19:45:07', '经理部-总经理-杨俊杰于2022/5/30 19:45:06帮助TS-202200157进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-05-30 19:45:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (509, '2022-05-30 19:45:20', 'admin-杨俊杰在2022/5/30 19:45:19位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-30 19:45:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (510, '2022-05-30 19:47:01', 'WK010-杨俊杰在2022/5/30 19:47:01位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-30 19:47:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (511, '2022-05-30 19:48:30', 'WK010-杨俊杰在2022/5/30 19:48:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-30 19:48:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (512, '2022-05-30 19:50:33', 'WK010-杨俊杰在2022/5/30 19:50:32位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-05-30 19:50:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (513, '2022-05-31 14:41:04', 'admin-杨俊杰在2022/5/31 14:41:03位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-05-31 14:41:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (514, '2022-06-04 10:50:45', 'WK010-杨俊杰在2022/6/4 10:50:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 10:50:45', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (515, '2022-06-04 10:52:37', 'SqlSugar.SqlSugarException: 23505: duplicate key value violates unique constraint "wtinfo_pkey"', 'WK010', 300, 0, 'WK010', '2022-06-04 10:52:37', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (516, '2022-06-04 10:54:15', 'WK010-杨俊杰在2022/6/4 10:54:15位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 10:54:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (517, '2022-06-04 10:54:52', 'admin-杨俊杰在2022/6/4 10:54:51位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-06-04 10:54:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (518, '2022-06-04 11:25:41', 'WK010-杨俊杰在2022/6/4 11:25:41位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 11:25:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (520, '2022-06-04 11:29:54', 'WK010-杨俊杰在2022/6/4 11:29:54位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 11:29:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (521, '2022-06-04 13:43:26', 'admin-杨俊杰在2022/6/4 13:43:25位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-06-04 13:43:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (522, '2022-06-04 18:06:34', 'WK010-杨俊杰在2022/6/4 18:06:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:06:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (523, '2022-06-04 18:17:41', 'WK010-杨俊杰在2022/6/4 18:17:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:17:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (524, '2022-06-04 18:19:44', 'WK010-杨俊杰在2022/6/4 18:19:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:19:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (525, '2022-06-04 18:20:55', 'WK010-杨俊杰在2022/6/4 18:20:54位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:20:55', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (526, '2022-06-04 18:27:04', 'WK010-杨俊杰在2022/6/4 18:27:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:27:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (527, '2022-06-04 18:34:20', 'WK010-杨俊杰在2022/6/4 18:34:20位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:34:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (529, '2022-06-04 18:35:16', 'WK010-杨俊杰在2022/6/4 18:35:16位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:35:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (531, '2022-06-04 18:36:37', 'WK010-杨俊杰在2022/6/4 18:36:36位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-04 18:36:37', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (532, '2022-06-05 19:19:34', 'WK010-杨俊杰在2022/6/5 19:19:33位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-05 19:19:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (534, '2022-06-07 19:31:38', 'WK010-杨俊杰在2022/6/7 19:31:37位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-07 19:31:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (535, '2022-06-12 01:07:15', 'WK010-杨俊杰在2022/6/12 1:07:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-12 01:07:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (537, '2022-06-14 23:14:14', 'WK010-杨俊杰在2022/6/14 23:14:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-14 23:14:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (539, '2022-06-16 20:44:41', 'admin-杨俊杰在2022/6/16 20:44:41位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-06-16 20:44:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (540, '2022-06-16 20:45:35', 'WK010-杨俊杰在2022/6/16 20:45:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-16 20:45:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (541, '2022-06-16 20:48:49', 'WK010-杨俊杰在2022/6/16 20:48:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-16 20:48:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (542, '2022-06-16 23:34:32', 'WK010-杨俊杰在2022-06-16 23:34:32位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-16 23:34:32', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (543, '2022-06-16 23:35:28', 'WK010-杨俊杰在2022-06-16 23:35:27位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-16 23:35:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (544, '2022-06-16 23:36:06', 'admin-杨俊杰在2022-06-16 23:36:05位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-06-16 23:36:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (545, '2022-06-26 16:00:40', 'WK010-杨俊杰在2022/6/26 16:00:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-26 16:00:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (547, '2022-06-27 10:34:09', 'WK010-杨俊杰在2022-06-27 10:34:09位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-27 10:34:09', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (548, '2022-06-27 14:29:38', 'WK010-杨俊杰在2022/6/27 14:29:38位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-27 14:29:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (549, '2022-06-27 14:50:51', 'WK010-杨俊杰在2022/6/27 14:50:50位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-27 14:50:51', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (550, '2022-06-30 11:26:59', 'WK010-杨俊杰在2022/6/30 11:26:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-06-30 11:26:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (551, '2022-06-30 11:31:23', 'admin-杨俊杰在2022/6/30 11:31:22位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-06-30 11:31:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (552, '2022-07-01 20:22:11', 'WK010-杨俊杰在2022/7/1 20:22:10位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-07-01 20:22:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (554, '2022-07-05 23:05:44', 'admin-杨俊杰在2022/7/5 23:05:44位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-07-05 23:05:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (555, '2022-07-13 23:29:05', 'WK010-杨俊杰在2022/7/13 23:29:05位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-07-13 23:29:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (557, '2022-07-18 21:37:27', 'WK010-杨俊杰在2022/7/18 21:37:26位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-07-18 21:37:27', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (559, '2022-07-21 09:29:08', 'admin-杨俊杰在2022/7/21 9:29:07位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-07-21 09:29:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (560, '2022-07-30 15:47:03', 'WK010-杨俊杰在2022/7/30 15:47:03位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-07-30 15:47:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (561, '2022-07-30 15:53:57', 'WK010-杨俊杰在2022/7/30 15:53:57位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-07-30 15:53:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (562, '2022-07-30 15:56:45', 'WK010-杨俊杰在2022/7/30 15:56:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-07-30 15:56:45', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (563, '2022-08-02 23:07:36', 'WK010-杨俊杰在2022/8/2 23:07:36位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-08-02 23:07:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (565, '2022-08-07 15:56:17', 'WK010-杨俊杰在2022/8/7 15:56:16位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-08-07 15:56:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (566, '2022-08-09 17:55:33', 'admin-杨俊杰在2022/8/9 17:55:33位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-08-09 17:55:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (567, '2022-08-09 17:55:48', 'WK010-杨俊杰在2022/8/9 17:55:47位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-08-09 17:55:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (568, '2022-08-09 17:56:58', 'admin-杨俊杰在2022/8/9 17:56:57位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-08-09 17:56:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (569, '2022-08-16 20:21:40', 'WK010-杨俊杰在2022/8/16 20:21:39位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-08-16 20:21:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (570, '2022-08-23 10:56:54', 'WK010-杨俊杰在2022/8/23 10:56:54位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-08-23 10:56:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (571, '2022-08-28 16:38:10', 'WK010-杨俊杰在2022/8/28 16:38:09位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-08-28 16:38:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (572, '2022-09-01 23:14:05', 'admin-杨俊杰在2022/9/1 23:14:04位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-09-01 23:14:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (573, '2022-09-01 23:14:20', 'admin-杨俊杰在2022/9/1 23:14:20位于1.5.0.7执行:删除职位类型操作!删除值为:P-2022006', 'admin', 200, 0, 'admin', '2022-09-01 23:14:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (574, '2022-09-11 01:43:36', 'WK010-杨俊杰在2022/9/11 1:43:36位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-09-11 01:43:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (576, '2022-09-11 14:14:42', 'WK010-杨俊杰在2022/9/11 14:14:42位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-09-11 14:14:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (577, '2022-09-15 01:32:06', 'WK010-杨俊杰在2022/9/15 1:32:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-09-15 01:32:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (578, '2022-09-15 21:23:59', 'WK010-杨俊杰在2022/9/15 21:23:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-09-15 21:23:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (579, '2022-09-15 21:27:16', 'WK010-杨俊杰在2022/9/15 21:27:16位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-09-15 21:27:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (580, '2022-09-15 21:27:56', 'admin-杨俊杰在2022/9/15 21:27:56位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-09-15 21:27:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (581, '2022-09-15 21:29:50', 'WK010-杨俊杰在2022/9/15 21:29:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-09-15 21:29:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (582, '2022-09-18 23:38:26', 'WK010-杨俊杰在2022/9/18 23:38:25位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-09-18 23:38:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (584, '2022-09-18 23:39:19', 'admin-杨俊杰在2022/9/18 23:39:19位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-09-18 23:39:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (585, '2022-09-18 23:39:51', 'admin-杨俊杰在2022/9/18 23:39:51位于1.5.0.7执行:删除部门类型操作!删除值为:D-20210034', 'admin', 200, 0, 'admin', '2022-09-18 23:39:51', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (586, '2022-09-18 23:39:57', 'admin-杨俊杰在2022/9/18 23:39:57位于1.5.0.7执行:删除部门类型操作!删除值为:D-20210087', 'admin', 200, 0, 'admin', '2022-09-18 23:39:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (587, '2022-09-24 19:48:50', 'WK010-杨俊杰在2022/9/24 19:48:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-09-24 19:48:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (589, '2022-09-25 19:43:01', 'admin-杨俊杰在2022-09-25 19:43:00位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-09-25 19:43:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (590, '2022-09-28 15:37:54', 'admin-杨俊杰在2022/9/28 15:37:53位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-09-28 15:37:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (591, '2022-10-04 00:48:25', 'WK010-杨俊杰在2022/10/4 0:48:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-10-04 00:48:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (593, '2022-10-04 00:49:04', 'WK010-杨俊杰在2022/10/4 0:49:04位于1.5.0.7执行:帮助TS003574305322进行了消费商品:青岛啤酒操作!', 'WK010', 200, 0, 'WK010', '2022-10-04 00:49:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (595, '2022-10-07 10:04:29', 'admin-杨俊杰在2022/10/7 10:04:29位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-10-07 10:04:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (596, '2022-10-12 09:24:05', 'admin-杨俊杰在2022/10/12 9:24:05位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-10-12 09:24:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (597, '2022-10-14 21:17:24', 'admin-杨俊杰在2022/10/14 21:17:24位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-10-14 21:17:24', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (598, '2022-10-18 23:00:31', 'WK010-杨俊杰在2022/10/18 23:00:31位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-10-18 23:00:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (599, '2022-10-22 17:41:56', 'WK010-杨俊杰在2022/10/22 17:41:56位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-10-22 17:41:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (600, '2022-10-31 10:50:15', 'admin-杨俊杰在2022/10/31 10:50:14位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-10-31 10:50:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (601, '2022-10-31 10:52:57', 'admin-杨俊杰在2022/10/31 10:52:57位于1.5.0.7执行:禁用/启用管理账号操作!新增值为:1', 'admin', 200, 0, 'admin', '2022-10-31 10:52:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (602, '2022-10-31 10:53:09', 'WK010-杨俊杰在2022/10/31 10:53:09位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-10-31 10:53:09', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (603, '2022-11-05 00:17:19', 'admin-杨俊杰在2022/11/5 0:17:19位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-11-05 00:17:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (604, '2022-11-05 00:20:02', 'WK010-杨俊杰在2022/11/5 0:20:02位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-05 00:20:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (605, '2022-11-05 00:20:29', 'SqlSugar.SqlSugarException: 23505: duplicate key value violates unique constraint "wtinfo_pkey"', 'WK010', 300, 0, 'WK010', '2022-11-05 00:20:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (606, '2022-11-15 23:19:56', 'admin-杨俊杰在2022/11/15 23:19:55位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-11-15 23:19:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (607, '2022-11-15 23:24:56', 'WK010-杨俊杰在2022/11/15 23:24:55位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-15 23:24:56', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (608, '2022-11-16 10:22:13', 'WK010-杨俊杰在2022/11/16 10:22:12位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-16 10:22:13', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (609, '2022-11-17 10:23:24', 'WK010-杨俊杰在2022/11/17 10:23:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-17 10:23:24', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (611, '2022-11-17 10:30:30', 'admin-杨俊杰在2022/11/17 10:30:29位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-11-17 10:30:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (612, '2022-11-17 10:32:49', 'admin-杨俊杰在2022/11/17 10:32:49位于1.5.0.7执行:删除民族类型操作!删除值为:N-00001', 'admin', 200, 0, 'admin', '2022-11-17 10:32:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (613, '2022-11-17 10:52:00', 'WK010-杨俊杰在2022/11/17 10:51:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-17 10:52:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (615, '2022-11-17 11:09:19', 'WK010-杨俊杰在2022/11/17 11:09:19位于1.5.0.7执行:帮助TS096263040047进行了消费商品:特级杜蕾斯操作!', 'WK010', 200, 0, 'WK010', '2022-11-17 11:09:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (617, '2022-11-17 11:10:05', 'WK010-杨俊杰在2022/11/17 11:10:05位于1.5.0.7执行:帮助TS096263040047进行了消费商品:扑克牌操作!', 'WK010', 200, 0, 'WK010', '2022-11-17 11:10:05', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (618, '2022-11-17 11:19:30', 'SqlSugar.SqlSugarException: 23505: duplicate key value violates unique constraint "wtinfo_pkey"', 'WK010', 300, 0, 'WK010', '2022-11-17 11:19:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (619, '2022-11-17 11:20:06', 'SqlSugar.SqlSugarException: 22007: invalid input syntax for type timestamp: ""', 'WK010', 300, 0, 'WK010', '2022-11-17 11:20:06', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (620, '2022-11-17 13:47:02', 'WK010-杨俊杰在2022/11/17 13:47:02位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-17 13:47:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (621, '2022-11-17 13:50:50', 'admin-杨俊杰在2022/11/17 13:50:49位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-11-17 13:50:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (622, '2022-11-17 15:43:44', 'WK010-杨俊杰在2022/11/17 15:43:43位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-17 15:43:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (623, '2022-11-17 17:04:19', 'SqlSugar.SqlSugarException: 23505: duplicate key value violates unique constraint "wtinfo_pkey"', 'WK010', 300, 0, 'WK010', '2022-11-17 17:04:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (624, '2022-11-17 17:04:49', 'SqlSugar.SqlSugarException: 23505: duplicate key value violates unique constraint "wtinfo_pkey"', 'WK010', 300, 0, 'WK010', '2022-11-17 17:04:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (625, '2022-11-17 17:05:00', 'SqlSugar.SqlSugarException: 23505: duplicate key value violates unique constraint "wtinfo_pkey"', 'WK010', 300, 0, 'WK010', '2022-11-17 17:05:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (626, '2022-11-18 09:51:55', 'WK010-杨俊杰在2022/11/18 9:51:55位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-18 09:51:55', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (628, '2022-11-18 09:54:10', 'WK010-杨俊杰在2022/11/18 9:54:09位于1.5.0.7执行:帮助TS063603838018进行了消费商品:可口可乐操作!', 'WK010', 200, 0, 'WK010', '2022-11-18 09:54:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (630, '2022-11-18 09:54:29', 'WK010-杨俊杰在2022/11/18 9:54:28位于1.5.0.7执行:帮助TS063603838018进行了消费商品:蟹味瓜子仁操作!', 'WK010', 200, 0, 'WK010', '2022-11-18 09:54:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (631, '2022-11-18 09:55:17', 'WK010-杨俊杰在2022/11/18 9:55:16位于1.5.0.7执行:帮助TS063603838018撤销了消费商品:蟹味瓜子仁操作!', 'WK010', 200, 0, 'WK010', '2022-11-18 09:55:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (633, '2022-11-18 09:55:27', 'WK010-杨俊杰在2022/11/18 9:55:27位于1.5.0.7执行:帮助TS063603838018进行了消费商品:香皂操作!', 'WK010', 200, 0, 'WK010', '2022-11-18 09:55:27', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (634, '2022-11-18 09:55:33', 'WK010-杨俊杰在2022/11/18 9:55:32位于1.5.0.7执行:帮助TS063603838018撤销了消费商品:香皂操作!', 'WK010', 200, 0, 'WK010', '2022-11-18 09:55:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (636, '2022-11-18 09:55:44', 'WK010-杨俊杰在2022/11/18 9:55:44位于1.5.0.7执行:帮助TS063603838018进行了消费商品:黄油华夫饼操作!', 'WK010', 200, 0, 'WK010', '2022-11-18 09:55:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (637, '2022-11-18 09:58:04', 'WK010-杨俊杰在2022/11/18 9:58:03位于1.5.0.7执行:修改了一名客户信息,客户编号为:TS-20220099', 'WK010', 300, 0, 'WK010', '2022-11-18 09:58:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (638, '2022-11-18 10:02:49', 'WK010-杨俊杰在2022/11/18 10:02:49位于1.5.0.7执行:添加了一名客户,客户编号为:TS-202200165', 'WK010', 300, 0, 'WK010', '2022-11-18 10:02:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (639, '2022-11-18 10:04:08', 'WK010-杨俊杰在2022/11/18 10:04:08位于1.5.0.7执行:添加了一名客户,客户编号为:TS-202200166', 'WK010', 300, 0, 'WK010', '2022-11-18 10:04:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (640, '2022-11-18 10:19:53', 'admin-杨俊杰在2022/11/18 10:19:53位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-11-18 10:19:53', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (641, '2022-11-18 10:54:17', 'admin-杨俊杰在2022/11/18 10:54:16位于1.5.0.7执行:修改商品操作!修改值为:ST008', 'admin', 200, 0, 'admin', '2022-11-18 10:54:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (642, '2022-11-18 10:55:00', 'admin-杨俊杰在2022/11/18 10:54:59位于1.5.0.7执行:修改商品操作!修改值为:ST008', 'admin', 200, 0, 'admin', '2022-11-18 10:55:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (643, '2022-11-18 10:56:03', 'admin-杨俊杰在2022/11/18 10:56:03位于1.5.0.7执行:修改商品操作!修改值为:ST020', 'admin', 200, 0, 'admin', '2022-11-18 10:56:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (644, '2022-11-18 10:56:22', 'admin-杨俊杰在2022/11/18 10:56:22位于1.5.0.7执行:修改商品操作!修改值为:ST022', 'admin', 200, 0, 'admin', '2022-11-18 10:56:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (645, '2022-11-18 10:56:45', 'admin-杨俊杰在2022/11/18 10:56:44位于1.5.0.7执行:修改商品操作!修改值为:ST014', 'admin', 200, 0, 'admin', '2022-11-18 10:56:45', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (646, '2022-11-18 10:57:07', 'admin-杨俊杰在2022/11/18 10:57:07位于1.5.0.7执行:修改商品操作!修改值为:ST007', 'admin', 200, 0, 'admin', '2022-11-18 10:57:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (647, '2022-11-18 10:57:39', 'admin-杨俊杰在2022/11/18 10:57:39位于1.5.0.7执行:修改商品操作!修改值为:ST-202200107', 'admin', 200, 0, 'admin', '2022-11-18 10:57:39', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (648, '2022-11-18 10:58:33', 'admin-杨俊杰在2022/11/18 10:58:33位于1.5.0.7执行:修改商品操作!修改值为:ST677', 'admin', 200, 0, 'admin', '2022-11-18 10:58:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (649, '2022-11-18 10:59:24', 'admin-杨俊杰在2022/11/18 10:59:23位于1.5.0.7执行:修改商品操作!修改值为:ST017', 'admin', 200, 0, 'admin', '2022-11-18 10:59:24', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (650, '2022-11-18 10:59:43', 'admin-杨俊杰在2022/11/18 10:59:43位于1.5.0.7执行:修改商品操作!修改值为:ST019', 'admin', 200, 0, 'admin', '2022-11-18 10:59:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (651, '2022-11-18 11:00:08', 'admin-杨俊杰在2022/11/18 11:00:08位于1.5.0.7执行:修改商品操作!修改值为:ST983', 'admin', 200, 0, 'admin', '2022-11-18 11:00:08', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (652, '2022-11-18 11:01:10', 'admin-杨俊杰在2022/11/18 11:01:09位于1.5.0.7执行:修改商品操作!修改值为:ST011', 'admin', 200, 0, 'admin', '2022-11-18 11:01:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (653, '2022-11-18 11:01:45', 'admin-杨俊杰在2022/11/18 11:01:45位于1.5.0.7执行:修改商品操作!修改值为:ST-2021009', 'admin', 200, 0, 'admin', '2022-11-18 11:01:45', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (654, '2022-11-18 14:07:11', 'WK010-杨俊杰在2022/11/18 14:07:10位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-18 14:07:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (657, '2022-11-18 16:10:41', 'WK010-杨俊杰在2022/11/18 16:10:40位于1.5.0.7执行:帮助TS004121649776进行了消费商品:哇哈哈矿泉水操作!', 'WK010', 200, 0, 'WK010', '2022-11-18 16:10:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (659, '2022-11-18 16:10:54', 'WK010-杨俊杰在2022/11/18 16:10:54位于1.5.0.7执行:帮助TS004121649776进行了消费商品:白象方便面操作!', 'WK010', 200, 0, 'WK010', '2022-11-18 16:10:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (661, '2022-11-18 16:11:07', 'WK010-杨俊杰在2022/11/18 16:11:06位于1.5.0.7执行:帮助TS004121649776进行了消费商品:老婆饼操作!', 'WK010', 200, 0, 'WK010', '2022-11-18 16:11:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (662, '2022-11-18 16:11:27', 'WK010-杨俊杰在2022/11/18 16:11:26位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-18 16:11:27', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (663, '2022-11-20 23:50:34', 'WK010-杨俊杰在2022/11/20 23:50:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-20 23:50:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (665, '2022-11-20 23:55:29', 'admin-杨俊杰在2022/11/20 23:55:28位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-11-20 23:55:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (666, '2022-11-21 16:44:24', 'WK010-杨俊杰在2022/11/21 16:44:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-21 16:44:24', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (667, '2022-11-30 13:59:47', 'WK010-杨俊杰在2022/11/30 13:59:47位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-30 13:59:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (668, '2022-11-30 14:05:11', 'admin-杨俊杰在2022/11/30 14:05:10位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-11-30 14:05:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (669, '2022-11-30 14:07:16', 'WK010-杨俊杰在2022/11/30 14:07:16位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-11-30 14:07:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (670, '2022-12-04 12:58:38', 'WK010-杨俊杰在2022/12/4 12:58:38位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 12:58:38', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (671, '2022-12-04 12:59:03', 'SqlSugar.SqlSugarException: 23505: duplicate key value violates unique constraint "wtinfo_pkey"', 'WK010', 300, 0, 'WK010', '2022-12-04 12:59:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (672, '2022-12-04 13:00:23', 'WK010-杨俊杰在2022/12/4 13:00:23位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:00:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (673, '2022-12-04 13:02:24', 'SqlSugar.SqlSugarException: 23505: duplicate key value violates unique constraint "wtinfo_pkey"', 'WK010', 300, 0, 'WK010', '2022-12-04 13:02:24', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (675, '2022-12-04 13:09:30', 'WK010-杨俊杰在2022/12/4 13:09:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:09:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (676, '2022-12-04 13:11:31', 'WK010-杨俊杰在2022/12/4 13:11:31位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:11:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (677, '2022-12-04 13:13:46', 'WK010-杨俊杰在2022/12/4 13:13:45位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:13:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (678, '2022-12-04 13:16:07', 'WK010-杨俊杰在2022/12/4 13:16:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:16:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (680, '2022-12-04 13:20:01', 'WK010-杨俊杰在2022/12/4 13:20:00位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:20:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (682, '2022-12-04 13:20:31', '经理部-总经理-杨俊杰于2022/12/4 13:20:30帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:20:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (684, '2022-12-04 13:24:33', 'WK010-杨俊杰在2022/12/4 13:24:32位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:24:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (685, '2022-12-04 13:26:28', 'WK010-杨俊杰在2022/12/4 13:26:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:26:28', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (686, '2022-12-04 13:30:18', 'WK010-杨俊杰在2022/12/4 13:30:17位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:30:18', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (688, '2022-12-04 13:31:24', 'WK010-杨俊杰在2022/12/4 13:31:24位于1.5.0.7执行:帮助TS006957585451进行了消费商品:三只松鼠零食大礼包操作!', 'WK010', 200, 0, 'WK010', '2022-12-04 13:31:24', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (689, '2022-12-04 13:43:27', 'WK010-杨俊杰在2022/12/4 13:43:27位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:43:27', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (690, '2022-12-04 13:44:58', 'WK010-杨俊杰在2022/12/4 13:44:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:44:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (691, '2022-12-04 13:45:25', 'WK010-杨俊杰在2022/12/4 13:45:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:45:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (692, '2022-12-04 13:47:19', 'WK010-杨俊杰在2022/12/4 13:47:19位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:47:19', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (693, '2022-12-04 13:49:03', 'WK010-杨俊杰在2022/12/4 13:49:03位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:49:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (694, '2022-12-04 13:51:00', 'WK010-杨俊杰在2022/12/4 13:51:00位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:51:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (695, '2022-12-04 13:51:23', 'WK010-杨俊杰在2022/12/4 13:51:22位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:51:23', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (696, '2022-12-04 13:53:02', 'WK010-杨俊杰在2022/12/4 13:53:01位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:53:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (697, '2022-12-04 13:53:30', 'WK010-杨俊杰在2022/12/4 13:53:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:53:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (698, '2022-12-04 13:54:03', 'WK010-杨俊杰在2022/12/4 13:54:02位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:54:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (699, '2022-12-04 13:56:33', 'WK010-杨俊杰在2022/12/4 13:56:32位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:56:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (700, '2022-12-04 13:57:29', 'WK010-杨俊杰在2022/12/4 13:57:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:57:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (701, '2022-12-04 13:57:59', 'WK010-杨俊杰在2022/12/4 13:57:59位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 13:57:59', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (702, '2022-12-04 14:00:29', 'WK010-杨俊杰在2022/12/4 14:00:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:00:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (703, '2022-12-04 14:03:43', 'WK010-杨俊杰在2022/12/4 14:03:42位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:03:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (704, '2022-12-04 14:04:02', 'WK010-杨俊杰在2022/12/4 14:04:01位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:04:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (705, '2022-12-04 14:04:25', 'WK010-杨俊杰在2022/12/4 14:04:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:04:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (706, '2022-12-04 14:04:50', 'WK010-杨俊杰在2022/12/4 14:04:50位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:04:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (707, '2022-12-04 14:05:12', 'WK010-杨俊杰在2022/12/4 14:05:12位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:05:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (711, '2022-12-04 14:40:25', 'WK010-杨俊杰在2022/12/4 14:40:24位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:40:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (712, '2022-12-04 14:41:17', 'WK010-杨俊杰在2022/12/4 14:41:16位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:41:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (713, '2022-12-04 14:41:53', 'WK010-杨俊杰在2022/12/4 14:41:53位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:41:53', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (714, '2022-12-04 14:42:57', 'WK010-杨俊杰在2022/12/4 14:42:57位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:42:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (715, '2022-12-04 14:43:47', 'WK010-杨俊杰在2022/12/4 14:43:47位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:43:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (716, '2022-12-04 14:44:49', 'WK010-杨俊杰在2022/12/4 14:44:48位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:44:49', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (717, '2022-12-04 14:45:45', 'WK010-杨俊杰在2022/12/4 14:45:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:45:45', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (718, '2022-12-04 14:46:12', 'WK010-杨俊杰在2022/12/4 14:46:12位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:46:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (719, '2022-12-04 14:47:11', 'WK010-杨俊杰在2022/12/4 14:47:11位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:47:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (720, '2022-12-04 14:47:43', 'WK010-杨俊杰在2022/12/4 14:47:42位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:47:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (721, '2022-12-04 14:48:33', 'WK010-杨俊杰在2022/12/4 14:48:33位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:48:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (722, '2022-12-04 14:49:12', 'WK010-杨俊杰在2022/12/4 14:49:11位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:49:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (723, '2022-12-04 14:55:52', 'WK010-杨俊杰在2022/12/4 14:55:52位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:55:52', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (724, '2022-12-04 14:56:57', 'WK010-杨俊杰在2022/12/4 14:56:56位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 14:56:57', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (725, '2022-12-04 15:01:02', 'WK010-杨俊杰在2022/12/4 15:01:01位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:01:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (726, '2022-12-04 15:01:37', 'WK010-杨俊杰在2022/12/4 15:01:36位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:01:37', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (727, '2022-12-04 15:10:32', 'WK010-杨俊杰在2022/12/4 15:10:31位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:10:32', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (728, '2022-12-04 15:17:40', 'WK010-杨俊杰在2022/12/4 15:17:39位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:17:40', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (729, '2022-12-04 15:19:50', 'WK010-杨俊杰在2022/12/4 15:19:49位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:19:50', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (730, '2022-12-04 15:25:11', 'WK010-杨俊杰在2022/12/4 15:25:10位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:25:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (731, '2022-12-04 15:26:17', 'WK010-杨俊杰在2022/12/4 15:26:16位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:26:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (732, '2022-12-04 15:26:58', 'WK010-杨俊杰在2022/12/4 15:26:57位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:26:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (733, '2022-12-04 15:27:41', 'WK010-杨俊杰在2022/12/4 15:27:40位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:27:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (734, '2022-12-04 15:27:58', 'WK010-杨俊杰在2022/12/4 15:27:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:27:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (735, '2022-12-04 15:28:30', 'WK010-杨俊杰在2022/12/4 15:28:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:28:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (736, '2022-12-04 15:30:29', 'WK010-杨俊杰在2022/12/4 15:30:28位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-04 15:30:29', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (737, '2022-12-05 13:53:01', 'WK010-杨俊杰在2022/12/5 13:53:00位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-05 13:53:01', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (739, '2022-12-05 13:56:51', 'WK010-杨俊杰在2022/12/5 13:56:50位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-05 13:56:51', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (740, '2022-12-05 15:47:14', 'admin-杨俊杰在2022/12/5 15:47:14位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-12-05 15:47:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (741, '2022-12-05 22:39:00', 'WK010-杨俊杰在2022/12/5 22:39:00位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-05 22:39:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (742, '2022-12-05 22:42:15', 'WK010-杨俊杰在2022/12/5 22:42:15位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-05 22:42:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (743, '2022-12-05 22:55:46', 'WK010-杨俊杰在2022/12/5 22:55:46位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-05 22:55:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (745, '2022-12-05 22:56:32', '经理部-总经理-杨俊杰于2022/12/5 22:56:32帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-05 22:56:32', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (746, '2022-12-05 23:00:54', 'WK010-杨俊杰在2022/12/5 23:00:53位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-05 23:00:54', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (748, '2022-12-05 23:01:25', '经理部-总经理-杨俊杰于2022/12/5 23:01:25帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-05 23:01:25', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (750, '2022-12-05 23:01:46', '经理部-总经理-杨俊杰于2022/12/5 23:01:46帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-05 23:01:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (751, '2022-12-05 23:02:31', 'WK010-杨俊杰在2022/12/5 23:02:30位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-05 23:02:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (753, '2022-12-05 23:03:02', '经理部-总经理-杨俊杰于2022/12/5 23:03:02帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-05 23:03:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (755, '2022-12-05 23:03:30', '经理部-总经理-杨俊杰于2022/12/5 23:03:30帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-05 23:03:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (756, '2022-12-06 08:52:09', 'WK010-杨俊杰在2022/12/6 8:52:08位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:52:09', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (758, '2022-12-06 08:52:35', '经理部-总经理-杨俊杰于2022/12/6 8:52:34帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:52:35', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (760, '2022-12-06 08:52:55', '经理部-总经理-杨俊杰于2022/12/6 8:52:55帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:52:55', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (762, '2022-12-06 08:53:30', 'WK010-杨俊杰在2022/12/6 8:53:29位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:53:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (763, '2022-12-06 08:53:47', '经理部-总经理-杨俊杰于2022/12/6 8:53:47帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:53:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (764, '2022-12-06 08:53:58', '经理部-总经理-杨俊杰于2022/12/6 8:53:57帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:53:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (765, '2022-12-06 08:54:09', '经理部-总经理-杨俊杰于2022/12/6 8:54:09帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:54:09', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (766, '2022-12-06 08:54:21', '经理部-总经理-杨俊杰于2022/12/6 8:54:20帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:54:21', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (767, '2022-12-06 08:54:33', '经理部-总经理-杨俊杰于2022/12/6 8:54:32帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:54:33', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (768, '2022-12-06 08:54:46', '经理部-总经理-杨俊杰于2022/12/6 8:54:45帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:54:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (769, '2022-12-06 08:55:03', '经理部-总经理-杨俊杰于2022/12/6 8:55:02帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:55:03', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (770, '2022-12-06 08:55:20', '经理部-总经理-杨俊杰于2022/12/6 8:55:20帮助进行了退房结算操作!', 'WK010', 300, 0, 'WK010', '2022-12-06 08:55:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (771, '2022-12-06 09:15:42', 'WK010-杨俊杰在2022/12/6 9:15:42位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 09:15:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (772, '2022-12-06 09:15:43', 'SqlSugar.SqlSugarException: 42703: column "RoomNo" does not exist', 'WK010', 300, 0, 'WK010', '2022-12-06 09:15:43', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (773, '2022-12-06 09:19:58', 'WK010-杨俊杰在2022/12/6 9:19:58位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 09:19:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (775, '2022-12-06 09:45:15', 'WK010-杨俊杰在2022/12/6 9:45:14位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 09:45:15', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (776, '2022-12-06 09:58:42', 'WK010-杨俊杰在2022/12/6 9:58:41位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 09:58:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (777, '2022-12-06 10:02:16', 'WK010-杨俊杰在2022/12/6 10:02:16位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:02:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (778, '2022-12-06 10:03:07', 'WK010-杨俊杰在2022/12/6 10:03:06位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:03:07', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (779, '2022-12-06 10:05:46', 'WK010-杨俊杰在2022/12/6 10:05:45位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:05:46', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (780, '2022-12-06 10:09:36', 'WK010-杨俊杰在2022/12/6 10:09:35位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:09:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (781, '2022-12-06 10:12:48', 'WK010-杨俊杰在2022/12/6 10:12:48位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:12:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (782, '2022-12-06 10:13:34', 'WK010-杨俊杰在2022/12/6 10:13:34位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:13:34', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (783, '2022-12-06 10:17:44', 'WK010-杨俊杰在2022/12/6 10:17:44位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:17:44', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (784, '2022-12-06 10:37:10', 'WK010-杨俊杰在2022/12/6 10:37:09位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:37:10', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (785, '2022-12-06 10:38:20', 'WK010-杨俊杰在2022/12/6 10:38:20位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:38:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (786, '2022-12-06 10:44:37', 'WK010-杨俊杰在2022/12/6 10:44:37位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:44:37', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (787, '2022-12-06 10:48:16', 'WK010-杨俊杰在2022/12/6 10:48:15位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:48:16', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (788, '2022-12-06 10:51:17', 'admin-杨俊杰在2022/12/6 10:51:16位于1.5.0.7版本登入了后台管理系统!', 'admin', 300, 0, 'admin', '2022-12-06 10:51:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (789, '2022-12-06 10:52:30', 'admin杨俊杰于2022/12/6 10:52:29新增了房间,房间号为:BD001,房间类型为:标准单人间', 'admin', 200, 0, 'admin', '2022-12-06 10:52:30', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (790, '2022-12-06 10:52:48', 'admin杨俊杰于2022/12/6 10:52:47新增了房间,房间号为:BD002,房间类型为:标准单人间', 'admin', 200, 0, 'admin', '2022-12-06 10:52:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (791, '2022-12-06 10:52:53', 'admin杨俊杰于2022/12/6 10:52:53新增了房间,房间号为:BD003,房间类型为:标准单人间', 'admin', 200, 0, 'admin', '2022-12-06 10:52:53', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (792, '2022-12-06 10:52:58', 'admin杨俊杰于2022/12/6 10:52:57新增了房间,房间号为:BD004,房间类型为:标准单人间', 'admin', 200, 0, 'admin', '2022-12-06 10:52:58', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (793, '2022-12-06 10:53:02', 'admin杨俊杰于2022/12/6 10:53:02新增了房间,房间号为:BD005,房间类型为:标准单人间', 'admin', 200, 0, 'admin', '2022-12-06 10:53:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (794, '2022-12-06 10:53:09', 'admin杨俊杰于2022/12/6 10:53:08新增了房间,房间号为:BD006,房间类型为:标准单人间', 'admin', 200, 0, 'admin', '2022-12-06 10:53:09', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (795, '2022-12-06 10:53:14', 'admin杨俊杰于2022/12/6 10:53:13新增了房间,房间号为:BD007,房间类型为:标准单人间', 'admin', 200, 0, 'admin', '2022-12-06 10:53:14', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (796, '2022-12-06 10:53:20', 'admin杨俊杰于2022/12/6 10:53:20新增了房间,房间号为:BD008,房间类型为:标准单人间', 'admin', 200, 0, 'admin', '2022-12-06 10:53:20', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (797, '2022-12-06 10:53:26', 'admin杨俊杰于2022/12/6 10:53:25新增了房间,房间号为:BD009,房间类型为:标准单人间', 'admin', 200, 0, 'admin', '2022-12-06 10:53:26', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (798, '2022-12-06 10:53:31', 'admin杨俊杰于2022/12/6 10:53:31新增了房间,房间号为:BD010,房间类型为:标准单人间', 'admin', 200, 0, 'admin', '2022-12-06 10:53:31', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (799, '2022-12-06 10:53:47', 'admin杨俊杰于2022/12/6 10:53:47新增了房间,房间号为:BS010,房间类型为:标准双人间', 'admin', 200, 0, 'admin', '2022-12-06 10:53:47', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (800, '2022-12-06 10:54:00', 'admin杨俊杰于2022/12/6 10:53:59新增了房间,房间号为:BS005,房间类型为:标准双人间', 'admin', 200, 0, 'admin', '2022-12-06 10:54:00', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (801, '2022-12-06 10:54:11', 'admin杨俊杰于2022/12/6 10:54:10新增了房间,房间号为:ZT005,房间类型为:总统套房', 'admin', 200, 0, 'admin', '2022-12-06 10:54:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (802, '2022-12-06 10:54:17', 'admin杨俊杰于2022/12/6 10:54:17新增了房间,房间号为:ZT001,房间类型为:总统套房', 'admin', 200, 0, 'admin', '2022-12-06 10:54:17', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (803, '2022-12-06 10:54:22', 'admin杨俊杰于2022/12/6 10:54:21新增了房间,房间号为:ZT002,房间类型为:总统套房', 'admin', 200, 0, 'admin', '2022-12-06 10:54:22', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (804, '2022-12-06 10:54:27', 'admin杨俊杰于2022/12/6 10:54:26新增了房间,房间号为:ZT003,房间类型为:总统套房', 'admin', 200, 0, 'admin', '2022-12-06 10:54:27', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (805, '2022-12-06 10:54:32', 'admin杨俊杰于2022/12/6 10:54:31新增了房间,房间号为:ZT004,房间类型为:总统套房', 'admin', 200, 0, 'admin', '2022-12-06 10:54:32', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (806, '2022-12-06 10:54:41', 'admin杨俊杰于2022/12/6 10:54:41新增了房间,房间号为:ZT006,房间类型为:总统套房', 'admin', 200, 0, 'admin', '2022-12-06 10:54:41', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (807, '2022-12-06 10:54:55', 'admin杨俊杰于2022/12/6 10:54:55新增了房间,房间号为:QL006,房间类型为:情侣套房', 'admin', 200, 0, 'admin', '2022-12-06 10:54:55', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (808, '2022-12-06 10:55:02', 'admin杨俊杰于2022/12/6 10:55:02新增了房间,房间号为:QL008,房间类型为:情侣套房', 'admin', 200, 0, 'admin', '2022-12-06 10:55:02', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (809, '2022-12-06 10:55:09', 'admin杨俊杰于2022/12/6 10:55:09新增了房间,房间号为:QL1314,房间类型为:情侣套房', 'admin', 200, 0, 'admin', '2022-12-06 10:55:09', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (810, '2022-12-06 10:55:24', 'admin杨俊杰于2022/12/6 10:55:23新增了房间,房间号为:QL999,房间类型为:情侣套房', 'admin', 200, 0, 'admin', '2022-12-06 10:55:24', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (811, '2022-12-06 10:56:11', 'WK010-杨俊杰在2022/12/6 10:56:10位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 10:56:11', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (812, '2022-12-06 11:00:12', 'WK010-杨俊杰在2022/12/6 11:00:11位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 11:00:12', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (813, '2022-12-06 11:00:36', '经理部-总经理-杨俊杰于2022/12/6 11:00:35帮助TS-0571036326进行了入住操作!', 'WK010', 100, 0, 'WK010', '2022-12-06 11:00:36', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (814, '2022-12-06 11:06:48', 'WK010-杨俊杰在2022/12/6 11:06:47位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 11:06:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (815, '2022-12-06 11:08:48', 'WK010-杨俊杰在2022/12/6 11:08:48位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 11:08:48', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (816, '2022-12-06 11:09:42', 'WK010-杨俊杰在2022/12/6 11:09:42位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 11:09:42', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (817, '2022-12-06 11:14:04', 'WK010-杨俊杰在2022/12/6 11:14:04位于1.5.0.7版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 11:14:04', NULL, '0001-01-01 00:00:00', '1.5.0.7', NULL); +INSERT INTO "public"."operationlog" VALUES (818, '2022-12-06 11:27:10', 'WK010-杨俊杰在2022/12/6 11:27:09位于1.5.0.8版本登入了系统!', 'WK010', 300, 0, 'WK010', '2022-12-06 11:27:10', NULL, '0001-01-01 00:00:00', '1.5.0.8', NULL); + +-- ---------------------------- +-- Table structure for passporttype +-- ---------------------------- +DROP TABLE IF EXISTS "public"."passporttype"; +CREATE TABLE "public"."passporttype" ( + "PassportId" int4 NOT NULL, + "PassportName" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."passporttype"."PassportId" IS '证件类型ID'; +COMMENT ON COLUMN "public"."passporttype"."PassportName" IS '证件类型名称'; +COMMENT ON COLUMN "public"."passporttype"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."passporttype"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."passporttype"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."passporttype"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."passporttype"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."passporttype" IS '证件类型表'; + +-- ---------------------------- +-- Records of passporttype +-- ---------------------------- +INSERT INTO "public"."passporttype" VALUES (0, '中国居民身份证', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."passporttype" VALUES (1, '港澳通行证', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."passporttype" VALUES (2, '台胞证', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."passporttype" VALUES (3, '军官证', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."passporttype" VALUES (4, '外国护照', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for pdman_db_version +-- ---------------------------- +DROP TABLE IF EXISTS "public"."pdman_db_version"; +CREATE TABLE "public"."pdman_db_version" ( + "DB_VERSION" varchar(256) COLLATE "pg_catalog"."default", + "VERSION_DESC" varchar(1024) COLLATE "pg_catalog"."default", + "CREATED_TIME" varchar(32) COLLATE "pg_catalog"."default" +) +; + +-- ---------------------------- +-- Records of pdman_db_version +-- ---------------------------- + +-- ---------------------------- +-- Table structure for position +-- ---------------------------- +DROP TABLE IF EXISTS "public"."position"; +CREATE TABLE "public"."position" ( + "position_no" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, + "position_name" varchar(150) COLLATE "pg_catalog"."default", + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."position"."position_no" IS '职位编号'; +COMMENT ON COLUMN "public"."position"."position_name" IS '职位名称'; +COMMENT ON COLUMN "public"."position"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."position"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."position"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."position"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."position"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."position" IS '职位表'; + +-- ---------------------------- +-- Records of position +-- ---------------------------- +INSERT INTO "public"."position" VALUES ('P-0004', '监管组长', 0, 'System', '2021-02-03', '', '2022-04-29'); +INSERT INTO "public"."position" VALUES ('P-0002', '经理', 0, 'System', '2021-02-01', 'System', '2021-02-01'); +INSERT INTO "public"."position" VALUES ('P-0003', '职员', 0, 'System', '2021-02-02', 'System', '2021-02-02'); +INSERT INTO "public"."position" VALUES ('P-0005', '监管组员', 0, 'System', '2021-02-04', '', '2022-01-05'); +INSERT INTO "public"."position" VALUES ('P-2021001', '主管', 0, 'admin', '2021-02-17', NULL, '0001-01-01'); +INSERT INTO "public"."position" VALUES ('P-0001', '总经理', 0, 'System', '2021-01-31', '', '2022-04-06'); + +-- ---------------------------- +-- Table structure for reser +-- ---------------------------- +DROP TABLE IF EXISTS "public"."reser"; +CREATE TABLE "public"."reser" ( + "ReserId" varchar COLLATE "pg_catalog"."default" NOT NULL, + "CustoName" varchar COLLATE "pg_catalog"."default", + "CustoTel" varchar(300) COLLATE "pg_catalog"."default", + "ReserWay" varchar COLLATE "pg_catalog"."default", + "ReserRoom" varchar COLLATE "pg_catalog"."default", + "ReserDate" date, + "ReserEndDay" date, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."reser"."ReserId" IS '预约ID '; +COMMENT ON COLUMN "public"."reser"."CustoName" IS '客户名字'; +COMMENT ON COLUMN "public"."reser"."CustoTel" IS '联系方式'; +COMMENT ON COLUMN "public"."reser"."ReserWay" IS '预约方式'; +COMMENT ON COLUMN "public"."reser"."ReserRoom" IS '预约房号'; +COMMENT ON COLUMN "public"."reser"."ReserDate" IS '预约开始日期'; +COMMENT ON COLUMN "public"."reser"."ReserEndDay" IS '预约结束日期'; +COMMENT ON COLUMN "public"."reser"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."reser"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."reser"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."reser"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."reser"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."reser" IS '预约表'; + +-- ---------------------------- +-- Records of reser +-- ---------------------------- + +-- ---------------------------- +-- Table structure for room +-- ---------------------------- +DROP TABLE IF EXISTS "public"."room"; +CREATE TABLE "public"."room" ( + "room_no" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, + "room_type" int2 NOT NULL DEFAULT 0, + "custo_no" varchar(30) COLLATE "pg_catalog"."default", + "check_in_time" date, + "check_out_time" date, + "room_state_id" int2 NOT NULL DEFAULT 0, + "room_rent" numeric(18,2) NOT NULL DEFAULT 0, + "room_deposit" numeric(18,2) DEFAULT 0, + "room_position" varchar(50) COLLATE "pg_catalog"."default" NOT NULL DEFAULT 0, + "delete_mk" int2 NOT NULL DEFAULT 0, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."room"."room_no" IS '房间编号'; +COMMENT ON COLUMN "public"."room"."room_type" IS '房间类型'; +COMMENT ON COLUMN "public"."room"."custo_no" IS '客户编号'; +COMMENT ON COLUMN "public"."room"."check_in_time" IS '入住时间'; +COMMENT ON COLUMN "public"."room"."check_out_time" IS '退房时间'; +COMMENT ON COLUMN "public"."room"."room_state_id" IS '房间状态'; +COMMENT ON COLUMN "public"."room"."room_rent" IS '房屋租金'; +COMMENT ON COLUMN "public"."room"."room_deposit" IS '房屋押金'; +COMMENT ON COLUMN "public"."room"."room_position" IS '房屋位置'; +COMMENT ON COLUMN "public"."room"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."room"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."room"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."room"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."room"."datachg_date" IS '资料更新时间'; + +-- ---------------------------- +-- Records of room +-- ---------------------------- +INSERT INTO "public"."room" VALUES ('BD002', 0, NULL, NULL, NULL, 0, 300.00, 100.00, 'A层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('BD003', 0, NULL, NULL, NULL, 0, 300.00, 100.00, 'A层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('BD004', 0, NULL, NULL, NULL, 0, 300.00, 100.00, 'A层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('BD005', 0, NULL, NULL, NULL, 0, 300.00, 100.00, 'A层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('BD006', 0, NULL, NULL, NULL, 0, 300.00, 100.00, 'A层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('BD007', 0, NULL, NULL, NULL, 0, 300.00, 100.00, 'A层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('BD008', 0, NULL, NULL, NULL, 0, 300.00, 100.00, 'A层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('BD009', 0, NULL, NULL, NULL, 0, 300.00, 100.00, 'A层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('BD010', 0, NULL, NULL, NULL, 0, 300.00, 100.00, 'A层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('BS010', 1, NULL, NULL, NULL, 0, 425.00, 120.00, 'B层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('BS005', 1, NULL, NULL, NULL, 0, 425.00, 120.00, 'B层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('ZT005', 5, NULL, NULL, NULL, 0, 1080.00, 200.00, 'D层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('ZT001', 5, NULL, NULL, NULL, 0, 1080.00, 200.00, 'D层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('ZT002', 5, NULL, NULL, NULL, 0, 1080.00, 200.00, 'D层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('ZT003', 5, NULL, NULL, NULL, 0, 1080.00, 200.00, 'D层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('ZT004', 5, NULL, NULL, NULL, 0, 1080.00, 200.00, 'D层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('ZT006', 5, NULL, NULL, NULL, 0, 1080.00, 200.00, 'D层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('QL006', 4, NULL, NULL, NULL, 0, 845.00, 180.00, 'C层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('QL008', 4, NULL, NULL, NULL, 0, 845.00, 180.00, 'C层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('QL1314', 4, NULL, NULL, NULL, 0, 845.00, 180.00, 'C层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('QL999', 4, NULL, NULL, NULL, 0, 845.00, 180.00, 'C层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); +INSERT INTO "public"."room" VALUES ('BD001', 0, 'TS-0571036326', '2022-12-06', NULL, 1, 300.00, 100.00, 'A层', 0, 'admin', '2022-12-06', NULL, '0001-01-01'); + +-- ---------------------------- +-- Table structure for roomstate +-- ---------------------------- +DROP TABLE IF EXISTS "public"."roomstate"; +CREATE TABLE "public"."roomstate" ( + "RoomStateId" int4 NOT NULL, + "RoomState" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."roomstate"."RoomStateId" IS '房间状态ID'; +COMMENT ON COLUMN "public"."roomstate"."RoomState" IS '房间状态名称'; +COMMENT ON COLUMN "public"."roomstate"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."roomstate"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."roomstate"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."roomstate"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."roomstate"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."roomstate" IS '房间状态表'; + +-- ---------------------------- +-- Records of roomstate +-- ---------------------------- +INSERT INTO "public"."roomstate" VALUES (0, '空房', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."roomstate" VALUES (1, '已住', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."roomstate" VALUES (2, '维修中', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."roomstate" VALUES (3, '脏房', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."roomstate" VALUES (4, '已预约', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for roomtype +-- ---------------------------- +DROP TABLE IF EXISTS "public"."roomtype"; +CREATE TABLE "public"."roomtype" ( + "RoomType" int4 NOT NULL, + "RoomName" varchar(10) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."roomtype"."RoomType" IS '房间类型ID'; +COMMENT ON COLUMN "public"."roomtype"."RoomName" IS '房间类型名称'; +COMMENT ON COLUMN "public"."roomtype"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."roomtype"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."roomtype"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."roomtype"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."roomtype"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."roomtype" IS '房间类型表'; + +-- ---------------------------- +-- Records of roomtype +-- ---------------------------- +INSERT INTO "public"."roomtype" VALUES (0, '标准单人间', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."roomtype" VALUES (1, '标准双人间', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."roomtype" VALUES (2, '豪华单人间', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."roomtype" VALUES (3, '豪华双人间', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."roomtype" VALUES (4, '情侣套房', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."roomtype" VALUES (5, '总统套房', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for sellthing +-- ---------------------------- +DROP TABLE IF EXISTS "public"."sellthing"; +CREATE TABLE "public"."sellthing" ( + "SellNo" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, + "SellName" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, + "SellPrice" numeric(10,2) NOT NULL, + "format" varchar(20) COLLATE "pg_catalog"."default", + "Stock" numeric(16,2) NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."sellthing"."SellNo" IS '商品编号'; +COMMENT ON COLUMN "public"."sellthing"."SellName" IS '商品名称'; +COMMENT ON COLUMN "public"."sellthing"."SellPrice" IS '商品价格'; +COMMENT ON COLUMN "public"."sellthing"."format" IS '规格型号'; +COMMENT ON COLUMN "public"."sellthing"."Stock" IS '库存数量'; +COMMENT ON COLUMN "public"."sellthing"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."sellthing"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."sellthing"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."sellthing"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."sellthing"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."sellthing" IS '商品表'; + +-- ---------------------------- +-- Records of sellthing +-- ---------------------------- +INSERT INTO "public"."sellthing" VALUES ('ST-20210020', '测试', 243444.00, '阿斯顿', 10.00, 1, 'admin', '2021-02-15', 'admin', '2021-02-15'); +INSERT INTO "public"."sellthing" VALUES ('ST-20210027', 'BIG大桶方便面', 8.50, '/桶', 50.00, 1, 'admin', '2021-02-16', 'admin', '2021-02-16'); +INSERT INTO "public"."sellthing" VALUES ('ST-20210055', '测试数据(勿选)', 9999999.99, '测试数据', 9.00, 0, 'admin', '2021-05-29', 'WK010', '2021-07-19'); +INSERT INTO "public"."sellthing" VALUES ('ST-20210061', '测试勿选', 9999999.00, '测试', 4.00, 0, 'admin', '2021-05-30', 'WK010', '2021-06-06'); +INSERT INTO "public"."sellthing" VALUES ('ST016', '牙刷', 10.00, '/个', 1000.00, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."sellthing" VALUES ('ST398', '拉菲', 1080.00, '/支', 989.00, 0, NULL, NULL, 'WK010', '2021-03-11'); +INSERT INTO "public"."sellthing" VALUES ('ST851', 'T仔', 90.00, '/个', 29980.00, 0, NULL, NULL, 'WK010', '2021-02-18'); +INSERT INTO "public"."sellthing" VALUES ('ST005', '乐事薯片(原味)', 20.00, '/包(145g)', 934.00, 0, NULL, NULL, 'WK010', '2022-02-26'); +INSERT INTO "public"."sellthing" VALUES ('ST012', '火腿肠', 10.00, '/包(40g)', 990.00, 0, NULL, NULL, 'WK010', '2022-02-26'); +INSERT INTO "public"."sellthing" VALUES ('ST013', '毛巾', 10.00, '/条', 996.00, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."sellthing" VALUES ('ST009', '三只松鼠夏威夷坚果', 40.00, '/袋(160g)', 1483.00, 0, NULL, NULL, 'WK010', '2021-05-05'); +INSERT INTO "public"."sellthing" VALUES ('ST003', '可口可乐', 10.00, '/瓶(1.5L)', 965.00, 0, NULL, NULL, 'WK010', '2021-04-17'); +INSERT INTO "public"."sellthing" VALUES ('ST015', '香皂', 25.00, '/个(145g)', 995.00, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."sellthing" VALUES ('ST010', '蟹味瓜子仁', 30.00, '/袋', 1018.00, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."sellthing" VALUES ('ST008', '避孕套', 10.00, '/盒', 100.00, 0, NULL, NULL, 'WK010', '2021-04-17'); +INSERT INTO "public"."sellthing" VALUES ('ST022', '芬达', 3.50, '/瓶(1.5L)', 100.00, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."sellthing" VALUES ('ST014', '羊毛绒浴巾', 12.50, '/条', 300.00, 0, NULL, NULL, 'WK010', '2021-04-17'); +INSERT INTO "public"."sellthing" VALUES ('ST007', '雪碧', 2.50, '/罐', 150.00, 0, NULL, NULL, 'WK010', '2021-04-17'); +INSERT INTO "public"."sellthing" VALUES ('ST-202200107', '避孕药', 15.00, '/盒', 20.00, 0, 'admin', '2022-04-15', NULL, '0001-01-01'); +INSERT INTO "public"."sellthing" VALUES ('ST677', '82年拉菲', 30000.00, '/瓶', 6.00, 0, NULL, NULL, 'WK010', '2022-01-30'); +INSERT INTO "public"."sellthing" VALUES ('ST017', '山东脆枣', 20.00, '/盒(1斤)', 8.00, 0, NULL, NULL, 'WK010', '2021-07-17'); +INSERT INTO "public"."sellthing" VALUES ('ST019', '扑克牌', 3.00, '/副', 50.00, 0, NULL, NULL, 'WK010', '2021-04-17'); +INSERT INTO "public"."sellthing" VALUES ('ST011', '青岛啤酒', 3.00, '/瓶', 150.00, 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."sellthing" VALUES ('ST020', '哇哈哈矿泉水', 3.00, '/瓶', 198.00, 0, NULL, NULL, 'WK010', '2021-07-17'); +INSERT INTO "public"."sellthing" VALUES ('ST983', '白象方便面', 5.00, '/桶', 58.00, 0, NULL, NULL, 'WK010', '2021-03-11'); +INSERT INTO "public"."sellthing" VALUES ('ST-2021009', '老婆饼', 15.00, '/盒(8块装)', 29.00, 0, 'admin', '2021-02-15', 'WK010', '2022-01-30'); +INSERT INTO "public"."sellthing" VALUES ('ST021', '三只松鼠零食大礼包', 299.00, '/礼包', 2993.00, 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for sextype +-- ---------------------------- +DROP TABLE IF EXISTS "public"."sextype"; +CREATE TABLE "public"."sextype" ( + "sexId" int4 NOT NULL, + "sexName" varchar(15) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."sextype"."sexId" IS '性别ID'; +COMMENT ON COLUMN "public"."sextype"."sexName" IS '性别名称'; +COMMENT ON COLUMN "public"."sextype"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."sextype"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."sextype"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."sextype"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."sextype"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."sextype" IS '性别类型表'; + +-- ---------------------------- +-- Records of sextype +-- ---------------------------- +INSERT INTO "public"."sextype" VALUES (0, '女', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."sextype" VALUES (1, '男', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for uploadinfo +-- ---------------------------- +DROP TABLE IF EXISTS "public"."uploadinfo"; +CREATE TABLE "public"."uploadinfo" ( + "NoticeNo" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, + "Noticetheme" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, + "NoticeType" varchar(100) COLLATE "pg_catalog"."default", + "NoticeTime" timestamp(6) NOT NULL, + "NoticeContent" varchar(8000) COLLATE "pg_catalog"."default" NOT NULL, + "NoticeClub" varchar(25) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."uploadinfo"."NoticeNo" IS '公告编号'; +COMMENT ON COLUMN "public"."uploadinfo"."Noticetheme" IS '公告主题'; +COMMENT ON COLUMN "public"."uploadinfo"."NoticeType" IS '公告类型'; +COMMENT ON COLUMN "public"."uploadinfo"."NoticeTime" IS '发布日期'; +COMMENT ON COLUMN "public"."uploadinfo"."NoticeContent" IS '公告正文'; +COMMENT ON COLUMN "public"."uploadinfo"."NoticeClub" IS '发文部门'; +COMMENT ON COLUMN "public"."uploadinfo"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."uploadinfo"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."uploadinfo"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."uploadinfo"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."uploadinfo"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."uploadinfo" IS '公告表'; + +-- ---------------------------- +-- Records of uploadinfo +-- ---------------------------- +INSERT INTO "public"."uploadinfo" VALUES ('UP-202204004', '', NULL, '2021-02-13 00:00:00', '

 

', 'D-001', 0, 'admin', '2022-04-29', NULL, '0001-01-01'); + +-- ---------------------------- +-- Table structure for user_log +-- ---------------------------- +DROP TABLE IF EXISTS "public"."user_log"; +CREATE TABLE "public"."user_log" ( + "id" int4 NOT NULL, + "user_key" varchar(100) COLLATE "pg_catalog"."default", + "user_token" varchar(255) COLLATE "pg_catalog"."default", + "datains_time" timestamp(6) +) +; +COMMENT ON TABLE "public"."user_log" IS '用户登录信息表'; + +-- ---------------------------- +-- Records of user_log +-- ---------------------------- + +-- ---------------------------- +-- Table structure for userinfo +-- ---------------------------- +DROP TABLE IF EXISTS "public"."userinfo"; +CREATE TABLE "public"."userinfo" ( + "CustoNo" varchar COLLATE "pg_catalog"."default" NOT NULL, + "CustoName" varchar COLLATE "pg_catalog"."default" NOT NULL, + "CustoSex" int4 NOT NULL, + "CustoTel" varchar COLLATE "pg_catalog"."default" NOT NULL, + "PassportType" int4 NOT NULL, + "CustoID" varchar COLLATE "pg_catalog"."default" NOT NULL, + "CustoAdress" varchar COLLATE "pg_catalog"."default", + "CustoBirth" date NOT NULL, + "CustoType" int4 NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."userinfo"."CustoNo" IS '用户编号'; +COMMENT ON COLUMN "public"."userinfo"."CustoName" IS '用户名称'; +COMMENT ON COLUMN "public"."userinfo"."CustoSex" IS '用户性别'; +COMMENT ON COLUMN "public"."userinfo"."CustoTel" IS '用户电话'; +COMMENT ON COLUMN "public"."userinfo"."PassportType" IS '证照类型'; +COMMENT ON COLUMN "public"."userinfo"."CustoID" IS '证件号码'; +COMMENT ON COLUMN "public"."userinfo"."CustoAdress" IS '居住地址'; +COMMENT ON COLUMN "public"."userinfo"."CustoBirth" IS '出生日期'; +COMMENT ON COLUMN "public"."userinfo"."CustoType" IS '客户类型'; +COMMENT ON COLUMN "public"."userinfo"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."userinfo"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."userinfo"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."userinfo"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."userinfo"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."userinfo" IS '用户信息表'; + +-- ---------------------------- +-- Records of userinfo +-- ---------------------------- +INSERT INTO "public"."userinfo" VALUES ('TS585256153553', '森田結翔', 1, '+86 755-265-8399', 2, '976966744592142540', 'No.43 building, 92 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1991-10-21', 0, 0, 'yuimori00', '2001-09-05', 'ymorit', '2017-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS811038643761', '韩杰宏', 1, '+1 213-444-8145', 0, '160464972549229670', '526 Grape Street Apt 43, Los Angeles, CA 90002, United States', '1992-01-15', 0, 0, 'jiehh5', '2002-04-26', 'hajiehong15', '2005-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS596787251494', '姚榮發', 0, '+44 (161) 807 0258', 1, '203039270910490117', 'No.13 Main building, 24 Sackville St, Manchester, M1 3BB, United Kingdom', '1995-11-15', 0, 0, 'yewingfat', '2009-01-26', 'wfyeow', '2017-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS015253323658', '谷心穎', 1, '+1 718-042-3912', 3, '022088717186769918', '23 Nostrand Ave Apt 11, Brooklyn, NY 11216, United States', '1985-08-20', 0, 0, 'koo9', '2019-10-14', 'koosumwing', '2013-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS426905526052', '彭云熙', 1, '+81 3-2792-5250', 1, '537393932597402120', '46-kai, 3-15-19 Ginza, Chuo-ku, Tokyo, Japan', '1986-07-18', 0, 0, 'peyunxi', '2016-11-27', 'pengyu1212', '2009-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS702776546498', '劉頴璇', 0, '+86 142-6168-4176', 0, '209765272174610823', '中国深圳龙岗区布吉镇西环路684号44栋', '1991-05-30', 0, 0, 'wslau7', '2008-12-14', 'wingsuenla', '2018-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS-20220089', '古河早苗', 0, '', 4, '', '团子商店街', '1980-07-08', 0, 0, 'WK010', '2022-02-01', NULL, '0001-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS-20220090', '古河秋生', 1, '', 4, '', '团子商店街', '1980-02-05', 0, 0, 'WK010', '2022-02-01', NULL, '0001-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS-20210078', '阿洛', 1, '', 0, '', '广东省茂名市信宜县', '1988-07-20', 3, 0, '', '2021-10-20', 'WK010', '2022-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS267401616162', '吴岚', 1, '+86 166-5702-2951', 3, '730614680470425584', 'No.24 building, 273 Shanhu Rd, Dongguan, China', '1988-12-29', 0, 0, 'lan6', '2010-08-10', 'lanwu', '2006-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS070900382318', '姚明', 0, '+86 20-194-9902', 0, '577863450914082902', '中国广州市越秀区中山二路296号30栋', '1991-03-30', 0, 0, 'yeowming1019', '2001-12-28', 'mingye1', '2004-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS732618060709', 'Katherine Smith', 1, '+81 66-519-7434', 2, '492308242519003040', '日本おおさかし西成区出城一丁目1番19号33階', '1991-03-12', 0, 0, 'ksmith', '2016-04-27', 'smithkath10', '2016-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS350564805154', '郭永權', 0, '+86 193-8111-1879', 4, '431156855617068334', '中国深圳福田区景田东一街219号10栋', '1987-06-26', 0, 0, 'kwokwingkuen1021', '2007-09-27', 'wingkw', '2000-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS791977570647', '福田架純', 0, '+86 181-4110-0426', 0, '499013912291471526', 'Room 42, CR Building, 282 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1991-06-10', 0, 0, 'kasumifuku', '2018-08-23', 'kasufukuda48', '2000-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS213386138456', '斉藤明菜', 0, '+44 7299 312402', 4, '026825493441475727', 'No.14 Main building, 891 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1990-02-24', 0, 0, 'as40', '2019-09-30', 'saito2017', '2012-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS348874362328', 'Emma Reyes', 1, '+1 213-604-4828', 1, '498580421107011953', '287 Sky Way Apt 24, Los Angeles, CA 90043, United States', '1989-05-11', 0, 0, 'ereye', '2016-11-15', 'remma', '2015-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS586862078217', 'Benjamin Medina', 1, '+86 28-220-7977', 3, '917833406864635370', '中国成都市成华区双庆路315号19室', '1991-06-08', 0, 0, 'benjaminmedina', '2003-06-07', 'mebenja', '2010-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS198098249721', '湯霆鋒', 1, '+81 11-727-4845', 4, '237084184908952086', 'Rm. 36, 5-19-12 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1997-05-30', 0, 0, 'tongtingfung5', '2018-01-15', 'tingfungtong', '2000-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS801073356899', '刘致远', 0, '+86 755-748-5973', 3, '451712735700182022', '中国深圳罗湖区清水河一路142号23栋', '1997-11-06', 0, 0, 'liu1', '2015-06-16', 'zli', '2001-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS410358513022', 'Leslie Black', 0, '+1 614-478-0048', 2, '719774077695033017', '831 Wicklow Road Suite 9, Columbus, GA 43204, United States', '1991-06-01', 0, 0, 'blesl', '2013-09-22', 'blacklesli1', '2012-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS382146557353', 'Clarence Davis', 0, '+86 755-5881-4902', 1, '418406042100915828', '中国深圳福田区景田东一街10号34栋', '1990-08-23', 0, 0, 'daviscla10', '2014-02-16', 'clardavis', '2005-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS729114864467', 'Joshua Hernandez', 0, '+44 (161) 208 7184', 2, '823847333229076678', 'Flat 14, 521 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-09-06', 0, 0, 'hernandezj', '2021-05-14', 'hernajos', '2003-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS399000956927', 'Randy Spencer', 1, '+86 760-464-0608', 3, '643509211305250389', 'No.25 building, 318 Lefeng 6th Rd, Zhongshan, China', '1992-04-12', 0, 0, 'sran831', '2019-01-02', 'spencer1130', '2019-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS299480184061', '車德華', 1, '+86 760-157-5629', 3, '023110169950729640', 'Room 45, CR Building, 146 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1994-07-31', 0, 0, 'chtw5', '2002-03-14', 'twc', '2000-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS623951355526', '何致远', 1, '+44 5414 471350', 3, '214168478174743105', 'No.22 Main building, 461 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1990-02-03', 0, 0, 'zhiyuanhe6', '2001-03-24', 'hezhiy', '2014-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS257740627541', 'Charlotte Sullivan', 0, '+44 (116) 514 0070', 1, '289087105319936856', 'No.27 Main building, 658 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1995-02-07', 0, 0, 'charlotte61', '2001-05-18', 'sullivancha66', '2020-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS521404137184', '竹内美咲', 1, '+44 5875 123541', 4, '722565115806775287', 'No.24 Main building, 290 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1995-08-15', 0, 0, 'misaki1', '2021-12-09', 'misakitakeuchi4', '2001-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS195514131202', '太田凛', 0, '+44 (116) 477 4928', 4, '638999800552912158', 'Unit 6, Oxford Eco Centre, 553 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1992-09-21', 0, 0, 'rinot2', '2004-03-04', 'rinota', '2021-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS150034729320', 'Tiffany Gonzales', 1, '+1 718-409-7733', 2, '617260751165253886', '455 Flatbush Ave Apt 29, Brooklyn, NY 11225, United States', '1986-10-05', 0, 0, 'gonzales2', '2007-08-15', 'gonzalestiffa', '2004-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS334888848057', '汪晓明', 0, '+86 171-8557-2988', 0, '311648618289305268', '48F, 494 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1988-02-28', 0, 0, 'xiaomingw', '2015-11-02', 'xiaomingwang', '2008-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS639091325995', '中川光', 0, '+86 174-8790-7873', 2, '763994145787248545', 'Room 27, CR Building, 70 Hongqiao Rd., Xu Hui District, Shanghai, China', '1985-05-18', 0, 0, 'nakagawahikar', '2010-02-24', 'hikaru8', '2001-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS597829422113', 'Rosa Hicks', 1, '+1 838-853-3504', 3, '993068281917893235', '312 Broadway Suite 50, Albany, NY 12207, United States', '1988-06-03', 0, 0, 'hicks63', '2005-07-17', 'rosa10', '2003-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS694176429778', '曹朝偉', 0, '+81 80-0411-9796', 2, '303478487543215159', '日本札幌白石区菊水三条五丁目2番14号9階', '1997-05-11', 0, 0, 'cwcho5', '2022-01-12', 'chochi', '2012-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS768890329079', '宣慧嫻', 0, '+81 70-6681-0773', 4, '061259543905519100', '日本おおさかし平野区加美東四丁目9番11号22号室', '1991-03-19', 0, 0, 'waihanhsuan4', '2013-10-21', 'hwh1218', '2017-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS216604156001', '宋詩涵', 1, '+86 153-0408-8370', 3, '452060955977661189', '中国成都市成华区玉双路6号481号36室', '1992-07-17', 0, 0, 'shihanso3', '2011-09-21', 'shihanson5', '2005-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS963197354824', '市川美咲', 0, '+81 11-615-4337', 3, '557861955162741045', '39-kai, 6-1-4, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-08-05', 0, 0, 'ichikawam821', '2007-03-07', 'misakiichikawa1987', '2014-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS520159957916', '大野涼太', 1, '+86 169-7295-8221', 2, '848312202355930703', '中国北京市朝阳区三里屯路532号45号楼', '1987-01-09', 0, 0, 'ono1223', '2018-02-16', 'ryotono1', '2003-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS518383668917', '谷安娜', 0, '+86 21-6174-6887', 2, '024123930820471402', '中国上海市浦东新区橄榄路754号7楼', '1993-01-25', 0, 0, 'kooon', '2001-10-20', 'koon', '2011-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS040643678095', 'Anne Bell', 0, '+86 10-7897-4605', 4, '852045692747035773', '中国北京市海淀区清河中街68号869号50号楼', '1994-06-25', 0, 0, 'bella', '2016-07-04', 'annebell', '2008-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS434172036062', 'Harold Stephens', 1, '+81 70-4872-1312', 2, '440666652928425721', 'Rm. 7, 2-5-15 Chitose, Atsuta Ward, Nagoya, Japan', '1999-02-04', 0, 0, 'harstep', '2012-07-11', 'stephens60', '2005-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS204975787272', '吴宇宁', 1, '+81 52-821-7446', 2, '937531407738285556', '21F, 17 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1987-08-20', 0, 0, 'wuy', '2005-04-28', 'wu809', '2011-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS179116962854', '麥青雲', 0, '+86 20-3989-3259', 4, '511776403463790069', 'Room 4, 919 Xiaoping E Rd, Baiyun , Guangzhou, China', '1985-04-06', 0, 0, 'chingwanmak9', '2011-04-03', 'chingwan1963', '2021-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS168589854570', '柴田樹', 1, '+86 20-470-7235', 2, '062760012655964210', '中国广州市白云区机场路棠苑街五巷236号18号楼', '1996-08-14', 0, 0, 'shiits', '2020-11-08', 'itsukishibata', '2011-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS205491479117', '钱致远', 0, '+86 755-1620-5744', 2, '502066216949730821', '中国深圳罗湖区田贝一路340号华润大厦14室', '1991-07-23', 0, 0, 'qianzhiyuan', '2020-12-13', 'zhqian907', '2019-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS890216047341', '謝秀文', 0, '+44 7888 802664', 3, '573126497309468063', 'Unit 2, Oxford Eco Centre, 204 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1989-01-30', 0, 0, 'tse9', '2018-09-07', 'saumants4', '2017-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS562790158552', '鈴木蒼士', 0, '+44 7364 514534', 2, '127527748660346544', 'No.7 Main building, 166 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-03-11', 0, 0, 'suzuki7', '2006-11-29', 'aoshisuzuki', '2021-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS064310800840', 'Francis Powell', 1, '+81 80-1124-8416', 0, '596811850795407648', '13F, 5-2-6 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1989-03-03', 0, 0, 'francispowell', '2015-08-10', 'frapowe', '2010-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS538113731906', '姜宇宁', 1, '+81 70-6297-2658', 2, '130488298755592137', '35-kai, 14 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1995-12-17', 0, 0, 'yjiang630', '2008-03-06', 'jiangyun', '2006-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS076240347180', 'Carrie Payne', 0, '+81 90-6108-3229', 3, '926959564712766005', '37-kai, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1988-11-27', 0, 0, 'cap321', '2000-10-16', 'paynec1984', '2014-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS637654339503', '程杰宏', 1, '+81 90-4975-7752', 3, '720302781725394694', '日本なごやし瑞穂区河岸町四丁目20番6号27階', '1991-11-06', 0, 0, 'chengjiehong1025', '2003-12-16', 'chengj', '2018-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS034766436621', '中森詩乃', 1, '+81 11-782-2145', 1, '219712155114897024', '日本札幌白石区菊水三条五丁目4番3号6階', '1993-07-08', 0, 0, 'nakamorishino', '2011-06-05', 'nashino', '2002-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS911014385228', '宣浩然', 0, '+86 135-2002-0840', 3, '726619123520776245', '中国中山乐丰六路949号19栋', '1997-05-17', 0, 0, 'hyh', '2018-11-18', 'hyhsuan3', '2011-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS104482791384', '谷詠詩', 1, '+86 20-631-1902', 0, '183738680875878287', '中国广州市海珠区江南西路713号华润大厦33室', '1985-03-11', 0, 0, 'wingszekoo', '2007-12-15', 'koo6', '2010-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS572994382798', '森田桜', 1, '+1 614-871-2425', 2, '489607435637156148', '28 East Alley Suite 32, Columbus, GA 43201, United States', '1998-06-09', 0, 0, 'sakumorita8', '2020-07-15', 'msaku416', '2016-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS515340058576', 'Frances Peterson', 0, '+1 838-954-9019', 1, '995119807195334660', '485 Central Avenue Suite 29, Albany, NY 12205, United States', '1986-02-06', 0, 0, 'francpe', '2018-06-20', 'peterson1129', '2004-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS921279455132', '戴曉彤', 1, '+86 167-7759-0017', 4, '037392790187627482', 'Room 39, CR Building, 912 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1990-10-15', 0, 0, 'dai8', '2006-03-04', 'dai616', '2004-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS904360457177', '方岚', 1, '+86 177-5858-1077', 2, '456054350220593626', '中国中山乐丰六路807号14号楼', '1990-06-01', 0, 0, 'lan827', '2005-03-12', 'fanla', '2004-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS298298285859', 'Marcus Johnson', 0, '+44 (161) 542 7634', 1, '553251824238043565', 'Unit 7, Oxford Eco Centre, 706 Portland St, Manchester, M1 3LA, United Kingdom', '1994-07-09', 0, 0, 'marcusjohn', '2004-05-15', 'johnsonmarcus', '2013-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS445311353071', '雷慧敏', 1, '+86 143-8201-8875', 0, '615820042799552981', '中国上海市浦东新区橄榄路977号华润大厦32室', '1985-12-15', 0, 0, 'wmloui', '2007-11-17', 'wailoui14', '2004-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS103813792923', '高詩涵', 1, '+81 66-498-8306', 1, '480731819281868386', '日本おおさかし東住吉区東田辺三丁目27番7号13階', '1989-04-28', 0, 0, 'gaoshihan', '2008-11-21', 'shihanga', '2001-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS916764747417', 'Cheryl Evans', 0, '+86 180-3570-7853', 2, '914585671418247503', '中国中山乐丰六路753号7楼', '1994-05-12', 0, 0, 'ce64', '2003-06-10', 'evacheryl10', '2003-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS747661741614', 'Harold Schmidt', 1, '+1 718-921-7172', 0, '777433863958280514', '432 Nostrand Ave Apartment 21, Brooklyn, NY 11216, United States', '1989-03-12', 0, 0, 'sh1104', '2011-04-11', 'haroldschmidt', '2001-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS232434067577', '吉田美咲', 0, '+86 132-5434-4674', 0, '023957756508755875', 'Room 8, No. 531, Shuangqing Rd, Chenghua District, Chengdu, China', '1987-11-30', 0, 0, 'misakiy', '2020-06-01', 'misaki8', '2016-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS595321297808', '後藤凛', 1, '+81 80-6509-0929', 1, '601109962880588872', '日本ならし大和郡山市本庄町一丁目1番13号10階', '1995-08-23', 0, 0, 'gori', '2001-08-31', 'rin64', '2015-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS600205469055', '上田葵', 0, '+81 3-2461-3214', 2, '658884722663748458', 'Rm. 17, 1-6-9, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1993-03-13', 0, 0, 'uea17', '2007-01-08', 'uedaaoi', '2013-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS384440674855', 'Jamie Walker', 0, '+81 74-361-0969', 2, '152143063613807886', '2F, 3-9-1 Gakuenminami, Nara, Japan', '1986-07-10', 0, 0, 'jamiewalk9', '2011-07-14', 'jamiwalker', '2001-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS059733215470', '罗震南', 1, '+81 70-7104-6991', 1, '577508698421944837', '日本なごやし熱田区千年二丁目5番11号4号室', '1998-10-29', 0, 0, 'zhennanluo', '2009-05-14', 'luo1127', '2013-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS276056206010', '杉山紗良', 0, '+81 3-0575-3838', 2, '302751997046032508', '12-kai, 2-3-19 Yoyogi, Shibuya-ku, Tokyo, Japan', '1996-10-16', 0, 0, 'sasugiyama1217', '2013-11-20', 'sugiyama1', '2008-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS505738486294', '萬詠詩', 0, '+86 133-3085-4867', 0, '229386360939394764', 'Room 10, CR Building, 46 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1985-06-01', 0, 0, 'wsmeng1968', '2015-03-11', 'wsmeng', '2013-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS750509021701', '黎安琪', 1, '+81 3-5596-7872', 2, '858119541039199175', '日本東京渋谷区代々木二丁目3番20号32階', '1992-12-10', 0, 0, 'anqi1216', '2014-06-19', 'lianqi', '2008-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS788544112881', 'Miguel Hernandez', 1, '+86 10-554-7717', 0, '447353024327289852', '中国北京市海淀区清河中街68号55号23室', '1988-06-01', 0, 0, 'mhernandez', '2005-08-15', 'hmig105', '2011-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS279740689516', '林榮發', 0, '+86 760-4650-6404', 4, '908195472283974504', 'No.16 building, 852 Lefeng 6th Rd, Zhongshan, China', '1986-08-11', 0, 0, 'wingfat7', '2021-01-21', 'wflam', '2009-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS130590264918', '杉山光', 1, '+86 20-8179-9515', 0, '533037636167932665', '中国广州市白云区小坪东路202号7楼', '1992-12-19', 0, 0, 'sugiyamahikaru', '2000-05-23', 'hsugiyama', '2009-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS662070015429', 'Marvin Stewart', 1, '+86 10-1276-0893', 2, '692366137563635465', 'Room 50, 689 Yueliu Rd, Fangshan District, Beijing, China', '1993-03-16', 0, 0, 'stewm10', '2019-10-16', 'stewartma', '2015-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS404764704984', 'Martha King', 1, '+81 80-2802-7776', 1, '617538582267310658', '日本ならし西大寺赤田町一丁目7番3号18階', '1986-12-24', 0, 0, 'kingmartha3', '2005-02-10', 'king802', '2000-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS611433463877', '上野明菜', 0, '+86 145-5557-0420', 2, '404595761740135816', '中国中山天河区大信商圈大信南路682号5楼', '1985-07-02', 0, 0, 'uenoa', '2017-06-21', 'ueakina', '2002-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS316998304522', 'Jacob Hill', 1, '+86 196-3134-7495', 1, '199077549997049650', 'Room 15, 100 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1999-02-02', 0, 0, 'jhil324', '2008-08-11', 'jhill', '2018-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS435849444973', 'Tracy Stephens', 1, '+44 (1865) 95 3052', 2, '328669405602482900', 'Unit 12, Oxford Eco Centre, 562 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1986-08-28', 0, 0, 'stetracy1123', '2009-06-05', 'stephenstracy8', '2019-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS798408476526', '山崎蓮', 0, '+44 5066 777978', 2, '739102982421880463', 'Block 20, 641 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1990-02-10', 0, 0, 'yre', '2002-05-04', 'renyamaz3', '2000-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS086926116276', 'Carl Nguyen', 0, '+81 70-0072-8439', 4, '818438384792469994', '日本おおさかし東住吉区東田辺三丁目27番7号35号室', '1986-01-15', 0, 0, 'carlng', '2008-08-12', 'ngucarl', '2015-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS946057137788', '酒井一輝', 0, '+86 10-903-5091', 0, '089598801185999381', 'Room 39, 371 West Chang''an Avenue, Xicheng District, Beijing, China', '1988-11-04', 0, 0, 'ikkisa1', '2000-05-27', 'ikki52', '2005-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS257149254963', '高木美月', 0, '+81 90-7094-3037', 1, '882744916289491246', '日本東京千代田区丸の内一丁目6番19号18階', '1989-06-30', 0, 0, 'mtaka', '2008-09-03', 'mitst', '2018-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS482197799731', '容慧珊', 1, '+81 74-447-9090', 1, '179039572397258985', '日本ならし西大寺赤田町一丁目7番10号42階', '1995-11-12', 0, 0, 'waisanyung2011', '2017-12-15', 'waiyung10', '2008-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS763905825346', '菅原瑛太', 1, '+81 80-4302-6901', 2, '566621964623274283', '37F, 2-3-17 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-01-19', 0, 0, 'eitasugawara', '2011-08-17', 'eitasug10', '2014-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS567605229847', '郭詠詩', 1, '+44 5751 044242', 2, '061823422468811434', 'No.15 Main building, 86 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1993-01-05', 0, 0, 'wskw6', '2008-10-01', 'wskw70', '2012-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS855576315904', '小野結翔', 0, '+1 312-149-4810', 0, '980253162213439686', '246 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1995-05-26', 0, 0, 'onoy2', '2016-03-27', 'oyuito', '2000-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS097040704068', '黄璐', 1, '+81 3-0866-2570', 4, '289112339328461192', '日本東京千代田区丸の内一丁目6番17号45号室', '1993-05-08', 0, 0, 'huanglu', '2001-03-27', 'huanglu407', '2004-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS568028039881', 'Douglas Roberts', 0, '+86 158-2113-1464', 4, '245394241325178265', 'Room 46, 8 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1997-06-25', 0, 0, 'dour617', '2001-06-25', 'roberts731', '2018-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS399448768543', '戴心穎', 0, '+86 186-4698-6509', 2, '346321645071453323', 'No.9 building, 327 Xiaoping E Rd, Baiyun , Guangzhou, China', '1991-04-27', 0, 0, 'swdai1', '2019-08-10', 'swdai', '2020-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS321708736698', '村田光', 1, '+44 7869 689677', 3, '079467946578626231', 'No.33 Main building, 544 Hanover St, Liverpool, L1 4AF, United Kingdom', '1998-09-25', 0, 0, 'hikarmurata2', '2020-10-24', 'muratahik', '2005-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS737472918635', '有村葉月', 1, '+81 66-400-1055', 4, '757138908508356555', '38-kai, 2-1-16 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1986-09-04', 0, 0, 'arimura3', '2015-10-16', 'hazuki9', '2004-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS410955089884', 'Kathleen Smith', 1, '+81 52-892-4957', 3, '067998454837901849', '日本なごやし守山区瀬古東二丁目171番16号8階', '1985-06-18', 0, 0, 'smk6', '2018-01-20', 'ksm', '2005-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS471764007107', '萬曉彤', 1, '+86 769-582-8896', 0, '028783796087282874', '中国东莞环区南街二巷208号11号楼', '1990-06-05', 0, 0, 'hiutung608', '2021-12-08', 'mehiutung', '2010-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS836122626542', 'Nicole Campbell', 1, '+86 138-3705-5294', 2, '689928214140692964', '中国上海市闵行区宾川路551号华润大厦9室', '1997-05-21', 0, 0, 'campbellnicole', '2006-11-28', 'campbellnic', '2004-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS538349111937', 'Kelly Reed', 1, '+86 168-4485-6316', 3, '694374091726463126', '中国深圳罗湖区蔡屋围深南东路901号32栋', '1992-11-23', 0, 0, 'kereed', '2002-04-17', 'rekelly', '2016-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS381402104101', '盧家文', 1, '+86 164-2294-6557', 2, '601805256473648563', '中国深圳福田区深南大道21号2栋', '1988-08-15', 0, 0, 'kaman8', '2010-01-08', 'lkm109', '2016-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS441628336906', '上野愛梨', 1, '+1 212-418-5228', 3, '255689154576449633', '131 West Houston Street Apartment 45, New York, NY 10014, United States', '1997-02-20', 0, 0, 'ueairi', '2001-08-20', 'uenoairi', '2005-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS809772145131', '向岚', 0, '+86 10-963-1606', 4, '662771471391297154', 'No.30 building, 715 East Wangfujing Street, Dongcheng District , Beijing, China', '1986-07-07', 0, 0, 'xiangl', '2009-12-30', 'lanxiang', '2003-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS056455239845', '宣朝偉', 0, '+44 (20) 7838 3727', 3, '576785014436104043', 'Block 19, 531 Maddox Street, London, W1S 1PU, United Kingdom', '1988-11-14', 0, 0, 'cwhs1985', '2000-11-15', 'chiuwaihsuan623', '2022-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS283282239438', '太田一輝', 0, '+86 164-5703-0973', 3, '030352037206645326', 'No.12 building, 229 Lefeng 6th Rd, Zhongshan, China', '1989-07-21', 0, 0, 'ota70', '2012-01-02', 'ikkio', '2006-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS005824713459', '翁學友', 0, '+81 80-6108-3874', 2, '860751817588120696', 'Rm. 38, 3 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-10-31', 0, 0, 'yung3', '2020-08-02', 'hokyauyun', '2004-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS840728115615', '平野結翔', 1, '+1 212-269-0832', 2, '029568844608113885', '16 Fifth Avenue Apt 7, New York, NY 10017, United States', '1994-09-30', 0, 0, 'yuitohirano', '2001-04-28', 'hyuit4', '2015-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS980898077130', '伊藤葉月', 0, '+1 212-735-0381', 3, '138173182696870878', '301 Fifth Avenue Apartment 19, New York, NY 10017, United States', '1997-05-12', 0, 0, 'ithazu58', '2000-07-14', 'ith7', '2014-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS007986140486', '菅原明菜', 0, '+81 3-0839-1063', 2, '980960110305278913', '日本東京品川区東五反田五丁目2番19号50号室', '1998-02-22', 0, 0, 'sugawara1230', '2017-09-06', 'akinasu7', '2014-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS271732202710', 'Ray Gordon', 0, '+1 213-439-7641', 4, '839459117042703008', '370 Alameda Street Apartment 22, Los Angeles, CA 90002, United States', '1991-06-18', 0, 0, 'rgo19', '2010-05-10', 'ray714', '2000-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS592057545233', '容安娜', 1, '+1 213-885-6195', 3, '996556178964206853', '998 Grape Street Suite 19, Los Angeles, CA 90002, United States', '1990-04-20', 0, 0, 'yonna10', '2009-08-13', 'onyung909', '2015-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS034951144003', '宣明詩', 0, '+1 330-248-3753', 3, '114383963522194494', '135 Collier Road Apartment 3, Akron, OH 44320, United States', '1992-04-07', 0, 0, 'hsuanms10', '2014-05-24', 'hmingsze97', '2015-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS156174610296', 'Bruce Hernandez', 0, '+81 11-180-5400', 1, '224441400451981683', '27-kai, 5-2-4 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-08-08', 0, 0, 'hernandez7', '2016-08-02', 'bruceh', '2007-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS839633507172', '向岚', 1, '+81 90-5341-4458', 2, '306347477523797323', '日本なごやし熱田区千年二丁目5番12号5階', '1991-09-27', 0, 0, 'lanxiang', '2013-05-29', 'xianglan1988', '2008-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS648376490689', '方詩涵', 1, '+44 5864 525471', 1, '503061907422241567', 'Unit 30, Oxford Eco Centre, 374 Sackville St, Manchester, M1 3BB, United Kingdom', '1986-08-31', 0, 0, 'fang117', '2012-05-06', 'fang915', '2010-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS742398020641', '藤田七海', 0, '+86 199-0193-6016', 1, '839029236144646680', 'No.29 building, 739 028 County Rd, Yanqing District, Beijing, China', '1992-11-01', 0, 0, 'nanami42', '2007-05-01', 'nanafujit1953', '2013-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS678547249661', '任永權', 0, '+86 20-5323-9910', 1, '302837481024869903', 'Room 9, 262 Xiaoping E Rd, Baiyun , Guangzhou, China', '1998-10-20', 0, 0, 'yam10', '2015-07-03', 'yam83', '2008-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS717957333501', 'Walter Gutierrez', 1, '+1 614-689-0399', 3, '904564829792508109', '423 East Alley Apartment 20, Columbus, GA 43201, United States', '1993-05-05', 0, 0, 'gutierrezwalter87', '2015-04-09', 'walterg', '2016-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS244100526864', 'Joan Alexander', 0, '+81 74-103-2367', 0, '380824290774873052', '日本ならし学園南三丁目9番13号21号室', '1994-06-22', 0, 0, 'alexanderjoan1993', '2006-01-27', 'joanalexander', '2016-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS468263806389', '蔡杰宏', 0, '+44 (116) 305 9340', 3, '039895123969450711', 'Unit 4, Oxford Eco Centre, 321 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1990-11-03', 0, 0, 'caijiehong1002', '2013-07-02', 'jiehong1955', '2002-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS837641054892', '白發', 1, '+86 20-310-1952', 3, '899961704304706875', '中国广州市白云区机场路棠苑街五巷306号23楼', '1996-09-02', 0, 0, 'fatpa', '2010-08-03', 'pakfa5', '2014-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS147608127721', '劉詠詩', 1, '+86 166-3181-3522', 2, '773811536918299578', '中国深圳福田区景田东一街223号6室', '1986-09-21', 0, 0, 'lwin', '2011-05-22', 'lauws2001', '2001-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS891833788814', '許志明', 0, '+81 80-1787-1660', 1, '572417863086583692', '45-kai, 2-5-19 Chitose, Atsuta Ward, Nagoya, Japan', '1987-05-31', 0, 0, 'huicm1101', '2003-12-09', 'chhui03', '2018-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS071013740463', '高田明菜', 1, '+86 158-5467-3681', 3, '064474965941788962', '中国广州市天河区天河路922号3楼', '1996-04-18', 0, 0, 'takadaakina', '2000-09-01', 'atakada803', '2017-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS893392793966', '野村大地', 1, '+44 7338 003086', 0, '040561157856886786', 'Flat 5, 725 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-06-12', 0, 0, 'daichi60', '2020-07-28', 'nomurad', '2017-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS975249379792', '原田彩乃', 1, '+1 614-716-4584', 0, '237445031717012297', '722 Diplomacy Drive Suite 21, Columbus, GA 43228, United States', '1985-03-06', 0, 0, 'ayanharada914', '2004-11-12', 'ayanharada8', '2001-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS243331965553', '杨云熙', 0, '+86 186-7759-1062', 2, '966895980460891637', 'Room 49, CR Building, 127 Jiangnan West Road, Haizhu District, Guangzhou, China', '1998-09-11', 0, 0, 'yayunxi', '2011-05-15', 'yanyunx5', '2001-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS714562165240', 'Lawrence Hernandez', 0, '+81 66-290-6052', 1, '794322631975259984', '日本おおさかし東住吉区東田辺三丁目27番12号49階', '1985-04-19', 0, 0, 'lawrence20', '2009-02-12', 'lawrencehern', '2013-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS121379183683', '董宇宁', 1, '+86 155-6492-4619', 1, '089983226116219517', '中国上海市徐汇区虹桥路219号31号楼', '1985-04-03', 0, 0, 'yuning321', '2009-05-28', 'yuning8', '2011-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS267609422445', '石田陽菜', 1, '+86 10-358-8100', 0, '532837579302887068', '中国北京市延庆区028县道719号42号楼', '1997-09-21', 0, 0, 'ihina1', '2021-02-16', 'hinishida00', '2015-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS305204879048', '洪慧儀', 0, '+1 213-703-6727', 2, '005456132717552565', '378 Wall Street Apt 27, Los Angeles, CA 90003, United States', '1987-03-30', 0, 0, 'waiyeh', '2019-02-14', 'hung1', '2004-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS588749037071', '小林蓮', 0, '+44 5818 513788', 4, '719031544806711995', 'No.1 Main building, 396 Hanover St, Liverpool, L1 4AF, United Kingdom', '1985-12-10', 0, 0, 'kobayre', '2008-07-15', 'kobayren', '2020-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS331913576490', '林致远', 0, '+86 141-7310-3096', 3, '771153999709845495', '中国上海市闵行区宾川路152号29室', '1986-06-29', 0, 0, 'lizhiyuan', '2013-06-13', 'zhiyuanlin', '2011-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS434774771788', '史晓明', 0, '+81 70-2475-4667', 0, '909305931096345904', '36-kai, 1-6-20, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-05-05', 0, 0, 'shi107', '2004-04-17', 'sxia10', '2010-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS261139882662', '吉田結翔', 0, '+86 28-741-2227', 4, '124224909768350570', 'Room 29, 869 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1989-06-03', 0, 0, 'yuitoyoshida', '2005-01-24', 'yoshiday', '2004-02-29'); +INSERT INTO "public"."userinfo" VALUES ('TS150527825047', '三浦桜', 1, '+81 74-063-8709', 2, '103845031302111964', '23-kai, 1-7-15 Saidaiji Akodacho, Nara, Japan', '1986-11-02', 0, 0, 'miurasakura', '2001-01-09', 'sakuramiu', '2005-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS485142110230', '高橋蒼士', 1, '+1 718-042-5943', 0, '598244011650256756', '972 Columbia St Apt 20, Brooklyn, NY 11231, United States', '1990-10-24', 0, 0, 'aostakahashi40', '2019-01-04', 'aoshi1212', '2010-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS388152841035', '蒋致远', 1, '+81 80-9705-7050', 3, '286587974886243202', '48-kai, 1-7-12 Omido, Higashiosaka, Osaka, Japan', '1997-06-12', 0, 0, 'zhiyuan1949', '2021-03-01', 'zhiyj6', '2021-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS202771476313', '渡部大和', 0, '+86 187-8848-8011', 0, '636911685705616000', '中国成都市锦江区红星路三段472号37栋', '1993-04-02', 0, 0, 'watanabeyamato', '2012-02-17', 'yamato53', '2018-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS312265616100', '何秀英', 1, '+44 (151) 771 0596', 2, '048393084401420306', 'Block 19, 954 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1993-09-15', 0, 0, 'hxiuy7', '2009-07-08', 'hexiuy1120', '2007-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS446433754194', '胡裕玲', 1, '+44 (151) 220 7454', 4, '448230399478067929', 'Unit 28, Oxford Eco Centre, 780 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1989-01-10', 0, 0, 'yuling65', '2008-02-23', 'ylwu13', '2001-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS105077838764', '黎岚', 0, '+81 66-814-8658', 3, '062070988704908352', '日本おおさかし西成区出城一丁目1番3号3階', '1988-09-04', 0, 0, 'lanli', '2021-03-18', 'll46', '2003-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS315125766789', '小川架純', 0, '+44 5168 613845', 1, '935003797601231803', 'Block 34, 90 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1988-10-12', 0, 0, 'ogakasumi', '2006-10-02', 'kao', '2021-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS732436183687', 'Anthony Freeman', 1, '+86 769-199-9888', 3, '448121524462686999', 'No.17 building, 447 Shanhu Rd, Dongguan, China', '1990-11-01', 0, 0, 'anthf', '2002-04-11', 'anthonyfreeman', '2004-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS459087841982', 'Aaron Medina', 0, '+1 213-065-9735', 4, '202740750726947617', '907 Grape Street Suite 32, Los Angeles, CA 90002, United States', '1996-11-28', 0, 0, 'aamedina', '2018-02-17', 'aaronmedina', '2003-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS609994130228', '中野七海', 0, '+1 614-202-2115', 1, '723239122878014472', '46 Wicklow Road Apartment 17, Columbus, GA 43204, United States', '1995-09-24', 0, 0, 'nakann', '2019-03-01', 'nakano1005', '2009-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS531951089060', 'Bradley Wilson', 0, '+81 52-037-6073', 4, '437878155147609182', '35F, 4 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1991-02-27', 0, 0, 'bwilson', '2013-07-20', 'wilsbr', '2004-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS560906788338', '秦云熙', 0, '+44 7090 553452', 1, '349180455194591807', 'Unit 40, Oxford Eco Centre, 511 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1988-12-19', 0, 0, 'qinyu', '2004-03-27', 'qinyunxi', '2005-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS727595944491', '劉發', 0, '+81 90-8971-0746', 3, '937417599940269034', 'Rm. 14, 1-1-10 Deshiro, Nishinari Ward, Osaka, Japan', '1995-03-17', 0, 0, 'lfat', '2001-03-21', 'fatlau', '2008-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS654930897824', '阎致远', 0, '+81 52-216-3821', 0, '516598107410408864', '16-kai, 9 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-10-22', 0, 0, 'zhiyuanyan10', '2001-08-13', 'zya', '2007-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS129687338880', '翁安娜', 0, '+86 10-1688-7364', 1, '413131846779106565', 'Room 42, 345 028 County Rd, Yanqing District, Beijing, China', '1987-05-11', 0, 0, 'yon', '2015-11-28', 'yungon70', '2020-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS710612084476', '河野凛', 1, '+44 5328 108044', 1, '654360951131520394', 'Block 34, 783 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1996-09-30', 0, 0, 'rko131', '2012-10-29', 'konorin', '2016-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS569908904951', 'Josephine Reyes', 0, '+44 (116) 712 0430', 1, '303700192909930836', 'Block 35, 756 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1989-07-07', 0, 0, 'josephinereyes', '2003-11-13', 'jor', '2000-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS771412126800', '中野美羽', 1, '+81 66-703-9253', 2, '792544728463575052', '15-kai, 4-9-6 Kamihigashi, Hirano Ward, Osaka, Japan', '1991-02-02', 0, 0, 'miunaka513', '2012-12-29', 'miunakano902', '2013-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS987449161250', '小林蓮', 1, '+86 28-268-3420', 3, '613428901782745111', '29F, No.310, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1998-07-20', 0, 0, 'kobayashi10', '2012-10-18', 'renkobayashi', '2013-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS384186731329', '内田彩乃', 0, '+1 330-228-3308', 1, '800133975363055867', '548 Collier Road 3rd Floor, Akron, OH 44320, United States', '1990-02-17', 0, 0, 'uchiaya', '2012-08-20', 'uchaya', '2022-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS367223437985', 'Shawn Green', 0, '+44 7728 316964', 3, '815150078474353359', 'Flat 1, 622 Hanover St, Liverpool, L1 4AF, United Kingdom', '1993-10-05', 0, 0, 'shag', '2019-08-04', 'green5', '2020-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS153566546881', '朱俊宇', 1, '+86 769-3782-8585', 1, '069723381910281555', 'No.11 building, 925 Kengmei 15th Alley, Dongguan, China', '1994-07-05', 0, 0, 'cychu623', '2020-06-14', 'cychu', '2011-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS355586655735', '武睿', 1, '+44 (161) 816 6467', 4, '237684090237446506', 'No.3 Main building, 525 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-05-30', 0, 0, 'wrui', '2015-06-13', 'rui52', '2003-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS012819872170', 'Esther Wallace', 1, '+86 196-9808-5883', 2, '374887850796865931', '中国深圳罗湖区清水河一路995号华润大厦43室', '1986-07-12', 0, 0, 'esther319', '2020-08-10', 'esther81', '2009-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS575175617654', 'Kimberly Stewart', 0, '+86 21-230-6972', 2, '554784437767939602', '中国上海市闵行区宾川路987号1号楼', '1992-03-28', 0, 0, 'stewartkim1990', '2021-01-19', 'stewart63', '2015-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS004121649776', '杜云熙', 0, '+81 11-979-1749', 1, '558743976744925921', '4F, 5-2-19 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1986-10-05', 0, 0, 'yunxi428', '2013-08-17', 'duyunxi10', '2004-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS765698227195', '李永權', 0, '+44 (151) 640 6614', 0, '043143309493104620', 'Block 30, 719 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1985-12-29', 0, 0, 'lewk1118', '2000-03-01', 'leewk', '2019-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS417143264539', '蘇明', 1, '+81 70-8149-0003', 3, '711364597742916524', '日本おおさかし東住吉区東田辺三丁目27番1号1階', '1991-02-12', 0, 0, 'ming3', '2004-04-22', 'ming62', '2005-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS436764845322', '藤詠詩', 0, '+81 80-7650-2693', 3, '461382911606802777', '日本おおさかし近江堂一丁目7番18号13階', '1997-07-31', 0, 0, 'tangws', '2000-11-29', 'wingszetang', '2001-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS607502496825', '段子韬', 1, '+86 135-3628-7812', 2, '433127110518091452', 'No.36 building, 603 Huanqu South Street 2nd Alley, Dongguan, China', '1996-01-24', 0, 0, 'duanzitao', '2009-08-05', 'dz78', '2021-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS467575376437', '向安琪', 0, '+81 52-656-0144', 2, '891975414539165647', '17-kai, 13 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-05-22', 0, 0, 'xanqi1974', '2001-10-24', 'ax10', '2001-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS943026708047', 'Helen Bennett', 0, '+86 28-601-3800', 4, '110684954768188778', '44F, No. 54, Shuangqing Rd, Chenghua District, Chengdu, China', '1990-08-18', 0, 0, 'hb1', '2002-12-21', 'bennett5', '2004-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS359385279916', '周秀英', 1, '+86 158-2726-6530', 1, '238347986982115687', '中国北京市海淀区清河中街68号959号24楼', '1994-12-14', 0, 0, 'xzhou', '2010-11-06', 'xzho', '2021-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS709579032830', 'Nathan Burns', 1, '+81 70-2574-8801', 2, '081122551947413716', '日本東京港区東新橋一丁目5番15号37階', '1987-01-03', 0, 0, 'burnsnathan', '2011-11-27', 'burn', '2019-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS659763854358', '黎岚', 1, '+1 718-654-1972', 1, '084710430971889355', '377 Bergen St Apt 5, Brooklyn, NY 11217, United States', '1989-09-24', 0, 0, 'lanli', '2021-01-24', 'lanli4', '2012-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS724294731244', '石田架純', 0, '+86 160-4230-0059', 1, '421036624653139410', '中国上海市徐汇区虹桥路454号30号楼', '1988-01-17', 0, 0, 'kasumi1', '2014-10-08', 'kasumi8', '2005-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS057101473663', '中村凛', 0, '+81 3-6346-1871', 1, '531309722933586640', '日本東京渋谷区代々木二丁目3番9号17階', '1988-10-22', 0, 0, 'nakamurarin3', '2018-03-11', 'nakamurarin', '2001-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS896294358042', '王岚', 1, '+81 80-9875-6870', 2, '417144636190044565', '32F, 2-5-4 Chitose, Atsuta Ward, Nagoya, Japan', '1993-11-15', 0, 0, 'lw44', '2008-05-14', 'wla', '2007-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS418460840660', '高橋聖子', 1, '+1 838-167-6316', 1, '955811598239507891', '211 State Street Suite 10, Albany, NY 12203, United States', '1986-09-29', 0, 0, 'takahashise', '2002-12-15', 'seikotakahashi8', '2018-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS480050995638', '井上舞', 1, '+44 5507 270444', 1, '294232680958979600', 'No.11 Main building, 636 Regent Street, London, W1B 2LX, United Kingdom', '1993-02-24', 0, 0, 'mainoue', '2007-09-28', 'inouemai9', '2014-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS959795498462', '贺杰宏', 1, '+81 90-4885-1457', 0, '133061732219037791', '日本札幌白石区菊水三条五丁目4番12号38号室', '1996-07-04', 0, 0, 'jiehohe1943', '2016-06-28', 'he2', '2010-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS461141410626', 'Jerry Johnson', 0, '+86 148-2562-6468', 3, '725921946763166966', 'Room 30, 399 Hongqiao Rd., Xu Hui District, Shanghai, China', '1990-03-05', 0, 0, 'jerrjohns', '2014-09-29', 'johnsonj02', '2014-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS532459056624', '中山大輔', 1, '+1 838-452-7925', 3, '583892282810330950', '673 State Street Apt 21, Albany, NY 12203, United States', '1986-02-21', 0, 0, 'daisuke6', '2012-07-02', 'nakayamadaisuke', '2012-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS336370533668', '范嘉伦', 1, '+86 156-9187-4325', 2, '417665917235233768', '中国上海市黄浦区淮海中路248号32室', '1985-12-30', 0, 0, 'fan9', '2009-11-07', 'jialunfa', '2021-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS206599849240', '邹震南', 0, '+44 7084 782492', 2, '698148558173563458', 'No.28 Main building, 601 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1995-06-03', 0, 0, 'zhennanzou', '2010-12-20', 'zozhennan', '2020-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS018055062594', '斉藤陸', 0, '+44 (116) 263 2288', 1, '627321863476237715', 'Flat 17, 255 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1993-07-17', 0, 0, 'saito13', '2013-03-06', 'sariku', '2002-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS661948771574', '高睿', 1, '+86 151-2512-0625', 1, '717595999078660510', 'No.24 building, 165 Sanlitun Road, Chaoyang District, Beijing, China', '1993-10-08', 0, 0, 'ruga', '2001-08-05', 'gaoru', '2007-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS812607155342', 'Anna Simpson', 0, '+86 755-668-8090', 2, '965084741179106045', '中国深圳福田区深南大道770号20栋', '1998-11-10', 0, 0, 'annas1026', '2012-03-31', 'annasimpson', '2016-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS068690935951', '孙嘉伦', 0, '+44 (20) 7250 6157', 1, '719486338595498866', 'Flat 35, 702 Hanover Street, London, W1S 1YD, United Kingdom', '1996-09-07', 0, 0, 'sunjial6', '2003-08-19', 'jiasu', '2015-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS169020077118', 'Ethel Roberts', 0, '+81 90-6131-6765', 3, '033981726181719505', '日本東京港区東新橋一丁目5番9号29階', '1993-12-13', 0, 0, 'er4', '2010-01-04', 'roberethel', '2003-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS841111124685', '唐杰宏', 0, '+81 11-069-7496', 0, '012135791506782007', 'Rm. 37, 6-1-4, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1992-03-03', 0, 0, 'jit', '2019-09-15', 'jiehtang53', '2004-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS908094315250', '松本聖子', 0, '+86 760-1237-3679', 2, '449434323172068740', '中国中山乐丰六路671号26室', '1989-09-19', 0, 0, 'matsumoto69', '2012-02-01', 'seiko1966', '2021-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS784798121325', '高安琪', 1, '+86 175-0247-2534', 2, '509791631761296327', 'Room 47, CR Building, 433 East Wangfujing Street, Dongcheng District , Beijing, China', '1994-08-07', 0, 0, 'anqiga229', '2017-09-14', 'aga', '2012-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS708168128425', '梁麗欣', 0, '+81 66-582-4552', 1, '871784338364380957', 'Rm. 5, 1-7-17 Omido, Higashiosaka, Osaka, Japan', '1988-09-26', 0, 0, 'lyl', '2021-04-09', 'lly', '2004-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS696886144338', '蔡璐', 1, '+44 (121) 474 7034', 4, '378501295654499180', 'Flat 16, 785 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1986-10-05', 0, 0, 'cai10', '2001-06-07', 'lu93', '2011-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS400747713421', '森百恵', 0, '+86 194-0253-1487', 1, '453152651543429899', '中国中山乐丰六路569号17楼', '1986-04-10', 0, 0, 'momoemori1977', '2000-10-26', 'momoe1', '2011-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS015670696153', '溫浩然', 1, '+86 198-6451-3723', 3, '795578908287932400', 'No.21 building, 454 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1986-06-07', 0, 0, 'wanhy', '2019-08-16', 'hyw914', '2008-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS866965894308', '太田健太', 1, '+86 150-9520-8310', 2, '666403676116669216', '中国深圳罗湖区蔡屋围深南东路597号9楼', '1993-07-18', 0, 0, 'kentaota', '2001-10-31', 'ota3', '2009-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS259481408650', '中島桜', 1, '+1 213-588-8537', 3, '298970849061029596', '680 Grape Street Apt 13, Los Angeles, CA 90002, United States', '1995-12-20', 0, 0, 'nakajimasakura', '2005-05-12', 'nsakura206', '2016-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS144381943803', '伊藤玲奈', 1, '+86 769-3374-0873', 2, '154716365920670098', '14F, 462 Shanhu Rd, Dongguan, China', '1988-08-20', 0, 0, 'renai825', '2011-07-02', 'itorena', '2013-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS734925962911', '岩崎悠人', 1, '+81 74-186-1627', 1, '793441791344518862', '日本ならし学園南三丁目9番4号14号室', '1998-08-06', 0, 0, 'iwasayuto49', '2008-12-07', 'yutoi', '2005-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS465444710970', 'Nicholas Adams', 0, '+86 28-818-1166', 2, '133766054532178238', '中国成都市成华区双庆路577号22号楼', '1985-06-08', 0, 0, 'nicholasadams', '2015-02-23', 'anicho7', '2008-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS372672530350', '余岚', 1, '+86 145-2751-5045', 3, '306465843807943025', 'Room 49, CR Building, 369 Hongqiao Rd., Xu Hui District, Shanghai, China', '1987-04-27', 0, 0, 'lan5', '2005-10-25', 'yulan', '2014-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS496378219946', '伍明詩', 1, '+81 90-5816-1433', 2, '723230048230021656', '46F, 5-4-15 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-08-27', 0, 0, 'ngmingsze', '2010-04-14', 'ming3', '2020-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS781163419726', '丸山樹', 1, '+44 5468 348966', 3, '706977969256451973', 'Block 4, 800 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1995-03-30', 0, 0, 'itsukim', '2018-09-16', 'itsukimaruyama6', '2012-02-29'); +INSERT INTO "public"."userinfo" VALUES ('TS428795115006', 'Curtis Hayes', 1, '+81 3-4865-6884', 4, '121988353048917110', 'Rm. 32, 1-5-2, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1993-11-16', 0, 0, 'curtishayes707', '2018-08-08', 'hayescurtis', '2006-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS285528047094', '野口絢斗', 0, '+44 5403 472788', 2, '886180673341159214', 'Block 27, 238 Maddox Street, London, W1S 1PU, United Kingdom', '1996-06-03', 0, 0, 'ayato10', '2000-04-29', 'noayato910', '2000-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS673138299276', '侯嘉伦', 1, '+44 7099 033945', 2, '352799268289950643', 'Block 32, 322 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1990-03-07', 0, 0, 'jialunhou721', '2001-03-28', 'houjialun', '2010-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS845366163067', '胡嘉欣', 0, '+1 330-477-0760', 3, '163517111564686533', '830 Collier Road Apartment 45, Akron, OH 44320, United States', '1988-06-05', 0, 0, 'karyanwu6', '2010-05-27', 'wukaryan', '2004-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS704226303246', '田中樹', 0, '+81 11-222-7191', 1, '568133907221076175', '23F, 5-4-6 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1988-01-17', 0, 0, 'tanitsuki1', '2000-02-02', 'tit', '2008-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS897135198516', '中島愛梨', 1, '+81 11-291-7527', 2, '140970846722696097', '日本札幌豊平区豊平三条十三丁目3番13号37階', '1998-07-07', 0, 0, 'airnakajima44', '2003-10-21', 'nakajimaairi', '2001-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS775239959324', '元天榮', 1, '+86 10-7331-0908', 3, '947039977929531448', 'Room 37, 972 68 Qinghe Middle St, Haidian District, Beijing, China', '1985-10-08', 0, 0, 'yutinw', '2022-02-09', 'tiy', '2011-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS730237627061', '斉藤樹', 1, '+86 10-8480-4758', 2, '321225974707987879', '中国北京市房山区岳琉路640号华润大厦18室', '1990-04-07', 0, 0, 'saitsuki', '2005-12-08', 'itss', '2007-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS453374638007', '工藤百恵', 0, '+81 80-3390-2355', 3, '213503241895753649', '29F, 3-27-14 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-05-31', 0, 0, 'momoekudo', '2020-07-30', 'momoe3', '2006-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS888073865769', 'Paul Cox', 0, '+86 10-9192-9640', 1, '205339663530973605', 'Room 7, CR Building, 601 Sanlitun Road, Chaoyang District, Beijing, China', '1989-11-24', 0, 0, 'paulcox', '2016-08-27', 'copaul1', '2004-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS853085867596', '鄭志遠', 0, '+81 90-2503-8556', 1, '975617269103353194', '日本札幌白石区菊水三条五丁目2番5号48階', '1989-05-22', 0, 0, 'chency5', '2011-02-01', 'chcheng1218', '2015-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS666485480580', '斎藤百花', 0, '+1 213-031-5606', 4, '851361521772109314', '726 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1994-05-22', 0, 0, 'momokasait', '2016-12-25', 'saitomomok', '2017-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS248066291942', 'Alice Ruiz', 1, '+1 330-950-7628', 2, '783205591515206323', '60 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1995-03-20', 0, 0, 'ruizalice', '2001-06-26', 'alicruiz1214', '2018-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS338529536798', '村田瑛太', 0, '+1 213-009-4744', 0, '256771144835568564', '113 Alameda Street Apartment 17, Los Angeles, CA 90002, United States', '1995-10-15', 0, 0, 'emurata98', '2018-01-27', 'meita', '2009-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS763450808167', '郭頴璇', 1, '+86 198-9878-1319', 1, '332313976933636171', '中国成都市成华区玉双路6号606号40号楼', '1990-07-19', 0, 0, 'wingkwok', '2008-03-29', 'kws', '2017-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS643004540310', '薛淑怡', 1, '+44 (121) 258 6023', 2, '521936519305394696', 'Unit 34, Oxford Eco Centre, 170 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1990-11-22', 0, 0, 'sysi', '2013-01-17', 'sysi', '2013-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS790334758030', '曾晓明', 1, '+86 10-824-4267', 2, '692698495192407951', '中国北京市東城区東直門內大街156号48楼', '1987-05-18', 0, 0, 'zenxiaoming', '2012-07-28', 'zenxiaoming', '2003-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS622386891898', '王云熙', 1, '+1 213-673-5052', 1, '855726740159006720', '929 Sky Way Apt 18, Los Angeles, CA 90043, United States', '1998-02-15', 0, 0, 'wanyunxi', '2014-10-12', 'yunxi7', '2000-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS309471735717', '向詩君', 0, '+81 80-8729-0132', 1, '668586034622817405', 'Rm. 44, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1998-02-18', 0, 0, 'szekwan96', '2008-09-15', 'heungsk1', '2012-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS885647145532', '石川結翔', 0, '+86 153-8627-5587', 2, '050782808855831254', '中国东莞珊瑚路755号华润大厦47室', '1995-04-27', 0, 0, 'yuiishikawa', '2001-09-11', 'yuiishikawa828', '2020-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS000690261493', '史安琪', 1, '+44 5774 640481', 2, '921423242826391013', 'Unit 24, Oxford Eco Centre, 979 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1989-05-04', 0, 0, 'sha', '2004-01-26', 'shianqi713', '2015-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS870093199860', 'Juan Romero', 1, '+81 90-6127-1255', 3, '808118914013771818', '日本東京港区東新橋一丁目5番16号44階', '1988-05-29', 0, 0, 'romero96', '2021-01-11', 'romju10', '2018-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS896313301542', '池田海斗', 0, '+44 7588 909897', 4, '449604837266238553', 'Flat 1, 568 Maddox Street, London, W1S 1PU, United Kingdom', '1992-03-02', 0, 0, 'ikeka1', '2017-03-14', 'kaitoike727', '2004-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS271699829837', '顧頴思', 0, '+81 66-864-2418', 0, '633856951299902427', '12F, 3-27-15 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1986-12-24', 0, 0, 'wingszek', '2006-05-14', 'wsku44', '2008-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS269047383395', '汤晓明', 1, '+86 189-7424-9888', 2, '780415571746305907', '中国成都市成华区双庆路866号华润大厦17室', '1993-02-03', 0, 0, 'xitan1027', '2009-09-10', 'tangxiaoming528', '2011-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS112760540456', '内田絢斗', 1, '+1 330-378-0512', 4, '696182999840102208', '800 Ridgewood Road Apartment 36, Akron, OH 44321, United States', '1990-03-22', 0, 0, 'ayatouc8', '2020-01-21', 'ayato6', '2003-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS777669183773', '徐榮發', 1, '+86 769-973-1697', 2, '710368530672347424', '中国东莞珊瑚路498号华润大厦29室', '1986-10-16', 0, 0, 'wingfattsu', '2005-10-08', 'tswf', '2005-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS761260105553', '莫惠敏', 0, '+86 28-7696-2252', 3, '270865655786209545', '中国成都市成华区二仙桥东三路951号华润大厦50室', '1993-03-10', 0, 0, 'mokwaiman', '2003-05-22', 'wmmok', '2011-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS291991794150', '卢云熙', 1, '+81 11-449-2926', 2, '908537304798154609', '日本札幌白石区菊水三条五丁目2番13号49階', '1990-05-10', 0, 0, 'yunxilu2', '2021-04-23', 'ylu', '2012-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS328668256601', 'Victoria Griffin', 0, '+1 213-705-4863', 3, '737529555744503478', '528 Alameda Street Suite 41, Los Angeles, CA 90002, United States', '1997-07-15', 0, 0, 'victogriffin3', '2021-03-03', 'victoriagrif4', '2009-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS417459539138', '汤云熙', 0, '+44 7505 862469', 4, '822774966954905037', 'Flat 10, 237 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1993-11-03', 0, 0, 'yunxi20', '2006-08-08', 'tangy', '2014-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS269377095151', '有村瑛太', 1, '+1 614-974-7508', 3, '720291534470326631', '252 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1991-07-07', 0, 0, 'eitaar', '2004-02-09', 'eita20', '2006-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS412179446512', '向家玲', 1, '+1 212-872-6531', 1, '709689894082942125', '543 Fifth Avenue Suite 45, New York, NY 10017, United States', '1991-02-22', 0, 0, 'kalingheung10', '2006-07-11', 'hkl', '2003-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS023935753171', 'Carmen Barnes', 0, '+81 52-549-5953', 2, '432931890012264085', '8-kai, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-02-20', 0, 0, 'carmenbar', '2018-05-06', 'carmbarnes1', '2003-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS016870904397', 'Carl Jimenez', 0, '+44 (1865) 02 1090', 3, '748106875880017749', 'No.37 Main building, 864 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1997-01-20', 0, 0, 'carjimenez', '2016-10-03', 'cjimenez', '2015-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS272857277373', '餘志明', 0, '+81 11-670-0906', 2, '305133376506124594', 'Rm. 39, 6-1-14, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-07-13', 0, 0, 'yuchimi1219', '2011-08-13', 'chimingy', '2021-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS667928901034', '田梓軒', 0, '+1 312-003-5203', 3, '432557617342074626', '994 Pedway Apt 4, Chicago, IL 60601, United States', '1998-09-21', 0, 0, 'tin1955', '2014-06-10', 'tith4', '2017-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS795543842955', 'Lisa Hicks', 0, '+86 760-373-9249', 3, '416646113425147394', '中国中山京华商圈华夏街657号华润大厦3室', '1986-04-10', 0, 0, 'hicks1214', '2014-08-03', 'lhi', '2020-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS879455647344', '雷家玲', 1, '+1 718-570-7106', 1, '806343915617498102', '858 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1996-11-21', 0, 0, 'kaling828', '2003-09-07', 'loka627', '2020-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS688097575327', '駱國賢', 0, '+86 192-4324-3151', 2, '169521267799158332', '中国北京市房山区岳琉路226号10室', '1990-05-17', 0, 0, 'lky', '2014-08-08', 'lokky10', '2020-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS110443597744', 'Norma Myers', 1, '+81 90-6876-9436', 1, '040464803900317771', '34-kai, 13-3-6 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1997-05-27', 0, 0, 'myernorm', '2019-04-18', 'normamyers', '2002-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS857902517904', '石川蓮', 0, '+86 21-467-7884', 1, '136714140821558270', 'No.4 building, 682 Middle Huaihai Road, Huangpu District, Shanghai, China', '1995-03-26', 0, 0, 'ishikr', '2008-01-17', 'iren', '2002-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS479227162267', '田中優奈', 0, '+81 70-7772-2813', 0, '937053969141736471', '日本札幌白石区菊水三条五丁目4番15号48階', '1989-04-09', 0, 0, 'tanakayuna', '2005-04-27', 'yuna54', '2000-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS607308652422', '應志明', 1, '+44 (151) 628 5146', 2, '556026756179645328', 'Block 19, 304 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1988-11-13', 0, 0, 'ychiming49', '2016-01-01', 'ycm4', '2003-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS872919412497', 'Sylvia Parker', 1, '+81 74-922-0116', 2, '025822874898156109', '日本ならし学園南三丁目9番12号26階', '1988-01-09', 0, 0, 'sparker52', '2013-07-18', 'sylvp', '2007-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS529364305468', '彭詩涵', 0, '+81 52-599-5815', 4, '426639231146562752', '日本なごやし瑞穂区河岸町四丁目20番13号15号室', '1995-05-15', 0, 0, 'shihanpen', '2011-11-24', 'spen', '2020-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS629432377496', 'Andrea Long', 0, '+86 130-2001-7228', 1, '963663978078869365', '10F, 371 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1989-06-03', 0, 0, 'andrealong', '2018-05-26', 'andreal', '2020-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS267205227730', '廖宇宁', 0, '+1 212-554-8047', 3, '323695032460242912', '377 Canal Street 3rd Floor, New York, NY 10013, United States', '1995-05-29', 0, 0, 'yunl', '2007-08-24', 'yuningl428', '2018-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS677700086689', '容仲賢', 1, '+1 312-644-6786', 3, '688165245557236270', '482 Pedway Apt 22, Chicago, IL 60601, United States', '1989-05-16', 0, 0, 'yungchungyin', '2014-09-20', 'chungyinyung907', '2018-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS354667530840', 'Louis Grant', 1, '+44 5513 844360', 4, '656481964190517348', 'Flat 44, 735 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1987-06-19', 0, 0, 'glouis614', '2005-07-14', 'louisgrant', '2020-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS245711734610', '菅原蓮', 0, '+86 20-349-6989', 0, '663121149082167356', 'No.19 building, 40 Tianhe Road, Tianhe District, Guangzhou, China', '1986-09-15', 0, 0, 'sugawara8', '2001-01-26', 'sren', '2021-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS137503831617', '廖杰宏', 0, '+81 90-6137-1789', 0, '409101575796913743', '日本ならし学園南三丁目9番11号41階', '1993-08-16', 0, 0, 'liao3', '2010-07-17', 'ljie', '2012-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS533852615711', '麥青雲', 1, '+81 80-5462-5423', 3, '918358859099111586', '24-kai, 1-7-5 Saidaiji Akodacho, Nara, Japan', '1996-02-15', 0, 0, 'cwm', '2017-07-03', 'chingwan00', '2012-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS257752272951', 'Charlotte Brown', 1, '+86 177-3139-8252', 2, '696657261219106531', 'Room 34, 276 Hongqiao Rd., Xu Hui District, Shanghai, China', '1996-03-17', 0, 0, 'browncharlotte', '2015-11-27', 'bcharlotte', '2011-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS226516433860', '石井樹', 1, '+44 (151) 889 9408', 2, '690230426522227825', 'Unit 13, Oxford Eco Centre, 349 Redfern St, Liverpool, L20 8JB, United Kingdom', '1986-01-04', 0, 0, 'itsuki213', '2019-09-21', 'iishii', '2016-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS778002618662', '竹内健太', 1, '+86 20-625-0677', 1, '044841455785257345', '中国广州市天河区天河路511号41号楼', '1986-04-07', 0, 0, 'kentake', '2020-12-18', 'tkenta128', '2019-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS436086943369', '曾璐', 1, '+81 80-7684-8271', 2, '176884406213431026', '13F, 1-5-6, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1992-05-11', 0, 0, 'zeng5', '2003-04-06', 'zenlu', '2013-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS079693135560', '余安琪', 0, '+44 (1865) 85 3598', 3, '078213388995195874', 'Block 11, 967 Park End St, Oxford, OX1 1JD, United Kingdom', '1987-07-06', 0, 0, 'anqyu', '2017-12-04', 'anqi9', '2012-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS430149102619', '江志明', 0, '+1 212-654-7363', 1, '606259844752821738', '411 West Houston Street Suite 27, New York, NY 10014, United States', '1991-12-19', 0, 0, 'chimingkong', '2010-07-26', 'cmk', '2008-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS976327271119', '長谷川大輔', 0, '+86 760-1671-1388', 2, '296019239699368945', 'No.13 building, 98 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1985-06-08', 0, 0, 'hasegawadaisuke', '2012-09-28', 'dahase', '2019-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS567172971281', 'Edward Grant', 1, '+81 90-8699-4628', 4, '470352336848132484', 'Rm. 33, 1 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1995-08-30', 0, 0, 'edward309', '2019-03-05', 'grantedward3', '2004-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS428851491499', '曾曉彤', 1, '+86 28-528-4920', 2, '333824210926447639', '中国成都市锦江区红星路三段657号华润大厦46室', '1998-04-04', 0, 0, 'tsanght1989', '2001-06-05', 'hiutungtsang', '2013-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS535739195618', '梁富城', 1, '+81 3-0023-0561', 4, '640054523900674091', '12-kai, 1-5-18, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1996-03-31', 0, 0, 'fushingleu1105', '2014-10-30', 'fushingleung', '2008-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS553908872323', '朱岚', 1, '+81 52-962-6054', 2, '247269055336021886', '44-kai, 2-5-11 Chitose, Atsuta Ward, Nagoya, Japan', '1991-07-12', 0, 0, 'zhlan', '2001-08-06', 'zhulan', '2016-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS609969254610', '尹岚', 0, '+86 10-100-1637', 3, '991075664497595557', 'Room 47, CR Building, 540 FuXingMenNei Street, XiCheng District, Beijing, China', '1998-05-19', 0, 0, 'lyin', '2004-11-27', 'lan520', '2004-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS968126477755', 'Jack Warren', 1, '+86 152-7785-3300', 4, '872715682183922607', 'No.6 building, 62 Binchuan Rd, Minhang District, Shanghai, China', '1990-11-28', 0, 0, 'warren9', '2020-09-27', 'warrenjack', '2014-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS462117680930', '阎杰宏', 1, '+81 3-2651-6235', 0, '780347842602288636', 'Rm. 44, 1-5-3, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-03-20', 0, 0, 'yan2', '2007-12-13', 'jy207', '2005-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS281114780991', '許梓晴', 0, '+44 7916 701285', 0, '994593919485129754', 'Block 38, 524 Park End St, Oxford, OX1 1JD, United Kingdom', '1993-07-21', 0, 0, 'tshui', '2016-10-31', 'hui429', '2002-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS944260528724', '藤井玲奈', 0, '+44 7043 184779', 2, '119799617323562205', 'No.29 Main building, 304 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1993-01-10', 0, 0, 'renafujii', '2013-03-16', 'fujiir', '2006-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS613797503420', '官詠詩', 0, '+86 161-6831-6050', 3, '535963035767779746', 'No.13 building, 362 Huanqu South Street 2nd Alley, Dongguan, China', '1989-10-20', 0, 0, 'koowingsze', '2017-04-02', 'wingszek', '2005-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS162765600274', '吕秀英', 1, '+1 312-959-8815', 1, '715545312662241612', '919 North Michigan Ave Suite 39, Chicago, IL 60611, United States', '1996-04-03', 0, 0, 'xiuyinglu825', '2018-11-13', 'lxiuying906', '2019-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS497935506298', '金子七海', 0, '+86 145-5454-4887', 2, '248092744215740980', '中国深圳罗湖区田贝一路832号45楼', '1991-04-03', 0, 0, 'kaneko330', '2017-06-27', 'nanami314', '2001-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS928255301993', 'Mark Hughes', 1, '+86 20-2104-6190', 1, '025893030427281128', 'No.45 building, 139 Jiangnan West Road, Haizhu District, Guangzhou, China', '1990-07-24', 0, 0, 'hm1', '2002-07-15', 'hughes1101', '2021-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS309956730020', '上野七海', 1, '+86 28-155-6509', 2, '020108017869654656', 'Room 42, No. 534, Shuangqing Rd, Chenghua District, Chengdu, China', '1996-07-04', 0, 0, 'uenonanami', '2014-09-04', 'nueno', '2015-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS454686537694', '崔志明', 1, '+44 (1223) 40 4280', 2, '958635970563729715', 'Unit 3, Oxford Eco Centre, 799 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1988-05-18', 0, 0, 'choicm', '2021-09-26', 'choicm', '2014-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS576187008196', '伍國榮', 1, '+44 (20) 8921 7921', 3, '350317888208970063', 'No.11 Main building, 714 Maddox Street, London, W1S 1PU, United Kingdom', '1989-12-17', 0, 0, 'kwokwingn', '2002-02-06', 'kwng', '2000-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS137794661439', 'Heather Chen', 0, '+81 66-532-0146', 1, '961740886846167346', '日本おおさかし近江堂一丁目7番6号28階', '1995-12-04', 0, 0, 'hche', '2005-06-20', 'cheheather91', '2020-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS301165788746', '武田大地', 1, '+44 (1223) 58 4810', 4, '901097825764287713', 'Unit 9, Oxford Eco Centre, 629 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1992-10-29', 0, 0, 'takedada', '2005-06-26', 'daichit16', '2014-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS610214002400', '段震南', 0, '+81 80-3771-2455', 1, '677739293479767268', '9F, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1997-12-30', 0, 0, 'duan09', '2016-01-14', 'dzhennan', '2015-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS813857600696', 'Joan Owens', 0, '+1 312-362-5987', 2, '882348563755580161', '74 Pedway Suite 6, Chicago, IL 60601, United States', '1992-11-02', 0, 0, 'ojoan412', '2015-07-02', 'owens11', '2007-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS915986554708', '樂德華', 1, '+1 718-367-3828', 2, '043582440326621375', '378 Flatbush Ave Apt 33, Brooklyn, NY 11225, United States', '1995-07-07', 0, 0, 'twlok', '2019-03-26', 'ltakw04', '2019-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS553238352529', '藍玲玲', 0, '+86 760-8285-7846', 3, '437294228169101771', 'No.6 building, 656 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1993-07-23', 0, 0, 'lll', '2018-08-09', 'lall6', '2000-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS087849824004', 'Henry Roberts', 1, '+81 70-9421-3582', 1, '201291885655931094', '日本札幌厚別区上野幌一条二丁目1番17号36号室', '1990-01-27', 0, 0, 'henry9', '2001-02-24', 'henryroberts5', '2000-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS632682708406', 'Deborah Morgan', 1, '+81 80-2547-9295', 1, '901858441712671757', '日本ならし学園南三丁目9番10号47階', '1990-06-08', 0, 0, 'morgan9', '2003-01-08', 'deborahm', '2020-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS946794677068', '福田海斗', 0, '+1 838-938-5604', 2, '299355474212436685', '613 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1995-11-27', 0, 0, 'fukai8', '2013-09-21', 'fukudaka6', '2019-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS477856195011', '許頴璇', 0, '+81 3-8332-5067', 3, '343659940482214404', '26-kai, 5-2-14 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1988-06-10', 0, 0, 'wingsuen219', '2006-11-18', 'huiwing', '2000-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS022731865048', '贺震南', 0, '+81 90-7073-4386', 0, '003618000080591232', '日本おおさかし西成区出城一丁目1番20号43号室', '1993-09-09', 0, 0, 'zhenhe6', '2002-10-16', 'zhe87', '2009-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS299849562097', '傅嘉伦', 0, '+86 21-2238-0024', 1, '982131542950471046', '中国上海市闵行区宾川路82号26室', '1995-12-06', 0, 0, 'fu00', '2016-12-07', 'fuji', '2019-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS125728307846', 'Josephine Davis', 0, '+86 164-7180-5880', 3, '513906456582374600', 'Room 36, CR Building, 553 Huanqu South Street 2nd Alley, Dongguan, China', '1996-06-04', 0, 0, 'jd801', '2015-12-29', 'jodavis89', '2019-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS654702249405', '清水七海', 0, '+86 755-6743-1777', 0, '196638388102221079', '中国深圳罗湖区清水河一路165号25楼', '1990-11-16', 0, 0, 'nshimizu11', '2007-11-10', 'nanami6', '2005-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS126796008024', 'Randall Murray', 0, '+86 141-8358-3557', 0, '195224615560226921', '中国广州市白云区小坪东路122号华润大厦36室', '1990-05-07', 0, 0, 'randallmurr1112', '2002-06-09', 'randamurr1104', '2007-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS177041663218', '梅曉彤', 0, '+81 66-868-6595', 4, '802791452372990391', '46-kai, 4-9-11 Kamihigashi, Hirano Ward, Osaka, Japan', '1992-05-23', 0, 0, 'mht', '2008-01-21', 'hiutungmu', '2018-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS746020279270', '戴岚', 1, '+1 213-137-6206', 2, '787748825789357514', '582 Wall Street Apartment 27, Los Angeles, CA 90003, United States', '1985-07-22', 0, 0, 'lan1984', '2003-03-10', 'dail704', '2001-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS796399055389', '石井舞', 0, '+81 90-6346-8080', 4, '904257951651038367', '7F, 2 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-07-25', 0, 0, 'maiishii9', '2010-03-30', 'maiishii', '2007-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS216052331587', '戴嘉伦', 1, '+86 28-756-0930', 2, '646596024748187160', 'No.31 building, 855 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1992-03-17', 0, 0, 'jialdai1941', '2011-01-06', 'jdai', '2016-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS494591471811', '吳頴璇', 1, '+81 80-8238-9160', 2, '748688376590571963', '22F, 3-27-13 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1994-09-12', 0, 0, 'wingsuen2', '2013-01-22', 'wingsuenng2016', '2019-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS155357259765', 'Rita Evans', 0, '+81 70-8725-3489', 2, '718928941739111656', '日本なごやし北区楠味鋺三丁目80番15号39号室', '1996-12-05', 0, 0, 'rievans', '2001-05-12', 'ritaev329', '2005-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS723974951578', '呂祖兒', 1, '+44 (121) 411 7412', 3, '858856974709881646', 'Unit 22, Oxford Eco Centre, 991 New Street, Birmingham, B2 4DB, United Kingdom', '1994-08-08', 0, 0, 'choyeelui', '2007-05-09', 'cylui', '2008-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS509693896592', '安藤凛', 0, '+44 (116) 006 7718', 2, '769521685193749586', 'Block 21, 306 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1997-02-17', 0, 0, 'rinan5', '2012-04-14', 'anrin123', '2006-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS176971342846', 'Tracy Jenkins', 1, '+81 90-6214-6452', 3, '853131874405071269', 'Rm. 11, 13-3-11 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1993-09-05', 0, 0, 'trajenk', '2017-03-06', 'jentracy', '2004-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS139467379400', '曾子异', 1, '+1 330-716-4964', 3, '848677730461316676', '264 Riverview Road Apartment 49, Akron, OH 44313, United States', '1991-08-07', 0, 0, 'ziyizen', '2021-02-25', 'ziyizeng4', '2017-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS890359171178', '邱德華', 1, '+81 11-042-6763', 3, '254633939546181787', '45-kai, 5-2-6 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-03-09', 0, 0, 'takwah45', '2000-12-17', 'twyau', '2019-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS222239906787', '安藤蒼士', 1, '+86 10-6086-8761', 2, '857886651221209506', '中国北京市西城区西長安街780号18楼', '1992-12-07', 0, 0, 'aoshiando', '2013-01-05', 'anaoshi', '2002-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS730225503133', '武田玲奈', 1, '+81 74-122-5624', 3, '333134404457569950', '3-kai, 3-9-2 Gakuenminami, Nara, Japan', '1992-08-18', 0, 0, 'takedrena7', '2004-09-08', 'renatakeda10', '2017-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS117813738561', 'Francisco Hicks', 0, '+81 70-0870-3537', 0, '720612211538932469', '34-kai, 1-6-8, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1985-02-16', 0, 0, 'francisco4', '2016-02-01', 'fh69', '2019-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS604306269026', '房浩然', 1, '+1 330-181-8832', 1, '311081978214066819', '687 West Market Street Suite 36, Akron, OH 44333, United States', '1987-07-21', 0, 0, 'fonhoyin', '2019-11-21', 'fonghy', '2000-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS561552888521', '河野百恵', 0, '+86 755-730-4115', 1, '555324348901261424', '中国深圳龙岗区学园一巷538号31室', '1997-08-30', 0, 0, 'komomoe216', '2002-02-21', 'kono08', '2011-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS355825415930', '小山花', 0, '+86 10-2289-9555', 1, '623462941279063373', '中国北京市海淀区清河中街68号89号44号楼', '1986-09-27', 0, 0, 'koyamahana', '2009-08-12', 'koyama1214', '2009-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS407482384513', 'Marcus Henderson', 1, '+86 191-4273-2849', 0, '915212999257342372', '中国深圳罗湖区田贝一路165号17栋', '1993-09-24', 0, 0, 'henderson9', '2000-01-24', 'marcus69', '2020-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS722780688116', '餘慧儀', 0, '+81 52-368-0716', 4, '024070080756753264', '23F, 14 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-12-05', 0, 0, 'yuewaiyee3', '2006-07-31', 'waiyeeyu', '2018-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS470105538695', '樊惠敏', 0, '+86 159-8708-6252', 3, '538801729836955649', '中国成都市成华区双庆路409号华润大厦28室', '1988-05-20', 0, 0, 'fan2', '2000-03-14', 'waiman1948', '2008-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS186611139465', '江秀英', 1, '+86 760-931-9367', 0, '968606308999635997', '中国中山紫马岭商圈中山五路744号38栋', '1991-09-06', 0, 0, 'jx1963', '2019-07-01', 'xjiang5', '2019-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS812719142361', '方惠敏', 0, '+81 11-411-7629', 2, '842790097847625122', '24F, 2-1-12 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1987-06-05', 0, 0, 'wmfong', '2004-10-09', 'fong87', '2009-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS154847140905', 'Louis Hicks', 1, '+81 70-5400-4582', 0, '465972358364627711', '日本東京中央区銀座三丁目12番11号22階', '1992-07-03', 0, 0, 'hiclouis', '2000-04-16', 'hickslouis', '2011-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS175149587223', '野村桜', 0, '+81 52-975-5305', 4, '321013143331679658', '日本なごやし瑞穂区河岸町四丁目20番1号19階', '1998-05-18', 0, 0, 'snom5', '2003-04-23', 'sakurnomura', '2014-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS139625314728', 'Carolyn Shaw', 1, '+86 137-2734-8734', 1, '006099379750489458', '中国深圳罗湖区蔡屋围深南东路219号23栋', '1987-05-31', 0, 0, 'shaw3', '2003-02-01', 'shaw9', '2014-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS895311028555', '新井愛梨', 0, '+81 80-5874-3723', 1, '753581129645239762', '1-kai, 1-1-16 Deshiro, Nishinari Ward, Osaka, Japan', '1996-07-25', 0, 0, 'airiarai921', '2021-04-30', 'airiarai19', '2000-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS857357915453', '湯慧珊', 0, '+86 769-9514-1553', 0, '861853636411308047', '中国东莞东泰五街107号49号楼', '1990-04-09', 0, 0, 'waisant', '2020-11-13', 'tong209', '2017-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS006445560647', 'Hazel Mitchell', 0, '+86 760-7215-3216', 1, '824573276942681481', '中国中山乐丰六路130号13楼', '1997-08-10', 0, 0, 'mitchellhazel709', '2007-12-25', 'ham47', '2012-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS877988947756', 'Jerry Hamilton', 1, '+81 3-9677-8057', 3, '654759672735588964', '1F, 1-5-5, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-04-25', 0, 0, 'hamiltonjerry', '2000-01-12', 'jerry5', '2000-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS468549144227', '贾宇宁', 1, '+81 80-3794-4143', 1, '335703132754343679', '43F, 3-15-1 Ginza, Chuo-ku, Tokyo, Japan', '1991-11-07', 0, 0, 'jiyuning1221', '2007-05-09', 'yuning7', '2000-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS351297743976', '陳潤發', 0, '+81 70-0687-5794', 1, '992373842218868464', '日本おおさかし東住吉区東田辺三丁目27番6号29階', '1994-11-16', 0, 0, 'yunfat53', '2010-07-27', 'yfchan58', '2015-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS600370254322', '餘明', 0, '+44 (1865) 14 6019', 3, '603723181598307956', 'Unit 11, Oxford Eco Centre, 524 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1986-10-09', 0, 0, 'miyue', '2020-02-16', 'mingyue', '2003-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS392250140683', '赵睿', 1, '+86 198-9314-8575', 0, '258693365210661238', 'Room 47, 986 Ganlan Rd, Pudong, Shanghai, China', '1996-06-14', 0, 0, 'ruiz', '2003-10-04', 'ruzhao', '2000-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS671699050333', '羅國榮', 1, '+44 5085 989561', 0, '837400274782390289', 'Block 16, 592 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1995-01-21', 0, 0, 'kwl', '2019-12-11', 'kwokwinglo6', '2016-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS002910558928', 'Marvin Vargas', 1, '+44 5076 776726', 1, '163619852519108029', 'Unit 38, Oxford Eco Centre, 420 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1987-06-15', 0, 0, 'marvinvarga7', '2016-11-28', 'vargas202', '2001-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS096136142987', 'Amber Black', 1, '+81 70-7532-4686', 3, '477021086462924336', '12F, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1991-07-21', 0, 0, 'blaamb', '2000-11-16', 'blamber1123', '2008-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS184207139817', '叶震南', 0, '+81 90-4608-9988', 2, '300156192019264922', '日本札幌白石区菊水三条五丁目2番12号3階', '1986-09-12', 0, 0, 'zhye', '2020-07-06', 'yezhe618', '2017-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS243867631895', '野口一輝', 1, '+1 213-715-2470', 3, '844154035117652747', '306 Sky Way Suite 7, Los Angeles, CA 90043, United States', '1990-04-14', 0, 0, 'ikkin74', '2021-07-29', 'noguchi07', '2003-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS346331483802', '森田美咲', 1, '+44 (161) 124 7251', 0, '385506294571377562', 'Unit 29, Oxford Eco Centre, 656 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-05-11', 0, 0, 'moritami', '2020-02-22', 'misaki69', '2014-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS875419934893', '邵力申', 1, '+86 10-4780-0397', 3, '355029922773167902', 'No.28 building, 605 Dong Zhi Men, Dongcheng District, Beijing, China', '1992-03-06', 0, 0, 'liksun2', '2009-08-03', 'sliksun', '2000-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS955419575452', '松田拓哉', 1, '+81 11-485-2293', 0, '977623278255441471', '日本札幌白石区菊水三条五丁目4番10号44階', '1995-11-29', 0, 0, 'matsutakuya2003', '2006-02-17', 'tma', '2020-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS847135740092', '前田美咲', 1, '+1 330-838-3340', 0, '677323999470908705', '46 Collier Road Apartment 48, Akron, OH 44320, United States', '1999-02-06', 0, 0, 'misamaeda2', '2008-05-29', 'maedam5', '2020-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS793989419790', 'Justin Spencer', 0, '+81 90-3651-3218', 3, '727372360424467630', '30-kai, 5-2-12 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1988-08-18', 0, 0, 'justinsp', '2021-06-11', 'spenj', '2008-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS326837250116', 'Amanda Hamilton', 0, '+81 66-033-5922', 1, '928917031479805477', '5-kai, 1-1-4 Deshiro, Nishinari Ward, Osaka, Japan', '1993-01-10', 0, 0, 'ha10', '2019-01-22', 'amanda322', '2009-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS989868700712', '贺宇宁', 0, '+81 11-468-4175', 1, '945940582822020579', 'Rm. 42, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1997-05-21', 0, 0, 'heyuni', '2019-10-07', 'heyunin825', '2014-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS250563277286', '長谷川樹', 1, '+81 52-338-9025', 2, '831515664173690570', 'Rm. 17, 11 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1992-02-18', 0, 0, 'hasegawa408', '2012-07-22', 'hasegawaitsu5', '2006-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS840469075446', '彭德華', 0, '+81 70-5973-1630', 1, '310045891698838322', '日本札幌白石区菊水三条五丁目2番14号19号室', '1985-02-20', 0, 0, 'twpang82', '2013-06-21', 'ptw', '2017-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS567086945337', '中野陽菜', 0, '+81 80-6020-0705', 4, '663113639492415744', '日本ならし学園南三丁目9番13号31号室', '1992-05-19', 0, 0, 'nakahina', '2002-01-06', 'nakanhina', '2016-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS617997494232', '孙致远', 0, '+44 (151) 774 0873', 3, '124840350704425044', 'Unit 3, Oxford Eco Centre, 75 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-03-19', 0, 0, 'zhiyuansun', '2020-03-05', 'szhiy203', '2006-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS528365008414', '朱璐', 0, '+81 70-7543-1946', 2, '200949603247949072', '日本なごやし北区楠味鋺三丁目80番8号41号室', '1995-12-21', 0, 0, 'luzhu6', '2004-10-11', 'luz5', '2002-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS295821900836', '郭嘉伦', 0, '+44 (121) 227 2737', 1, '677801606290198863', 'Block 37, 193 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1987-05-05', 0, 0, 'jialung', '2009-04-16', 'jialg', '2006-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS524896396894', '范安琪', 1, '+86 134-7199-0956', 1, '033264884010989046', '中国上海市浦东新区健祥路456号25栋', '1988-12-20', 0, 0, 'fananqi', '2016-03-20', 'anqif90', '2010-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS289306875735', 'Fred Jackson', 0, '+86 177-6602-6880', 3, '067952491080268954', 'No.26 building, 106 Ganlan Rd, Pudong, Shanghai, China', '1992-06-03', 0, 0, 'jackfred4', '2001-03-14', 'fredjackson', '2021-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS976088752391', '麥明', 0, '+44 (1223) 54 7511', 1, '319750895549456232', 'Block 2, 915 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1993-09-23', 0, 0, 'makm718', '2014-05-09', 'maming', '2016-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS726235965508', '馬浩然', 0, '+1 838-443-1783', 0, '757938483448274189', '195 Central Avenue Apt 35, Albany, NY 12205, United States', '1987-12-21', 0, 0, 'hoyin6', '2016-06-05', 'hyma5', '2005-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS582975784011', 'Justin James', 1, '+86 159-9908-4602', 3, '383244167048074063', '中国东莞东泰五街336号26栋', '1986-08-31', 0, 0, 'justinj', '2006-03-09', 'jamesjustin', '2011-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS910373906493', '田震南', 0, '+1 213-953-9898', 1, '988360493833471669', '71 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1986-01-12', 0, 0, 'tianz', '2021-06-04', 'tian112', '2010-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS813221282650', '曹詠詩', 0, '+1 213-337-6788', 1, '138477164205461563', '395 Figueroa Street Apt 18, Los Angeles, CA 90037, United States', '1994-11-28', 0, 0, 'chwingsze', '2004-06-18', 'cwingsze', '2015-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS664675301510', '呂俊宇', 0, '+44 7937 636325', 3, '490731524998138876', 'No.22 Main building, 800 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1995-09-13', 0, 0, 'lui204', '2006-06-27', 'lui7', '2014-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS525639154460', '山下健太', 1, '+1 212-160-5033', 3, '388982687875114288', '896 Wooster Street 3rd Floor, New York, NY 10012, United States', '1995-12-23', 0, 0, 'yamashitak', '2011-11-05', 'keyam', '2005-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS586406107636', '楊安娜', 1, '+1 213-048-5676', 2, '614431117631785858', '995 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1991-10-10', 0, 0, 'yeung2014', '2005-07-22', 'onyeun', '2018-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS134967750672', '鄺心穎', 0, '+81 80-4978-4724', 0, '302428292239434868', '日本東京中央区銀座三丁目12番7号34号室', '1997-10-29', 0, 0, 'sumwing213', '2014-11-17', 'sumwingkw44', '2002-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS765845489619', '大塚結翔', 1, '+1 213-787-0955', 0, '627616902704383385', '278 Wall Street Apt 48, Los Angeles, CA 90003, United States', '1985-06-11', 0, 0, 'otyuito45', '2008-01-22', 'yuio', '2010-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS331869103667', '呂家玲', 1, '+81 66-300-7397', 0, '954049694381876397', '日本おおさかし近江堂一丁目7番3号9階', '1985-05-24', 0, 0, 'luika6', '2014-01-25', 'kaling9', '2002-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS791150271132', '蔡祖兒', 1, '+81 90-1229-9268', 2, '304182601395157140', '43F, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1987-10-17', 0, 0, 'choyeechoi80', '2021-09-16', 'choyeechoi10', '2001-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS059620743902', '胡國賢', 0, '+81 3-4154-1348', 2, '724421839014404082', '30F, 3-15-7 Ginza, Chuo-ku, Tokyo, Japan', '1992-03-13', 0, 0, 'wukwokyin329', '2013-06-30', 'kywu', '2008-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS879229711518', '藤發', 1, '+86 769-9414-7299', 1, '283141716369727735', 'No.7 building, 285 Dongtai 5th St, Dongguan, China', '1990-08-22', 0, 0, 'fatt', '2022-03-03', 'tang1225', '2014-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS723830654290', '關惠敏', 1, '+86 769-074-6656', 1, '595961467745769458', 'No.9 building, 746 Kengmei 15th Alley, Dongguan, China', '1985-09-11', 0, 0, 'kwan313', '2013-03-09', 'kwm', '2007-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS191967172397', '顧小慧', 0, '+86 156-3020-9108', 4, '756992353392030604', '中国中山乐丰六路314号40栋', '1996-12-01', 0, 0, 'siuwai809', '2005-12-11', 'ksiuwai', '2009-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS302305677885', 'Joshua Chavez', 0, '+44 7234 214305', 0, '435851251148573998', 'Unit 23, Oxford Eco Centre, 690 Mosley St, Manchester, M2 3AQ, United Kingdom', '1996-04-11', 0, 0, 'chavezjoshua', '2017-12-01', 'chjoshu', '2011-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS094070147834', 'Scott Hawkins', 0, '+44 (20) 5092 5771', 2, '868477132651667059', 'No.35 Main building, 464 Maddox Street, London, W1S 1PU, United Kingdom', '1990-07-09', 0, 0, 'hawkinssco', '2005-04-28', 'hawkscot', '2016-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS924069058475', '高田美羽', 1, '+44 (121) 598 6371', 3, '666875175976965243', 'Block 21, 426 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1995-01-23', 0, 0, 'takamiu', '2014-04-22', 'takadamiu', '2018-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS240368941424', 'Christopher Williams', 1, '+44 (121) 076 5303', 3, '405226387283462925', 'Block 35, 939 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1992-01-08', 0, 0, 'christopherwill', '2017-04-05', 'willchristopher', '2001-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS865709005599', '潘詩涵', 0, '+81 70-8679-5679', 1, '705449811390571591', '日本札幌清田区真栄四条五丁目19番4号26階', '1995-08-31', 0, 0, 'shihan214', '2010-09-12', 'pan69', '2007-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS666045218313', 'Julie Clark', 0, '+81 3-5476-7862', 1, '740432235073736101', '22-kai, 5-2-17 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1992-04-27', 0, 0, 'juclark86', '2016-05-30', 'juclar1217', '2017-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS553065441856', '史秀英', 0, '+44 7294 984003', 3, '310570582144085144', 'No.4 Main building, 995 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1988-07-19', 0, 0, 'shix', '2004-09-08', 'xiuyshi10', '2009-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS096589243962', 'Amanda Kennedy', 0, '+44 7095 696448', 2, '401445567692453255', 'No.20 Main building, 805 Maddox Street, London, W1S 1PU, United Kingdom', '1994-03-17', 0, 0, 'kennamanda', '2011-03-02', 'amandaken', '2014-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS014411968798', '大塚海斗', 1, '+86 137-5145-4501', 1, '625493836526953970', 'No.23 building, 862 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1999-02-06', 0, 0, 'kaitootsu8', '2009-03-20', 'kotsuka402', '2018-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS712473002117', 'Jacqueline Miller', 0, '+1 838-288-1072', 1, '583109042360777380', '260 Broadway Suite 11, Albany, NY 12207, United States', '1990-12-08', 0, 0, 'mjacqueline515', '2002-03-19', 'jm2015', '2021-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS111057956253', '古志明', 1, '+1 330-174-5319', 3, '367171240289626913', '178 Ridgewood Road Suite 32, Akron, OH 44321, United States', '1994-07-17', 0, 0, 'cmku', '2008-04-20', 'ku6', '2006-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS720625014784', 'Debbie Russell', 1, '+44 7046 445478', 1, '400416784174575508', 'Unit 25, Oxford Eco Centre, 775 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1988-10-09', 0, 0, 'rud', '2012-11-17', 'debbier', '2011-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS426761174132', '佐藤美羽', 0, '+86 150-5907-7602', 1, '566774282789062085', 'No.50 building, 384 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1995-12-15', 0, 0, 'satomiu', '2002-03-28', 'miusa127', '2021-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS951036201455', '叶睿', 0, '+1 718-668-4339', 0, '847731692304792183', '382 Flatbush Ave Apartment 36, Brooklyn, NY 11225, United States', '1998-04-28', 0, 0, 'yrui6', '2002-12-28', 'yrui2001', '2018-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS426761838342', '朱璐', 1, '+44 (151) 341 3059', 0, '382856163700687260', 'No.42 Main building, 248 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1989-05-18', 0, 0, 'zhulu', '2001-01-23', 'lu121', '2011-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS571424830233', '高木海斗', 1, '+44 (1223) 35 2236', 3, '589317441614294238', 'Block 10, 653 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1998-06-04', 0, 0, 'kaito1945', '2009-02-13', 'kaitot', '2009-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS056294282800', '内田花', 1, '+44 5714 858825', 2, '440144668004538748', 'Unit 40, Oxford Eco Centre, 462 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1988-05-25', 0, 0, 'hauchida', '2006-03-16', 'uchida4', '2016-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS925539671963', '村田桜', 1, '+86 184-6999-1417', 0, '418617916604624656', '中国中山京华商圈华夏街768号华润大厦5室', '1990-11-12', 0, 0, 'sakuram1968', '2000-08-13', 'mursaku', '2021-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS998456559604', '李致远', 1, '+1 718-300-8614', 1, '559604624052927650', '621 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1996-10-28', 0, 0, 'lizhiyuan7', '2008-04-19', 'lzh', '2001-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS225280649039', '伊藤拓哉', 1, '+81 3-0161-4540', 3, '483335899949903412', '日本東京品川区東五反田五丁目2番12号41号室', '1995-09-27', 0, 0, 'takuyit', '2006-11-10', 'itot', '2018-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS816395186445', '木下美咲', 1, '+81 70-5594-6316', 3, '785819750723136902', '45-kai, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1988-05-22', 0, 0, 'misakikin9', '2000-12-18', 'misakkinoshita5', '2006-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS815455762213', '陳嘉欣', 1, '+86 28-8023-4102', 0, '296674511495196350', 'Room 29, 943 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1992-09-05', 0, 0, 'ckaryan', '2001-01-05', 'karyanchan', '2016-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS615094687632', '阎云熙', 0, '+1 718-337-8270', 3, '392966019951562520', '1 Columbia St Apartment 9, Brooklyn, NY 11231, United States', '1985-12-07', 0, 0, 'yay627', '2021-05-29', 'yyun1970', '2014-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS977628447448', '田中舞', 1, '+81 70-7242-3216', 0, '932777930456859974', '日本なごやし北区清水三丁目19番11号7階', '1996-12-30', 0, 0, 'matanaka', '2004-05-04', 'tanakama', '2002-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS611328410509', '邓致远', 1, '+81 80-3517-4898', 3, '755465927373393588', 'Rm. 49, 2-1-16 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1995-10-24', 0, 0, 'zhiyuanden219', '2002-02-08', 'zdeng', '2000-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS850654962986', '村上美羽', 0, '+81 52-612-9954', 3, '988873100538249574', '日本なごやし守山区瀬古東二丁目171番13号25階', '1993-02-17', 0, 0, 'miumura401', '2008-12-20', 'miu520', '2004-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS348869516990', 'Todd Moreno', 1, '+81 52-301-5668', 2, '370512092653518600', '日本なごやし北区清水三丁目19番17号16号室', '1990-03-18', 0, 0, 'mtodd56', '2007-01-19', 'toddm1', '2020-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS941357257883', '谭晓明', 0, '+81 80-0142-6237', 2, '954886352539630849', 'Rm. 8, 4-9-13 Kamihigashi, Hirano Ward, Osaka, Japan', '1994-01-22', 0, 0, 'tanxiaoming', '2015-03-24', 'xiaomingt67', '2016-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS301982458650', '萬浩然', 1, '+44 5231 752491', 2, '538690075487573565', 'Unit 33, Oxford Eco Centre, 177 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1986-07-10', 0, 0, 'hym', '2015-08-15', 'mhoyin1', '2020-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS853445831385', '野口拓哉', 1, '+1 212-931-8590', 4, '985523983992704909', '490 Canal Street Apt 28, New York, NY 10013, United States', '1985-10-28', 0, 0, 'taknoguchi', '2007-01-03', 'nt705', '2014-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS872940812656', '遠藤七海', 0, '+81 11-297-3164', 2, '286356616716779865', '日本札幌白石区菊水三条五丁目4番13号38階', '1990-11-02', 0, 0, 'enanam', '2021-06-02', 'nanamiendo51', '2018-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS273282714163', 'Robert Soto', 1, '+44 5917 570850', 0, '994886929690273112', 'Unit 16, Oxford Eco Centre, 579 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1997-07-31', 0, 0, 'sotor', '2011-05-08', 'soto8', '2018-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS571430920449', '成慧敏', 0, '+81 52-307-9357', 0, '647480818117394363', '14F, 3-19-12 Shimizu, Kita Ward, Nagoya, Japan', '1996-12-05', 0, 0, 'shingwm8', '2017-11-18', 'waimashing9', '2021-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS963527501500', '周頴璇', 1, '+44 5059 099215', 4, '619760875300191855', 'Flat 27, 708 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1987-09-21', 0, 0, 'wschow', '2007-08-10', 'chow6', '2014-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS134645974378', 'Walter Thomas', 1, '+86 148-3279-2888', 3, '406144284944646702', 'Room 1, CR Building, 764 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1999-02-26', 0, 0, 'thomawalter8', '2008-01-23', 'walt', '2000-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS475757596123', '朱家玲', 1, '+86 755-3449-4020', 2, '086392658852854870', 'Room 15, CR Building, 341 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1998-10-17', 0, 0, 'ckl1109', '2020-10-10', 'ckaling', '2021-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS131980986478', '野口光莉', 0, '+81 11-724-6457', 1, '098971093556525428', '日本札幌中央区宮の森四条六丁目1番6号16階', '1985-10-31', 0, 0, 'noghi5', '2006-09-08', 'hikarnoguchi521', '2000-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS622968279699', '小川蒼士', 0, '+81 90-5783-7371', 2, '643804819157949792', 'Rm. 16, 3-27-17 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1995-01-01', 0, 0, 'aoshi5', '2003-01-19', 'oaoshi', '2004-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS756416454798', '葉玲玲', 1, '+86 21-590-8230', 1, '395640365891617050', '中国上海市徐汇区虹桥路269号17室', '1989-04-02', 0, 0, 'yiplin60', '2008-04-14', 'llyi', '2020-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS967862506876', '石井拓哉', 0, '+81 80-0656-2198', 3, '259958089580474013', '日本札幌中央区宮の森四条六丁目1番12号47号室', '1990-11-29', 0, 0, 'takuya2', '2015-05-14', 'takuyishi517', '2005-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS887312931465', '林慧敏', 1, '+86 21-793-0282', 3, '369674892360491089', '中国上海市浦东新区橄榄路367号23楼', '1988-01-11', 0, 0, 'wmlam', '2019-07-25', 'waiman417', '2019-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS747228634305', 'Susan Perez', 0, '+86 755-6861-0633', 0, '774505372273574877', 'Room 44, CR Building, 221 Jingtian East 1st St, Futian District, Shenzhen, China', '1992-02-14', 0, 0, 'perezsusan', '2009-07-16', 'susanperez3', '2006-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS477975531500', '關朝偉', 0, '+86 148-0127-5005', 1, '783405336915369542', 'No.25 building, 759 Jiangnan West Road, Haizhu District, Guangzhou, China', '1991-11-02', 0, 0, 'cwkwan', '2008-12-20', 'cwk6', '2017-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS243338562632', '曹朝偉', 0, '+44 7194 092172', 2, '796850674976208397', 'Flat 1, 394 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1993-10-18', 0, 0, 'chiuwaich', '2021-05-16', 'chocw829', '2020-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS107302041756', '薛慧敏', 1, '+81 80-1039-0746', 2, '255478600200379854', '日本東京渋谷区代々木二丁目3番3号46階', '1993-05-23', 0, 0, 'waiman1022', '2008-10-19', 'wmsit', '2000-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS276779754118', '钟岚', 0, '+86 152-6986-8529', 2, '457511654797342146', 'Room 20, CR Building, 573 Ganlan Rd, Pudong, Shanghai, China', '1986-01-16', 0, 0, 'lanzh', '2000-08-25', 'zhong1', '2020-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS969545127995', '丸山明菜', 0, '+1 330-916-1459', 0, '764309952290872740', '704 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1994-10-10', 0, 0, 'amaruyama126', '2008-12-30', 'maruyamaa', '2020-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS388650071007', '吳永權', 1, '+86 160-3291-5852', 2, '003499612880780346', 'No.30 building, 603 Dong Zhi Men, Dongcheng District, Beijing, China', '1988-10-16', 0, 0, 'wingkuenng', '2010-07-24', 'ngwk09', '2016-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS106307102239', 'Ray Parker', 0, '+86 142-6214-2372', 3, '988005047488122779', 'Room 17, CR Building, 943 Jianxiang Rd, Pudong, Shanghai, China', '1996-05-30', 0, 0, 'parkerray', '2017-01-05', 'rapar', '2008-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS171503741287', '和田陸', 0, '+44 7874 042461', 1, '543589995161637312', 'Unit 14, Oxford Eco Centre, 15 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1992-12-28', 0, 0, 'riku822', '2009-10-13', 'rwada', '2017-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS230436646589', '梁青雲', 1, '+81 3-5802-9934', 0, '928399081688389590', '日本東京千代田区丸の内一丁目6番17号50階', '1992-07-04', 0, 0, 'chingwanleung', '2002-07-12', 'leung5', '2014-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS464001366371', '常嘉伦', 0, '+44 7957 904174', 1, '841140853016387868', 'Block 13, 716 New Street, Birmingham, B2 4DB, United Kingdom', '1997-09-03', 0, 0, 'changjialun', '2020-04-26', 'changjialun526', '2000-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS178478635873', 'Amanda Hunt', 0, '+44 7762 599872', 3, '489680054781774953', 'Flat 1, 646 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1985-07-31', 0, 0, 'hunt406', '2021-05-03', 'amandahunt1940', '2004-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS133841979991', '冯云熙', 0, '+1 838-532-6755', 3, '449803660673698735', '886 Lark Street Apartment 12, Albany, NY 12210, United States', '1996-09-18', 0, 0, 'fengyunxi2006', '2012-05-26', 'fengy7', '2007-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS643837368595', '小川和真', 0, '+44 (116) 346 0076', 0, '216701785556997816', 'Block 35, 625 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1996-04-21', 0, 0, 'kazumaogawa58', '2000-05-27', 'kazog3', '2018-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS063737389233', '許朝偉', 0, '+81 70-7619-0728', 3, '188452089675544067', '日本札幌豊平区豊平三条十三丁目3番8号50号室', '1998-08-06', 0, 0, 'cwhui910', '2001-07-15', 'cwhui', '2016-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS725636581949', '邵頴思', 0, '+86 175-8866-0192', 2, '114497305394136485', 'Room 21, 511 Tianhe Road, Tianhe District, Guangzhou, China', '1998-06-22', 0, 0, 'wss415', '2007-09-29', 'siuwingsze', '2001-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS266890599767', '岡本瑛太', 0, '+81 3-4917-3872', 2, '990623728558756981', '日本東京千代田区丸の内一丁目6番11号19階', '1990-03-10', 0, 0, 'eo1960', '2017-05-31', 'eiokamoto', '2009-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS026676944830', '崔永權', 0, '+81 3-0098-7815', 2, '215659168984396135', 'Rm. 27, 3-15-9 Ginza, Chuo-ku, Tokyo, Japan', '1997-06-07', 0, 0, 'wingkuen61', '2004-07-21', 'wkchoi6', '2018-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS288946724843', '今井愛梨', 0, '+1 614-743-4530', 0, '577381112596653642', '40 Tremont Road Suite 11, Columbus, GA 43212, United States', '1997-08-17', 0, 0, 'aiim', '2021-06-04', 'imaairi', '2003-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS457770523874', '范岚', 0, '+81 52-645-0952', 3, '174609222025341265', '日本なごやし北区清水三丁目19番10号43階', '1995-02-17', 0, 0, 'fan75', '2005-09-24', 'fan206', '2005-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS786441400670', '木下一輝', 1, '+44 (161) 106 8700', 3, '766388270500474117', 'Unit 44, Oxford Eco Centre, 667 Mosley St, Manchester, M2 3AQ, United Kingdom', '1995-07-30', 0, 0, 'ikki10', '2013-06-02', 'kinoi', '2022-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS441079855844', 'William Garcia', 1, '+86 158-7736-6467', 2, '675167361185988949', '中国深圳龙岗区学园一巷235号32号楼', '1993-07-02', 0, 0, 'willig', '2003-11-14', 'gawilli', '2015-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS252050086093', '梁睿', 0, '+81 52-614-6388', 0, '218638729588089994', '日本なごやし瑞穂区河岸町四丁目20番7号42号室', '1990-02-04', 0, 0, 'liangr', '2018-08-29', 'ruiliang', '2010-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS946639086134', '安藤絢斗', 1, '+1 213-450-5280', 4, '012877690341012014', '960 S Broadway Apartment 29, Los Angeles, CA 90015, United States', '1998-06-27', 0, 0, 'andoayato', '2002-10-12', 'aaya', '2003-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS247876005744', '高國權', 0, '+44 5964 307532', 2, '898054664759989828', 'Flat 18, 431 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1993-08-04', 0, 0, 'kao1998', '2010-04-23', 'kkkao426', '2017-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS343394583169', 'Anne Thompson', 0, '+86 152-4686-7635', 1, '726509247265977424', '中国北京市海淀区清河中街68号686号1楼', '1998-02-13', 0, 0, 'thompson5', '2000-11-06', 'thompsonanne2', '2002-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS248851658985', '西村湊', 1, '+86 10-4338-4200', 1, '989858785260768981', 'No.41 building, 580 East Wangfujing Street, Dongcheng District , Beijing, China', '1989-08-26', 0, 0, 'minaton', '2005-01-28', 'nishimuram2014', '2009-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS946892614986', '吳惠敏', 0, '+86 185-6775-3919', 3, '902026728392965485', 'Room 20, CR Building, 83 Dong Zhi Men, Dongcheng District, Beijing, China', '1998-11-28', 0, 0, 'waiman7', '2019-10-03', 'ngwm', '2018-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS630047753886', '橋本陸', 1, '+1 213-144-4589', 1, '438428245825834572', '263 Sky Way Apt 32, Los Angeles, CA 90043, United States', '1995-09-09', 0, 0, 'rikuhashimoto', '2007-05-28', 'rikuha', '2001-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS959939477573', '張頴璇', 1, '+81 11-744-3532', 2, '162554550844909925', '31F, 13-3-13 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1986-10-30', 0, 0, 'wingsuen54', '2002-06-08', 'cheungws7', '2018-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS690921405768', '宋震南', 1, '+1 312-138-9370', 2, '480655522047981959', '466 North Michigan Ave Apartment 10, Chicago, IL 60611, United States', '1990-07-24', 0, 0, 'zhenson', '2017-03-17', 'sozh', '2010-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS172700141048', '武晓明', 0, '+81 66-897-4329', 1, '711561656993871364', 'Rm. 49, 4-9-17 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-09-02', 0, 0, 'wuxiaoming1008', '2003-10-15', 'wux8', '2011-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS081816023206', '夏晓明', 0, '+44 5431 611539', 3, '391953759400059047', 'Unit 25, Oxford Eco Centre, 721 Redfern St, Liverpool, L20 8JB, United Kingdom', '1995-11-11', 0, 0, 'xiaoxia', '2019-10-06', 'xiaxi', '2022-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS379180094104', 'Jane Sanchez', 0, '+44 7154 461865', 2, '912164795167250392', 'Unit 42, Oxford Eco Centre, 557 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1993-12-02', 0, 0, 'sanchezj', '2021-02-14', 'jane86', '2005-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS039727022627', '常璐', 0, '+86 760-0425-1310', 2, '304675386122103015', 'No.20 building, 255 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1990-08-15', 0, 0, 'cl2016', '2004-08-13', 'lch722', '2018-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS943313980155', '金子愛梨', 1, '+86 755-891-8456', 3, '645755440632274537', 'Room 49, 543 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1989-05-13', 0, 0, 'kaneko102', '2015-07-09', 'akaneko', '2000-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS141453230896', '邱慧珊', 1, '+81 80-8983-9280', 2, '651954825416188376', '28-kai, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1989-08-12', 0, 0, 'yau13', '2011-11-04', 'yaws6', '2012-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS013973545359', 'Russell Scott', 1, '+44 7879 631755', 1, '119470492643667316', 'Flat 20, 166 New Street, Birmingham, B2 4DB, United Kingdom', '1989-11-07', 0, 0, 'scottr1230', '2016-01-14', 'rs1944', '2007-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS803971301924', '石川桜', 0, '+81 80-0537-9707', 4, '724231795686914309', '日本なごやし北区楠味鋺三丁目80番13号1階', '1994-01-09', 0, 0, 'ishikawa617', '2011-03-20', 'sakura06', '2015-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS040379060037', '馬詠詩', 1, '+86 135-6456-5150', 1, '151731835167169546', '中国成都市成华区二仙桥东三路972号华润大厦21室', '1985-12-09', 0, 0, 'mawingsze7', '2013-03-28', 'wingsze5', '2016-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS585026325896', '石璐', 1, '+81 11-797-5343', 1, '796192779008385475', '33F, 5-19-18 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1985-12-18', 0, 0, 'shi10', '2017-05-16', 'slu', '2021-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS558985692858', '田中聖子', 0, '+86 10-138-8403', 1, '524124578026680320', '中国北京市房山区岳琉路711号47号楼', '1990-04-23', 0, 0, 'tanakas', '2002-01-29', 'seiko1117', '2020-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS959326175754', '胡晓明', 0, '+81 52-371-2493', 4, '841243957939852861', 'Rm. 32, 19 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1994-03-04', 0, 0, 'huxiaoming', '2006-01-09', 'hxi1954', '2003-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS118037684878', '鄺國賢', 1, '+1 838-324-7998', 3, '096241284416227074', '83 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1988-09-20', 0, 0, 'kwokyin823', '2017-06-16', 'kwongkwokyin', '2006-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS540512419595', '陆詩涵', 1, '+81 11-819-9950', 3, '230803497284599215', '日本札幌清田区真栄四条五丁目19番3号33号室', '1994-07-08', 0, 0, 'shihan8', '2019-10-20', 'lushihan2005', '2015-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS596888763601', 'Linda Brown', 1, '+86 10-885-0563', 3, '520946246998167381', '中国北京市西城区西長安街247号21室', '1994-07-16', 0, 0, 'lbrow1', '2007-05-01', 'lbrow', '2016-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS256302059618', 'Frederick Payne', 1, '+86 20-756-6056', 3, '158863684576497463', '中国广州市天河区天河路451号18室', '1985-02-18', 0, 0, 'frederick1978', '2006-09-11', 'paynef', '2001-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS737415919065', '高田大和', 1, '+81 80-2650-5944', 4, '156696792889178832', '日本札幌厚別区上野幌一条二丁目1番9号42号室', '1997-11-25', 0, 0, 'yamato8', '2015-05-12', 'yamato98', '2006-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS803641860825', '韦子异', 1, '+86 769-591-8590', 4, '347586375907413863', '中国东莞环区南街二巷199号40室', '1985-05-18', 0, 0, 'ziyiwei96', '2015-03-13', 'zwe81', '2006-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS396718889569', '谢宇宁', 1, '+81 80-0354-0870', 0, '984656107160840112', '日本東京品川区東五反田五丁目2番5号12階', '1995-08-20', 0, 0, 'xy56', '2002-02-20', 'xiyuni2000', '2010-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS521484127212', 'John Perez', 1, '+86 194-2803-6384', 3, '891257067551963240', 'Room 36, 745 Sanlitun Road, Chaoyang District, Beijing, China', '1994-01-12', 0, 0, 'pj9', '2007-08-30', 'jop', '2019-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS385927735092', '松井美咲', 0, '+86 769-698-3026', 0, '019733435816989329', '中国东莞珊瑚路870号34栋', '1987-08-26', 0, 0, 'mimatsui', '2018-07-31', 'matsm90', '2002-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS493009996637', '渡部紗良', 1, '+1 718-824-9033', 4, '980726927529857299', '258 Flatbush Ave Suite 45, Brooklyn, NY 11225, United States', '1992-07-05', 0, 0, 'sarawa1', '2000-07-19', 'sara504', '2008-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS726044870909', '小野絢斗', 1, '+86 755-219-4355', 3, '472235733600921711', 'Room 22, 66 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1990-09-29', 0, 0, 'ayatoono', '2012-04-18', 'onoayato4', '2014-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS954286061689', '王詠詩', 0, '+1 838-752-7428', 3, '899719954122947475', '594 Central Avenue Apartment 5, Albany, NY 12206, United States', '1985-11-01', 0, 0, 'wingszewong131', '2015-04-19', 'wingsze93', '2002-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS299503378942', 'Eva Hunt', 0, '+44 (1223) 59 7886', 2, '413207438370615573', 'Flat 17, 807 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1993-01-20', 0, 0, 'evahunt', '2021-11-02', 'eh102', '2003-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS688927970781', '高木美月', 0, '+44 7626 514960', 3, '407596257947694470', 'Flat 30, 751 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-03-30', 0, 0, 'tami', '2013-06-21', 'mtakagi5', '2000-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS282307632648', '錢家強', 0, '+86 769-404-9282', 2, '047725975763982692', '32F, 878 Huanqu South Street 2nd Alley, Dongguan, China', '1985-09-27', 0, 0, 'chinkakeung', '2008-03-22', 'chkakeung', '2017-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS825084287447', 'Sharon Clark', 0, '+1 213-725-7817', 3, '546829791064421055', '490 Grape Street Apt 47, Los Angeles, CA 90002, United States', '1993-09-19', 0, 0, 'clarkshar', '2014-07-03', 'sharoncl824', '2001-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS230994195841', 'Thomas Salazar', 1, '+81 70-6615-5137', 2, '167135303586754038', '28F, 1-6-18, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1998-12-07', 0, 0, 'thomsal', '2017-04-26', 'salazthomas112', '2003-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS731773331326', '贾晓明', 1, '+81 66-251-3761', 3, '931094082644467624', '28F, 3-27-11 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1998-08-15', 0, 0, 'jixia61', '2008-02-29', 'xij508', '2000-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS326499418559', '邱惠妹', 1, '+81 90-5802-0799', 2, '801314221688297461', 'Rm. 28, 3-19-4 Shimizu, Kita Ward, Nagoya, Japan', '1993-04-16', 0, 0, 'huimei923', '2019-11-07', 'hmyau', '2019-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS609198721360', 'Jack Vasquez', 1, '+81 90-7624-6467', 2, '869545542009510807', 'Rm. 36, 12 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1990-07-01', 0, 0, 'jackvasquez10', '2014-12-21', 'jack1', '2017-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS052286427260', '戚慧琳', 1, '+86 159-8028-5657', 1, '297195321501542605', '中国北京市朝阳区三里屯路939号38室', '1990-02-17', 0, 0, 'wailam9', '2010-08-10', 'wailamchic1114', '2004-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS246659042802', '王詠詩', 1, '+81 52-496-2321', 2, '725438219646394030', '16-kai, 2-5-8 Chitose, Atsuta Ward, Nagoya, Japan', '1996-11-16', 0, 0, 'wong623', '2017-04-05', 'wingsze908', '2019-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS333151527682', '梁晓明', 1, '+44 (151) 408 5006', 3, '769411138477557755', 'Flat 9, 890 Hanover St, Liverpool, L1 4AF, United Kingdom', '1998-11-12', 0, 0, 'lx99', '2008-07-13', 'liang716', '2000-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS959163852301', '吳力申', 1, '+86 28-9748-3772', 1, '649184731237032864', '中国成都市成华区玉双路6号536号15室', '1992-07-06', 0, 0, 'ng702', '2005-06-10', 'likng5', '2018-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS277726585257', '斎藤涼太', 0, '+86 20-806-8613', 0, '352223637598280340', 'No.7 building, 540 Tianhe Road, Tianhe District, Guangzhou, China', '1994-10-21', 0, 0, 'sryot', '2015-08-02', 'rsaito703', '2006-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS606985018502', 'Charlotte Watson', 1, '+86 769-3653-2530', 0, '069879279177859939', '41F, 535 Shanhu Rd, Dongguan, China', '1994-03-04', 0, 0, 'watsonc', '2004-01-15', 'charlotte7', '2008-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS324098480889', '韦致远', 1, '+1 330-176-6219', 3, '108098648512531040', '66 Riverview Road Suite 48, Akron, OH 44313, United States', '1991-03-05', 0, 0, 'zwei67', '2019-09-19', 'zw7', '2018-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS381070046625', '叶晓明', 0, '+86 167-2131-8825', 1, '669924216878670383', '中国广州市白云区小坪东路112号27室', '1988-01-03', 0, 0, 'yexiaoming', '2010-08-16', 'xiay', '2018-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS566856928297', '丸山陽太', 1, '+86 168-2794-4468', 0, '936243718426096611', '中国北京市海淀区清河中街68号964号16号楼', '1986-04-22', 0, 0, 'yotamaruyama1122', '2022-03-01', 'mayota93', '2012-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS563434730391', '石井涼太', 0, '+86 178-5264-9615', 0, '394979765086586003', 'No.40 building, 561 68 Qinghe Middle St, Haidian District, Beijing, China', '1992-03-13', 0, 0, 'ishryota', '2018-03-13', 'iryota224', '2013-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS263816910873', '戴宇宁', 0, '+81 90-9153-6550', 4, '881444859448615904', '日本なごやし北区清水三丁目19番17号8階', '1986-06-05', 0, 0, 'daiyu', '2003-01-20', 'yunidai', '2014-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS255991253474', 'Eddie Ross', 0, '+86 10-500-6725', 3, '902187740384015819', '中国北京市西城区复兴门内大街983号华润大厦33室', '1996-05-13', 0, 0, 'eddie77', '2012-05-11', 'edro', '2001-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS244598312802', '近藤蒼士', 0, '+44 7327 700844', 4, '333119789462734306', 'Unit 29, Oxford Eco Centre, 928 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1996-05-22', 0, 0, 'kondoaoshi', '2003-08-26', 'akondo', '2019-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS853384743098', '邱子异', 0, '+86 769-5017-7620', 3, '797032921948022066', 'No.45 building, 796 Kengmei 15th Alley, Dongguan, China', '1998-02-20', 0, 0, 'qziyi1128', '2019-07-04', 'ziq', '2008-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS162119161292', '村田葉月', 0, '+86 141-7922-6130', 3, '897377502587790152', '中国中山京华商圈华夏街598号29室', '1990-05-27', 0, 0, 'murata107', '2017-11-18', 'hmurata05', '2010-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS900687557059', '黄子韬', 0, '+1 614-272-9072', 4, '609366241031976465', '24 East Cooke Road Apt 24, Columbus, GA 43214, United States', '1985-07-31', 0, 0, 'huangzitao', '2000-07-27', 'zhuang1', '2010-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS582215773999', '桜井聖子', 0, '+44 (1865) 23 9139', 1, '848113572078990404', 'Flat 12, 671 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1992-08-30', 0, 0, 'sakurseiko', '2008-01-28', 'sakurais', '2009-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS312014555010', '小野蓮', 1, '+86 769-9123-8673', 3, '470821344861155560', 'Room 28, CR Building, 575 Kengmei 15th Alley, Dongguan, China', '1995-01-02', 0, 0, 'renon', '2014-08-06', 'onore1013', '2015-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS58525615', '森田結翔', 0, '+86 172-0862-6583', 4, '989769667445921425', 'No.43 building, 92 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1989-08-23', 0, 0, 'moritayuito', '2010-02-15', 'moritayuito', '2001-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS28708110', '斎藤詩乃', 0, '+86 21-376-1814', 3, '481456160464972549', '11F, 147 Hongqiao Rd., Xu Hui District, Shanghai, China', '1991-11-22', 0, 0, 'shinos', '2007-08-22', 'shins5', '2002-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS31374205', '王慧珊', 1, '+86 137-2514-9400', 1, '807025892030392709', '中国深圳罗湖区田贝一路198号21室', '1990-08-30', 0, 0, 'wws', '2008-08-15', 'wows', '2006-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS07102101', '韩安琪', 1, '+81 90-3236-5837', 4, '423912402208871718', 'Rm. 1, 5-19-6 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1985-09-17', 0, 0, 'anqi10', '2020-09-28', 'haa', '2019-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS46749744', 'Anthony Hughes', 1, '+81 90-5526-0522', 3, '827925250053739393', 'Rm. 33, 2-1-6 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1988-08-02', 0, 0, 'anthonyhughes1', '2001-03-29', 'anthony1118', '2004-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS35847952', '阮志明', 1, '+44 (151) 702 7765', 2, '649891922616841764', 'Block 11, 812 Redfern St, Liverpool, L20 8JB, United Kingdom', '1994-06-06', 0, 0, 'chiming1983', '2008-06-04', 'chimingyue', '2020-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS35866068', '梁國賢', 1, '+81 70-8654-7682', 1, '267401616162851465', '日本おおさかし西成区出城一丁目1番7号47号室', '1993-05-29', 0, 0, 'lky621', '2006-10-04', 'kyleun8', '2007-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS27046109', '盧慧敏', 1, '+1 212-394-7578', 4, '237958070900382318', '798 Canal Street 3rd Floor, New York, NY 10013, United States', '1996-04-21', 0, 0, 'lowa', '2005-12-06', 'wmlo', '2017-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS68471469', '龚岚', 0, '+81 90-4389-0100', 1, '001581274433920073', 'Rm. 30, 5-19-6 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-04-15', 0, 0, 'gonglan10', '2007-06-04', 'golan99', '2019-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS97147709', 'Brian Reed', 1, '+86 10-999-7437', 3, '953906369768826350', '中国北京市海淀区清河中街68号62号35号楼', '1990-05-29', 0, 0, 'brianreed', '2010-10-23', 'reedbrian', '2002-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS56170683', '周致远', 1, '+1 718-118-3791', 3, '063119666160942417', '931 Bergen St Suite 25, Brooklyn, NY 11217, United States', '1991-11-28', 0, 0, 'zhouzhiyuan1981', '2002-09-19', 'zhou1203', '2009-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS63499013', '秦詩涵', 1, '+81 3-2914-7152', 3, '853817321130864703', 'Rm. 35, 1-6-15, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1991-05-24', 0, 0, 'qs1', '2006-11-18', 'shihan1960', '2007-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS29931240', '錢力申', 0, '+1 718-026-8254', 2, '344147572753346543', '519 Bergen St Suite 24, Brooklyn, NY 11217, United States', '1992-07-07', 0, 0, 'chin2017', '2012-01-22', 'chils', '2019-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS62328886', 'Denise Jackson', 1, '+81 52-828-4498', 1, '804211070119538836', '34-kai, 13 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1998-09-23', 0, 0, 'jacksonden6', '2004-06-30', 'jadenise57', '2008-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS17318422', 'Earl Payne', 1, '+86 197-1917-8334', 2, '686463537033339984', '46F, 759 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1989-05-21', 0, 0, 'payneea', '2008-06-16', 'pearl64', '2011-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS11647274', '谢安琪', 1, '+86 132-3708-4184', 2, '089520862214764634', 'No.2 building, 620 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1995-10-31', 0, 0, 'anqxie815', '2000-01-11', 'axie10', '2018-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS89925687', 'Stephen Lee', 0, '+1 330-597-3445', 1, '712735700182022995', '760 West Market Street Apartment 39, Akron, OH 44333, United States', '1987-12-12', 0, 0, 'lstephen', '2012-02-29', 'ls3', '2016-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS35851302', '青木凛', 1, '+1 312-147-8004', 2, '171977407769503301', '656 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1992-10-04', 0, 0, 'aorin213', '2017-08-03', 'riao', '2008-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS20382146', '岡本百花', 0, '+1 838-735-3852', 2, '588149021418406042', '325 Broadway Apartment 50, Albany, NY 12207, United States', '1986-04-01', 0, 0, 'moo', '2018-03-19', 'momokaokamo', '2017-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS24653250', '任青雲', 0, '+1 838-729-6162', 2, '291148644673002087', '63 State Street Suite 36, Albany, NY 12203, United States', '1985-01-18', 0, 0, 'yam4', '2008-04-30', 'yamchingwan', '2019-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS96392788', '馬浩然', 1, '+86 186-8410-7223', 3, '399000956927662646', '18F, 137 Xiaoping E Rd, Baiyun , Guangzhou, China', '1998-05-25', 0, 0, 'mahoyin209', '2019-02-22', 'ma4', '2005-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS18378069', '莫安琪', 0, '+81 11-657-5541', 1, '371873341299480184', 'Rm. 39, 13-3-9 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1990-09-17', 0, 0, 'amo', '2002-06-12', 'moanqi', '2011-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS62512566', '朱麗欣', 1, '+86 145-2073-6408', 2, '810865585262395135', '中国北京市东城区东单王府井东街5号华润大厦2室', '1989-11-30', 0, 0, 'laiyach', '2012-12-21', 'chu4', '2000-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS59392765', '關頴思', 1, '+81 90-3243-1894', 1, '204615058967298925', '日本札幌白石区菊水三条五丁目4番2号19階', '1989-07-10', 0, 0, 'wskwan', '2011-08-05', 'wingszekwan', '2001-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS93685640', '何璐', 0, '+81 66-682-2462', 4, '186677636404310290', '日本おおさかし西成区出城一丁目1番11号13号室', '1998-12-14', 0, 0, 'hl89', '2018-01-16', 'he5', '2005-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS15806775', 'Robin Allen', 1, '+86 193-9188-0671', 1, '173137143055863057', '中国成都市成华区玉双路6号775号13楼', '1992-12-16', 0, 0, 'allenrob', '2011-11-20', 'alrobin801', '2001-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS52912158', '彭嘉伦', 0, '+81 90-9341-9616', 2, '659656903096836770', '日本おおさかし平野区加美東四丁目9番19号47階', '1985-05-29', 0, 0, 'jialunpeng', '2002-07-07', 'pjialun', '2014-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS11652538', '曹霆鋒', 0, '+86 769-765-7136', 2, '798793874817869184', 'No.24 building, 536 Huanqu South Street 2nd Alley, Dongguan, China', '1991-06-04', 0, 0, 'cting18', '2015-03-26', 'tingfungcho', '2011-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS86182893', '周子异', 1, '+44 (161) 688 0154', 0, '849379671334474064', 'Unit 33, Oxford Eco Centre, 617 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1988-07-13', 0, 0, 'zhziyi', '2004-12-05', 'zhoziyi2008', '2019-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS39941457', '遠藤彩乃', 1, '+81 66-485-4584', 2, '255130626870419533', '日本おおさかし近江堂一丁目7番2号15号室', '1996-01-05', 0, 0, 'ayanoe', '2006-02-24', 'endayano5', '2006-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS28191789', 'April Lopez', 0, '+86 183-5018-5802', 2, '929068418348391598', '中国北京市东城区东单王府井东街561号26栋', '1987-07-26', 0, 0, 'aprillopez', '2001-04-16', 'alopez8', '2019-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS34784875', '劉杰倫', 1, '+1 212-215-1591', 1, '020513924629050543', '818 Fifth Avenue Apt 32, New York, NY 10017, United States', '1986-06-18', 0, 0, 'lachie214', '2007-04-26', 'chiehlunlau124', '2005-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS60612595', '原田百花', 1, '+44 5551 910035', 3, '241781395255290995', 'Unit 10, Oxford Eco Centre, 653 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1990-04-01', 0, 0, 'momoka915', '2013-12-20', 'hamomoka', '2008-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS40883705', '严璐', 1, '+86 28-609-5597', 2, '661189996663906825', 'Room 5, CR Building, No. 634, Shuangqing Rd, Chenghua District, Chengdu, China', '1997-11-01', 0, 0, 'yan1124', '2011-10-30', 'luy106', '2003-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS48615433', '阮國賢', 0, '+86 197-8619-5516', 3, '741045282398218594', 'No.30 building, 175 Yueliu Rd, Fangshan District, Beijing, China', '1992-10-27', 0, 0, 'kwokyiny723', '2016-12-24', 'kwokyin5', '2014-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS91687139', '山下花', 0, '+86 178-2211-8483', 2, '220235593070330666', 'Room 1, 89 Jingtian East 1st St, Futian District, Shenzhen, China', '1987-12-24', 0, 0, 'hanayamashita', '2022-01-03', 'yamashitaha6', '2000-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS40643678', '麥德華', 0, '+81 70-9237-8974', 0, '057852045692747035', '日本なごやし熱田区千年二丁目5番10号14号室', '1990-01-06', 0, 0, 'twmak', '2014-03-14', 'maktakwah', '2022-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS40862434', '雷慧嫻', 1, '+1 718-203-6062', 2, '490487213121440666', '401 Flatbush Ave Apartment 8, Brooklyn, NY 11225, United States', '1989-05-04', 0, 0, 'louiwaihan', '2004-07-09', 'louiwaihan', '2009-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS65061793', '毛思妤', 1, '+44 7212 049757', 4, '727205082174464937', 'Unit 8, Oxford Eco Centre, 517 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-07-13', 0, 0, 'szeyumo9', '2004-09-29', 'szeyumo3', '2012-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS33930036', '傅致远', 1, '+81 74-958-6179', 4, '169628545847398932', '日本ならし大和郡山市本庄町一丁目1番2号4階', '1996-05-31', 0, 0, 'fuz5', '2000-11-04', 'fuzhi', '2010-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS25156841', 'Carmen Miller', 0, '+81 74-066-8409', 1, '316858985457035264', '日本ならし西大寺赤田町一丁目7番3号35階', '1996-05-02', 0, 0, 'carmenmi1981', '2010-10-15', 'carmenmiller44', '2003-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS20091414', '何志明', 1, '+44 5763 915397', 3, '220549147911774251', 'Flat 43, 290 Hanover St, Liverpool, L1 4AF, United Kingdom', '1992-08-29', 0, 0, 'hochiming817', '2008-02-04', 'chiming326', '2003-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS71661863', '武璐', 1, '+81 52-204-3103', 3, '592622703890216047', '日本なごやし守山区瀬古東二丁目171番11号3階', '1987-02-27', 0, 0, 'luwu', '2013-05-07', 'luwu915', '2003-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS04651836', '小野凛', 0, '+81 52-653-7359', 0, '584696278652562790', '日本なごやし熱田区千年二丁目5番17号20階', '1987-04-11', 0, 0, 'onorin627', '2005-03-25', 'riono', '2020-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS44491284', '武田結翔', 0, '+1 312-331-7926', 4, '765726940386291406', '788 Rush Street Apartment 35, Chicago, IL 60611, United States', '1990-08-04', 0, 0, 'yuito721', '2015-05-20', 'yuito423', '2005-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS40764860', '木村絢斗', 0, '+44 (151) 918 6283', 1, '451197963146189125', 'No.2 Main building, 428 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1996-07-29', 0, 0, 'ayatokimura', '2002-08-29', 'akimura', '2018-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS82987555', '傅梓軒', 1, '+86 147-2242-9966', 2, '393476330684534166', '中国东莞环区南街二巷64号43楼', '1989-08-04', 0, 0, 'tszhinf9', '2013-01-25', 'futh', '2006-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS59269595', '桜井彩乃', 0, '+86 172-7660-0580', 1, '521556341560469418', '中国成都市锦江区人民南路四段196号43栋', '1993-05-16', 0, 0, 'aysaku', '2015-12-23', 'sayano', '2005-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS57752172', 'Kenneth Sanders', 0, '+86 20-781-7253', 0, '469475458831716627', 'Room 14, 799 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1990-03-22', 0, 0, 'kennsanders', '2007-05-20', 'kennethsan', '2005-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS47822145', 'Shawn Castro', 0, '+44 7712 155114', 1, '970249698166516990', 'No.34 Main building, 875 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1999-02-17', 0, 0, 'cassha', '2000-01-09', 'castrshawn', '2007-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS69552002', '吴杰宏', 0, '+86 21-172-6619', 3, '235207762459922977', '中国上海市浦东新区橄榄路107号32室', '1997-04-13', 0, 0, 'wuj', '2014-05-08', 'jiehowu', '2003-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS04482791', '尹國權', 1, '+44 (1223) 65 6663', 1, '190231837386808758', 'Unit 17, Oxford Eco Centre, 311 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1991-12-23', 0, 0, 'kky623', '2002-03-30', 'kwokkuenyin', '2009-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS78457299', '贺岚', 0, '+81 52-279-8728', 0, '124259489607435637', '日本なごやし瑞穂区河岸町四丁目20番16号8階', '1988-03-22', 0, 0, 'lan1014', '2012-11-07', 'lanhe8', '2020-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS50591116', '宋嘉伦', 1, '+81 80-4005-8576', 1, '395490199995119807', '日本なごやし瑞穂区河岸町四丁目20番19号46階', '1995-07-31', 0, 0, 'jialsong48', '2021-03-09', 'songjialun4', '2013-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS36235192', '小島瑛太', 1, '+1 718-794-5513', 3, '787077759001710373', '776 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1998-02-04', 0, 0, 'kojima9', '2000-07-05', 'kojimaeit', '2017-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS67323751', '方慧敏', 0, '+86 769-2192-0904', 2, '604571773516758581', 'No.28 building, 288 Kengmei 15th Alley, Dongguan, China', '1993-03-10', 0, 0, 'wmf5', '2011-07-06', 'fongwm', '2016-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS13645120', '清水彩乃', 0, '+44 (151) 263 7689', 1, '529829828585989454', 'Unit 5, Oxford Eco Centre, 70 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1992-05-17', 0, 0, 'ayanoshimizu331', '2007-01-04', 'shimizuayan', '2000-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS72688563', 'Elizabeth Russell', 1, '+86 755-5633-7783', 3, '244531135307152323', 'No.16 building, 93 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1997-03-10', 0, 0, 'russellelizabeth47', '2020-09-20', 'elizabeth1', '2001-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS92330408', 'Earl Roberts', 0, '+86 769-561-2480', 0, '726731038137929238', '中国东莞环区南街二巷285号40号楼', '1988-07-20', 0, 0, 'earlro82', '2004-05-20', 'robere', '2006-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS56984826', 'Ruth Lopez', 0, '+86 10-738-3425', 2, '046091676474741756', '中国北京市海淀区清河中街68号888号19栋', '1991-09-02', 0, 0, 'ruthlop11', '2012-09-03', 'loruth', '2022-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS15977265', '原田七海', 1, '+81 66-034-7785', 0, '363972147476617416', '日本おおさかし西成区天神ノ森二丁目1番5号46階', '1990-12-22', 0, 0, 'haradananami', '2018-02-11', 'haradnanami110', '2021-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS83406738', 'Annie Simmons', 1, '+86 760-0647-5533', 2, '429232723243406757', '中国中山乐丰六路453号39号楼', '1995-05-22', 0, 0, 'ansimm', '2010-04-28', 'annies', '2005-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS80748526', '佘秀文', 1, '+86 176-1223-5259', 3, '553698818559532129', '中国北京市朝阳区三里屯路387号华润大厦47室', '1997-01-13', 0, 0, 'shehsauman', '2002-05-01', 'sheh78', '2008-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS87270118', '林光', 1, '+81 11-079-5581', 1, '758118896809223512', '10-kai, 6-1-2, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-05-15', 0, 0, 'hh831', '2017-05-02', 'hikaruhaya', '2021-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS37484580', '鄧發', 0, '+86 28-703-4894', 1, '503784506509177635', '中国成都市成华区二仙桥东三路388号7栋', '1986-03-20', 0, 0, 'fattang', '2022-01-17', 'fat918', '2008-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS14306361', '翁玲玲', 1, '+44 (121) 788 6611', 1, '936443831379239592', 'Unit 7, Oxford Eco Centre, 928 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1998-06-22', 0, 0, 'ylingling', '2002-05-06', 'yunglingl10', '2011-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS15577508', '田村健太', 1, '+86 28-219-4483', 1, '143458433406926475', 'No.21 building, 284 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1994-02-27', 0, 0, 'kentat5', '2018-12-23', 'kentat', '2007-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS38386302', '區志遠', 0, '+86 179-7046-0325', 4, '804802128289066370', '中国东莞坑美十五巷282号1号楼', '1988-12-25', 0, 0, 'auchiyuen', '2017-10-03', 'aucy', '2011-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS50783308', '山口一輝', 0, '+81 66-671-2293', 1, '636093939476406552', '6-kai, 1-7-9 Omido, Higashiosaka, Osaka, Japan', '1986-07-21', 0, 0, 'yamaikki', '2015-11-13', 'yamaguchiikki', '2011-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS90217011', '石川聖子', 0, '+44 7967 872285', 3, '119541039199175771', 'Block 19, 162 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1991-04-16', 0, 0, 'ishisei', '2021-08-06', 'seiko60', '2004-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS11288144', 'Amber Hall', 1, '+86 164-7717-1447', 2, '530243272898525640', 'No.45 building, 918 Kengmei 15th Alley, Dongguan, China', '1998-04-13', 0, 0, 'amberha2', '2013-06-30', 'amberhall', '2001-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS74068951', '野村聖子', 1, '+81 90-7465-0640', 3, '090819547228397450', '13F, 3-27-10 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1998-11-22', 0, 0, 'nomura4', '2005-07-28', 'nomuraseiko9', '2016-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS30130590', '樂國賢', 0, '+81 11-918-4221', 2, '179951575330376361', '22F, 5-2-12 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-10-08', 0, 0, 'kwokyinlok4', '2008-04-02', 'lokkw13', '2006-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS66207001', 'Diane Reed', 1, '+44 (151) 967 6112', 1, '608930692366137563', 'No.29 Main building, 5 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1986-06-28', 0, 0, 'dreed713', '2013-01-27', 'reediane', '2019-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS94346404', '石秀英', 0, '+86 10-0498-4311', 2, '280277766617538582', 'Room 38, 484 68 Qinghe Middle St, Haidian District, Beijing, China', '1993-10-18', 0, 0, 'xiuyingshi80', '2018-02-22', 'xiuyshi3', '2005-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS07039461', '吳慧珊', 1, '+86 154-6387-7309', 1, '555570420140459576', '中国北京市东城区东单王府井东街551号华润大厦36室', '1993-05-12', 0, 0, 'ngws1130', '2018-05-14', 'ngws3', '2017-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS11081295', 'Margaret Morris', 0, '+44 5998 304522', 3, '813631347495919907', 'Block 22, 132 Park End St, Oxford, OX1 1JD, United Kingdom', '1987-11-13', 0, 0, 'margaretm', '2000-06-26', 'margmorris65', '2017-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS11377099', '郭青雲', 1, '+86 10-874-3584', 3, '444973604953052332', '36F, 225 West Chang''an Avenue, Xicheng District, Beijing, China', '1997-04-10', 0, 0, 'kwok707', '2005-02-10', 'kchingwan1', '2020-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS70731851', '陳頴思', 0, '+44 (116) 699 0042', 1, '798408476526877206', 'Block 38, 210 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1992-02-02', 0, 0, 'chwingsze4', '2016-05-12', 'chanwingsze', '2017-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS64216029', 'Virginia Mcdonald', 1, '+81 90-5604-4949', 3, '413825086926116276', 'Rm. 35, 3-19-19 Shimizu, Kita Ward, Nagoya, Japan', '1985-02-02', 0, 0, 'mvirginia328', '2011-10-31', 'mcdonald701', '2019-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS06151249', 'Barbara Spencer', 1, '+44 7915 988275', 0, '238125946057137788', 'No.25 Main building, 557 Maddox Street, London, W1S 1PU, United Kingdom', '1990-02-24', 0, 0, 'sb43', '2008-02-10', 'spencerbarba9', '2014-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS66240609', 'Carolyn Johnson', 0, '+44 7181 308075', 2, '274259402571492549', 'Unit 30, Oxford Eco Centre, 519 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1992-08-16', 0, 0, 'cajohnson', '2004-09-13', 'carolyn4', '2019-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS61712636', '平野光莉', 1, '+86 154-7164-2088', 1, '951090972231284821', '中国深圳福田区景田东一街975号40室', '1986-08-07', 0, 0, 'hikarih', '2019-05-19', 'hiranohikari401', '2019-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS11525445', '葉嘉欣', 0, '+86 159-3757-4997', 2, '218606609640214276', '中国北京市西城区西長安街849号30栋', '1986-05-20', 0, 0, 'kyyip', '2020-05-10', 'yipkarya', '2020-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS46232742', '中川葉月', 1, '+44 (1223) 60 2045', 1, '142837793247659044', 'Unit 23, Oxford Eco Centre, 650 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1997-09-14', 0, 0, 'nakagawahazuki6', '2014-05-05', 'hnak10', '2005-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS18234224', 'Arthur Crawford', 1, '+81 3-1143-4915', 0, '590865762589861152', '日本東京港区東新橋一丁目5番19号36階', '1989-06-09', 0, 0, 'crawfa', '2008-11-17', 'craarth6', '2007-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS25316221', 'Victor Griffin', 1, '+86 146-8699-5864', 0, '916917321487269455', 'Room 14, 101 Xiaoping E Rd, Baiyun , Guangzhou, China', '1995-12-23', 0, 0, 'victor14', '2014-02-13', 'griffinvictor', '2014-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS22891123', '原悠人', 1, '+81 70-8461-1927', 3, '474404864216963449', '日本ならし西大寺赤田町一丁目7番9号27号室', '1994-09-07', 0, 0, 'hyuto', '2010-06-07', 'hara2001', '2006-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS21131464', '田村花', 1, '+44 (116) 539 4241', 3, '251782654128546078', 'No.34 Main building, 590 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1998-02-25', 0, 0, 'tamura731', '2018-08-13', 'tamuhan703', '2016-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS54323936', '潘璐', 1, '+81 70-6509-3346', 1, '216450714533232748', '日本札幌中央区宮の森四条六丁目1番14号44階', '1988-12-24', 0, 0, 'plu', '2017-04-13', 'lupa98', '2010-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS36698719', '廖嘉伦', 1, '+81 3-9689-6770', 2, '794679465786262312', '日本東京渋谷区代々木二丁目3番19号10階', '1996-05-13', 0, 0, 'ljial828', '2010-07-11', 'jialiao46', '2018-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS18635256', '横山蒼士', 0, '+81 66-105-5175', 0, '138908508356555455', '日本おおさかし東住吉区東田辺三丁目27番16号38階', '1990-05-02', 0, 0, 'yaoshi', '2018-10-26', 'yokoyamaaos', '2001-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS10955089', '龚詩涵', 1, '+1 838-487-8892', 2, '957906799845483790', '755 State Street Suite 3, Albany, NY 12203, United States', '1987-02-02', 0, 0, 'shihangong', '2007-12-06', 'gongs6', '2018-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS05567083', 'Dawn Cook', 0, '+44 7764 007107', 2, '044582889660287837', 'No.48 Main building, 460 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1986-10-04', 0, 0, 'dawn9', '2020-07-06', 'dawnc', '2018-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS21085370', '郑子韬', 1, '+86 21-4616-8361', 2, '262654224988370552', '中国上海市黄浦区淮海中路75号27号楼', '1999-02-21', 0, 0, 'zhengz', '2017-10-06', 'zzit', '2001-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS36625728', 'Jeff Morales', 1, '+86 28-3067-3082', 2, '383491119374377844', '36F, 22 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1991-05-31', 0, 0, 'jeffm811', '2000-06-22', 'moraj', '2001-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS61409188', 'Carl Aguilar', 0, '+1 213-678-1484', 2, '562778381402104101', '51 S Broadway Suite 41, Los Angeles, CA 90015, United States', '1999-02-02', 0, 0, 'agca', '2015-05-26', 'aguilarcar79', '2012-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS57432093', '山崎詩乃', 0, '+86 21-1259-6141', 3, '813976441628336906', 'No.7 building, 478 Binchuan Rd, Minhang District, Shanghai, China', '1991-10-26', 0, 0, 'yamazakishin', '2004-02-14', 'sy1019', '2015-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS08413533', '黎秀文', 0, '+81 52-895-4300', 3, '428818097721451319', 'Rm. 7, 3-19-5 Shimizu, Kita Ward, Nagoya, Japan', '1986-10-02', 0, 0, 'saumanla2', '2021-09-28', 'saumanlai', '2021-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS90771455', '何仲賢', 0, '+1 614-842-0380', 2, '065340261805645523', '554 Wicklow Road Apt 30, Columbus, GA 43204, United States', '1998-02-15', 0, 0, 'chungyinho9', '2015-09-09', 'hocy', '2012-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS43658395', '洪思妤', 0, '+81 66-986-2801', 1, '132574593431558907', '日本おおさかし西成区出城一丁目1番19号41号室', '1988-12-08', 0, 0, 'hung726', '2007-10-18', 'hungsy5', '2003-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS20372066', 'Shannon Marshall', 1, '+86 146-0556-0964', 0, '779198455042976895', 'Room 28, CR Building, 742 028 County Rd, Yanqing District, Beijing, China', '1986-11-05', 0, 0, 'smarsh103', '2021-05-29', 'marshallsha', '2005-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS75881206', '郝岚', 1, '+86 10-8008-1297', 1, '691512058286692949', 'No.9 building, 429 68 Qinghe Middle St, Haidian District, Beijing, China', '1990-03-06', 0, 0, 'haolan', '2002-05-31', 'lhao', '2003-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS81138850', 'Ricky Flores', 1, '+86 28-7074-4042', 4, '735155563180302093', 'No.44 building, No. 573, Shuangqing Rd, Chenghua District, Chengdu, China', '1998-12-18', 0, 0, 'florer', '2001-08-15', 'fricky', '2022-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS96870878', '毛詩涵', 0, '+81 11-600-8107', 2, '959798636415267889', '日本札幌清田区真栄四条五丁目19番12号32階', '1987-04-15', 0, 0, 'mao921', '2010-08-08', 'mshi', '2004-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS31980960', '中村美緒', 1, '+44 (1865) 30 5278', 2, '137095703395090861', 'Block 2, 762 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1991-09-02', 0, 0, 'nakammio210', '2013-04-07', 'mio97', '2019-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS19839459', '餘祖兒', 1, '+86 144-2703-0080', 0, '291725055956005545', 'No.41 building, 249 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1996-02-14', 0, 0, 'yuchoyee', '2013-08-26', 'cyyue10', '2003-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS69965561', '麥國權', 1, '+81 90-4206-8532', 4, '547303950055668880', '24-kai, 1-6-6, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-11-11', 0, 0, 'makkk', '2020-04-12', 'kwokkuen45', '2020-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS75391143', '秦睿', 0, '+81 90-3522-1944', 2, '409495367856304071', '5F, 3-9-12 Gakuenminami, Nara, Japan', '1993-03-13', 0, 0, 'rui4', '2005-05-05', 'ruiqi', '2022-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS21805400', '容朝偉', 0, '+86 769-441-4004', 4, '198168361029006916', '46F, 990 Huanqu South Street 2nd Alley, Dongguan, China', '1987-10-28', 0, 0, 'yung902', '2019-01-15', 'yung222', '2007-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS85341445', '馮慧珊', 1, '+81 80-6347-4775', 2, '379732376766905007', '日本おおさかし西成区天神ノ森二丁目1番4号27階', '1999-02-24', 0, 0, 'waisan1', '2018-07-03', 'fung1973', '2006-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS90689959', '菊地樹', 0, '+81 3-4525-4710', 4, '030619074222415672', '46F, 5-2-10 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-01-14', 0, 0, 'itki', '2006-02-23', 'itsukikikuchi', '2000-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS97423980', 'Joan Jordan', 0, '+1 718-641-8473', 2, '019360168839029236', '586 Columbia St Suite 3, Brooklyn, NY 11231, United States', '1988-05-22', 0, 0, 'joan1994', '2011-12-10', 'jordanjoan801', '2013-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS16851805', '山崎蓮', 1, '+86 755-8547-2496', 3, '170875323991063028', '中国深圳龙岗区学园一巷250号35室', '1987-04-09', 0, 0, 'ren5', '2013-01-27', 'yamazakiren', '2009-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS59699780', '戚淑怡', 1, '+44 7171 795733', 4, '501196890399490456', 'Block 10, 986 Regent Street, London, W1B 2LX, United Kingdom', '1998-07-23', 0, 0, 'chicsukyee', '2017-02-23', 'chisukyee', '2018-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS32006178', '黎詩涵', 0, '+81 3-0936-2441', 4, '052686409410323672', '日本東京品川区東五反田五丁目2番11号41号室', '1997-11-13', 0, 0, 'shihanli', '2010-10-11', 'lis03', '2016-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS57574445', 'Eleanor Green', 1, '+81 70-2728-4001', 1, '468263806389402305', '日本なごやし北区清水三丁目19番16号20号室', '1991-05-20', 0, 0, 'greene', '2022-01-05', 'eleang', '2014-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS48979988', '黃家強', 0, '+86 769-412-6152', 1, '379694283764105489', '42F, 489 Dongtai 5th St, Dongguan, China', '1991-12-09', 0, 0, 'kakeungwong', '2017-05-01', 'wkk1026', '2017-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS02462119', '甘安娜', 1, '+81 3-9147-6067', 0, '645265839488201476', '15-kai, 2-3-4 Yoyogi, Shibuya-ku, Tokyo, Japan', '1994-06-05', 0, 0, 'kamon', '2014-03-10', 'onkam9', '2016-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS95787576', '龚詩涵', 0, '+81 52-968-6647', 0, '168682348747651814', '日本なごやし北区清水三丁目19番8号14号室', '1998-08-19', 0, 0, 'shihangong', '2012-01-01', 'gong50', '2015-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS17863086', '冯杰宏', 0, '+1 330-369-2416', 0, '285878035133965610', '742 Riverview Road Suite 22, Akron, OH 44313, United States', '1989-11-12', 0, 0, 'fengjie2', '2011-07-27', 'feng110', '2019-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS54673681', '朱震南', 1, '+81 3-4474-9659', 3, '178896237130817431', '8-kai, 1-6-12, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1986-02-13', 0, 0, 'zz210', '2009-08-29', 'zhuzhennan', '2011-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS95333800', '孟云熙', 0, '+81 3-6104-0561', 1, '578568867860525411', '日本東京中央区銀座三丁目12番12号50階', '1995-03-19', 0, 0, 'yunxim', '2015-10-23', 'mengyunx603', '2007-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS71645847', '宋云熙', 1, '+86 164-5031-7170', 3, '229770057530423551', 'No.6 building, 783 Yueliu Rd, Fangshan District, Beijing, China', '1994-01-02', 0, 0, 'yunxisong', '2016-03-21', 'yunxi2004', '2002-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS65553305', 'Mark Russell', 1, '+44 7591 062896', 1, '895980460891637602', 'Block 12, 443 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1992-03-24', 0, 0, 'russell1006', '2021-10-20', 'russellmar', '2005-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS73777145', '伍慧琳', 0, '+81 90-5240-0842', 2, '060527794322631975', '32-kai, 5-19-18 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1991-05-03', 0, 0, 'ngwl', '2006-05-12', 'wailamn', '2011-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS75664684', '加藤凛', 1, '+1 213-511-2137', 2, '183683231656492461', '605 S Broadway Suite 2, Los Angeles, CA 90015, United States', '1988-12-15', 0, 0, 'katori1112', '2006-06-11', 'rk1227', '2008-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS21140222', '盧思妤', 1, '+44 7267 609422', 3, '451284358810025328', 'No.4 Main building, 822 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1996-04-15', 0, 0, 'losy', '2000-01-29', 'lszeyu75', '2007-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS26779726', 'Timothy Anderson', 1, '+81 70-9858-3052', 3, '487904831703672700', 'Rm. 11, 5-2-2 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-12-12', 0, 0, 'tande', '2007-06-05', 'timothy3', '2007-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS15602791', 'Henry Gutierrez', 0, '+86 177-8425-8874', 2, '037071379081851378', '18F, 555 Shennan Ave, Futian District, Shenzhen, China', '1998-05-15', 0, 0, 'henrygutie', '2008-04-15', 'henrygutierrez1201', '2019-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS36913568', '高田百花', 1, '+81 70-1157-2598', 2, '633191357649065191', '日本ならし学園南三丁目9番20号48号室', '1998-12-31', 0, 0, 'takadamomoka', '2008-01-21', 'momoka60', '2005-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS00225931', '李宇宁', 0, '+86 140-9453-8638', 1, '251543477477178837', '中国北京市海淀区清河中街68号300号35栋', '1993-09-09', 0, 0, 'yuli', '2017-06-17', 'yuningli1', '2017-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS62684725', '罗子韬', 1, '+44 (1865) 12 8116', 0, '853434216106626113', 'Unit 5, Oxford Eco Centre, 649 Park End St, Oxford, OX1 1JD, United Kingdom', '1994-10-02', 0, 0, 'zitl', '2005-07-26', 'luo2017', '2002-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS35057060', '麥安琪', 1, '+1 213-116-6192', 4, '225549042293119169', '687 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1989-02-20', 0, 0, 'onkay6', '2019-02-26', 'mak6', '2013-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS31302111', 'Nathan Phillips', 1, '+86 21-376-4147', 2, '974852575011289564', '中国上海市浦东新区橄榄路895号14楼', '1994-11-23', 0, 0, 'nathanphill', '2003-11-01', 'nathaphil2', '2009-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS02567562', '鄭慧敏', 0, '+81 3-3071-9081', 3, '465331124513738775', '24-kai, 5-2-5 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1989-10-23', 0, 0, 'chewm', '2005-06-10', 'cwaim1008', '2015-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS74886243', '遠藤美緒', 0, '+44 (161) 652 9493', 1, '159699475659611936', 'No.26 Main building, 575 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1986-06-26', 0, 0, 'mioendo', '2013-07-01', 'enmi', '2003-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS18636911', '韩宇宁', 1, '+81 80-0561-6000', 2, '414778055349303688', '22-kai, 3-9-2 Gakuenminami, Nara, Japan', '1997-10-22', 0, 0, 'yh4', '2015-04-01', 'han1007', '2014-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS04839308', 'Henry Dixon', 1, '+81 3-1420-3063', 4, '723982164849809291', '11-kai, 2-3-12 Yoyogi, Shibuya-ku, Tokyo, Japan', '1985-07-11', 0, 0, 'henrdix', '2003-02-19', 'henryd', '2008-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS07454744', 'Tammy Wright', 1, '+81 70-3994-7806', 1, '929850642707666157', '日本東京千代田区丸の内一丁目6番14号38階', '1995-09-08', 0, 0, 'wright3', '2004-05-09', 'wtam211', '2003-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS14865840', '容明詩', 0, '+86 20-0988-7049', 3, '835277364182906915', 'Room 8, CR Building, 969 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1989-04-25', 0, 0, 'yms', '2021-08-21', 'miyun228', '2014-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS01686138', '鄧志遠', 1, '+81 90-3500-3797', 1, '012318034169334907', '日本なごやし守山区瀬古東二丁目171番12号26号室', '1992-04-10', 0, 0, 'tcy', '2007-12-17', 'tachiyuen', '2012-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS87348419', '姚慧敏', 1, '+86 10-864-4812', 3, '524462686999241584', '中国北京市延庆区028县道357号49楼', '1985-07-20', 0, 0, 'waimanyeow', '2004-04-19', 'waiman6', '2013-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS41982600', 'Catherine Brooks', 0, '+81 90-3582-0274', 3, '750726947617662086', '日本東京品川区東五反田五丁目2番5号38階', '1989-05-30', 0, 0, 'cbrook10', '2005-08-15', 'cbrooks213', '2012-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS89720221', '翁世榮', 0, '+1 614-872-3239', 1, '228780144726656067', '754 Tremont Road Apt 20, Columbus, GA 43212, United States', '1993-04-24', 0, 0, 'yungsa', '2019-05-05', 'yungsw1101', '2014-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS19803760', '钱宇宁', 0, '+81 90-3787-8155', 3, '476091820904029385', '日本東京港区東新橋一丁目5番6号16階', '1986-11-23', 0, 0, 'yuniqian424', '2010-01-05', 'qiyuning12', '2013-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS90553452', 'Timothy Peterson', 0, '+86 769-1804-5519', 1, '591807284065608668', '中国东莞东泰五街462号11室', '1998-06-06', 0, 0, 'petersontimothy', '2020-02-22', 'petersonti', '2012-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS58971074', '胡子韬', 1, '+86 167-4175-9994', 3, '269034651770967249', '中国成都市成华区玉双路6号992号28号楼', '1996-11-19', 0, 0, 'huzitao89', '2019-12-13', 'hu68', '2004-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS16216382', '苏詩涵', 0, '+44 7659 810741', 3, '408864870811041921', 'Block 20, 830 Sackville St, Manchester, M1 3BB, United Kingdom', '1990-03-06', 0, 0, 'shihansu', '2012-02-12', 'sushi10', '2007-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS38880070', '董秀英', 1, '+1 312-688-7364', 1, '413131846779106565', '915 Pedway Apartment 22, Chicago, IL 60601, United States', '1991-12-01', 0, 0, 'dxiu', '2015-11-28', 'dongx70', '2020-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS71061208', '河野凛', 0, '+44 5829 032810', 0, '044165436095113152', 'Block 34, 783 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1988-11-11', 0, 0, 'konorin', '2001-02-14', 'rik', '2000-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS79317272', '韦詩涵', 0, '+86 760-9089-0495', 2, '944712043043037001', '中国中山乐丰六路752号华润大厦23室', '1986-04-21', 0, 0, 'shihanw', '2001-03-26', 'weishihan', '2000-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS47619767', 'Jeremy Lopez', 0, '+86 141-4121-2680', 4, '312703925317925447', '2F, 893 Xiaoping E Rd, Baiyun , Guangzhou, China', '1989-12-14', 0, 0, 'lopezjeremy1205', '2001-03-07', 'jeremylopez', '2012-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS57326800', '中山凛', 0, '+81 74-896-4098', 1, '449161250292426834', 'Rm. 31, 3-9-17 Gakuenminami, Nara, Japan', '1992-03-21', 0, 0, 'rin1', '2003-02-06', 'nakayamarin', '2004-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS57978342', '孙秀英', 1, '+86 28-5238-4186', 0, '313295822833087800', '中国成都市成华区双庆路44号41室', '1998-10-21', 0, 0, 'sunxiuying', '2014-08-31', 'sux', '2008-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS02541074', 'Barbara Martin', 1, '+86 755-503-3672', 4, '343798516517283169', 'Room 43, CR Building, 870 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1999-01-14', 0, 0, 'barbaramartin108', '2003-07-09', 'barbara4', '2009-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS72252804', '赵子韬', 0, '+81 70-4038-1153', 1, '665468814987378285', '28F, 2-1-4 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1990-05-27', 0, 0, 'zitao86', '2003-05-28', 'zhao1997', '2000-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS16799180', 'John Rogers', 0, '+86 755-8668-5641', 0, '555866557357048166', 'Room 16, 884 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1990-10-28', 0, 0, 'johnrogers', '2010-07-16', 'johnrogers8', '2020-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS60122520', '盧天樂', 1, '+81 80-0528-1020', 2, '012819872170893169', 'Rm. 38, 3-19-13 Shimizu, Kita Ward, Nagoya, Japan', '1993-12-22', 0, 0, 'tinlolo', '2003-02-21', 'tinloklo84', '2001-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS23376304', '藤田大輔', 0, '+44 (1865) 07 5060', 1, '596047575175617654', 'Unit 22, Oxford Eco Centre, 188 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1996-03-10', 0, 0, 'daisuke1975', '2009-07-19', 'fujita1030', '2015-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS90571532', '廖岚', 1, '+81 11-392-7963', 0, '484322115253500412', '日本札幌厚別区上野幌一条二丁目1番18号37号室', '1993-12-06', 0, 0, 'laliao', '2007-05-06', 'liaolan', '2017-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS14255711', '村田結翔', 1, '+81 74-535-8397', 1, '378912980091147076', '日本ならし西大寺赤田町一丁目7番8号24階', '1993-11-21', 0, 0, 'ymurata6', '2016-03-07', 'muratayuit', '2007-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS10462039', '杜淑怡', 0, '+1 838-471-4347', 2, '736882598700011251', '328 Lark Street Apartment 22, Albany, NY 12210, United States', '1992-10-26', 0, 0, 'tosukyee71', '2006-01-12', 'syto620', '2021-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS97742916', 'Steve Salazar', 0, '+86 10-6079-1523', 1, '367298651375204400', 'Room 1, 996 West Chang''an Avenue, Xicheng District, Beijing, China', '1993-05-02', 0, 0, 'steves5', '2008-02-24', 'ssteve4', '2001-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS60680277', '石田光', 0, '+44 (151) 681 9842', 2, '265818309385341926', 'No.27 Main building, 723 Hanover St, Liverpool, L1 4AF, United Kingdom', '1996-10-24', 0, 0, 'hikaru1', '2015-04-18', 'ishi3', '2008-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS11051809', '戚祖兒', 1, '+86 132-2056-1339', 0, '549605799798528693', '33F, 246 Lefeng 6th Rd, Zhongshan, China', '1987-07-10', 0, 0, 'chcy', '2000-11-23', 'choyeechic', '2002-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS89197541', '唐子异', 1, '+44 7165 647208', 3, '783705612404493645', 'Unit 9, Oxford Eco Centre, 404 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1994-10-16', 0, 0, 'ziyitang3', '2009-11-09', 'tanziyi1', '2008-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS13800511', '苑頴思', 1, '+81 11-495-4768', 3, '887784635536700208', '39F, 5-19-18 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1986-08-15', 0, 0, 'yuews', '2011-09-08', 'ywing1024', '2020-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS98827266', '杜杰宏', 0, '+1 212-022-3834', 0, '986982115687130239', '944 West Houston Street 3rd Floor, New York, NY 10014, United States', '1995-11-23', 0, 0, 'jiehongdu', '2016-04-28', 'dujieh', '2009-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS57903283', '車力申', 0, '+1 718-114-2574', 4, '801008112255194741', '406 Flatbush Ave Apartment 33, Brooklyn, NY 11225, United States', '1987-02-09', 0, 0, 'liksun303', '2001-10-08', 'lsche', '2011-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS67765976', 'Jeremy Hernandez', 0, '+81 80-3580-5654', 1, '972008471043097188', '日本東京港区東新橋一丁目5番14号39階', '1988-09-07', 0, 0, 'jhernandez', '2020-01-17', 'hernandezjerem', '2005-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS42417872', 'Christine Myers', 0, '+44 5731 244005', 4, '042300059142103662', 'Unit 5, Oxford Eco Centre, 886 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1990-04-18', 0, 0, 'cmyers1', '2004-04-08', 'christinemyers10', '2000-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS23050571', 'Jason Bennett', 1, '+44 (121) 736 6315', 3, '634618715531309722', 'Unit 23, Oxford Eco Centre, 628 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1986-07-12', 0, 0, 'bennett7', '2016-07-23', 'bennej', '2019-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS31597184', 'Clifford Fisher', 1, '+81 74-318-9629', 2, '358042121398756870', '日本ならし学園南三丁目9番13号25階', '1986-12-26', 0, 0, 'fishcl', '2001-11-01', 'fisher07', '2020-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS23665995', 'Jennifer Freeman', 1, '+86 138-7134-4184', 0, '084066099167631679', '中国广州市白云区小坪东路27号1室', '1985-12-10', 0, 0, 'fj51', '2009-04-18', 'jefre', '2010-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS61808586', 'Joe Meyer', 0, '+81 3-7278-6480', 1, '509956388894507270', '50-kai, 3-15-10 Ginza, Chuo-ku, Tokyo, Japan', '1987-06-24', 0, 0, 'mejo', '2006-03-07', 'mjoe', '2006-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS99580305', '小林詩乃', 1, '+81 90-7430-2493', 0, '776959795498462887', '27F, 1-6-11, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1986-05-31', 0, 0, 'kobayashishino', '2013-09-05', 'kobayashi1', '2005-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS73914424', '余子异', 1, '+44 5817 739948', 2, '098222404611414106', 'Unit 21, Oxford Eco Centre, 968 Hanover Street, London, W1S 1YD, United Kingdom', '1997-04-16', 0, 0, 'ziyu', '2010-04-28', 'ziyu', '2011-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS67336443', '中山優奈', 1, '+86 28-333-3639', 3, '667790004117579532', '10F, 321 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1996-09-15', 0, 0, 'yunan', '2012-07-24', 'yunaka1216', '2009-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS23254685', '雷家輝', 0, '+86 135-2699-1956', 1, '010441623363705336', 'No.33 building, 647 Ganlan Rd, Pudong, Shanghai, China', '1988-08-18', 0, 0, 'louikafai', '2000-10-28', 'louikf', '2014-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS70056480', 'Jonathan Fernandez', 1, '+86 191-0506-2012', 4, '570511685330206599', 'Room 50, CR Building, No. 276, Shuangqing Rd, Chenghua District, Chengdu, China', '1992-04-10', 0, 0, 'fernandezjonathan', '2001-02-06', 'fernandez2007', '2014-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS63458729', 'Andrew Martinez', 1, '+81 90-4539-3807', 0, '900136667384422018', '49-kai, 5-2-17 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-01-09', 0, 0, 'mandre427', '2010-03-06', 'andrm', '2010-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS39528651', '姚云熙', 0, '+81 70-6881-4261', 2, '330357371500456619', '29-kai, 13-3-13 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1997-08-20', 0, 0, 'yyunx', '2014-06-12', 'yunxiya3', '2004-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS10070489', 'Mario Rogers', 1, '+44 (1223) 42 2394', 0, '682740289602318845', 'Unit 16, Oxford Eco Centre, 894 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1997-12-19', 0, 0, 'mario8', '2001-04-14', 'rogersmario', '2002-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS41179106', '鄭朝偉', 0, '+81 70-2042-2056', 2, '935214877522714830', '19-kai, 4-9-17 Kamihigashi, Hirano Ward, Osaka, Japan', '1987-01-20', 0, 0, 'cheng601', '2018-04-24', 'cchiuwai', '2003-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS79719486', '潘子韬', 1, '+1 213-859-5498', 0, '663360798095709484', '849 Wall Street Suite 34, Los Angeles, CA 90003, United States', '1993-05-03', 0, 0, 'zitaopan1974', '2021-06-27', 'pz3', '2004-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS61316765', '木村拓哉', 1, '+86 159-8172-6181', 2, '195057813122143936', 'Room 33, CR Building, 318 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1995-10-11', 0, 0, 'takuyki', '2012-12-18', 'kimura10', '2019-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS06974962', '林蒼士', 0, '+86 769-3579-1506', 0, '820070922227647500', 'Room 2, 316 Dongtai 5th St, Dongguan, China', '1986-04-24', 0, 0, 'hayaoshi', '2020-08-06', 'ah4', '2013-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS50620512', 'Douglas Shaw', 1, '+86 197-9544-9434', 3, '231720687409746170', '中国深圳罗湖区蔡屋围深南东路754号41栋', '1999-01-22', 0, 0, 'ds1983', '2012-06-11', 'dougs', '2016-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS81213257', '山田百花', 0, '+1 718-150-2472', 1, '342509791631761296', '675 1st Ave Suite 7, Brooklyn, NY 11220, United States', '1989-02-15', 0, 0, 'momoka430', '2000-11-28', 'yamadamomoka', '2013-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS78940777', '馬小慧', 1, '+1 213-081-6812', 1, '425072582455298717', '373 Figueroa Street Suite 44, Los Angeles, CA 90037, United States', '1998-06-13', 0, 0, 'masi', '2009-06-30', 'masiuwai3', '2009-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS15130255', '薛詩涵', 1, '+81 3-6366-9688', 2, '144338668474703493', '日本東京千代田区丸の内一丁目6番14号9号室', '1985-03-18', 0, 0, 'xus709', '2006-09-03', 'shxue', '2021-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS54373078', '鄧國明', 0, '+44 5007 477134', 3, '164714025314876453', 'Unit 45, Oxford Eco Centre, 247 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1986-01-09', 0, 0, 'tangkm', '2007-01-29', 'kmtang', '2004-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS06464028', '林璐', 0, '+44 (161) 536 7043', 2, '143015670696153145', 'Flat 46, 277 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1986-07-07', 0, 0, 'llin', '2020-08-29', 'linlu8', '2002-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS94884290', '张震南', 0, '+86 10-8955-0689', 3, '985863601786696589', 'Room 34, 902 FuXingMenNei Street, XiCheng District, Beijing, China', '1986-12-27', 0, 0, 'zzhen', '2014-04-05', 'zhangzh', '2021-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS51547783', 'Ernest Campbell', 0, '+44 7283 089010', 3, '816436872594814086', 'Block 44, 370 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1991-05-28', 0, 0, 'erc', '2006-08-17', 'ernestcamp10', '2002-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS99716929', 'Travis Washington', 1, '+1 330-987-3333', 3, '663558226934656144', '828 Fern Street Suite 1, Akron, OH 44307, United States', '1990-08-01', 0, 0, 'traviswashington', '2003-05-28', 'wastravis4', '2007-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS70098458', '容杰倫', 0, '+81 90-7253-9846', 2, '530965383577001940', 'Rm. 26, 13-3-13 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1987-09-22', 0, 0, 'chiehlunyung7', '2007-06-07', 'ychiehlun', '2001-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS44518862', 'Crystal Marshall', 1, '+81 52-846-2053', 4, '320200243156221438', '日本なごやし守山区瀬古東二丁目171番17号48階', '1988-09-05', 0, 0, 'crmarshall', '2000-02-06', 'cmarshall', '2001-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS61337660', '島田美咲', 0, '+81 80-2178-2389', 2, '863890816273969385', '日本おおさかし近江堂一丁目7番1号20号室', '1998-08-18', 0, 0, 'misaki1118', '2000-11-19', 'shimadamis1998', '2009-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS15045630', 'Francis Mitchell', 1, '+44 (20) 5843 8079', 1, '302568397074155439', 'Block 24, 519 Maddox Street, London, W1S 1PU, United Kingdom', '1989-04-19', 0, 0, 'fmitchell', '2008-06-19', 'francmitchell60', '2003-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS33581614', '萬家強', 1, '+81 11-723-2300', 3, '823002165602480895', '日本札幌中央区宮の森四条六丁目1番7号18階', '1988-06-18', 0, 0, 'meng3', '2020-06-27', 'kakeungme1959', '2000-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS60312468', '關家玲', 1, '+86 760-6677-0697', 2, '969256451973177853', '中国中山乐丰六路248号48楼', '1986-12-06', 0, 0, 'klk1984', '2016-03-15', 'kaling51', '2010-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS00658248', '韦子韬', 0, '+81 66-884-9121', 0, '883530489171100049', '12-kai, 4-9-13 Kamihigashi, Hirano Ward, Osaka, Japan', '1991-10-02', 0, 0, 'wez9', '2017-02-17', 'zitaow113', '2000-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS55280470', 'Timothy Lee', 0, '+1 718-363-0403', 3, '727881886180673341', '905 Nostrand Ave Apt 12, Brooklyn, NY 11216, United States', '1988-12-20', 0, 0, 'leet', '2003-10-20', 'leet9', '2000-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS12110655', '呂明詩', 0, '+1 213-850-6731', 1, '829927630190990339', '421 S Broadway Apt 10, Los Angeles, CA 90015, United States', '1997-05-14', 0, 0, 'luimingsze49', '2015-12-13', 'mslui', '2009-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS20995194', '狄國明', 0, '+86 28-7522-8453', 3, '616306757477076011', 'Room 6, No. 683, Shuangqing Rd, Chenghua District, Chengdu, China', '1991-10-30', 0, 0, 'kmti', '2005-01-27', 'tikwokming', '2015-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS09705221', '邵晓明', 1, '+86 155-9467-0422', 1, '303246598222719105', 'No.46 building, 575 68 Qinghe Middle St, Haidian District, Beijing, China', '1995-12-02', 0, 0, 'xiaomings', '2019-05-24', 'shao52', '2021-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS89891087', '汪震南', 0, '+81 52-761-6976', 3, '489713519851664829', '日本なごやし熱田区千年二丁目5番6号2階', '1986-07-25', 0, 0, 'wangzhennan', '2000-10-29', 'wangzhennan', '2000-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS48448911', '許祖兒', 0, '+81 74-480-0046', 4, '561034893417752399', '日本ならし西大寺赤田町一丁目7番10号21号室', '1989-08-01', 0, 0, 'choyee2016', '2015-08-05', 'chhu', '2018-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS49694589', 'Thomas Patel', 0, '+86 10-618-9151', 3, '045752779778379730', 'Room 30, 46 Dong Zhi Men, Dongcheng District, Beijing, China', '1989-05-29', 0, 0, 'thomasp', '2017-08-04', 'pathoma', '2002-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS79878799', '麥永發', 1, '+81 52-345-2202', 1, '861312705358310399', '23-kai, 2-5-5 Chitose, Atsuta Ward, Nagoya, Japan', '1993-05-18', 0, 0, 'mak404', '2020-05-29', 'wingfat318', '2003-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS03241895', '後藤陽太', 1, '+81 80-4985-0901', 3, '093027320427995565', '40F, 1-5-14, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-01-12', 0, 0, 'yota3', '2003-03-31', 'yotg', '2012-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS03205339', '河野玲奈', 0, '+81 80-3097-3605', 0, '948810455923010725', '44-kai, 5-2-17 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-10-30', 0, 0, 'konre', '2009-04-27', 'konor419', '2009-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS85566975', '邹詩涵', 1, '+86 196-9103-3531', 1, '492339400024884288', '中国广州市天河区天河路541号6号楼', '1993-08-25', 0, 0, 'zoushihan312', '2021-09-04', 'shihzou722', '2003-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS60851361', 'Tammy Carter', 1, '+86 147-2109-3146', 0, '463662696731440839', 'Room 26, CR Building, 114 FuXingMenNei Street, XiCheng District, Beijing, China', '1989-10-26', 0, 0, 'tammy6', '2010-05-23', 'cartert1', '2011-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS37832055', 'Robert Hawkins', 1, '+1 718-515-2063', 3, '361785415888814179', '931 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1996-05-13', 0, 0, 'robert10', '2016-11-02', 'robert1963', '2010-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS47443256', '唐惠妹', 1, '+86 164-4835-5685', 0, '403453043860561182', '中国成都市锦江区红星路三段484号华润大厦43室', '1987-10-25', 0, 0, 'tong83', '2003-12-04', 'huimeitong', '2020-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS48987813', '酒井美月', 0, '+81 66-332-3139', 2, '693363617171557789', '21-kai, 1-7-5 Omido, Higashiosaka, Osaka, Japan', '1993-10-19', 0, 0, 'sakai726', '2015-12-07', 'smitsu', '2001-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS04702586', '洪曉彤', 1, '+86 155-2193-6519', 4, '053946960670278052', 'Room 5, 637 Jianxiang Rd, Pudong, Shanghai, China', '1995-12-15', 0, 0, 'hht329', '2016-12-29', 'huhiutung515', '2003-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS82282442', 'Carol Cruz', 1, '+1 312-669-2698', 1, '951924079517801884', '246 Pedway Suite 34, Chicago, IL 60601, United States', '1985-12-24', 0, 0, 'crucarol', '2003-03-24', 'cc04', '2006-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS89815673', 'Shawn Ferguson', 0, '+81 80-0855-7267', 2, '015900672084951830', '23F, 1-1-16 Deshiro, Nishinari Ward, Osaka, Japan', '1992-04-25', 0, 0, 'shawnf813', '2009-02-01', 'shawferguson10', '2017-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS72901329', '林結翔', 0, '+86 769-8603-4622', 1, '174054532350023935', '中国东莞东泰五街222号8室', '1992-10-02', 0, 0, 'yuitohayas', '2022-01-31', 'yuitoh', '2019-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS53228133', '高田美咲', 1, '+44 (121) 755 8740', 2, '078280885583125415', 'Flat 27, 569 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1985-03-13', 0, 0, 'misakitak01', '2015-05-23', 'takmis803', '2012-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS90261493', '郭詩涵', 1, '+1 614-787-7464', 2, '481092142324282639', '470 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1988-06-14', 0, 0, 'gshi', '2009-05-07', 'guoshihan', '2020-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS36025338', '高木拓哉', 1, '+86 20-3199-8607', 1, '336127125578081189', '中国广州市白云区机场路棠苑街五巷976号11室', '1988-10-22', 0, 0, 'ttak', '2017-01-19', 'takagitakuya8', '2003-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS08467926', '新井樹', 0, '+86 169-6313-3015', 3, '270575889098970449', 'No.4 building, 322 Dongtai 5th St, Dongguan, China', '1993-03-01', 0, 0, 'araiitsu1995', '2005-08-02', 'araiitsuki40', '2004-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS93491126', '吳永權', 0, '+81 52-908-2716', 2, '982983765286424186', '38-kai, 3-19-6 Shimizu, Kita Ward, Nagoya, Japan', '1989-06-15', 0, 0, 'wkng', '2005-10-19', 'ngwk', '2002-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS66557331', '呂德華', 1, '+1 614-806-8299', 4, '383389269047383395', '119 Tremont Road Suite 38, Columbus, GA 43212, United States', '1994-03-17', 0, 0, 'takwahlu', '2006-03-07', 'takwahlui', '2013-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS99811438', '柴田拓哉', 0, '+81 90-4786-0127', 2, '529923956646279211', '8F, 3-9-16 Gakuenminami, Nara, Japan', '1997-02-14', 0, 0, 'shibata727', '2016-03-16', 'shibata8', '2017-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS10220880', '王國權', 0, '+81 90-2407-6516', 3, '763122958075953029', '日本おおさかし近江堂一丁目7番7号17号室', '1987-05-11', 0, 0, 'wkwokkuen1216', '2007-09-08', 'wokk318', '2018-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS74245803', '郑云熙', 0, '+86 769-047-7165', 2, '233735092776973422', '中国东莞环区南街二巷710号42号楼', '1998-04-06', 0, 0, 'zhengyunxi', '2002-08-04', 'yunxizheng', '2021-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS65578620', '文國榮', 1, '+81 11-592-8921', 0, '661170096370218524', '日本札幌厚別区上野幌一条二丁目1番7号23号室', '1988-11-13', 0, 0, 'kwman', '2019-11-29', 'kwokwing203', '2011-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS53730479', '彭震南', 1, '+44 5609 572446', 1, '561095366251758709', 'No.5 Main building, 139 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1994-07-05', 0, 0, 'zhennanp3', '2019-05-19', 'zhennanpeng7', '2005-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS95557445', 'Shawn Patel', 1, '+44 (121) 789 5618', 1, '959210046823951363', 'Flat 5, 658 New Street, Birmingham, B2 4DB, United Kingdom', '1995-05-17', 0, 0, 'shawnpatel', '2007-08-06', 'patelsha508', '2008-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS62469982', 'Ellen Chen', 0, '+81 90-9669-5490', 4, '037512884977009863', '日本なごやし瑞穂区河岸町四丁目20番10号34階', '1985-04-13', 0, 0, 'ellen5', '2019-03-08', 'ellenchen', '2000-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS75087720', '河野陽太', 0, '+81 80-3447-0326', 1, '314080062042288072', 'Rm. 38, 4 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1988-10-14', 0, 0, 'yotakon105', '2012-07-15', 'konoyota86', '2011-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS68989408', 'Micheal Bennett', 1, '+86 20-125-1011', 1, '602935981020999487', 'No.49 building, 850 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1994-07-16', 0, 0, 'micbennett3', '2003-08-10', 'micheal8', '2002-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS31890012', '武田花', 0, '+81 11-085-4908', 3, '277023515010406921', '日本札幌白石区菊水三条五丁目4番11号6号室', '1997-10-01', 0, 0, 'takedah', '2007-11-06', 'hant', '2015-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS74810687', '和田樹', 1, '+81 3-0017-7496', 2, '747791157670081053', '日本東京千代田区丸の内一丁目6番14号18号室', '1992-10-19', 0, 0, 'itsukwada', '2014-11-24', 'itsukiw3', '2004-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS05133376', '佐藤凛', 1, '+86 10-2459-4489', 4, '773508512498124286', '中国北京市西城区西長安街604号44号楼', '1992-11-20', 0, 0, 'satorin', '2018-01-11', 'sato114', '2018-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS03743255', '河野結翔', 0, '+1 330-173-4207', 3, '626969701647507206', '610 Fern Street Apt 4, Akron, OH 44307, United States', '1991-11-15', 0, 0, 'yuito721', '2000-08-08', 'konoyuit', '2000-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS50246373', '應曉彤', 1, '+44 (1865) 99 4166', 2, '611342514739459118', 'Unit 6, Oxford Eco Centre, 341 Park End St, Oxford, OX1 1JD, United Kingdom', '1990-12-27', 0, 0, 'yinhi9', '2021-10-20', 'yinghiutung', '2018-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS73441157', '周永發', 1, '+86 146-3806-3439', 3, '561749810264349738', 'Room 41, CR Building, 427 Shanhu Rd, Dongguan, China', '1988-05-29', 0, 0, 'chowwingfat1021', '2005-02-22', 'cwingfat', '2016-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS53279634', '中森聖子', 1, '+81 70-4315-1616', 1, '521267799158332719', '13F, 2-1-2 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1990-10-11', 0, 0, 'seiko1972', '2011-03-07', 'seikona', '2006-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS59774426', '唐玲玲', 1, '+86 755-769-4362', 3, '404648039003177718', '中国深圳福田区景田东一街735号华润大厦30室', '1994-11-11', 0, 0, 'tolingling', '2019-04-18', 'linglingtong', '2002-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS85790251', '石川蓮', 0, '+86 21-054-8467', 4, '884913671414082155', 'No.4 building, 682 Middle Huaihai Road, Huangpu District, Shanghai, China', '1990-06-27', 0, 0, 'rishik', '2006-11-05', 'ishikawaren', '2016-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS97474792', 'Sandra Lopez', 1, '+86 192-2671-7327', 4, '722813093705396914', '中国深圳罗湖区清水河一路323号47栋', '1985-03-16', 0, 0, 'sandral', '2003-02-20', 'lopezsan', '2017-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS93527512', 'Virginia Black', 0, '+81 80-0865-2422', 4, '766285146155602675', 'Rm. 21, 5-4-13 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1993-07-21', 0, 0, 'blacvirginia', '2014-03-10', 'blackvirginia', '2014-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS73165125', '周學友', 1, '+1 330-946-7872', 2, '194124978189220116', '752 Fern Street Apartment 24, Akron, OH 44307, United States', '1986-12-11', 0, 0, 'chowhy', '2018-09-18', 'hychow1221', '2013-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS40950652', '今井紗良', 0, '+86 769-7903-2629', 1, '529364305468168599', '中国东莞环区南街二巷867号34号楼', '1986-01-26', 0, 0, 'imaisar', '2017-01-03', 'imsa6', '2010-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS40602569', '盧家輝', 1, '+44 5985 298862', 3, '432377496663302001', 'Unit 43, Oxford Eco Centre, 631 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1998-12-01', 0, 0, 'kaflo7', '2018-12-08', 'kafai09', '2017-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS45465680', '馬家玲', 1, '+81 52-368-5952', 2, '720522773091554804', '日本なごやし北区清水三丁目19番6号23階', '1993-03-28', 0, 0, 'makl4', '2002-11-28', 'klm', '2013-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS93752983', 'Eugene Perez', 0, '+44 (121) 102 8778', 3, '167770008668940644', 'Flat 40, 738 New Street, Birmingham, B2 4DB, United Kingdom', '1988-02-28', 0, 0, 'peu2017', '2017-10-08', 'ep3', '2005-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS36670452', 'Paul Simpson', 0, '+81 70-6654-0048', 3, '546675308402814513', '8-kai, 3-27-8 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-03-08', 0, 0, 'pauls', '2003-04-09', 'psimpson1105', '2016-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS74007873', '有村悠人', 0, '+81 11-338-8332', 2, '786195924571173461', 'Rm. 29, 6-1-4, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1986-02-04', 0, 0, 'yarimura629', '2019-01-25', 'arimurayuto3', '2016-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS88674650', '杜宇宁', 0, '+86 168-0583-5690', 1, '113750383161799756', '中国深圳福田区深南大道729号27楼', '1992-01-06', 0, 0, 'duy', '2009-05-01', 'du1', '2004-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS79321868', '今井和真', 1, '+1 212-983-7464', 0, '387279991275533852', '613 West Houston Street Apartment 2, New York, NY 10014, United States', '1997-08-20', 0, 0, 'kazumimai86', '2004-01-18', 'kazuimai', '2018-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS88973480', '何玲玲', 1, '+81 70-5028-9311', 1, '935869713072257752', 'Rm. 49, 13-3-6 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1986-06-03', 0, 0, 'linh', '2017-10-02', 'lingling4', '2012-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS53105049', '陳慧琳', 1, '+86 760-663-1270', 1, '059520246816892265', '中国中山京华商圈华夏街102号17室', '1986-11-26', 0, 0, 'chanwl', '2019-12-30', 'wailam42', '2020-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS78251404', 'Edward West', 1, '+81 70-1055-5653', 0, '620706548189710117', '日本札幌厚別区上野幌一条二丁目1番1号14階', '1997-12-11', 0, 0, 'west710', '2016-06-20', 'westedward', '2002-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS85257345', 'Janice Smith', 0, '+44 5272 027453', 1, '776467937754279221', 'Unit 11, Oxford Eco Centre, 277 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1994-10-25', 0, 0, 'janice503', '2015-01-09', 'smith10', '2018-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS76884406', '吕岚', 1, '+86 133-1026-2233', 2, '964050067737769620', '中国深圳罗湖区清水河一路413号40室', '1985-09-06', 0, 0, 'lanl', '2013-08-15', 'lanlu', '2016-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS33889951', '邵詩涵', 0, '+86 760-4041-0288', 1, '887582426771366093', 'No.47 building, 663 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1991-05-08', 0, 0, 'shihanshao2', '2017-11-18', 'shao59', '2010-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS47528217', 'Sandra Robertson', 1, '+1 838-877-1415', 1, '907277111188728056', '997 Broadway Apartment 9, Albany, NY 12207, United States', '1996-12-16', 0, 0, 'robertson77', '2016-01-02', 'sandrarobertson8', '2020-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS01923969', '罗云熙', 0, '+81 66-894-5287', 0, '144311922206685850', 'Rm. 32, 1-1-9 Deshiro, Nishinari Ward, Osaka, Japan', '1994-12-11', 0, 0, 'lyunxi', '2000-02-16', 'luoy', '2017-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS28247035', '陆致远', 1, '+86 158-4813-2484', 1, '424664852042938204', '中国东莞坑美十五巷607号13楼', '1990-01-29', 0, 0, 'zhiyuan1977', '2017-03-30', 'lz58', '2005-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS28492053', '元浩然', 0, '+81 74-242-1092', 4, '447639573482580776', '10F, 12 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-05-02', 0, 0, 'hoyinyuen', '2006-01-22', 'yhoyin129', '2002-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS58002305', '岡本紗良', 0, '+81 66-640-0545', 1, '390067409183364739', '日本おおさかし西成区出城一丁目1番19号34階', '1998-02-06', 0, 0, 'okamotosara1209', '2005-12-29', 'sokamoto', '2020-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS23214962', '萧秀英', 0, '+86 199-2472-6905', 0, '336021886824329234', 'Room 45, 317 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1986-08-16', 0, 0, 'xxiao10', '2003-11-27', 'xiao2', '2008-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS46104504', '鐘浩然', 1, '+44 (151) 163 7799', 2, '075664497595557081', 'Unit 31, Oxford Eco Centre, 88 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1990-06-22', 0, 0, 'hoyin1987', '2000-09-12', 'hych16', '2012-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS47775533', '大野蒼士', 0, '+86 10-7853-3001', 2, '727156821839226078', '33F, 949 Yueliu Rd, Fangshan District, Beijing, China', '1990-11-24', 0, 0, 'oaoshi', '2004-04-26', 'oaoshi', '2021-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS21176809', '钟詩涵', 1, '+86 138-2651-6235', 0, '780347842602288636', 'No.4 building, 543 Tianhe Road, Tianhe District, Guangzhou, China', '1994-03-20', 0, 0, 'zhong2', '2007-12-13', 'sz207', '2005-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS28111478', '許梓晴', 0, '+44 7305 991670', 3, '285999459391948512', 'Block 38, 524 Park End St, Oxford, OX1 1JD, United Kingdom', '1987-04-13', 0, 0, 'tchui2', '2004-04-28', 'huitc', '2005-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS79994426', '彭杰宏', 1, '+86 28-724-4611', 4, '431847796119799617', '中国成都市成华区玉双路6号667号3号楼', '1992-12-13', 0, 0, 'jiehong1', '2014-08-12', 'jiehongpeng', '2006-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS29070231', '郑安琪', 1, '+1 213-396-1379', 3, '503420743316831605', '834 S Broadway Suite 50, Los Angeles, CA 90015, United States', '1992-06-02', 0, 0, 'azheng96', '2002-05-21', 'anqi8', '2004-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS10774784', '島田絢斗', 1, '+86 28-872-1627', 2, '560027441959881547', '中国成都市成华区双庆路886号11室', '1985-02-08', 0, 0, 'as328', '2002-01-01', 'ayato2', '2012-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS56348608', '石川美月', 1, '+81 80-1367-4072', 1, '497935506298529155', '27F, 6-1-2, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-11-04', 0, 0, 'mii', '2010-02-26', 'ishikawamits5', '2005-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS56798397', '森樹', 0, '+44 (116) 497 6348', 1, '578929282553019930', 'Block 21, 166 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1992-11-12', 0, 0, 'im2', '2017-02-28', 'imor', '2011-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS82426570', '陶子韬', 0, '+1 213-728-0879', 1, '227415380565476263', '357 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1985-11-15', 0, 0, 'zitao810', '2015-04-09', 'zitaotao', '2007-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS86965465', '宮本樹', 1, '+44 (121) 287 5027', 2, '399340601032774742', 'Flat 7, 469 New Street, Birmingham, B2 4DB, United Kingdom', '1997-11-13', 0, 0, 'itsukm', '2000-02-04', 'itsmiyam10', '2010-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS05637297', '任嘉伦', 1, '+44 5158 981044', 1, '529423880118306630', 'No.9 Main building, 180 Pollen Street, London, W1S 1NG, United Kingdom', '1992-11-09', 0, 0, 'rjialun', '2018-01-02', 'jialunr', '2004-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS88820897', '傅秀英', 0, '+86 760-8830-3842', 3, '813862949597680814', 'Room 43, 136 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1995-08-21', 0, 0, 'xiuyingf', '2003-02-08', 'fu1980', '2013-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS88684616', 'Chad Lee', 1, '+81 74-698-0597', 2, '094335947598143407', '日本ならし大和郡山市本庄町一丁目1番13号2階', '1998-11-12', 0, 0, 'chad15', '2003-01-11', 'chadlee602', '2011-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS10978257', '董安琪', 1, '+86 755-771-3237', 4, '262649557372175751', '中国深圳罗湖区清水河一路240号20楼', '1995-07-21', 0, 0, 'ad8', '2018-03-25', 'donga', '2015-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS53677739', '山下美緒', 0, '+86 197-9767-2680', 4, '337576505973041933', '中国北京市房山区岳琉路682号华润大厦31室', '1993-08-16', 0, 0, 'yamashitamio617', '2003-10-04', 'mioyamas', '2014-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS48563755', 'Rodney Campbell', 0, '+86 10-6190-6804', 3, '211772243340172862', 'Room 44, CR Building, 4 FuXingMenNei Street, XiCheng District, Beijing, China', '1989-01-10', 0, 0, 'camro', '2010-04-19', 'carod', '2010-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS82440326', 'Emily Mendoza', 0, '+1 838-137-5778', 3, '807336922428390165', '774 Broadway Apartment 44, Albany, NY 12207, United States', '1987-05-20', 0, 0, 'emim98', '2011-09-07', 'mendozaemily511', '2017-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS46143729', '橋本紗良', 0, '+1 718-281-6910', 3, '771041295475793644', '84 Bergen St Apartment 23, Brooklyn, NY 11217, United States', '1995-12-28', 0, 0, 'sara1005', '2004-04-21', 'sarahas5', '2007-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS94213582', '胡麗欣', 0, '+86 769-2918-8565', 3, '931094967590483238', 'No.39 building, 908 Shanhu Rd, Dongguan, China', '1985-05-10', 0, 0, 'laiyaw', '2005-09-19', 'wuly5', '2010-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS81225479', '松田凛', 0, '+44 7901 858441', 3, '126717573239743827', 'Block 17, 114 Portland St, Manchester, M1 3LA, United Kingdom', '1985-03-15', 0, 0, 'rinm1119', '2006-12-28', 'rinma409', '2021-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS60442993', '斎藤彩乃', 1, '+86 21-4212-4366', 2, '596268110687320141', '中国上海市浦东新区健祥路171号18楼', '1988-12-18', 0, 0, 'saiayano6', '2013-06-01', 'saitoa519', '2016-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS32506783', 'Danny Cook', 1, '+81 3-5994-0482', 4, '144046698012101013', 'Rm. 27, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1991-11-21', 0, 0, 'cdanny', '2001-01-03', 'dannycook', '2001-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS83967073', '丸山湊', 0, '+86 10-600-3618', 1, '000805912329396229', '21F, 131 68 Qinghe Middle St, Haidian District, Beijing, China', '1995-10-28', 0, 0, 'minmaruyama87', '2009-12-23', 'maruminato', '2008-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS49562097', '常詩涵', 0, '+81 3-5223-8002', 4, '498213154295047104', '30-kai, 3-15-14 Ginza, Chuo-ku, Tokyo, Japan', '1997-04-18', 0, 0, 'shihan9', '2018-03-08', 'chsh', '2010-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS54691257', 'Helen Peterson', 0, '+81 90-7846-5673', 1, '718058801513906456', '日本ならし西大寺赤田町一丁目7番10号11階', '1991-06-09', 0, 0, 'phelen1117', '2010-03-18', 'phelen', '2000-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS37014798', '叶嘉伦', 0, '+81 66-282-9346', 4, '470224940569296743', '日本おおさかし近江堂一丁目7番15号2階', '1985-12-06', 0, 0, 'jialye716', '2007-06-06', 'ye3', '2006-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS91455708', '梅秀文', 0, '+1 213-570-5049', 3, '137540312679600802', '702 Alameda Street Apartment 29, Los Angeles, CA 90002, United States', '1991-12-13', 0, 0, 'msaum9', '2020-05-29', 'muism', '2009-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS16598864', '河野葉月', 1, '+86 171-4400-7463', 3, '430000157364515803', '中国上海市闵行区宾川路535号36楼', '1992-04-26', 0, 0, 'kh828', '2018-06-28', 'konohazuki919', '2001-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS39140890', '工藤七海', 1, '+81 74-277-7887', 3, '319951670959242746', 'Rm. 38, 1-7-1 Saidaiji Akodacho, Nara, Japan', '1998-01-16', 0, 0, 'nanami8', '2003-10-23', 'kudonanami', '2008-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS57514230', 'Billy Soto', 1, '+86 28-6587-7002', 4, '734425196234718991', 'No.8 building, No.400, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-01-23', 0, 0, 'bsoto606', '2011-10-11', 'sotobill', '2009-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS65103836', '中村湊', 1, '+44 (151) 180 8232', 1, '986723885258922078', 'Block 25, 614 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1990-11-20', 0, 0, 'minnakam1229', '2010-02-21', 'minato93', '2008-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS60247481', '彭明', 0, '+86 190-2381-7941', 3, '419367561840547328', '中国广州市越秀区中山二路18号26号楼', '1997-05-28', 0, 0, 'pangming', '2021-04-28', 'mpang1201', '2021-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS48688376', 'Nicole Fisher', 0, '+44 (1223) 57 1963', 1, '438936198507202903', 'Unit 44, Oxford Eco Centre, 950 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1997-06-27', 0, 0, 'nicole3', '2014-03-19', 'nifisher', '2003-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS87253489', '劉國權', 1, '+86 139-2894-1739', 0, '116563069415892018', 'No.46 building, 837 Kengmei 15th Alley, Dongguan, China', '1990-02-06', 0, 0, 'kwlau2', '2003-08-17', 'kklau', '2021-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS84184117', '蔡仲賢', 1, '+86 21-8588-5697', 2, '709881646976773303', 'Room 41, CR Building, 510 Ganlan Rd, Pudong, Shanghai, China', '1995-09-22', 0, 0, 'chochu', '2003-08-10', 'choicy', '2009-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS28980067', '姚詩涵', 1, '+44 (161) 976 9521', 4, '851937495868890583', 'No.3 Main building, 46 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-09-23', 0, 0, 'shihya', '2006-02-11', 'shiya821', '2012-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS42846955', '佘玲玲', 0, '+81 66-146-4527', 1, '531318744050712694', '日本おおさかし近江堂一丁目7番16号20階', '1996-10-29', 0, 0, 'shlingling328', '2018-04-19', 'linglings', '2011-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS73794003', '原田美咲', 0, '+81 70-4964-2848', 1, '777304613166767649', '24-kai, 3-27-9 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1986-11-16', 0, 0, 'misakiharada', '2005-10-03', 'haramis', '2004-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS91711780', '藤井陸', 0, '+86 21-267-6322', 2, '463393954618178703', 'No.33 building, 1 Ganlan Rd, Pudong, Shanghai, China', '1989-07-17', 0, 0, 'friku1985', '2019-10-05', 'rikufuj84', '2002-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS67873269', '丁詩涵', 1, '+81 11-687-6118', 1, '788665122120950616', '日本札幌白石区菊水三条五丁目4番2号9階', '1986-09-07', 0, 0, 'shihdi731', '2001-02-05', 'shihanding221', '2013-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS31339841', '雷詩君', 0, '+1 718-562-4533', 0, '134404457569950410', '680 1st Ave Suite 33, Brooklyn, NY 11220, United States', '1993-02-26', 0, 0, 'louszekwan4', '2009-09-02', 'szekwanlou125', '2003-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS37385616', 'Todd Shaw', 1, '+86 21-870-3537', 0, '720612211538932469', 'Room 20, CR Building, 333 Hongqiao Rd., Xu Hui District, Shanghai, China', '1985-02-16', 0, 0, 'todd4', '2016-02-01', 'ts69', '2019-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS60430626', '房浩然', 1, '+1 330-265-4181', 2, '832031108197821406', '687 West Market Street Suite 36, Akron, OH 44333, United States', '1989-05-04', 0, 0, 'hyfong121', '2010-06-04', 'hoyin10', '2020-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS43495615', '有村詩乃', 1, '+1 614-888-5216', 1, '087304115855532434', '977 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1994-12-01', 0, 0, 'arims', '2008-08-08', 'arimura10', '2006-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS15368237', '樂梓晴', 1, '+1 614-784-1544', 3, '558254159308547228', '139 Tremont Road Apartment 17, Columbus, GA 43212, United States', '1987-07-05', 0, 0, 'loktszching4', '2020-07-18', 'tclok', '2013-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS69944588', '官頴璇', 0, '+44 5613 522157', 0, '184074823845136897', 'Flat 18, 938 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1995-11-26', 0, 0, 'koowingsuen', '2008-03-30', 'koonwingsuen1204', '2016-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS56884241', '林彩乃', 1, '+1 614-241-8832', 1, '319656709717227806', '470 East Alley Apt 33, Columbus, GA 43201, United States', '1993-10-24', 0, 0, 'ayanhayashi7', '2007-07-04', 'ayanoh2006', '2000-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS86029709', '橋本翼', 0, '+86 760-932-6157', 2, '301898678884701055', '中国中山天河区大信商圈大信南路108号华润大厦47室', '1987-05-24', 0, 0, 'tsubasah10', '2010-04-24', 'hatsubasa', '2016-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS56495919', '盧裕玲', 1, '+1 212-415-1203', 3, '011227637406801701', '665 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1991-08-24', 0, 0, 'lyl', '2000-09-13', 'lyl', '2015-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS08999635', '郑秀英', 0, '+86 182-6733-8034', 3, '298548448126713393', '中国北京市延庆区028县道764号30楼', '1989-03-09', 0, 0, 'zhengxi', '2004-12-23', 'xiuyiz61', '2012-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS90097847', '狄潤發', 0, '+81 70-2264-7578', 1, '557881562497407158', '2F, 5 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1994-08-18', 0, 0, 'yunfat2002', '2005-07-11', 'tyf', '2021-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS59723583', 'Frank Hughes', 1, '+86 20-771-1578', 3, '123697055549030919', 'No.12 building, 772 Jiangnan West Road, Haizhu District, Guangzhou, China', '1996-06-04', 0, 0, 'hughfrank', '2001-02-04', 'frankh11', '2021-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS58321013', '黄詩涵', 0, '+1 213-333-1679', 1, '587045949378443134', '459 S Broadway Apartment 44, Los Angeles, CA 90015, United States', '1994-06-29', 0, 0, 'shihanhuang', '2007-03-15', 'shu', '2007-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS39977273', '岡本紗良', 0, '+81 70-4600-6099', 2, '797504894583559842', 'Rm. 22, 1-6-9, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-11-14', 0, 0, 'okamotosara', '2018-05-09', 'saraokamoto', '2006-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS02855539', 'Edith Washington', 1, '+1 213-587-4372', 0, '675358112964523976', '969 Alameda Street Apartment 47, Los Angeles, CA 90002, United States', '1996-03-16', 0, 0, 'washingtonedith309', '2001-04-03', 'washingtonedit1015', '2011-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS88648573', '廖震南', 1, '+44 7545 302099', 3, '141553886185363641', 'No.35 Main building, 275 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1986-07-26', 0, 0, 'liao16', '2003-05-19', 'zli14', '2022-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS79981006', '杜家強', 1, '+44 7606 476863', 0, '215321678245732769', 'Unit 3, Oxford Eco Centre, 156 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1988-04-10', 0, 0, 'kakeung312', '2002-04-06', 'tokk', '2000-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS82942027', '山本健太', 1, '+44 (151) 328 7468', 1, '798894775675096778', 'Block 15, 482 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1993-01-18', 0, 0, 'yamamotokent', '2005-07-23', 'kenta3', '2018-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS44139000', '韩震南', 1, '+81 3-3444-6007', 0, '346854914422741743', '日本東京渋谷区代々木二丁目3番10号5号室', '1988-06-04', 0, 0, 'hanzhennan', '2017-02-15', 'zha', '2018-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS07331059', '池田結翔', 0, '+81 52-159-1598', 0, '902568943035129774', '日本なごやし北区清水三丁目19番14号4階', '1998-12-07', 0, 0, 'ikedayuito7', '2021-12-09', 'ikeda10', '2008-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS64367532', '蔡志遠', 0, '+81 11-606-5993', 0, '527142790207487076', 'Rm. 29, 2-1-18 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1996-02-10', 0, 0, 'chochiyuen', '2012-09-27', 'cchiyuen', '2007-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS98307956', 'Frances Warren', 1, '+1 212-963-7139', 4, '157219534996785914', '351 West Houston Street 3rd Floor, New York, NY 10014, United States', '1986-12-23', 0, 0, 'frances10', '2001-06-17', 'warren1947', '2008-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS92586933', '阮慧儀', 1, '+1 212-210-6612', 3, '883303001475650646', '840 Bank Street Apartment 19, New York, NY 10014, United States', '1987-06-24', 0, 0, 'yuenwy', '2006-11-27', 'yuewaiyee', '2003-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS20859895', '原陸', 0, '+86 755-374-0027', 2, '782390289182278756', 'No.32 building, 755 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1997-11-17', 0, 0, 'hriku', '2004-12-18', 'hara57', '2021-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS92846700', '顾晓明', 1, '+44 7672 681636', 1, '985251910802938075', 'Flat 35, 542 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-08-05', 0, 0, 'xiaominggu', '2007-04-08', 'xig', '2007-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS61361429', '马詩涵', 1, '+81 80-3075-3246', 4, '684770210864629243', '日本札幌厚別区上野幌一条二丁目1番12号11階', '1987-08-12', 0, 0, 'shim', '2011-02-10', 'shihanma', '2014-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS15085726', '藤田美緒', 0, '+81 90-4207-1398', 4, '793794608998833001', '日本なごやし熱田区千年二丁目5番15号17階', '1995-09-02', 0, 0, 'fujim5', '2012-06-13', 'mio8', '2011-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS39836351', 'Timothy Barnes', 0, '+86 178-2438-6763', 2, '895647152470584415', 'Room 4, No. 646, Shuangqing Rd, Chenghua District, Chengdu, China', '1996-12-12', 0, 0, 'barnestimo', '2007-01-03', 'timothybarnes219', '2015-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS18273942', '横山涼太', 1, '+86 10-331-4838', 3, '223612472517385506', 'No.31 building, 209 East Wangfujing Street, Dongcheng District , Beijing, China', '1989-12-21', 0, 0, 'yokryo', '2012-10-12', 'yokoyama1', '2004-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS29040659', '石井光莉', 0, '+86 755-5419-9348', 3, '335614780039793550', 'Room 4, 361 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1995-02-12', 0, 0, 'hi45', '2015-10-30', 'ishii3', '2021-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS22848755', '夏睿', 1, '+86 164-1957-5452', 3, '444852293197762327', '20F, 933 Lefeng 6th Rd, Zhongshan, China', '1990-02-27', 0, 0, 'xru', '2018-05-02', 'ruixia56', '2016-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS97920441', '渡部凛', 0, '+44 (116) 471 3574', 1, '092988383340767732', 'No.5 Main building, 335 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1988-02-03', 0, 0, 'rinwata', '2004-08-07', 'riwatanabe', '2003-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS85843149', '松田明菜', 0, '+44 7656 839793', 2, '894197908556365132', 'Unit 32, Oxford Eco Centre, 505 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1997-09-01', 0, 0, 'matsudaakina3', '2012-05-26', 'akinama', '2013-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS66604298', 'Martha Clark', 0, '+1 213-384-2310', 0, '094434326837250116', '662 S Broadway Suite 29, Los Angeles, CA 90015, United States', '1991-10-02', 0, 0, 'marthacla331', '2004-08-05', 'clarkmartha', '2003-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS50909530', '樂頴璇', 0, '+86 135-6325-1958', 1, '222090898986870071', 'No.31 building, 147 Xiaoping E Rd, Baiyun , Guangzhou, China', '1992-03-31', 0, 0, 'lok84', '2004-06-01', 'wingsuenlo18', '2004-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS92171067', '馮慧珊', 1, '+44 7920 066856', 3, '148769925056327728', 'No.21 Main building, 241 Hanover Street, London, W1S 1YD, United Kingdom', '1995-10-21', 0, 0, 'fungwaisan', '2008-12-06', 'fung1948', '2017-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS25901730', '曹震南', 1, '+81 3-1441-8463', 4, '368859691502468404', 'Rm. 12, 1-6-7, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-06-19', 0, 0, 'caoz', '2014-11-30', 'caozhe', '2015-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS83832237', '唐云熙', 1, '+86 187-1109-3846', 4, '457247240612999651', '中国广州市越秀区中山二路400号42栋', '1987-04-05', 0, 0, 'tangyunxi', '2018-09-01', 'tang831', '2014-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS63949241', '袁宇宁', 1, '+44 (20) 4568 4372', 3, '415124136919820728', 'No.41 Main building, 443 Pollen Street, London, W1S 1NG, United Kingdom', '1994-12-21', 0, 0, 'yuanyuning', '2010-08-15', 'yuanyuning10', '2014-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS81248403', '藤原大和', 1, '+44 5442 504483', 2, '489344673244747197', 'Block 1, 45 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1988-01-26', 0, 0, 'yfujiwara', '2009-01-19', 'yafu', '2005-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS94682009', '鄧安琪', 1, '+44 (121) 032 4794', 2, '072143341740525517', 'Block 19, 498 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1993-04-25', 0, 0, 'oktang', '2009-01-18', 'onkay210', '2018-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS00836208', '史杰宏', 0, '+1 212-727-3736', 4, '780160629019886347', '187 Bank Street Apt 33, New York, NY 10014, United States', '1995-03-09', 0, 0, 'jiehongsh', '2019-08-25', 'shi6', '2020-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS25248963', '宮本百花', 1, '+81 66-948-4144', 3, '199095610332648840', '日本おおさかし近江堂一丁目7番15号14階', '1991-05-10', 0, 0, 'mmomoka', '2010-04-08', 'mimomok', '2002-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS29590239', '钱云熙', 1, '+86 760-2893-0687', 3, '735285376602688000', 'No.4 building, 396 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1990-10-17', 0, 0, 'yunxi49', '2010-07-21', 'qianyunxi508', '2015-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS74424169', 'Gregory Sanders', 0, '+81 80-0410-9097', 2, '088752391074547511', '日本おおさかし西成区出城一丁目1番7号21号室', '1993-02-01', 0, 0, 'gregosa', '2013-12-16', 'sagregory', '2004-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS68009741', '阿部和真', 0, '+81 11-703-4387', 1, '262359655086444317', 'Rm. 20, 5-2-17 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-04-24', 0, 0, 'abekazuma43', '2008-06-10', 'abka330', '2013-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS30235352', '木下光', 1, '+81 66-760-5905', 2, '297578401143179990', '9F, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1988-11-07', 0, 0, 'hikaru701', '2002-02-05', 'hikakino81', '2019-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS69151994', '田明詩', 0, '+1 838-075-2064', 4, '910373906493199539', '613 Central Avenue Apt 48, Albany, NY 12206, United States', '1989-10-16', 0, 0, 'mingstin1', '2021-07-20', 'mingszetin', '2007-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS24309277', '于秀英', 1, '+44 7267 813221', 2, '826501433767881138', 'Flat 48, 664 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1997-06-30', 0, 0, 'yu308', '2009-06-05', 'xiuying93', '2020-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS72106046', '森百花', 1, '+81 11-166-4675', 3, '015103453937636325', '日本札幌白石区菊水三条五丁目4番15号19号室', '1986-12-26', 0, 0, 'momokamori', '2013-04-10', 'morimomoka', '2003-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS65132142', '魏子韬', 0, '+81 80-6214-8452', 1, '639154460761605033', '30F, 2-1-6 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1990-01-12', 0, 0, 'wz429', '2010-02-10', 'ziwe', '2015-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS13928908', '苑玲玲', 1, '+44 (161) 661 5864', 2, '610763673048567656', 'Flat 43, 867 Mosley St, Manchester, M2 3AQ, United Kingdom', '1998-09-03', 0, 0, 'lingling2', '2006-01-12', 'yll6', '2015-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS86613013', '张岚', 1, '+44 (1865) 23 4961', 2, '496775067208354978', 'Block 25, 155 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1989-01-27', 0, 0, 'lanz5', '2006-04-21', 'lzhang4', '2019-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS38079527', '吳志遠', 1, '+44 5700 669838', 3, '658454896192078709', 'Flat 9, 938 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1985-12-24', 0, 0, 'ngcy7', '2012-10-05', 'chiyuenng', '2009-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS75995662', '山崎光莉', 1, '+81 3-0811-0037', 1, '228633186910366795', '43F, 1-6-16, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-07-14', 0, 0, 'hikari829', '2006-02-23', 'yamazakihikari7', '2017-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS11526128', '容永權', 0, '+81 90-1044-2748', 3, '759142791150271132', '日本なごやし北区楠味鋺三丁目80番18号34号室', '1987-04-16', 0, 0, 'yungwk3', '2000-10-13', 'wkyung', '2006-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS64578921', '江永發', 0, '+86 167-8893-6659', 2, '304115956105962074', '中国东莞坑美十五巷504号26室', '1986-07-28', 0, 0, 'kowi77', '2003-07-22', 'kwf96', '2009-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS16466634', '蔡玲玲', 0, '+86 177-5180-7670', 1, '172320387922971151', 'Room 41, 388 West Chang''an Avenue, Xicheng District, Beijing, China', '1990-01-19', 0, 0, 'choilingling', '2016-12-14', 'choilingling61', '2004-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS31495880', '岡田七海', 0, '+86 760-122-3278', 2, '228078457723830654', 'No.27 building, 786 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1986-11-14', 0, 0, 'nanami1950', '2005-04-20', 'nanamiokada', '2013-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS53094674', '藤原架純', 1, '+86 138-6136-1439', 1, '103499122791919671', '中国成都市成华区双庆路563号7室', '1988-04-13', 0, 0, 'kasufuj1942', '2007-06-03', 'fujiwkasumi', '2000-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS49830908', '斉藤陽太', 1, '+1 213-430-5472', 3, '203232917338617554', '1 Grape Street Suite 34, Los Angeles, CA 90002, United States', '1992-04-23', 0, 0, 'yotasa', '2015-02-22', 'syota8', '2008-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS48573998', '佐々木彩乃', 0, '+86 20-8760-3851', 3, '272198384488445270', 'Room 46, CR Building, 951 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1998-10-30', 0, 0, 'sasakiayan', '2010-04-02', 'ayano5', '2017-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS65166705', 'Jesus Myers', 1, '+86 173-3631-5351', 4, '323514016003661351', '中国北京市东城区东单王府井东街982号华润大厦48室', '1997-03-13', 0, 0, 'jmyers', '2003-12-25', 'jesus2014', '2021-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS59769652', '胡家強', 1, '+81 70-9330-4805', 3, '055402467246260446', '日本なごやし北区清水三丁目19番14号32階', '1996-04-27', 0, 0, 'kkw1964', '2003-10-18', 'kakeungwu', '2008-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS72834629', 'Troy Daniels', 0, '+1 614-644-3794', 1, '439862135344365477', '23 Wicklow Road Suite 6, Columbus, GA 43204, United States', '1988-02-04', 0, 0, 'dtro', '2008-04-12', 'troyd', '2018-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS70544981', '汪慧嫻', 1, '+86 145-7159-1151', 1, '605753317912816076', '36F, 268 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1988-04-30', 0, 0, 'wongwh', '2013-05-05', 'wawong1', '2016-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS20740432', '有村涼太', 0, '+44 5737 361014', 1, '014781109486309012', 'Flat 30, 133 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1997-10-17', 0, 0, 'arimura205', '2009-08-12', 'arimura1123', '2012-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS40312949', 'Peter Mendez', 0, '+86 20-313-1057', 4, '582144085144464157', 'Room 36, CR Building, 646 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1989-10-05', 0, 0, 'mendezpet67', '2017-05-12', 'mendepete', '2016-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS62191909', 'Marilyn Reed', 0, '+86 184-4814-0144', 0, '567692453255300192', 'No.23 building, 406 Dong Zhi Men, Dongcheng District, Beijing, China', '1987-01-14', 0, 0, 'reedmarilyn2004', '2011-11-10', 'reed10', '2011-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS79890337', 'Marcus Reynolds', 1, '+81 52-545-0196', 4, '549383652695397008', '日本なごやし北区清水三丁目19番2号32号室', '1995-10-05', 0, 0, 'rmarcus', '2011-06-06', 'marcusreynolds', '2013-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS29171247', '鈴木桜', 0, '+81 11-211-7612', 4, '810722583109042360', '日本札幌白石区菊水三条五丁目4番16号46階', '1997-11-24', 0, 0, 'suzsakura', '2002-06-26', 'sas', '2000-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS10749591', '莫志遠', 1, '+81 3-5795-6253', 3, '717453198367171240', '49F, 1-6-1, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1997-01-16', 0, 0, 'mchiyuen', '2018-01-04', 'mocy', '2018-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS35123720', '谢睿', 1, '+81 90-1478-4817', 3, '046445478240041678', '35F, 6 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1988-12-05', 0, 0, 'xierui', '2018-10-28', 'ruixie', '2015-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS77624539', '陶云熙', 0, '+86 28-761-1741', 4, '245700590776022566', '中国成都市成华区双庆路496号华润大厦26室', '1993-12-25', 0, 0, 'yta324', '2016-06-04', 'yta', '2007-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS98575496', '向天樂', 1, '+81 70-2951-0362', 4, '145558668433938477', '日本なごやし北区清水三丁目19番2号7階', '1998-06-14', 0, 0, 'heungtinlok', '2016-06-15', 'heung99', '2021-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS47224613', '方子韬', 1, '+86 28-2442-8894', 2, '676183834265634130', '中国成都市锦江区人民南路四段579号26室', '1995-01-15', 0, 0, 'zif', '2018-01-13', 'fang312', '2006-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS31513015', 'Ann Medina', 1, '+81 66-591-8215', 2, '407571424830233472', '日本おおさかし平野区加美東四丁目9番19号45階', '1995-03-16', 0, 0, 'annmedin', '2008-01-02', 'medina5', '2007-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS60387369', '溫小慧', 0, '+86 149-1169-5747', 3, '415056294282800475', 'No.14 building, 191 028 County Rd, Yanqing District, Beijing, China', '1988-10-15', 0, 0, 'swwan10', '2002-03-05', 'wasiuwai7', '2007-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS45345532', '邵家玲', 1, '+81 80-3786-5514', 3, '920925539671963893', '日本東京港区東新橋一丁目5番9号15階', '1987-11-25', 0, 0, 'kalings', '2003-08-23', 'klsiu', '2004-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS44412116', '方安琪', 1, '+81 66-748-7316', 0, '329613994719799845', 'Rm. 45, 4-9-7 Kamihigashi, Hirano Ward, Osaka, Japan', '1994-04-17', 0, 0, 'fanganq', '2012-04-15', 'fanganqi1964', '2003-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS73063345', '萬朝偉', 0, '+86 28-3137-1606', 4, '691691922225280649', 'Room 46, CR Building, No. 448, Shuangqing Rd, Chenghua District, Chengdu, China', '1994-11-19', 0, 0, 'mengchiuwai', '2007-08-09', 'cwm6', '2005-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS23921622', '梁玲玲', 1, '+1 212-770-5085', 0, '118524409457302655', '515 West Houston Street Suite 20, New York, NY 10014, United States', '1999-02-10', 0, 0, 'lelingling', '2006-05-27', 'lll', '2021-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS75072313', '村田玲奈', 0, '+81 66-282-2662', 3, '389889550164746548', 'Rm. 14, 1-7-5 Omido, Higashiosaka, Osaka, Japan', '1994-07-22', 0, 0, 'remura217', '2006-05-25', 'murrena823', '2015-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS67451149', 'Crystal King', 0, '+86 163-5048-9316', 1, '179956096979658308', 'No.29 building, 859 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1988-04-29', 0, 0, 'kingcrystal10', '2021-11-17', 'crystal313', '2003-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS01995156', '錢心穎', 1, '+1 312-207-2487', 4, '680762475175404541', '358 Pedway 3rd Floor, Chicago, IL 60601, United States', '1996-09-29', 0, 0, 'swchin', '2000-02-11', 'chsw', '2010-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS42321689', '大塚絢斗', 0, '+86 137-9304-5685', 1, '974704782262424441', 'Room 25, 502 Middle Huaihai Road, Huangpu District, Shanghai, China', '1987-10-03', 0, 0, 'ayato1204', '2005-11-06', 'otsukaayato', '2009-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS99935174', '青木聖子', 1, '+86 28-755-4659', 4, '737339358845702671', '中国成都市成华区二仙桥东三路441号2楼', '1985-07-18', 0, 0, 'aokiseiko4', '2004-01-27', 'seiko2', '2019-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS54962986', '古詠詩', 0, '+81 66-612-9954', 3, '988873100538249574', '日本おおさかし西成区天神ノ森二丁目1番12号26階', '1993-02-17', 0, 0, 'wingszeku14', '2018-04-01', 'ku9', '2015-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS65434886', '佐藤一輝', 1, '+1 614-169-9053', 4, '301566883705120926', '357 East Alley Apt 17, Columbus, GA 43201, United States', '1997-06-06', 0, 0, 'saikki5', '2007-08-21', 'isato56', '2007-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS52168252', 'Brandon Thomas', 0, '+1 330-941-3572', 3, '788333100142623779', '868 West Market Street Apartment 30, Akron, OH 44333, United States', '1989-03-22', 0, 0, 'brandonthomas', '2010-06-15', 'thomas7', '2001-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS74648127', '杜志明', 0, '+86 134-6837-5547', 3, '019824586505354231', '中国广州市天河区天河路346号30号楼', '1986-03-25', 0, 0, 'tochimi7', '2020-05-06', 'tocm1954', '2020-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS93476387', '贺子韬', 1, '+44 (151) 646 9085', 3, '445831385989318590', 'Flat 13, 735 Redfern St, Liverpool, L20 8JB, United Kingdom', '1994-03-22', 0, 0, 'zitaohe', '2014-03-29', 'hezitao', '2019-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS88694310', 'Ethel Reyes', 1, '+81 70-4998-4823', 4, '729408126560642973', '日本おおさかし近江堂一丁目7番12号50階', '1997-11-15', 0, 0, 'etrey', '2000-09-21', 'reyes1015', '2014-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS05382080', '孟睿', 1, '+44 5313 561115', 3, '327328271416375789', 'Unit 7, Oxford Eco Centre, 552 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1996-05-03', 0, 0, 'meng216', '2014-03-03', 'merui', '2013-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS91017226', '刘子异', 1, '+86 10-8346-2090', 1, '095714309204496383', 'No.28 building, 750 028 County Rd, Yanqing District, Beijing, China', '1989-04-22', 0, 0, 'ziyi81', '2002-12-29', 'liuz', '2004-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS73385455', 'John Mills', 0, '+81 52-172-0936', 0, '859706789635275015', '14F, 10 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1998-09-02', 0, 0, 'johmil10', '2011-09-15', 'johnm', '2000-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS97380215', '黄致远', 0, '+81 74-566-0007', 1, '855408361346459743', '日本ならし学園南三丁目9番6号31階', '1994-04-18', 0, 0, 'huang1004', '2007-07-16', 'zhuang', '2016-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS28035864', '小島七海', 0, '+81 3-7002-4995', 4, '029135410552827818', '33F, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-10-05', 0, 0, 'kon128', '2005-11-04', 'nanak1012', '2006-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS48704592', '任慧敏', 0, '+81 66-334-8575', 1, '999382152552323812', '日本おおさかし西成区天神ノ森二丁目1番17号30階', '1990-01-17', 0, 0, 'ywaiman', '2010-05-30', 'waimanya1', '2011-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS65254281', 'Francisco Dunn', 0, '+81 3-9122-5934', 3, '319019673103836155', '11-kai, 5-2-18 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-10-02', 0, 0, 'dfrancisco', '2009-06-02', 'franciscod', '2003-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS11643804', 'Hazel Stephens', 1, '+81 80-5794-9792', 2, '394080445307345111', '日本おおさかし西成区出城一丁目1番10号22階', '1991-03-04', 0, 0, 'stephazel5', '2000-09-29', 'hsteph2', '2005-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS33956403', 'Catherine Washington', 0, '+81 11-916-1705', 1, '997271095327170922', '30-kai, 13-3-19 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1994-01-22', 0, 0, 'cathewashington42', '2020-07-07', 'cathewa523', '2005-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS62198325', '中川光', 1, '+81 80-0895-8047', 4, '013103144717730873', '19-kai, 6-1-1, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1998-04-14', 0, 0, 'hikan', '2008-12-01', 'hikaru314', '2017-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS09687930', 'Julie Bryant', 0, '+81 11-736-9674', 1, '923604910891870667', '日本札幌白石区菊水三条五丁目4番17号49号室', '1995-07-04', 0, 0, 'bryant525', '2000-08-06', 'bryantjulie', '2005-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS43059589', '橋本和真', 1, '+86 10-0633-7774', 3, '053722735748774385', 'Room 7, CR Building, 931 FuXingMenNei Street, XiCheng District, Beijing, China', '1996-12-14', 0, 0, 'kazumahashimoto1993', '2012-02-25', 'khash', '2003-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS75531500', '傅岚', 0, '+44 5801 275005', 1, '783405336915369542', 'Block 4, 625 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1998-02-17', 0, 0, 'fulan', '2004-08-24', 'lfu6', '2011-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS43338562', 'Joyce Stevens', 0, '+81 52-651-7194', 3, '921726796850674976', '28F, 16 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1992-11-29', 0, 0, 'stjoyce', '2004-09-17', 'sjoyce', '2004-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS22791981', '雷天樂', 0, '+81 80-2041-7561', 3, '191039074662554786', '3F, 13-3-10 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1987-04-12', 0, 0, 'loutl', '2020-10-10', 'louitinlok6', '2020-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS99643915', '木村海斗', 0, '+81 90-7797-5411', 3, '591426986852964575', '日本東京港区東新橋一丁目5番18号2階', '1995-11-19', 0, 0, 'kimurkaito', '2016-12-25', 'kk56', '2001-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS64294403', '吕睿', 1, '+44 7695 451279', 1, '593916145987643099', 'Block 32, 941 Park End St, Oxford, OX1 1JD, United Kingdom', '1990-03-26', 0, 0, 'rui1206', '2018-01-29', 'lu1025', '2005-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS41734200', 'Sarah Sanders', 1, '+44 7388 650071', 1, '078012032915852500', 'No.6 Main building, 174 Regent Street, London, W1B 2LX, United Kingdom', '1986-09-06', 0, 0, 'ssanders9', '2016-02-28', 'sanderssar76', '2015-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS58170670', 'Bonnie Cox', 1, '+1 718-273-6101', 2, '630710223954192621', '640 Columbia St Apt 13, Brooklyn, NY 11231, United States', '1996-09-19', 0, 0, 'cobonni1', '2003-01-27', 'bonniecox68', '2014-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS04383825', '文頴思', 0, '+86 21-995-4179', 0, '715037412872675874', 'Room 1, CR Building, 458 Middle Huaihai Road, Huangpu District, Shanghai, China', '1996-01-22', 0, 0, 'man81', '2011-11-15', 'manws', '2015-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS95423263', '坂本愛梨', 1, '+81 66-689-5257', 1, '040642304366465893', '2-kai, 1-7-18 Omido, Higashiosaka, Osaka, Japan', '1987-03-28', 0, 0, 'sakamotoair', '2013-09-10', 'sakamotoai10', '2008-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS65341778', '鄺國榮', 1, '+44 (151) 620 0089', 2, '089464001366371535', 'Block 10, 936 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1991-10-30', 0, 0, 'kwkw', '2009-03-31', 'kwokwong5', '2015-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS60967949', '樊思妤', 0, '+44 (151) 889 8804', 2, '073146933632417847', 'Unit 19, Oxford Eco Centre, 477 Hanover St, Liverpool, L1 4AF, United Kingdom', '1997-09-12', 0, 0, 'syfan', '2003-11-04', 'syfan', '2015-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS74953257', '曹璐', 1, '+44 7588 311976', 2, '112965319733946313', 'Unit 5, Oxford Eco Centre, 615 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1987-04-08', 0, 0, 'caolu', '2014-03-11', 'caolu', '2009-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS36987351', 'Timothy Castro', 1, '+81 66-264-8380', 2, '980563523810640186', '日本おおさかし西成区出城一丁目1番16号5号室', '1994-07-06', 0, 0, 'castro10', '2006-08-03', 'timothyc', '2015-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS42167017', '钱秀英', 1, '+1 330-556-9978', 1, '687910589231698677', '436 Riverview Road Apt 8, Akron, OH 44313, United States', '1996-11-26', 0, 0, 'xiuying93', '2010-04-30', 'qianx', '2016-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS97619072', '王麗欣', 0, '+86 138-4520-8967', 1, '544067348416809291', '34F, 966 Jingtian East 1st St, Futian District, Shenzhen, China', '1989-06-21', 0, 0, 'lywo64', '2021-10-19', 'lywong', '2021-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS94983315', '任詩涵', 1, '+1 330-660-1926', 3, '144973053941364856', '583 Ridgewood Road Suite 8, Akron, OH 44321, United States', '1998-06-22', 0, 0, 'sr415', '2007-09-29', 'renshihan', '2001-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS26689059', '岡本瑛太', 0, '+81 3-7838-4917', 1, '872899062372855875', '19F, 1-6-11, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1996-03-25', 0, 0, 'eitaokamoto6', '2021-01-05', 'eitaokamoto', '2012-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS83010446', '蒋致远', 0, '+1 614-667-6944', 2, '308380098781582156', '234 Diplomacy Drive Suite 7, Columbus, GA 43228, United States', '1993-03-18', 0, 0, 'zhiyuan9', '2010-07-10', 'zhiyujiang223', '2014-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS10370229', '宣永發', 0, '+1 718-420-2889', 3, '672484366743453035', '857 Bergen St Suite 42, Brooklyn, NY 11217, United States', '1997-03-10', 0, 0, 'wfhsuan10', '2017-06-22', 'wingfat7', '2019-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS92962565', '朱慧敏', 1, '+44 (151) 597 4577', 2, '052387407664509528', 'No.46 Main building, 26 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1986-04-18', 0, 0, 'wmch', '2016-11-18', 'waichu', '2002-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS91436583', '陳力申', 0, '+81 52-960-9539', 2, '864414006706401068', '日本なごやし北区楠味鋺三丁目80番17号34号室', '1989-04-06', 0, 0, 'chanls9', '2003-06-17', 'chls1205', '2000-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS67714524', '陶嘉伦', 1, '+86 769-878-7441', 3, '798558440934877366', 'No.4 building, 673 Huanqu South Street 2nd Alley, Dongguan, China', '1986-11-25', 0, 0, 'taojialun8', '2009-03-06', 'tjialun69', '2005-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS95911764', '原田一輝', 0, '+86 131-0067-1722', 3, '205008609320661463', 'No.27 building, 303 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1988-12-21', 0, 0, 'harada4', '2019-04-04', 'hai', '2020-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS93217041', 'Ryan Hunter', 1, '+86 20-7148-2946', 1, '390861344645052803', 'Room 4, 751 Xiaoping E Rd, Baiyun , Guangzhou, China', '1988-08-06', 0, 0, 'ryanhun', '2017-08-23', 'ryhun2020', '2000-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS37110434', '藤明', 0, '+81 80-5924-7876', 2, '057440256964307532', '日本ならし学園南三丁目9番6号2階', '1989-04-12', 0, 0, 'ming1946', '2020-12-10', 'ming09', '2017-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS52424491', 'Cindy Herrera', 0, '+81 66-911-8101', 2, '334339458316984132', 'Rm. 41, 2-1-12 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1990-03-10', 0, 0, 'herreracindy', '2010-03-29', 'cindyh', '2000-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS38534229', '谭安琪', 1, '+1 212-341-3149', 3, '193026248985832488', '243 Canal Street Apartment 30, New York, NY 10013, United States', '1997-08-04', 0, 0, 'anqita', '2007-07-21', 'anqitan', '2018-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS76898146', '郑晓明', 1, '+81 80-4465-8125', 3, '930948035971449244', '20F, 5-2-1 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1992-04-29', 0, 0, 'xiaz502', '2002-07-25', 'xiaomingzhe1013', '2005-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS92965485', '西村陽菜', 1, '+86 137-7660-2448', 4, '932194017639348063', 'Room 34, 18 028 County Rd, Yanqing District, Beijing, China', '1992-07-16', 0, 0, 'hini', '2009-03-24', 'hnishimura', '2019-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS34572252', '周子韬', 1, '+81 80-8984-3882', 1, '070472701690616389', '日本なごやし北区清水三丁目19番14号5階', '1989-01-06', 0, 0, 'zitaoz', '2011-05-09', 'zhz503', '2016-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS92584119', '钱晓明', 1, '+86 21-453-7276', 1, '109936995774637469', 'No.16 building, 825 Jianxiang Rd, Pudong, Shanghai, China', '1990-05-19', 0, 0, 'xqian55', '2021-02-04', 'qixiaom', '2005-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS59204908', 'Doris Marshall', 0, '+44 (151) 603 0817', 3, '333346582467548351', 'Unit 46, Oxford Eco Centre, 810 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1990-08-15', 0, 0, 'marshalld516', '2015-07-03', 'marshall9', '2011-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS71364841', '莫璐', 1, '+81 74-209-3327', 3, '822767850119473504', '32F, 3-9-9 Gakuenminami, Nara, Japan', '1985-02-14', 0, 0, 'molu826', '2000-10-06', 'mlu1', '2006-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS75940005', 'Debra Woods', 1, '+86 755-2162-9334', 0, '845435546502371006', '47F, 295 Shennan Ave, Futian District, Shenzhen, China', '1993-08-21', 0, 0, 'dwoods', '2004-01-20', 'woodebra', '2001-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS21647951', '區裕玲', 1, '+81 66-503-9281', 1, '239285253171446243', '日本おおさかし西成区出城一丁目1番2号15階', '1995-10-05', 0, 0, 'ylau829', '2001-10-05', 'ayl3', '2002-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS04675386', 'Cindy Castillo', 1, '+86 769-0301-5221', 4, '269794317964024837', 'Room 33, CR Building, 466 Shanhu Rd, Dongguan, China', '1988-09-14', 0, 0, 'cindycastillo', '2018-04-16', 'ccindy', '2014-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS89184566', '苏嘉伦', 0, '+81 70-5544-0632', 0, '745378803705405907', '42F, 2-1-14 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1994-07-02', 0, 0, 'jialun78', '2010-11-12', 'jialunsu', '2008-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS65557898', 'Kelly Anderson', 1, '+81 66-809-6519', 3, '482541618837664852', '45-kai, 1-7-16 Omido, Higashiosaka, Osaka, Japan', '1997-08-22', 0, 0, 'kellande', '2014-12-03', 'anderk', '2017-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS73545359', '苏子异', 1, '+81 70-8796-3175', 3, '011947049264366731', '8-kai, 5 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-11-07', 0, 0, 'suz1230', '2016-01-14', 'zs1944', '2007-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS80397130', '石川桜', 1, '+81 52-476-9805', 4, '797070724231795686', '日本なごやし北区楠味鋺三丁目80番13号1階', '1990-05-27', 0, 0, 'sakuishikawa8', '2011-08-19', 'sakura1997', '2013-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS83004037', '翁詩君', 1, '+86 760-037-4472', 2, '645651508151731835', '中国中山京华商圈华夏街750号20室', '1988-12-03', 0, 0, 'yungsk', '2002-10-04', 'szekwany', '2009-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS59053579', '佐々木優奈', 1, '+81 70-8502-6325', 2, '968107975343979619', 'Rm. 29, 2-3-9 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-05-12', 0, 0, 'sasakiyun', '2011-05-24', 'sasakiyuna724', '2000-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS08368464', '谷口彩乃', 1, '+86 189-8569-2858', 0, '926138840355241245', '中国北京市東城区東直門內大街437号华润大厦6室', '1993-01-16', 0, 0, 'ayanot', '2004-10-06', 'taniguchiayano8', '2000-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS19610729', '彭子异', 1, '+1 614-959-3261', 0, '575484237124930841', '169 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1994-06-21', 0, 0, 'peng10', '2019-03-05', 'pz7', '2010-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS64665848', '薛浩然', 1, '+81 70-0262-4118', 0, '376848782932479986', '29-kai, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1994-08-31', 0, 0, 'sit79', '2005-06-20', 'sithy8', '2006-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS05402028', '佘梓軒', 0, '+1 213-638-4385', 3, '051241959599881999', '685 Alameda Street Suite 21, Los Angeles, CA 90002, United States', '1996-09-08', 0, 0, 'sheh9', '2018-07-20', 'tszhinsheh', '2010-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS91703122', '傅世榮', 1, '+81 70-9050-5715', 1, '823459688876360112', 'Rm. 46, 6-1-3, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1986-10-06', 0, 0, 'fu124', '2001-04-05', 'saiwing10', '2011-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS08906377', 'Ashley Howard', 0, '+86 755-044-4547', 0, '061854286256302059', 'No.12 building, 491 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1985-08-23', 0, 0, 'howardash', '2005-07-17', 'ashlh', '2018-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS89520266', '野口拓哉', 1, '+86 20-5927-9801', 4, '295219977374159190', 'No.35 building, 517 Xiaoping E Rd, Baiyun , Guangzhou, China', '1990-08-28', 0, 0, 'nogtakuya', '2020-05-31', 'tnogu', '2011-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS71175447', '毛云熙', 1, '+81 74-700-6571', 1, '559962247760458036', '23-kai, 1-7-18 Saidaiji Akodacho, Nara, Japan', '1989-08-26', 0, 0, 'maoyunxi3', '2019-03-31', 'maoyunxi', '2004-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS31714497', 'Kathleen Shaw', 0, '+86 149-1870-2653', 3, '940194010680680655', '中国上海市浦东新区健祥路177号7栋', '1988-09-01', 0, 0, 'shaw724', '2007-12-20', 'shakath', '2014-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS60840112', '野口悠人', 0, '+44 (20) 6699 6247', 3, '827874275501181395', 'No.41 Main building, 252 Regent Street, London, W1B 2LX, United Kingdom', '1992-11-21', 0, 0, 'yunoguchi69', '2009-08-11', 'ny509', '2001-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS42891257', '侯嘉伦', 1, '+44 7519 632404', 3, '948535482291676913', 'Flat 24, 544 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-01-19', 0, 0, 'jialuh', '2004-10-29', 'jialhou', '2004-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS98302600', '錢浩然', 0, '+81 80-3435-8169', 1, '932939621068026809', '18-kai, 1-1-20 Deshiro, Nishinari Ward, Osaka, Japan', '1989-12-27', 0, 0, 'hychin5', '2017-09-14', 'chy721', '2001-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS90333980', '溫惠敏', 0, '+81 74-927-5298', 2, '729957123061030996', '日本ならし学園南三丁目9番1号50階', '1992-05-10', 0, 0, 'wmwan', '2015-09-28', 'waiman10', '2006-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS70909626', '汤杰宏', 1, '+1 614-194-3558', 1, '722357336009217110', '270 Tremont Road Apartment 12, Columbus, GA 43212, United States', '1990-09-29', 0, 0, 'jiehongta', '2012-04-18', 'tangjieho4', '2014-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS95428606', '王詠詩', 0, '+1 838-895-4752', 4, '428189971995412294', '594 Central Avenue Apartment 5, Albany, NY 12206, United States', '1995-04-05', 0, 0, 'wingsze706', '2011-07-27', 'wswo1988', '2018-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS29950337', '孔子韬', 0, '+81 66-261-6597', 2, '861413207438370615', '日本おおさかし東住吉区東田辺三丁目27番9号17階', '1993-05-31', 0, 0, 'kongzitao', '2000-12-18', 'kong1995', '2013-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS23519616', 'Paul Wright', 0, '+44 5797 078121', 4, '762651496094075962', 'Unit 47, Oxford Eco Centre, 546 Hanover St, Liverpool, L1 4AF, United Kingdom', '1991-12-17', 0, 0, 'wrpa', '2018-06-15', 'pawright', '2018-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS26198275', '三浦架純', 0, '+81 66-132-8230', 3, '632648636440492828', '43F, 1-1-9 Deshiro, Nishinari Ward, Osaka, Japan', '1993-07-15', 0, 0, 'mkasumi', '2001-01-01', 'miura1988', '2013-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS65092677', 'Danielle Vasquez', 1, '+44 7248 250842', 0, '744705725781715468', 'Unit 36, Oxford Eco Centre, 22 Portland St, Manchester, M1 3LA, United Kingdom', '1994-04-30', 0, 0, 'vasquezdanielle', '2005-07-30', 'danielle90', '2001-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS87498447', '廖岚', 1, '+81 66-704-0573', 0, '162309941958412454', '46F, 4-9-12 Kamihigashi, Hirano Ward, Osaka, Japan', '1987-10-22', 0, 0, 'lanliao7', '2003-11-12', 'liaolan', '2002-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS73897100', '横山悠人', 0, '+81 11-971-8007', 1, '579852089337317733', '日本札幌豊平区豊平三条十三丁目3番6号1階', '1986-01-30', 0, 0, 'yokoyama5', '2019-06-06', 'yutoyokoyama', '2018-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS62426524', '藤井舞', 1, '+1 330-962-0589', 1, '881228314894635787', '964 West Market Street Apt 11, Akron, OH 44333, United States', '1987-03-18', 0, 0, 'mafujii', '2007-11-04', 'mai45', '2013-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS80131422', 'John Marshall', 0, '+86 755-297-4614', 2, '162752285901100221', '中国深圳罗湖区清水河一路692号35楼', '1993-11-03', 0, 0, 'johnmarsh94', '2012-05-26', 'marshalljohn', '2001-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS46467886', '後藤美緒', 1, '+1 212-455-4200', 0, '510807854318487142', '350 Canal Street Suite 47, New York, NY 10013, United States', '1994-03-20', 0, 0, 'gom1220', '2017-06-10', 'gotomio317', '2003-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS79802856', 'Louise Martin', 0, '+86 199-7195-3215', 0, '154260599401508034', 'No.29 building, 224 East Wangfujing Street, Dongcheng District , Beijing, China', '1991-05-24', 0, 0, 'louisem304', '2019-09-17', 'louise72', '2010-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS80255049', '前田詩乃', 0, '+1 212-321-3725', 1, '382196463940302918', '264 Fifth Avenue Apartment 43, New York, NY 10017, United States', '1997-08-05', 0, 0, 'maedshino', '2001-01-09', 'maeda6', '2015-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS33151527', '森悠人', 0, '+86 21-3640-8500', 3, '276941113847755775', '中国上海市徐汇区虹桥路724号12号楼', '1998-11-12', 0, 0, 'my99', '2008-07-13', 'mori716', '2000-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS95916385', '吳力申', 0, '+86 28-1487-9748', 2, '772764918473123703', 'Room 15, 536 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1994-03-03', 0, 0, 'ngliksun', '2003-07-15', 'ngls', '2005-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS10127352', '宣安娜', 1, '+86 176-5852-5732', 0, '480686132352223637', '中国深圳罗湖区蔡屋围深南东路224号35室', '1989-07-17', 0, 0, 'onnahsua', '2013-03-05', 'onhsu702', '2015-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS08026414', '古安娜', 1, '+1 213-960-6985', 3, '185020707365325300', '341 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1986-08-27', 0, 0, 'kuon', '2013-03-13', 'onnak1954', '2017-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS63971779', '高田美緒', 0, '+44 (116) 365 9324', 1, '984808897917662198', 'Unit 29, Oxford Eco Centre, 580 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1990-03-01', 0, 0, 'takadamio', '2010-07-28', 'takmio59', '2008-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS98025846', 'Sandra Jones', 1, '+81 52-881-0443', 4, '038107004662516767', '11F, 9 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1994-08-28', 0, 0, 'jonsandra94', '2000-06-11', 'sandrajones520', '2016-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS52755910', '谷力申', 0, '+1 718-125-3984', 2, '406889056685692829', '815 1st Ave Suite 22, Brooklyn, NY 11220, United States', '1985-12-28', 0, 0, 'kooliksun', '2000-12-22', 'koo530', '2017-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS17588102', '侯宇宁', 0, '+86 10-8643-7409', 2, '872214779696047282', 'No.8 building, 852 68 Qinghe Middle St, Haidian District, Beijing, China', '1989-04-17', 0, 0, 'hyuning51', '2018-07-23', 'houyuning629', '2017-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS65860032', '龚子异', 0, '+44 7590 106479', 1, '385791606676231705', 'Unit 46, Oxford Eco Centre, 183 Maddox Street, London, W1S 1PU, United Kingdom', '1994-10-17', 0, 0, 'gziyi', '2016-09-16', 'gong306', '2021-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS85944861', 'Kenneth Cox', 1, '+81 52-410-5292', 2, '037513902645776702', '14F, 2 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-11-25', 0, 0, 'kennecox65', '2007-10-17', 'kenncox', '2017-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS02187740', '内田舞', 0, '+81 11-015-8199', 1, '982516156159500158', '9F, 6-1-3, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1995-04-18', 0, 0, 'umai', '2013-06-15', 'uma94', '2002-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS27700844', 'Douglas Murray', 1, '+1 614-331-1978', 0, '462734306105725622', '583 Tremont Road Apartment 13, Columbus, GA 43212, United States', '1986-07-20', 0, 0, 'douglasm6', '2020-12-01', 'murradoug2', '2013-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS89501776', '樂慧敏', 0, '+81 3-7970-3292', 3, '948022066201704889', '14F, 2-3-16 Yoyogi, Shibuya-ku, Tokyo, Japan', '1993-02-13', 0, 0, 'lok417', '2006-07-15', 'lokwaiman', '2008-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS61292405', '尹頴思', 1, '+86 162-2613-0789', 0, '377502587790152360', '39F, 424 028 County Rd, Yanqing District, Beijing, China', '1994-01-07', 0, 0, 'yinwingsze', '2006-01-28', 'wingsze05', '2010-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS90068755', '黄子韬', 0, '+1 614-593-4272', 2, '072660936624103197', '24 East Cooke Road Apt 24, Columbus, GA 43214, United States', '1997-03-13', 0, 0, 'huazitao4', '2022-02-17', 'huangzitao82', '2004-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS85822157', '松本大地', 1, '+1 312-999-9802', 3, '913968481135720789', '677 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1986-10-17', 0, 0, 'daichim54', '2017-03-28', 'mada', '2010-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS83120145', '任晓明', 0, '+81 3-1022-4591', 2, '386738470821344861', '日本東京港区東新橋一丁目5番20号6階', '1991-09-11', 0, 0, 'ren88', '2020-08-12', 'xiaomingre', '2014-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS85603581', '田安琪', 1, '+81 3-4186-1268', 2, '871771821557089055', '11F, 3-15-8 Ginza, Chuo-ku, Tokyo, Japan', '1985-10-24', 0, 0, 'oktin4', '2009-04-14', 'oktin910', '2008-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS38316595', 'Jose Gonzalez', 0, '+44 (116) 861 7954', 0, '368393462811607245', 'Unit 22, Oxford Eco Centre, 908 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1985-07-12', 0, 0, 'gonzjose', '2007-10-04', 'jogonzalez', '2003-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS97483247', '姜玲玲', 0, '+86 28-2184-7771', 4, '208666197733012225', '中国成都市成华区二仙桥东三路679号26楼', '1995-01-27', 0, 0, 'chang6', '2021-04-10', 'linchan610', '2018-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS04301718', '中山美月', 0, '+81 52-620-7959', 3, '058954901351802859', 'Rm. 11, 8 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1991-11-29', 0, 0, 'nakayama03', '2002-05-16', 'nakmitsuki', '2001-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS14591900', '斎藤架純', 0, '+44 (116) 098 2281', 3, '706629408200656772', 'No.22 Main building, 928 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1998-05-26', 0, 0, 'ksaito', '2016-12-23', 'ksaito4', '2001-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS97728758', '罗睿', 0, '+44 (1865) 87 0508', 3, '136259970198533713', 'Unit 38, Oxford Eco Centre, 183 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1985-08-05', 0, 0, 'luorui71', '2008-05-18', 'rulu', '2005-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS95334756', '後藤湊', 0, '+81 3-4186-5195', 4, '786382208687027884', '日本東京港区東新橋一丁目5番5号40号室', '1986-09-09', 0, 0, 'gotm309', '2000-10-28', 'mgoto', '2002-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS78452673', 'Stephen Kennedy', 1, '+81 90-1110-5968', 4, '981272814932596104', '日本おおさかし近江堂一丁目7番11号47号室', '1992-07-31', 0, 0, 'skenne', '2020-11-15', 'stephenkenne10', '2013-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS26776919', 'Peter Reyes', 1, '+44 (151) 572 9750', 3, '219897779552990435', 'Flat 46, 669 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1985-05-09', 0, 0, 'rpeter723', '2008-03-10', 'petrey', '2013-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS32702211', 'Lucille Rose', 1, '+81 11-374-3488', 4, '543780117290422747', '日本札幌白石区菊水三条五丁目2番3号6階', '1994-08-29', 0, 0, 'rol', '2014-06-27', 'roseluc', '2008-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS07651707', 'Alfred Black', 1, '+44 5136 460622', 4, '840227857229454357', 'Block 5, 322 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1994-05-11', 0, 0, 'blacka', '2009-08-26', 'blackalfred907', '2008-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS60867017', '謝俊宇', 0, '+81 66-757-4252', 3, '252942901153739656', '日本おおさかし西成区天神ノ森二丁目1番8号19階', '1994-06-21', 0, 0, 'chunyuts', '2017-05-24', 'chts69', '2005-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS16990382', 'Jamie Herrera', 0, '+86 10-8297-2741', 3, '389971925084614577', '中国北京市房山区岳琉路202号29栋', '1988-05-22', 0, 0, 'jamieherrera', '2007-12-02', 'jamie1207', '2020-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS87751346', '中村拓哉', 0, '+44 5185 278071', 1, '580184118551682011', 'No.45 Main building, 743 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1986-03-16', 0, 0, 'takuyanakamura1', '2017-10-17', 'nakamta', '2010-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS87496109', 'Mildred Moreno', 0, '+1 213-044-6254', 0, '972901510962777829', '925 Alameda Street Apt 18, Los Angeles, CA 90002, United States', '1994-01-04', 0, 0, 'morenomildred', '2004-07-07', 'morenomildred51', '2014-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS11592491', 'Don Diaz', 1, '+86 195-3487-8491', 4, '771474174882376286', '中国上海市黄浦区淮海中路728号华润大厦8室', '1990-03-15', 0, 0, 'didon505', '2007-09-26', 'dondiaz90', '2019-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS11447269', '三浦翼', 0, '+86 755-944-9628', 1, '561231406159465458', '中国深圳龙岗区学园一巷325号32楼', '1988-04-22', 0, 0, 'tsubasa1981', '2004-09-25', 'tsubasam', '2007-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS10897073', '姚國賢', 0, '+81 11-498-3797', 2, '232265295978960779', '日本札幌清田区真栄四条五丁目19番3号4階', '1992-06-10', 0, 0, 'kwokyinyeow', '2006-12-27', 'yeky', '2020-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS79276193', '彭震南', 1, '+81 80-2049-2780', 1, '281726204186285479', '34F, 5-2-9 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-12-03', 0, 0, 'pengzhennan', '2014-10-17', 'pengz', '2007-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS33416697', '郑云熙', 1, '+44 5577 463412', 4, '815094294672478812', 'No.35 Main building, 789 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1997-09-11', 0, 0, 'yunxiz', '2018-10-10', 'zhey', '2013-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS20457532', '黃家輝', 0, '+81 80-3849-2167', 3, '737275276091828266', '29F, 10 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-12-13', 0, 0, 'kafai4', '2011-11-04', 'kafai329', '2018-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS50405751', 'Robin Gardner', 1, '+86 21-2134-0852', 3, '256354063201215819', '中国上海市闵行区宾川路699号15室', '1995-07-14', 0, 0, 'rog817', '2005-08-16', 'gardnerr426', '2008-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS39679177', '太田健太', 0, '+81 70-1833-7918', 1, '173771892045015573', '49F, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1988-10-07', 0, 0, 'okenta6', '2021-09-01', 'otaken', '2009-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS09268129', '小野美緒', 0, '+81 52-096-0658', 3, '593770299900329785', 'Rm. 26, 2-5-7 Chitose, Atsuta Ward, Nagoya, Japan', '1992-12-07', 0, 0, 'onom83', '2001-06-12', 'miono', '2003-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS29444140', '宣心穎', 0, '+81 80-3869-2169', 3, '345392022829178024', '日本なごやし瑞穂区河岸町四丁目20番2号41号室', '1995-03-18', 0, 0, 'hsuan2', '2011-07-24', 'hsuan41', '2013-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS82689057', '湯明詩', 0, '+86 20-8428-6601', 3, '236969186473549107', '中国广州市白云区机场路棠苑街五巷5号18栋', '1986-06-12', 0, 0, 'msto51', '2012-12-31', 'tomingsze', '2011-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS37547431', '周榮發', 0, '+81 3-2695-1771', 1, '411581749510025051', '9-kai, 1-5-11, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1990-10-23', 0, 0, 'wfchow10', '2018-07-22', 'cwingfat8', '2011-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS31970356', '黎小慧', 0, '+1 213-653-8682', 3, '486026428262056630', '290 Alameda Street Apt 36, Los Angeles, CA 90002, United States', '1985-10-27', 0, 0, 'lai1998', '2005-06-20', 'siuwai7', '2008-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS25356528', '宋子韬', 0, '+44 5593 622186', 3, '650309254157163260', 'Block 35, 641 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1989-12-06', 0, 0, 'zso', '2013-01-13', 'songzitao506', '2000-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS45230524', '伊藤大和', 1, '+1 212-699-3889', 3, '852709308684028038', '720 West Houston Street Apt 45, New York, NY 10014, United States', '1990-09-01', 0, 0, 'yamatoito', '2020-01-07', 'itoyamato65', '2011-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS48421765', 'Linda Simpson', 0, '+44 5905 665250', 3, '689453570192131848', 'Block 5, 733 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1990-10-06', 0, 0, 'simpsonlin3', '2002-02-23', 'simpsonlinda210', '2001-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS11322111', '钱云熙', 0, '+86 170-0987-9784', 2, '967426734387220232', '中国北京市东城区东单王府井东街9号22栋', '1985-11-25', 0, 0, 'yunxiqian', '2019-08-28', 'yunxiq', '2003-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS35541557', '戚安琪', 1, '+44 (116) 285 0402', 3, '168484823803973509', 'Unit 38, Oxford Eco Centre, 663 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1987-02-21', 0, 0, 'chic46', '2012-08-21', 'okchic', '2018-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS98572638', '田嘉欣', 1, '+86 21-5701-9367', 3, '129326693685161116', 'Room 41, CR Building, 77 Binchuan Rd, Minhang District, Shanghai, China', '1995-07-10', 0, 0, 'tikaryan1015', '2002-02-28', 'tinkaryan', '2000-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS96678023', '林致远', 0, '+81 70-4172-1879', 3, '778044478335435290', '日本札幌清田区真栄四条五丁目19番8号5階', '1998-04-19', 0, 0, 'linz2006', '2018-05-29', 'zhilin924', '2020-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS80939476', '中村海斗', 1, '+81 80-4729-1977', 3, '383719205417582088', '日本なごやし北区楠味鋺三丁目80番1号19階', '1991-09-12', 0, 0, 'nakaito', '2004-06-09', 'nakamurak', '2010-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS05479216', '斎藤大輔', 1, '+86 179-1717-2113', 3, '599317938340347893', 'No.8 building, 453 Shanhu Rd, Dongguan, China', '1986-10-30', 0, 0, 'saidaisuke', '2003-01-01', 'saito7', '2018-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS92124284', '钟秀英', 0, '+1 213-030-1840', 0, '500797114276381066', '413 Grape Street Apartment 39, Los Angeles, CA 90002, United States', '1996-03-09', 0, 0, 'xz7', '2013-02-04', 'xzho', '2005-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS53094947', 'Richard Owens', 0, '+86 150-4442-4592', 0, '010753291743744653', '中国成都市锦江区红星路三段538号9楼', '1989-10-11', 0, 0, 'richardowens2', '2018-09-23', 'ricowe', '2012-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS90753104', '吕秀英', 1, '+81 70-5426-3010', 2, '238562073813760800', '21-kai, 3-9-20 Gakuenminami, Nara, Japan', '1987-11-13', 0, 0, 'xiuyinglu', '2000-12-06', 'luxiuying313', '2009-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS88118199', '高木陸', 1, '+86 139-6152-0475', 1, '393432428093942499', '28F, 460 68 Qinghe Middle St, Haidian District, Beijing, China', '1989-10-31', 0, 0, 'takagiriku', '2012-12-10', 'rt4', '2012-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS71219377', '小山一輝', 1, '+44 (1865) 38 5575', 0, '235580258742469187', 'Flat 46, 10 Park End St, Oxford, OX1 1JD, United Kingdom', '1998-03-30', 0, 0, 'ikki1985', '2007-12-22', 'kik2', '2010-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS33239309', 'Travis Schmidt', 0, '+86 20-2189-1893', 0, '156726796772072196', 'Room 42, CR Building, 916 Xiaoping E Rd, Baiyun , Guangzhou, China', '1992-11-16', 0, 0, 'schmidt1945', '2001-11-26', 'travissc', '2009-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS83492729', 'Jerry Castro', 0, '+81 74-211-0400', 3, '601511303797873609', '45F, 3-9-19 Gakuenminami, Nara, Japan', '1996-09-10', 0, 0, 'jerrycastro', '2016-01-05', 'castjer', '2001-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS47191567', '鄭青雲', 0, '+86 755-180-0660', 2, '029027977565022149', '中国深圳罗湖区清水河一路320号7栋', '1997-11-30', 0, 0, 'cwc14', '2004-01-19', 'checw', '2010-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS57766024', '向晓明', 1, '+86 760-4695-7140', 2, '820007742306620748', 'No.33 building, 408 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1991-03-23', 0, 0, 'xiaxiang', '2015-03-25', 'xiang113', '2014-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS93031141', '曾國明', 1, '+86 195-6667-1048', 1, '523704666252716419', 'No.33 building, 690 Shanhu Rd, Dongguan, China', '1991-06-16', 0, 0, 'tskwokming2014', '2020-07-31', 'kmt', '2011-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS45994274', '尹睿', 1, '+81 66-145-6114', 3, '380084976957190165', '6F, 3-27-18 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1986-03-20', 0, 0, 'ruyin', '2009-04-27', 'yrui', '2005-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS22346190', '崔小慧', 1, '+81 66-148-8807', 1, '448646528761378056', '37F, 1-1-14 Deshiro, Nishinari Ward, Osaka, Japan', '1986-03-13', 0, 0, 'swchoi830', '2021-12-31', 'choisiuwai5', '2016-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS40375096', 'Jennifer Gibson', 1, '+81 70-8670-8402', 3, '009946668197255193', '日本おおさかし西成区天神ノ森二丁目1番15号10階', '1987-07-25', 0, 0, 'gjennifer', '2010-05-28', 'jennifer3', '2004-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS68443727', '向宇宁', 0, '+81 52-700-3951', 4, '317360064402906939', '50F, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1994-02-02', 0, 0, 'xiangyun5', '2017-03-29', 'yuningxia07', '2007-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS74564013', 'Harold Vasquez', 1, '+81 70-2346-1036', 3, '221780248017524461', '日本なごやし北区楠味鋺三丁目80番19号41号室', '1987-08-15', 0, 0, 'harvasquez', '2006-01-15', 'harold8', '2016-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS32865365', '袁霆鋒', 1, '+81 11-105-9750', 3, '454691624494901361', '日本札幌清田区真栄四条五丁目19番2号20号室', '1985-10-28', 0, 0, 'tingfungyuen', '2018-07-23', 'ytf', '2007-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS19321162', '郑岚', 0, '+81 70-1880-9790', 0, '285191768622556361', '18-kai, 13 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1993-12-20', 0, 0, 'zhelan', '2016-04-14', 'lan1017', '2010-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS38794914', '蕭祖兒', 0, '+86 20-957-0203', 1, '341865618272370889', '中国广州市海珠区江南西路33号华润大厦8室', '1993-04-29', 0, 0, 'siu2', '2004-07-05', 'choyesi', '2011-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS73258434', '莫安琪', 1, '+44 (161) 965 4128', 3, '078722657555586316', 'No.14 Main building, 750 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1985-03-22', 0, 0, 'anqim', '2002-04-08', 'anqimo', '2021-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS03589669', '李睿', 1, '+81 52-446-5338', 3, '532296919272410071', '日本なごやし瑞穂区河岸町四丁目20番18号42階', '1997-05-29', 0, 0, 'lir', '2021-06-08', 'ruili9', '2006-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS10465713', '史詩涵', 1, '+86 187-5282-0105', 2, '453575343238320658', '中国北京市東城区東直門內大街692号19栋', '1993-11-27', 0, 0, 'shihash', '2003-03-20', 'shishihan1962', '2008-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS66617413', '宣玲玲', 1, '+1 213-621-6786', 2, '987977650809499961', '768 Wall Street Suite 9, Los Angeles, CA 90003, United States', '1998-12-26', 0, 0, 'lingling1114', '2011-01-20', 'llhsuan', '2013-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS13916266', 'Juan Herrera', 0, '+1 213-942-5956', 0, '751717576383437692', '126 Figueroa Street Apt 28, Los Angeles, CA 90037, United States', '1992-05-07', 0, 0, 'juan827', '2013-10-25', 'juanh', '2005-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS78066839', 'Mary Mason', 1, '+1 838-374-0932', 0, '544293921894291833', '313 State Street Apartment 3, Albany, NY 12203, United States', '1987-08-23', 0, 0, 'mamas', '2012-05-29', 'masonm3', '2005-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS87386770', '廖裕玲', 0, '+81 66-173-7853', 2, '576534641075844805', '日本おおさかし近江堂一丁目7番19号43号室', '1994-09-03', 0, 0, 'ylliao', '2018-01-20', 'yulliao', '2008-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS61363723', '苑世榮', 1, '+81 70-5205-1643', 3, '846475932138901113', '27F, 8 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-09-08', 0, 0, 'yuensw7', '2014-04-28', 'ysw1217', '2010-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS36144300', '邓宇宁', 0, '+81 52-736-3100', 0, '720667447105837645', '30-kai, 16 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-09-28', 0, 0, 'yuningd', '2009-12-29', 'yuningdeng1943', '2014-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS92285747', 'Jennifer Reynolds', 1, '+81 66-011-0673', 1, '573191620192807583', '日本おおさかし西成区出城一丁目1番15号8階', '1992-08-02', 0, 0, 'jenniferre', '2001-08-28', 'reynjenni', '2012-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS85454784', 'Judith Peterson', 1, '+1 838-503-6985', 1, '607876563136468813', '28 State Street Apt 25, Albany, NY 12203, United States', '1996-06-23', 0, 0, 'judithpeter', '2016-08-20', 'petersonj', '2010-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS39995840', '赵宇宁', 0, '+1 212-585-0217', 1, '845526805208107096', '753 Canal Street Apartment 45, New York, NY 10013, United States', '1999-01-14', 0, 0, 'yzha1', '2008-04-14', 'yuningzhao', '2010-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS58360488', '三浦大和', 1, '+1 213-253-1441', 2, '835014761951815151', '79 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1991-08-31', 0, 0, 'myamato', '2001-04-24', 'yamatmiura2', '2016-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS11756479', '姚杰宏', 1, '+86 178-4518-9358', 4, '083434859151524440', '中国东莞坑美十五巷67号16号楼', '1995-09-13', 0, 0, 'jiehongyao', '2012-01-20', 'jiehongy', '2013-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS40756227', 'Rose Reyes', 1, '+86 136-9471-3569', 2, '481660811547357972', '中国深圳龙岗区学园一巷886号华润大厦49室', '1991-08-06', 0, 0, 'reyesr308', '2012-10-02', 'rosere', '2006-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS00005653', '尹志明', 0, '+44 (1865) 18 1864', 2, '837528698431134421', 'No.21 Main building, 144 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-12-12', 0, 0, 'ycm', '2001-10-14', 'cmyin', '2003-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS09617702', '森大地', 1, '+86 20-512-6977', 3, '054618314471173007', 'Room 28, 772 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1985-01-21', 0, 0, 'daimo', '2020-08-03', 'mordaichi', '2001-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS57791144', '桜井愛梨', 0, '+81 90-2662-8557', 3, '648480815887326675', '33-kai, 1-5-12, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1998-01-04', 0, 0, 'airisakur', '2017-04-21', 'airisakurai', '2012-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS25677317', '鈴木光莉', 0, '+44 7299 101358', 2, '701753300111953924', 'Flat 15, 970 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1993-07-20', 0, 0, 'hikari123', '2015-10-14', 'hikarisuz330', '2002-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS87345356', 'Paula Diaz', 0, '+86 760-080-7166', 2, '963040616724253706', '中国中山京华商圈华夏街248号49楼', '1985-08-04', 0, 0, 'pauld55', '2021-04-28', 'pauladi5', '2017-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS97817143', '譚安琪', 1, '+81 66-821-6251', 3, '666782007824392785', '日本おおさかし東住吉区東田辺三丁目27番7号2階', '1985-08-17', 0, 0, 'onkatam53', '2000-04-21', 'tonkay', '2011-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS50301534', 'Elizabeth Cole', 0, '+86 10-770-2367', 1, '423779689787878301', '中国北京市西城区复兴门内大街586号华润大厦4室', '1995-03-30', 0, 0, 'elizabethc', '2015-05-07', 'cole821', '2002-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS08172388', 'Thomas Morgan', 1, '+44 5778 394436', 4, '183250413252739000', 'Unit 21, Oxford Eco Centre, 37 Pollen Street, London, W1S 1NG, United Kingdom', '1988-01-04', 0, 0, 'thm1', '2015-11-16', 'thomasmo', '2007-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS82303760', 'Nicole West', 0, '+86 179-4615-4827', 1, '058437217056767965', '中国上海市徐汇区虹桥路450号2楼', '1991-05-29', 0, 0, 'nicolewest913', '2019-03-20', 'west9', '2017-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS27753364', 'Anne Soto', 0, '+81 90-3379-6591', 2, '295755716698795565', '19F, 2-1-9 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1991-02-14', 0, 0, 'annesoto', '2006-10-28', 'sotoa319', '2014-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS72032144', 'Jamie Warren', 0, '+86 148-8665-8874', 3, '714406062166186697', '中国深圳罗湖区清水河一路534号44号楼', '1992-12-10', 0, 0, 'jamiwarren43', '2014-03-19', 'wjamie', '2007-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS87759893', '蔡宇宁', 1, '+1 614-112-8240', 3, '176004719232301584', '578 East Cooke Road Apartment 13, Columbus, GA 43214, United States', '1997-03-07', 0, 0, 'yunicai', '2013-06-30', 'yuninc10', '2015-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS41213427', '郑岚', 0, '+86 184-3941-7590', 4, '725708779346832674', '中国深圳福田区景田东一街550号1号楼', '1989-10-02', 0, 0, 'lan2', '2005-01-08', 'zlan', '2021-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS86597727', '钱岚', 1, '+44 (161) 423 7125', 0, '159303711893040741', 'No.46 Main building, 277 Portland St, Manchester, M1 3LA, United Kingdom', '1987-01-13', 0, 0, 'lqian', '2020-08-04', 'qilan1214', '2017-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS03190820', 'Edwin Kelley', 0, '+44 5654 936612', 3, '587144466090663586', 'Unit 46, Oxford Eco Centre, 297 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1997-04-10', 0, 0, 'edwin83', '2009-08-03', 'edwin613', '2019-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS93139735', '胡子异', 0, '+86 172-1458-6279', 4, '881554165433975721', 'No.39 building, 220 Xiaoping E Rd, Baiyun , Guangzhou, China', '1989-05-27', 0, 0, 'huzi', '2011-12-15', 'ziyi9', '2007-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS97497033', 'Jimmy Robertson', 0, '+44 (1865) 69 0470', 2, '827975233586244789', 'Block 41, 814 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1994-07-03', 0, 0, 'robj2011', '2012-11-24', 'roberjim10', '2018-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS49455106', 'Miguel Foster', 0, '+86 21-3216-8426', 1, '626172188355601632', 'Room 49, 565 Hongqiao Rd., Xu Hui District, Shanghai, China', '1998-12-06', 0, 0, 'miguelfos621', '2012-12-23', 'foster96', '2015-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS24039932', 'Francisco Dixon', 1, '+81 80-9092-8795', 3, '278971079663884879', 'Rm. 8, 13-3-15 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1997-01-30', 0, 0, 'dixonfran93', '2016-08-06', 'fdix', '2008-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS73121211', '松田涼太', 0, '+86 10-231-3656', 1, '876136099221556074', '26F, 183 Yueliu Rd, Fangshan District, Beijing, China', '1994-06-28', 0, 0, 'ryota926', '2011-02-09', 'matsudaryot', '2020-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS95963466', '石田舞', 0, '+81 80-8126-5645', 1, '574520978776014838', '日本なごやし熱田区千年二丁目5番3号14階', '1996-11-19', 0, 0, 'ishidamai', '2011-02-03', 'maish', '2019-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS90298519', '陶安娜', 0, '+86 21-5961-1082', 1, '894218193747816487', '中国上海市浦东新区健祥路749号46号楼', '1986-06-26', 0, 0, 'tao808', '2014-04-24', 'tonna', '2012-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS13902645', '陆致远', 0, '+1 212-564-2676', 4, '397191545975249397', '391 Bank Street Apartment 43, New York, NY 10014, United States', '1987-06-29', 0, 0, 'zhiyuanl', '2006-06-10', 'zhiyl320', '2015-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS89554715', 'Theodore Hunt', 0, '+81 3-5365-8388', 2, '136223625738406558', '日本東京港区東新橋一丁目5番8号33階', '1998-01-22', 0, 0, 'thunt3', '2003-02-26', 'theodore617', '2011-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS42539991', '蔣安娜', 1, '+81 3-9569-5092', 1, '987963308465693976', 'Rm. 17, 5-2-1 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-05-29', 0, 0, 'onna14', '2008-09-20', 'chiang5', '2012-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS54120974', '邓安琪', 0, '+1 718-622-0334', 3, '342324404242349121', '349 Columbia St Apartment 20, Brooklyn, NY 11231, United States', '1991-09-18', 0, 0, 'danqi6', '2014-10-02', 'danq', '2008-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS36558491', 'Edwin Graham', 1, '+1 718-436-0887', 1, '567667747773085793', '847 Columbia St Apt 18, Brooklyn, NY 11231, United States', '1989-02-03', 0, 0, 'gedwin', '2003-07-01', 'edwin226', '2017-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS86630997', 'Paul Martinez', 1, '+1 838-440-8054', 1, '867175739486243422', '998 Broadway 3rd Floor, Albany, NY 12207, United States', '1996-12-13', 0, 0, 'paulm', '2010-01-03', 'marpaul1951', '2017-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS81712267', 'Carl Robinson', 0, '+44 (116) 511 8741', 0, '878361517878327256', 'Unit 48, Oxford Eco Centre, 820 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1997-05-29', 0, 0, 'robinson70', '2010-11-29', 'rcar811', '2021-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS67937739', 'Clara Adams', 0, '+81 3-1735-4506', 3, '320617504543662929', '日本東京中央区銀座三丁目12番9号37階', '1985-08-09', 0, 0, 'cadams18', '2012-07-04', 'clad', '2006-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS63333978', 'Joyce Kennedy', 0, '+81 66-817-7986', 2, '213630881539576491', '22F, 1-1-20 Deshiro, Nishinari Ward, Osaka, Japan', '1987-10-02', 0, 0, 'kennedyjoyce1212', '2001-10-30', 'joykenn', '2017-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS18080976', 'Eva Daniels', 1, '+1 312-483-6106', 0, '622844661262470584', '663 North Michigan Ave Suite 4, Chicago, IL 60611, United States', '1990-01-20', 0, 0, 'evad', '2004-02-21', 'eva106', '2003-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS63630671', '郑嘉伦', 0, '+1 718-742-1082', 4, '859661019925665047', '410 1st Ave Suite 12, Brooklyn, NY 11220, United States', '1987-11-17', 0, 0, 'jialunz', '2016-05-25', 'zhengj', '2004-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS64343962', 'Edward Stevens', 1, '+1 614-807-4530', 0, '584411542260627808', '167 East Alley Apartment 50, Columbus, GA 43201, United States', '1988-07-17', 0, 0, 'sedward9', '2015-08-11', 'steveedward', '2015-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS10349519', '江震南', 1, '+1 614-291-7374', 1, '138823584970615094', '957 Diplomacy Drive Apartment 34, Columbus, GA 43228, United States', '1986-07-04', 0, 0, 'jiang525', '2004-03-28', 'zhejiang', '2013-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS25746248', '崔子韬', 1, '+44 (151) 158 4982', 1, '634287229847401388', 'Flat 50, 679 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1985-12-21', 0, 0, 'cuizita927', '2010-08-08', 'zitao1994', '2016-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS71642447', '毛志遠', 1, '+86 769-4830-6554', 1, '950872482373984570', '中国东莞环区南街二巷13号6栋', '1987-08-09', 0, 0, 'chiyuen9', '2006-12-01', 'chiyuenmo1959', '2015-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS40262595', '譚惠敏', 1, '+86 20-8943-6839', 3, '899247566002776690', 'No.29 building, 855 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1987-10-05', 0, 0, 'tam1202', '2004-07-13', 'tamwm', '2006-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS51678146', 'Carl Lee', 0, '+44 7977 426892', 3, '812701487574188174', 'Unit 22, Oxford Eco Centre, 874 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1996-08-22', 0, 0, 'lee2', '2003-07-23', 'lcarl', '2011-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS81505670', '伍榮發', 0, '+81 90-2909-2843', 1, '327024693008082355', '30F, 13-3-14 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1993-01-06', 0, 0, 'ngwingfat4', '2006-07-03', 'ngwf', '2005-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS43675874', '廖岚', 1, '+44 (121) 129 3978', 2, '049936322428429004', 'Flat 19, 623 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1997-07-31', 0, 0, 'liao9', '2011-01-14', 'liaolan', '2001-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS61371954', '任慧嫻', 1, '+81 90-6882-5498', 0, '098321167314538283', '日本東京渋谷区代々木二丁目3番17号8階', '1985-05-25', 0, 0, 'yamwh', '2002-03-20', 'waihan712', '2001-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS56956590', '田梓軒', 1, '+86 135-9953-8785', 3, '995579809736995871', '中国北京市海淀区清河中街68号725号华润大厦28室', '1995-09-10', 0, 0, 'tinth', '2000-03-01', 'tszhint83', '2017-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS50585361', '大野葉月', 1, '+81 52-381-3642', 0, '886140799332924908', '日本なごやし熱田区千年二丁目5番7号40階', '1998-02-25', 0, 0, 'hon', '2010-12-18', 'onha11', '2007-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS90941757', '段子异', 0, '+86 194-0667-5874', 1, '271395278324544202', '22F, 227 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1986-10-11', 0, 0, 'ziyiduan2000', '2001-03-11', 'ziyi328', '2003-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS88355206', '江永發', 0, '+81 3-5433-6213', 3, '987758374064906977', '日本東京中央区銀座三丁目12番17号26号室', '1987-04-01', 0, 0, 'wingfat3', '2005-08-03', 'kong7', '2001-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS85477711', 'Angela Crawford', 0, '+81 80-5446-1767', 1, '487756016997281513', '50F, 1-7-2 Omido, Higashiosaka, Osaka, Japan', '1995-04-13', 0, 0, 'crawford45', '2009-07-17', 'cangela', '2020-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS37951025', 'Ralph Ortiz', 0, '+44 5515 550420', 2, '468278232044222824', 'Block 31, 620 New Street, Birmingham, B2 4DB, United Kingdom', '1991-01-03', 0, 0, 'ralphortiz', '2004-01-18', 'rortiz55', '2010-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS35181913', 'Luis Owens', 1, '+44 (161) 920 5264', 1, '810126055140375645', 'Block 20, 522 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-11-02', 0, 0, 'luio', '2002-06-02', 'lowen809', '2013-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS57515665', '斉藤蓮', 0, '+86 149-2008-3727', 3, '703315272322702482', '中国成都市成华区二仙桥东三路524号华润大厦36室', '1989-06-17', 0, 0, 'rsaito', '2017-04-23', 'saitoren1115', '2001-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS39245271', '古家玲', 1, '+44 7974 731753', 4, '522974036078162161', 'Unit 21, Oxford Eco Centre, 962 Redfern St, Liverpool, L20 8JB, United Kingdom', '1995-02-12', 0, 0, 'ku6', '2011-09-09', 'kukl', '2013-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS24989316', '田秀英', 1, '+81 3-6010-3455', 2, '922509047278490967', '日本東京千代田区丸の内一丁目6番13号38階', '1992-09-02', 0, 0, 'xiuying7', '2008-10-30', 'tianx', '2017-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS68136536', '贾秀英', 1, '+81 80-4421-8137', 1, '320066967821456638', 'Rm. 15, 1-7-12 Omido, Higashiosaka, Osaka, Japan', '1985-06-11', 0, 0, 'xjia', '2011-07-25', 'xiuyingj', '2007-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS90519585', '鐘安琪', 1, '+86 28-676-1741', 1, '813406560123109595', 'Room 26, 114 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1986-03-14', 0, 0, 'onkaychun130', '2021-03-04', 'okc65', '2022-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS63932148', '野口葵', 0, '+44 (161) 210 8146', 2, '075411439579285176', 'Flat 49, 524 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-11-06', 0, 0, 'noguchi1964', '2014-01-25', 'aonoguc2', '2004-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS85505218', '姜秀英', 0, '+1 213-892-0138', 0, '908963897954204410', '807 Sky Way Apt 27, Los Angeles, CA 90043, United States', '1990-08-29', 0, 0, 'jiangxiuying', '2009-04-07', 'jxiuying5', '2014-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS04264834', '方杰倫', 1, '+81 11-563-8669', 2, '605866047696283892', 'Rm. 20, 6-1-4, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1993-05-29', 0, 0, 'fongch1115', '2002-11-17', 'fongcl', '2003-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS02947082', '石井百花', 1, '+81 3-1970-4369', 2, '740483437736938487', '7F, 5-2-8 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1988-09-19', 0, 0, 'mishii', '2006-11-29', 'ishm1', '2001-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS54359926', 'Marie Morales', 1, '+1 212-283-5219', 1, '171615594927699704', '602 West Houston Street 3rd Floor, New York, NY 10014, United States', '1995-02-10', 0, 0, 'morales87', '2000-12-31', 'moma1', '2018-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS16135263', '郝睿', 1, '+86 193-9482-4420', 1, '915226845390382972', 'No.29 building, 800 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-08-01', 0, 0, 'ruihao1213', '2005-05-31', 'ruihao', '2018-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS57517090', 'Willie Hill', 1, '+1 838-762-1590', 2, '081768534303450497', '271 State Street Suite 31, Albany, NY 12203, United States', '1990-09-11', 0, 0, 'wih66', '2004-04-02', 'whill1948', '2021-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS92668917', 'Theresa Butler', 0, '+44 (1223) 15 7115', 3, '579730073480252929', 'No.17 Main building, 173 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-02-10', 0, 0, 'theresabutl', '2019-12-06', 'tbutler', '2017-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS27311475', '錢家玲', 0, '+81 70-6261-8194', 3, '035064184687691761', '48F, 1-1-20 Deshiro, Nishinari Ward, Osaka, Japan', '1985-02-05', 0, 0, 'ckl', '2013-07-13', 'kaling1', '2017-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS41684298', 'Alan Young', 0, '+1 614-331-6671', 3, '206469626850466604', '873 Wicklow Road Suite 9, Columbus, GA 43204, United States', '1996-06-05', 0, 0, 'alan1966', '2010-07-16', 'alan2005', '2004-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS79943709', '陳玲玲', 0, '+86 760-6001-6593', 2, '565923175435002919', 'Room 15, CR Building, 958 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1997-08-13', 0, 0, 'lingling413', '2008-09-11', 'chanll', '2005-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS66246349', '梁云熙', 1, '+86 144-1603-9584', 3, '570802739688923241', 'Room 29, CR Building, 193 Jiangnan West Road, Haizhu District, Guangzhou, China', '1991-10-28', 0, 0, 'yunxiliang', '2006-05-31', 'ylian', '2010-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS23885501', '方慧琳', 1, '+44 7126 323283', 3, '896619021387002141', 'Flat 11, 564 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1987-08-20', 0, 0, 'wlfon', '2010-02-15', 'fwl', '2017-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS40610179', '苑潤發', 1, '+1 614-044-4902', 1, '042572027513936459', '521 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1987-09-24', 0, 0, 'yyf', '2000-09-10', 'yuen48', '2010-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS72622427', 'Patricia Jones', 1, '+44 7074 367665', 0, '340855912657624546', 'Unit 19, Oxford Eco Centre, 913 Sackville St, Manchester, M1 3BB, United Kingdom', '1985-05-03', 0, 0, 'jones5', '2002-07-09', 'jopatri', '2005-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS56131411', '朱頴思', 1, '+44 (151) 412 3822', 1, '633628238501970141', 'Flat 20, 378 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1987-01-09', 0, 0, 'wschu', '2011-05-12', 'wingsze08', '2017-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS91338786', '阎致远', 0, '+81 11-332-6427', 1, '928427659753372959', '日本札幌中央区宮の森四条六丁目1番6号20号室', '1992-04-22', 0, 0, 'zhiyuan11', '2021-10-01', 'yazhiyuan', '2020-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS70913744', '薛慧琳', 1, '+44 (151) 354 9710', 2, '415028690949874425', 'No.8 Main building, 866 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-12-10', 0, 0, 'sitwailam', '2016-06-16', 'sitwl', '2014-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS80159751', '袁詩君', 1, '+86 10-803-4987', 1, '869331301406186542', '中国北京市海淀区清河中街68号471号华润大厦29室', '1997-09-03', 0, 0, 'yuenszekwan', '2000-06-08', 'yuszek', '2018-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS26168869', 'Jeffery Jordan', 1, '+86 21-2188-1605', 3, '621899314393090251', '中国上海市浦东新区橄榄路174号44楼', '1991-11-20', 0, 0, 'jeffjo', '2004-04-15', 'jej', '2004-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS49639358', '譚家玲', 1, '+44 5095 702809', 0, '906039950582219681', 'Block 49, 513 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1986-10-31', 0, 0, 'tamkl', '2006-07-01', 'kltam', '2019-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS45901869', '金致远', 1, '+81 52-421-5306', 4, '170345491624615458', '33F, 16 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-12-25', 0, 0, 'jinzhiyuan', '2013-05-17', 'jinzhi', '2013-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS98314708', '清水花', 0, '+86 183-7031-0055', 2, '556753763432923621', '中国成都市成华区玉双路6号537号42栋', '1991-01-12', 0, 0, 'hashimizu', '2001-05-04', 'shimihana4', '2021-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS05609588', '渡辺美月', 1, '+86 10-744-1511', 2, '754460012224638257', 'Room 46, 578 Dong Zhi Men, Dongcheng District, Beijing, China', '1988-04-15', 0, 0, 'mitsukisat508', '2007-04-02', 'sato2007', '2013-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS93012074', '三浦美緒', 1, '+86 164-7855-5613', 3, '756322829646288888', '中国北京市东城区东单王府井东街432号8栋', '1991-11-12', 0, 0, 'miurmio', '2017-03-13', 'mimiura', '2013-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS65526482', '李致远', 0, '+86 195-3222-2677', 2, '960966796718896559', 'Room 23, 207 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1998-09-22', 0, 0, 'lizhiyuan', '2013-10-25', 'zhiyuan1113', '2019-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS84278072', '贾安琪', 1, '+81 3-2779-6835', 2, '195512504117299349', '日本東京港区東新橋一丁目5番4号39階', '1993-05-14', 0, 0, 'anji', '2003-03-15', 'jia77', '2015-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS78440834', '邵安琪', 1, '+81 90-6773-3668', 3, '976532565003955113', '16F, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1992-06-03', 0, 0, 'sha', '2012-09-30', 'ash', '2009-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS26235269', '彭晓明', 0, '+86 10-3395-0822', 0, '099954648842437792', '48F, 517 East Wangfujing Street, Dongcheng District , Beijing, China', '1992-09-15', 0, 0, 'pengxiaoming', '2012-07-02', 'pengxia2017', '2021-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS41808503', 'Stephanie Miller', 1, '+81 66-031-3536', 1, '568183719196902393', '日本おおさかし近江堂一丁目7番7号14階', '1992-09-19', 0, 0, 'millerstephanie', '2001-05-09', 'millerstephanie13', '2020-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS31931128', '唐致远', 0, '+1 213-264-1716', 1, '991598828107158288', '409 S Broadway Apt 17, Los Angeles, CA 90015, United States', '1997-09-05', 0, 0, 'tang63', '2004-07-24', 'tangzh', '2021-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS37990467', '許慧嫻', 0, '+86 10-234-3371', 3, '772711146828390846', 'Room 6, CR Building, 852 Sanlitun Road, Chaoyang District, Beijing, China', '1997-12-22', 0, 0, 'whh', '2014-06-27', 'huiwh619', '2012-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS32205253', 'Hazel Chen', 0, '+81 80-2920-9040', 1, '958684078176658726', 'Rm. 27, 5-19-16 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1990-02-10', 0, 0, 'hazchen', '2015-09-05', 'chenh', '2010-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS63415009', '石川花', 1, '+44 (121) 475 0568', 1, '614040752248659174', 'Unit 13, Oxford Eco Centre, 814 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1988-02-27', 0, 0, 'hana9', '2012-09-09', 'hanaishi', '2013-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS11423043', '田村蒼士', 1, '+1 614-712-7812', 3, '805415548025457988', '704 Tremont Road Apartment 8, Columbus, GA 43212, United States', '1993-06-04', 0, 0, 'tamuao9', '2006-03-10', 'atamura', '2000-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS44589537', '王學友', 1, '+86 150-7843-5432', 3, '318135377719822828', '中国深圳福田区景田东一街839号29楼', '1998-01-31', 0, 0, 'hywo', '2020-07-30', 'wong1', '2015-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS02999743', 'Anne Ryan', 1, '+81 80-6893-8453', 2, '724130910225152783', '日本なごやし北区楠味鋺三丁目80番1号37号室', '1987-01-21', 0, 0, 'anne4', '2019-12-22', 'anner', '2008-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS12981459', 'Doris Edwards', 1, '+81 3-8182-6996', 4, '433038892291629865', '日本東京渋谷区代々木二丁目3番16号30階', '1994-01-02', 0, 0, 'dorisedwar2', '2008-02-12', 'doris8', '2021-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS61030845', '應頴思', 0, '+86 186-9498-8013', 0, '005802750737404969', '中国成都市成华区二仙桥东三路281号27楼', '1995-10-21', 0, 0, 'wsyi', '2011-01-05', 'wsyin126', '2009-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS43464937', '區祖兒', 0, '+81 70-0396-0341', 0, '310714363019172927', 'Rm. 41, 1-7-3 Omido, Higashiosaka, Osaka, Japan', '1988-12-08', 0, 0, 'auchoyee', '2021-06-11', 'auchoyee', '2003-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS16932826', '钟子韬', 1, '+86 10-9730-3051', 0, '046255381646615007', 'No.37 building, 376 028 County Rd, Yanqing District, Beijing, China', '1994-11-18', 0, 0, 'zhongzitao', '2005-04-25', 'zhongzitao', '2015-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS28396642', '山本和真', 1, '+86 174-1550-7009', 1, '953788763903482283', 'Room 10, 215 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1990-09-09', 0, 0, 'kyamamoto', '2002-10-01', 'ykazu', '2021-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS61547783', 'Ronald Cook', 1, '+81 52-839-1828', 2, '785005203784024236', 'Rm. 36, 3-19-19 Shimizu, Kita Ward, Nagoya, Japan', '1996-08-15', 0, 0, 'ronaldcook2', '2021-09-01', 'ronald10', '2021-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS16663423', '加藤絢斗', 0, '+81 80-7476-1295', 1, '901146848325529541', '12F, 2-1-15 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-09-15', 0, 0, 'kato2016', '2007-08-08', 'kato5', '2000-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS38411926', '史詩涵', 0, '+44 5917 011626', 4, '273603033427563548', 'Block 27, 714 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1997-03-16', 0, 0, 'shihansh70', '2020-12-03', 'ssh', '2021-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS13878843', '車惠敏', 0, '+81 11-739-4217', 1, '419633242448705024', '39F, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-11-22', 0, 0, 'waimanc00', '2000-10-22', 'che12', '2016-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS33992947', '楊青雲', 0, '+86 755-5135-2194', 2, '526459351062456494', '中国深圳福田区景田东一街654号40楼', '1992-05-12', 0, 0, 'yeucw721', '2013-06-13', 'chingwanye1', '2015-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS27136381', '藍青雲', 1, '+81 3-0083-8694', 4, '612432505385877524', '日本東京中央区銀座三丁目12番4号5号室', '1991-05-29', 0, 0, 'chingwan3', '2009-02-14', 'chingwanla', '2016-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS75380926', '宋杰宏', 1, '+81 11-189-1992', 1, '836857463789268932', '1F, 6-1-4, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-10-17', 0, 0, 'songjiehong9', '2021-02-03', 'songjie93', '2007-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS22240058', 'Don Jackson', 0, '+44 5963 017455', 3, '667943794280524660', 'Block 39, 852 Pollen Street, London, W1S 1NG, United Kingdom', '1992-06-26', 0, 0, 'don1948', '2020-02-27', 'jd4', '2003-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS54623085', '内田彩乃', 1, '+86 10-0041-2160', 3, '307970655230514562', 'No.30 building, 295 Dong Zhi Men, Dongcheng District, Beijing, China', '1990-08-14', 0, 0, 'uayano', '2020-06-05', 'uchidaayano4', '2004-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS81224995', '大塚百恵', 0, '+81 70-1479-5695', 3, '366688012016765784', '日本おおさかし西成区天神ノ森二丁目1番9号5号室', '1997-11-06', 0, 0, 'otsukam', '2011-07-22', 'mot13', '2015-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS44395528', 'Bonnie Gibson', 1, '+81 70-1561-5617', 3, '552008428706027977', '31-kai, 3-27-1 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-03-12', 0, 0, 'gibonnie2', '2001-10-23', 'bogibs', '2004-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS67023704', '松本美羽', 1, '+81 80-6733-5941', 3, '255388638128077090', '日本東京港区東新橋一丁目5番8号14階', '1994-06-28', 0, 0, 'matsumoto9', '2021-06-29', 'mmat', '2020-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS13789808', '顾云熙', 0, '+86 20-952-0325', 1, '536007200555022711', '中国广州市越秀区中山二路445号21楼', '1997-07-11', 0, 0, 'guyunxi71', '2002-04-02', 'yunxigu', '2005-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS19935281', '清水優奈', 1, '+81 66-647-3371', 4, '993699821636793043', '日本おおさかし西成区天神ノ森二丁目1番16号39号室', '1995-04-12', 0, 0, 'yunashimizu', '2007-11-11', 'shimizuyuna7', '2007-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS61826086', '邵安琪', 0, '+44 (121) 268 7618', 2, '740607509975566674', 'Unit 49, Oxford Eco Centre, 613 New Street, Birmingham, B2 4DB, United Kingdom', '1998-09-18', 0, 0, 'anqishao', '2006-03-08', 'shaoan2003', '2009-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS33795333', '内田舞', 0, '+86 159-3893-2864', 3, '671095733692166871', '中国深圳福田区深南大道319号39楼', '1991-02-22', 0, 0, 'maiu', '2006-07-03', 'uchima', '2015-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS86921430', '山下悠人', 1, '+81 66-222-9482', 2, '338619026322129581', '日本おおさかし西成区天神ノ森二丁目1番5号5階', '1998-02-18', 0, 0, 'yamashitayuto1021', '2008-11-23', 'yamashita2', '2015-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS32190585', '蔡安琪', 0, '+1 718-997-9489', 4, '194700097300844726', '117 Columbia St Suite 26, Brooklyn, NY 11231, United States', '1989-07-09', 0, 0, 'aca', '2016-05-06', 'cai9', '2004-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS42124764', '田璐', 0, '+81 3-0529-8095', 1, '778548190658844701', 'Rm. 17, 1-5-6, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1995-06-25', 0, 0, 'ltia', '2012-05-23', 'tilu', '2018-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS61965490', '江云熙', 1, '+81 52-507-9582', 3, '005606659903503447', 'Rm. 34, 3 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1986-07-10', 0, 0, 'yunxjia', '2006-08-18', 'yunxiji522', '2007-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS09376770', '文梓軒', 0, '+1 213-289-6831', 2, '468033053358659899', '283 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1991-08-14', 0, 0, 'tszhinman', '2017-01-25', 'math', '2013-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS19057807', '成安娜', 1, '+81 80-2978-5759', 1, '428958266041574709', '23F, 2 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1993-05-20', 0, 0, 'ons9', '2006-10-03', 'onshing7', '2019-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS95620923', '杉山架純', 1, '+1 330-146-2975', 3, '263738967977221936', '170 Collier Road Apt 8, Akron, OH 44320, United States', '1987-04-29', 0, 0, 'ksugiyama', '2003-12-01', 'kasumsugiyama', '2007-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS73684713', '楊慧嫻', 1, '+81 90-2535-2301', 2, '643630028414048736', '日本なごやし北区楠味鋺三丁目80番7号40号室', '1999-02-23', 0, 0, 'why', '2021-10-03', 'why2', '2000-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS05441304', '曾安琪', 0, '+1 614-101-0395', 3, '719032313122988692', '984 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1986-05-20', 0, 0, 'zanq', '2011-01-11', 'anzen', '2004-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS09034642', '曾永發', 0, '+81 74-252-8568', 1, '629668243244931978', 'Rm. 1, 3 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-08-30', 0, 0, 'tswing', '2020-11-28', 'tsang6', '2006-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS30201544', 'Tiffany Phillips', 0, '+1 312-889-8330', 1, '293102785208894730', '839 Rush Street Apartment 46, Chicago, IL 60611, United States', '1989-12-30', 0, 0, 'phillipsti', '2020-11-08', 'phillips53', '2002-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS28073037', '坂本大和', 0, '+81 80-5436-5869', 1, '881093180143105586', 'Rm. 50, 1-1-5 Deshiro, Nishinari Ward, Osaka, Japan', '1986-12-04', 0, 0, 'yamatosakamoto2009', '2011-05-18', 'syamato2010', '2005-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS36023995', '苑嘉欣', 1, '+81 3-5591-6501', 0, '340828285666549598', '14-kai, 3-15-5 Ginza, Chuo-ku, Tokyo, Japan', '1995-12-11', 0, 0, 'karyan73', '2006-04-26', 'yuenkaryan', '2015-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS96444312', 'Frances Powell', 1, '+1 614-755-2455', 2, '172377264122481896', '764 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1985-05-07', 0, 0, 'fpowel15', '2003-04-26', 'francespowe', '2001-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS46817961', '郑震南', 0, '+1 213-771-1888', 0, '627950670375880630', '385 Figueroa Street Suite 14, Los Angeles, CA 90037, United States', '1985-08-27', 0, 0, 'zzheng', '2021-05-29', 'zzheng3', '2012-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS62236174', '姜詩涵', 0, '+86 20-9024-1239', 3, '082047140250827909', 'No.36 building, 436 Tianhe Road, Tianhe District, Guangzhou, China', '1988-03-16', 0, 0, 'shihanjiang', '2011-10-22', 'shihanjiang710', '2018-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS06045474', 'Jack Guzman', 0, '+44 (151) 770 2616', 3, '448385705700262740', 'No.49 Main building, 986 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1995-09-28', 0, 0, 'jg1213', '2015-10-02', 'gj63', '2015-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS90478595', '佐野絢斗', 1, '+1 330-944-6435', 4, '050503797309276483', '2 Riverview Road Suite 34, Akron, OH 44313, United States', '1986-01-29', 0, 0, 'ayatosa3', '2005-01-07', 'sanoa', '2014-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS39889554', 'Lillian Chavez', 0, '+81 11-340-7428', 0, '989736454290769287', '日本札幌清田区真栄四条五丁目19番19号6階', '1998-02-08', 0, 0, 'lch42', '2008-06-29', 'chavez90', '2017-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS25602107', '山口花', 0, '+86 20-6035-2856', 4, '311506087587849269', '19F, 238 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1989-03-18', 0, 0, 'yamaghana8', '2008-06-15', 'hanayamaguchi', '2005-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS59405769', 'Jeremy Mendez', 1, '+86 769-9523-3641', 2, '999941424238430415', '中国东莞珊瑚路720号华润大厦48室', '1995-02-07', 0, 0, 'jme43', '2009-12-05', 'jermende', '2001-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS00435036', '藤田玲奈', 1, '+86 154-7996-6630', 4, '483769279951744172', 'Room 34, CR Building, 982 Lefeng 6th Rd, Zhongshan, China', '1996-02-15', 0, 0, 'renaf5', '2022-03-04', 'rena612', '2010-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS49167337', '葉國權', 1, '+81 11-177-4412', 1, '964720273726281924', 'Rm. 17, 13-3-7 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1986-12-22', 0, 0, 'yipkk', '2003-03-16', 'yipkwokkuen6', '2007-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS76961897', '秦云熙', 1, '+81 52-893-3916', 3, '021237331830619192', '30F, 13 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1991-10-17', 0, 0, 'yunxiqi5', '2011-12-19', 'yunxqi', '2012-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS66448699', '金子絢斗', 0, '+86 157-5564-2202', 2, '044616707899804778', '中国北京市房山区岳琉路823号46号楼', '1986-09-19', 0, 0, 'ayato1995', '2000-08-25', 'kaneko94', '2021-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS01048684', 'Ethel Turner', 0, '+81 74-857-9567', 0, '196635996713906927', '6-kai, 3-9-12 Gakuenminami, Nara, Japan', '1992-03-19', 0, 0, 'ethelturner76', '2016-02-09', 'ethetur', '2010-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS80502099', 'Carolyn Johnson', 1, '+81 70-2666-5766', 2, '587738727955062132', '日本おおさかし近江堂一丁目7番9号45階', '1991-11-16', 0, 0, 'johnsoncaro8', '2020-08-31', 'jocarolyn', '2005-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS05734946', '朱世榮', 0, '+81 90-4355-8947', 1, '565033096680127012', '日本東京港区東新橋一丁目5番8号24階', '1987-10-24', 0, 0, 'csaiwi', '2013-09-04', 'saiwingchu06', '2013-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS27588920', '竹内陽菜', 0, '+44 5832 826665', 1, '542865103534616339', 'No.7 Main building, 230 Pollen Street, London, W1S 1NG, United Kingdom', '1985-02-16', 0, 0, 'hinat', '2014-08-01', 'takeuchi731', '2012-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS26062147', '岡田一輝', 1, '+81 90-1446-7106', 2, '741439370890300837', '39-kai, 2-3-11 Yoyogi, Shibuya-ku, Tokyo, Japan', '1993-03-03', 0, 0, 'okada1948', '2002-04-12', 'okadaikk', '2012-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS02947393', 'Cheryl Rose', 0, '+1 212-803-9224', 1, '889681508232048829', '577 Fifth Avenue Suite 31, New York, NY 10017, United States', '1994-09-09', 0, 0, 'rosech1960', '2005-02-21', 'roscheryl6', '2004-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS26797191', 'Debra Butler', 0, '+81 70-3833-6080', 4, '287004601975492785', '日本なごやし北区楠味鋺三丁目80番5号3階', '1995-03-26', 0, 0, 'butler74', '2006-11-26', 'debra919', '2020-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS87459722', 'Bernard Bryant', 0, '+81 74-464-9381', 0, '967792693372166497', 'Rm. 3, 1-7-10 Saidaiji Akodacho, Nara, Japan', '1998-03-21', 0, 0, 'bernardbry', '2007-12-30', 'brybernard', '2001-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS94370455', 'Jennifer Moore', 0, '+1 213-190-1094', 2, '583292065773132333', '870 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1988-07-23', 0, 0, 'jennifer05', '2020-03-04', 'moorej15', '2020-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS40506345', '小島大輔', 0, '+81 11-528-6575', 3, '217611141905457972', '日本札幌中央区宮の森四条六丁目1番2号49号室', '1994-05-02', 0, 0, 'kd220', '2018-12-19', 'kojimadai50', '2022-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS41280142', '韦子异', 0, '+1 213-239-2265', 1, '326708223057036796', '952 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1995-04-26', 0, 0, 'ziyi10', '2001-03-07', 'wei1958', '2013-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS24057245', '苑國權', 0, '+44 7363 446166', 4, '450083735041393894', 'Unit 44, Oxford Eco Centre, 33 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1996-11-17', 0, 0, 'kwokkuen118', '2001-06-14', 'yuen4', '2007-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS79943308', 'Emma Wagner', 1, '+81 80-9699-5056', 1, '101093210860132673', '日本ならし大和郡山市本庄町一丁目1番19号37階', '1986-01-05', 0, 0, 'emmawa209', '2006-01-31', 'wagneemma', '2016-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS27549037', '島田明菜', 1, '+44 (20) 1002 6056', 3, '585827765692110388', 'Block 8, 175 Maddox Street, London, W1S 1PU, United Kingdom', '1989-05-29', 0, 0, 'akina129', '2008-11-12', 'akina8', '2000-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS21791671', '罗致远', 1, '+81 70-8653-1829', 2, '674712868396515303', 'Rm. 24, 15 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1991-08-20', 0, 0, 'luoz', '2020-02-16', 'zhiyuanl', '2015-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS07806150', '内田光莉', 1, '+1 213-408-0359', 2, '855387677565178974', '443 Grape Street Apartment 29, Los Angeles, CA 90002, United States', '1994-07-04', 0, 0, 'hikuchida', '2007-03-08', 'hu64', '2008-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS12931209', '陈震南', 1, '+86 194-3806-9074', 1, '330604084012786132', '48F, 700 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1992-12-02', 0, 0, 'chenzhennan', '2017-05-15', 'chzhennan', '2017-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS07702659', 'Philip Romero', 0, '+81 3-3844-9593', 3, '090099272184886149', '42-kai, 5-2-13 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-06-28', 0, 0, 'philip106', '2018-10-22', 'phromer', '2006-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS11677691', 'Mildred Evans', 1, '+86 169-0633-0795', 1, '762526802383202682', 'Room 19, 874 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1994-04-02', 0, 0, 'mildredevans', '2015-11-01', 'evamildred', '2011-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS76085278', '邵睿', 0, '+86 28-4312-0294', 0, '811170269922420643', '中国成都市锦江区红星路三段492号12室', '1992-10-28', 0, 0, 'rushao704', '2012-06-24', 'ruishao', '2010-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS27609708', '田睿', 1, '+81 3-8317-5918', 1, '149573343762367369', '日本東京中央区銀座三丁目12番2号29号室', '1994-02-02', 0, 0, 'tianrui55', '2017-09-07', 'rui528', '2011-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS48070043', 'Gloria Moreno', 0, '+1 212-540-8309', 3, '479025112890442068', '533 Fifth Avenue Apartment 38, New York, NY 10017, United States', '1997-09-17', 0, 0, 'gloria9', '2016-11-30', 'glorm', '2009-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS44552381', '張嘉欣', 0, '+86 21-593-8578', 3, '523332756409679566', 'Room 31, CR Building, 946 Ganlan Rd, Pudong, Shanghai, China', '1989-03-26', 0, 0, 'kycheung', '2003-01-01', 'karyan2018', '2011-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS96200289', '和田悠人', 1, '+86 10-0280-7580', 1, '115538826636075708', '中国北京市東城区東直門內大街392号28号楼', '1997-01-17', 0, 0, 'yutow', '2012-10-26', 'yutowada1976', '2019-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS46504603', '洪德華', 0, '+86 28-0298-0506', 0, '414921096902571046', '中国成都市锦江区人民南路四段120号华润大厦24室', '1993-10-23', 0, 0, 'twhung', '2015-10-26', 'hungtw', '2016-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS49806953', '龚詩涵', 1, '+86 20-871-7995', 3, '390171332756797155', 'Room 40, 715 Tianhe Road, Tianhe District, Guangzhou, China', '1985-08-17', 0, 0, 'gong8', '2019-05-20', 'gshi303', '2000-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS49043290', '段岚', 0, '+86 133-2946-7618', 0, '216498727257851072', '中国广州市天河区天河路485号18楼', '1995-10-15', 0, 0, 'lduan131', '2012-07-30', 'duanlan314', '2018-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS49418332', '胡子韬', 0, '+1 330-547-0023', 2, '319703021231720362', '699 Collier Road Suite 15, Akron, OH 44320, United States', '1988-11-29', 0, 0, 'zitaohu', '2013-01-15', 'zitaohu8', '2012-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS17270049', '劉頴璇', 0, '+81 74-968-3441', 4, '491922200493431011', '48-kai, 1-7-1 Saidaiji Akodacho, Nara, Japan', '1987-06-25', 0, 0, 'lawingsuen46', '2014-11-21', 'wsl', '2015-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS02658430', 'Robin Diaz', 1, '+86 769-669-9537', 1, '191669294004465284', 'No.13 building, 926 Kengmei 15th Alley, Dongguan, China', '1991-02-14', 0, 0, 'diaz1980', '2020-12-06', 'rdi', '2006-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS29775209', 'Ryan Morales', 0, '+81 3-3790-5996', 1, '237202754547521356', '17F, 2-3-13 Yoyogi, Shibuya-ku, Tokyo, Japan', '1986-06-16', 0, 0, 'ryanmorales3', '2005-10-02', 'ryanmorales1959', '2007-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS42469053', 'Crystal Wagner', 0, '+1 330-259-3220', 0, '579382805311073179', '380 Ridgewood Road Suite 9, Akron, OH 44321, United States', '1998-01-04', 0, 0, 'wagcrystal7', '2022-02-09', 'cw623', '2001-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS89959405', 'Barry Holmes', 0, '+44 (116) 083 9926', 3, '254657962873123667', 'Block 35, 287 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1986-03-08', 0, 0, 'holmes1', '2014-05-15', 'holmesbarry1009', '2006-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS54303809', '高子异', 1, '+86 755-907-1425', 0, '085165171196564100', 'Room 1, CR Building, 764 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1985-07-01', 0, 0, 'gaoziyi8', '2019-11-24', 'ziyiga', '2017-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS03645342', '遠藤涼太', 0, '+86 150-5301-9136', 2, '002574141573051578', 'No.21 building, 500 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1987-12-19', 0, 0, 'eryota6', '2022-01-14', 'ryotendo1106', '2008-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS64833928', '金子海斗', 0, '+81 80-2285-7976', 2, '509811480267875748', '日本札幌清田区真栄四条五丁目19番10号9号室', '1992-08-02', 0, 0, 'kaitoka2', '2002-05-28', 'kanekok', '2001-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS58541543', 'Norman Ford', 1, '+1 330-299-0502', 3, '107787678931335932', '227 Collier Road Apt 38, Akron, OH 44320, United States', '1996-01-06', 0, 0, 'norman02', '2005-10-10', 'fordnorman', '2010-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS68901566', '江天榮', 1, '+81 3-6157-2509', 3, '159317738888105595', 'Rm. 42, 3-15-15 Ginza, Chuo-ku, Tokyo, Japan', '1999-03-02', 0, 0, 'twkong', '2001-05-26', 'twkong3', '2014-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS64088202', '彭睿', 1, '+81 3-6064-6856', 2, '731174573181159716', '日本東京品川区東五反田五丁目2番2号38階', '1994-01-21', 0, 0, 'rui1983', '2015-02-18', 'pr4', '2004-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS21953124', '邵德華', 0, '+1 718-789-1662', 0, '809529460945514949', '22 Bergen St Apartment 33, Brooklyn, NY 11217, United States', '1998-06-29', 0, 0, 'stw516', '2009-03-18', 'siutakwah', '2019-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS08709701', 'Michelle Jones', 1, '+81 66-485-0809', 0, '830797084878994137', '日本おおさかし西成区天神ノ森二丁目1番14号35号室', '1986-06-06', 0, 0, 'michelle08', '2006-04-08', 'micjones', '2011-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS45843775', '房志明', 1, '+44 (151) 005 9277', 3, '192247458983991984', 'Block 1, 113 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1995-07-12', 0, 0, 'foncm1972', '2020-04-01', 'chiming1970', '2011-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS13042015', '周杰宏', 0, '+86 163-5708-0833', 2, '321721830468673671', '中国北京市东城区东单王府井东街943号44楼', '1993-02-25', 0, 0, 'zhou62', '2018-07-30', 'jiehong5', '2006-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS83306315', 'Jeffery Miller', 1, '+81 11-403-7524', 3, '953772561673946048', '日本札幌厚別区上野幌一条二丁目1番3号34階', '1998-05-19', 0, 0, 'jeffmiller', '2009-02-20', 'jefferymiller', '2008-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS53289122', '雷國榮', 0, '+44 7975 126509', 0, '628336747229660326', 'Flat 40, 121 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1993-09-29', 0, 0, 'kwloui', '2017-01-26', 'loui123', '2007-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS79040130', '狄麗欣', 1, '+81 52-631-9763', 3, '402983102680061702', '日本なごやし守山区瀬古東二丁目171番18号4号室', '1990-06-15', 0, 0, 'lyti59', '2012-09-24', 'laiyan74', '2009-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS19996914', '葉國賢', 1, '+81 52-034-0273', 1, '696100613904839136', 'Rm. 37, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-06-24', 0, 0, 'kwoy728', '2017-05-24', 'kyyi', '2019-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS66570133', '丸山海斗', 1, '+86 28-185-0257', 1, '338027562412854637', 'No.21 building, 486 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1988-06-15', 0, 0, 'maruyama10', '2018-05-13', 'mk530', '2010-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS26446521', '江慧儀', 0, '+44 (151) 843 4156', 4, '435010653930333179', 'Unit 8, Oxford Eco Centre, 462 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1993-12-08', 0, 0, 'wyk1225', '2001-02-07', 'kongwy10', '2010-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS11447202', '高田玲奈', 0, '+1 838-428-1201', 2, '543410221814914920', '828 Central Avenue Suite 16, Albany, NY 12206, United States', '1993-02-08', 0, 0, 'trena', '2016-03-05', 'renata', '2002-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS07621892', '戴志明', 1, '+81 74-833-4733', 3, '378638370295780470', 'Rm. 44, 3-9-20 Gakuenminami, Nara, Japan', '1998-01-01', 0, 0, 'cmdai1944', '2009-04-14', 'dachiming', '2009-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS60975911', 'Dennis Sanders', 1, '+1 330-307-7885', 3, '459462847436156200', '479 Fern Street 3rd Floor, Akron, OH 44307, United States', '1992-06-19', 0, 0, 'dennisand', '2019-01-01', 'densan', '2011-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS81230042', '邹岚', 0, '+1 718-526-8732', 1, '468869876108004484', '540 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1995-02-07', 0, 0, 'zoulan', '2017-10-17', 'lanzo604', '2020-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS21629662', '盧家輝', 0, '+81 70-7630-9929', 2, '662616148945479559', '20F, 6-1-6, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1985-12-28', 0, 0, 'lkafai', '2004-11-14', 'lkafai95', '2003-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS75280114', 'Robin Bailey', 0, '+44 (20) 4455 0123', 2, '372017320111707926', 'Block 42, 860 Maddox Street, London, W1S 1PU, United Kingdom', '1988-02-07', 0, 0, 'robbailey', '2006-02-14', 'robin611', '2020-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS25739623', '松井光', 1, '+44 (116) 687 3618', 0, '647047354017293266', 'No.15 Main building, 401 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1994-12-11', 0, 0, 'matsuih', '2014-07-28', 'matsuihikaru', '2010-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS83734053', 'Nicole Parker', 1, '+81 90-8190-4711', 3, '093388940163330501', '日本なごやし北区清水三丁目19番5号44号室', '1995-08-10', 0, 0, 'parkernicole', '2008-12-11', 'parker126', '2014-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS10872177', '谷詠詩', 1, '+86 142-1389-3307', 3, '445359231958918485', 'No.47 building, 495 West Chang''an Avenue, Xicheng District, Beijing, China', '1994-12-12', 0, 0, 'wskoo', '2020-03-05', 'kws', '2003-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS08421531', 'Beverly Sanders', 1, '+81 3-3155-0034', 3, '519235865960311466', '9F, 3-15-20 Ginza, Chuo-ku, Tokyo, Japan', '1987-06-09', 0, 0, 'sandersb70', '2010-10-10', 'beversanders3', '2022-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS55498465', '高田美緒', 1, '+81 90-1073-4794', 1, '414613753512714643', '日本ならし学園南三丁目9番18号13階', '1991-03-15', 0, 0, 'takamio', '2007-07-22', 'takmi', '2013-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS06843032', '許小慧', 1, '+81 66-131-5700', 2, '785861345570515441', 'Rm. 26, 1-7-2 Omido, Higashiosaka, Osaka, Japan', '1995-09-30', 0, 0, 'husiuwa69', '2006-10-07', 'hsw', '2004-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS11764521', '藤國榮', 1, '+81 74-527-3731', 2, '709699048270203818', 'Rm. 17, 3-9-4 Gakuenminami, Nara, Japan', '1993-09-13', 0, 0, 'kwt', '2003-01-12', 'tkwokwing410', '2003-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS99893504', 'Ethel Castro', 1, '+1 330-443-7423', 3, '594434213024136918', '342 Collier Road 3rd Floor, Akron, OH 44320, United States', '1996-12-22', 0, 0, 'ethel303', '2002-05-03', 'castroe', '2005-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS67163752', '李云熙', 1, '+81 3-4917-3929', 3, '736112317096596114', '日本東京渋谷区代々木二丁目3番16号33号室', '1996-06-06', 0, 0, 'yuli', '2020-01-27', 'liyunxi', '2017-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS14138157', '吴杰宏', 1, '+86 10-050-9804', 4, '690007053667541604', '24F, 142 028 County Rd, Yanqing District, Beijing, China', '1988-03-10', 0, 0, 'jwu', '2007-11-05', 'jiehongwu', '2011-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS97553923', '岡本悠人', 1, '+81 52-802-6130', 1, '769101014623335803', 'Rm. 42, 2-5-13 Chitose, Atsuta Ward, Nagoya, Japan', '1992-04-26', 0, 0, 'yutookamoto87', '2003-12-18', 'yuto916', '2016-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS60930673', '郝震南', 1, '+86 131-5195-1658', 2, '215125612553727894', '中国中山乐丰六路283号46栋', '1998-08-22', 0, 0, 'haozhennan', '2015-01-02', 'zhenhao', '2018-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS01839834', '張心穎', 0, '+81 80-0539-0311', 3, '952663528593716438', '45F, 4-9-14 Kamihigashi, Hirano Ward, Osaka, Japan', '1994-04-05', 0, 0, 'swch', '2013-03-23', 'cheusumwi627', '2008-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS64724093', '何慧珊', 0, '+81 66-377-0929', 3, '074099126895098291', '日本おおさかし西成区天神ノ森二丁目1番11号17階', '1995-03-15', 0, 0, 'howaisan2006', '2001-08-21', 'waih7', '2019-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS62423970', '今井陽太', 0, '+86 10-6231-1122', 4, '080671788564898188', 'Room 45, CR Building, 638 Yueliu Rd, Fangshan District, Beijing, China', '1987-01-17', 0, 0, 'imyota', '2007-06-16', 'yimai', '2012-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS16879783', '林大輔', 0, '+86 195-3057-3191', 0, '194854600904420434', '中国上海市浦东新区橄榄路452号40楼', '1998-12-29', 0, 0, 'hayashi908', '2015-01-08', 'daishayashi407', '2010-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS29680541', '黃梓軒', 1, '+86 769-241-1531', 1, '966206926114700273', '中国东莞坑美十五巷58号1楼', '1993-03-28', 0, 0, 'wongtszhi', '2018-11-17', 'wong313', '2015-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS97351774', 'Florence West', 0, '+86 769-4152-6152', 3, '809669947215681332', 'Room 29, 876 Kengmei 15th Alley, Dongguan, China', '1989-05-16', 0, 0, 'fwest10', '2016-08-04', 'flow', '2017-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS65191296', '陶宇宁', 0, '+86 182-0798-2841', 4, '040291698263027062', '8F, 469 Middle Huaihai Road, Huangpu District, Shanghai, China', '1997-09-27', 0, 0, 'tayuning423', '2010-04-25', 'ytao', '2006-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS49289550', '樂詠詩', 0, '+1 838-526-4563', 1, '164789123626403939', '816 Broadway Apartment 6, Albany, NY 12207, United States', '1990-08-02', 0, 0, 'lws', '2003-02-08', 'lok618', '2021-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS43432280', 'Stephanie Thompson', 0, '+44 (121) 516 8218', 1, '884085646900081037', 'No.6 Main building, 660 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1996-11-14', 0, 0, 'stepthom129', '2013-01-20', 'st7', '2011-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS16657372', '鄺家玲', 0, '+1 718-375-4300', 3, '973490050807355816', '989 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1995-12-17', 0, 0, 'kalingkwong', '2007-07-10', 'klkwong1114', '2005-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS63894740', '張思妤', 1, '+86 130-7063-1599', 1, '559506070602285984', 'No.26 building, 603 Dong Zhi Men, Dongcheng District, Beijing, China', '1990-06-25', 0, 0, 'cheung78', '2006-09-20', 'szeyu49', '2002-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS16301786', 'Timothy Morales', 1, '+81 66-450-7372', 3, '155676401439883574', '日本おおさかし平野区加美東四丁目9番4号43階', '1996-04-06', 0, 0, 'moraltimothy', '2002-03-22', 'tmoral930', '2019-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS11821778', '曹璐', 1, '+86 131-8526-9229', 2, '524394126036975014', '中国深圳罗湖区田贝一路263号20号楼', '1988-10-18', 0, 0, 'caolu', '2001-06-10', 'calu', '2021-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS82843130', '龚晓明', 1, '+81 70-5755-3817', 2, '235913050423799250', '日本おおさかし東住吉区東田辺三丁目27番11号29階', '1985-03-04', 0, 0, 'gongxiaoming', '2018-05-12', 'gongxia', '2010-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS42948556', 'Lawrence Ford', 1, '+44 (161) 866 3597', 3, '261637559263453631', 'No.50 Main building, 16 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-02-10', 0, 0, 'fordlawrence', '2000-01-03', 'lawrence99', '2012-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS93907083', '菅原光', 0, '+81 66-234-5587', 4, '190885607012956677', '日本おおさかし西成区出城一丁目1番14号50階', '1992-06-05', 0, 0, 'hikarusugawara', '2015-10-23', 'hikaru408', '2004-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS21900424', '容嘉欣', 1, '+81 74-805-9933', 0, '112569752835629001', '43F, 1-7-1 Saidaiji Akodacho, Nara, Japan', '1985-11-03', 0, 0, 'yunkaryan', '2020-03-22', 'kyyung', '2016-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS09395248', '杜晓明', 1, '+81 52-355-6463', 0, '760915469222242331', '日本なごやし熱田区千年二丁目5番20号27階', '1994-11-26', 0, 0, 'duxiaoming62', '2001-06-10', 'xdu', '2014-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS61785399', '戴云熙', 0, '+44 7865 467371', 4, '220693474091555359', 'Unit 19, Oxford Eco Centre, 207 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1991-10-26', 0, 0, 'day', '2014-11-30', 'yunxdai2', '2000-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS21370932', '姚云熙', 0, '+86 760-8238-7109', 3, '111197398109998222', '中国中山乐丰六路668号20楼', '1990-10-11', 0, 0, 'yao4', '2001-01-28', 'yunxiyao', '2017-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS06074567', 'Rachel Graham', 0, '+81 80-3910-9351', 1, '817426728270226309', '日本おおさかし東住吉区東田辺三丁目27番17号28階', '1986-09-23', 0, 0, 'grarac', '2009-01-07', 'rgraham1975', '2003-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS35636344', '韓明詩', 1, '+1 312-845-0760', 1, '529928232096795734', '588 Rush Street Suite 37, Chicago, IL 60611, United States', '1987-09-03', 0, 0, 'mingsze01', '2007-05-17', 'mshan', '2010-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS20693295', '葉天樂', 1, '+86 10-1925-5579', 2, '816213078244426092', '中国北京市朝阳区三里屯路267号37号楼', '1993-10-11', 0, 0, 'yip114', '2008-03-07', 'tlyip', '2020-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS25354243', '長谷川詩乃', 1, '+81 80-2762-1590', 1, '175011196738024884', '47F, 3-9-12 Gakuenminami, Nara, Japan', '1989-06-15', 0, 0, 'hasegawashino', '2019-06-06', 'shinohaseg', '2009-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS31290649', '曹安琪', 0, '+86 769-7949-4048', 3, '355999431486114237', 'Room 30, CR Building, 708 Kengmei 15th Alley, Dongguan, China', '1987-05-26', 0, 0, 'aca', '2000-03-02', 'canqi', '2021-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS73184192', 'Jamie Jimenez', 1, '+1 213-185-7007', 0, '898029776284828382', '516 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1990-10-18', 0, 0, 'jamij915', '2000-05-03', 'jamie95', '2006-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS98623847', '高田蓮', 1, '+86 28-543-1602', 2, '433435257356888366', 'Room 39, No. 788, Shuangqing Rd, Chenghua District, Chengdu, China', '1998-01-26', 0, 0, 'ren2004', '2016-08-08', 'takaren', '2005-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS50282523', 'Virginia Porter', 0, '+86 769-940-5146', 1, '778361520951937450', 'Room 44, CR Building, 975 Shanhu Rd, Dongguan, China', '1993-04-18', 0, 0, 'virporter', '2006-11-06', 'vporter', '2004-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS43575923', '鐘嘉欣', 1, '+81 90-4025-8610', 4, '232611238583898127', '36F, 1-6-6, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-04-24', 0, 0, 'kyc118', '2002-12-17', 'chungky225', '2015-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS26764847', '吴秀英', 0, '+86 20-9180-5374', 3, '580960279715171158', 'No.35 building, 760 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1985-09-13', 0, 0, 'wu507', '2006-06-23', 'wuxi', '2020-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS67999617', '贾子韬', 1, '+1 838-868-1486', 0, '112724262274721293', '418 Lark Street Apt 42, Albany, NY 12210, United States', '1998-11-14', 0, 0, 'jz20', '2006-07-19', 'jiazitao2', '2001-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS58440666', 'Robert Rivera', 1, '+86 171-1303-1979', 2, '743810699459213245', '中国东莞东泰五街33号3栋', '1995-11-04', 0, 0, 'robert1012', '2020-10-07', 'riverarobert8', '2003-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS38509611', '翁麗欣', 0, '+1 312-414-7989', 2, '205110329852702266', '682 Pedway 3rd Floor, Chicago, IL 60601, United States', '1988-02-03', 0, 0, 'yungly', '2003-07-27', 'laiyanyung1976', '2004-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS13985086', '杨睿', 0, '+44 5956 363894', 3, '074124165709194686', 'Unit 3, Oxford Eco Centre, 83 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1988-05-08', 0, 0, 'ruiyang2002', '2017-02-16', 'yangrui', '2008-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS15007614', '廖子韬', 1, '+1 838-377-3180', 2, '987935571132782099', '648 Broadway 3rd Floor, Albany, NY 12207, United States', '1998-04-03', 0, 0, 'liaz50', '2007-09-30', 'lizi606', '2002-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS72632687', '長谷川七海', 0, '+1 718-784-5252', 4, '718402497760419109', '833 Flatbush Ave Suite 17, Brooklyn, NY 11225, United States', '1999-01-22', 0, 0, 'nanamihase', '2007-03-31', 'nanhaseg5', '2021-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS12175620', '程安琪', 0, '+81 11-919-3035', 3, '999278887015392545', '日本札幌中央区宮の森四条六丁目1番12号21階', '1986-05-19', 0, 0, 'cheng818', '2006-12-11', 'acheng503', '2007-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS98392762', 'Thomas Baker', 1, '+86 28-6318-5348', 3, '964337791862362966', 'Room 20, CR Building, 356 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1988-11-19', 0, 0, 'thomasb', '2016-01-14', 'bthomas', '2013-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS17808205', 'Don Shaw', 0, '+81 90-7101-0460', 4, '514159308378036741', '日本札幌中央区宮の森四条六丁目1番9号46階', '1998-07-13', 0, 0, 'don99', '2004-03-23', 'shawdon48', '2001-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS42768736', '宮本聖子', 0, '+1 213-031-0376', 2, '762008249834312044', '797 Figueroa Street Apartment 21, Los Angeles, CA 90037, United States', '1991-10-06', 0, 0, 'seimiyamoto10', '2020-11-22', 'miyamotoseiko', '2012-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS54962113', '市川絢斗', 0, '+1 838-143-1538', 2, '147237274964561633', '146 Central Avenue Apartment 41, Albany, NY 12205, United States', '1995-05-15', 0, 0, 'ichiaya04', '2000-07-31', 'iayato9', '2008-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS34308210', '大野百恵', 0, '+44 5053 449677', 2, '522649019444015297', 'No.42 Main building, 625 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1987-01-25', 0, 0, 'momoon', '2010-08-30', 'momoeono', '2005-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS39931281', 'Jesse Ryan', 0, '+86 769-083-5379', 1, '157839450710444473', 'Room 20, 681 Huanqu South Street 2nd Alley, Dongguan, China', '1988-07-05', 0, 0, 'jerya', '2014-06-19', 'ryan219', '2015-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS41206444', '徐云熙', 0, '+44 (151) 441 2172', 4, '314333805842994927', 'Unit 34, Oxford Eco Centre, 533 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1995-01-09', 0, 0, 'xu9', '2000-02-05', 'yunxix', '2001-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS77781967', '大塚大輔', 0, '+1 213-091-8199', 1, '122926865200769402', '33 Wall Street Suite 46, Los Angeles, CA 90003, United States', '1994-01-31', 0, 0, 'otsukdaisuke', '2015-11-26', 'oda', '2002-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS71554528', 'Virginia Dixon', 0, '+86 20-6180-3386', 2, '542269482945476944', '中国广州市白云区小坪东路191号11号楼', '1992-10-05', 0, 0, 'virdixo10', '2012-07-14', 'virginiadixon7', '2012-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS23986754', '桜井大輔', 0, '+81 3-7993-1267', 2, '191312113363926032', '23-kai, 1-6-8, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-12-04', 0, 0, 'ds59', '2011-12-03', 'daisukes8', '2001-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS74700318', '關玲玲', 1, '+81 90-0922-9431', 2, '940701146360931622', '31F, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1995-03-28', 0, 0, 'kwanlingling1114', '2013-03-25', 'llkwan', '2010-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS36450662', '尹慧珊', 0, '+44 (161) 339 4308', 1, '596430588311518878', 'No.39 Main building, 719 Sackville St, Manchester, M1 3BB, United Kingdom', '1989-05-02', 0, 0, 'yiwaisan5', '2004-10-10', 'yiwaisan606', '2014-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS79202775', 'Catherine Nguyen', 0, '+81 52-151-5520', 1, '214413746241625627', 'Rm. 15, 2-5-13 Chitose, Atsuta Ward, Nagoya, Japan', '1996-06-01', 0, 0, 'nguyenca67', '2003-05-14', 'nguyecatherine', '2009-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS47300854', '卢宇宁', 0, '+86 21-4508-6754', 0, '524203139234806525', '38F, 639 Ganlan Rd, Pudong, Shanghai, China', '1988-03-26', 0, 0, 'luyunin62', '2016-02-16', 'lu1017', '2020-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS08664008', 'Martha Ford', 1, '+81 11-919-1850', 0, '612615772383257130', '日本札幌厚別区上野幌一条二丁目1番16号48号室', '1991-10-15', 0, 0, 'martha6', '2010-12-10', 'marthaford421', '2020-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS46974161', '張國榮', 1, '+1 213-008-9752', 4, '999606544261711108', '98 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1992-03-22', 0, 0, 'cheukw', '2014-10-30', 'kwokwingc', '2010-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS78223486', '莫岚', 1, '+86 150-6519-3883', 2, '987351826116695508', 'Room 45, 336 Dongtai 5th St, Dongguan, China', '1985-06-30', 0, 0, 'mo50', '2001-09-13', 'molan44', '2001-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS23479593', '姚宇宁', 1, '+86 760-169-2697', 2, '076852073066633083', '中国中山天河区大信商圈大信南路375号42室', '1995-08-20', 0, 0, 'yuningya10', '2010-06-15', 'yuny', '2014-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS05962419', '蔡嘉伦', 1, '+86 137-8331-8345', 1, '354291865559393991', '中国广州市海珠区江南西路884号华润大厦23室', '1995-03-13', 0, 0, 'jialcai', '2021-06-13', 'jialun130', '2001-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS36039465', 'Ernest Garcia', 0, '+81 80-5821-8888', 0, '437169863460485302', '日本東京品川区東五反田五丁目2番12号9階', '1988-07-30', 0, 0, 'garcia3', '2016-09-11', 'egarcia', '2013-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS81245947', '張朝偉', 0, '+86 186-4108-0112', 3, '054399201015346001', '中国东莞环区南街二巷117号29楼', '1990-03-08', 0, 0, 'ccw', '2011-01-21', 'cwcheung', '2014-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS07053300', '孔震南', 0, '+86 20-509-6268', 4, '277924499013983604', '中国广州市白云区小坪东路639号26栋', '1996-11-11', 0, 0, 'zhennankong', '2004-12-30', 'kzhennan', '2007-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS38291552', 'Hazel Barnes', 1, '+86 176-0127-5998', 3, '942483508018280937', 'No.36 building, 997 Ganlan Rd, Pudong, Shanghai, China', '1992-12-15', 0, 0, 'hbar10', '2013-01-25', 'bahazel', '2006-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS44842081', '藍家文', 0, '+1 213-839-1467', 4, '025722101554031955', '493 Grape Street Suite 41, Los Angeles, CA 90002, United States', '1995-04-22', 0, 0, 'kamanl430', '2015-07-26', 'lkam', '2017-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS15400506', '山口瑛太', 0, '+86 174-4877-8058', 3, '437611624121451442', '39F, 79 Shanhu Rd, Dongguan, China', '1985-05-04', 0, 0, 'eitaya3', '2008-11-16', 'eiy7', '2004-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS23329750', 'Miguel Rivera', 1, '+44 (20) 6768 1864', 3, '381917668877610084', 'Block 45, 58 Regent Street, London, W1B 2LX, United Kingdom', '1991-10-08', 0, 0, 'migueriver', '2021-06-11', 'riveramiguel1110', '2000-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS23251888', '李秀文', 1, '+81 52-775-9067', 3, '659028682561657690', '日本なごやし瑞穂区河岸町四丁目20番7号17階', '1998-02-21', 0, 0, 'lsauman1987', '2012-03-13', 'sml5', '2021-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS18907104', 'Carl Hall', 0, '+86 21-4921-3989', 0, '600233665564682210', 'Room 8, 472 Binchuan Rd, Minhang District, Shanghai, China', '1994-08-05', 0, 0, 'carhal2', '2012-07-28', 'carl12', '2021-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS20314943', '菅原大輔', 0, '+44 (161) 331 6583', 4, '856906811169295005', 'No.5 Main building, 432 Mosley St, Manchester, M2 3AQ, United Kingdom', '1995-08-14', 0, 0, 'daisuke4', '2017-09-23', 'daissugawara78', '2015-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS95063554', '横山聖子', 0, '+86 156-1373-8795', 0, '115864942443938614', 'Room 36, CR Building, 478 Lefeng 6th Rd, Zhongshan, China', '1997-06-22', 0, 0, 'seikoy', '2017-03-30', 'yoksei', '2005-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS12775374', '黄致远', 1, '+81 70-5551-5881', 1, '926646317290449421', 'Rm. 14, 13-3-11 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1989-10-28', 0, 0, 'huangzhiyuan', '2017-12-15', 'hzhiy', '2014-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS28784112', '蕭詩君', 1, '+44 7629 108153', 1, '330444670382497079', 'Flat 28, 762 Regent Street, London, W1B 2LX, United Kingdom', '1986-10-01', 0, 0, 'szekwansi', '2021-05-01', 'siuszekwan618', '2004-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS08315611', '桜井翼', 0, '+1 330-578-3968', 2, '503494976801671790', '45 Riverview Road Suite 1, Akron, OH 44313, United States', '1990-03-10', 0, 0, 'stsu', '2002-05-12', 'tsubasasa', '2007-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS04857138', '黃玲玲', 1, '+86 134-5263-8622', 3, '621483595443186851', '中国东莞珊瑚路964号31栋', '1996-02-09', 0, 0, 'wonll', '2005-07-26', 'wonglingling3', '2008-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS91209100', '沈嘉伦', 0, '+44 7198 590872', 0, '385249863579526332', 'Block 19, 964 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1990-10-28', 0, 0, 'jials72', '2016-12-28', 'shen10', '2008-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS62647615', '高田蓮', 0, '+81 74-274-3517', 2, '468231068020465565', 'Rm. 8, 2 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-02-08', 0, 0, 'takada12', '2001-08-24', 'takadaren93', '2009-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS01256354', '松本彩乃', 1, '+86 10-6566-2040', 3, '852939671626386223', 'Room 8, CR Building, 887 West Chang''an Avenue, Xicheng District, Beijing, China', '1990-03-02', 0, 0, 'matsumotoayano1', '2001-06-05', 'matsumoto9', '2015-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS01028448', '苗麗欣', 1, '+81 70-9160-9984', 2, '441113201425178204', '日本ならし西大寺赤田町一丁目7番2号37号室', '1994-08-14', 0, 0, 'laiyanmiu', '2017-07-15', 'lym87', '2015-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS58652871', 'Beverly Gonzalez', 0, '+81 11-533-9836', 3, '608414976453484154', '10F, 5-2-13 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1996-07-16', 0, 0, 'beverlygonzalez1991', '2015-01-17', 'gonbever1', '2017-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS22068869', '许璐', 1, '+44 (116) 636 5628', 2, '661899685939844373', 'Block 31, 150 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-07-02', 0, 0, 'luxu', '2007-05-04', 'lxu1964', '2013-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS12457984', '唐宇宁', 1, '+81 3-7575-6469', 1, '065868199556057051', '36-kai, 3-15-13 Ginza, Chuo-ku, Tokyo, Japan', '1998-07-07', 0, 0, 'tang79', '2020-06-17', 'yuningt121', '2013-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS72903795', '中山陸', 0, '+86 755-742-9922', 3, '850530021553336158', 'No.50 building, 745 Shennan Ave, Futian District, Shenzhen, China', '1985-02-21', 0, 0, 'rikunakayama8', '2012-04-26', 'rikunakayama', '2007-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS47393836', 'Henry Anderson', 0, '+81 66-082-0935', 2, '794351368603547917', 'Rm. 43, 1-1-3 Deshiro, Nishinari Ward, Osaka, Japan', '1998-10-06', 0, 0, 'heande213', '2013-12-07', 'henrya', '2017-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS30561981', '佐々木葵', 1, '+86 187-5534-5762', 1, '009736977357639520', '32F, 888 Jingtian East 1st St, Futian District, Shenzhen, China', '1996-08-14', 0, 0, 'aoisasaki', '2011-04-21', 'aosasak60', '2012-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS84710766', 'Jeffrey Ramirez', 1, '+1 718-042-5669', 4, '873017995900897740', '460 Flatbush Ave Apt 41, Brooklyn, NY 11225, United States', '1990-10-12', 0, 0, 'jeffreyrami', '2011-03-24', 'rjeffr', '2006-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS86930928', 'Cindy White', 0, '+86 195-6760-3930', 4, '872363048241000107', '中国深圳罗湖区清水河一路804号32栋', '1985-10-18', 0, 0, 'whicindy', '2012-08-26', 'white1', '2016-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS60437578', 'Ernest Peterson', 0, '+86 10-358-7272', 2, '062432664038543837', 'Room 39, CR Building, 896 028 County Rd, Yanqing District, Beijing, China', '1994-03-04', 0, 0, 'peteernes', '2003-01-11', 'epeterson419', '2002-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS15225248', '井上美咲', 0, '+86 196-1020-2961', 1, '491461001151160930', 'Room 47, CR Building, 511 Ganlan Rd, Pudong, Shanghai, China', '1997-03-10', 0, 0, 'misaki10', '2000-04-07', 'misakiinoue', '2010-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS49937877', '武田百花', 1, '+86 755-5771-1496', 1, '343809761903614254', '25F, 969 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1993-07-04', 0, 0, 'momokatake', '2000-04-17', 'takeda1009', '2003-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS52012323', '長谷川美緒', 1, '+81 80-1487-3863', 4, '712786011281055765', '42F, 5-4-2 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-08-08', 0, 0, 'mio1982', '2010-06-10', 'hasegawamio', '2001-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS87097511', '程致远', 0, '+1 718-130-1756', 3, '762643881300396755', '136 Bergen St Apartment 21, Brooklyn, NY 11217, United States', '1989-05-20', 0, 0, 'zcheng7', '2006-02-15', 'cheng7', '2001-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS83915011', '邵國權', 0, '+1 718-359-3494', 2, '667407028161088013', '450 Nostrand Ave Apartment 19, Brooklyn, NY 11216, United States', '1998-02-10', 0, 0, 'siukwo807', '2018-08-29', 'skk', '2009-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS52112400', 'Kyle Wells', 0, '+86 10-565-7679', 2, '857159257946081334', '中国北京市西城区西長安街449号26栋', '1985-04-08', 0, 0, 'welkyle', '2000-11-07', 'wellsky', '2015-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS04745977', '范睿', 0, '+81 74-643-6312', 2, '973835149960790019', '日本ならし西大寺赤田町一丁目7番13号22号室', '1985-04-06', 0, 0, 'fru117', '2015-12-27', 'fanr', '2009-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS90050776', '龙璐', 1, '+1 614-908-6604', 2, '742029584752177892', '586 East Cooke Road Apt 3, Columbus, GA 43214, United States', '1992-06-23', 0, 0, 'lulong1991', '2020-12-02', 'longlu', '2002-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS15474741', '钟致远', 0, '+1 312-058-7307', 4, '870797039961032163', '833 Rush Street Apt 8, Chicago, IL 60611, United States', '1996-04-28', 0, 0, 'zhizhong9', '2004-04-26', 'zhiyuanz', '2012-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS62832473', '孙杰宏', 0, '+86 20-043-9225', 3, '501026641307172404', 'No.24 building, 936 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-08-10', 0, 0, 'jiehongsu', '2010-09-12', 'sun10', '2002-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS11846264', 'Scott Shaw', 1, '+86 20-537-0034', 1, '636946587933788491', '中国广州市海珠区江南西路147号华润大厦48室', '1986-10-08', 0, 0, 'scoshaw', '2007-02-04', 'shawscott', '2000-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS96124815', '佐野拓哉', 1, '+81 11-799-1343', 4, '467631467226204737', '日本札幌白石区菊水三条五丁目2番2号48号室', '1996-05-29', 0, 0, 'sano416', '2018-09-06', 'sanotakuya7', '2010-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS39030700', '加藤七海', 1, '+81 70-7673-8682', 3, '946812597971275767', '日本おおさかし東住吉区東田辺三丁目27番15号11階', '1996-10-28', 0, 0, 'nkat1', '2010-09-25', 'nanami7', '2003-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS14091116', '太田大地', 0, '+81 70-0425-5279', 2, '636908499701900937', '44F, 2-1-7 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1993-12-13', 0, 0, 'daichio7', '2018-05-03', 'daichiota', '2004-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS58099588', '呂志遠', 1, '+81 52-867-5866', 4, '312353059334700092', '日本なごやし瑞穂区河岸町四丁目20番3号4階', '1998-08-15', 0, 0, 'luichiyuen', '2011-04-03', 'lchiyuen', '2002-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS12934589', '廖心穎', 1, '+81 70-9991-4339', 3, '869010266328771774', '32F, 13-3-12 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1992-07-01', 0, 0, 'liasumwing806', '2013-02-22', 'lisumwing', '2012-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS00894575', 'Leonard Palmer', 1, '+86 10-5289-8836', 2, '920261348824576271', '中国北京市海淀区清河中街68号204号华润大厦27室', '1994-06-17', 0, 0, 'leonardpalm', '2017-12-03', 'palml', '2004-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS76407318', '刘子异', 1, '+81 66-427-0054', 2, '684796266532517252', '日本おおさかし東住吉区東田辺三丁目27番17号32号室', '1989-07-25', 0, 0, 'liu6', '2018-05-02', 'liu60', '2006-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS03797690', '松井美月', 1, '+44 (116) 702 1039', 0, '495551482969814282', 'Unit 18, Oxford Eco Centre, 357 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1991-01-15', 0, 0, 'mmatsui88', '2011-11-02', 'matsuimi', '2019-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS62857649', '郭致远', 1, '+81 52-392-6781', 1, '760654972418722308', '29F, 7 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-03-31', 0, 0, 'zhiyuan510', '2021-02-18', 'zhiyuan2002', '2019-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS47768161', 'Joel Spencer', 1, '+81 74-245-2349', 4, '111926466976686666', '43-kai, 4 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1988-09-12', 0, 0, 'spejoe', '2014-05-19', 'spencer8', '2003-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS55865449', '伍明', 0, '+86 755-1426-4736', 4, '327513795797497073', '33F, 322 Jingtian East 1st St, Futian District, Shenzhen, China', '1987-01-22', 0, 0, 'ming5', '2010-08-06', 'ming1997', '2000-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS78576168', '劉祖兒', 1, '+86 760-362-5470', 2, '334826737128800424', '中国中山京华商圈华夏街221号18楼', '1991-11-17', 0, 0, 'lchoy', '2013-05-10', 'choyee56', '2009-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS48076765', '中村愛梨', 1, '+44 5633 529646', 0, '602634134215709133', 'Flat 41, 546 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1999-01-18', 0, 0, 'nakama', '2015-10-28', 'nakamuraairi7', '2016-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS61153782', '蕭家輝', 0, '+86 755-4818-2053', 3, '568609853518402606', '中国深圳罗湖区清水河一路752号45栋', '1988-12-24', 0, 0, 'kfsi', '2014-11-14', 'skafai9', '2015-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS80383352', 'Juanita Nelson', 1, '+86 10-3814-8191', 3, '627903046471704384', 'Room 22, 432 Sanlitun Road, Chaoyang District, Beijing, China', '1989-09-05', 0, 0, 'juanitanel2', '2018-01-24', 'nelsonjuanita', '2010-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS34525303', 'Heather Long', 0, '+86 769-8081-3830', 2, '664187353269712262', '中国东莞珊瑚路180号37楼', '1998-03-15', 0, 0, 'hlong', '2008-05-17', 'heatherlon809', '2019-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS29262418', '小山蓮', 0, '+86 151-3592-8055', 1, '079089319450195093', 'Room 39, 331 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1993-09-25', 0, 0, 'renk1', '2003-12-30', 'rko', '2002-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS75637036', '彭富城', 1, '+86 171-3941-6084', 3, '020878807049447302', 'No.7 building, 133 68 Qinghe Middle St, Haidian District, Beijing, China', '1996-07-22', 0, 0, 'pfs', '2006-06-24', 'pafushing', '2008-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS47700110', '郭志遠', 1, '+86 147-3699-2227', 2, '240487785085257933', '中国上海市浦东新区健祥路629号44栋', '1985-03-06', 0, 0, 'chiyuenkwok1012', '2002-06-07', 'chiyuenkwok1', '2017-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS49027193', '金安琪', 0, '+81 3-9812-7597', 1, '091462022980914650', '日本東京港区東新橋一丁目5番14号36階', '1993-11-05', 0, 0, 'anqijin2005', '2008-04-12', 'jin811', '2012-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS36985174', 'Jerry Webb', 0, '+81 90-7692-5768', 0, '368294616179650936', '日本なごやし瑞穂区河岸町四丁目20番6号11階', '1992-02-16', 0, 0, 'jerrywebb', '2012-02-17', 'jewebb314', '2008-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS21130633', '郭永發', 1, '+81 3-2807-6423', 2, '267195244329703586', '日本東京港区東新橋一丁目5番12号45階', '1995-04-22', 0, 0, 'wingfat68', '2013-02-17', 'wfk', '2003-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS76141344', '渡部絢斗', 1, '+81 3-4257-6508', 2, '451492055868800016', 'Rm. 30, 5-2-8 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-02-24', 0, 0, 'ayatowata', '2011-11-21', 'ayw', '2013-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS21367894', '錢永權', 1, '+86 186-0755-2707', 2, '162295620264289919', 'No.20 building, 54 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1991-06-11', 0, 0, 'wkchin', '2006-05-12', 'wingkuenchin62', '2011-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS32109584', 'Rhonda Williams', 1, '+44 (20) 1580 3985', 2, '192002693615086715', 'No.45 Main building, 327 Maddox Street, London, W1S 1PU, United Kingdom', '1985-09-25', 0, 0, 'rhonda5', '2021-05-26', 'williamsrhonda', '2006-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS01562313', '鄧永發', 1, '+86 20-656-8480', 3, '441052326044122124', 'No.27 building, 998 Tianhe Road, Tianhe District, Guangzhou, China', '1996-05-23', 0, 0, 'wft', '2014-08-10', 'wingfattang', '2020-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS60340818', '韓家強', 0, '+81 70-6274-0839', 3, '710572287982712585', '3F, 1-6-7, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1988-08-11', 0, 0, 'hankakeung', '2019-04-25', 'hankk', '2014-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS14570409', 'Rodney Mendoza', 1, '+86 760-5722-4129', 1, '414706726120528697', '19F, 766 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1995-08-15', 0, 0, 'rodneymendo', '2018-06-28', 'rodmendoza', '2003-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS45220766', '中川葉月', 1, '+81 74-069-5090', 3, '462542150795928154', '6F, 1-7-10 Saidaiji Akodacho, Nara, Japan', '1990-12-28', 0, 0, 'hnakagawa', '2021-09-04', 'hazn', '2006-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS89808302', '青木海斗', 0, '+44 5799 246413', 2, '690989543953873529', 'No.44 Main building, 703 Mosley St, Manchester, M2 3AQ, United Kingdom', '1988-05-30', 0, 0, 'aokkaito', '2010-04-16', 'aokaito', '2012-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS21525103', '何杰宏', 1, '+86 20-1025-6520', 3, '608282943565274746', '中国广州市白云区小坪东路499号5号楼', '1988-02-26', 0, 0, 'hejieh9', '2012-03-25', 'hejiehong14', '2014-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS77099922', '宣國明', 0, '+81 70-2855-2920', 4, '535890506476316694', '15F, 1-1-14 Deshiro, Nishinari Ward, Osaka, Japan', '1995-05-25', 0, 0, 'kmh', '2016-06-27', 'kwokmingh', '2021-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS99348405', 'Juan Ryan', 0, '+81 80-7700-0318', 2, '953357061726948656', '18-kai, 15 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1998-10-16', 0, 0, 'ryanjuan', '2021-08-27', 'juanry2', '2007-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS30551878', '藤慧琳', 1, '+81 3-5699-2729', 3, '303081227890509523', '日本東京品川区東五反田五丁目2番17号32階', '1993-02-21', 0, 0, 'wailam1222', '2004-05-27', 'tanwailam', '2007-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS89596800', '罗秀英', 1, '+81 80-7284-0256', 1, '511094295016729558', 'Rm. 22, 3-9-14 Gakuenminami, Nara, Japan', '1996-12-02', 0, 0, 'xiuyingluo5', '2010-04-01', 'xiluo', '2012-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS84173422', '曾明詩', 1, '+44 (1865) 08 6050', 0, '702511758434885120', 'Flat 45, 89 Park End St, Oxford, OX1 1JD, United Kingdom', '1996-12-11', 0, 0, 'tsangms', '2003-02-10', 'tsmingsze', '2021-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS47913096', '成青雲', 0, '+81 90-3814-5917', 2, '347814552392020043', '23-kai, 5-2-3 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1996-05-16', 0, 0, 'chingwanshing', '2020-11-12', 'chingwanshing3', '2014-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS86366301', '魏秀英', 0, '+86 769-2265-5885', 1, '605860465382200940', 'No.6 building, 133 Shanhu Rd, Dongguan, China', '1995-04-08', 0, 0, 'xwe', '2013-03-12', 'xwei', '2015-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS67913210', '宋杰宏', 0, '+81 3-1730-4187', 1, '356903329433441357', '日本東京港区東新橋一丁目5番3号20階', '1985-07-21', 0, 0, 'song5', '2003-06-16', 'sjie8', '2000-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS94916947', '罗詩涵', 1, '+81 90-0345-3008', 1, '368629788087003433', '50F, 3-9-16 Gakuenminami, Nara, Japan', '1990-09-24', 0, 0, 'luos', '2019-08-15', 'shihanlu9', '2008-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS45036455', '青木詩乃', 1, '+81 80-2118-0882', 3, '040954838572447958', '日本なごやし北区清水三丁目19番19号46階', '1988-08-01', 0, 0, 'aoks', '2003-12-02', 'aoks6', '2001-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS84407079', '蒋震南', 0, '+86 197-3537-1415', 2, '598856622218810308', '中国成都市成华区二仙桥东三路96号37楼', '1995-11-08', 0, 0, 'zhennanji', '2010-07-08', 'jianzhennan54', '2000-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS78044719', '李云熙', 0, '+81 70-0362-2238', 0, '417148883907373217', '42-kai, 8 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1995-05-06', 0, 0, 'yunxi910', '2010-06-07', 'yunxil', '2021-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS26969362', '森健太', 1, '+1 212-999-7184', 1, '926337259156487439', '564 Canal Street 3rd Floor, New York, NY 10013, United States', '1987-07-27', 0, 0, 'kentamori', '2018-10-26', 'kmori', '2001-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS73548044', '上野光', 0, '+1 614-989-0404', 3, '596967154035944315', '855 Tremont Road Apt 41, Columbus, GA 43212, United States', '1989-08-15', 0, 0, 'hikaru203', '2007-12-22', 'hikueno', '2008-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS81229000', '莫裕玲', 0, '+81 11-442-3879', 4, '883744373079744771', '日本札幌豊平区豊平三条十三丁目3番9号2階', '1989-02-11', 0, 0, 'moyuling', '2015-07-31', 'yuling53', '2020-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS51391801', '余秀英', 1, '+81 74-792-3020', 1, '856716892655738754', '日本ならし大和郡山市本庄町一丁目1番2号18号室', '1995-07-24', 0, 0, 'yuxi52', '2016-02-14', 'yu41', '2007-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS69760848', 'George Miller', 0, '+81 66-656-9147', 0, '173882992095291187', '日本おおさかし西成区出城一丁目1番12号34号室', '1995-02-03', 0, 0, 'georgmiller', '2016-02-04', 'millergeorge', '2004-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS90576633', '鄧安娜', 1, '+86 10-496-5580', 1, '373657303171792129', 'Room 22, CR Building, 464 028 County Rd, Yanqing District, Beijing, China', '1988-03-09', 0, 0, 'tanonna', '2002-12-20', 'tangonna', '2018-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS90341785', 'Doris Shaw', 0, '+86 160-7912-4402', 1, '729769186555249675', '中国北京市房山区岳琉路772号1号楼', '1997-01-20', 0, 0, 'shaw20', '2020-03-19', 'shaw02', '2016-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS59989470', '西村聖子', 1, '+44 5617 327564', 4, '653190294242652484', 'No.11 Main building, 583 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1996-03-22', 0, 0, 'niseik', '2015-01-09', 'nishseik1218', '2021-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS68002357', '李梓軒', 1, '+44 7025 079935', 3, '838634887220764216', 'Flat 24, 527 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-04-02', 0, 0, 'thl76', '2010-02-22', 'thlee617', '2014-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS76896356', '伍惠妹', 0, '+81 70-4603-6092', 3, '926442288260495404', '44F, 3-9-8 Gakuenminami, Nara, Japan', '1992-02-23', 0, 0, 'huimein', '2003-10-19', 'hmn1220', '2009-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS08691651', '徐嘉伦', 0, '+86 191-4997-7817', 2, '505899068978840669', 'Room 13, CR Building, 979 Tianhe Road, Tianhe District, Guangzhou, China', '1990-03-09', 0, 0, 'jialxu', '2017-10-30', 'xujialun1201', '2008-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS00461378', 'Stephanie Ferguson', 0, '+81 70-7581-9647', 0, '467463228285698363', '22F, 13-3-2 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1987-05-25', 0, 0, 'fergusons', '2015-05-25', 'stferg2', '2012-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS40357097', '金子海斗', 0, '+81 52-738-5717', 1, '192326584955682184', '14-kai, 17 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1987-01-12', 0, 0, 'kanekok', '2008-07-02', 'kanekokait', '2000-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS78534604', 'Norma Gonzalez', 1, '+81 80-0337-4953', 4, '464174809783985075', '日本東京中央区銀座三丁目12番6号42階', '1996-08-23', 0, 0, 'gono719', '2021-12-16', 'normgon', '2008-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS42550894', '小川美緒', 1, '+81 3-3421-8463', 3, '249759820560267796', '9-kai, 1-5-19, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1993-08-13', 0, 0, 'ogawami7', '2008-08-02', 'mo66', '2014-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS96692237', '傅國權', 0, '+44 5757 677888', 2, '337170691976686341', 'Unit 19, Oxford Eco Centre, 146 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1990-02-22', 0, 0, 'fukwokkuen86', '2006-06-25', 'kwokkuenfu4', '2012-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS24859935', '汪安琪', 1, '+86 172-6195-8332', 1, '494511410950995252', '中国成都市成华区二仙桥东三路534号7号楼', '1991-05-07', 0, 0, 'wanganq', '2001-04-20', 'aw1988', '2011-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS96772768', '文小慧', 1, '+1 614-014-3154', 4, '305408599038045230', '797 East Cooke Road Apartment 3, Columbus, GA 43214, United States', '1991-02-11', 0, 0, 'mansw', '2008-03-18', 'mansiuwai', '2002-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS43016955', '阎子韬', 0, '+44 (151) 936 3708', 2, '897090798362515626', 'Unit 35, Oxford Eco Centre, 514 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1995-11-24', 0, 0, 'zitaoyan', '2004-07-14', 'zitaoya', '2021-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS47363509', 'Donna Bryant', 1, '+86 146-3976-8882', 1, '618698665037941116', 'No.31 building, 801 Middle Huaihai Road, Huangpu District, Shanghai, China', '1997-08-29', 0, 0, 'bryadonna', '2010-01-29', 'bryantd2', '2003-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS63087591', 'Carmen Hill', 1, '+81 80-0302-0105', 2, '907420657056094570', 'Rm. 16, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1995-03-06', 0, 0, 'carmenh', '2008-08-04', 'hilc', '2003-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS98169867', '胡震南', 1, '+86 172-2681-2436', 1, '891716288065435006', '中国广州市白云区小坪东路277号3栋', '1988-04-30', 0, 0, 'zhennanhu', '2019-08-14', 'zhenh18', '2018-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS22152307', 'Todd Dixon', 0, '+81 70-6720-2933', 4, '510589247726168808', 'Rm. 50, 1-1-11 Deshiro, Nishinari Ward, Osaka, Japan', '1996-11-02', 0, 0, 'dixon3', '2010-09-05', 'dixonto416', '2015-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS65808882', '池田陽菜', 1, '+1 838-957-3996', 1, '356390392956111782', '321 State Street Suite 43, Albany, NY 12203, United States', '1990-01-05', 0, 0, 'hik', '2013-06-12', 'hinaikeda825', '2013-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS46001254', 'Paula Sullivan', 0, '+44 7891 642972', 2, '881815583143348362', 'Flat 41, 503 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1992-10-22', 0, 0, 'psulli', '2006-12-09', 'sullivanpaula', '2002-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS57143132', '高木聖子', 1, '+81 3-6250-3060', 2, '557948464559325816', '31F, 1-5-20, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1999-01-04', 0, 0, 'tase8', '2007-05-20', 'seikotak3', '2007-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS15594869', 'Victoria Hamilton', 1, '+1 718-070-0661', 1, '806243902540957073', '449 Nostrand Ave Apartment 11, Brooklyn, NY 11216, United States', '1987-05-04', 0, 0, 'hamilton425', '2014-02-16', 'victohamilton628', '2015-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS12961555', '任德華', 1, '+1 718-756-8812', 2, '294030566095078947', '530 1st Ave Apartment 10, Brooklyn, NY 11220, United States', '1988-02-11', 0, 0, 'takwahyam', '2009-09-30', 'yam7', '2003-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS62240622', '増田海斗', 0, '+81 3-2851-3252', 1, '412438294755757356', '19F, 3-15-2 Ginza, Chuo-ku, Tokyo, Japan', '1994-06-08', 0, 0, 'masudakai', '2013-03-16', 'masudaka', '2006-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS25227903', '曹力申', 1, '+1 212-671-5405', 0, '689298197129618631', '37 Wooster Street Suite 22, New York, NY 10012, United States', '1997-02-02', 0, 0, 'liksun13', '2006-06-03', 'liksuncho', '2012-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS06150892', '太田陽菜', 1, '+86 769-5971-0220', 4, '794687771963776587', 'No.23 building, 229 Kengmei 15th Alley, Dongguan, China', '1993-12-29', 0, 0, 'ota1027', '2002-10-22', 'ohina', '2008-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS93071885', '元天榮', 0, '+81 11-625-3529', 2, '140751925580147420', '日本札幌清田区真栄四条五丁目19番9号10号室', '1998-07-16', 0, 0, 'twyuen1121', '2006-11-07', 'tinwing1947', '2014-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS23772363', '陆詩涵', 1, '+1 213-754-8858', 2, '368051916027884009', '424 Grape Street Apartment 2, Los Angeles, CA 90002, United States', '1994-02-19', 0, 0, 'sl218', '2014-03-08', 'lushiha427', '2020-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS55870607', '有村光', 0, '+1 330-202-5375', 2, '808635661335418981', '995 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1990-03-25', 0, 0, 'harimura', '2016-04-04', 'arimurahikaru912', '2019-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS33300679', 'Jerry Anderson', 1, '+44 (116) 940 8507', 3, '087296606948255522', 'Block 27, 822 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1991-12-01', 0, 0, 'jerry224', '2005-12-04', 'andejerry', '2008-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS97548840', '方晓明', 0, '+81 74-373-7244', 0, '939349884198202822', 'Rm. 30, 17 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1993-07-01', 0, 0, 'xiaoming06', '2004-07-04', 'xiaofa', '2018-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS67760797', '姜子异', 0, '+81 11-426-3494', 2, '897222916732995994', '37-kai, 13-3-17 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1986-05-27', 0, 0, 'jziyi', '2014-05-07', 'ziyijiang83', '2017-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS89596110', '苏致远', 1, '+44 5496 619686', 1, '524722195235598978', 'Block 25, 139 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1986-03-12', 0, 0, 'zhiyuansu1', '2014-01-28', 'suzhiyu', '2014-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS15468416', 'Francis Wood', 1, '+1 213-924-0759', 1, '907691885407244438', '564 Alameda Street Suite 16, Los Angeles, CA 90002, United States', '1990-11-19', 0, 0, 'francis802', '2000-05-25', 'franciswo', '2004-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS48566356', '赵秀英', 0, '+81 11-771-3667', 1, '621159630704729028', '43F, 5-19-6 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1992-01-25', 0, 0, 'xiuyingz', '2009-05-06', 'xiuyingzha', '2020-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS82641435', 'Shannon Moore', 0, '+81 80-7858-5661', 2, '537887650259493043', '日本ならし西大寺赤田町一丁目7番6号17階', '1988-07-02', 0, 0, 'shannonm', '2001-11-10', 'mooreshann', '2009-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS94409739', '石晓明', 1, '+86 130-0351-0421', 3, '332626122519249922', 'Room 11, 819 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1985-10-09', 0, 0, 'xshi', '2013-01-08', 'shi17', '2004-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS53666170', 'Carl Myers', 1, '+44 7081 895052', 1, '773263144057453194', 'Unit 37, Oxford Eco Centre, 717 Redfern St, Liverpool, L20 8JB, United Kingdom', '1986-08-11', 0, 0, 'carlmyers', '2004-01-28', 'cm6', '2019-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS06870265', '周震南', 1, '+1 718-267-8221', 3, '402967202497626381', '57 Columbia St Suite 13, Brooklyn, NY 11231, United States', '1992-05-25', 0, 0, 'zhenzho5', '2006-06-03', 'zhez', '2009-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS86075420', '中森七海', 0, '+86 187-7130-1147', 1, '191399428364314487', '中国成都市成华区双庆路234号华润大厦3室', '1992-07-07', 0, 0, 'nakamorinanam', '2018-12-11', 'nananakamori', '2003-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS79503281', 'Jennifer Robinson', 1, '+81 90-0295-3744', 2, '163053034355525726', '日本東京港区東新橋一丁目5番15号13階', '1990-10-01', 0, 0, 'robinsonjenn1101', '2006-03-05', 'jenniferrobinson4', '2020-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS14679224', '梅慧敏', 1, '+1 838-434-6241', 2, '108413371850212571', '156 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1996-07-04', 0, 0, 'wmmui2000', '2012-08-21', 'waimanmu', '2008-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS98745344', '廖慧儀', 1, '+1 212-338-7136', 2, '035222374308272477', '740 Fifth Avenue Apartment 37, New York, NY 10017, United States', '1985-01-08', 0, 0, 'wyl52', '2016-04-22', 'wyliao', '2011-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS77858030', '洪慧珊', 0, '+81 74-249-8608', 1, '935362762444450934', '35F, 3-9-13 Gakuenminami, Nara, Japan', '1999-02-09', 0, 0, 'hungwaisan228', '2005-11-05', 'hung831', '2002-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS24364134', 'Christina Hamilton', 1, '+1 718-070-4984', 3, '829986873879701418', '150 Nostrand Ave Apt 18, Brooklyn, NY 11216, United States', '1993-04-22', 0, 0, 'ch3', '2018-05-20', 'christina612', '2001-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS27467455', '蔡家輝', 1, '+86 20-910-3931', 0, '201717829996326031', '中国广州市白云区小坪东路507号48室', '1997-03-11', 0, 0, 'kfch4', '2003-12-08', 'chkf9', '2020-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS16081054', '方子韬', 1, '+86 149-6889-8663', 1, '690512917644261279', '中国北京市朝阳区三里屯路901号13号楼', '1993-09-25', 0, 0, 'fzitao1948', '2004-07-26', 'fangzi', '2016-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS69763843', '山口結翔', 1, '+86 20-349-0544', 1, '281833222131631455', '中国广州市天河区天河路938号27楼', '1993-02-16', 0, 0, 'yamyuito7', '2010-06-04', 'yamagyu', '2002-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS21054219', '高橋美緒', 1, '+86 157-3795-9409', 1, '376893037006139345', '中国东莞珊瑚路631号32号楼', '1998-03-05', 0, 0, 'miotakahashi', '2020-12-10', 'mio58', '2014-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS31744461', '太田聖子', 1, '+86 182-0405-9114', 1, '827875842275171814', '中国中山天河区大信商圈大信南路285号31室', '1998-04-24', 0, 0, 'seota1009', '2002-10-22', 'otaseiko', '2020-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS51396537', '蕭天樂', 1, '+81 90-0063-7127', 2, '760222166717379955', '日本札幌白石区菊水三条五丁目4番12号2号室', '1985-02-21', 0, 0, 'siutin', '2021-11-02', 'tinloksiu', '2010-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS41561485', '中森結翔', 0, '+86 141-0889-3296', 4, '468548271008048559', 'No.44 building, 843 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1996-08-06', 0, 0, 'nyui', '2005-06-15', 'yuinakamori', '2002-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS32792112', '方惠妹', 1, '+1 330-977-1349', 3, '462538595049411580', '985 Collier Road Suite 49, Akron, OH 44320, United States', '1985-02-20', 0, 0, 'fonghuimei', '2015-08-01', 'fonhuimei', '2000-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS85562177', 'Mark Ruiz', 1, '+81 90-9696-7153', 2, '161716295787529258', '4F, 13-3-20 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-07-08', 0, 0, 'ruizm', '2002-10-30', 'markruiz2002', '2019-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS72642672', '上田明菜', 0, '+81 52-782-0839', 3, '094261988899732577', '日本なごやし北区清水三丁目19番18号47階', '1998-09-15', 0, 0, 'uedaakin1207', '2019-07-18', 'akinued04', '2017-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS78755839', '藍慧琳', 1, '+81 70-4068-0733', 0, '607190282336106464', '日本おおさかし東住吉区東田辺三丁目27番14号13号室', '1994-05-27', 0, 0, 'lamwailam', '2011-11-09', 'lamwa', '2006-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS92510297', '龚宇宁', 1, '+1 718-933-6518', 3, '004681271000382120', '118 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1992-07-05', 0, 0, 'yugong', '2011-01-13', 'yuning97', '2006-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS87694404', '中山陽菜', 1, '+44 5625 373898', 4, '696559937566809947', 'Block 39, 139 Hanover St, Liverpool, L1 4AF, United Kingdom', '1991-09-06', 0, 0, 'nakayh618', '2008-09-10', 'nakahina65', '2000-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS85191342', 'Grace Richardson', 0, '+86 191-6979-0175', 2, '615540850285889866', '中国深圳龙岗区学园一巷3号华润大厦45室', '1998-05-24', 0, 0, 'gracrichardson04', '2006-07-16', 'gri5', '2008-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS49004609', 'Sylvia Griffin', 0, '+44 7013 371545', 3, '621790059830408258', 'Block 50, 647 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1985-07-28', 0, 0, 'griffinsylvia', '2007-06-28', 'grifsy', '2008-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS02978147', '冯嘉伦', 1, '+44 5777 425499', 3, '761736068190347535', 'No.42 Main building, 683 Redfern St, Liverpool, L20 8JB, United Kingdom', '1988-04-09', 0, 0, 'fej', '2020-12-07', 'fjialun912', '2015-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS84336749', 'Allen Henderson', 1, '+81 11-398-5522', 1, '936079766587904358', '27F, 6-1-20, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-03-17', 0, 0, 'alhe', '2017-09-08', 'allen120', '2004-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS82923605', '原舞', 0, '+86 190-7185-7436', 1, '462968751710288603', '中国北京市西城区复兴门内大街606号华润大厦8室', '1998-03-14', 0, 0, 'mah921', '2017-12-26', 'mahara504', '2015-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS57964529', 'John Phillips', 0, '+81 90-7089-7699', 2, '081384999620394551', '日本ならし西大寺赤田町一丁目7番10号29号室', '1998-04-23', 0, 0, 'philljohn', '2003-01-03', 'pjohn', '2020-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS74397537', 'Josephine Hicks', 0, '+44 5798 610557', 3, '734461146735628127', 'Unit 25, Oxford Eco Centre, 939 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1994-06-23', 0, 0, 'hicksjosephine', '2006-01-29', 'josehicks', '2017-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS41533279', '马子韬', 1, '+86 194-6996-1133', 0, '119652881653218737', '中国北京市海淀区清河中街68号121号19栋', '1998-02-11', 0, 0, 'mazitao', '2007-09-23', 'mazitao', '2021-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS65420596', '黎安琪', 1, '+81 80-7917-4903', 2, '761254921226524939', '日本なごやし熱田区千年二丁目5番1号38階', '1994-06-16', 0, 0, 'ali', '2017-03-01', 'lanq4', '2003-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS44517165', '陳國榮', 1, '+81 11-865-3076', 1, '047001926776748696', '日本札幌豊平区豊平三条十三丁目3番12号22階', '1993-10-31', 0, 0, 'chankw', '2005-01-12', 'ckwokwing', '2005-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS31035355', '謝家輝', 0, '+44 (20) 2568 9483', 4, '607288882753769190', 'Block 17, 99 Regent Street, London, W1B 2LX, United Kingdom', '1998-06-03', 0, 0, 'kafai4', '2017-09-15', 'tse7', '2011-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS65307404', '翁裕玲', 1, '+86 21-445-4607', 2, '275891731056774906', 'Room 4, CR Building, 57 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-09-01', 0, 0, 'yung47', '2007-12-29', 'yyl3', '2009-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS19266590', '赵宇宁', 0, '+86 148-5886-8030', 3, '787368073364756575', 'No.31 building, 737 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1992-04-01', 0, 0, 'zhyun', '2009-08-20', 'zyun', '2013-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS60894743', '木村美咲', 0, '+86 171-9714-6395', 3, '533013714197752211', '中国东莞珊瑚路980号33栋', '1988-09-17', 0, 0, 'kimuramisaki', '2010-11-20', 'kimura612', '2006-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS19587195', '何晓明', 1, '+86 769-329-7347', 3, '377020753323350069', '中国东莞环区南街二巷937号3楼', '1985-10-22', 0, 0, 'hxiaoming', '2007-12-23', 'hexia1', '2019-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS44915699', 'Dorothy Phillips', 0, '+86 133-1767-0649', 4, '048052963349763593', 'No.39 building, 243 Middle Huaihai Road, Huangpu District, Shanghai, China', '1988-04-20', 0, 0, 'phillipsd12', '2003-08-22', 'phillips2', '2004-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS26895206', '王秀英', 1, '+86 20-8902-7160', 1, '046970504416458408', 'Room 39, 642 Jiangnan West Road, Haizhu District, Guangzhou, China', '1994-12-06', 0, 0, 'wx77', '2014-12-04', 'xiuying5', '2003-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS97030529', '安藤海斗', 1, '+86 178-5091-7309', 2, '541384418364000815', 'Room 16, CR Building, 789 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1993-08-02', 0, 0, 'andok8', '2000-11-05', 'kaitoando', '2014-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS39920550', '田中樹', 0, '+44 7010 057685', 2, '362666665082233765', 'Block 7, 648 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1996-06-04', 0, 0, 'tanaka14', '2018-01-28', 'itsukitanaka', '2017-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS89234026', '朱詩涵', 1, '+81 74-648-8595', 2, '603611164914321660', 'Rm. 48, 6 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1993-12-23', 0, 0, 'zhushihan', '2012-03-11', 'szhu', '2016-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS51899717', 'Steven Campbell', 1, '+1 330-944-2226', 2, '451386930176558993', '183 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1996-08-14', 0, 0, 'stevencampbell2', '2015-08-12', 'steven316', '2000-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS95715929', '周麗欣', 1, '+86 21-834-5345', 0, '393554705286587634', 'Room 8, CR Building, 298 Middle Huaihai Road, Huangpu District, Shanghai, China', '1991-09-14', 0, 0, 'laiyanchow6', '2012-12-31', 'chow83', '2017-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS45250271', '梁青雲', 0, '+86 154-7214-5511', 4, '005747940988853297', 'No.9 building, 46 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1993-09-05', 0, 0, 'chingwanleung', '2000-12-11', 'cwl', '2006-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS53280442', '菅原明菜', 0, '+86 134-4641-3049', 0, '550953110316136874', '中国东莞东泰五街530号11栋', '1990-02-01', 0, 0, 'sugawaraakina', '2006-03-06', 'sugawaraa10', '2019-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS192418612686', '苗家玲', 1, '+81 70-7182-1557', 1, '890556630430423297', '23-kai, 5-19-3 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1991-09-18', 0, 0, 'klmiu1963', '2002-07-26', 'mikl409', '2021-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS954836839346', '橋本葵', 0, '+1 312-116-0724', 3, '546781847575234691', '256 Pedway Suite 20, Chicago, IL 60601, United States', '1996-05-04', 0, 0, 'haoi', '2007-12-24', 'aoi1', '2006-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS184777112086', 'Jesse Gordon', 1, '+81 80-7733-0122', 1, '514109695769008903', '日本ならし大和郡山市本庄町一丁目1番8号19号室', '1987-09-29', 0, 0, 'goj', '2017-12-04', 'gordonjesse', '2002-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS620795910589', '村上詩乃', 0, '+1 614-901-3518', 4, '285900986686186269', '644 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1994-03-10', 0, 0, 'murakamis1958', '2002-10-10', 'murash', '2001-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS815706629408', '黎家明', 0, '+86 10-567-7243', 3, '308909849013019564', '中国北京市东城区东单王府井东街492号华润大厦50室', '1985-11-27', 0, 0, 'lai51', '2018-09-20', 'kaming93', '2008-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS362599701985', '佐野陽菜', 0, '+86 133-6913-9249', 2, '125374204946054292', '中国上海市浦东新区健祥路512号7栋', '1990-04-19', 0, 0, 'hsano1230', '2004-05-31', 'sahina', '2014-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS086870278849', '邵玲玲', 1, '+81 3-0844-5869', 2, '636458357705612753', 'Rm. 46, 5-2-9 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1986-04-16', 0, 0, 'linglings502', '2011-12-02', 'llsiu', '2012-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS493259610493', '胡秀英', 0, '+1 718-595-5262', 0, '715697029823950541', '171 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1991-02-13', 0, 0, 'huxiuying3', '2008-12-24', 'huxiuyi', '2008-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS795529904354', '中山海斗', 0, '+86 21-607-8195', 1, '292522463828555222', 'Room 8, 23 Jianxiang Rd, Pudong, Shanghai, China', '1989-11-01', 0, 0, 'nakaka1112', '2019-11-07', 'kaitonakay', '2010-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS227471386926', '佐々木美緒', 0, '+86 169-0373-3643', 3, '448494862712707651', '中国广州市白云区小坪东路324号4室', '1989-08-23', 0, 0, 'sasakimio', '2013-02-06', 'sasakimio', '2014-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS701190666606', 'Frederick Collins', 0, '+81 52-626-1822', 3, '586806520306086701', '日本なごやし北区楠味鋺三丁目80番3号28階', '1997-06-26', 0, 0, 'collins303', '2001-05-25', 'collifrede', '2002-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS044002870656', '蕭曉彤', 0, '+86 144-8688-2129', 2, '642852116990382240', '中国北京市朝阳区三里屯路247号8栋', '1997-10-30', 0, 0, 'htsiu77', '2001-09-11', 'siu1008', '2019-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS727203844252', '金子悠人', 0, '+86 28-0116-8877', 1, '134622901852780713', '中国成都市成华区双庆路5号36室', '1988-09-05', 0, 0, 'yk01', '2005-03-01', 'kaneko15', '2004-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS335807011191', '酒井蒼士', 0, '+86 755-4961-0977', 0, '446254197290151096', '42F, 1 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1989-02-14', 0, 0, 'aoshi9', '2010-04-10', 'sakaiaos6', '2008-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS961950051159', 'James Martin', 0, '+81 80-1358-5348', 2, '849197714741748823', '日本なごやし守山区瀬古東二丁目171番10号35階', '1985-01-19', 0, 0, 'martinjames1', '2001-07-14', 'martinjam1211', '2001-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS637294851811', '斉藤悠人', 1, '+1 614-726-9494', 2, '944962885612314061', '350 Wicklow Road Suite 50, Columbus, GA 43204, United States', '1986-08-14', 0, 0, 'yuto6', '2019-10-04', 'yutosaito', '2004-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS338820366111', 'Peggy Cooper', 0, '+86 150-7308-2498', 3, '797323226529597896', 'No.32 building, 380 Jingtian East 1st St, Futian District, Shenzhen, China', '1986-03-05', 0, 0, 'peggyc', '2014-01-20', 'peggcooper209', '2005-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS779276193649', 'Gary Rivera', 1, '+81 52-492-7806', 4, '817262041862854796', '日本なごやし熱田区千年二丁目5番4号23階', '1986-03-13', 0, 0, 'garyrivera', '2000-10-09', 'rivera12', '2008-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS416697717657', 'Anne Perry', 1, '+81 74-341-2681', 1, '094294672478812177', '25F, 1-7-5 Saidaiji Akodacho, Nara, Japan', '1992-10-19', 0, 0, 'perann7', '2010-09-12', 'anp', '2003-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS930384921679', '楊思妤', 1, '+86 177-5276-0918', 4, '826623644043383369', '5F, 867 East Wangfujing Street, Dongcheng District , Beijing, China', '1996-03-06', 0, 0, 'szeyuy', '2019-04-10', 'szeyuyeung', '2015-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS321340852425', 'Kevin Robertson', 1, '+81 70-0632-0121', 0, '819344817494056906', '1F, 3-9-4 Gakuenminami, Nara, Japan', '1987-02-27', 0, 0, 'robertsonkevin604', '2005-06-16', 'roberke1231', '2011-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS918617377189', 'Marie Jimenez', 1, '+86 28-0155-7323', 2, '482251954726306591', '中国成都市成华区玉双路6号666号28楼', '1996-11-05', 0, 0, 'jimenez916', '2000-09-23', 'jmarie', '2000-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS593770299900', '胡慧敏', 0, '+44 7850 167726', 3, '349124763834922517', 'Flat 13, 493 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1998-12-14', 0, 0, 'wwm', '2001-02-04', 'wmwu', '2006-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS539202282917', '王德華', 0, '+44 (151) 435 5977', 3, '171170130088828713', 'No.36 Main building, 377 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1993-10-09', 0, 0, 'wtakwah', '2020-09-11', 'takwah307', '2002-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS623696918647', '孙杰宏', 1, '+1 312-491-0756', 1, '857974177539407061', '662 Rush Street Apt 48, Chicago, IL 60611, United States', '1994-11-06', 0, 0, 'sunjiehong721', '2012-05-17', 'sunj10', '2012-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS134115817495', '中山樹', 1, '+81 66-250-5102', 4, '769318935094778477', '日本おおさかし西成区天神ノ森二丁目1番4号43階', '1998-11-17', 0, 0, 'in1011', '2014-11-25', 'nakayama41', '2011-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS026428262056', '江震南', 0, '+1 330-039-6486', 3, '348656558542484476', '18 Collier Road Suite 14, Akron, OH 44320, United States', '1993-06-06', 0, 0, 'zhennanjia88', '2019-12-03', 'jzhennan13', '2014-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS254157163260', '蘇家輝', 1, '+81 70-2825-8191', 1, '506814731244942910', 'Rm. 22, 5-4-3 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1987-12-30', 0, 0, 'sokf123', '2019-06-19', 'kafai1030', '2008-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS383568400219', '柴田花', 0, '+86 155-6227-2912', 0, '861046008484217654', '中国深圳福田区深南大道392号华润大厦40室', '1991-10-07', 0, 0, 'shibahana', '2002-09-27', 'shibata7', '2003-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS861378321961', '石睿', 1, '+81 80-7031-6732', 4, '111713522985111322', '日本東京港区東新橋一丁目5番8号32号室', '1998-08-10', 0, 0, 'shi718', '2016-08-25', 'ruis06', '2020-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS550304765914', 'Nicole Diaz', 0, '+81 52-834-4177', 0, '729610049343554155', '日本なごやし北区清水三丁目19番8号5階', '1995-10-05', 0, 0, 'ndia', '2011-06-07', 'nicole1129', '2015-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS172686026646', 'Marvin Henry', 1, '+81 52-506-1219', 2, '124686985726380301', '日本なごやし守山区瀬古東二丁目171番9号34階', '1998-11-24', 0, 0, 'marvin8', '2009-07-08', 'mahenry7', '2012-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS065652681391', '张秀英', 1, '+86 755-5415-5152', 2, '644496678023243341', '中国深圳福田区景田东一街941号32楼', '1997-07-06', 0, 0, 'xiuyingzhang1', '2001-10-17', 'zhangxiuy129', '2000-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS584333185207', 'Tiffany Powell', 0, '+86 152-0761-9358', 3, '939476785547291977', '中国深圳龙岗区学园一巷690号26楼', '1996-05-29', 0, 0, 'tpowe', '2001-08-08', 'tip', '2004-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS106402752796', 'Travis Porter', 1, '+86 162-6054-7921', 3, '423591717211335993', '中国深圳罗湖区蔡屋围深南东路52号3楼', '1992-03-07', 0, 0, 'porter72', '2003-03-02', 'travporter', '2021-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS898205024921', '谷明詩', 1, '+44 (116) 840 6030', 1, '840950079711427638', 'Flat 18, 262 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1996-12-19', 0, 0, 'mskoo7', '2002-06-04', 'koo1', '2009-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS285469873530', '小林百恵', 0, '+1 213-947-6573', 2, '444245921010753291', '740 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1997-05-13', 0, 0, 'km94', '2017-03-11', 'momoekobayashi2010', '2011-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS478851399075', '黄宇宁', 0, '+81 11-476-5354', 2, '630108238562073813', '日本札幌厚別区上野幌一条二丁目1番9号26号室', '1988-12-12', 0, 0, 'yuninghuang4', '2008-09-10', 'yuninghuang58', '2003-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS631896408811', '小山紗良', 0, '+1 838-991-2739', 0, '152047523934324280', '934 Broadway Apartment 2, Albany, NY 12207, United States', '1989-06-28', 0, 0, 'sarakoy1218', '2021-05-30', 'sarakoyama', '2016-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS671219377856', '武田紗良', 0, '+86 197-5823-5580', 1, '587424691873378080', '中国深圳龙岗区学园一巷6号14室', '1987-10-02', 0, 0, 'st210', '2010-02-07', 'saratakeda', '2018-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS184921891893', '菅原聖子', 0, '+81 90-7267-9677', 1, '072196447340946305', '13F, 15 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1986-10-05', 0, 0, 'seikos1119', '2000-04-25', 'sugse', '2018-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS400260151130', 'Mike Murray', 1, '+81 80-8736-0965', 0, '668567021536989239', '50F, 3-19-4 Shimizu, Kita Ward, Nagoya, Japan', '1998-12-19', 0, 0, 'mikemurra4', '2018-07-19', 'murmik6', '2014-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS279775650221', '李云熙', 0, '+44 5082 959838', 0, '720591589914323305', 'Block 41, 934 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1996-08-29', 0, 0, 'liyunxi', '2019-10-22', 'yli', '2016-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS007742306620', 'Heather Anderson', 0, '+81 11-466-1030', 2, '594140918250013276', '45F, 5-19-3 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1997-11-29', 0, 0, 'aheat1', '2016-04-02', 'ah7', '2008-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS662527164194', '區學友', 0, '+81 3-8946-4168', 3, '505449412170528859', '31-kai, 3-15-8 Ginza, Chuo-ku, Tokyo, Japan', '1996-10-08', 0, 0, 'au10', '2006-05-28', 'hyau', '2017-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS769571901652', 'Tina Patel', 1, '+1 213-161-8682', 3, '081849659396129440', '635 S Broadway Suite 25, Los Angeles, CA 90015, United States', '1992-08-23', 0, 0, 'patel5', '2005-08-07', 'ptina', '2006-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS761378056493', 'Kathryn Robertson', 0, '+86 10-589-0935', 0, '074805966479764806', '中国北京市西城区复兴门内大街93号华润大厦18室', '1996-08-04', 0, 0, 'kathryn1027', '2003-01-12', 'rk505', '2019-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS519337012738', '萬天樂', 0, '+86 132-1145-5783', 0, '004165927684437274', 'Room 31, CR Building, 999 Dong Zhi Men, Dongcheng District, Beijing, China', '1989-02-23', 0, 0, 'tlmeng', '2008-10-14', 'mengtl', '2010-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS211794490647', 'Alexander Ellis', 0, '+81 90-3832-7680', 1, '926878723745640134', '日本東京中央区銀座三丁目12番15号23階', '1992-11-21', 0, 0, 'alexaellis', '2010-03-18', 'ella', '2008-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS696320777382', 'Mario Schmidt', 1, '+86 28-6900-9710', 3, '023286536563410597', '中国成都市成华区双庆路853号16号楼', '1997-01-26', 0, 0, 'scmar76', '2009-08-06', 'schmidt2', '2011-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS572573755322', 'Thelma Kennedy', 1, '+81 90-1932-1162', 0, '730188097905285191', '日本おおさかし平野区加美東四丁目9番10号13号室', '1988-08-16', 0, 0, 'tk1956', '2013-02-03', 'thelken', '2006-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS238538133879', '周子韬', 1, '+86 187-9229-5702', 0, '353418656182723708', 'No.15 building, 238 Yueliu Rd, Fangshan District, Beijing, China', '1992-06-26', 0, 0, 'zzitao7', '2013-04-03', 'zhouz2', '2011-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS325843463096', '木村玲奈', 0, '+81 90-8307-8722', 3, '575555863165566320', '日本なごやし北区楠味鋺三丁目80番14号14号室', '1996-09-02', 0, 0, 'renakim', '2004-12-24', 'renakimura', '2013-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS653380532296', '葉慧嫻', 1, '+44 5724 100719', 4, '942203664665887909', 'Flat 11, 169 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1992-02-04', 0, 0, 'yipwh', '2016-02-11', 'yiwh', '2004-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS105745357534', '山崎拓哉', 1, '+86 143-2065-8769', 4, '463469278153819852', '中国广州市白云区机场路棠苑街五巷329号华润大厦18室', '1985-12-15', 0, 0, 'tayamazaki', '2003-11-30', 'takuyamazaki802', '2001-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS765080949996', '松本健太', 1, '+81 70-4436-3102', 0, '668185026760510254', '日本おおさかし平野区加美東四丁目9番3号47階', '1988-07-13', 0, 0, 'kentamatsumoto', '2021-10-14', 'matsumoto3', '2005-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS692421355146', '高田樹', 0, '+81 52-890-2057', 2, '112215983207806683', '日本なごやし守山区瀬古東二丁目171番6号38号室', '1986-04-17', 0, 0, 'ittakad', '2011-08-26', 'itstakada', '2006-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS399369492868', '余嘉伦', 1, '+86 182-2380-0409', 4, '587386770420173785', '中国北京市西城区西長安街259号30号楼', '1998-08-29', 0, 0, 'jialunyu729', '2021-09-19', 'jialun722', '2004-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS297868831871', '曾安娜', 1, '+86 769-3637-2360', 1, '052051643284647593', '27F, 294 Shanhu Rd, Dongguan, China', '1987-04-13', 0, 0, 'ontsang', '2017-06-06', 'ton8', '2001-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS055941087457', 'Stephanie Aguilar', 1, '+81 52-361-4430', 4, '662736310077206674', 'Rm. 43, 11 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-08-26', 0, 0, 'aguilarsteph6', '2009-12-19', 'aguistephanie', '2002-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS734717763592', '中山愛梨', 1, '+86 144-7894-0110', 3, '738573191620192807', '中国深圳罗湖区清水河一路537号48栋', '1997-06-25', 0, 0, 'naairi', '2014-07-21', 'airn', '2007-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS854547843450', '柴田凛', 1, '+44 5546 078765', 2, '313646881346278859', 'No.10 Main building, 163 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1994-12-23', 0, 0, 'rinshi', '2000-01-01', 'shibatari', '2016-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS217284552680', '邱霆鋒', 0, '+86 769-107-0965', 0, '657963207193033445', '中国东莞环区南街二巷245号30栋', '1997-11-07', 0, 0, 'tfy2', '2007-11-11', 'tfyau', '2011-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS476195181515', '韓梓晴', 0, '+81 90-2318-3977', 2, '733139006577566007', '日本東京渋谷区代々木二丁目3番14号36階', '1987-06-02', 0, 0, 'han8', '2000-09-06', 'htszching', '2021-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS591515244401', 'Crystal Woods', 0, '+44 7409 264683', 2, '496675840319230648', 'Flat 29, 993 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1997-05-26', 0, 0, 'wooc924', '2000-01-28', 'wcrystal4', '2021-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS723957992512', '林榮發', 0, '+86 132-6148-0422', 1, '420798647024587000', '17F, 258 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1998-01-22', 0, 0, 'wflam723', '2004-02-23', 'wfla', '2014-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS016471217414', '郝嘉伦', 1, '+86 157-6760-0531', 2, '509617702278051269', '中国成都市成华区二仙桥东三路710号34室', '1994-04-15', 0, 0, 'haojia', '2019-11-30', 'jiahao', '2019-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS563311924735', 'Brenda Davis', 0, '+86 21-4755-7791', 1, '440598266285571648', 'No.23 building, 794 Binchuan Rd, Minhang District, Shanghai, China', '1986-09-07', 0, 0, 'davisbren730', '2007-05-15', 'brenda8', '2016-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS488511223025', '邵安琪', 1, '+86 131-7657-7299', 1, '013580701753300111', '中国北京市朝阳区三里屯路286号21号楼', '1987-02-12', 0, 0, 'siu1118', '2017-06-21', 'oks', '2015-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS220263854873', '吉田紗良', 0, '+86 156-9268-0807', 3, '660963040616724253', '中国深圳龙岗区布吉镇西环路852号1室', '1992-03-16', 0, 0, 'sarayoshida57', '2020-10-22', 'yoshidasar1957', '2007-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS849781714322', '袁璐', 0, '+44 (161) 162 5196', 2, '678200782439278559', 'Flat 2, 981 Sackville St, Manchester, M1 3BB, United Kingdom', '1994-05-18', 0, 0, 'yuanl53', '2000-04-21', 'ylu', '2011-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS503015345566', 'Elizabeth Cole', 0, '+86 10-367-0423', 3, '796897878783013518', '中国北京市西城区复兴门内大街586号华润大厦4室', '1989-06-22', 0, 0, 'elizabeth10', '2009-10-07', 'coleeli9', '2000-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS388099277839', '中島翼', 1, '+81 70-9183-2504', 0, '325273900058013376', 'Rm. 9, 5-2-16 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1991-03-29', 0, 0, 'nakajimat5', '2000-04-17', 'tsubanak2007', '2008-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS472946154827', 'Richard Meyer', 0, '+81 80-4372-1705', 1, '767965764656698020', '12-kai, 4-9-4 Kamihigashi, Hirano Ward, Osaka, Japan', '1986-01-27', 0, 0, 'mrich', '2004-03-09', 'meyerr', '2009-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS876337965918', '湯天樂', 0, '+1 838-575-5716', 2, '987955654365824311', '143 State Street Apartment 3, Albany, NY 12203, United States', '1989-12-15', 0, 0, 'tongtinlok7', '2005-11-16', 'tongtinlok625', '2012-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS148866588740', '太田優奈', 1, '+44 (20) 4060 6216', 4, '186697794662604897', 'Flat 46, 855 Maddox Street, London, W1S 1PU, United Kingdom', '1989-12-18', 0, 0, 'ota2', '2009-09-18', 'otayun78', '2005-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS128240117600', '市川蒼士', 1, '+1 838-192-3230', 1, '584575401826831931', '13 Broadway Apartment 38, Albany, NY 12207, United States', '1994-04-16', 0, 0, 'ichikawa6', '2013-01-22', 'aoshi1206', '2018-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS143941759057', '严秀英', 0, '+81 80-8779-3468', 3, '267476536611788907', '日本東京渋谷区代々木二丁目3番18号18号室', '1995-09-18', 0, 0, 'xiuyan', '2021-07-08', 'xiuying208', '2017-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS712521593037', '葉詩君', 1, '+44 (161) 930 4074', 1, '803292173218030533', 'Flat 38, 42 Sackville St, Manchester, M1 3BB, United Kingdom', '1989-02-03', 0, 0, 'szekwanyip', '2015-06-23', 'yip209', '2007-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS493661255871', '沈子韬', 1, '+81 66-660-9066', 2, '586580272262293326', '日本おおさかし西成区出城一丁目1番2号21階', '1996-11-24', 0, 0, 'shzita', '2009-05-19', 'zitaosh', '2010-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS145862792881', '汤云熙', 1, '+1 212-416-5433', 3, '757218710588209386', '47 West Houston Street Apartment 20, New York, NY 10014, United States', '1997-07-10', 0, 0, 'tangyun1', '2010-12-13', 'tangyun2', '2002-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS279752335862', '阎璐', 0, '+86 159-2475-0985', 0, '559738925994098214', 'No.4 building, 426 Shanhu Rd, Dongguan, China', '1990-06-01', 0, 0, 'ylu', '2013-11-06', 'ylu', '2004-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS261626172188', 'Jeff Hall', 1, '+86 160-1632-8891', 0, '111345079757524467', '中国上海市浦东新区健祥路958号华润大厦7室', '1989-01-03', 0, 0, 'jeh10', '2007-09-02', 'hajeff4', '2020-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS710796638848', '崔子韬', 0, '+86 21-441-7987', 1, '901591389970709656', 'No.30 building, 84 Jianxiang Rd, Pudong, Shanghai, China', '1987-04-18', 0, 0, 'zcui', '2011-02-03', 'zitao1998', '2003-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS099221556074', '原瑛太', 1, '+86 173-2805-9712', 4, '339491421399623529', 'No.4 building, 326 Dong Zhi Men, Dongcheng District, Beijing, China', '1993-12-27', 0, 0, 'haei', '2017-07-30', 'eitahara603', '2016-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS148389446854', '野口愛梨', 0, '+81 70-6912-8477', 0, '372559301852823290', 'Rm. 5, 1-5-16, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1998-05-19', 0, 0, 'nairi10', '2014-07-17', 'airinoguc', '2003-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS648716185049', 'Leslie Rodriguez', 0, '+1 330-703-0236', 4, '938522648893513902', '653 Fern Street Suite 19, Akron, OH 44307, United States', '1997-02-27', 0, 0, 'roleslie7', '2017-12-04', 'rodriguez63', '2001-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS432543340401', '韩致远', 0, '+86 755-573-2596', 1, '323881189554715016', '中国深圳龙岗区布吉镇西环路700号46号楼', '1992-03-31', 0, 0, 'hanzh', '2015-10-13', 'zhiyhan', '2017-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS468836009017', '常子韬', 0, '+81 3-6143-8254', 4, '844253999136295695', '36F, 3-15-17 Ginza, Chuo-ku, Tokyo, Japan', '1987-07-23', 0, 0, 'changzitao', '2011-02-14', 'zch801', '2004-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS122135796247', '清水大地', 1, '+86 755-5412-0974', 1, '362203346342324404', 'Room 14, CR Building, 289 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-03-14', 0, 0, 'daichi3', '2004-10-10', 'shimizudaichi220', '2022-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS623303836558', '苗秀文', 1, '+81 80-1436-0887', 1, '567667747773085793', '45-kai, 3-15-10 Ginza, Chuo-ku, Tokyo, Japan', '1986-10-23', 0, 0, 'smm', '2003-12-28', 'saumanmiu', '2007-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS099716440805', 'Mildred Fernandez', 0, '+81 3-6717-5739', 1, '862434227232268565', '6F, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1991-03-04', 0, 0, 'fernandez9', '2005-07-15', 'mildredfern', '2008-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS976511874138', '劉惠敏', 1, '+86 191-5178-7832', 0, '256427633350864952', '中国北京市朝阳区三里屯路120号21号楼', '1994-06-13', 0, 0, 'lawm109', '2007-08-30', 'lauwm', '2021-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS506832061750', 'Anita Baker', 1, '+81 3-3662-9293', 3, '491016520559508812', '48-kai, 5-2-10 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-11-18', 0, 0, 'anitab911', '2007-01-23', 'anitaba', '2020-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS621363088153', '陆子韬', 1, '+1 330-764-9140', 2, '151875733771855949', '339 Collier Road 3rd Floor, Akron, OH 44320, United States', '1985-04-17', 0, 0, 'luzit', '2000-07-30', 'lzita9', '2007-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS466126247058', '胡天榮', 0, '+86 145-5045-2083', 4, '295205475155383727', '35F, 354 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-11-10', 0, 0, 'tinwingwu', '2001-10-24', 'tww79', '2001-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS553426012236', '白世榮', 0, '+81 52-493-2794', 3, '236557643439628180', '日本なごやし北区清水三丁目19番17号1階', '1996-01-27', 0, 0, 'swp912', '2017-05-02', 'saiwpa', '2013-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS157754136136', '雷榮發', 1, '+81 90-1561-0349', 3, '195029173748138823', '日本東京千代田区丸の内一丁目6番9号39号室', '1988-09-10', 0, 0, 'wingfat810', '2018-12-05', 'louiwf42', '2007-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS444788972574', '周祖兒', 0, '+44 (121) 893 2158', 1, '982063428722984740', 'Flat 8, 467 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1993-09-27', 0, 0, 'chowcy', '2007-10-05', 'chowchoyee', '2002-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS507760083490', 'Edith Bryant', 1, '+1 212-164-2447', 2, '323483065542950872', '746 Canal Street Apt 32, New York, NY 10013, United States', '1988-04-09', 0, 0, 'edithb', '2021-09-10', 'edithb', '2017-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS702442830991', '松井葵', 0, '+44 5664 026259', 4, '462789436839589924', 'Block 22, 785 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1990-05-29', 0, 0, 'matsuaoi', '2003-03-15', 'aoi122', '2020-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS663711273526', '雷云熙', 1, '+1 330-516-7814', 1, '895197742689238127', '90 Ridgewood Road Apt 9, Akron, OH 44321, United States', '1996-12-30', 0, 0, 'yunxilei', '2014-12-11', 'ylei', '2005-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS740932902716', '孫慧珊', 1, '+1 213-888-1505', 3, '700976290928438327', '889 Figueroa Street Apartment 32, Los Angeles, CA 90037, United States', '1986-04-24', 0, 0, 'hsuanwaisan', '2011-12-05', 'hsuanwa', '2006-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS643518882442', '野村大輔', 1, '+86 163-6758-7469', 1, '129397870499363224', 'Room 25, CR Building, 43 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-01-20', 0, 0, 'dan', '2011-04-22', 'nd13', '2019-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS502584561371', 'Earl Vasquez', 0, '+81 66-903-8688', 2, '549880983211673145', '日本おおさかし東住吉区東田辺三丁目27番15号49階', '1988-11-09', 0, 0, 'vasquez328', '2007-10-03', 'vasquezearl', '2005-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS868336025695', '姚子韬', 0, '+81 90-8036-5995', 4, '878579955798097369', '日本なごやし熱田区千年二丁目5番19号17号室', '1985-11-23', 0, 0, 'zitaoyao2', '2020-04-02', 'yaozitao1', '2014-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS882014213193', '杨岚', 0, '+44 (151) 858 2641', 3, '169991598828107158', 'Flat 50, 747 Redfern St, Liverpool, L20 8JB, United Kingdom', '1993-11-30', 0, 0, 'lya63', '2004-07-24', 'yangla', '2021-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS505853610043', '何富城', 0, '+86 144-2188-6140', 3, '993329249085154691', '21F, 208 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1996-05-08', 0, 0, 'hofs', '2020-07-08', 'hofushing1009', '2005-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS417572133406', '徐俊宇', 0, '+86 137-4527-1395', 2, '783245442028732516', 'Room 18, CR Building, 881 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1992-07-09', 0, 0, 'chunyu305', '2009-11-17', 'cyts', '2010-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS355206786543', '渡辺陽菜', 0, '+81 3-1329-8775', 3, '374064906977182875', '37-kai, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1986-07-12', 0, 0, 'sato99', '2019-02-03', 'satohina', '2008-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS287554461767', '蒋宇宁', 0, '+86 10-7560-1699', 4, '281513601329984385', 'No.34 building, 828 68 Qinghe Middle St, Haidian District, Beijing, China', '1988-11-07', 0, 0, 'jiangyun', '2010-01-14', 'jyun', '2005-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS930515550420', '何梓軒', 1, '+1 312-682-7823', 1, '044222824270199229', '491 North Michigan Ave Apartment 34, Chicago, IL 60611, United States', '1998-10-09', 0, 0, 'ho1972', '2014-07-30', 'hotszhin', '2013-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS949205264381', '藤田一輝', 1, '+81 3-6055-1403', 1, '564556440736991585', '日本東京品川区東五反田五丁目2番1号29階', '1994-12-30', 0, 0, 'fujiikk214', '2009-08-19', 'ikkifu', '2014-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS200837271703', '福田桜', 0, '+44 5723 227024', 3, '210259213619891884', 'Flat 12, 539 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1990-01-28', 0, 0, 'sakurfukud9', '2000-04-10', 'fukusakura', '2000-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS317533522974', '郭晓明', 0, '+44 (161) 078 1621', 0, '145243058820955698', 'No.8 Main building, 740 Sackville St, Manchester, M1 3BB, United Kingdom', '1985-02-28', 0, 0, 'gux', '2002-10-18', 'xiaoming717', '2014-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS922509047278', 'Matthew Roberts', 0, '+86 20-6775-9355', 3, '651862196671124990', '27F, 668 Xiaoping E Rd, Baiyun , Guangzhou, China', '1990-01-15', 0, 0, 'romat', '2010-04-25', 'matthewroberts', '2003-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS678214566384', 'Harry Sanders', 1, '+86 10-757-8778', 4, '030003184518889565', '中国北京市海淀区清河中街68号510号12号楼', '1998-09-26', 0, 0, 'sandharry2', '2010-11-12', 'sanders1984', '2019-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS595231794925', '史宇宁', 1, '+86 760-491-2274', 3, '188248584756960368', '中国中山天河区大信商圈大信南路145号5栋', '1998-12-17', 0, 0, 'shiyunin1950', '2000-06-12', 'shiy', '2010-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS517698629143', '蔣力申', 1, '+1 330-787-6861', 1, '369336461617866085', '239 Collier Road Suite 42, Akron, OH 44320, United States', '1998-10-12', 0, 0, 'chianliksun59', '2014-08-10', 'chiang1201', '2014-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS081530191909', '江惠敏', 1, '+1 330-418-6287', 1, '095313892065604264', '605 West Market Street Apartment 20, Akron, OH 44333, United States', '1986-06-17', 0, 0, 'waimankong', '2019-03-31', 'wmk', '2021-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS892049641082', '房裕玲', 1, '+1 614-243-7738', 1, '495477786136109747', '39 East Cooke Road Apt 31, Columbus, GA 43214, United States', '1987-01-22', 0, 0, 'yulingfong', '2002-05-16', 'ylfon', '2007-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS736938487660', '陈安琪', 1, '+81 11-678-3619', 2, '910863279781881825', '46F, 13-3-17 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1993-05-15', 0, 0, 'anqich52', '2009-12-15', 'anqi1102', '2002-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS168286100747', '石田美羽', 0, '+86 28-0659-8998', 1, '816788641272161352', 'Room 6, CR Building, 431 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1992-02-14', 0, 0, 'miuishida', '2009-04-29', 'mishi4', '2017-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS433296395727', '姚杰宏', 1, '+86 144-0835-4506', 1, '020831575170909576', 'Room 6, 660 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1996-03-04', 0, 0, 'yjiehong', '2002-05-27', 'jiyao', '2019-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS833180926417', '曹曉彤', 0, '+81 70-6256-7097', 1, '477692668917290157', '日本おおさかし平野区加美東四丁目9番15号48号室', '1988-07-31', 0, 0, 'chiutung', '2007-07-08', 'choht', '2010-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS422636397708', '尹家文', 0, '+86 194-7827-3114', 2, '519326261819440350', 'No.50 building, 337 Dong Zhi Men, Dongcheng District, Beijing, China', '1992-09-27', 0, 0, 'kamanyin', '2020-04-24', 'kmyin', '2000-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS258953097864', 'Thelma Griffin', 1, '+81 11-429-8643', 2, '166712206469626850', '7-kai, 2-1-10 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1986-11-10', 0, 0, 'thelmagriff8', '2015-02-23', 'thelma2015', '2007-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS830639799437', 'Tiffany Romero', 1, '+81 66-087-6001', 3, '593356592317543500', '6-kai, 3-27-6 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-06-21', 0, 0, 'tiffanyrom', '2013-02-21', 'tromero7', '2020-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS084066624634', 'Judith Mills', 0, '+81 90-7416-0395', 3, '475708027396889232', 'Rm. 23, 1 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-12-18', 0, 0, 'juditmills', '2020-09-18', 'milljudith7', '2017-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS238855016197', '湯富城', 1, '+81 52-323-2832', 0, '966190213870021413', '日本なごやし守山区瀬古東二丁目171番10号41号室', '1996-02-01', 0, 0, 'tonfs', '2018-06-01', 'tong1120', '2003-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS793204449028', '山口美咲', 1, '+81 74-572-0275', 2, '393645923239181171', '22F, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-06-29', 0, 0, 'misayamaguchi', '2019-06-14', 'ym7', '2010-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS676653340855', '邱志遠', 0, '+86 20-576-2454', 2, '855786477299888272', 'No.3 building, 731 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1986-03-13', 0, 0, 'cyyau1945', '2017-12-10', 'chiyuenyau7', '2021-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS628238501970', '陈秀英', 0, '+81 90-2325-6865', 3, '270391349559330367', '日本なごやし瑞穂区河岸町四丁目20番9号41階', '1990-01-23', 0, 0, 'xiuyingc', '2020-08-15', 'chex3', '2009-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS533729599966', '崔安琪', 1, '+81 11-816-0141', 1, '362380607222030512', '日本札幌白石区菊水三条五丁目2番8号40階', '1989-08-09', 0, 0, 'acu', '2003-10-05', 'anqicu216', '2009-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS207220968672', 'Juan Garza', 0, '+81 3-5585-0832', 1, '650697280159751018', 'Rm. 20, 1-6-19, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1998-09-12', 0, 0, 'garza8', '2018-02-20', 'jug4', '2007-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS786702086475', '彭宇宁', 0, '+81 80-3846-9425', 0, '862616886945052188', '日本おおさかし近江堂一丁目7番19号36階', '1993-04-19', 0, 0, 'pengyuning', '2015-02-27', 'yupeng', '2010-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS054737696806', '钱晓明', 0, '+81 52-881-2055', 4, '388064963935897340', '日本なごやし北区清水三丁目19番3号32階', '1987-03-20', 0, 0, 'qianxiaom', '2009-08-02', 'xqian', '2004-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS619480018711', '上野葉月', 1, '+1 212-755-2016', 1, '956039645901869412', '889 Wooster Street Apt 32, New York, NY 10012, United States', '1985-10-27', 0, 0, 'hazukiueno', '2019-02-20', 'uhazuki625', '2012-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS894138991703', '马秀英', 1, '+86 142-9013-7955', 1, '983147084177370310', 'Room 35, CR Building, 461 Binchuan Rd, Minhang District, Shanghai, China', '1997-01-19', 0, 0, 'maxiuyi8', '2018-02-27', 'mxi4', '2022-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS932338802950', '高小慧', 0, '+81 11-498-6170', 4, '609588432874415114', '日本札幌清田区真栄四条五丁目19番10号28号室', '1986-12-19', 0, 0, 'swkao', '2002-01-28', 'swkao', '2015-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS177447388706', 'Ellen Nguyen', 0, '+44 5056 109301', 4, '074531547855561377', 'Unit 30, Oxford Eco Centre, 970 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1986-06-05', 0, 0, 'nguyee', '2013-03-03', 'ellennguy', '2021-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS451610129260', 'Clifford Sanders', 1, '+1 838-796-3636', 0, '526482257453222267', '584 State Street Suite 12, Albany, NY 12203, United States', '1994-09-24', 0, 0, 'clifford7', '2015-08-28', 'sacliff10', '2020-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS170433085253', '赵杰宏', 1, '+81 3-2728-4278', 4, '727602779683521955', '日本東京品川区東五反田五丁目2番13号27階', '1996-10-14', 0, 0, 'jiehong423', '2017-10-17', 'jiezhao', '2001-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS835777378873', '杉山蒼士', 1, '+81 70-4408-3449', 3, '867733668397653256', '日本東京千代田区丸の内一丁目6番2号20階', '1995-03-28', 0, 0, 'sugiyamaaoshi', '2015-05-16', 'saoshi1940', '2012-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS717384437124', '杜慧珊', 0, '+1 212-623-5269', 2, '301339508224099954', '76 Bank Street 3rd Floor, New York, NY 10014, United States', '1991-12-15', 0, 0, 'waisan5', '2012-03-02', 'waisan3', '2011-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS647643772073', 'Shawn Turner', 0, '+81 52-554-1808', 0, '036180313536756818', '日本なごやし瑞穂区河岸町四丁目20番12号38号室', '1990-01-22', 0, 0, 'turnershawn', '2011-12-07', 'turnes69', '2008-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS379904670160', '許慧嫻', 0, '+86 10-3715-7727', 1, '114682839084684315', 'Room 6, CR Building, 852 Sanlitun Road, Chaoyang District, Beijing, China', '1988-09-27', 0, 0, 'huiwh619', '2012-03-09', 'whh6', '2006-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS758292090408', '區榮發', 0, '+86 760-840-7817', 3, '658726633457705993', 'Room 16, CR Building, 697 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1998-08-23', 0, 0, 'wfau10', '2021-01-12', 'auwf', '2009-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS750568961404', '石井大輔', 0, '+44 5248 659174', 3, '717258113801195052', 'Block 34, 517 Mosley St, Manchester, M2 3AQ, United Kingdom', '1990-03-22', 0, 0, 'isdai', '2019-02-06', 'ishiida', '2001-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS802545798822', 'Victor Reed', 1, '+86 194-1658-5863', 4, '945171618451155579', 'No.28 building, 53 Sanlitun Road, Chaoyang District, Beijing, China', '1995-10-16', 0, 0, 'victorree', '2009-07-10', 'victor59', '2006-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS982282873292', '孟岚', 0, '+86 755-227-2068', 1, '256026854193136500', 'No.23 building, 696 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1991-08-15', 0, 0, 'lanm7', '2003-12-08', 'lan512', '2014-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS319099593811', '小川湊', 1, '+81 52-824-7165', 1, '904955687151298145', '日本なごやし北区楠味鋺三丁目80番2号21階', '1995-02-25', 0, 0, 'ogamina', '2001-06-14', 'ogawa2017', '2004-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS764337491518', '大野光', 1, '+1 330-945-3397', 3, '631679163303661030', '986 Fern Street Suite 2, Akron, OH 44307, United States', '1991-06-29', 0, 0, 'ono809', '2004-11-18', 'ho1203', '2012-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS610529193363', '汪杰倫', 1, '+81 70-0865-6832', 0, '053525055488434649', '日本なごやし北区楠味鋺三丁目80番13号16階', '1991-12-15', 0, 0, 'chwo', '2000-09-18', 'chiehlunwong1026', '2002-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS159957966134', '岡田七海', 0, '+81 70-6246-8590', 2, '391693282614619730', '日本東京品川区東五反田五丁目2番11号30階', '1996-02-23', 0, 0, 'nanami7', '2004-06-30', 'okadananami7', '2012-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS156978733495', '葉梓軒', 1, '+86 28-5670-1252', 1, '396642853141550700', '中国成都市成华区双庆路441号39号楼', '1986-02-16', 0, 0, 'tszhin9', '2009-08-11', 'thy919', '2015-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS044080502369', 'Judy Rice', 0, '+81 52-961-5477', 1, '349883918288785005', '9F, 12 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1991-10-05', 0, 0, 'juri', '2010-04-07', 'ricejud04', '2019-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS133679116663', '孙震南', 0, '+81 70-7747-4761', 3, '953901146848325529', '日本札幌豊平区豊平三条十三丁目3番12号50階', '1997-12-26', 0, 0, 'zsun', '2012-10-23', 'sunzhennan5', '2000-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS384119260394', '史詩涵', 1, '+44 5116 263273', 4, '030334275635480336', 'Block 27, 714 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1987-07-20', 0, 0, 'shihanshi14', '2000-11-20', 'shihan701', '2005-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS884398473942', 'Alan King', 1, '+44 5196 332424', 1, '870502402188106773', 'Flat 39, 773 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1990-03-10', 0, 0, 'king79', '2002-08-09', 'kina', '2019-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS725513521948', 'Paula Green', 1, '+86 760-593-5106', 2, '456494318636427122', '中国中山紫马岭商圈中山五路796号7楼', '1986-03-25', 0, 0, 'pag218', '2000-07-09', 'pgr', '2011-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS192600838694', 'Norma Jenkins', 1, '+1 614-124-3250', 1, '385877524379588329', '961 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1993-09-01', 0, 0, 'normajen', '2005-11-01', 'norma1', '2010-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS891992883685', '廖浩然', 1, '+44 (1865) 37 8926', 2, '932423843477823287', 'Block 15, 765 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1985-02-01', 0, 0, 'liaohoyin9', '2001-12-23', 'liaohoyin', '2015-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS109630174555', '陳惠妹', 1, '+86 164-3794-2805', 2, '466035851588567442', '中国深圳罗湖区田贝一路613号华润大厦30室', '1993-04-22', 0, 0, 'chhuimei409', '2007-09-27', 'chanhm', '2002-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS609307970655', '藤原美緒', 1, '+86 760-1456-2491', 0, '591648975463777712', 'No.11 building, 63 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1993-05-28', 0, 0, 'fumi', '2007-07-02', 'mifujiwara', '2019-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS366688012016', '熊睿', 0, '+1 330-578-4574', 4, '416364232391998798', '380 Collier Road Apt 12, Akron, OH 44320, United States', '1994-02-22', 0, 0, 'rx71', '2000-02-04', 'rui5', '2013-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS200842870602', '清水桜', 1, '+44 7894 814684', 3, '117880786162757936', 'No.22 Main building, 69 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1987-12-12', 0, 0, 'shimizusakura', '2008-01-23', 'sakurashimizu', '2018-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS388638128077', '钟子异', 0, '+44 (161) 900 0582', 1, '262157191586760637', 'Flat 42, 272 Portland St, Manchester, M1 3LA, United Kingdom', '1987-08-12', 0, 0, 'ziyizhon1970', '2007-08-19', 'ziyi9', '2010-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS555022711516', '田德華', 0, '+86 28-788-3640', 1, '123298251899915250', '中国成都市成华区玉双路6号109号华润大厦34室', '1985-08-06', 0, 0, 'takwahtin', '2017-03-18', 'tintw', '2007-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS793043108679', 'Louis Mitchell', 0, '+86 175-4856-6979', 3, '113846453674461826', '1F, 391 Kengmei 15th Alley, Dongguan, China', '1989-08-12', 0, 0, 'louismitchell1978', '2018-10-06', 'mloui', '2000-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS209280774984', 'Martha Rogers', 1, '+86 157-8486-8107', 3, '184972533795333587', '中国北京市东城区东单王府井东街104号6号楼', '1995-12-07', 0, 0, 'maro', '2012-12-13', 'mr59', '2019-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS086626530898', '尹致远', 0, '+81 74-122-9586', 0, '586921430462222948', '49F, 3-9-17 Gakuenminami, Nara, Japan', '1985-04-23', 0, 0, 'yizhiyuan', '2006-05-28', 'yinzhiyuan129', '2016-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS571734156848', 'Kathryn Rice', 1, '+81 90-3219-0585', 1, '099794894194700097', '日本東京港区東新橋一丁目5番3号13階', '1990-07-20', 0, 0, 'ricekathryn', '2020-05-11', 'ricekat', '2017-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS006817942124', '文國明', 1, '+81 52-322-0529', 4, '095877854819065884', 'Rm. 9, 3-19-12 Shimizu, Kita Ward, Nagoya, Japan', '1999-02-20', 0, 0, 'kmman', '2009-10-10', 'mkm114', '2019-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS771619654905', '徐玲玲', 0, '+86 187-9582-4005', 4, '066599035034476365', '中国中山天河区大信商圈大信南路816号9室', '1995-02-02', 0, 0, 'linglingtsui', '2020-07-23', 'tsui49', '2007-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS509376770432', '邓安琪', 0, '+1 614-683-1446', 1, '033053358659899889', '398 Diplomacy Drive Suite 25, Columbus, GA 43228, United States', '1996-08-31', 0, 0, 'anqdeng', '2011-06-27', 'deanqi', '2001-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS807921329785', '西村海斗', 1, '+86 194-2895-8266', 1, '415747092623940988', 'No.15 building, 903 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1985-02-09', 0, 0, 'nka318', '2001-04-21', 'nishimura77', '2000-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS462975326373', 'Kathleen Morales', 0, '+81 74-797-7221', 2, '367292833340637549', '日本ならし大和郡山市本庄町一丁目1番10号26階', '1991-09-16', 0, 0, 'morales92', '2020-01-10', 'kmor', '2010-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS764363002841', '叶云熙', 1, '+81 52-873-6731', 3, '900158028314177964', 'Rm. 4, 2 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-10-11', 0, 0, 'yy4', '2009-12-22', 'yeyunxi', '2007-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS231312298869', 'Julie Lewis', 1, '+1 213-191-3438', 0, '217744428509220153', '893 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1986-07-28', 0, 0, 'jl109', '2015-05-09', 'lewis513', '2021-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS244931978402', '苗裕玲', 1, '+81 80-8220-6475', 0, '891785956112643330', '27-kai, 2-1-19 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-05-23', 0, 0, 'miyuli', '2021-02-27', 'miu905', '2001-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS766312138944', '沈子韬', 0, '+86 139-2942-9621', 2, '785172807303732375', 'No.16 building, 673 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-03-12', 0, 0, 'zitaoshen02', '2002-01-30', 'shen707', '2009-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS499830935342', '何發', 0, '+81 66-046-3321', 1, '401080360239956705', '日本おおさかし近江堂一丁目7番6号47号室', '1988-06-07', 0, 0, 'hofat302', '2018-10-28', 'hofat', '2019-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS609033906018', 'Micheal Cruz', 1, '+81 52-197-0936', 1, '964443129575524558', '日本なごやし北区楠味鋺三丁目80番10号50号室', '1997-01-06', 0, 0, 'cruzmi', '2005-11-30', 'cruz9', '2013-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS970058413225', 'Marilyn Rose', 0, '+86 755-246-8179', 0, '120771188856279506', '中国深圳福田区景田东一街752号27栋', '1992-09-02', 0, 0, 'rose1', '2021-10-19', 'marilynrose', '2010-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS552424768643', 'Tracy Henry', 0, '+86 10-547-4562', 3, '702616044838570570', 'Room 23, CR Building, 648 Sanlitun Road, Chaoyang District, Beijing, China', '1994-11-29', 0, 0, 'henrytracy1', '2006-10-16', 'tracy6', '2004-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS186864590478', 'Edward Jordan', 1, '+81 90-6944-6435', 4, '050503797309276483', '22-kai, 1-6-4, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1991-07-01', 0, 0, 'jordae3', '2005-01-07', 'jordane', '2014-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS398895543963', 'Lillian Chavez', 1, '+81 80-2879-8973', 2, '454290769287904810', '日本札幌清田区真栄四条五丁目19番19号6階', '1996-11-07', 0, 0, 'cli90', '2017-05-07', 'lillchavez', '2009-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS071983603528', '谭晓明', 0, '+86 28-1150-6087', 3, '878492690954143293', '中国成都市成华区二仙桥东三路116号5栋', '1985-01-21', 0, 0, 'tanxiaoming422', '2011-08-25', 'xiaomingt96', '2005-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS952336413999', '高橋瑛太', 1, '+86 192-4238-4304', 2, '573825546339816995', 'Room 21, 747 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1992-11-18', 0, 0, 'taeit', '2012-10-08', 'eitatakah', '2007-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS799666307483', 'Bernard Hayes', 0, '+81 70-7995-1744', 1, '722892973004081091', '日本札幌白石区菊水三条五丁目2番3号1階', '1995-11-16', 0, 0, 'bernardh', '2018-01-19', 'hayesbe91', '2019-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS259647202737', '斎藤聖子', 1, '+1 614-281-9246', 3, '300785723885750719', '449 Wicklow Road Apartment 17, Columbus, GA 43204, United States', '1995-07-19', 0, 0, 'saitose', '2015-12-18', 'saito4', '2004-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS162021237331', '曹致远', 0, '+44 (1223) 61 9192', 3, '603212275446929862', 'Flat 48, 584 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1995-11-22', 0, 0, 'caozhiyuan1977', '2012-01-12', 'caozhiyuan309', '2019-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS202404461670', '钟子韬', 0, '+86 168-0477-8177', 1, '610577804817443831', '中国广州市越秀区中山二路970号37栋', '1995-01-23', 0, 0, 'zhonzita', '2015-05-10', 'zhongzit9', '2013-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS967139069276', '韓世榮', 0, '+44 (1223) 12 0673', 4, '421957509011818445', 'Unit 48, Oxford Eco Centre, 590 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1998-01-23', 0, 0, 'saiwinghan', '2005-01-19', 'han723', '2018-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS877387279550', '成德華', 0, '+86 142-1210-9878', 1, '076198247662337134', 'No.48 building, 423 Sanlitun Road, Chaoyang District, Beijing, China', '1996-04-25', 0, 0, 'twshi408', '2013-09-23', 'takwah7', '2008-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS309668012701', 'Grace Owens', 0, '+81 80-9274-1579', 0, '301256371280862521', '日本札幌豊平区豊平三条十三丁目3番6号49階', '1992-01-12', 0, 0, 'owgrace', '2000-10-09', 'graceowens', '2021-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS865103534616', '房青雲', 0, '+86 168-6480-6264', 1, '485195600889515252', '中国东莞东泰五街325号43栋', '1996-07-15', 0, 0, 'chingwan515', '2007-02-12', 'chingwan10', '2010-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS903008376672', '佐野美羽', 0, '+44 7196 105452', 2, '676470046057540294', 'Flat 11, 821 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1996-01-27', 0, 0, 'miusano', '2006-04-10', 'sanm', '2011-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS363543579721', '車俊宇', 0, '+81 66-650-4878', 3, '442764885829267971', '日本おおさかし東住吉区東田辺三丁目27番16号19階', '1987-04-14', 0, 0, 'chunyuch', '2001-06-19', 'ccy', '2010-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS790318165568', 'Clifford Vargas', 0, '+44 (1223) 17 8097', 1, '070085096288745972', 'Block 21, 28 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1994-05-16', 0, 0, 'cliffordv', '2005-12-17', 'vargas2', '2019-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS771839062279', 'Kim Cox', 0, '+81 11-577-2742', 0, '350567494370455471', '日本札幌白石区菊水三条五丁目4番7号14階', '1991-03-19', 0, 0, 'cox222', '2006-09-12', 'kimcox', '2007-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS863188735893', '原田陽菜', 0, '+1 213-391-5832', 2, '133528405063459205', '224 Alameda Street Apt 14, Los Angeles, CA 90002, United States', '1996-01-02', 0, 0, 'hharada', '2000-05-24', 'hinaharad', '2010-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS914992555144', '胡國榮', 0, '+44 7222 040640', 3, '854128014281239226', 'Flat 18, 535 Hanover St, Liverpool, L1 4AF, United Kingdom', '1997-01-04', 0, 0, 'kwokwing1947', '2009-09-27', 'wukwokw1001', '2006-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS706973314155', '黄秀英', 0, '+81 52-240-5724', 2, '017136344616674500', '7-kai, 16 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-03-09', 0, 0, 'huangx', '2017-10-19', 'hux', '2009-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS806170228602', '马安琪', 0, '+86 179-4330-8647', 1, '969950568101093210', '42F, 376 Xiaoping E Rd, Baiyun , Guangzhou, China', '1992-05-26', 0, 0, 'maanqi51', '2016-06-02', 'anqma', '2018-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS275138055001', '羅國榮', 1, '+1 614-275-4903', 2, '612100260563585827', '410 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1996-06-11', 0, 0, 'kwokwinglo', '2020-04-22', 'kwokwinglo', '2003-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS324504355421', '長谷川陽太', 1, '+86 187-1015-0865', 2, '182926747128683965', '中国成都市成华区玉双路6号106号21栋', '1985-06-14', 0, 0, 'yotahas', '2004-08-30', 'hasegawa1011', '2021-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS078061506940', 'Ellen Lee', 1, '+81 90-9085-5387', 3, '775651789749687190', '日本なごやし熱田区千年二丁目5番4号13階', '1987-08-05', 0, 0, 'lee64', '2008-01-11', 'leeellen1', '2008-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS946954380690', '中川美緒', 1, '+81 3-3306-0408', 2, '012786132634472200', '日本東京中央区銀座三丁目12番1号4階', '1988-02-16', 0, 0, 'miona', '2020-05-01', 'mio56', '2013-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS394384495930', '田中舞', 0, '+81 3-0992-7218', 2, '886149821693609371', '日本東京品川区東五反田五丁目2番17号35階', '1989-12-18', 0, 0, 'tmai86', '2010-04-28', 'maitanaka1', '2009-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS906330795876', 'Gladys Moreno', 0, '+44 (1223) 68 0238', 0, '202682047999358943', 'Block 8, 549 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1985-11-10', 0, 0, 'morenoglady', '2012-06-10', 'gladys906', '2018-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS895434312029', '姚杰宏', 1, '+1 718-811-1702', 2, '992242064373220530', '232 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1994-10-25', 0, 0, 'jiehongyao8', '2010-12-17', 'yjiehong215', '2006-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS768317591821', 'Christina Nelson', 1, '+44 7334 376236', 2, '369926922754128372', 'No.38 Main building, 717 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1995-02-06', 0, 0, 'chrisnelson86', '2017-01-18', 'nec1212', '2011-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS025112890442', 'Brenda Moore', 1, '+86 10-3319-2802', 0, '440906086000923358', '中国北京市海淀区清河中街68号642号38栋', '1995-03-10', 0, 0, 'mbrend', '2000-09-14', 'brenda10', '2014-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS096795668447', '盧慧儀', 1, '+86 177-2890-8970', 1, '703272631902701696', 'Room 18, CR Building, 599 Jiangnan West Road, Haizhu District, Guangzhou, China', '1994-08-20', 0, 0, 'lowy621', '2009-04-16', 'lowy', '2005-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS570819384578', '姜學友', 1, '+1 312-773-3920', 1, '267546535059956419', '374 Pedway Apartment 19, Chicago, IL 60601, United States', '1998-08-03', 0, 0, 'hychan', '2004-01-20', 'hyc127', '2019-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS104639532466', '蔣榮發', 1, '+86 760-183-5638', 2, '493788414538314980', '5F, 81 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1985-12-31', 0, 0, 'wingfatchia', '2003-09-23', 'chiangwingfat815', '2006-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS141887228775', '郭頴思', 1, '+81 90-9831-0567', 1, '731295211304904329', 'Rm. 28, 1-5-4, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1993-12-22', 0, 0, 'kwokws', '2001-03-27', 'wingszekwok', '2013-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS292379462248', 'April Taylor', 1, '+81 74-473-1181', 0, '338731344674094149', '33-kai, 3-9-19 Gakuenminami, Nara, Japan', '1987-12-04', 0, 0, 'tapril', '2016-11-28', 'taylorap', '2022-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS715865743877', '竹内蓮', 0, '+86 20-6160-3735', 3, '380440401727004972', 'No.41 building, 907 Jiangnan West Road, Haizhu District, Guangzhou, China', '1994-11-15', 0, 0, 'tren', '2020-01-24', 'takere1', '2020-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS833905226989', '千葉葵', 0, '+1 213-373-2784', 1, '064317026584303188', '228 Sky Way Suite 2, Los Angeles, CA 90043, United States', '1997-07-22', 0, 0, 'aochiba', '2007-05-13', 'chao83', '2011-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS711150682042', '田國明', 1, '+81 66-943-3673', 3, '782977520933437905', '日本おおさかし平野区加美東四丁目9番19号41号室', '1998-01-23', 0, 0, 'kwokming3', '2007-02-04', 'kwokmtin', '2008-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS795866812344', '千葉樹', 0, '+86 755-7587-7342', 3, '690539025932209579', '中国深圳罗湖区清水河一路897号13楼', '1993-05-31', 0, 0, 'chibaitsuk', '2003-03-04', 'chibaitsuki', '2018-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS120490056441', '甘梓晴', 1, '+44 (1223) 53 7918', 4, '959405990083992602', 'No.50 Main building, 522 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1993-09-30', 0, 0, 'katszching8', '2008-01-20', 'tckam', '2013-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS141742925018', '佐野陸', 1, '+1 212-257-5175', 1, '303809808490714255', '446 Wooster Street 3rd Floor, New York, NY 10012, United States', '1997-04-12', 0, 0, 'rikusano2', '2001-02-09', 'sano7', '2008-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS600177800803', '佐野明菜', 0, '+44 (151) 362 3631', 0, '364534274380530191', 'Flat 42, 855 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1994-11-21', 0, 0, 'akinas', '2008-09-25', 'akisan', '2002-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS086257918969', '廖俊宇', 0, '+86 143-4093-7290', 2, '483392870792285797', 'No.46 building, 36 028 County Rd, Yanqing District, Beijing, China', '1996-09-22', 0, 0, 'liaochu', '2008-10-31', 'cyliao', '2000-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS396267566750', '小島凛', 0, '+81 80-8358-5415', 4, '374299050261077876', '日本東京港区東新橋一丁目5番10号22階', '1990-10-20', 0, 0, 'rinkoj', '2001-01-14', 'rink', '2006-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS578682062689', 'Pauline Rose', 0, '+44 5643 261572', 2, '097159317738888105', 'Block 7, 638 Park End St, Oxford, OX1 1JD, United Kingdom', '1999-02-20', 0, 0, 'paulinerose3', '2009-08-10', 'pauline10', '2006-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS338964088202', '萬家明', 1, '+44 (151) 606 4685', 3, '873117457318115971', 'Block 33, 46 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1985-04-12', 0, 0, 'kmmeng', '2019-09-06', 'kaming65', '2004-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS197219531247', 'Rose Gardner', 0, '+81 74-916-6208', 0, '952946094551494988', '44F, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1997-08-29', 0, 0, 'rosegardner', '2001-06-08', 'rosegardner', '2002-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS709701262485', '吳國明', 1, '+44 (151) 988 3079', 0, '084878994137113790', 'Block 46, 543 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1998-04-15', 0, 0, 'kwokming1956', '2010-05-27', 'ngkwokming3', '2015-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS525400592772', 'Wanda Gomez', 1, '+86 755-474-5898', 1, '991984499217628570', 'No.14 building, 552 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1995-04-24', 0, 0, 'wgomez', '2004-10-12', 'gwanda', '2021-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS173570808331', '新井悠人', 0, '+86 132-1830-4686', 0, '367135391216068444', '中国广州市白云区机场路棠苑街五巷818号华润大厦28室', '1988-03-02', 0, 0, 'araiyut', '2013-06-03', 'aryuto', '2015-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS695377256167', '斎藤陸', 1, '+86 755-048-9983', 2, '782082777045867159', '中国深圳罗湖区蔡屋围深南东路238号14楼', '1993-12-06', 0, 0, 'riksaito', '2021-10-18', 'srik', '2002-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS674722966032', '田岚', 0, '+86 140-0303-1104', 4, '620407763401970305', '中国中山紫马岭商圈中山五路880号华润大厦42室', '1992-03-13', 0, 0, 'lantian812', '2012-02-14', 'tilan', '2004-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS025240869931', '廖璐', 0, '+81 80-7116-4216', 2, '246954043711221999', '22F, 9 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-10-17', 0, 0, 'liaolu', '2000-12-08', 'lialu', '2013-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS364673295036', '田曉彤', 0, '+1 718-949-2636', 4, '167372039681124159', '402 Flatbush Ave Apt 22, Brooklyn, NY 11225, United States', '1993-03-18', 0, 0, 'hiututin9', '2015-12-04', 'hiutungtin', '2000-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS374900226942', 'Jeremy Munoz', 1, '+86 160-2388-6453', 2, '760932696926446521', 'No.11 building, 143 Huanqu South Street 2nd Alley, Dongguan, China', '1996-08-13', 0, 0, 'munozjeremy', '2017-06-26', 'jeremym', '2017-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS257882940413', '野口葉月', 0, '+1 718-931-3611', 1, '152223133411447202', '695 Nostrand Ave Apartment 41, Brooklyn, NY 11216, United States', '1995-05-21', 0, 0, 'hazun', '2016-06-13', 'hazunoguchi', '2016-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS053246913866', '方麗欣', 0, '+86 143-5514-0773', 0, '380762189249483347', '中国北京市西城区复兴门内大街230号50室', '1993-03-11', 0, 0, 'folai717', '2019-10-04', 'laiyf1976', '2010-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS350047632196', '中島陽太', 1, '+86 20-975-9119', 2, '307788524594628474', '中国广州市海珠区江南西路521号32室', '1996-03-07', 0, 0, 'nakajimayota1222', '2014-05-01', 'nakyot', '2003-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS681230042195', 'Jeffery Kelly', 1, '+86 21-3284-6886', 4, '876108004484903543', 'No.25 building, 323 Ganlan Rd, Pudong, Shanghai, China', '1991-01-13', 0, 0, 'kellyjeffery604', '2020-07-24', 'kellyjeffery', '2014-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS221797630992', '曹秀英', 0, '+81 52-626-1614', 2, '945479559299620569', 'Rm. 22, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1996-03-03', 0, 0, 'xiuying506', '2016-07-27', 'xiuyingcao', '2016-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS468044550123', 'Irene Hall', 0, '+86 170-1732-0111', 1, '079265097285169351', 'Room 15, 166 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1998-09-06', 0, 0, 'irenhall', '2003-09-25', 'ihal', '2000-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS736188647047', 'Ricky Schmidt', 1, '+44 (1865) 01 7293', 0, '664983887930386275', 'Flat 10, 855 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1994-07-13', 0, 0, 'rischmidt4', '2011-12-24', 'schmidt1994', '2005-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS190933889401', '中島湊', 1, '+1 312-330-5019', 4, '144414338364582053', '597 North Michigan Ave Apt 42, Chicago, IL 60611, United States', '1990-10-16', 0, 0, 'nakajima5', '2008-04-06', 'nakajimam', '2003-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS079445359231', '中野瑛太', 1, '+86 769-1848-5460', 3, '785631987102362948', '中国东莞坑美十五巷305号38楼', '1989-10-11', 0, 0, 'eitanakano318', '2005-06-30', 'nakanoei', '2001-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS659603114668', '尹心穎', 0, '+81 66-937-0491', 1, '330856273989974247', '日本おおさかし西成区出城一丁目1番16号41階', '1989-07-12', 0, 0, 'yin9', '2011-08-20', 'swyin06', '2013-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS351271464354', 'Laura Hayes', 0, '+86 20-459-8519', 2, '291307257185861368', '中国广州市天河区天河路334号35栋', '1995-10-13', 0, 0, 'hayeslaura1031', '2010-06-10', 'hl6', '2001-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS410101129174', 'Katherine Robertson', 0, '+81 3-0448-8269', 3, '093968972712350711', '日本東京中央区銀座三丁目12番16号17階', '1992-10-30', 0, 0, 'robertson5', '2011-01-24', 'robkatherine08', '2019-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS314113775073', '劉安娜', 1, '+81 90-4739-4665', 3, '090945998935047344', '日本ならし大和郡山市本庄町一丁目1番1号39階', '1996-02-28', 0, 0, 'onna405', '2013-08-17', 'lauon', '2000-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS389431126532', '向梓軒', 1, '+86 136-0122-2671', 2, '375276449173929473', '49F, 825 Binchuan Rd, Minhang District, Shanghai, China', '1989-12-26', 0, 0, 'tszhinheung', '2013-07-03', 'heutszhin', '2018-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS082111348544', 'Cynthia Grant', 1, '+44 7651 413815', 1, '628605098042690007', 'Flat 14, 710 Sackville St, Manchester, M1 3BB, United Kingdom', '1989-07-05', 0, 0, 'cynthiagrant2', '2015-11-04', 'grancynt', '2008-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS495161975539', '何祖兒', 0, '+86 146-8026-1303', 1, '691010146233358034', '中国东莞坑美十五巷73号1室', '1996-06-18', 0, 0, 'choyeeho63', '2002-11-11', 'ho221', '2004-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS666093067393', '西村美月', 0, '+86 131-9516-5822', 1, '512561255372789412', '中国深圳福田区深南大道446号2楼', '1986-07-06', 0, 0, 'mitsukinishi408', '2003-10-04', 'nishimura906', '2013-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS834377505390', '陶秀英', 0, '+44 7952 663528', 4, '937164386236758828', 'Block 46, 863 Sackville St, Manchester, M1 3BB, United Kingdom', '1996-08-07', 0, 0, 'taoxiuying2', '2014-04-26', 'tao3', '2000-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS763770929807', '许秀英', 0, '+44 7126 895098', 4, '919018093941185973', 'Unit 47, Oxford Eco Centre, 116 Park End St, Oxford, OX1 1JD, United Kingdom', '1992-08-12', 0, 0, 'xiuyingxu', '2007-09-20', 'xiuying302', '2011-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS496231112250', 'Travis Hamilton', 1, '+86 21-1788-5648', 1, '818883259997127155', 'No.36 building, 284 Middle Huaihai Road, Huangpu District, Shanghai, China', '1992-07-31', 0, 0, 'hamiltontra', '2000-12-22', 'hamiltontravi67', '2001-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS191219485460', '阎致远', 1, '+44 (151) 442 0434', 4, '761884275100165567', 'Flat 48, 530 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1990-07-26', 0, 0, 'zhiyuan7', '2008-06-14', 'yazhi', '2019-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS241153119662', '野村陽太', 1, '+1 330-926-1147', 1, '027350824403243686', '377 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1997-01-18', 0, 0, 'nomura2', '2010-10-24', 'yota62', '2020-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS141526152680', 'Mike Evans', 0, '+81 11-994-7215', 1, '813326318217192963', '30-kai, 5-19-11 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1998-08-21', 0, 0, 'mikevan', '2002-10-13', 'mikeevans', '2013-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS207982841304', '田中蒼士', 0, '+81 90-6982-6302', 2, '062634794362772661', '日本東京千代田区丸の内一丁目6番14号47階', '1986-02-17', 0, 0, 'aoshitanaka', '2017-12-13', 'aoshitanaka828', '2010-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS563416478912', '魏璐', 1, '+1 330-264-0393', 3, '445229351011732020', '192 West Market Street Apartment 26, Akron, OH 44333, United States', '1997-05-22', 0, 0, 'luw', '2009-01-14', 'luw', '2009-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS682186884085', '應梓軒', 0, '+44 (1223) 90 0081', 1, '375166140360875410', 'Unit 3, Oxford Eco Centre, 839 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1986-06-10', 0, 0, 'ytszhin', '2014-08-14', 'tszhin1991', '2008-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS430039734900', '福田光', 0, '+81 11-073-5581', 3, '384093932270121839', 'Rm. 27, 5-19-15 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1985-09-01', 0, 0, 'fukudahikaru', '2013-06-07', 'fhi', '2000-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS631599155950', 'Eddie Griffin', 1, '+81 70-6022-8598', 2, '012277386201305646', '50-kai, 3-19-4 Shimizu, Kita Ward, Nagoya, Japan', '1995-10-06', 0, 0, 'griffineddie', '2020-07-01', 'eddiegri', '2020-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS372715567640', '徐詩君', 1, '+81 80-8835-7472', 3, '643757676578089439', '日本ならし学園南三丁目9番11号38階', '1997-07-27', 0, 0, 'tsuisk', '2017-02-16', 'szekwantsui', '2020-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS526922935243', '韩岚', 1, '+1 718-126-0369', 3, '501439702737592088', '417 Flatbush Ave Apartment 48, Brooklyn, NY 11225, United States', '1992-11-11', 0, 0, 'halan', '2020-07-04', 'lanhan116', '2003-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS762359130504', '宣麗欣', 1, '+44 7925 091339', 2, '193587151226069297', 'Unit 34, Oxford Eco Centre, 144 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-08-01', 0, 0, 'hsuanlaiyan', '2006-06-22', 'laiyanhsua', '2020-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS163755926345', 'Debra Murray', 1, '+86 188-9849-9538', 1, '421859888337919315', 'No.3 building, No. 372, Shuangqing Rd, Chenghua District, Chengdu, China', '1987-01-12', 0, 0, 'murdebra', '2018-08-30', 'murrd', '2012-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS295667719512', 'Heather Russell', 0, '+86 28-358-5766', 0, '864052017687636972', '中国成都市成华区玉双路6号271号48栋', '1985-08-02', 0, 0, 'russell413', '2002-08-30', 'heather10', '2012-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS290010757052', '夏晓明', 1, '+1 213-426-1333', 1, '334293634076190009', '775 Alameda Street Apartment 27, Los Angeles, CA 90002, United States', '1988-09-06', 0, 0, 'xia19', '2016-08-07', 'xiaxiaoming7', '2014-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS317878940778', '劉頴璇', 1, '+81 70-0917-0317', 2, '340424416178539998', '日本東京品川区東五反田五丁目2番2号5号室', '1991-07-25', 0, 0, 'wsl', '2000-05-30', 'lauws', '2004-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS722312666570', 'Florence Stephens', 0, '+1 330-412-9163', 2, '519462434026121370', '976 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1998-07-10', 0, 0, 'fstephens', '2017-09-05', 'sflorence', '2013-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS275977073679', '田淑怡', 1, '+86 20-2895-7697', 0, '734872367706074567', '中国广州市白云区小坪东路395号40楼', '1996-06-11', 0, 0, 'sukyeeti', '2006-05-07', 'sukyee531', '2012-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS294725972486', 'Lee Gutierrez', 1, '+81 70-4248-3217', 3, '488279253563634496', '18-kai, 2-5-9 Chitose, Atsuta Ward, Nagoya, Japan', '1998-06-30', 0, 0, 'leegutierrez', '2009-09-18', 'gutierrezlee3', '2006-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS391790200187', 'Alexander Martin', 1, '+44 (161) 670 6510', 3, '286220693295538119', 'Flat 28, 336 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1995-08-16', 0, 0, 'alm1996', '2019-09-29', 'martin62', '2022-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS905759319657', 'Andrew Allen', 0, '+44 5663 162535', 1, '243045527621590517', 'Block 32, 466 Portland St, Manchester, M1 3LA, United Kingdom', '1986-11-27', 0, 0, 'aallen4', '2014-05-15', 'allen1994', '2010-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS659602909105', 'Luis Taylor', 0, '+44 5906 494583', 3, '949404853559994314', 'No.43 Main building, 304 Pollen Street, London, W1S 1NG, United Kingdom', '1998-12-29', 0, 0, 'taylol4', '2006-01-04', 'taylor94', '2004-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS863731841923', 'Bryan Harris', 0, '+81 66-570-0738', 3, '802977628482838267', '46-kai, 1-1-6 Deshiro, Nishinari Ward, Osaka, Japan', '1993-10-04', 0, 0, 'harbr', '2015-06-15', 'brharris', '2014-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS986238476062', '長谷川詩乃', 0, '+81 90-6021-4334', 2, '525735688836687855', '29F, 13-3-10 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-08-07', 0, 0, 'hasegawa5', '2017-09-07', 'shinoha', '2000-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS502825230300', '汪玲玲', 0, '+1 718-051-4677', 1, '836152095193745043', '337 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1988-09-07', 0, 0, 'llwo1123', '2008-11-19', 'linglingwong5', '2002-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS592323944025', 'Ernest Meyer', 0, '+44 5823 261123', 2, '583898127099641187', 'Flat 26, 777 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1988-06-19', 0, 0, 'meyere225', '2015-02-09', 'meyeernest', '2004-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS847712191805', '鄧世榮', 1, '+81 3-9580-9602', 3, '971517115848117340', '30F, 5-2-15 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1997-04-10', 0, 0, 'tang118', '2020-06-04', 'tang10', '2011-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS868148681127', '中村詩乃', 1, '+86 769-227-4721', 1, '931441259812386807', 'No.30 building, 902 Shanhu Rd, Dongguan, China', '1992-04-09', 0, 0, 'shin518', '2000-09-06', 'nakamura2012', '2010-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS130319794743', '曾志遠', 1, '+1 614-069-9459', 1, '132451036635145031', '142 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1986-06-18', 0, 0, 'tsangchiyuen', '2020-07-22', 'tsang4', '2021-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS147989820511', '潘岚', 1, '+81 52-985-2702', 2, '661744681965095759', '日本なごやし守山区瀬古東二丁目171番11号49階', '1997-12-13', 0, 0, 'panla1967', '2018-02-26', 'pl226', '2014-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS074124165709', '田朝偉', 0, '+81 74-686-2677', 1, '545672908039803316', '日本ならし学園南三丁目9番20号30階', '1985-01-11', 0, 0, 'tcw04', '2006-10-11', 'cwt1207', '2018-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS782099280386', '西村絢斗', 0, '+81 52-564-4384', 2, '237527431875634174', '30F, 2-5-1 Chitose, Atsuta Ward, Nagoya, Japan', '1990-07-01', 0, 0, 'an9', '2001-06-03', 'ayatonishimura6', '2009-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS091927992879', '岡田陽菜', 0, '+86 131-4445-2399', 3, '706889430871217562', 'Room 31, 653 028 County Rd, Yanqing District, Beijing, China', '1991-06-19', 0, 0, 'ohi', '2017-03-19', 'ohina', '2018-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS225138167012', '容頴璇', 0, '+81 66-935-8759', 4, '752704411349839276', '22-kai, 4-9-8 Kamihigashi, Hirano Ward, Osaka, Japan', '1996-05-11', 0, 0, 'wsyung', '2016-01-31', 'yungwing518', '2009-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS063681315000', '野村陽菜', 0, '+1 718-158-6577', 0, '616544291780820533', '411 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1994-03-02', 0, 0, 'nhina57', '2014-12-17', 'nhin4', '2009-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS595242831151', '文國權', 1, '+86 146-0511-8004', 0, '768736010310376476', '38F, 431 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1993-04-27', 0, 0, 'mankk', '2015-08-02', 'kwokman', '2019-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS063077822137', '張永權', 1, '+86 142-1132-1143', 3, '538214723727496456', '中国中山乐丰六路38号24栋', '1988-09-05', 0, 0, 'cheungwingkuen', '2001-05-22', 'cheung3', '2002-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS348629904434', '戴榮發', 1, '+86 21-104-9720', 2, '344967705226490194', 'Room 16, 300 Ganlan Rd, Pudong, Shanghai, China', '1993-06-09', 0, 0, 'wingfatdai', '2012-03-15', 'dawingfat', '2019-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS396793451399', '袁惠妹', 0, '+81 11-814-5000', 1, '353792157839450710', '25-kai, 2-1-14 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-01-07', 0, 0, 'yuenhuimei1028', '2012-09-16', 'yuenhm', '2014-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS922375441206', '丁嘉伦', 0, '+86 760-4044-1217', 3, '231433380584299492', '中国中山紫马岭商圈中山五路321号17栋', '1995-01-09', 0, 0, 'ding9', '2000-02-05', 'jialund', '2001-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS777819676609', '大塚大輔', 1, '+1 213-199-1122', 1, '268652007694025947', '33 Wall Street Suite 46, Los Angeles, CA 90003, United States', '1989-11-14', 0, 0, 'otda2', '2003-05-02', 'otsdaisu', '2020-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS566761803386', 'Thelma Jones', 1, '+86 760-269-4829', 4, '547694470416080675', '中国中山天河区大信商圈大信南路118号39栋', '1988-05-21', 0, 0, 'thelmj10', '2011-06-01', 'jonesthelma', '2021-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS328799312671', '馮發', 1, '+81 70-1211-3363', 1, '260326687412771959', '日本おおさかし西成区天神ノ森二丁目1番4号24階', '1989-02-04', 0, 0, 'ff10', '2017-02-06', 'fung5', '2007-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS530922943159', '甘梓軒', 0, '+81 90-1146-3609', 4, '162227856689183882', '日本東京品川区東五反田五丁目2番9号34階', '1987-08-10', 0, 0, 'tszhkam', '2006-06-24', 'kamth', '2015-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS394308159643', '尹安娜', 1, '+86 21-311-5188', 3, '867247208845658923', '中国上海市浦东新区橄榄路538号14栋', '1994-07-07', 0, 0, 'yinonna', '2007-02-20', 'ony5', '2021-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS415155200214', '張慧儀', 0, '+1 330-374-6241', 3, '256272838076442918', '991 West Market Street Apartment 40, Akron, OH 44333, United States', '1997-09-20', 0, 0, 'wacheung', '2006-09-11', 'cheunwy', '2009-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS549743450867', '薛惠敏', 0, '+1 718-352-4203', 1, '392348065256866087', '740 Flatbush Ave Suite 7, Brooklyn, NY 11225, United States', '1998-08-10', 0, 0, 'wmsi1017', '2020-06-12', 'sitwaiman', '2000-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS088289191850', '赵安琪', 0, '+44 5615 772383', 3, '571309251869578915', 'No.43 Main building, 970 Hanover St, Liverpool, L1 4AF, United Kingdom', '1991-07-08', 0, 0, 'zanqi', '2021-10-06', 'zhaoanqi', '2013-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS975229996065', '長谷川瑛太', 1, '+81 52-617-1110', 2, '494315964945897871', '37F, 2-5-14 Chitose, Atsuta Ward, Nagoya, Japan', '1996-08-22', 0, 0, 'ehasegawa3', '2013-02-18', 'hasee', '2019-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS339873518261', 'Sara Diaz', 1, '+81 66-955-0805', 0, '846499393651128394', '36F, 2-1-20 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1998-05-17', 0, 0, 'saradiaz', '2000-08-17', 'diazsar', '2015-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS407685207306', '蔡子异', 1, '+86 190-8398-3039', 2, '216911243757215545', 'Room 30, CR Building, 20 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1987-03-23', 0, 0, 'ziyic', '2003-10-04', 'cai503', '2018-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS935429186555', '大野大輔', 1, '+86 149-9199-0903', 3, '502725786305533138', '中国北京市朝阳区三里屯路37号华润大厦26室', '1985-03-10', 0, 0, 'daison4', '2000-11-11', 'daono208', '2000-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS346048530297', 'Ernest Spencer', 0, '+81 70-1247-7192', 2, '208776864351426169', '19-kai, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-11-28', 0, 0, 'ernestspe', '2021-07-05', 'ernestspencer67', '2002-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS001755836241', '崔致远', 1, '+81 3-0555-4814', 2, '532595381299070533', 'Rm. 24, 3-15-6 Ginza, Chuo-ku, Tokyo, Japan', '1993-03-13', 0, 0, 'cui115', '2017-06-18', 'czhiyuan815', '2014-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS971486155479', '伍杰倫', 0, '+86 145-3064-5484', 2, '938291552145060127', '中国中山乐丰六路494号34楼', '1987-06-20', 0, 0, 'chiehlunng', '2001-01-27', 'clng', '2019-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS059791570588', '馮慧嫻', 0, '+44 (151) 010 5431', 3, '060448420816683914', 'Unit 24, Oxford Eco Centre, 796 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1989-02-25', 0, 0, 'wafung', '2003-04-03', 'whfung99', '2015-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS151102468893', '罗杰宏', 0, '+86 182-7718-1540', 4, '506751844877805804', '中国深圳龙岗区学园一巷78号35号楼', '1989-11-21', 0, 0, 'luo5', '2009-11-10', 'jiehong229', '2013-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS026265895608', '劉天榮', 1, '+44 7293 482380', 3, '233297501466768186', 'Block 41, 550 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1995-07-22', 0, 0, 'lautinwing', '2012-08-23', 'twla514', '2008-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS922576366625', 'Cheryl Snyder', 0, '+81 70-0974-3232', 3, '188832477590678659', '18-kai, 3-9-13 Gakuenminami, Nara, Japan', '1988-02-24', 0, 0, 'csnyder', '2009-04-28', 'cherysnyder', '2013-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS642414722936', '太田舞', 0, '+86 28-081-8907', 4, '040287492139897600', '3F, 539 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1987-12-14', 0, 0, 'mao1973', '2000-12-04', 'otmai', '2013-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS246268507042', '宮本愛梨', 1, '+86 159-4308-4331', 1, '583885690681116929', '中国成都市成华区双庆路734号30楼', '1988-04-18', 0, 0, 'mairi', '2005-01-26', 'airi02', '2021-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS394950635543', '袁惠妹', 0, '+44 (161) 613 7387', 3, '531158649424439386', 'No.19 Main building, 577 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1997-08-19', 0, 0, 'yuenhuimei4', '2017-03-30', 'yuehui', '2005-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS127753741154', '黄致远', 1, '+81 70-5881-1926', 1, '463172904494218508', '日本札幌豊平区豊平三条十三丁目3番11号14号室', '1992-08-18', 0, 0, 'huzhi9', '2006-11-22', 'hzhiyuan80', '2008-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS727362910815', '黃朝偉', 0, '+86 190-4446-7038', 1, '497079241286487170', '13F, 713 Dongtai 5th St, Dongguan, China', '1986-09-30', 0, 0, 'wongchiuwai', '2005-03-18', 'wchiuwai901', '2005-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS968750349497', '官朝偉', 0, '+81 11-167-1790', 2, '716219080408960146', '4-kai, 5-19-1 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1996-01-28', 0, 0, 'kchiuwai', '2017-04-13', 'koocw', '2020-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS386229621483', '柴田紗良', 0, '+44 5431 868519', 3, '627795807782223573', 'Unit 44, Oxford Eco Centre, 222 Redfern St, Liverpool, L20 8JB, United Kingdom', '1995-04-06', 0, 0, 'sarashibata', '2016-05-26', 'shibatasara', '2021-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS724385249863', '岩崎大地', 0, '+86 182-6332-1952', 1, '548002758695138651', '中国东莞珊瑚路832号31楼', '1988-07-19', 0, 0, 'daichi41', '2012-07-30', 'idaic', '2009-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS468231068020', '劉永權', 1, '+1 614-556-5815', 0, '354946107554577400', '569 Wicklow Road Apartment 45, Columbus, GA 43204, United States', '1996-07-30', 0, 0, 'lau00', '2015-08-09', 'wingkuenlau', '2005-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS040285293967', '苗淑怡', 0, '+81 66-638-6223', 3, '002789150733186602', '15-kai, 4-9-14 Kamihigashi, Hirano Ward, Osaka, Japan', '1988-11-20', 0, 0, 'miu201', '2000-05-18', 'sukyeem', '2012-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS998484411132', '顾震南', 0, '+81 11-251-7820', 1, '938964239312266843', '45F, 5-19-19 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-12-26', 0, 0, 'zhengu', '2012-11-06', 'gzhennan10', '2014-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS060841497645', '佐野美月', 0, '+81 3-4154-0087', 1, '035187757916900554', '日本東京中央区銀座三丁目12番9号42号室', '1985-02-06', 0, 0, 'mitsuki1942', '2001-04-29', 'mitsukisano', '2005-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS562866618996', 'Hazel Alvarez', 0, '+44 7984 437363', 1, '347580951502699826', 'No.39 Main building, 624 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1987-09-18', 0, 0, 'hazelal5', '2000-03-30', 'alvarez93', '2009-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS586819955605', '向安琪', 0, '+81 70-6606-5003', 1, '524096297530583399', '31-kai, 1-7-14 Saidaiji Akodacho, Nara, Japan', '1988-03-15', 0, 0, 'anqix', '2017-08-08', 'xia', '2019-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS505300215533', '郭睿', 1, '+1 718-158-8442', 1, '088978006938548923', '706 Nostrand Ave Apt 28, Brooklyn, NY 11216, United States', '1988-03-28', 0, 0, 'rgu', '2016-04-09', 'rui4', '2015-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS351368603547', '坂本光', 0, '+86 196-8781-5290', 2, '782605325346916133', '中国北京市海淀区清河中街68号461号41栋', '1985-03-31', 0, 0, 'shi', '2005-05-08', 'sakamotoh43', '2021-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS977357639520', '池田陽菜', 0, '+44 5987 255199', 2, '027748977260083089', 'Flat 4, 896 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1994-09-11', 0, 0, 'hinikeda1107', '2000-05-02', 'hikeda', '2013-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS897740525270', '蔡志明', 1, '+1 330-167-9347', 0, '238528176881579238', '440 Ridgewood Road Apartment 41, Akron, OH 44321, United States', '1996-11-30', 0, 0, 'chimichoi', '2018-10-03', 'ccm', '2000-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS410001073303', 'Rebecca Barnes', 0, '+1 614-010-5416', 3, '034508590876806192', '645 Tremont Road Apt 28, Columbus, GA 43212, United States', '1996-02-10', 0, 0, 'rebecca207', '2015-12-17', 'rebebarnes', '2006-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS385438376915', '田中美月', 1, '+44 (151) 572 9123', 4, '058591190556840019', 'Unit 31, Oxford Eco Centre, 324 Redfern St, Liverpool, L20 8JB, United Kingdom', '1985-10-12', 0, 0, 'mt6', '2000-01-20', 'tmitsuki3', '2005-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS511609300339', '陶詩涵', 1, '+86 21-8693-9095', 1, '945144511753654314', '中国上海市闵行区宾川路924号22楼', '1992-03-13', 0, 0, 'stao42', '2011-07-05', 'shihan2', '2018-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS468654502757', '邵秀英', 1, '+86 186-5971-2141', 0, '802910155201232316', '中国北京市西城区复兴门内大街982号21栋', '1993-02-09', 0, 0, 'shaoxi', '2020-10-05', 'sxiuy', '2010-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS158233150936', '徐德華', 1, '+81 11-130-5713', 3, '658870975115913017', '日本札幌清田区真栄四条五丁目19番9号11号室', '1986-09-12', 0, 0, 'twtsui', '2011-02-07', 'twtsui92', '2018-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS136949471998', 'Troy Grant', 0, '+1 312-168-5338', 3, '915011743593494366', '23 Pedway Apt 49, Chicago, IL 60601, United States', '1994-03-07', 0, 0, 'troy1985', '2009-06-24', 'troy9', '2018-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS561378532999', '原拓哉', 0, '+44 7055 211240', 4, '292456576795857159', 'Flat 41, 653 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1990-01-09', 0, 0, 'thara', '2002-04-15', 'haratakuya', '2008-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS211935019005', '任青雲', 0, '+86 755-745-9772', 2, '664363121973835149', '中国深圳罗湖区蔡屋围深南东路451号32楼', '1995-10-06', 0, 0, 'yamchingwan9', '2008-11-01', 'cwyam', '2016-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS802943900507', '郭家文', 1, '+81 11-290-8660', 3, '974202958475217789', '16-kai, 2-1-12 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1992-06-23', 0, 0, 'kamankwok1991', '2020-12-02', 'kwokkaman', '2002-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS154747412605', '钟致远', 1, '+1 312-307-0870', 2, '970399610321639457', '833 Rush Street Apt 8, Chicago, IL 60611, United States', '1985-12-09', 0, 0, 'zhong2007', '2016-04-28', 'zhiyuz', '2001-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS324731666043', '叶致远', 1, '+44 (1223) 54 5010', 3, '664130717240407393', 'Flat 7, 769 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1987-04-03', 0, 0, 'zye10', '2002-04-08', 'ye1971', '2006-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS462649524537', '斎藤涼太', 1, '+81 70-6636-9465', 3, '793378849150250819', '日本おおさかし平野区加美東四丁目9番19号44号室', '1985-04-04', 0, 0, 'ryotasaito1207', '2001-12-22', 'sryota1985', '2006-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS913433467631', '近藤明菜', 1, '+44 5262 047375', 1, '608961556574156914', 'Flat 13, 929 Mosley St, Manchester, M2 3AQ, United Kingdom', '1986-12-07', 0, 0, 'kondoa', '2020-09-02', 'akina63', '2017-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS738682094681', '池田悠人', 1, '+81 70-9712-7576', 1, '967827195805715697', '21F, 6-1-1, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-10-04', 0, 0, 'yutoike', '2004-09-23', 'yike', '2002-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS552798636908', '楊慧珊', 1, '+81 70-0190-0937', 1, '964041946226116569', 'Rm. 22, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1997-10-15', 0, 0, 'yeungwaisan', '2006-05-13', 'wsy', '2009-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS312353059334', 'Vincent Henderson', 0, '+86 760-921-3302', 3, '989636951231811019', 'Room 19, CR Building, 489 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1991-07-03', 0, 0, 'vhen', '2006-09-20', 'hendersonvince6', '2011-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS328771774846', '山田大地', 1, '+86 760-6857-4386', 1, '053261644066581494', '中国中山紫马岭商圈中山五路490号44室', '1993-12-17', 0, 0, 'yamadadaichi', '2004-08-25', 'dyamada', '2009-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS488245762713', '孙宇宁', 0, '+81 11-351-2534', 2, '930977155661230316', '日本札幌白石区菊水三条五丁目4番19号9階', '1996-10-10', 0, 0, 'yuningsu', '2010-01-30', 'yuning1997', '2018-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS325172525778', 'Bobby Stone', 1, '+81 70-2854-8949', 2, '340917538820050886', '3-kai, 3-15-16 Ginza, Chuo-ku, Tokyo, Japan', '1993-10-26', 0, 0, 'bst1', '2019-11-13', 'sbobby', '2001-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS829637591020', '谭睿', 1, '+86 20-016-7173', 0, '688430639408886285', '中国广州市白云区小坪东路26号华润大厦42室', '1985-03-28', 0, 0, 'tan620', '2014-07-05', 'tan2', '2018-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS443082646929', '蒋云熙', 0, '+86 132-8573-7255', 1, '693509294776816159', 'Room 28, 768 Kengmei 15th Alley, Dongguan, China', '1998-05-21', 0, 0, 'yunxijiang2', '2003-10-25', 'yunxijian', '2000-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS498835792341', 'Marilyn Ramirez', 1, '+81 90-3145-2542', 3, '819558654492729142', '37-kai, 2-3-19 Yoyogi, Shibuya-ku, Tokyo, Japan', '1988-03-16', 0, 0, 'ramirez45', '2020-04-30', 'marilramir1976', '2019-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS960016799504', '増田樹', 0, '+86 130-8378-5761', 3, '832843625470233482', '20F, No. 225, Shuangqing Rd, Chenghua District, Chengdu, China', '1993-03-12', 0, 0, 'itmasuda1103', '2005-06-24', 'itsuki803', '2012-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS553575570704', 'Michelle Olson', 0, '+81 80-7659-8766', 2, '352964636026341342', '日本なごやし熱田区千年二丁目5番20号41号室', '1992-10-07', 0, 0, 'micholson', '2000-04-04', 'olsonmiche', '2015-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS075290332661', 'Maria Mcdonald', 0, '+81 80-8266-8348', 3, '820534568609853518', '27F, 1-7-7 Omido, Higashiosaka, Osaka, Japan', '1988-11-14', 0, 0, 'mcdonaldmar13', '2006-12-14', 'mcdonald11', '2018-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS798080383352', 'Betty Spencer', 1, '+81 52-338-1481', 2, '196279030464717043', '34F, 3-19-5 Shimizu, Kita Ward, Nagoya, Japan', '1995-09-24', 0, 0, 'betty1013', '2010-10-14', 'betty1969', '2018-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS445333452530', '西村光莉', 1, '+86 769-980-8138', 0, '046641873532697122', 'Room 49, CR Building, 844 Shanhu Rd, Dongguan, China', '1998-03-04', 0, 0, 'nishimurah', '2005-06-08', 'hikari3', '2019-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS039748292624', 'Sarah Brooks', 1, '+86 143-1135-9280', 4, '550790893194501950', '中国上海市浦东新区健祥路704号38号楼', '1993-02-06', 0, 0, 'sarahbrooks', '2014-07-27', 'brookssarah9', '2015-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS412756370364', 'Lisa Alexander', 1, '+44 (1865) 13 9416', 1, '843020878807049447', 'Unit 17, Oxford Eco Centre, 79 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1991-12-21', 0, 0, 'lalexander5', '2002-10-23', 'alexanderlis', '2000-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS477001102233', '方世榮', 1, '+86 760-9222-7524', 3, '487785085257933103', '中国中山紫马岭商圈中山五路740号4栋', '1989-06-25', 0, 0, 'fsw49', '2008-06-04', 'fong602', '2018-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS490271938749', 'Chris Gardner', 1, '+81 11-759-7909', 1, '462022980914650764', '32-kai, 5-19-6 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1986-10-24', 0, 0, 'gardnerc708', '2010-09-09', 'garc', '2020-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS698517449527', '呂秀文', 1, '+86 28-7682-3682', 1, '461617965093615300', '中国成都市成华区玉双路6号838号华润大厦21室', '1992-03-21', 0, 0, 'saumanlui', '2008-10-28', 'smlu', '2008-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS211306330982', '郭永發', 1, '+81 90-4230-2671', 2, '524432970358618160', '45F, 1-5-12, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-10-18', 0, 0, 'kwok1998', '2003-10-06', 'kwwingfat', '2015-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS411642576508', '余宇宁', 0, '+81 80-4920-5586', 1, '800016653277783713', '42-kai, 12 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-04-18', 0, 0, 'yuningyu', '2018-05-09', 'yuyu', '2014-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS405356075527', '高木美月', 1, '+81 70-6229-5620', 2, '642899192583563376', '日本なごやし北区楠味鋺三丁目80番10号22階', '1992-05-12', 0, 0, 'mitsukit503', '2012-04-03', 'takmits', '2017-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS215803985119', '原美月', 1, '+86 21-693-6150', 1, '671528913844556194', 'Room 48, CR Building, 153 Middle Huaihai Road, Huangpu District, Shanghai, China', '1991-01-06', 0, 0, 'mh2', '2010-08-28', 'mihara', '2018-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS684807441052', '何子异', 0, '+1 838-604-4122', 4, '240957740473234729', '244 Central Avenue Apt 44, Albany, NY 12206, United States', '1995-03-06', 0, 0, 'hziyi51', '2008-12-18', 'he95', '2003-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS710572287982', 'Rebecca Stevens', 1, '+86 755-8541-4017', 2, '233297372072871856', 'No.10 building, 717 Shennan Ave, Futian District, Shenzhen, China', '1985-02-09', 0, 0, 'rebeccaste6', '2013-01-31', 'stevens03', '2013-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS120528697070', 'Marie Rogers', 0, '+86 195-8202-2875', 1, '589498595463587288', 'Room 2, 201 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1990-04-22', 0, 0, 'marie7', '2016-02-13', 'rogers7', '2003-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS281548360633', '桜井桜', 1, '+86 21-3595-9666', 1, '923847404015898083', '43F, 365 Binchuan Rd, Minhang District, Shanghai, China', '1988-10-31', 0, 0, 'ssakura', '2011-01-03', 'saks', '2017-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS029576489035', 'Kenneth Richardson', 0, '+81 80-5433-0244', 0, '464774941721525103', '日本ならし大和郡山市本庄町一丁目1番19号46階', '1988-07-03', 0, 0, 'richardson1001', '2014-10-17', 'richardsonkenn53', '2014-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS930277814432', '加藤大和', 0, '+1 213-496-0255', 3, '648627390737709992', '191 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1994-06-15', 0, 0, 'ykato1957', '2019-06-26', 'yk6', '2002-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS094993839012', '程杰宏', 0, '+81 52-571-2113', 0, '126993484052830770', '37F, 2-5-15 Chitose, Atsuta Ward, Nagoya, Japan', '1996-12-21', 0, 0, 'chengjieho97', '2001-07-15', 'chejieh', '2006-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS142501621520', 'Shirley Grant', 0, '+44 (151) 646 8305', 1, '187857856992729430', 'Block 15, 740 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-04-28', 0, 0, 'shigrant', '2019-01-31', 'shirleygra', '2008-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS771371281258', '钱震南', 1, '+81 70-9596-8008', 2, '967284025675110942', '日本東京千代田区丸の内一丁目6番5号42階', '1991-07-02', 0, 0, 'qizhennan', '2013-08-31', 'qian101', '2017-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS505034009682', 'Lois Hicks', 0, '+1 212-841-7342', 1, '966086050070251175', '863 Canal Street 3rd Floor, New York, NY 10013, United States', '1997-06-14', 0, 0, 'hicksl1101', '2017-09-16', 'lois5', '2000-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS270350364847', '于云熙', 1, '+1 330-309-6047', 0, '381459174347814552', '474 Collier Road Apartment 37, Akron, OH 44320, United States', '1991-08-07', 0, 0, 'yuyu', '2013-12-04', 'yu1', '2009-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS354610222910', '宋宇宁', 0, '+44 (151) 366 3016', 0, '872265588536058604', 'Block 50, 795 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1988-04-18', 0, 0, 'songyu102', '2012-06-04', 'songyun', '2001-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS185016791321', '村田葵', 0, '+86 10-173-0418', 3, '735690332943344135', '中国北京市西城区复兴门内大街17号31楼', '1987-10-06', 0, 0, 'ma55', '2004-07-28', 'aoim', '2000-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS949169476079', '罗詩涵', 0, '+81 74-530-0863', 0, '862978808700343388', '50F, 3-9-16 Gakuenminami, Nara, Japan', '1992-01-09', 0, 0, 'lshihan', '2017-03-14', 'luoshihan9', '2008-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS450364553451', '青木詩乃', 1, '+81 80-0882-6040', 0, '548385724479589395', '日本なごやし北区清水三丁目19番19号46階', '1987-10-03', 0, 0, 'shaoki6', '2009-10-01', 'shinoa', '2008-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS407079591673', 'Michael Munoz', 0, '+86 174-1555-9885', 3, '622218810308501676', '中国上海市闵行区宾川路254号38室', '1989-03-03', 0, 0, 'munomichael54', '2000-09-13', 'munozm', '2008-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS741603622238', '今井優奈', 0, '+86 141-4888-3907', 1, '732170360049892159', 'No.14 building, 979 Tianhe Road, Tianhe District, Guangzhou, China', '1986-10-12', 0, 0, 'yuna1212', '2002-07-14', 'imai56', '2013-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS409263372591', 'Stephanie Ryan', 0, '+86 769-743-9539', 3, '078092207053476180', '中国东莞环区南街二巷498号14室', '1989-02-02', 0, 0, 'stephaniery6', '2016-12-27', 'stephanier', '2010-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS594431545577', 'Tiffany Ruiz', 0, '+86 179-1047-3043', 2, '181170562486981229', 'Room 25, CR Building, 339 Middle Huaihai Road, Huangpu District, Shanghai, China', '1987-03-18', 0, 0, 'ruiztiffany', '2000-12-22', 'tr9', '2011-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS042679143050', '松田湊', 0, '+1 838-696-5351', 2, '702301436351391801', '43 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1999-01-09', 0, 0, 'minam118', '2001-04-29', 'mmatsu1952', '2012-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS911444523565', '和田紗良', 0, '+81 80-2356-5227', 2, '506976084813065691', '5F, 5-19-8 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1993-06-16', 0, 0, 'wadasar', '2003-11-21', 'sarwa', '2019-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS336433854518', '中山愛梨', 1, '+1 312-677-6612', 1, '057663398084965580', '433 North Michigan Ave Apt 41, Chicago, IL 60611, United States', '1990-10-01', 0, 0, 'nakayama1220', '2001-09-08', 'nairi10', '2021-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS437832060588', '武田凛', 1, '+81 66-500-9034', 2, '785649307912440247', '38F, 3-27-5 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-01-23', 0, 0, 'takedarin6', '2009-03-03', 'takedr', '2005-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS614204074059', '和田翼', 0, '+81 90-5998-9470', 2, '434617327564365319', '40-kai, 18 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-03-12', 0, 0, 'wtsubasa', '2012-09-18', 'tsubasawada', '2016-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS292678851319', '洪天樂', 0, '+81 66-396-2820', 2, '800235739350250799', '日本おおさかし近江堂一丁目7番7号27階', '1993-11-22', 0, 0, 'htl', '2000-10-11', 'huntinlok', '2015-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS580128961264', '野口美羽', 1, '+44 5319 647578', 2, '147689635653794603', 'Block 9, 694 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1990-08-29', 0, 0, 'miu3', '2016-11-08', 'noguchimi', '2014-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS013004793197', 'Joanne Soto', 1, '+44 (1223) 60 2911', 1, '318844650869165161', 'No.11 Main building, 31 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1987-12-16', 0, 0, 'josot', '2009-02-11', 'sj521', '2016-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS842878966858', 'Annie Rodriguez', 0, '+81 74-723-1615', 3, '848105304004613782', '45F, 19 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1992-10-19', 0, 0, 'roann5', '2020-09-08', 'annrodriguez', '2012-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS475003061536', 'Edna Silva', 1, '+86 198-3471-7462', 2, '029403570971287385', '中国北京市西城区西長安街562号39室', '1987-12-18', 0, 0, 'ednasilva712', '2017-12-02', 'esilva', '2003-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS684320250191', 'Bryan Hunt', 1, '+81 66-823-0307', 1, '534604365203374953', '14F, 4-9-1 Kamihigashi, Hirano Ward, Osaka, Japan', '1989-01-06', 0, 0, 'bryahunt', '2016-07-22', 'huntbryan1118', '2013-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS562799618385', '加藤七海', 1, '+81 3-2597-8534', 4, '550894882342184636', '49F, 1-6-15, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1993-04-18', 0, 0, 'nanamika', '2020-05-30', 'nkato', '2007-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS086840752585', '常秀英', 1, '+81 74-493-1539', 3, '669223766547576778', '31-kai, 3-9-6 Gakuenminami, Nara, Japan', '1988-10-20', 0, 0, 'chanxiu', '2012-05-25', 'xiuying7', '2004-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS280839520612', 'Ricky King', 0, '+44 (116) 546 9020', 1, '650248599355412261', 'No.29 Main building, 404 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1987-09-18', 0, 0, 'rickyk10', '2003-04-30', 'kingri', '2019-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS302896285718', '孟震南', 0, '+86 21-8119-3149', 2, '772768840143154430', '中国上海市浦东新区健祥路37号36号楼', '1987-08-12', 0, 0, 'zhennm1', '2007-03-02', 'mengzhennan76', '2011-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS784623991064', 'Susan Chavez', 0, '+86 179-5559-0936', 3, '708289709079836251', '中国北京市東城区東直門內大街116号华润大厦8室', '1986-12-12', 0, 0, 'suchavez', '2009-04-07', 'chavezs', '2020-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS631678847363', 'Jack Romero', 0, '+81 80-1936-3976', 3, '882561869866503794', '日本東京港区東新橋一丁目5番17号28階', '1998-01-09', 0, 0, 'jack6', '2007-04-19', 'jackrome', '2012-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS531063087591', '藤井百花', 1, '+86 170-3020-1053', 3, '074206570560945700', '中国东莞坑美十五巷160号华润大厦39室', '1996-02-25', 0, 0, 'momoka711', '2016-10-02', 'fujiimom', '2004-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS698676373226', '戚俊宇', 0, '+44 (20) 4365 8917', 2, '628806543500613717', 'No.47 Main building, 221 Pollen Street, London, W1S 1NG, United Kingdom', '1985-02-13', 0, 0, 'cychic727', '2001-05-24', 'chuch1', '2008-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS072252672029', '叶秀英', 1, '+1 213-051-0589', 2, '477261688086987901', '54 Grape Street Apartment 3, Los Angeles, CA 90002, United States', '1986-09-03', 0, 0, 'yexiuying', '2002-10-20', 'xiuyiye209', '2021-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS269573996935', 'Melissa Mcdonald', 0, '+86 143-9295-6111', 3, '829635048164231894', '中国北京市海淀区清河中街68号939号19栋', '1994-02-20', 0, 0, 'mcm1120', '2020-03-18', 'mcm2000', '2019-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS088181558314', 'Kyle James', 0, '+1 330-483-6231', 4, '863326246161117919', '650 Ridgewood Road Apartment 19, Akron, OH 44321, United States', '1991-02-03', 0, 0, 'kyle8', '2011-07-08', 'kyle68', '2015-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS608557948464', '萧秀英', 1, '+1 330-932-5816', 4, '152819696678468944', '622 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1993-07-17', 0, 0, 'xixiu10', '2011-12-12', 'xxiao13', '2021-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS243902540957', '于璐', 0, '+81 90-5094-9541', 1, '313729794885261904', 'Rm. 43, 5-19-20 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1998-07-05', 0, 0, 'lyu7', '2016-08-16', 'lu2', '2017-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS078947431427', '张杰宏', 0, '+86 188-6796-1621', 3, '840719479916224062', 'No.29 building, 799 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1985-08-01', 0, 0, 'jiehong49', '2008-07-24', 'zhajiehong5', '2007-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS558326646647', 'Lawrence Hughes', 0, '+81 74-831-6277', 4, '661252279039767154', 'Rm. 28, 6 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1990-05-30', 0, 0, 'hughes43', '2002-03-17', 'lawrencehu71', '2015-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS548216045519', '邹云熙', 0, '+86 21-150-8923', 3, '495971022057946877', '中国上海市浦东新区橄榄路522号26楼', '1986-11-14', 0, 0, 'zou7', '2009-06-13', 'yunxiz', '2019-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS976093213793', '严宇宁', 1, '+86 148-5028-6253', 0, '294140751925580147', 'Room 44, CR Building, 902 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1986-05-01', 0, 0, 'yuningyan', '2001-12-04', 'yyuni218', '2014-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS345237723637', '石井凛', 0, '+1 213-548-8585', 1, '680519160278840094', '431 S Broadway Suite 13, Los Angeles, CA 90015, United States', '1995-07-30', 0, 0, 'ishii9', '2000-01-04', 'rinishii', '2018-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS132055870607', 'Helen Phillips', 0, '+81 52-025-3751', 2, '086356613354189811', '日本なごやし北区清水三丁目19番8号32階', '1992-05-11', 0, 0, 'phillips1', '2018-08-06', 'heleph9', '2006-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS006793349408', 'Julia Foster', 1, '+44 5087 296606', 0, '482555224381039597', 'Unit 26, Oxford Eco Centre, 763 Hanover Street, London, W1S 1YD, United Kingdom', '1985-05-10', 0, 0, 'julia8', '2008-10-05', 'juliafo10', '2020-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS737244793934', '胡思妤', 1, '+86 10-198-2028', 1, '281159968012309969', '中国北京市西城区复兴门内大街377号12栋', '1994-08-13', 0, 0, 'szeyu117', '2007-11-03', 'wu306', '2018-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS494489722291', '武田瑛太', 1, '+1 213-329-9599', 1, '452889877066765511', '43 Figueroa Street Suite 40, Los Angeles, CA 90037, United States', '1995-08-01', 0, 0, 'taeit', '2008-02-13', 'teit', '2010-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS968675247221', 'Melissa Garcia', 1, '+81 74-355-9897', 2, '236364480925052826', '日本ならし西大寺赤田町一丁目7番12号41階', '1991-11-17', 0, 0, 'garciam', '2010-10-14', 'garmelis2008', '2004-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS885407244438', '藍曉彤', 1, '+81 90-5750-4655', 4, '651159857230624638', '5-kai, 1-6-20, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-03-30', 0, 0, 'htlam81', '2014-12-10', 'hiutungla302', '2008-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS698537174582', '罗秀英', 1, '+1 212-062-7505', 4, '682137169582641435', '429 Wooster Street Apt 28, New York, NY 10012, United States', '1989-04-16', 0, 0, 'luo61', '2021-05-18', 'luo4', '2007-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS171549881308', '邱嘉伦', 1, '+44 7064 006161', 3, '445809440973957510', 'Unit 11, Oxford Eco Centre, 850 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1993-09-06', 0, 0, 'jialun714', '2015-11-23', 'jialunq', '2006-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS255738754065', '苗力申', 1, '+81 74-362-4065', 2, '870536661703551081', '13F, 3-9-2 Gakuenminami, Nara, Japan', '1997-01-30', 0, 0, 'lsmiu4', '2008-05-10', 'lsmiu', '2020-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS854851303159', '陶頴璇', 1, '+86 10-740-2590', 4, '870265292678221040', '10F, 288 Sanlitun Road, Chaoyang District, Beijing, China', '1990-08-05', 0, 0, 'tws', '2019-12-27', 'taows', '2002-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS325467285270', '松本陽太', 1, '+44 (121) 876 3068', 0, '075420407177130114', 'Flat 25, 477 New Street, Birmingham, B2 4DB, United Kingdom', '1990-11-06', 0, 0, 'yotamatsumoto', '2011-10-01', 'matsyo2', '2013-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS059054420127', '麥惠妹', 1, '+81 90-7297-9503', 4, '812774029537444163', 'Rm. 38, 3-9-4 Gakuenminami, Nara, Japan', '1990-12-30', 0, 0, 'makhm6', '2010-04-22', 'makhm', '2004-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS640958400119', '袁梓晴', 0, '+81 3-2146-7922', 0, '464346241610841337', '日本東京品川区東五反田五丁目2番15号5階', '1991-02-26', 0, 0, 'yuetc', '2021-08-17', 'tszchingyu', '2021-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS496679952909', '安藤光', 0, '+44 (116) 534 4513', 4, '871362035222374308', 'Unit 20, Oxford Eco Centre, 242 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1998-10-18', 0, 0, 'hikarando', '2009-06-21', 'hikara10', '2016-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS074977858030', '吳梓晴', 0, '+86 760-498-6086', 2, '353627624444509340', 'Room 38, 504 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1997-03-02', 0, 0, 'tszchingng', '2000-04-29', 'ntc', '2000-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS124364134180', '藤井葵', 0, '+81 3-9843-8299', 3, '687387970141810131', '日本東京品川区東五反田五丁目2番19号24階', '1997-09-06', 0, 0, 'aoif', '2015-11-23', 'aoifuj', '2006-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS540449103931', '文慧儀', 0, '+86 10-7178-2999', 0, '326031997839148234', 'No.22 building, 790 FuXingMenNei Street, XiCheng District, Beijing, China', '1987-12-22', 0, 0, 'waiyee6', '2000-12-19', 'waiyee10', '2006-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS406319688986', '张子异', 0, '+86 169-0512-9176', 1, '426127972303683734', '中国北京市延庆区028县道738号42楼', '1998-08-01', 0, 0, 'zzhang', '2008-10-22', 'ziyizh6', '2005-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS367683490544', '山下拓哉', 0, '+1 718-818-3322', 3, '131631455195476432', '916 Nostrand Ave Suite 4, Brooklyn, NY 11216, United States', '1986-04-23', 0, 0, 'yamastaku', '2007-09-12', 'yamashitatakuya59', '2012-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS193712737959', '叶震南', 1, '+81 70-3768-9303', 1, '006139345317407400', 'Rm. 4, 3-27-11 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-03-23', 0, 0, 'zhennanye', '2002-04-10', 'zhennany9', '2018-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS204059114882', 'Linda Cooper', 0, '+86 138-4227-5171', 1, '149633468540336486', '中国成都市成华区玉双路6号968号华润大厦32室', '1993-07-07', 0, 0, 'linda7', '2005-12-25', 'cooperl', '2017-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS063712767602', '金子桜', 1, '+81 80-6717-3799', 1, '538946357458548332', '32-kai, 1-7-3 Saidaiji Akodacho, Nara, Japan', '1998-11-17', 0, 0, 'kansakura94', '2017-01-28', 'kans', '2017-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS946854827100', '毛詩涵', 1, '+86 769-559-2647', 2, '455637803904627369', 'Room 35, CR Building, 9 Dongtai 5th St, Dongguan, China', '1985-04-21', 0, 0, 'mao1', '2002-08-23', 'shihanmao', '2012-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS950494115807', '中村愛梨', 1, '+86 159-6724-0379', 4, '838599731815280188', '中国深圳罗湖区蔡屋围深南东路691号48号楼', '1988-01-10', 0, 0, 'nairi803', '2005-12-03', 'nairi', '2004-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS925847284416', '鈴木光莉', 1, '+81 80-3283-5101', 2, '473673243732789726', '32-kai, 2-5-12 Chitose, Atsuta Ward, Nagoya, Japan', '1994-01-21', 0, 0, 'hikarisuzuki', '2018-12-19', 'hikarsuzuki', '2016-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS577709837645', '高嘉欣', 0, '+44 5347 134694', 1, '006293621064762607', 'Unit 10, Oxford Eco Centre, 548 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1993-12-25', 0, 0, 'kykao', '2015-11-03', 'kaokaryan', '2012-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS361064641282', 'Carlos Bryant', 1, '+1 718-378-4568', 2, '997987826186320768', '992 Columbia St Apt 21, Brooklyn, NY 11231, United States', '1990-11-24', 0, 0, 'cbryant1104', '2018-11-29', 'bryant14', '2014-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS442009803730', '譚家玲', 0, '+81 80-2847-2886', 1, '615025387694404107', 'Rm. 13, 2-1-9 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1994-05-21', 0, 0, 'tam9', '2009-12-16', 'tam10', '2001-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS748650977955', '田中桜', 1, '+81 3-8270-6397', 4, '404660640468285191', '日本東京港区東新橋一丁目5番18号47号室', '1988-05-01', 0, 0, 'tasakura', '2007-01-08', 'sakuratan', '2000-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS665344355601', '王天樂', 1, '+81 90-4266-2482', 0, '101269401915812490', 'Rm. 29, 1-7-15 Omido, Higashiosaka, Osaka, Japan', '1990-08-02', 0, 0, 'tlwong', '2005-10-12', 'wongtinlok2003', '2010-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS371673891614', 'Anna Jenkins', 1, '+81 80-7049-7614', 1, '780165302978147633', '36-kai, 1-5-1, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1992-03-20', 0, 0, 'annjenkins84', '2017-08-08', 'jenkinsanna', '2004-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS219152023218', 'Amber Webb', 1, '+1 614-893-9964', 3, '796692884336749728', '435 Tremont Road Apt 28, Columbus, GA 43212, United States', '1994-01-17', 0, 0, 'webbam4', '2021-06-08', 'webb224', '2004-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS863817210192', '余子韬', 1, '+81 90-7132-0815', 1, '019282923605751507', '日本なごやし北区清水三丁目19番5号36階', '1991-03-15', 0, 0, 'zitaoyu', '2000-01-10', 'yz1209', '2010-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS001497602112', '邱致远', 0, '+44 5928 197120', 3, '642157964529513570', 'No.41 Main building, 596 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-03-13', 0, 0, 'zhiyqi', '2013-11-06', 'zqiu305', '2006-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS635658094881', '江璐', 1, '+1 212-460-7938', 0, '743975374450798610', '109 West Houston Street Apartment 15, New York, NY 10014, United States', '1987-07-06', 0, 0, 'jiangl', '2019-10-04', 'luji60', '2001-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS330086881291', 'Ruth Fernandez', 1, '+86 194-2241-5332', 2, '935394699611339119', '31F, 943 East Wangfujing Street, Dongcheng District , Beijing, China', '1990-08-06', 0, 0, 'ruthf', '2001-04-24', 'fernarut', '2010-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS200788530456', 'Anne Torres', 1, '+81 80-2059-6841', 1, '791749037761254921', '36-kai, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-04-01', 0, 0, 'torresann', '2012-06-10', 'toranne206', '2004-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS156944517165', 'Carlos Moreno', 1, '+86 760-653-0768', 2, '470019267767486967', '中国中山京华商圈华夏街644号49楼', '1992-08-30', 0, 0, 'morenocarlos', '2016-12-12', 'cm419', '2021-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS535564625689', 'Glenn Ford', 0, '+86 166-0728-8882', 0, '537691909345323648', '中国北京市朝阳区三里屯路97号40栋', '1990-01-04', 0, 0, 'fglenn4', '2002-03-03', 'gford5', '2005-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS546078275891', '李家明', 0, '+86 135-6774-9062', 2, '322640368313828749', 'No.1 building, 608 FuXingMenNei Street, XiCheng District, Beijing, China', '1990-08-07', 0, 0, 'leekm', '2018-07-10', 'kmlee', '2015-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS846235340503', '田云熙', 0, '+81 66-556-9949', 1, '588525603864533240', '21F, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1994-05-17', 0, 0, 'yunxi1203', '2014-04-19', 'yunxitia4', '2007-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS868030178736', '陆子异', 0, '+81 70-3647-5657', 2, '875066951529529609', '26-kai, 5-19-7 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1986-06-09', 0, 0, 'ziyilu', '2008-09-26', 'ziyilu1002', '2017-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS353301371419', '成霆鋒', 0, '+86 142-1176-6188', 1, '193967195321306224', 'No.9 building, 554 Huanqu South Street 2nd Alley, Dongguan, China', '1986-01-12', 0, 0, 'shitf', '2008-04-12', 'shing2', '2004-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS533233500695', '渡辺陽菜', 0, '+86 21-4553-8993', 2, '107091203787037071', 'No.40 building, 818 Middle Huaihai Road, Huangpu District, Shanghai, China', '1989-03-12', 0, 0, 'satoh910', '2005-08-09', 'satoh2', '2016-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS976359320355', 'Troy Gordon', 0, '+81 70-7003-6919', 2, '661509824954519200', '41-kai, 3-15-10 Ginza, Chuo-ku, Tokyo, Japan', '1992-12-25', 0, 0, 'tgordon522', '2020-02-17', 'troygordon2', '2004-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS408436410528', 'Josephine Holmes', 0, '+81 80-7542-1119', 0, '255260279933497030', '日本札幌清田区真栄四条五丁目19番20号11階', '1994-06-12', 0, 0, 'hojose', '2014-04-21', 'hjo', '2017-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS411594047171', '長谷川架純', 0, '+81 80-5349-5262', 4, '953210399205508779', 'Rm. 42, 5-4-5 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-03-04', 0, 0, 'kasumihase1021', '2015-02-22', 'kasumi1107', '2012-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS006245551159', '鄭惠妹', 0, '+86 755-506-4088', 1, '234026488648859526', 'No.7 building, 231 Jingtian East 1st St, Futian District, Shenzhen, China', '1996-10-12', 0, 0, 'chehuimei5', '2008-05-05', 'hmchen', '2013-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS817182276651', '文力申', 1, '+81 70-1736-9442', 3, '268451386930176558', '日本東京品川区東五反田五丁目2番20号3号室', '1994-03-14', 0, 0, 'liksunman2005', '2012-03-09', 'mals', '2021-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS310957159296', '苗家玲', 0, '+81 3-8345-3452', 3, '935547052865876344', '16F, 1-5-3, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1995-06-15', 0, 0, 'klmiu9', '2011-05-25', 'klmiu', '2012-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS250271187047', '莫子韬', 0, '+86 10-5111-0057', 4, '794098885329727231', 'No.6 building, 9 West Chang''an Avenue, Xicheng District, Beijing, China', '1992-01-22', 0, 0, 'zm1202', '2019-09-05', 'mozitao707', '2009-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS124464130499', '刘秀英', 0, '+81 52-953-1103', 3, '613687476180027669', '39-kai, 3-19-13 Shimizu, Kita Ward, Nagoya, Japan', '1986-06-25', 0, 0, 'xiuyingliu', '2006-11-23', 'xiuli1975', '2001-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS574241724678', 'Vincent Burns', 0, '+86 192-7443-1826', 3, '056811355944510736', 'Room 40, 962 Jiangnan West Road, Haizhu District, Guangzhou, China', '1994-05-20', 0, 0, 'burns514', '2011-05-04', 'buvince06', '2007-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS208877937685', '遠藤聖子', 1, '+81 74-208-8834', 3, '141017521704875365', 'Rm. 7, 4 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1990-02-03', 0, 0, 'seikoendo', '2021-10-25', 'seikoendo', '2017-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS187572838369', '野村瑛太', 1, '+1 212-084-5795', 4, '440575371163034617', '3 Fifth Avenue Apt 30, New York, NY 10017, United States', '1986-04-26', 0, 0, 'enomura', '2011-11-02', 'eitanomura', '2010-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS378325643309', '孙子异', 1, '+86 150-8936-4491', 3, '696725824659499519', 'No.48 building, 33 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1987-04-03', 0, 0, 'zisu', '2012-02-22', 'ziyisun', '2017-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS243065944624', '杨致远', 1, '+81 52-973-3971', 1, '461157735155761923', '34-kai, 2-5-14 Chitose, Atsuta Ward, Nagoya, Japan', '1985-10-20', 0, 0, 'yzhiyuan03', '2016-03-23', 'zyang', '2021-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS534520641814', 'Emma Freeman', 0, '+1 614-739-5373', 1, '134085769106579000', '180 Tremont Road Apt 18, Columbus, GA 43212, United States', '1992-07-29', 0, 0, 'emmafreeman56', '2002-02-10', 'fremma4', '2001-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS003476213067', '藍頴思', 0, '+86 755-9275-5340', 1, '628399222818454383', '中国深圳罗湖区蔡屋围深南东路846号11楼', '1987-09-23', 0, 0, 'wingsze1', '2000-10-09', 'wingszelam', '2012-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS437377840128', '谷家輝', 1, '+86 10-2625-7465', 4, '030418914349269663', '中国北京市西城区复兴门内大街339号36楼', '1990-11-25', 0, 0, 'kfko', '2021-06-27', 'kookf04', '2014-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS264354127927', '林大和', 1, '+81 80-4779-3823', 1, '455757122513017090', '48-kai, 3-19-12 Shimizu, Kita Ward, Nagoya, Japan', '1993-01-02', 0, 0, 'hy19', '2011-04-30', 'hayashiy', '2009-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS221456450585', '原涼太', 0, '+86 28-635-2665', 2, '766950845040743085', '7F, 476 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1987-04-25', 0, 0, 'ryotahara69', '2021-06-01', 'ryotah', '2006-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS953701349802', '邵浩然', 0, '+86 755-7050-7484', 3, '012603740483339227', 'Room 9, CR Building, 411 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1995-02-07', 0, 0, 'hoyinsiu10', '2011-08-11', 'sihoyin', '2006-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS958410213535', '許仲賢', 1, '+81 74-686-0627', 1, '512433539203366447', '日本ならし学園南三丁目9番14号6号室', '1990-05-06', 0, 0, 'chungyin702', '2021-03-22', 'chungyinhu', '2004-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS639049436386', '森瑛太', 0, '+86 130-8666-9728', 3, '236162480850191963', '中国广州市白云区小坪东路424号11栋', '1998-12-25', 0, 0, 'eitamor', '2017-07-15', 'eitamori326', '2021-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS439953211009', '田中大地', 1, '+86 132-2475-3876', 3, '318016768222873775', '中国北京市东城区东单王府井东街501号华润大厦5室', '1989-04-26', 0, 0, 'tanakadaich', '2019-05-29', 'tanakdaichi', '2016-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS799909461631', 'Roy Ramirez', 1, '+81 3-3103-6536', 2, '950490470685455401', '38-kai, 2-3-20 Yoyogi, Shibuya-ku, Tokyo, Japan', '1989-02-21', 0, 0, 'ramirezr', '2003-12-18', 'ramirr82', '2014-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS082062834415', '陈致远', 0, '+81 80-3432-7778', 2, '160008112465949112', '日本おおさかし平野区加美東四丁目9番15号50階', '1989-03-04', 0, 0, 'zhichen', '2011-07-09', 'chen10', '2012-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS367932062693', 'Anna Moreno', 0, '+44 5967 920165', 1, '152268262426720837', 'No.10 Main building, 262 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1994-08-19', 0, 0, 'morenoanna02', '2006-11-03', 'morenoann', '2014-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS075534551567', '郭安琪', 0, '+86 10-833-9522', 2, '108666867681304647', 'Room 35, 142 Dong Zhi Men, Dongcheng District, Beijing, China', '1987-12-21', 0, 0, 'guoanqi', '2008-03-13', 'guoanq', '2012-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS398169047522', '野村舞', 0, '+86 173-7252-8055', 2, '445524788667944732', 'Room 15, 690 Jiangnan West Road, Haizhu District, Guangzhou, China', '1999-01-17', 0, 0, 'nomuramai', '2007-10-27', 'nomuramai', '2001-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS899981124041', '葉志遠', 1, '+81 80-2522-8888', 2, '726163174017852696', '日本おおさかし西成区出城一丁目1番10号1階', '1994-06-12', 0, 0, 'yichiyu', '2003-06-24', 'cyyip', '2000-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS631587037314', '邹云熙', 0, '+86 28-3462-8415', 1, '644704750469793497', 'Room 1, 367 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1992-12-16', 0, 0, 'zouyunxi', '2013-10-04', 'yunxi2', '2015-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS079979769139', '高明詩', 0, '+86 20-0702-1329', 3, '484732620520805248', '中国广州市白云区小坪东路982号22室', '1990-11-12', 0, 0, 'kms', '2002-05-29', 'mingszekao', '2006-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS389556389787', '中島健太', 0, '+86 20-998-3460', 3, '970368531047936547', 'No.30 building, 569 Jiangnan West Road, Haizhu District, Guangzhou, China', '1997-03-27', 0, 0, 'kentan208', '2000-07-26', 'nakajima1120', '2017-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS369786109025', '蘇裕玲', 0, '+1 838-682-3852', 4, '544058394488839131', '157 Broadway Apt 28, Albany, NY 12207, United States', '1986-08-23', 0, 0, 'so1205', '2002-11-28', 'yulings', '2002-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS120496438057', 'Scott Marshall', 0, '+81 3-6006-2793', 2, '021468190401344214', '日本東京渋谷区代々木二丁目3番13号42階', '1995-04-22', 0, 0, 'msco302', '2011-07-24', 'marshall6', '2002-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS631619209165', 'Ashley Murphy', 1, '+44 7415 239767', 3, '586611124506317483', 'Unit 17, Oxford Eco Centre, 645 Portland St, Manchester, M1 3LA, United Kingdom', '1987-02-19', 0, 0, 'muash', '2005-05-10', 'ashlm', '2019-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS295253734904', '後藤詩乃', 0, '+81 74-120-7501', 4, '560233412483684234', '日本ならし学園南三丁目9番5号35号室', '1998-09-16', 0, 0, 'shinogo', '2001-02-09', 'shinogo', '2021-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS299990783874', '崔秀英', 1, '+86 169-0348-5581', 3, '669992324594698085', 'Room 7, 509 Jianxiang Rd, Pudong, Shanghai, China', '1990-09-03', 0, 0, 'cuixiu', '2002-10-06', 'cuixiuying7', '2015-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS102918810498', 'Patrick Gardner', 1, '+81 80-2256-1215', 0, '479758264297178985', 'Rm. 32, 2-1-16 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-09-15', 0, 0, 'gardp', '2021-11-27', 'garpatrick', '2004-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS947177844810', '戚杰倫', 0, '+81 74-843-2086', 0, '953808115163376543', '33F, 3-9-7 Gakuenminami, Nara, Japan', '1994-01-20', 0, 0, 'clchi', '2016-01-08', 'chchi', '2008-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS401909390150', '江秀英', 1, '+86 184-2170-0708', 0, '365184308297152743', '中国上海市黄浦区淮海中路994号华润大厦37室', '1998-12-09', 0, 0, 'xiuying220', '2003-02-17', 'xiuying2', '2018-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS198456532927', 'Janice Robinson', 0, '+86 21-7616-7746', 4, '849653542381894496', '35F, 107 Binchuan Rd, Minhang District, Shanghai, China', '1989-10-18', 0, 0, 'rjan4', '2014-06-16', 'janrob', '2003-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS179526372616', '蕭慧琳', 1, '+44 7359 967479', 1, '979541996319489006', 'Unit 11, Oxford Eco Centre, 485 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1996-01-28', 0, 0, 'siuwailam', '2020-05-23', 'wlsi', '2021-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS488872807127', '渡辺凛', 1, '+86 174-0506-6514', 1, '389992774516958020', 'Room 9, 570 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1996-11-28', 0, 0, 'sato10', '2007-06-03', 'satorin8', '2008-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS338209554814', '有村蒼士', 0, '+81 70-5777-6388', 1, '335933637988381537', '日本札幌清田区真栄四条五丁目19番18号45階', '1992-11-26', 0, 0, 'arimuraaoshi610', '2013-10-29', 'aosarimu1102', '2017-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS887045548898', '余杰宏', 1, '+86 769-569-3487', 3, '909083638882863139', '中国东莞坑美十五巷62号16室', '1987-04-28', 0, 0, 'yujiehong', '2018-11-05', 'yuj', '2012-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS662613028996', '斉藤百恵', 1, '+44 5956 227064', 3, '354060019763894762', 'Flat 30, 860 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1993-03-07', 0, 0, 'mosaito1942', '2015-06-22', 'ms5', '2001-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS638353875544', '岡田紗良', 0, '+1 330-949-9385', 0, '731185449599035656', '740 Riverview Road Apt 27, Akron, OH 44313, United States', '1995-02-15', 0, 0, 'okas', '2000-05-15', 'saraokad', '2018-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS642142721141', '姜岚', 0, '+86 154-8480-9886', 1, '158537895578111445', 'No.2 building, No.808, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1996-12-28', 0, 0, 'jianglan', '2014-04-27', 'ljia', '2012-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS007881389298', '向志遠', 1, '+81 70-7936-8335', 4, '102273180273918067', '日本東京渋谷区代々木二丁目3番18号3階', '1990-03-05', 0, 0, 'heung226', '2013-05-23', 'hechiy', '2003-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS574958326410', '胡家玲', 1, '+86 160-1801-0415', 3, '003980302834521221', '中国上海市徐汇区虹桥路431号28室', '1987-05-15', 0, 0, 'wukl4', '2004-05-01', 'kaling89', '2013-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS050763987164', '汤致远', 0, '+1 838-719-6676', 4, '512896798362797902', '734 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1994-03-08', 0, 0, 'zhiyuan4', '2014-01-15', 'tangzhiyu', '2018-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS244035781016', '丸山優奈', 1, '+1 212-907-8175', 1, '079172831054648889', '452 Wooster Street Suite 12, New York, NY 10012, United States', '1985-10-27', 0, 0, 'maruyuna7', '2013-08-13', 'yunamar12', '2000-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS257469117608', '鄭小慧', 0, '+81 11-643-3011', 3, '846656745222776682', '日本札幌豊平区豊平三条十三丁目3番5号28階', '1996-05-27', 0, 0, 'chsw', '2015-06-23', 'cheng801', '2005-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS168021233716', '杜慧敏', 0, '+1 213-721-9792', 2, '070740218870670448', '978 Grape Street Suite 14, Los Angeles, CA 90002, United States', '1996-07-14', 0, 0, 'to8', '2017-06-04', 'waimanto6', '2020-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS348374880638', '于宇宁', 1, '+81 66-173-8755', 4, '662345265377138927', '47-kai, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1991-02-28', 0, 0, 'yuy', '2019-09-13', 'yunyu', '2008-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS148544405433', 'Jean Davis', 1, '+81 11-433-7715', 2, '262488909258079456', '日本札幌白石区菊水三条五丁目2番11号47号室', '1985-08-19', 0, 0, 'davisjean214', '2013-03-08', 'jeandavi', '2018-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS624766874065', '洪安琪', 0, '+1 718-503-9817', 3, '168805871359248975', '602 Flatbush Ave Apt 22, Brooklyn, NY 11225, United States', '1994-02-27', 0, 0, 'hung131', '2016-09-16', 'hok8', '2012-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS962124384759', '何榮發', 0, '+81 90-8138-4058', 3, '166363139292660912', '40-kai, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1987-05-15', 0, 0, 'howf', '2019-08-16', 'hwf919', '2016-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS484108365930', 'Brenda Silva', 0, '+81 80-5286-2346', 2, '200029696915591196', '18F, 16 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1991-10-04', 0, 0, 'brenda4', '2019-03-08', 'sbrenda', '2013-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS186029838270', '菊地優奈', 0, '+1 838-018-5940', 0, '418326216425567141', '168 Central Avenue Suite 2, Albany, NY 12206, United States', '1995-03-02', 0, 0, 'ykikuchi', '2014-08-15', 'yunakiku8', '2013-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS214065789550', '松田悠人', 0, '+1 213-920-3847', 1, '528308640785427462', '35 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1997-01-31', 0, 0, 'myuto1014', '2009-03-14', 'matsuda8', '2020-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS263458548640', '田中蒼士', 0, '+86 180-2147-1923', 2, '277295631703873998', 'No.7 building, 988 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-08-30', 0, 0, 'tanaaoshi10', '2004-08-27', 'tanakaao', '2012-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS181022912897', '龚云熙', 1, '+81 80-5993-2246', 2, '163631381153012309', 'Rm. 21, 3-27-10 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1994-11-21', 0, 0, 'gyu', '2015-01-14', 'gony', '2019-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS340064720999', 'Edna Hunt', 0, '+81 70-3725-9049', 0, '602109194960201394', '日本札幌白石区菊水三条五丁目4番17号1階', '1996-07-15', 0, 0, 'ednahunt', '2002-07-30', 'edna9', '2010-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS541610299732', '郭震南', 0, '+81 70-8283-0794', 4, '484967115807465608', '日本なごやし瑞穂区河岸町四丁目20番7号15階', '1996-06-09', 0, 0, 'zhennang', '2007-10-02', 'zhennanguo', '2021-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS762907375094', '邓岚', 0, '+44 5779 709626', 2, '738426884568060861', 'Block 31, 641 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1994-08-22', 0, 0, 'deng6', '2017-08-04', 'denglan', '2003-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS120385512981', 'Laura Silva', 1, '+81 74-856-4559', 2, '023126439050020155', '11F, 1-7-3 Saidaiji Akodacho, Nara, Japan', '1994-06-12', 0, 0, 'silaura', '2010-05-27', 'lsilva', '2006-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS345893105427', '石川紗良', 0, '+81 52-718-1931', 3, '840372098244734960', '19F, 3-19-17 Shimizu, Kita Ward, Nagoya, Japan', '1996-05-26', 0, 0, 'sishi', '2004-09-02', 'ishisara2005', '2000-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS048951114224', '苏子韬', 0, '+1 212-751-9658', 0, '590841303862958964', '586 Wooster Street Apartment 38, New York, NY 10012, United States', '1986-05-20', 0, 0, 'szitao727', '2001-06-23', 'zitao15', '2008-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS847135983662', 'Monica Munoz', 1, '+81 70-1447-4756', 1, '745792965203339599', '日本なごやし瑞穂区河岸町四丁目20番17号29階', '1992-05-18', 0, 0, 'mmun', '2007-06-27', 'monmunoz4', '2001-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS482683658125', '伊藤海斗', 1, '+81 80-9694-2599', 0, '938175009624714706', '5-kai, 3-27-6 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-05-25', 0, 0, 'itok', '2001-01-11', 'itkaito', '2018-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS562173687404', '蒋嘉伦', 0, '+81 66-337-2134', 1, '575898337935110485', '日本おおさかし東住吉区東田辺三丁目27番11号16階', '1988-04-22', 0, 0, 'jialun9', '2016-11-12', 'jiajialu', '2010-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS981692934204', '郑致远', 0, '+86 173-2308-4558', 0, '909068443816742575', '中国北京市延庆区028县道761号18号楼', '1996-11-21', 0, 0, 'zhengzhiyuan', '2021-07-22', 'zhzheng', '2016-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS693162058302', '田詩涵', 1, '+44 (116) 617 3681', 4, '640452399663813989', 'Flat 4, 87 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1992-08-05', 0, 0, 'tianshih90', '2016-11-08', 'tianshih', '2002-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS799147574710', '増田優奈', 1, '+81 3-4675-4490', 1, '998226828084211467', '44-kai, 5-2-3 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-07-08', 0, 0, 'yunamasuda', '2008-10-14', 'yunam', '2008-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS629735480210', '宣世榮', 0, '+44 (1865) 28 5514', 1, '699100520637298291', 'Block 25, 780 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1986-03-27', 0, 0, 'saiwingh', '2005-10-10', 'hsusaiwing', '2015-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS824741153624', '鄧國賢', 0, '+86 151-4497-5047', 4, '446058727670190495', 'Room 43, CR Building, 934 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1995-01-07', 0, 0, 'kyta4', '2006-09-05', 'tang404', '2016-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS919837948542', '西村愛梨', 0, '+81 52-713-9434', 2, '033606650611018875', '46F, 3-19-4 Shimizu, Kita Ward, Nagoya, Japan', '1998-06-05', 0, 0, 'airinishimura', '2000-06-18', 'nairi', '2014-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS900833005754', '王惠妹', 1, '+86 760-3557-9582', 1, '136224418014897552', 'Room 16, 408 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1989-06-29', 0, 0, 'wong9', '2007-04-19', 'hmwong56', '2005-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS382590766803', '邓子韬', 0, '+81 66-543-0420', 2, '828964552416366206', '日本おおさかし平野区加美東四丁目9番7号2階', '1989-01-04', 0, 0, 'zitdeng', '2007-10-26', 'dengzitao81', '2014-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS016189568363', '前田美緒', 1, '+81 74-179-7426', 3, '373928588820787970', '37-kai, 3-9-19 Gakuenminami, Nara, Japan', '1993-01-05', 0, 0, 'mioma68', '2003-10-08', 'maedamio1956', '2000-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS206907258691', '朱慧嫻', 0, '+81 70-7741-3422', 2, '574263508021426253', 'Rm. 10, 2-1-18 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1996-09-08', 0, 0, 'cwh1945', '2006-02-20', 'chuwaihan', '2003-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS855100851411', 'Theodore Anderson', 0, '+81 11-815-7419', 2, '728988759839237283', '日本札幌白石区菊水三条五丁目2番10号43号室', '1992-10-30', 0, 0, 'tanderson1946', '2005-06-20', 'atheodore', '2006-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS212329398989', 'Kevin Butler', 1, '+81 66-567-1881', 1, '597188648611031082', '22F, 3-27-3 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1997-03-05', 0, 0, 'butlerkevin1001', '2000-03-30', 'kebutler', '2021-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS637002112788', '郝晓明', 0, '+1 312-442-9535', 2, '340347632046913143', '437 Pedway Apt 26, Chicago, IL 60601, United States', '1993-09-05', 0, 0, 'xih', '2006-05-30', 'xihao', '2001-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS659878188765', '平野玲奈', 1, '+44 5951 018773', 1, '131055638026356424', 'No.25 Main building, 454 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1990-09-22', 0, 0, 'hirena', '2020-03-24', 'hiranr1957', '2000-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS961175593775', '邱致远', 0, '+86 21-905-9644', 3, '483543842065486509', 'No.35 building, 657 Binchuan Rd, Minhang District, Shanghai, China', '1998-05-09', 0, 0, 'qzhiyuan', '2017-08-19', 'qizhiyu', '2000-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS258600439781', '梁發', 0, '+1 838-058-6987', 3, '175330359888051451', '569 Central Avenue Apartment 41, Albany, NY 12205, United States', '1989-12-03', 0, 0, 'fatleung', '2012-01-03', 'fatleung', '2006-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS706890068014', '洪心穎', 1, '+86 153-7995-0230', 2, '868431626519338364', '中国东莞坑美十五巷524号华润大厦44室', '1989-05-17', 0, 0, 'husumwing3', '2003-11-16', 'swhu10', '2017-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS312481256250', '山本花', 0, '+86 136-2669-1679', 2, '423050008379273688', '中国深圳罗湖区清水河一路935号华润大厦19室', '1986-03-26', 0, 0, 'hana9', '2016-10-31', 'hayamamoto13', '2010-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS225236216274', '梁岚', 0, '+86 28-529-3355', 3, '347978118476153498', '中国成都市成华区双庆路357号45栋', '1995-07-11', 0, 0, 'lan4', '2018-05-04', 'lanliang71', '2014-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS257729496334', '杜睿', 0, '+1 330-830-5033', 0, '322670531390760745', '97 Collier Road Apt 48, Akron, OH 44320, United States', '1992-05-31', 0, 0, 'rui4', '2010-08-28', 'du2', '2015-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS502269363615', '沈子韬', 0, '+86 10-5696-7468', 0, '107797592201075093', '46F, 491 Dong Zhi Men, Dongcheng District, Beijing, China', '1988-05-31', 0, 0, 'shezitao', '2020-12-25', 'zishen', '2003-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS575874212644', 'Alan Bell', 0, '+1 212-481-4777', 2, '363783017537565591', '434 Canal Street 3rd Floor, New York, NY 10013, United States', '1988-12-28', 0, 0, 'alanbel5', '2011-09-27', 'ba97', '2020-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS944665701973', '彭詩涵', 1, '+44 (1223) 75 6638', 2, '922570030352579622', 'Flat 40, 377 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1991-09-01', 0, 0, 'shihan00', '2008-05-28', 'shipeng', '2010-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS428393791306', '武云熙', 0, '+81 90-1825-2512', 3, '854985429817345184', '47F, 3-9-19 Gakuenminami, Nara, Japan', '1990-06-09', 0, 0, 'wuyun', '2000-12-26', 'yuwu89', '2012-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS506998557445', '高橋和真', 0, '+86 189-9203-3200', 3, '418569947825399068', 'No.33 building, No. 778, Shuangqing Rd, Chenghua District, Chengdu, China', '1996-03-17', 0, 0, 'takahashi70', '2015-11-08', 'kazumat', '2012-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS335879406364', '常安琪', 1, '+81 52-688-4654', 1, '834372081880310705', '37F, 3-19-3 Shimizu, Kita Ward, Nagoya, Japan', '1997-03-12', 0, 0, 'achang', '2020-11-13', 'changa', '2019-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS716753141672', '戴淑怡', 1, '+86 139-2886-8476', 0, '643988423301806121', '中国深圳龙岗区布吉镇西环路950号华润大厦27室', '1991-05-17', 0, 0, 'sydai', '2018-10-22', 'dai531', '2019-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS897136064649', '中森湊', 1, '+86 130-9939-6186', 2, '071614283741892197', '中国东莞珊瑚路945号21楼', '1989-12-07', 0, 0, 'minanakamori', '2008-07-09', 'minaton', '2002-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS071491408659', '段宇宁', 0, '+86 186-7332-1789', 1, '790685574097426071', '中国东莞环区南街二巷555号4楼', '1990-04-16', 0, 0, 'duan9', '2017-02-28', 'dyuni', '2005-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS533340911435', '葉發', 0, '+86 160-5186-6275', 2, '877252173288069966', '中国深圳福田区景田东一街886号17栋', '1990-12-03', 0, 0, 'yipfat1015', '2010-09-02', 'fyip', '2006-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS309335610699', '邵云熙', 0, '+81 11-434-9638', 3, '660961786355043907', '日本札幌白石区菊水三条五丁目2番14号28階', '1987-05-22', 0, 0, 'shao02', '2004-10-05', 'shao44', '2020-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS859262674836', '杉山絢斗', 1, '+86 163-4627-4929', 2, '080088953554301618', '中国广州市白云区机场路棠苑街五巷455号10楼', '1990-06-02', 0, 0, 'sugiyama1947', '2002-07-17', 'say', '2001-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS923704849620', '高詩涵', 0, '+81 90-3042-5214', 2, '126888854746739527', '日本札幌豊平区豊平三条十三丁目3番15号10号室', '1996-12-10', 0, 0, 'gshihan4', '2003-11-05', 'gs816', '2017-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS680330479277', 'Cheryl Palmer', 1, '+81 52-982-4072', 0, '971611160772820980', '日本なごやし熱田区千年二丁目5番15号4階', '1991-12-20', 0, 0, 'palmer1983', '2016-06-01', 'palmerch', '2002-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS505116621592', '成家文', 1, '+81 70-5387-7915', 3, '088217928081790695', '日本東京中央区銀座三丁目12番12号43階', '1993-04-22', 0, 0, 'skm', '2011-10-06', 'shinkaman731', '2020-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS499707812083', 'Jack Ryan', 0, '+81 80-4648-3029', 3, '874645073799941993', '日本ならし西大寺赤田町一丁目7番1号33階', '1992-03-09', 0, 0, 'ryanjac4', '2021-01-18', 'ryanj', '2015-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS999695135717', '刘晓明', 0, '+44 7306 180094', 0, '577550140618502634', 'Block 23, 104 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-09-13', 0, 0, 'xiaomingliu2012', '2000-04-24', 'xiaomingliu', '2006-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS190798849231', 'Cheryl Graham', 0, '+1 838-481-6141', 0, '945087825611880670', '771 State Street 3rd Floor, Albany, NY 12203, United States', '1989-12-17', 0, 0, 'grahamcheryl', '2009-09-15', 'cherylgra20', '2018-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS177562347392', '今井美咲', 1, '+86 191-1937-3139', 4, '638223338931002713', '中国深圳龙岗区学园一巷542号华润大厦45室', '1988-09-17', 0, 0, 'imai412', '2014-04-17', 'imaimis', '2019-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS682349794445', 'Bryan Martinez', 1, '+81 11-789-2235', 1, '147712081306375013', '38F, 5-2-16 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-11-28', 0, 0, 'bryanmartinez6', '2013-02-27', 'martinezb', '2018-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS839294060382', 'Jerry Freeman', 0, '+86 20-2561-3470', 4, '731654180328110743', 'No.34 building, 905 Jiangnan West Road, Haizhu District, Guangzhou, China', '1998-10-21', 0, 0, 'freemanje', '2016-09-02', 'jerryfree', '2002-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS492523550611', '沈致远', 1, '+81 3-9903-8069', 3, '527214314312125916', '11F, 2-3-8 Yoyogi, Shibuya-ku, Tokyo, Japan', '1995-12-17', 0, 0, 'zhiyuan92', '2010-12-17', 'zhiyuan205', '2010-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS284938072490', '陶子异', 1, '+86 10-6056-9924', 0, '176496639292799779', 'Room 3, CR Building, 711 Yueliu Rd, Fangshan District, Beijing, China', '1990-04-23', 0, 0, 'tziyi', '2008-01-04', 'tao9', '2015-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS883994668450', '董杰宏', 1, '+44 7325 952146', 3, '034674272427639938', 'No.27 Main building, 426 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1998-02-04', 0, 0, 'dongj', '2000-06-04', 'jiehongdon1001', '2007-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS292796741337', 'Jessica Martinez', 0, '+81 66-144-9180', 1, '764283484388593424', '44-kai, 2-1-15 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1986-07-19', 0, 0, 'martinezjessi', '2007-12-28', 'jessmar', '2015-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS435523132823', 'Pamela Perez', 0, '+81 74-049-4039', 4, '041672269861224817', '31F, 19 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-07-22', 0, 0, 'pap02', '2013-10-31', 'perezp', '2018-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS302888572320', '田子韬', 1, '+86 160-6274-7558', 3, '066911035195571165', 'No.41 building, 983 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1991-12-29', 0, 0, 'tzi801', '2007-04-10', 'ztian', '2003-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS534309173532', '伊藤大地', 1, '+86 755-4196-5166', 3, '568579526069813902', '中国深圳福田区景田东一街939号21栋', '1993-05-12', 0, 0, 'itdai', '2006-06-16', 'ito4', '2008-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS351785221074', 'Melissa Morgan', 0, '+1 718-839-2659', 1, '688356575161109796', '440 Columbia St Apartment 26, Brooklyn, NY 11231, United States', '1992-12-21', 0, 0, 'mmorg', '2010-06-08', 'melissamo67', '2012-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS116549175394', '孟晓明', 1, '+44 (116) 487 4185', 2, '067833810404323684', 'Unit 11, Oxford Eco Centre, 337 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1988-12-17', 0, 0, 'xm83', '2003-12-31', 'xm131', '2004-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS819539983145', 'Aaron Morris', 1, '+1 212-004-4759', 3, '644056954060148535', '637 Bank Street Apartment 8, New York, NY 10014, United States', '1996-01-11', 0, 0, 'aaron1952', '2002-04-04', 'aaronmorr', '2017-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS731403879293', '大野大和', 1, '+81 3-0204-3436', 2, '571644302198670647', '日本東京中央区銀座三丁目12番15号24階', '1998-04-18', 0, 0, 'oyamato', '2003-05-19', 'yamatoono', '2015-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS688907816467', '青木樹', 1, '+81 3-9791-5088', 0, '041302460711730840', '日本東京品川区東五反田五丁目2番10号7階', '1986-06-16', 0, 0, 'itsao47', '2002-09-18', 'aokiitsuki7', '2005-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS574078647345', 'Sara Mason', 0, '+1 838-912-6754', 3, '932119888093875729', '272 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1985-04-12', 0, 0, 'masonsara', '2005-06-20', 'mason5', '2017-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS108353533426', '刘子韬', 0, '+86 769-2044-6657', 3, '783005854078834663', '中国东莞东泰五街495号华润大厦19室', '1995-09-12', 0, 0, 'zitaliu', '2012-04-29', 'liuz10', '2019-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS451536463516', '車曉彤', 1, '+1 330-792-3685', 2, '452353713552908093', '389 Riverview Road Apt 28, Akron, OH 44313, United States', '1996-02-17', 0, 0, 'hiutungche8', '2008-10-31', 'hiutch', '2012-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS378025532178', '坂本優奈', 0, '+1 838-190-8514', 1, '114719077947821502', '56 Lark Street Apartment 13, Albany, NY 12210, United States', '1985-08-28', 0, 0, 'sayun', '2005-04-17', 'yuna10', '2013-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS540587024557', 'Louise Sullivan', 1, '+44 (151) 426 4103', 4, '898015414302293933', 'Unit 13, Oxford Eco Centre, 580 Hanover St, Liverpool, L1 4AF, United Kingdom', '1992-11-10', 0, 0, 'louisesu4', '2019-02-19', 'sullilo', '2021-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS241776371635', '尹璐', 1, '+81 52-122-5161', 4, '917702190463003778', '日本なごやし守山区瀬古東二丁目171番10号15号室', '1993-05-29', 0, 0, 'lu621', '2003-12-21', 'lu904', '2018-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS469120260710', '譚杰倫', 0, '+86 21-809-2267', 2, '826206392630967629', '中国上海市闵行区宾川路14号19室', '1990-02-04', 0, 0, 'chiehlunt2002', '2019-01-12', 'tacl1', '2005-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS703001372580', '馮志明', 1, '+86 755-511-3532', 1, '104028786678406888', '1F, 91 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1987-07-28', 0, 0, 'fungchiming', '2008-01-16', 'cmfung', '2005-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS852046982124', 'Linda Crawford', 0, '+81 3-2513-9864', 1, '477179015676420016', '日本東京渋谷区代々木二丁目3番5号33号室', '1992-10-06', 0, 0, 'licra10', '2001-12-08', 'lindacrawford', '2020-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS061045098614', '梁致远', 1, '+1 614-424-2538', 0, '494360423488443107', '702 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1985-06-22', 0, 0, 'liangzh709', '2020-09-30', 'liang1', '2017-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS367968594570', '龚致远', 1, '+44 5627 783292', 1, '252055769301061397', 'No.28 Main building, 211 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1997-11-18', 0, 0, 'zhiyuan6', '2018-04-17', 'gozhiyuan805', '2008-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS346477014879', '邱潤發', 0, '+1 330-901-7777', 0, '754023443432907430', '864 Ridgewood Road Suite 27, Akron, OH 44321, United States', '1990-05-31', 0, 0, 'yauyf', '2002-07-29', 'yunfatyau', '2012-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS205421657456', '崔安琪', 0, '+86 131-3329-2041', 3, '878123421321042119', '中国北京市朝阳区三里屯路890号25栋', '1987-11-15', 0, 0, 'cuia305', '2002-02-23', 'cuia2', '2006-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS194169216859', '竹内紗良', 1, '+44 (121) 171 6828', 1, '828314342920250807', 'Unit 25, Oxford Eco Centre, 834 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1997-03-09', 0, 0, 'takeus', '2006-01-03', 'taksara', '2019-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS652572511386', '酒井陽菜', 1, '+81 3-5521-9879', 3, '939155482006934101', '日本東京品川区東五反田五丁目2番7号26階', '1997-06-26', 0, 0, 'hinasa', '2022-02-10', 'sahina', '2005-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS473883376739', '三浦蓮', 1, '+81 74-512-8316', 3, '610750886970860665', '日本ならし大和郡山市本庄町一丁目1番16号30号室', '1996-12-01', 0, 0, 'rem8', '2016-06-19', 'miurren4', '2013-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS967378151860', 'Debbie Hernandez', 0, '+1 212-383-5866', 3, '439389671023630910', '849 Wooster Street Apt 16, New York, NY 10012, United States', '1986-06-29', 0, 0, 'debbie1024', '2018-01-20', 'debbiehernandez411', '2012-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS342536795492', '田睿', 0, '+1 838-234-1825', 1, '961298402933679638', '526 State Street 3rd Floor, Albany, NY 12203, United States', '1997-12-16', 0, 0, 'trui', '2006-06-07', 'ruit', '2007-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS866507069953', 'Carolyn Medina', 0, '+44 (116) 240 0760', 3, '248442862665706491', 'Flat 31, 961 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1985-07-25', 0, 0, 'medc', '2014-08-09', 'mcarolyn6', '2004-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS099740999193', '余詩涵', 1, '+1 718-983-9776', 2, '029859221074333961', '886 Columbia St Apt 16, Brooklyn, NY 11231, United States', '1985-07-21', 0, 0, 'shihanyu321', '2017-11-16', 'sy3', '2020-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS437245366048', '工藤優奈', 1, '+81 70-5989-2192', 1, '412751475156449900', '15F, 1-7-20 Omido, Higashiosaka, Osaka, Japan', '1985-10-26', 0, 0, 'yk1', '2006-06-17', 'yunakudo320', '2002-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS128028097397', '佐藤光莉', 1, '+81 90-2253-0912', 3, '899493643633765169', '日本なごやし北区清水三丁目19番1号2階', '1998-09-20', 0, 0, 'hikaris', '2020-08-17', 'hsato82', '2019-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS136890595273', 'Judith Brown', 0, '+86 10-918-2632', 2, '762801703332308134', '42F, 468 028 County Rd, Yanqing District, Beijing, China', '1987-04-02', 0, 0, 'judibrown5', '2005-04-30', 'judbr74', '2018-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS977100190492', '孫心穎', 0, '+81 11-848-0216', 0, '619217802255763196', '日本札幌中央区宮の森四条六丁目1番4号23階', '1992-01-20', 0, 0, 'hsuansw5', '2020-01-16', 'swhsuan', '2001-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS495543855873', '杜杰宏', 0, '+1 718-863-3678', 1, '086670155463791513', '735 Columbia St Suite 4, Brooklyn, NY 11231, United States', '1993-06-29', 0, 0, 'jiehongdu3', '2001-08-03', 'jiehong126', '2017-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS927536945875', '陶學友', 1, '+44 5871 440098', 0, '232404254902148971', 'Unit 30, Oxford Eco Centre, 792 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1986-10-22', 0, 0, 'thy8', '2004-01-09', 'hytao1956', '2008-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS335766914821', 'Douglas Jimenez', 0, '+44 (1865) 40 8477', 3, '665292380188275966', 'Block 19, 72 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1993-10-04', 0, 0, 'douglasj4', '2011-09-01', 'jimenez2008', '2020-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS791407707080', 'Herbert Vargas', 1, '+86 21-7631-9720', 3, '757569197582984322', 'Room 43, CR Building, 886 Ganlan Rd, Pudong, Shanghai, China', '1998-04-07', 0, 0, 'herbertv', '2016-07-15', 'hvargas', '2011-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS483148360399', '村田絢斗', 0, '+44 7927 367764', 2, '626882151825755567', 'Unit 9, Oxford Eco Centre, 506 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1986-07-07', 0, 0, 'ayamurata80', '2007-03-22', 'muratayato8', '2020-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS159779694250', 'Shawn Crawford', 0, '+86 769-323-8658', 4, '229383890377393110', '中国东莞坑美十五巷353号华润大厦47室', '1991-09-15', 0, 0, 'shawn50', '2006-09-25', 'shc820', '2012-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS158951887305', 'Francisco Long', 1, '+81 70-6465-7174', 2, '670865892366899492', '日本ならし学園南三丁目9番17号26階', '1985-12-16', 0, 0, 'francisco2', '2005-04-01', 'fralong', '2013-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS440243764149', '木下悠人', 0, '+86 755-0410-9940', 3, '236552443589622273', '中国深圳福田区深南大道678号16栋', '1989-01-26', 0, 0, 'kinoshitay618', '2009-08-15', 'yuto87', '2014-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS436231697604', '高田大輔', 0, '+44 7081 387604', 1, '728581668041612205', 'Block 10, 326 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1988-06-30', 0, 0, 'takdaisuke06', '2001-07-24', 'takadadaisuke10', '2007-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS675413569090', '钱子异', 1, '+1 838-499-7083', 1, '097536972392023787', '483 Broadway Apt 20, Albany, NY 12207, United States', '1991-02-27', 0, 0, 'ziyiqian97', '2005-06-13', 'ziyi10', '2021-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS928331920310', '戴杰宏', 1, '+44 5242 680665', 2, '520989678339097178', 'No.1 Main building, 934 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-01-20', 0, 0, 'daijiehong', '2021-09-30', 'djiehong1947', '2019-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS823330171054', '柴田舞', 1, '+86 755-628-5833', 1, '416045738218745618', '中国深圳福田区深南大道420号20号楼', '1985-09-30', 0, 0, 'smai', '2014-08-25', 'maishib', '2018-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS018100589445', '马嘉伦', 0, '+81 80-0400-7974', 1, '110275691780339596', '日本札幌清田区真栄四条五丁目19番5号26階', '1988-11-15', 0, 0, 'jialunma', '2008-12-25', 'maji1958', '2004-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS893027609205', '薛子异', 0, '+86 137-8729-9423', 1, '590087588716895137', '中国中山天河区大信商圈大信南路980号19室', '1995-03-22', 0, 0, 'ziyi4', '2012-05-09', 'ziyix', '2009-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS479448282572', 'Maria Burns', 1, '+1 718-645-3542', 3, '893390867310777215', '265 Flatbush Ave Suite 30, Brooklyn, NY 11225, United States', '1987-10-10', 0, 0, 'mab', '2013-01-24', 'mariab', '2020-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS014725092659', '梁青雲', 0, '+86 10-8506-6141', 0, '819085697294803573', '中国北京市东城区东单王府井东街421号24室', '1989-06-03', 0, 0, 'leunchingwan', '2016-09-29', 'leungching', '2020-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS967645817438', '上野悠人', 0, '+1 212-432-4457', 4, '489908741183877614', '498 Canal Street Suite 45, New York, NY 10013, United States', '1993-08-13', 0, 0, 'yuueno75', '2007-01-19', 'uenoyuto1', '2000-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS896069781660', '蔣嘉欣', 1, '+81 90-1584-5029', 2, '556326405151098143', '日本東京中央区銀座三丁目12番13号37号室', '1986-02-18', 0, 0, 'kyc4', '2010-08-01', 'karyanchiang718', '2003-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS927658346971', 'Patricia Cole', 0, '+81 52-997-5531', 2, '190216997169820320', '16-kai, 3-19-12 Shimizu, Kita Ward, Nagoya, Japan', '1998-11-18', 0, 0, 'patriciacole5', '2008-07-26', 'patricia6', '2008-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS514123333234', 'Timothy Brooks', 0, '+86 147-4833-3674', 2, '441817607934880779', '中国广州市白云区机场路棠苑街五巷240号华润大厦7室', '1986-04-08', 0, 0, 'broot', '2000-05-03', 'timothybrooks98', '2020-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS371267916949', '菅原彩乃', 0, '+86 186-1557-3238', 1, '254374551007220977', 'Room 5, CR Building, 853 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1985-02-05', 0, 0, 'sa80', '2005-02-10', 'sugawaraayan6', '2008-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS592200870371', '遠藤凛', 1, '+81 11-457-2995', 3, '793755891870508177', 'Rm. 12, 5-19-18 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-04-10', 0, 0, 'endorin', '2018-11-11', 'endorin319', '2015-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS421806396667', '佐藤陸', 1, '+86 160-5809-6129', 1, '861506143194995117', '中国上海市闵行区宾川路4号2室', '1996-05-04', 0, 0, 'sato15', '2012-11-20', 'satoriku90', '2005-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS110824095485', 'Nicholas Aguilar', 0, '+81 11-294-8917', 0, '579393655510254826', '6F, 5-2-11 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1996-10-04', 0, 0, 'nicholas80', '2008-05-30', 'aguilarnicholas', '2006-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS857602158557', 'Luis Shaw', 1, '+86 755-640-9479', 4, '988724186986290024', '中国深圳龙岗区布吉镇西环路685号华润大厦39室', '1995-05-29', 0, 0, 'luis10', '2019-02-27', 'shaw09', '2022-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS049894457598', '池田光莉', 1, '+1 718-180-8393', 2, '196910638654558348', '995 Nostrand Ave Apartment 2, Brooklyn, NY 11216, United States', '1987-11-01', 0, 0, 'hikariked', '2009-07-18', 'hii06', '2009-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS457535414100', '河野紗良', 1, '+1 838-407-8729', 4, '442767718490881257', '954 State Street Suite 2, Albany, NY 12203, United States', '1995-10-26', 0, 0, 'skono', '2022-01-04', 'ks912', '2017-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS355655550457', '高橋葵', 1, '+81 66-801-8163', 2, '580440483020446891', '日本おおさかし西成区出城一丁目1番7号37階', '1990-05-19', 0, 0, 'takaoi96', '2007-01-26', 'aoita', '2009-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS378413589427', 'Irene Clark', 0, '+1 212-048-1909', 1, '462945437689715067', '324 Wooster Street Suite 28, New York, NY 10012, United States', '1988-12-30', 0, 0, 'clark10', '2000-01-21', 'clir', '2010-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS397720755355', '廖安琪', 0, '+1 614-003-6135', 3, '714386564628877184', '13 Diplomacy Drive Suite 46, Columbus, GA 43228, United States', '1997-12-04', 0, 0, 'liaoan6', '2017-08-05', 'anqi616', '2012-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS194687362429', '蒋宇宁', 1, '+86 177-2330-4413', 2, '634441584072878475', '中国深圳福田区深南大道489号9室', '1988-03-17', 0, 0, 'yuj16', '2016-12-02', 'yjiang', '2001-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS873341822767', '高橋瑛太', 0, '+44 7331 673287', 3, '267717015841262491', 'Unit 18, Oxford Eco Centre, 159 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1987-06-03', 0, 0, 'takahashiei', '2000-09-28', 'eitatakahashi4', '2010-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS472163916919', '近藤美月', 0, '+81 90-2573-2241', 3, '072666517782405762', '日本札幌豊平区豊平三条十三丁目3番14号15階', '1988-10-09', 0, 0, 'mitskond', '2010-02-28', 'kondo49', '2005-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS357288515439', 'Amanda Reed', 0, '+86 162-4869-8545', 0, '237336468769317251', 'No.1 building, 614 East Wangfujing Street, Dongcheng District , Beijing, China', '1986-09-25', 0, 0, 'reedamanda1944', '2000-08-12', 'reamanda', '2008-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS834005441936', 'Jerry Jordan', 1, '+86 165-8788-0650', 3, '543094015184283856', 'Room 11, 23 Hongqiao Rd., Xu Hui District, Shanghai, China', '1986-03-04', 0, 0, 'jjerry1119', '2017-05-28', 'jordanjerry', '2021-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS162558772811', '松本玲奈', 1, '+81 70-0442-7939', 0, '952069644263447884', '日本東京品川区東五反田五丁目2番6号39号室', '1985-12-12', 0, 0, 'mrena', '2001-04-29', 'remat', '2005-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS276211338786', '黄晓明', 1, '+44 7772 077379', 2, '506261010084065989', 'Unit 23, Oxford Eco Centre, 192 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1997-01-14', 0, 0, 'huang58', '2013-06-06', 'xiaominghuang', '2018-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS179505774869', '鄭國榮', 1, '+44 (116) 549 0653', 1, '947788306092771654', 'Unit 30, Oxford Eco Centre, 709 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1985-08-24', 0, 0, 'kwokwingc2014', '2008-09-21', 'chengkw', '2021-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS127685772657', '鄧麗欣', 1, '+86 755-0192-7671', 3, '887305768531195661', '中国深圳龙岗区布吉镇西环路853号34室', '1994-09-26', 0, 0, 'lyta41', '2012-05-08', 'laiyant217', '2016-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS480016647418', '石川蒼士', 1, '+1 212-460-6851', 1, '636704342404451118', '811 Fifth Avenue Apartment 22, New York, NY 10017, United States', '1996-04-14', 0, 0, 'aoshishikawa', '2020-06-18', 'aishikawa7', '2015-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS466196768053', '山口愛梨', 1, '+86 769-532-3516', 2, '896392198151494319', '中国东莞珊瑚路567号10楼', '1995-03-22', 0, 0, 'airiy', '2006-02-07', 'yamaguchi7', '2009-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS402510303380', 'Lawrence Gonzalez', 0, '+1 614-929-5330', 0, '695146739601169587', '33 Diplomacy Drive Apartment 49, Columbus, GA 43228, United States', '1991-12-10', 0, 0, 'gonzalez3', '2009-08-09', 'lawrgon', '2019-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS075095409930', '橋本陸', 0, '+86 10-5795-6745', 2, '086574957941899163', 'Room 6, CR Building, 778 Sanlitun Road, Chaoyang District, Beijing, China', '1998-01-14', 0, 0, 'hriku', '2018-09-29', 'hriku6', '2017-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS800646848689', '史岚', 1, '+86 10-228-7387', 3, '771326121563841073', 'Room 6, 553 Sanlitun Road, Chaoyang District, Beijing, China', '1993-01-18', 0, 0, 'shilan48', '2016-04-07', 'lanshi', '2002-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS511710473424', '郭睿', 0, '+81 52-212-5275', 4, '643566636903200454', '日本なごやし北区清水三丁目19番12号31階', '1998-12-02', 0, 0, 'guo8', '2021-04-21', 'ruiguo', '2000-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS947209866541', '樊淑怡', 1, '+1 212-332-4644', 3, '835582817354306593', '53 Bank Street Apartment 36, New York, NY 10014, United States', '1986-08-07', 0, 0, 'fansy57', '2008-10-01', 'sukyee3', '2009-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS587612938895', '汪岚', 1, '+44 5923 449833', 4, '892633311948488067', 'Unit 33, Oxford Eco Centre, 515 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1998-01-27', 0, 0, 'wang6', '2005-08-31', 'wanglan303', '2007-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS899821110071', 'Barbara Robinson', 1, '+81 80-6982-5439', 4, '378698729075356885', '日本おおさかし西成区出城一丁目1番4号44号室', '1986-10-25', 0, 0, 'barr', '2017-12-22', 'br5', '2002-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS436161755629', '千葉悠人', 0, '+81 80-0473-8834', 1, '833376930151431548', 'Rm. 29, 13-3-10 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1994-04-26', 0, 0, 'yuch8', '2009-03-15', 'chibay', '2003-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS531884245533', 'Scott Hicks', 1, '+81 90-3507-8945', 1, '615974679577467047', '1-kai, 3-9-4 Gakuenminami, Nara, Japan', '1987-08-11', 0, 0, 'scohicks', '2010-01-26', 'hicksscot82', '2001-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS958590634572', '樊世榮', 1, '+86 10-065-2479', 4, '782787573129754276', '19F, 169 Sanlitun Road, Chaoyang District, Beijing, China', '1993-08-23', 0, 0, 'fasw', '2004-01-05', 'swfan', '2003-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS595105986990', '坂本海斗', 1, '+1 718-344-4085', 0, '232885015677960082', '204 Columbia St Apartment 13, Brooklyn, NY 11231, United States', '1987-12-20', 0, 0, 'kaisa', '2015-06-23', 'kaitos5', '2009-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS246586841059', '徐云熙', 1, '+81 90-7275-4360', 3, '709086111330874052', '日本札幌豊平区豊平三条十三丁目3番10号40階', '1989-01-10', 0, 0, 'yuxu', '2021-02-17', 'yunxi76', '2011-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS474417725032', '阿部七海', 1, '+86 21-4650-2067', 3, '851428914648225223', '中国上海市浦东新区健祥路818号华润大厦42室', '1995-04-10', 0, 0, 'nanami7', '2005-03-15', 'nabe', '2008-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS228794823173', '容國榮', 0, '+81 3-6477-3422', 3, '993123912968197870', '38-kai, 3-15-15 Ginza, Chuo-ku, Tokyo, Japan', '1985-06-30', 0, 0, 'yungkwokwing', '2013-02-04', 'kwokwingy5', '2000-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS453991322155', '阎震南', 1, '+81 80-6238-4554', 2, '046457547722524112', '日本札幌厚別区上野幌一条二丁目1番17号42階', '1994-11-13', 0, 0, 'zhennya14', '2007-11-24', 'zhenny', '2013-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS121878856633', '贺安琪', 0, '+86 151-4682-0189', 0, '017071728350795953', '中国广州市越秀区中山二路778号1楼', '1998-11-06', 0, 0, 'heanqi616', '2010-11-27', 'han', '2006-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS577740391714', '譚德華', 0, '+81 66-313-7978', 3, '936410693823470124', '日本おおさかし西成区出城一丁目1番10号47階', '1986-07-18', 0, 0, 'twtam', '2012-10-14', 'tamtakwah114', '2018-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS882859138620', '市川葵', 1, '+81 3-9034-2907', 0, '620221228083548954', '日本東京品川区東五反田五丁目2番7号33号室', '1995-12-18', 0, 0, 'ichikawaaoi', '2006-01-28', 'ichikawaaoi', '2010-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS845945003273', '田中架純', 1, '+86 760-843-7455', 3, '821086165075411153', 'Room 18, CR Building, 927 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1998-12-29', 0, 0, 'tanak', '2014-07-22', 'tanakakasu', '2002-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS681951148135', '岡本詩乃', 1, '+86 144-4271-4596', 2, '816879532243111000', 'No.26 building, 902 Jingtian East 1st St, Futian District, Shenzhen, China', '1999-01-17', 0, 0, 'okamotoshino99', '2017-08-21', 'oshino', '2017-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS733474929400', '蔡秀英', 0, '+81 70-3531-1157', 1, '713093409998312932', '25-kai, 1-1-12 Deshiro, Nishinari Ward, Osaka, Japan', '1986-03-25', 0, 0, 'xiuyca1', '2007-04-04', 'xic', '2016-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS319127140671', 'Virginia Rose', 0, '+86 131-1663-0510', 3, '928023406439928962', 'No.14 building, 22 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1988-05-16', 0, 0, 'virginiar', '2001-04-07', 'rvirginia', '2005-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS500063895812', '元家文', 0, '+1 838-879-1598', 1, '016329453288760892', '396 State Street Suite 16, Albany, NY 12203, United States', '1991-06-18', 0, 0, 'kmyuen', '2008-05-02', 'kamany', '2011-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS655504722605', 'Tammy Ramos', 1, '+81 80-7230-8946', 1, '832296684550161294', '日本ならし学園南三丁目9番19号33階', '1989-04-07', 0, 0, 'ramostammy', '2011-01-14', 'tammy8', '2011-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS685898037673', '郭詩涵', 0, '+81 90-5575-8340', 3, '691931775299836697', '日本なごやし北区楠味鋺三丁目80番9号34号室', '1985-03-29', 0, 0, 'gushi705', '2011-02-02', 'guoshihan', '2019-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS289979303468', '田杰倫', 1, '+81 52-803-9084', 2, '286655371267425118', '日本なごやし熱田区千年二丁目5番4号10階', '1995-03-10', 0, 0, 'tincl', '2007-01-31', 'chiehlunti', '2005-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS365573434058', '常晓明', 1, '+81 70-5252-8978', 3, '730694013170083680', '43F, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1997-02-21', 0, 0, 'chxiaoming820', '2013-08-18', 'chang416', '2005-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS460530321948', '何子异', 1, '+44 5810 111263', 2, '251695057593514437', 'Block 6, 551 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1987-07-14', 0, 0, 'ziyih', '2001-09-05', 'hziy', '2010-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS440340652485', '金子結翔', 1, '+86 20-0892-0956', 4, '401078511789691431', '中国广州市白云区小坪东路350号7室', '1988-12-04', 0, 0, 'kanekoyuit', '2021-04-11', 'yuitok', '2007-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS196877903953', 'Jerry Tucker', 1, '+44 7662 793364', 1, '739888155685081975', 'Block 21, 45 Regent Street, London, W1B 2LX, United Kingdom', '1992-12-20', 0, 0, 'jet201', '2015-01-26', 'jerrytuc', '2009-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS447590054637', '袁子异', 1, '+44 7068 366462', 1, '438596328457410327', 'Block 42, 263 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1988-01-04', 0, 0, 'ziyyuan', '2014-06-20', 'yuanziyi', '2006-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS038670262336', '邵世榮', 0, '+81 90-9128-2998', 3, '767324938329465318', '6F, 1-7-15 Omido, Higashiosaka, Osaka, Japan', '1998-09-19', 0, 0, 'saiwing1991', '2015-10-07', 'saiwingsiu7', '2012-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS936426916389', '萬曉彤', 0, '+81 70-4849-8800', 2, '730290617269748988', '日本札幌中央区宮の森四条六丁目1番6号21階', '1992-03-25', 0, 0, 'htmeng63', '2000-06-25', 'hiumeng', '2011-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS052897381484', '後藤百恵', 1, '+86 190-1072-0524', 0, '037090426232815515', 'No.18 building, 684 Dongtai 5th St, Dongguan, China', '1998-12-25', 0, 0, 'mgo', '2000-10-16', 'gomomo18', '2016-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS513374097783', '許麗欣', 0, '+44 (121) 741 8452', 0, '810736036048081615', 'Unit 12, Oxford Eco Centre, 347 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1993-11-16', 0, 0, 'huily', '2014-09-23', 'lyhui', '2008-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS291364974909', '許國權', 1, '+44 5053 349148', 1, '943681232312826613', 'Unit 38, Oxford Eco Centre, 61 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-05-16', 0, 0, 'hui3', '2006-06-21', 'kwokkuen71', '2020-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS068803847103', '董云熙', 1, '+81 90-7943-2952', 3, '717401461665703799', 'Rm. 35, 3-27-14 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1995-11-01', 0, 0, 'dong825', '2002-10-19', 'dong58', '2015-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS386037777154', '邹震南', 1, '+44 (20) 5613 9306', 3, '887344598800046460', 'Block 30, 27 Hanover Street, London, W1S 1YD, United Kingdom', '1988-02-17', 0, 0, 'zzo', '2007-04-05', 'zhenzou1963', '2002-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS398019768093', 'Louis Burns', 1, '+81 11-416-0856', 3, '118890859795259248', '日本札幌厚別区上野幌一条二丁目1番2号38号室', '1988-01-24', 0, 0, 'burnsl', '2003-01-29', 'burnlouis1967', '2017-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS963833882098', '翁朝偉', 0, '+44 7027 521922', 2, '109137968431370719', 'Unit 24, Oxford Eco Centre, 753 Mosley St, Manchester, M2 3AQ, United Kingdom', '1996-04-18', 0, 0, 'chiuwai10', '2002-11-14', 'yungcw', '2001-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS541586870528', '崔霆鋒', 1, '+81 11-037-3181', 1, '962837543739230911', '5-kai, 5-19-5 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1986-05-20', 0, 0, 'tingfung3', '2010-12-31', 'choitf', '2004-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS953889002575', '中川大輔', 1, '+86 10-098-3126', 0, '325604149738943469', '中国北京市延庆区028县道310号9楼', '1991-06-27', 0, 0, 'danak416', '2015-02-06', 'nakagawa203', '2021-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS004085750383', '工藤桜', 0, '+86 769-0277-3266', 1, '729342267430214270', 'Room 28, CR Building, 810 Huanqu South Street 2nd Alley, Dongguan, China', '1988-10-14', 0, 0, 'kudos', '2006-02-18', 'sakurakudo', '2016-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS797282254596', 'Frederick Cox', 0, '+81 70-0813-3306', 3, '589426074032389715', '36F, 3-19-1 Shimizu, Kita Ward, Nagoya, Japan', '1989-11-15', 0, 0, 'cof', '2019-10-23', 'cfred909', '2008-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS673175817885', '邵浩然', 1, '+86 149-9492-5704', 0, '399856935208648955', 'No.28 building, 55 Ganlan Rd, Pudong, Shanghai, China', '1994-08-26', 0, 0, 'hysiu1984', '2016-01-24', 'hoyins', '2020-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS653988556653', '罗震南', 0, '+81 80-7046-4731', 1, '352693418193740260', '日本なごやし北区清水三丁目19番5号39階', '1987-02-11', 0, 0, 'luozhen1949', '2003-06-29', 'zhennluo1942', '2010-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS963288636323', '石田詩乃', 0, '+86 185-6296-8006', 1, '061487225242281594', 'Room 7, CR Building, 852 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1989-06-13', 0, 0, 'ishida4', '2007-12-28', 'sishida', '2009-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS802442716273', '藤安琪', 1, '+1 614-284-3260', 0, '801288261017838322', '321 Wicklow Road Apt 33, Columbus, GA 43204, United States', '1990-10-18', 0, 0, 'tang1010', '2004-12-27', 'onkat', '2004-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS405770432665', '鄭朝偉', 1, '+44 5505 547528', 2, '828093008144590640', 'Block 7, 393 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1996-08-13', 0, 0, 'chengcw2', '2007-05-06', 'chiuwaicheng', '2013-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS922498140440', '李浩然', 0, '+81 3-4508-0240', 3, '704381704290716656', '35F, 5-2-11 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1993-10-08', 0, 0, 'hoyinl', '2008-04-27', 'hoyinlee', '2018-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS011797588440', '任云熙', 0, '+81 90-7487-7026', 0, '396883169005963529', '30-kai, 3-15-14 Ginza, Chuo-ku, Tokyo, Japan', '1986-10-20', 0, 0, 'renyunxi', '2019-01-04', 'reny', '2001-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS862520029200', '高子韬', 1, '+81 70-3962-5197', 2, '335004165569746259', 'Rm. 32, 12 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1991-02-14', 0, 0, 'zitaoga1029', '2000-10-23', 'zitaogao2011', '2014-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS628687912939', '黎惠敏', 0, '+1 614-688-5519', 3, '223544985856344118', '741 East Cooke Road Suite 47, Columbus, GA 43214, United States', '1991-12-02', 0, 0, 'laiwm6', '2021-12-08', 'wml', '2000-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS154014379534', 'Eva Woods', 1, '+1 330-464-9988', 1, '275599016779566908', '794 West Market Street Apartment 5, Akron, OH 44333, United States', '1997-07-15', 0, 0, 'ew53', '2017-08-12', 'woev', '2015-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS939146002801', '阎睿', 1, '+81 70-8360-7656', 2, '929039063706265052', '日本東京品川区東五反田五丁目2番19号38階', '1992-03-17', 0, 0, 'ruiyan', '2021-06-16', 'yanr', '2007-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS489915763719', '三浦架純', 1, '+44 (1223) 68 7476', 0, '690206925997894447', 'Unit 2, Oxford Eco Centre, 323 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1998-05-14', 0, 0, 'mika', '2018-03-28', 'miurkasumi', '2014-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS647784022341', 'Christina Williams', 1, '+81 90-7417-2319', 1, '463869619998168041', '日本なごやし北区清水三丁目19番3号18号室', '1998-12-04', 0, 0, 'chrwill', '2007-09-22', 'williamsch', '2021-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS423852870540', '白慧儀', 1, '+81 11-120-4873', 3, '628799760056289236', '47F, 5-2-7 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1992-05-04', 0, 0, 'pakwy', '2011-02-24', 'pakwy', '2012-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS037798858671', '劉青雲', 0, '+81 70-0804-1432', 2, '450626360285762038', '14-kai, 4-9-8 Kamihigashi, Hirano Ward, Osaka, Japan', '1991-07-01', 0, 0, 'laucw', '2021-02-09', 'lau00', '2004-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS053022286780', '渡部花', 1, '+86 175-1575-1570', 1, '137869319501186232', '3F, 96 68 Qinghe Middle St, Haidian District, Beijing, China', '1989-07-29', 0, 0, 'hanaw2', '2009-02-09', 'hanaw', '2014-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS308505684950', '廖天榮', 0, '+86 28-849-5706', 1, '763926211995916833', 'Room 49, CR Building, No.764, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1988-07-24', 0, 0, 'liaotw47', '2006-05-21', 'tinwingliao915', '2017-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS698163826980', 'Margaret Miller', 0, '+86 760-629-5248', 4, '393932435528112091', 'Room 14, CR Building, 592 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1987-04-09', 0, 0, 'marmiller44', '2007-04-15', 'millerm', '2003-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS298371339846', '胡晓明', 1, '+86 769-660-0923', 3, '229802439373664098', '中国东莞坑美十五巷244号华润大厦14室', '1988-03-11', 0, 0, 'huxiaoming5', '2021-04-03', 'hxiaoming', '2021-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS194430280110', 'Paul Aguilar', 1, '+1 718-872-7165', 2, '299136069476925583', '226 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1996-11-25', 0, 0, 'paul66', '2012-06-18', 'paulaguilar', '2011-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS151674937056', '狄天樂', 0, '+81 3-3292-7534', 3, '764773097973007911', '日本東京港区東新橋一丁目5番15号5号室', '1993-12-07', 0, 0, 'titinlok', '2002-05-14', 'tlt', '2013-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS517466235069', '韓志明', 1, '+1 614-472-6977', 2, '002309177865884491', '791 Wicklow Road Apartment 26, Columbus, GA 43204, United States', '1989-09-19', 0, 0, 'chiming5', '2008-03-03', 'cmhan68', '2007-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS150485546900', '今井一輝', 1, '+1 838-862-7154', 1, '112507087168701370', '663 Central Avenue Suite 30, Albany, NY 12205, United States', '1997-04-02', 0, 0, 'ikkiimai2001', '2003-12-13', 'ikki1', '2010-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS153330040262', '溫淑怡', 1, '+81 74-376-1051', 4, '898760446471333792', '44F, 13 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-02-17', 0, 0, 'sukyeewa', '2012-07-02', 'wansy', '2004-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS177502426912', 'Amy Long', 0, '+1 213-206-0210', 1, '087183762276606422', '214 S Broadway Suite 3, Los Angeles, CA 90015, United States', '1994-07-22', 0, 0, 'amy1', '2011-06-13', 'amyl', '2004-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS114778603969', 'Joseph Smith', 1, '+44 7627 563260', 1, '381680312854303139', 'Block 16, 292 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1992-11-15', 0, 0, 'smith86', '2012-08-28', 'jsmi', '2016-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS631944331445', '莫睿', 0, '+81 66-179-9100', 4, '440694053198433520', '26F, 3-27-4 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1990-03-28', 0, 0, 'ruim', '2018-11-15', 'morui', '2001-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS926992165137', '钟致远', 0, '+86 142-2895-0023', 1, '880432559842394162', 'No.16 building, 725 Dong Zhi Men, Dongcheng District, Beijing, China', '1986-07-12', 0, 0, 'zhonzhi', '2020-07-07', 'zhiyuanzhong', '2017-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS662825776285', '姚晓明', 1, '+44 5548 703559', 1, '196172180504481091', 'Unit 23, Oxford Eco Centre, 172 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1989-08-19', 0, 0, 'yaoxiao', '2001-04-06', 'yxi', '2014-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS817157760847', '増田詩乃', 0, '+44 5801 637422', 1, '398029861333842555', 'No.27 Main building, 175 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1997-11-04', 0, 0, 'masshi', '2007-06-01', 'shinoma1994', '2009-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS349235846501', '傅家明', 0, '+1 718-027-0013', 1, '992983857252141250', '10 Flatbush Ave Suite 27, Brooklyn, NY 11225, United States', '1996-05-11', 0, 0, 'kmfu', '2016-12-21', 'fukm', '2019-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS129931172151', '清水絢斗', 0, '+1 614-029-8496', 2, '206691676777582473', '858 East Alley Apartment 31, Columbus, GA 43201, United States', '1985-10-04', 0, 0, 'ayatos', '2010-07-19', 'shima', '2000-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS642456134502', 'Randall Vasquez', 1, '+44 (116) 522 5020', 1, '770070903686676776', 'Unit 48, Oxford Eco Centre, 620 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1996-04-23', 0, 0, 'vasquezr12', '2010-01-22', 'vran', '2006-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS931689957680', '田中大地', 0, '+86 10-1563-9825', 1, '832012310233194976', '中国北京市海淀区清河中街68号490号25号楼', '1994-07-17', 0, 0, 'daictana', '2008-02-19', 'daicht', '2020-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS801136987860', '阿部美月', 0, '+86 10-080-0800', 0, '327394362192476751', 'No.30 building, 794 FuXingMenNei Street, XiCheng District, Beijing, China', '1988-10-11', 0, 0, 'ami', '2005-11-15', 'mitsukiabe5', '2005-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS406692644833', '白力申', 0, '+1 330-898-9133', 3, '970794866578239829', '877 Collier Road 3rd Floor, Akron, OH 44320, United States', '1995-05-22', 0, 0, 'liksunp1973', '2001-05-08', 'pakliksun99', '2019-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS962800617812', '翁麗欣', 0, '+86 198-5610-4117', 2, '752740055507265578', 'No.28 building, 931 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1998-10-20', 0, 0, 'laiyany', '2009-01-21', 'yungly46', '2004-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS876970710724', '區仲賢', 0, '+1 330-085-1075', 1, '644678422188279303', '62 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1989-10-16', 0, 0, 'cyau1221', '2016-08-17', 'auchungyin9', '2013-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS418211260692', 'Rebecca Cox', 1, '+81 90-0616-0260', 2, '857053818290327779', '日本ならし西大寺赤田町一丁目7番18号23階', '1998-10-03', 0, 0, 'rc1981', '2006-02-12', 'rebecc', '2021-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS198555367831', 'Maria Foster', 1, '+44 (1223) 39 4311', 3, '948752672826797006', 'Unit 1, Oxford Eco Centre, 3 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1996-11-22', 0, 0, 'fostermaria', '2005-07-09', 'mfo6', '2011-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS895013296860', 'Russell Webb', 1, '+86 138-6106-0915', 4, '069773365542552373', 'No.38 building, 490 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1988-10-02', 0, 0, 'russell4', '2003-06-29', 'webbrussell', '2008-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS308291851450', '徐震南', 1, '+86 10-2451-9889', 1, '139132084297719742', 'No.35 building, 465 East Wangfujing Street, Dongcheng District , Beijing, China', '1988-01-20', 0, 0, 'zhennan6', '2008-08-17', 'zhennanxu10', '2015-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS939963632119', '宣志遠', 0, '+1 718-429-3541', 2, '054686346301970752', '528 Columbia St Apartment 37, Brooklyn, NY 11231, United States', '1998-08-23', 0, 0, 'hsuachiyuen', '2020-07-16', 'chiyuenhs', '2015-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS944063902708', 'Kenneth Webb', 0, '+44 5920 776226', 2, '633228521647446518', 'Flat 30, 886 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1990-02-08', 0, 0, 'kw10', '2010-05-13', 'kennethwebb99', '2020-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS803772213664', '谷口優奈', 1, '+81 90-3494-1146', 0, '770840420497161399', '6F, 2-1-12 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1989-05-08', 0, 0, 'taniguchiyu', '2007-02-26', 'yunta', '2018-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS657032417887', 'Charlotte Black', 1, '+86 10-017-6410', 4, '096255244051723889', '中国北京市西城区西長安街938号17栋', '1995-01-01', 0, 0, 'blaccharlotte', '2003-01-02', 'black723', '2018-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS632773466507', '上野美咲', 1, '+86 144-0180-1708', 2, '378509809337549953', '24F, 710 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1992-09-04', 0, 0, 'mu802', '2015-04-26', 'miueno15', '2008-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS199576135577', '野村美羽', 0, '+86 157-7377-3630', 4, '917407882719324807', '14F, 5 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1998-08-01', 0, 0, 'nmiu', '2011-07-24', 'miu86', '2007-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS815281634818', '李頴璇', 0, '+86 20-4415-5261', 1, '985240841166947232', 'Room 20, 63 Xiaoping E Rd, Baiyun , Guangzhou, China', '1995-08-30', 0, 0, 'wslee', '2005-05-03', 'wslee85', '2016-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS140539383912', '劉明', 1, '+86 20-3394-2972', 1, '352246788881050224', '中国广州市越秀区中山二路474号23楼', '1996-01-27', 0, 0, 'minglau', '2017-12-21', 'mlau305', '2006-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS958439623706', '前田海斗', 1, '+44 (116) 499 4506', 1, '565778386698957349', 'Unit 12, Oxford Eco Centre, 59 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1989-08-17', 0, 0, 'maeda5', '2006-09-10', 'km60', '2019-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS319520292571', '錢安娜', 0, '+81 90-5700-8515', 4, '129956527668924364', '日本おおさかし平野区加美東四丁目9番4号3階', '1986-07-11', 0, 0, 'onc65', '2008-07-22', 'conna', '2020-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS074925672123', '朱子异', 0, '+44 (151) 421 7846', 3, '528091679186723150', 'No.48 Main building, 609 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1985-04-07', 0, 0, 'zhuziyi2', '2000-01-14', 'zhz', '2018-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS583079401355', '孫俊宇', 0, '+1 212-421-5367', 1, '007760389894561533', '471 Wooster Street Apt 45, New York, NY 10012, United States', '1991-11-17', 0, 0, 'hcy', '2000-12-13', 'hsuan7', '2016-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS518963411505', 'Denise Rice', 1, '+44 5717 054160', 1, '019101175821859293', 'Unit 46, Oxford Eco Centre, 933 Hanover St, Liverpool, L1 4AF, United Kingdom', '1988-01-29', 0, 0, 'denisrice', '2010-02-23', 'ricden', '2018-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS753825732157', '毛天榮', 0, '+81 52-416-6654', 3, '667424627441777826', '日本なごやし北区清水三丁目19番19号36号室', '1993-07-31', 0, 0, 'mtw', '2013-08-26', 'mo41', '2012-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS990446511705', '尹嘉伦', 1, '+44 (116) 692 4204', 3, '002536481404695155', 'Unit 14, Oxford Eco Centre, 311 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1993-02-19', 0, 0, 'yinji5', '2019-06-28', 'jialun312', '2016-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS559148233941', '原悠人', 0, '+81 70-8010-6846', 0, '498914822364222200', '30-kai, 2-3-7 Yoyogi, Shibuya-ku, Tokyo, Japan', '1985-01-13', 0, 0, 'hara812', '2011-09-24', 'yutohara905', '2004-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS820462062488', 'Eva Fernandez', 1, '+86 184-6542-3489', 2, '836404750080826157', 'No.18 building, 457 Middle Huaihai Road, Huangpu District, Shanghai, China', '1988-06-17', 0, 0, 'eva7', '2021-10-29', 'eva13', '2014-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS165772935665', '向晓明', 1, '+81 66-402-5704', 0, '477240660203578069', '日本おおさかし東住吉区東田辺三丁目27番16号35階', '1993-07-02', 0, 0, 'xiang117', '2008-09-26', 'xx8', '2020-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS702787993929', '斉藤葉月', 0, '+44 7292 583203', 1, '753121020215012777', 'Unit 41, Oxford Eco Centre, 161 Regent Street, London, W1B 2LX, United Kingdom', '1993-12-31', 0, 0, 'saitoh', '2005-02-09', 'saito6', '2012-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS041923397089', '湯安娜', 1, '+1 213-089-9261', 0, '283447485306903014', '779 Wall Street Apartment 19, Los Angeles, CA 90003, United States', '1987-09-28', 0, 0, 'onton', '2021-02-23', 'ontong', '2004-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS093144116955', 'Sean Murphy', 1, '+44 5561 708910', 3, '047840303797332362', 'Unit 17, Oxford Eco Centre, 429 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1997-09-30', 0, 0, 'murphsean', '2001-08-30', 'ms4', '2019-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS950743549472', '千葉明菜', 0, '+1 838-435-5738', 3, '376199746418427177', '229 Lark Street Suite 12, Albany, NY 12210, United States', '1987-01-22', 0, 0, 'akinchiba', '2004-12-16', 'chiba5', '2001-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS509197892733', '宮本美緒', 0, '+81 3-0179-1989', 2, '763908501291638597', '日本東京品川区東五反田五丁目2番2号34階', '1985-02-18', 0, 0, 'mio1953', '2005-05-26', 'miymio', '2019-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS735410148104', '唐宇宁', 0, '+86 760-966-7571', 3, '023251926599961479', '中国中山京华商圈华夏街76号11号楼', '1986-04-21', 0, 0, 'yunitang', '2008-08-06', 'yunintang3', '2003-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS600279425166', 'Frederick Aguilar', 0, '+86 28-5844-8432', 4, '198846354166586209', '中国成都市成华区玉双路6号206号7室', '1986-06-18', 0, 0, 'aguilarfrederick', '2020-09-28', 'aguilar00', '2011-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS761544582533', '木下美月', 1, '+86 172-9949-6505', 0, '298170067041996189', '中国东莞环区南街二巷367号19号楼', '1994-01-13', 0, 0, 'mitsuki2', '2013-07-26', 'mitsuki708', '2001-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS012337081093', '谷口結翔', 0, '+44 (1865) 04 1728', 1, '134997615598548872', 'Unit 31, Oxford Eco Centre, 449 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-05-12', 0, 0, 'yuitotaniguchi', '2010-11-16', 'yuit', '2010-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS380496840124', '梁心穎', 1, '+81 70-2715-8573', 0, '397836761286786251', '31F, 4 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-12-14', 0, 0, 'sumwing1118', '2005-10-22', 'swleun', '2011-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS187395142918', '薛杰宏', 1, '+86 199-8449-4747', 2, '520437365686256223', 'Room 12, 149 Xiaoping E Rd, Baiyun , Guangzhou, China', '1992-11-17', 0, 0, 'jiehongx9', '2002-01-09', 'jxue', '2000-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS659740979440', '中山大地', 1, '+86 164-3782-0151', 2, '754841582940782092', 'Room 29, CR Building, 768 Jianxiang Rd, Pudong, Shanghai, China', '1993-08-26', 0, 0, 'nakayamadaichi', '2016-12-31', 'nakayd', '2006-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS020383268655', '上野紗良', 1, '+86 21-178-2591', 3, '841100813791350037', 'No.13 building, 265 Binchuan Rd, Minhang District, Shanghai, China', '1998-09-09', 0, 0, 'ues2', '2007-06-25', 'sarau', '2002-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS953148403204', '薛天榮', 1, '+81 70-2281-8512', 0, '120982646178563094', '17F, 5-19-17 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1990-07-22', 0, 0, 'sittw7', '2018-10-05', 'tinwings', '2021-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS802813711402', '戴岚', 0, '+86 192-4542-3282', 2, '843388139370609656', '中国中山紫马岭商圈中山五路83号华润大厦5室', '1986-02-16', 0, 0, 'dal', '2002-08-15', 'lan328', '2002-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS632115634471', '邵宇宁', 1, '+44 5355 610788', 1, '761308625706873669', 'Flat 37, 836 Hanover Street, London, W1S 1YD, United Kingdom', '1988-02-16', 0, 0, 'yuningshao630', '2009-08-16', 'yuning1', '2007-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS144161212211', '太田葵', 1, '+1 213-278-5840', 3, '727262458231307414', '409 Figueroa Street Suite 9, Los Angeles, CA 90037, United States', '1997-08-25', 0, 0, 'aoo1957', '2000-02-23', 'otaoi', '2007-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS832690159321', '馬國榮', 1, '+44 5853 539111', 3, '263792778242557849', 'Block 38, 501 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1987-06-29', 0, 0, 'ma320', '2005-12-24', 'kwma75', '2010-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS164597388166', '柴田玲奈', 1, '+86 10-985-6958', 2, '537684119353328036', '中国北京市東城区東直門內大街160号14楼', '1989-02-06', 0, 0, 'renashibata', '2004-12-28', 'rena79', '2018-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS649281772955', '李安娜', 0, '+81 80-8027-4472', 4, '041972629365954561', '日本東京港区東新橋一丁目5番2号11階', '1992-07-23', 0, 0, 'lee3', '2013-12-10', 'leeon1213', '2013-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS828792150310', '渡辺玲奈', 0, '+1 718-291-3563', 2, '538955344571582999', '333 Nostrand Ave Suite 12, Brooklyn, NY 11216, United States', '1998-11-14', 0, 0, 'satoren', '2011-09-10', 'satr', '2011-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS572564326425', '高永發', 0, '+1 213-058-8845', 3, '517365086095930641', '273 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1993-12-16', 0, 0, 'kaowingfat', '2015-05-08', 'kao2003', '2011-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS574364407388', '小島美羽', 0, '+86 10-3307-4750', 4, '195955940724152905', '4F, 65 Sanlitun Road, Chaoyang District, Beijing, China', '1994-07-19', 0, 0, 'kojimiu', '2020-02-24', 'kojima16', '2019-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS540901074363', 'Russell Dixon', 1, '+86 28-442-8521', 3, '529482839513382265', 'No.33 building, 633 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1985-08-09', 0, 0, 'rdixon1230', '2019-02-22', 'rdixon', '2014-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS072384878663', '张震南', 1, '+81 66-705-7627', 4, '314483437849026099', '日本おおさかし東住吉区東田辺三丁目27番1号44階', '1986-03-06', 0, 0, 'zhaz', '2002-08-20', 'zhang404', '2009-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS812939279588', '胡宇宁', 1, '+81 90-3566-4510', 1, '001980532464469116', '日本なごやし北区清水三丁目19番17号21号室', '1989-06-18', 0, 0, 'hu204', '2017-03-20', 'huyun1980', '2020-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS477760248865', 'Ricky Silva', 1, '+81 11-316-2750', 2, '763713817588522896', 'Rm. 35, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-08-13', 0, 0, 'ricky3', '2014-07-31', 'rickys7', '2001-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS196808325782', '吳潤發', 1, '+44 (161) 677 6856', 3, '167226866882108410', 'Flat 39, 211 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1993-03-03', 0, 0, 'yunfatng', '2001-06-01', 'ngyf1013', '2006-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS874932079054', '石子韬', 1, '+1 312-608-7780', 3, '847977053073201008', '178 Rush Street Apartment 17, Chicago, IL 60611, United States', '1993-08-16', 0, 0, 'zitaos', '2007-06-11', 'shizitao', '2020-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS629970601367', '向致远', 0, '+86 20-2571-8330', 2, '114158662373958521', 'No.23 building, 946 Jiangnan West Road, Haizhu District, Guangzhou, China', '1987-10-30', 0, 0, 'zhiyuanx418', '2008-06-26', 'zhiyuan7', '2011-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS118044478294', '黎家玲', 0, '+81 66-895-9641', 3, '911245362758208827', '日本おおさかし西成区天神ノ森二丁目1番5号38階', '1986-10-09', 0, 0, 'kll', '2019-10-27', 'kllai708', '2020-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS579272016563', '叶云熙', 1, '+86 755-674-0247', 4, '389638141864802635', 'Room 6, CR Building, 767 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1992-04-25', 0, 0, 'yyunxi', '2008-09-17', 'ye305', '2010-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS498679689072', '小林絢斗', 1, '+81 3-0710-6376', 1, '519625967689555178', '日本東京品川区東五反田五丁目2番4号23階', '1986-07-30', 0, 0, 'akobay312', '2012-09-18', 'kobayashiay705', '2012-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS218794249268', '村田桜', 1, '+1 312-535-6899', 3, '435603908617042970', '110 North Michigan Ave Apartment 18, Chicago, IL 60611, United States', '1998-11-28', 0, 0, 'sakurmurata', '2002-02-02', 'muras', '2019-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS305812844583', 'Nicole Payne', 1, '+81 90-5361-9533', 4, '258302234358222776', '日本おおさかし東住吉区東田辺三丁目27番4号22階', '1992-04-04', 0, 0, 'payne6', '2015-09-29', 'payne6', '2011-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS261417627011', '曾慧儀', 0, '+1 614-571-4384', 2, '522749927088349530', '189 East Cooke Road Apartment 23, Columbus, GA 43214, United States', '1992-01-22', 0, 0, 'wytsang', '2007-04-15', 'tsang1953', '2005-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS155957189992', 'Ryan Stephens', 1, '+86 28-0226-7436', 0, '052057616484778856', 'No.22 building, No. 222, Shuangqing Rd, Chenghua District, Chengdu, China', '1989-03-03', 0, 0, 'stephens5', '2016-05-07', 'sr10', '2002-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS067344725146', '藍世榮', 1, '+81 66-897-3334', 1, '659085978243856553', '19-kai, 4-9-12 Kamihigashi, Hirano Ward, Osaka, Japan', '1986-10-02', 0, 0, 'saiwingl85', '2009-10-04', 'swlam', '2003-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS653055372609', 'Lois Baker', 0, '+81 3-8603-8524', 2, '657814511826125737', 'Rm. 12, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1992-09-11', 0, 0, 'baklois', '2013-09-03', 'lbaker', '2021-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS964303201368', '尹詠詩', 0, '+86 191-6347-7176', 4, '026646846413092738', 'No.18 building, 690 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1997-10-11', 0, 0, 'wingszey1001', '2005-01-13', 'wingszeyi', '2010-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS874957188087', '遠藤美咲', 1, '+44 (1223) 74 8334', 1, '846450142566821444', 'Flat 23, 830 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1997-10-21', 0, 0, 'endomis', '2010-03-31', 'miend', '2008-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS767632361639', 'Luis Olson', 0, '+81 80-9899-3175', 2, '966251107281369083', '日本なごやし北区清水三丁目19番16号41階', '1995-05-10', 0, 0, 'oluis106', '2012-01-29', 'ol81', '2006-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS914070778635', '陶睿', 0, '+86 21-5967-6767', 0, '984930980316561370', '中国上海市浦东新区橄榄路841号20楼', '1988-07-09', 0, 0, 'taorui', '2011-11-02', 'taor5', '2004-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS382735256966', '菊地明菜', 0, '+81 11-389-4700', 1, '206066119037825981', 'Rm. 12, 13-3-5 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1993-04-09', 0, 0, 'kikuchi8', '2017-07-30', 'akinakiku6', '2011-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS780110135411', '井上光', 1, '+81 74-807-1855', 1, '949658363922276244', '12-kai, 1-7-6 Saidaiji Akodacho, Nara, Japan', '1987-06-06', 0, 0, 'inouhikaru1', '2005-08-17', 'hiinoue3', '2001-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS157691466625', '島田彩乃', 1, '+86 10-7903-4404', 1, '175210473398144796', '中国北京市海淀区清河中街68号678号35栋', '1995-11-12', 0, 0, 'shay', '2021-01-23', 'sa17', '2004-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS461577625633', '薛睿', 1, '+81 66-005-0934', 2, '722317417510902634', '日本おおさかし近江堂一丁目7番8号12階', '1990-03-17', 0, 0, 'ruixue1127', '2006-02-11', 'ruxu', '2008-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS053387211604', 'Nicole Tucker', 1, '+44 (20) 1186 4257', 1, '147260067024224804', 'Flat 19, 448 Maddox Street, London, W1S 1PU, United Kingdom', '1990-03-21', 0, 0, 'nicoletuck9', '2013-10-21', 'nicoletuc7', '2013-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS136313604336', '加藤百花', 1, '+81 11-371-7828', 2, '783385139105275504', '27F, 5-19-16 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1996-01-27', 0, 0, 'momokakato', '2005-09-08', 'mokato', '2011-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS657541129353', '島田玲奈', 1, '+1 330-041-6988', 2, '354387236819877293', '662 West Market Street Apt 25, Akron, OH 44333, United States', '1989-11-06', 0, 0, 'shimrena', '2013-06-10', 'shimada923', '2003-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS344248606707', 'Paul Harris', 1, '+86 166-7938-6379', 0, '010258919646436195', '中国广州市海珠区江南西路597号19室', '1994-01-28', 0, 0, 'hpaul97', '2004-04-21', 'harrispa907', '2017-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS025073766858', '李璐', 0, '+81 66-341-8812', 2, '881706695391431243', '日本おおさかし西成区出城一丁目1番9号9階', '1994-02-17', 0, 0, 'lilu502', '2001-10-26', 'lilu1', '2021-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS351992472692', 'Diane Kelley', 0, '+86 177-4993-6886', 0, '167999102324036923', '中国成都市锦江区人民南路四段991号28号楼', '1990-09-04', 0, 0, 'kelldiane1103', '2014-01-02', 'diakelle', '2003-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS902399706183', 'Harry Russell', 0, '+1 213-171-3402', 0, '188756704183334475', '394 Wall Street Apt 45, Los Angeles, CA 90003, United States', '1988-07-31', 0, 0, 'hrussell', '2002-02-23', 'rh59', '2005-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS783035221558', 'Willie Holmes', 0, '+86 136-0328-2210', 1, '206589115808444404', '中国深圳罗湖区蔡屋围深南东路390号1号楼', '1996-02-13', 0, 0, 'who', '2016-05-02', 'holmew916', '2001-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS875045062509', '楊家輝', 0, '+86 769-400-2346', 1, '573285244492438035', 'No.26 building, 972 Dongtai 5th St, Dongguan, China', '1987-05-16', 0, 0, 'yeung314', '2016-10-31', 'ykf6', '2000-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS912661308065', '麥志遠', 1, '+1 718-148-2579', 4, '779986138885590612', '146 Nostrand Ave Apartment 7, Brooklyn, NY 11216, United States', '1992-10-13', 0, 0, 'cyma3', '2008-07-14', 'makcy1', '2007-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS526234744576', '島田和真', 0, '+44 5850 018541', 1, '480234070246239172', 'Flat 11, 59 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1985-06-27', 0, 0, 'ks86', '2002-08-08', 'kazushimada', '2008-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS904146497045', '區仲賢', 1, '+1 213-351-1844', 2, '864899814098918762', '833 Alameda Street Apt 16, Los Angeles, CA 90002, United States', '1994-08-02', 0, 0, 'cyau', '2010-11-04', 'chungyinau2', '2018-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS644496266987', 'Christina Taylor', 0, '+1 330-006-4451', 1, '858045332587184086', '866 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1990-11-20', 0, 0, 'taylorch', '2003-12-02', 'taychri2', '2002-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS752174716823', '袁祖兒', 1, '+44 5652 339047', 0, '656961827553584051', 'Unit 21, Oxford Eco Centre, 352 Portland St, Manchester, M1 3LA, United Kingdom', '1994-07-08', 0, 0, 'cyyuen', '2006-09-07', 'yuency1964', '2002-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS859975600556', '卢杰宏', 1, '+86 199-8598-0236', 0, '340507540170917181', 'No.48 building, 150 Xiaoping E Rd, Baiyun , Guangzhou, China', '1986-03-02', 0, 0, 'jieholu', '2012-07-02', 'lujiehong55', '2012-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS231104850639', '河野玲奈', 1, '+86 755-911-5760', 0, '559052801709403864', '中国深圳罗湖区蔡屋围深南东路144号50室', '1991-01-14', 0, 0, 'kono2011', '2014-05-30', 'konorena', '2014-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS657853113200', '丸山悠人', 1, '+1 330-976-4582', 4, '952224751687998292', '141 West Market Street 3rd Floor, Akron, OH 44333, United States', '1993-03-06', 0, 0, 'yutomaruyama623', '2018-12-14', 'yutomaruyama2003', '2017-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS789455852267', '萧晓明', 0, '+44 (1223) 77 2973', 2, '405319600354866987', 'Block 1, 793 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1990-04-15', 0, 0, 'xixiao212', '2012-04-28', 'xiaox8', '2013-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS046654363773', 'Paul Rodriguez', 0, '+81 80-7010-8375', 3, '745393309986378773', 'Rm. 8, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1989-04-08', 0, 0, 'paulr', '2009-10-11', 'paurodriguez1', '2006-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS992491267273', '曹杰宏', 1, '+1 213-989-5112', 1, '300821528206237204', '692 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1998-08-12', 0, 0, 'jiehongcao', '2014-11-30', 'cji9', '2020-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS055461106433', 'Emma Ford', 0, '+86 153-6087-7945', 2, '954406257242779614', '中国深圳罗湖区蔡屋围深南东路941号华润大厦32室', '1988-10-19', 0, 0, 'ford07', '2007-02-03', 'eford94', '2009-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS764500079792', '井上愛梨', 0, '+86 10-1529-3788', 1, '191642458914554457', 'Room 2, CR Building, 188 FuXingMenNei Street, XiCheng District, Beijing, China', '1988-07-02', 0, 0, 'inoue53', '2019-08-18', 'airino', '2007-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS345988300459', 'Timothy West', 1, '+86 769-0870-9866', 4, '172704511041647909', 'Room 22, CR Building, 460 Kengmei 15th Alley, Dongguan, China', '1995-05-27', 0, 0, 'westtimothy', '2017-12-29', 'timothy44', '2017-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS293678368869', '曾明', 0, '+86 130-3668-2613', 3, '835793280956693704', 'Room 46, 438 68 Qinghe Middle St, Haidian District, Beijing, China', '1995-03-09', 0, 0, 'mingtsang', '2018-07-03', 'tsangming606', '2008-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS275209098071', '江子韬', 0, '+81 90-8077-9985', 3, '890790023881355158', '24F, 3-9-7 Gakuenminami, Nara, Japan', '1995-01-29', 0, 0, 'jiangzi', '2018-01-18', 'jiang1126', '2003-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS953338779744', '森陸', 1, '+81 80-4061-8444', 3, '458958060381695256', '17F, 1-6-10, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1997-05-26', 0, 0, 'rikum1', '2020-09-04', 'riku1016', '2022-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS801554924101', '岡田花', 1, '+44 (116) 550 8320', 1, '105719780784043053', 'Unit 30, Oxford Eco Centre, 983 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1991-06-07', 0, 0, 'okadahana', '2010-04-13', 'okadahana', '2011-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS466302905496', '金宇宁', 0, '+44 7057 856665', 3, '055391596166263670', 'Unit 12, Oxford Eco Centre, 57 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-04-27', 0, 0, 'jinyun', '2019-01-23', 'jinyuning', '2007-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS555449829986', '餘永權', 0, '+1 213-625-6269', 0, '416685593057497239', '227 Alameda Street Suite 38, Los Angeles, CA 90002, United States', '1998-05-07', 0, 0, 'yuewk', '2006-05-07', 'yuewk', '2002-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS823873892082', '池田蓮', 1, '+86 172-4649-8890', 4, '976598048542136144', '中国北京市朝阳区三里屯路575号15号楼', '1998-12-05', 0, 0, 'ren3', '2011-11-08', 'ikedaren', '2019-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS116567075429', '罗安琪', 0, '+44 7396 190931', 1, '209155628239839239', 'No.18 Main building, 511 Sackville St, Manchester, M1 3BB, United Kingdom', '1995-11-14', 0, 0, 'luo620', '2010-10-15', 'luanqi1947', '2003-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS957729401516', '青木紗良', 1, '+81 90-4931-1397', 2, '891132241731250684', '33F, 5-19-1 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-09-26', 0, 0, 'aokisara', '2009-09-01', 'aokisara', '2015-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS288847607561', '谢云熙', 1, '+86 193-8969-3186', 1, '760629069187845785', '中国北京市東城区東直門內大街31号25室', '1999-02-09', 0, 0, 'yxie4', '2001-07-20', 'xie722', '2011-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS121520985327', '渡部舞', 0, '+81 90-0737-8338', 2, '252818465610000886', 'Rm. 35, 17 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-03-10', 0, 0, 'watanabe1999', '2007-06-09', 'wmai', '2013-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS330154253339', '许子异', 1, '+1 330-563-2196', 0, '846765756307538295', '93 Riverview Road Apt 47, Akron, OH 44313, United States', '1989-07-10', 0, 0, 'ziyxu', '2013-02-21', 'ziyixu', '2018-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS003865898789', '何睿', 1, '+86 190-7904-4672', 0, '820855829360350650', 'Room 19, 590 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1998-07-10', 0, 0, 'rui618', '2007-06-06', 'rui825', '2009-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS597179638585', '謝惠敏', 0, '+81 52-694-0884', 1, '905784501926066485', '25-kai, 10 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1988-11-04', 0, 0, 'waimantse', '2022-01-14', 'waimantse4', '2015-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS180375948440', 'Johnny Ramirez', 0, '+44 (1865) 00 5786', 2, '129104310586384764', 'Block 46, 262 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1986-08-30', 0, 0, 'ramirez9', '2006-07-12', 'ramirez825', '2004-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS656002331840', '姚發', 1, '+86 160-6709-9783', 4, '897961517720260279', 'Room 16, 585 Yueliu Rd, Fangshan District, Beijing, China', '1990-12-31', 0, 0, 'yeowfat', '2002-01-07', 'yfa', '2013-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS255745278419', 'Jonathan Kelley', 0, '+1 212-824-2783', 3, '522996930633060222', '976 West Houston Street 3rd Floor, New York, NY 10014, United States', '1999-01-10', 0, 0, 'jonathan2', '2005-02-23', 'kelleyjon', '2012-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS276892397665', 'Jacob Rodriguez', 0, '+86 141-1550-3227', 2, '931710132281297728', 'Room 46, CR Building, 325 Kengmei 15th Alley, Dongguan, China', '1988-11-11', 0, 0, 'rodriguezjac1014', '2022-01-05', 'jacorodriguez88', '2000-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS338061802757', '樊詩君', 0, '+1 838-553-7393', 2, '460743114405073221', '886 State Street Suite 29, Albany, NY 12203, United States', '1994-03-01', 0, 0, 'fan2002', '2003-06-06', 'skfan7', '2015-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS772056526031', '雷家強', 0, '+86 21-568-5269', 3, '422651181006968728', '中国上海市浦东新区橄榄路78号42栋', '1998-09-03', 0, 0, 'kakel802', '2007-10-12', 'loui55', '2009-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS366561883121', 'Pamela Dixon', 0, '+81 66-295-5764', 2, '170991952696962558', '日本おおさかし西成区天神ノ森二丁目1番17号15階', '1994-09-26', 0, 0, 'pameladixon9', '2015-11-19', 'pamela10', '2019-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS616147699394', 'Virginia Robertson', 0, '+86 760-0337-1331', 2, '826053206831766490', 'No.22 building, 669 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1986-11-06', 0, 0, 'robvirginia19', '2015-10-26', 'virginia402', '2007-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS710276218869', '中野絢斗', 0, '+1 312-613-0586', 4, '500592518166294068', '772 Pedway 3rd Floor, Chicago, IL 60601, United States', '1986-06-15', 0, 0, 'anakano', '2010-05-29', 'ayaton65', '2013-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS609588248538', '邵玲玲', 0, '+44 (1865) 90 2468', 0, '681579145206908925', 'Unit 43, Oxford Eco Centre, 811 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-11-14', 0, 0, 'linglingsiu', '2017-08-16', 'lingling8', '2003-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS740617772376', '松井七海', 1, '+44 7983 788460', 3, '585007495061599467', 'Unit 43, Oxford Eco Centre, 500 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1986-07-26', 0, 0, 'nanamimatsui3', '2005-10-04', 'nanamatsui921', '2000-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS568294280250', 'Katherine Moreno', 1, '+1 614-510-0090', 4, '279184677450195712', '26 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1990-12-02', 0, 0, 'moreno905', '2006-09-25', 'kam', '2004-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS035949125076', 'Bryan Tran', 1, '+86 769-9799-9969', 2, '250579542164934626', '中国东莞环区南街二巷101号37号楼', '1997-10-21', 0, 0, 'bryantran81', '2007-10-28', 'trbryan', '2013-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS215502049225', '高橋陽菜', 0, '+44 (1865) 57 0016', 0, '068820293800543008', 'No.2 Main building, 418 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1990-01-17', 0, 0, 'hinatakahashi828', '2013-04-30', 'takahhina', '2008-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS167592282310', '葉嘉欣', 1, '+81 11-067-8736', 4, '903290934049727294', '日本札幌白石区菊水三条五丁目2番11号3階', '1987-01-01', 0, 0, 'yky', '2000-12-21', 'yipky1108', '2007-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS892407288150', '今井愛梨', 1, '+1 330-321-2708', 4, '734624942043261796', '871 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1991-04-08', 0, 0, 'airiimai', '2016-08-20', 'imaairi10', '2015-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS867616834463', '安藤海斗', 1, '+1 213-076-1899', 3, '881086002258393881', '404 Sky Way Apt 12, Los Angeles, CA 90043, United States', '1995-06-26', 0, 0, 'ando1', '2011-08-14', 'kando', '2016-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS188614715209', 'Gerald Meyer', 0, '+44 (121) 265 7592', 0, '094744086517442804', 'No.8 Main building, 369 New Street, Birmingham, B2 4DB, United Kingdom', '1993-12-25', 0, 0, 'geralm', '2017-09-10', 'gmeyer', '2013-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS682832392840', '唐秀英', 1, '+86 156-7891-1922', 3, '304154012669270244', '中国北京市海淀区清河中街68号788号3号楼', '1996-12-23', 0, 0, 'tangxiuying', '2013-05-30', 'xiuyingt', '2006-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS166127386013', 'Aaron Parker', 1, '+44 5534 211782', 4, '641414762051462412', 'Block 27, 272 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1997-07-30', 0, 0, 'aaparke110', '2011-06-07', 'paraaron', '2018-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS822177994154', '黃天榮', 0, '+81 80-7425-8689', 2, '372441471831189233', '日本札幌厚別区上野幌一条二丁目1番10号23号室', '1989-10-12', 0, 0, 'wtinwing415', '2014-08-16', 'wotw322', '2001-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS823342814897', '馬朝偉', 0, '+86 174-3173-5420', 1, '240010787847039456', 'Room 21, 949 Sanlitun Road, Chaoyang District, Beijing, China', '1994-07-22', 0, 0, 'ma8', '2007-04-08', 'machiuwai', '2017-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS400706630097', '顾子异', 0, '+81 3-7198-1359', 1, '970000270989022558', '日本東京品川区東五反田五丁目2番9号12号室', '1990-01-15', 0, 0, 'ziyigu55', '2021-02-03', 'ziyigu', '2019-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS304776476805', '三浦健太', 0, '+81 80-4976-6513', 0, '848958461106539918', '日本おおさかし近江堂一丁目7番11号14階', '1997-05-22', 0, 0, 'kenta1215', '2013-11-22', 'kentamiu', '2011-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS328638533739', 'Amber Vasquez', 1, '+1 838-801-5279', 2, '523750125555626024', '509 State Street 3rd Floor, Albany, NY 12203, United States', '1989-08-04', 0, 0, 'vasqamber', '2011-05-15', 'ambevasq', '2009-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS662725423282', 'Thelma Ellis', 1, '+1 718-317-4966', 3, '224448763897655819', '680 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1992-10-08', 0, 0, 'ellist', '2017-04-04', 'ellisthe815', '2011-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS310448098891', '钟詩涵', 0, '+1 330-535-4768', 3, '375390945634398551', '409 Fern Street 3rd Floor, Akron, OH 44307, United States', '1996-12-22', 0, 0, 'zhong06', '2021-11-07', 'sz9', '2002-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS149232324636', 'Todd Hall', 1, '+86 185-4317-3407', 1, '472449867038809137', '中国深圳福田区深南大道887号14楼', '1992-12-28', 0, 0, 'todd42', '2018-07-26', 'haltodd212', '2003-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS281240734263', '森優奈', 1, '+1 614-728-7292', 0, '585233408660104679', '556 Tremont Road Suite 20, Columbus, GA 43212, United States', '1993-10-28', 0, 0, 'myuna', '2000-10-27', 'yunamori1204', '2020-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS120029002737', '余嘉伦', 1, '+86 180-1711-5340', 2, '263425488630654165', '中国北京市朝阳区三里屯路89号10室', '1997-05-16', 0, 0, 'yu18', '2014-10-19', 'yujialun', '2007-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS215861313014', '林慧嫻', 1, '+81 3-0377-0750', 2, '497642456589906160', 'Rm. 16, 1-6-9, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1990-02-17', 0, 0, 'lam2', '2020-08-17', 'waihanlam', '2001-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS751245867858', '蒋子韬', 0, '+81 70-6463-1471', 1, '228038206845540920', '日本札幌清田区真栄四条五丁目19番4号27号室', '1987-11-05', 0, 0, 'jiangzit', '2019-10-28', 'zitaoji3', '2002-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS937670301151', '陈宇宁', 1, '+81 90-9879-8537', 1, '275984928455438434', '15-kai, 4 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-12-11', 0, 0, 'chenyun1107', '2018-05-04', 'chen2', '2005-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS390683535319', 'Craig King', 0, '+81 11-773-7367', 3, '763677099768318819', '49-kai, 5-4-15 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1985-07-12', 0, 0, 'craigking817', '2009-02-19', 'kingc', '2019-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS711153014706', '袁子韬', 1, '+44 (121) 230 5014', 2, '470206011231934041', 'Flat 47, 261 New Street, Birmingham, B2 4DB, United Kingdom', '1993-04-06', 0, 0, 'yuan514', '2019-06-08', 'zitaoyuan', '2017-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS630181892614', '文杰倫', 0, '+86 148-4942-0528', 2, '175016175452329474', 'No.26 building, 376 Ganlan Rd, Pudong, Shanghai, China', '1985-07-24', 0, 0, 'chiehlunman52', '2005-10-26', 'manchiehlun', '2000-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS848416608538', '清水絢斗', 0, '+86 769-193-2119', 3, '722628989855447420', 'Room 42, 661 Kengmei 15th Alley, Dongguan, China', '1986-01-24', 0, 0, 'shimizuayato6', '2006-09-17', 'ayatos9', '2015-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS612609322472', '任榮發', 1, '+86 28-8189-8088', 0, '073325732565700758', 'Room 24, No.631, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1987-12-29', 0, 0, 'wfyam10', '2019-08-19', 'wingfaty', '2015-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS743828823357', '袁仲賢', 0, '+1 212-497-9671', 1, '787673691387608199', '624 Wooster Street Apartment 10, New York, NY 10012, United States', '1988-01-20', 0, 0, 'yuency', '2017-11-13', 'chungyin916', '2003-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS225715636302', '江力申', 1, '+44 7730 354133', 2, '958252586341449120', 'Flat 24, 255 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1995-04-05', 0, 0, 'kongliksun', '2019-02-24', 'kols', '2009-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS405268545690', '清水陸', 0, '+44 (161) 986 8366', 3, '832607591039977469', 'No.2 Main building, 226 Portland St, Manchester, M1 3LA, United Kingdom', '1986-11-12', 0, 0, 'shimizuri7', '2021-10-31', 'rishimizu', '2015-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS603433657117', '鄧慧嫻', 1, '+81 74-118-5597', 2, '246123177011965787', '日本ならし西大寺赤田町一丁目7番18号4階', '1995-09-25', 0, 0, 'whtan3', '2015-02-21', 'tangwh', '2019-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS615263259721', '遠藤彩乃', 1, '+81 90-3067-5764', 1, '560750089402239082', '11-kai, 3-9-2 Gakuenminami, Nara, Japan', '1991-11-19', 0, 0, 'eayano', '2004-06-14', 'ayano4', '2011-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS243945241938', '苏璐', 0, '+81 52-242-5074', 3, '669559843604049819', '16F, 5 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-03-22', 0, 0, 'sulu83', '2006-09-14', 'su91', '2000-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS110573262564', '丁致远', 1, '+86 181-0100-7362', 3, '770415962690009153', '中国北京市朝阳区三里屯路488号华润大厦9室', '1988-06-15', 0, 0, 'zhiyuan7', '2015-04-13', 'diz', '2007-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS472733739253', 'Mario Johnson', 1, '+1 330-036-2435', 3, '726645089252336758', '502 West Market Street 3rd Floor, Akron, OH 44333, United States', '1993-12-17', 0, 0, 'johnson10', '2010-12-21', 'jom', '2004-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS425903929591', '罗睿', 0, '+86 182-4140-4081', 1, '576294883413241462', 'No.31 building, 935 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1991-07-18', 0, 0, 'luoru10', '2006-09-11', 'luor', '2003-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS163054383820', '斉藤瑛太', 0, '+86 141-7110-7016', 2, '457110087266632151', 'Room 28, 18 Lefeng 6th Rd, Zhongshan, China', '1990-09-05', 0, 0, 'eita4', '2020-08-15', 'eits52', '2019-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS617559916872', 'Rebecca Brown', 0, '+86 190-8084-7916', 0, '913020327526268112', '中国上海市浦东新区健祥路212号29室', '1990-03-26', 0, 0, 'brownrebec5', '2013-06-20', 'brownr1', '2010-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS664038816527', '新井花', 1, '+44 (1223) 19 8149', 2, '204562030215462788', 'No.22 Main building, 723 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1987-03-10', 0, 0, 'hara', '2003-11-03', 'arai77', '2005-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS493816015983', '薛杰宏', 1, '+44 5307 055107', 3, '096716794664049772', 'Unit 5, Oxford Eco Centre, 672 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1993-04-07', 0, 0, 'jixue58', '2014-09-21', 'xuej', '2019-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS487131045523', '桜井明菜', 0, '+81 70-0025-6450', 3, '104998481320258365', '47F, 8 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-09-03', 0, 0, 'sakurai723', '2004-06-06', 'sakurai7', '2003-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS432765764405', '蒋云熙', 1, '+81 70-1689-0008', 3, '337936589479551256', '47-kai, 3-15-11 Ginza, Chuo-ku, Tokyo, Japan', '1987-03-31', 0, 0, 'yjiang', '2020-12-19', 'yunxijiang', '2019-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS854732417918', '山本湊', 1, '+81 3-9935-9267', 3, '876131312689430547', '49-kai, 1-5-18, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-05-02', 0, 0, 'minayama', '2004-05-11', 'minatoyamamoto', '2013-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS563566924190', '狄裕玲', 0, '+81 90-5056-3247', 3, '997725942434118934', '日本なごやし北区清水三丁目19番10号45号室', '1989-08-19', 0, 0, 'tiyl1014', '2002-08-16', 'ylti', '2013-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS382530426388', 'Frederick Castro', 0, '+1 330-863-1166', 1, '306973922599457397', '750 Ridgewood Road Suite 35, Akron, OH 44321, United States', '1995-04-12', 0, 0, 'fc1948', '2010-08-18', 'cfred', '2014-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS838449059334', '阿部陽菜', 1, '+81 52-141-5695', 3, '449553332478331933', '30-kai, 3-19-1 Shimizu, Kita Ward, Nagoya, Japan', '1996-04-04', 0, 0, 'hinabe', '2015-09-04', 'habe', '2019-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS538382873349', '上田和真', 0, '+1 213-429-0830', 0, '567795801207611447', '885 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1991-03-19', 0, 0, 'uk89', '2017-05-21', 'kazumue8', '2002-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS686568584313', '雷明', 1, '+44 5623 430170', 2, '687948120261501060', 'Flat 2, 486 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1986-07-12', 0, 0, 'mingl', '2011-03-05', 'lomin79', '2011-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS030333309127', '程嘉伦', 0, '+81 90-1253-5613', 4, '734029901465771251', '日本なごやし北区楠味鋺三丁目80番9号46号室', '1998-12-30', 0, 0, 'jicheng9', '2003-07-29', 'chengjialun', '2003-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS948543302150', 'Monica Rose', 0, '+1 718-550-0617', 3, '428715194750569474', '500 Nostrand Ave Apt 9, Brooklyn, NY 11216, United States', '1995-10-31', 0, 0, 'monicar', '2008-10-22', 'monica214', '2002-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS313889874183', 'Paul Meyer', 0, '+81 70-5429-4309', 0, '229497371705074217', '日本札幌厚別区上野幌一条二丁目1番17号25階', '1986-06-20', 0, 0, 'meyerpau1224', '2002-08-22', 'meyerpaul4', '2010-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS556917535474', '山下百恵', 1, '+81 66-622-6145', 2, '736518060678731400', '日本おおさかし近江堂一丁目7番12号36階', '1992-11-05', 0, 0, 'yamashitamom', '2000-05-22', 'momoeya', '2020-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS680801924807', 'Larry Taylor', 1, '+86 180-7380-0846', 0, '487545990592593493', 'No.26 building, 990 68 Qinghe Middle St, Haidian District, Beijing, China', '1986-10-03', 0, 0, 'larry312', '2011-07-16', 'tlarry', '2020-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS875428264197', '森田葵', 0, '+81 70-0687-6776', 3, '532424834773660722', 'Rm. 36, 13 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1989-06-21', 0, 0, 'moritaaoi', '2012-07-31', 'moriao', '2009-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS046741269176', '孟致远', 0, '+81 80-2300-2902', 3, '771340978441439528', '日本おおさかし東住吉区東田辺三丁目27番8号11階', '1993-01-02', 0, 0, 'zhiymeng61', '2021-09-01', 'zhiyuan57', '2015-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS800697096652', '武田葵', 1, '+86 21-6509-5211', 1, '699165589388168879', 'No.48 building, 13 Hongqiao Rd., Xu Hui District, Shanghai, China', '1991-07-13', 0, 0, 'takedaaoi', '2014-01-03', 'takedaaoi', '2018-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS403927792824', 'Brian Chavez', 0, '+1 614-260-9954', 2, '052412350167898703', '590 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1994-07-16', 0, 0, 'chavez412', '2003-09-26', 'cbrian', '2010-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS154112042080', '邱嘉伦', 1, '+86 10-226-9809', 1, '613556595174612416', '33F, 617 East Wangfujing Street, Dongcheng District , Beijing, China', '1990-07-12', 0, 0, 'jialun217', '2003-06-02', 'jialunqiu810', '2021-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS407262168475', '山下結翔', 0, '+86 145-2502-9631', 3, '058111225488913379', '中国深圳龙岗区学园一巷382号47栋', '1989-12-09', 0, 0, 'yamashita724', '2001-04-07', 'yuyamas', '2019-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS438686084242', '新井愛梨', 1, '+81 90-2772-6186', 3, '861229827187212921', '32-kai, 16 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-01-01', 0, 0, 'araiairi', '2014-09-04', 'arai6', '2011-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS890061778305', '石川美月', 0, '+44 5987 815270', 4, '199534956187599074', 'No.3 Main building, 642 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1986-05-31', 0, 0, 'ishikawam1215', '2020-05-07', 'mitsuishikawa', '2004-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS276764701860', '何梓晴', 0, '+81 52-494-8092', 1, '576876149637222466', '日本なごやし熱田区千年二丁目5番20号45階', '1988-08-25', 0, 0, 'tcho422', '2008-07-29', 'hotszching', '2019-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS367225596353', '许宇宁', 1, '+44 (20) 3593 3604', 0, '258843206147836464', 'Unit 13, Oxford Eco Centre, 588 Hanover Street, London, W1S 1YD, United Kingdom', '1995-06-04', 0, 0, 'yuning103', '2010-01-24', 'xu42', '2021-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS213416832602', '何嘉伦', 1, '+44 (20) 3619 3880', 1, '428252811619395561', 'Unit 12, Oxford Eco Centre, 148 Maddox Street, London, W1S 1PU, United Kingdom', '1995-11-17', 0, 0, 'jiahe', '2002-12-24', 'jialun9', '2019-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS638836109250', '橋本百恵', 0, '+86 10-5385-5631', 1, '969717788674099762', '中国北京市西城区西長安街323号华润大厦48室', '1987-12-10', 0, 0, 'momoehas', '2020-01-23', 'momoehash1945', '2013-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS077442737722', 'Sarah Boyd', 0, '+86 10-327-9321', 2, '985276052139980331', '29F, 985 East Wangfujing Street, Dongcheng District , Beijing, China', '1997-06-01', 0, 0, 'sarah6', '2006-06-13', 'boydsarah1', '2012-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS442030404078', '袁慧儀', 0, '+44 (151) 178 3083', 1, '311707930223074148', 'Unit 12, Oxford Eco Centre, 343 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1986-08-20', 0, 0, 'waiyeeyuen1227', '2011-06-30', 'waiyeeyu41', '2006-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS959473344882', '孫裕玲', 1, '+81 74-727-7573', 3, '172221663903831233', '9F, 3-9-18 Gakuenminami, Nara, Japan', '1990-02-26', 0, 0, 'hsuan1989', '2009-10-25', 'hsuan65', '2002-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS756964854007', '西村健太', 1, '+86 178-3692-6832', 4, '485721164606892510', 'Room 26, CR Building, No.258, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1992-05-07', 0, 0, 'nishimura71', '2001-01-23', 'nishik', '2001-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS855751155083', '成梓軒', 1, '+86 135-6231-2760', 1, '388808078950862773', 'Room 21, 769 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1997-11-27', 0, 0, 'shingtszhin', '2021-01-15', 'shinth', '2020-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS561890812934', 'Dennis Burns', 1, '+86 21-2794-7588', 2, '104979681653197730', '中国上海市徐汇区虹桥路521号27室', '1985-04-03', 0, 0, 'burd53', '2010-03-12', 'dbu3', '2009-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS346698564555', '戴家明', 1, '+81 74-597-6289', 0, '647746721282125549', 'Rm. 22, 1-7-14 Saidaiji Akodacho, Nara, Japan', '1989-04-27', 0, 0, 'daikm719', '2008-10-31', 'kamingd5', '2015-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS418330932806', '薛志遠', 0, '+81 70-6152-1540', 2, '830660630530291035', '日本なごやし北区楠味鋺三丁目80番12号23号室', '1990-07-11', 0, 0, 'sitcy', '2015-12-17', 'sitchiyu2', '2010-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS784236032791', '陶榮發', 1, '+86 769-6644-0946', 3, '804824866506541054', 'Room 18, 952 Huanqu South Street 2nd Alley, Dongguan, China', '1986-11-04', 0, 0, 'wingfat2', '2005-07-18', 'tao7', '2000-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS163344206753', '邓宇宁', 1, '+86 20-871-2117', 0, '596653406794458616', '33F, 99 Jiangnan West Road, Haizhu District, Guangzhou, China', '1989-07-01', 0, 0, 'dengy', '2004-02-21', 'yuningde', '2019-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS476164597677', 'Gregory Bennett', 1, '+81 66-378-2508', 0, '353029702906973910', '日本おおさかし近江堂一丁目7番11号14号室', '1988-06-27', 0, 0, 'bennegregory1981', '2008-08-14', 'bennettg09', '2010-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS847258528804', '渡辺凛', 0, '+1 718-205-1419', 3, '061537017799221180', '478 Nostrand Ave Suite 28, Brooklyn, NY 11216, United States', '1993-08-23', 0, 0, 'rinsat', '2004-10-22', 'rinsato', '2000-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS191008559339', '市川一輝', 1, '+1 330-892-6030', 0, '768372402316867824', '188 Collier Road Apt 15, Akron, OH 44320, United States', '1986-11-01', 0, 0, 'ichikawaikki', '2020-06-27', 'iich', '2020-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS006957585451', '彭淑怡', 1, '+1 213-653-9327', 0, '402354401814653966', '981 Sky Way Suite 37, Los Angeles, CA 90043, United States', '1986-12-20', 0, 0, 'sypang', '2011-07-29', 'psukyee', '2016-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS863124741250', 'Antonio Myers', 1, '+81 11-899-6674', 3, '217413975632957865', 'Rm. 27, 5-19-2 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1993-11-21', 0, 0, 'antonio1955', '2012-08-24', 'antonio76', '2014-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS472634277462', '邵天榮', 0, '+44 (1865) 53 9788', 2, '630645617799758762', 'Unit 10, Oxford Eco Centre, 240 Park End St, Oxford, OX1 1JD, United Kingdom', '1990-03-27', 0, 0, 'siutw6', '2003-05-15', 'siutw', '2006-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS124205114854', '任國榮', 0, '+44 5500 882113', 1, '829063130505821379', 'No.31 Main building, 370 Redfern St, Liverpool, L20 8JB, United Kingdom', '1997-12-17', 0, 0, 'ykwokwing85', '2017-01-03', 'kwokwing94', '2000-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS158880109723', '房霆鋒', 0, '+1 330-024-8973', 2, '266292154210698289', '27 Collier Road Apartment 24, Akron, OH 44320, United States', '1988-05-03', 0, 0, 'tffon', '2011-11-07', 'tingfung10', '2001-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS129848473183', '彭詩涵', 0, '+81 70-6014-5385', 4, '927542013527233714', '2F, 5-2-7 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1992-04-19', 0, 0, 'pengshihan', '2020-02-27', 'pengshi', '2008-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS901195075297', '遠藤光', 1, '+86 198-5407-3388', 4, '509663996525693264', 'No.45 building, 310 Jiangnan West Road, Haizhu District, Guangzhou, China', '1998-06-02', 0, 0, 'hikaruendo1943', '2020-11-27', 'hikaruendo', '2012-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS129907188730', '斉藤一輝', 0, '+81 80-9255-9289', 3, '963102087588253491', '日本ならし学園南三丁目9番5号24階', '1994-04-14', 0, 0, 'ikksaito913', '2009-04-03', 'sikki103', '2016-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS312700675397', 'Margaret Coleman', 0, '+1 312-318-4349', 1, '803931068932762569', '52 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1990-03-11', 0, 0, 'comar', '2006-05-20', 'comargaret85', '2017-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS315851926694', '龙睿', 1, '+86 21-1414-2087', 1, '628970828955217343', 'Room 38, 909 Jianxiang Rd, Pudong, Shanghai, China', '1998-04-19', 0, 0, 'long7', '2001-01-19', 'longrui', '2005-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS495315756770', '方仲賢', 1, '+86 148-3474-6324', 1, '779984245749227189', '3F, 721 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1986-08-13', 0, 0, 'cyfong426', '2009-11-19', 'fong1026', '2001-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS255150883718', '原田光莉', 1, '+86 133-4427-7609', 2, '623981686355342901', '28F, 723 Yueliu Rd, Fangshan District, Beijing, China', '1997-04-05', 0, 0, 'haradhik', '2009-08-23', 'hikari508', '2001-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS792694121614', '阎秀英', 0, '+44 (116) 626 2199', 2, '999243538129875990', 'No.35 Main building, 540 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1993-08-04', 0, 0, 'xiuyiyan', '2006-01-16', 'xiuyan09', '2015-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS419261608522', '毛詠詩', 0, '+86 193-1227-0575', 1, '840191865020510802', '39F, 187 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1994-02-20', 0, 0, 'wingsze7', '2003-01-01', 'wingszemo', '2013-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS669108833416', 'Keith Griffin', 0, '+86 10-355-6559', 3, '020474809932229126', '中国北京市东城区东单王府井东街87号36楼', '1990-03-25', 0, 0, 'griffin829', '2002-07-14', 'griffin410', '2021-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS459828230871', '谢詩涵', 1, '+81 70-8911-0764', 3, '677311493454527721', '40F, 2-1-7 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1988-09-08', 0, 0, 'xshihan', '2001-02-09', 'shxie4', '2002-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS526219332449', 'Dennis Collins', 1, '+81 11-761-8448', 2, '575367949093730260', '33F, 5-4-3 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1993-03-17', 0, 0, 'dennic', '2019-08-03', 'collins411', '2003-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS072022234544', '田村湊', 0, '+81 66-193-8918', 3, '530233489129889840', 'Rm. 47, 2-1-1 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1997-07-17', 0, 0, 'tammina1120', '2000-04-08', 'minatota', '2021-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS140248537232', '譚杰倫', 1, '+86 149-3231-5955', 1, '795563398398958736', '中国北京市西城区西長安街761号40楼', '1989-06-03', 0, 0, 'chiehluntam', '2021-02-13', 'chiehluntam', '2004-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS099679021958', '鄭志遠', 0, '+81 74-759-4660', 2, '771372758850458644', '日本ならし大和郡山市本庄町一丁目1番6号38階', '1985-02-14', 0, 0, 'chiyuen3', '2011-11-15', 'chengchiyuen724', '2017-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS797312678201', 'Theresa Reed', 0, '+81 11-511-8337', 4, '953470264564813416', '日本札幌清田区真栄四条五丁目19番13号22階', '1990-03-10', 0, 0, 'rtheresa89', '2019-02-22', 'reetheresa223', '2011-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS609081078514', '雷秀文', 1, '+86 140-0452-2336', 1, '099902005645770444', 'No.47 building, 686 Binchuan Rd, Minhang District, Shanghai, China', '1995-03-22', 0, 0, 'losm', '2020-04-06', 'saumanloui', '2000-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS553644897564', '林杰宏', 0, '+1 212-507-0425', 2, '255070254516401093', '517 Fifth Avenue Apt 29, New York, NY 10017, United States', '1991-02-15', 0, 0, 'lijiehong10', '2012-01-19', 'jieli7', '2001-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS240504083130', '杉山光莉', 1, '+86 769-2952-3098', 2, '710740043622440104', '中国东莞东泰五街120号23栋', '1998-08-19', 0, 0, 'hikari6', '2004-08-07', 'hsugiyama', '2011-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS642156409047', '福田大輔', 1, '+86 167-7625-2493', 4, '988882680640352448', 'Room 3, No.196, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-04-28', 0, 0, 'fukudadai1969', '2021-06-01', 'fukuddaisuke', '2005-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS277198429231', '彭宇宁', 1, '+86 769-038-0965', 1, '514837872044543774', 'Room 31, CR Building, 465 Kengmei 15th Alley, Dongguan, China', '1985-03-24', 0, 0, 'ype', '2021-01-13', 'pengyunin', '2020-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS911637603847', 'Ronald Medina', 0, '+81 70-6897-2470', 1, '683936363931471837', '29-kai, 11 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-09-04', 0, 0, 'ronm', '2010-04-18', 'rme10', '2001-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS864528522517', 'Barbara Woods', 0, '+44 5468 316271', 3, '629237460662760387', 'No.7 Main building, 31 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1988-03-27', 0, 0, 'woba', '2009-09-28', 'woodbarbara97', '2017-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS633821753501', '姜詩涵', 0, '+81 66-308-7875', 3, '623034139175315090', '日本おおさかし東住吉区東田辺三丁目27番9号24階', '1998-12-03', 0, 0, 'shj4', '2013-12-15', 'shihan07', '2011-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS390940673146', '宮本結翔', 1, '+1 614-529-0833', 3, '813757978429177760', '459 Wicklow Road Apt 31, Columbus, GA 43204, United States', '1988-06-04', 0, 0, 'yuitomi', '2015-11-17', 'miyamotoyuito8', '2006-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS186650720820', '吕晓明', 0, '+44 (151) 970 7970', 2, '785175100450073560', 'Unit 10, Oxford Eco Centre, 492 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1985-01-11', 0, 0, 'xiaoming1', '2012-09-22', 'xiaominglu217', '2011-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS070365802550', '中島詩乃', 1, '+81 74-636-1476', 4, '440919993586391664', 'Rm. 9, 15 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-07-16', 0, 0, 'nshi', '2018-08-06', 'shnakajima', '2017-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS241637063317', '渡辺蒼士', 1, '+1 212-759-1010', 4, '149715915088249821', '13 Fifth Avenue Apt 14, New York, NY 10017, United States', '1996-08-16', 0, 0, 'satao', '2008-04-13', 'aoshisato', '2000-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS690880552891', '中島美緒', 0, '+44 (116) 467 6636', 0, '819638927369298503', 'No.6 Main building, 680 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1992-12-28', 0, 0, 'nakajmio1025', '2006-04-03', 'nakamio', '2000-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS531633656354', '竹内彩乃', 1, '+44 5526 857669', 2, '933019748680583391', 'Flat 11, 436 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1989-12-29', 0, 0, 'aytakeuchi', '2019-09-27', 'ayanotakeu', '2004-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS913692626915', 'Gerald Morgan', 0, '+81 11-988-5655', 3, '776494896703814302', '日本札幌厚別区上野幌一条二丁目1番16号27階', '1992-09-15', 0, 0, 'geraldmorgan', '2016-11-16', 'morgan1974', '2020-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS311922838115', '劉慧敏', 0, '+81 74-592-5190', 2, '516280330938787556', 'Rm. 39, 3-9-10 Gakuenminami, Nara, Japan', '1996-03-10', 0, 0, 'wmla', '2017-03-03', 'lauwm', '2007-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS051705892039', 'Nathan Jimenez', 1, '+81 80-6919-4639', 3, '560254577858271058', '日本札幌白石区菊水三条五丁目4番2号27階', '1988-11-05', 0, 0, 'nathanjimenez8', '2007-11-25', 'nathan216', '2005-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS785225874948', '王家文', 0, '+44 7461 218586', 1, '453552789807257439', 'No.42 Main building, 667 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-02-07', 0, 0, 'kmwon08', '2018-12-09', 'kamanwo87', '2003-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS018118219161', '顾致远', 1, '+86 10-295-1280', 1, '638533945077243694', 'Room 25, CR Building, 201 Sanlitun Road, Chaoyang District, Beijing, China', '1992-11-15', 0, 0, 'zhiyuangu6', '2017-11-16', 'guzhiyu', '2015-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS043109022097', '佘浩然', 0, '+81 11-036-0552', 3, '605573708538953633', 'Rm. 42, 6-1-6, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-03-26', 0, 0, 'hoyinsheh5', '2020-06-15', 'shehhoy7', '2013-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS676874864784', '森田蒼士', 1, '+81 70-9098-3194', 3, '049711037392820519', 'Rm. 33, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1992-11-14', 0, 0, 'morita2', '2001-09-05', 'moritaaoshi', '2002-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS990416697570', '石川悠人', 1, '+1 212-410-8465', 4, '845369553106125844', '174 West Houston Street Apt 30, New York, NY 10014, United States', '1990-10-28', 0, 0, 'ishiyuto215', '2008-02-12', 'yuto7', '2009-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS617738136495', '石田美緒', 0, '+81 80-2366-1318', 3, '515250015067468206', '日本東京渋谷区代々木二丁目3番6号21階', '1994-07-14', 0, 0, 'ishida9', '2020-08-03', 'ishida95', '2019-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS735382300940', '梅心穎', 0, '+81 80-0063-0267', 0, '493567470627837116', '日本おおさかし東住吉区東田辺三丁目27番11号49階', '1994-04-09', 0, 0, 'sumwingmui', '2011-03-20', 'muisu', '2008-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS288428202082', '杉山優奈', 0, '+86 143-5387-7530', 2, '301252577464389971', '中国中山紫马岭商圈中山五路761号14栋', '1987-06-28', 0, 0, 'yunasugiyama', '2010-02-27', 'yunasugiyama1121', '2004-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS533506199725', '中野舞', 1, '+1 718-938-3912', 1, '148328223500098517', '812 Flatbush Ave Apt 28, Brooklyn, NY 11225, United States', '1994-08-11', 0, 0, 'nakanomai1020', '2006-10-11', 'nakanomai123', '2021-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS315873255657', '藤家輝', 1, '+81 70-1485-1654', 3, '659262127110106472', 'Rm. 13, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1995-04-28', 0, 0, 'tkf5', '2019-12-24', 'kft', '2000-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS554962088078', 'Cheryl Taylor', 1, '+86 144-4022-7030', 0, '141125766163358726', 'Room 27, CR Building, 651 Dong Zhi Men, Dongcheng District, Beijing, China', '1985-11-27', 0, 0, 'taylorc', '2005-10-02', 'chtaylor', '2002-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS619173417350', 'Ruby Washington', 1, '+81 11-522-9434', 4, '937218973096677735', '23F, 5-4-6 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1990-12-27', 0, 0, 'rubywashington', '2019-09-02', 'washington6', '2013-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS095210489634', '木下聖子', 1, '+81 90-7130-6217', 4, '990901812406494383', '日本おおさかし西成区出城一丁目1番18号38階', '1989-02-02', 0, 0, 'seikokinoshita1', '2008-03-10', 'ski', '2004-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS556558261559', '陶安琪', 0, '+86 173-1278-8882', 2, '808559514009611491', '中国上海市浦东新区橄榄路43号华润大厦26室', '1996-04-04', 0, 0, 'taoanqi', '2005-08-02', 'tanq66', '2001-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS520769970872', '陈云熙', 1, '+86 139-0244-7491', 1, '237010661105270092', '中国东莞珊瑚路889号14栋', '1993-11-20', 0, 0, 'chyu', '2006-09-25', 'yche7', '2011-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS907666897575', 'Ralph Hawkins', 1, '+86 20-080-0906', 0, '460225176466311931', 'Room 45, 348 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1985-02-07', 0, 0, 'hawkinsr66', '2020-10-07', 'ralph8', '2002-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS381483998254', '甘永權', 0, '+81 70-1668-1037', 1, '179726531585487311', '日本ならし学園南三丁目9番18号33階', '1998-03-12', 0, 0, 'wingkuenkam2', '2000-12-14', 'wkkam', '2001-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS754221514900', '萧睿', 1, '+1 718-585-6425', 1, '017676167451576994', '883 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1994-02-15', 0, 0, 'ruxiao', '2013-09-13', 'xiaorui1971', '2002-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS413734765092', '錢朝偉', 0, '+81 74-355-6363', 2, '330859207916522193', '9-kai, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1994-10-14', 0, 0, 'chincw506', '2004-07-04', 'chiuwai1027', '2007-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS450574145299', '謝淑怡', 0, '+86 145-5121-0485', 0, '868276788689537290', '中国深圳福田区深南大道450号40号楼', '1999-02-08', 0, 0, 'sukyeets', '2018-06-07', 'tsukyee', '2012-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS494308560829', '原百恵', 0, '+81 90-4766-6570', 1, '452239155213946591', 'Rm. 44, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1989-11-29', 0, 0, 'mohara', '2018-03-06', 'haramomoe01', '2001-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS121368241291', '李梓晴', 0, '+81 11-559-2419', 3, '144078590923363444', '日本札幌中央区宮の森四条六丁目1番3号39号室', '1993-04-18', 0, 0, 'tszchinglee', '2010-08-16', 'tcle10', '2011-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS148117971553', '许云熙', 1, '+86 158-6789-3477', 3, '556086027503722051', '中国成都市成华区玉双路6号890号48室', '1990-09-24', 0, 0, 'xu1', '2011-05-24', 'yunxixu', '2020-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS623856759759', '關玲玲', 1, '+44 5452 929742', 4, '580865441518452669', 'Unit 50, Oxford Eco Centre, 667 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1990-03-05', 0, 0, 'kwanlingling', '2006-03-17', 'kwlingling', '2018-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS876364895008', 'Florence Holmes', 1, '+81 90-0639-0014', 4, '403719387297233094', 'Rm. 23, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-08-23', 0, 0, 'fholm', '2010-01-23', 'holmesflor', '2004-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS724986451591', '杉山愛梨', 0, '+44 5085 459276', 1, '723601923450043385', 'No.36 Main building, 75 Maddox Street, London, W1S 1PU, United Kingdom', '1995-01-14', 0, 0, 'airi10', '2017-05-28', 'aisugiyama220', '2001-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS192731866161', 'Mildred Long', 0, '+44 5283 919075', 1, '484013416832061013', 'No.7 Main building, 481 Regent Street, London, W1B 2LX, United Kingdom', '1994-12-28', 0, 0, 'longmild527', '2012-03-17', 'milong1', '2007-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS395142104336', 'Margaret Alexander', 1, '+81 52-855-5863', 1, '484142795392216217', 'Rm. 1, 10 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-03-08', 0, 0, 'margaretalexander88', '2001-12-27', 'margareta79', '2013-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS474742124033', 'Mary Gutierrez', 0, '+81 52-307-6078', 0, '259285481203248661', '日本なごやし北区清水三丁目19番11号26階', '1991-04-30', 0, 0, 'gutierrez6', '2009-04-08', 'gutierrezmary10', '2000-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS784917300622', 'Judy Mendez', 0, '+44 (1223) 76 9835', 3, '607444440937785011', 'Flat 39, 287 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1986-11-01', 0, 0, 'judy9', '2016-05-20', 'jumendez', '2016-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS288485879799', '何慧琳', 0, '+81 74-109-0444', 3, '982220876182701760', '39-kai, 4 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-06-03', 0, 0, 'ho6', '2018-03-06', 'hwailam218', '2015-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS662588340957', 'Clifford Stone', 0, '+81 70-5344-6309', 4, '849982636837497764', '日本ならし大和郡山市本庄町一丁目1番17号37階', '1989-11-06', 0, 0, 'stonecli', '2002-06-15', 'stoclifford9', '2011-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS512090430416', 'Marvin Mendez', 0, '+81 74-949-1221', 2, '044626826756155477', '日本ならし学園南三丁目9番12号31号室', '1994-08-30', 0, 0, 'marvinmendez', '2004-07-27', 'marvimend', '2003-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS726766857169', '宮本瑛太', 0, '+81 70-6969-8120', 2, '606855624640150653', '17-kai, 16 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-03-25', 0, 0, 'eim830', '2016-04-15', 'meit59', '2006-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS118602598799', '鈴木玲奈', 0, '+1 212-375-1812', 1, '793469193440438908', '488 Fifth Avenue Apartment 23, New York, NY 10017, United States', '1998-05-09', 0, 0, 'suzuki1993', '2016-02-19', 'renasuzuki1', '2018-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS005939826808', 'Amanda Jenkins', 1, '+81 80-1993-7742', 1, '208657403771733342', '33F, 5-4-6 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1989-12-03', 0, 0, 'amaj2004', '2022-01-05', 'ajen', '2014-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS442351075896', '湯國榮', 0, '+86 159-3681-5406', 3, '201528128506243732', 'No.13 building, 391 Ganlan Rd, Pudong, Shanghai, China', '1995-03-02', 0, 0, 'kwokwing9', '2014-12-29', 'tongkw', '2013-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS175172668811', 'Rosa Richardson', 0, '+1 213-072-3400', 3, '873333200602343694', '342 Sky Way Suite 44, Los Angeles, CA 90043, United States', '1997-02-05', 0, 0, 'richardsonrosa1995', '2005-08-16', 'rosarichardson', '2015-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS677864315965', '劉頴思', 0, '+86 21-262-2830', 2, '378561718007011924', '中国上海市徐汇区虹桥路962号45栋', '1989-06-20', 0, 0, 'wingszelau', '2002-08-19', 'lauwingsze2', '2003-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS519363270586', '孫慧敏', 1, '+1 213-282-6140', 2, '103236013588309492', '38 Grape Street Apt 26, Los Angeles, CA 90002, United States', '1987-11-17', 0, 0, 'hswaiman812', '2003-04-17', 'wmhsuan10', '2006-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS696354957597', '田中詩乃', 1, '+81 52-233-6419', 2, '848961279935254607', '日本なごやし瑞穂区河岸町四丁目20番12号9階', '1994-08-04', 0, 0, 'tanaka5', '2021-10-10', 'tanashin', '2006-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS010607346402', '朱國明', 0, '+86 146-2278-0618', 2, '147959299839466756', '中国北京市房山区岳琉路292号华润大厦25室', '1998-09-28', 0, 0, 'kwokmingc1', '2005-12-18', 'chukwokming19', '2007-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS074822155541', '松本美緒', 1, '+86 20-7302-3712', 4, '478175518403927660', 'Room 48, CR Building, 397 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1995-06-05', 0, 0, 'mioma5', '2021-04-24', 'matsumotomio4', '2000-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS954964357692', '雷慧珊', 1, '+81 52-759-8106', 0, '598007525630814934', '日本なごやし熱田区千年二丁目5番13号8階', '1989-01-05', 0, 0, 'wsloui', '2015-08-11', 'lowaisan1', '2009-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS322166312830', '山本百恵', 0, '+44 7722 967668', 3, '818210334112375890', 'Block 41, 670 Redfern St, Liverpool, L20 8JB, United Kingdom', '1989-09-24', 0, 0, 'ymo', '2014-06-20', 'yamamotomo', '2004-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS385622555531', '竹内美咲', 0, '+44 7275 792841', 2, '006739044079162714', 'Block 8, 540 Redfern St, Liverpool, L20 8JB, United Kingdom', '1995-08-06', 0, 0, 'takeuchi224', '2002-02-25', 'takeuchimisaki5', '2000-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS126960255639', '史云熙', 1, '+1 614-589-4537', 3, '496047436278101495', '472 East Cooke Road Apt 45, Columbus, GA 43214, United States', '1985-09-13', 0, 0, 'ys1983', '2014-10-31', 'yunxishi', '2014-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS051260347495', 'Glenn Perez', 0, '+1 718-844-3453', 2, '288437467755797917', '866 1st Ave Apartment 31, Brooklyn, NY 11220, United States', '1993-01-17', 0, 0, 'pglenn8', '2000-12-28', 'perg', '2007-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS017405858967', '鐘杰倫', 0, '+86 197-3023-6414', 3, '105648596361247631', 'No.25 building, 752 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1995-02-24', 0, 0, 'chucl923', '2007-12-11', 'chiehlun824', '2021-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS126142157534', '冯璐', 0, '+86 171-8768-8882', 1, '183590454667292306', '中国上海市闵行区宾川路691号34号楼', '1997-09-02', 0, 0, 'fenglu208', '2011-07-09', 'lu208', '2017-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS846924186762', '高木百花', 0, '+1 212-896-7312', 2, '231393398889566726', '461 Fifth Avenue Suite 28, New York, NY 10017, United States', '1996-10-26', 0, 0, 'mot57', '2021-04-24', 'tmomoka', '2006-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS995638782297', '黃青雲', 0, '+81 11-204-9579', 1, '985500895999013841', 'Rm. 2, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-08-01', 0, 0, 'chingwanw7', '2008-01-09', 'chingwanwong', '2017-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS271665960153', '胡岚', 0, '+81 3-3434-9412', 0, '178099149032942978', '日本東京港区東新橋一丁目5番15号8階', '1992-05-06', 0, 0, 'lanh', '2006-04-23', 'lanhu1129', '2002-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS541430205116', '宮本大輔', 0, '+86 191-8267-3723', 3, '363839940116276094', '中国广州市天河区天河路360号20号楼', '1986-11-03', 0, 0, 'daisuke804', '2002-02-28', 'daisuke602', '2006-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS859536684655', '伊藤陽菜', 1, '+86 193-1460-0997', 3, '928869797543506372', '中国上海市徐汇区虹桥路264号华润大厦10室', '1985-06-26', 0, 0, 'itohina2020', '2018-08-03', 'ith4', '2012-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS829396508940', '有村美緒', 0, '+81 66-539-9578', 0, '200598517342074900', '日本おおさかし近江堂一丁目7番19号8階', '1993-06-23', 0, 0, 'amio49', '2018-01-07', 'arimio', '2015-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS461932300227', '戚明', 0, '+81 90-0715-1229', 1, '964327384504054075', '日本なごやし瑞穂区河岸町四丁目20番20号39階', '1992-08-31', 0, 0, 'ming8', '2015-11-02', 'mingchic', '2002-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS900897715538', 'Grace Wilson', 1, '+81 70-3850-0284', 3, '819561167047601553', '日本おおさかし近江堂一丁目7番9号28階', '1986-05-16', 0, 0, 'wgra', '2017-06-29', 'gwilson', '2013-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS843127969284', 'Lillian Wright', 0, '+86 149-2566-8261', 1, '269261855094863182', 'No.14 building, 315 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1991-08-04', 0, 0, 'lillwr', '2009-05-11', 'wlill', '2016-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS006364412303', '史秀英', 1, '+81 52-883-8076', 0, '868560441419738325', 'Rm. 24, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1995-02-01', 0, 0, 'shixiu216', '2004-10-07', 'sxiuying', '2016-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS042008885922', '平野光莉', 1, '+81 80-5163-1427', 3, '261042926510559015', '日本おおさかし平野区加美東四丁目9番19号34階', '1987-11-28', 0, 0, 'hih320', '2019-11-19', 'hhikari208', '2003-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS399545430607', '渡部愛梨', 1, '+86 137-8275-3324', 3, '237714272032348675', '中国成都市成华区二仙桥东三路111号50楼', '1991-03-12', 0, 0, 'wata', '2005-01-14', 'airi702', '2002-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS084012837214', '徐安琪', 0, '+81 66-727-9902', 2, '003632528305473121', '日本おおさかし東住吉区東田辺三丁目27番15号11階', '1991-10-26', 0, 0, 'anqixu420', '2020-10-31', 'xuanqi', '2003-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS913682351592', 'Robert Stephens', 1, '+1 614-684-1460', 4, '519821006508942753', '44 Wicklow Road Apt 21, Columbus, GA 43204, United States', '1993-08-24', 0, 0, 'stephens4', '2018-04-04', 'robes9', '2013-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS176992236109', '官慧敏', 1, '+86 160-1717-9611', 4, '495947498823354871', '1F, 609 Middle Huaihai Road, Huangpu District, Shanghai, China', '1991-04-02', 0, 0, 'kowm', '2010-05-11', 'kwm', '2019-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS718823976500', '黄詩涵', 0, '+86 177-3789-1018', 0, '948679081442231635', '中国北京市朝阳区三里屯路646号20号楼', '1997-04-01', 0, 0, 'shihanh', '2014-10-09', 'hshihan', '2015-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS798070956382', 'Kathleen Hicks', 1, '+81 70-1000-9788', 0, '784412003141967927', 'Rm. 8, 5-4-3 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1998-12-10', 0, 0, 'hicks807', '2020-11-19', 'hicksk', '2002-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS128881794206', 'Philip Mason', 0, '+44 5803 199316', 3, '376276158314042435', 'Unit 28, Oxford Eco Centre, 808 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1990-06-30', 0, 0, 'masonphilip', '2015-03-26', 'mason7', '2019-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS654092189421', '藍國權', 1, '+81 52-344-5216', 3, '911398299504100791', 'Rm. 44, 9 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-05-16', 0, 0, 'kwol4', '2022-02-19', 'kklam1215', '2006-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS003161704640', 'Joshua Edwards', 1, '+1 614-588-9977', 2, '291393386564378400', '940 East Alley Suite 2, Columbus, GA 43201, United States', '1990-12-07', 0, 0, 'joshuedwards80', '2003-11-12', 'edwj', '2014-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS039249770990', '何家明', 0, '+86 177-3472-1462', 2, '009012502429869564', '中国中山京华商圈华夏街623号48室', '1993-01-02', 0, 0, 'hokm1', '2018-02-17', 'kamingho10', '2019-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS868360531014', '沈詩涵', 0, '+86 154-5370-3383', 3, '238301109653600226', 'Room 23, CR Building, 712 Jiangnan West Road, Haizhu District, Guangzhou, China', '1995-09-11', 0, 0, 'sheshih', '2001-06-10', 'shihan5', '2018-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS141424331666', '苗慧琳', 0, '+81 90-4200-3012', 1, '096464492141468079', '日本おおさかし西成区出城一丁目1番1号22階', '1990-09-22', 0, 0, 'miwl', '2020-12-30', 'wlm7', '2019-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS546941461468', 'Marcus Stewart', 1, '+81 90-4827-2503', 4, '110916078071623570', '35F, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-05-16', 0, 0, 'smar', '2019-06-28', 'mste', '2016-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS612080114849', 'Carmen Spencer', 0, '+86 186-9354-5855', 1, '533270255460619532', '中国东莞坑美十五巷211号17室', '1996-09-28', 0, 0, 'spencer10', '2006-06-27', 'sca1999', '2008-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS050431164281', '廖秀英', 0, '+81 90-2126-2893', 4, '135847659133775188', '日本札幌清田区真栄四条五丁目19番11号11階', '1995-03-07', 0, 0, 'xliao', '2001-07-03', 'xiuying92', '2007-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS451327166402', '和田玲奈', 0, '+44 5224 386959', 3, '669432633556027461', 'No.50 Main building, 462 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1992-10-25', 0, 0, 'warena', '2010-03-09', 'wadarena', '2016-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS409473406001', '朱頴璇', 0, '+81 66-312-7589', 1, '232139688331737032', '14F, 4-9-7 Kamihigashi, Hirano Ward, Osaka, Japan', '1999-01-22', 0, 0, 'wingsuench', '2001-04-25', 'wschu', '2009-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS056155157742', '方晓明', 1, '+44 5709 980071', 1, '933624303332496851', 'No.43 Main building, 80 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1999-01-19', 0, 0, 'fxiao', '2000-01-26', 'xiaomingfan1952', '2018-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS417669559779', 'Steve Carter', 0, '+81 11-686-1036', 1, '100740713804625503', '日本札幌白石区菊水三条五丁目2番15号31階', '1992-11-06', 0, 0, 'cst', '2020-03-12', 'stevecarter', '2007-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS333560215239', '黎麗欣', 1, '+81 66-588-9107', 3, '659353264894866495', '日本おおさかし西成区出城一丁目1番3号22号室', '1986-07-01', 0, 0, 'lyl123', '2016-01-14', 'laiyanlai1991', '2001-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS731953563288', '池田百花', 0, '+86 755-5481-6957', 2, '562891395368557379', '中国深圳龙岗区布吉镇西环路778号华润大厦42室', '1989-02-26', 0, 0, 'ikedamomoka', '2006-07-29', 'ikedamomoka90', '2017-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS567326386306', '王云熙', 1, '+86 10-0044-3759', 1, '462766610648938941', 'Room 6, 448 Dong Zhi Men, Dongcheng District, Beijing, China', '1991-10-11', 0, 0, 'ywan', '2007-05-19', 'yunxiwang', '2005-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS073146694906', '薛杰宏', 1, '+86 755-5168-1921', 3, '715893488211092667', 'No.16 building, 295 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1986-04-01', 0, 0, 'jiehongx', '2016-02-11', 'xuejieh1', '2019-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS301921258308', '近藤凛', 1, '+86 180-5862-5071', 4, '152146230938473821', '中国成都市锦江区红星路三段167号2楼', '1988-04-10', 0, 0, 'kondorin1122', '2020-02-29', 'rinkond', '2021-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS950279646471', '熊晓明', 1, '+81 70-3675-2448', 4, '360550066136393394', '日本東京千代田区丸の内一丁目6番15号5号室', '1995-07-14', 0, 0, 'xiaomingx1127', '2013-09-29', 'xixiong', '2019-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS602170534934', '梅曉彤', 1, '+44 5631 854446', 4, '745249762257490922', 'Unit 28, Oxford Eco Centre, 15 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1997-01-06', 0, 0, 'muihiutung', '2008-03-29', 'muihiutung1123', '2016-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS720759533663', 'Lisa King', 1, '+44 (1865) 92 4568', 0, '152767367572439867', 'No.31 Main building, 665 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1988-12-08', 0, 0, 'kilisa', '2018-01-11', 'king424', '2008-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS549100145942', '遠藤優奈', 1, '+1 212-578-1705', 1, '913462665994512048', '211 West Houston Street Apt 27, New York, NY 10014, United States', '1989-12-30', 0, 0, 'endyun', '2019-01-25', 'yuna2', '2015-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS678888242599', '文家文', 0, '+86 769-3109-2035', 1, '609046017517539662', 'No.21 building, 122 Shanhu Rd, Dongguan, China', '1989-11-14', 0, 0, 'kmman402', '2008-08-19', 'makm2', '2011-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS559494458647', '内田舞', 0, '+81 66-581-4958', 2, '894716237063008756', '日本おおさかし平野区加美東四丁目9番10号34号室', '1996-05-07', 0, 0, 'mai3', '2020-03-21', 'uchima', '2005-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS597493028761', '陳梓軒', 0, '+81 70-0377-0295', 4, '391313174349382644', '3F, 1-6-9, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1989-08-22', 0, 0, 'chanth1996', '2012-02-16', 'tszhinchan207', '2004-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS898734061938', 'Helen Jordan', 0, '+1 838-726-3007', 1, '422781251410969929', '590 State Street Apartment 37, Albany, NY 12203, United States', '1991-10-27', 0, 0, 'jordan6', '2004-01-08', 'johel', '2001-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS252369602472', '于子韬', 1, '+81 70-3821-0738', 2, '357312994278594065', '48F, 6 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1986-11-22', 0, 0, 'yuzitao', '2001-08-31', 'zitaoyu', '2007-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS032448381820', '徐榮發', 0, '+81 66-117-4998', 3, '002522520323359777', '日本おおさかし西成区天神ノ森二丁目1番15号9階', '1986-11-28', 0, 0, 'wingfat64', '2015-08-26', 'tsuiwf3', '2005-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS614720571627', '馬志明', 0, '+81 74-541-1954', 0, '774828624650561077', '日本ならし西大寺赤田町一丁目7番1号33階', '1993-05-30', 0, 0, 'cmm207', '2015-09-07', 'chm9', '2007-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS900884050188', '宮崎陸', 1, '+81 3-8959-1304', 3, '677327071836496240', 'Rm. 7, 2-3-13 Yoyogi, Shibuya-ku, Tokyo, Japan', '1992-10-31', 0, 0, 'rikumiyazaki7', '2021-12-01', 'rikumiya', '2012-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS778047404007', '陆安琪', 0, '+1 312-257-9212', 4, '061727766991233147', '556 Pedway Apartment 50, Chicago, IL 60601, United States', '1994-02-24', 0, 0, 'luanq10', '2008-04-08', 'luanqi', '2005-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS223357089247', 'Eddie Herrera', 0, '+81 52-090-2442', 3, '210144163284427677', 'Rm. 50, 16 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-12-25', 0, 0, 'eddieherrera1224', '2005-11-18', 'herreraeddi', '2020-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS401255901327', '麥惠敏', 0, '+81 3-1662-5208', 2, '647184741230156481', '日本東京千代田区丸の内一丁目6番19号3号室', '1997-07-24', 0, 0, 'mawaiman', '2007-02-21', 'mwm', '2008-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS075081206634', 'Frances Ford', 1, '+86 760-4781-8452', 3, '195961929008478212', 'No.9 building, 420 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1987-08-04', 0, 0, 'ffo', '2021-01-15', 'ffo', '2009-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS145373586588', '藤原葵', 0, '+1 213-539-6368', 0, '095057875128532834', '628 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1998-05-21', 0, 0, 'aoi6', '2017-07-30', 'fujiwara7', '2014-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS544064570890', '石川桜', 1, '+86 146-2256-7984', 0, '247601688348736323', 'Room 36, 78 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1992-09-06', 0, 0, 'ishikawasa222', '2019-08-27', 'ishikawasakura515', '2020-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS433467421179', '前田光', 0, '+44 (121) 801 3914', 3, '759247157540817407', 'Unit 17, Oxford Eco Centre, 458 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1997-01-20', 0, 0, 'mhi', '2019-11-14', 'maedahika', '2014-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS762241155481', '中島結翔', 0, '+86 178-8908-6492', 4, '936995793141414837', '中国北京市海淀区清河中街68号986号35号楼', '1996-05-02', 0, 0, 'yuitonakajima1957', '2015-04-04', 'yuitn', '2016-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS743423490689', 'Marie Warren', 1, '+1 213-435-7274', 3, '319979615396038869', '442 Grape Street Suite 16, Los Angeles, CA 90002, United States', '1996-09-22', 0, 0, 'wm805', '2008-08-16', 'wmarie227', '2012-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS576090395069', '梁家玲', 1, '+81 3-0867-7345', 0, '908246494644545678', '日本東京千代田区丸の内一丁目6番3号45号室', '1995-06-20', 0, 0, 'leungkaling9', '2014-12-18', 'kalingl06', '2017-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS305828444479', 'Billy Chen', 1, '+86 10-2948-3636', 3, '046570624056279348', 'Room 1, 426 68 Qinghe Middle St, Haidian District, Beijing, China', '1989-01-16', 0, 0, 'billychen703', '2011-05-24', 'cbill', '2011-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS464115260893', 'Kelly Flores', 1, '+86 199-5801-5751', 3, '755391290137243858', '中国上海市浦东新区橄榄路578号32栋', '1993-12-04', 0, 0, 'kellyflores7', '2014-12-08', 'floreske9', '2018-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS291606947933', '邓璐', 1, '+86 192-1678-6574', 2, '009480633265345025', 'No.29 building, 26 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-09-30', 0, 0, 'dengl', '2022-02-15', 'luden', '2003-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS603793197027', '藤原一輝', 1, '+86 155-0573-6833', 2, '314549767500193458', 'Room 14, 559 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1986-06-17', 0, 0, 'ikkifujiwara', '2012-03-11', 'fujiwaraikki929', '2003-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS052484036410', '沈晓明', 1, '+86 21-053-3422', 3, '081069747263321221', 'No.13 building, 190 Ganlan Rd, Pudong, Shanghai, China', '1988-10-20', 0, 0, 'shenxiaoming', '2010-06-25', 'xiaomingshe', '2005-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS174210616882', '秦岚', 1, '+86 20-7346-3289', 2, '014794191772677295', '中国广州市白云区机场路棠苑街五巷732号华润大厦22室', '1991-03-30', 0, 0, 'lanqi822', '2001-12-31', 'lanq', '2017-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS673092100878', '今井和真', 0, '+81 80-1475-7259', 3, '579943358690045657', '日本東京港区東新橋一丁目5番7号29階', '1989-01-16', 0, 0, 'kazuma1988', '2019-01-20', 'imakazuma611', '2012-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS397136932957', '毛安琪', 0, '+81 90-5525-8728', 1, '028960491200517243', '日本なごやし守山区瀬古東二丁目171番10号33階', '1992-03-26', 0, 0, 'anqima', '2003-11-04', 'maoan1', '2011-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS261559841395', 'Edith Rice', 0, '+44 7743 577902', 3, '527944480960879696', 'No.17 Main building, 247 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1987-11-25', 0, 0, 'rice2016', '2014-11-27', 'riceedit11', '2015-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS573264509747', 'Amber Patel', 0, '+81 70-8403-5847', 2, '850765575855326572', '41-kai, 1-6-15, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1998-02-22', 0, 0, 'patel1221', '2006-08-12', 'ap2', '2016-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS639638305906', '郝嘉伦', 1, '+1 330-579-1059', 4, '254639163434464835', '60 Collier Road 3rd Floor, Akron, OH 44320, United States', '1987-08-01', 0, 0, 'jialunhao', '2015-11-19', 'hao9', '2018-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS152847823017', '渡辺悠人', 1, '+86 10-3943-7485', 2, '728844459895040182', 'No.23 building, 498 68 Qinghe Middle St, Haidian District, Beijing, China', '1998-08-22', 0, 0, 'satoyuto9', '2015-09-30', 'ysato814', '2012-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS931255017811', '斉藤海斗', 0, '+86 28-8955-9174', 1, '077133274463996130', '中国成都市成华区玉双路6号32号18楼', '1998-03-27', 0, 0, 'kasa', '2002-10-02', 'kaitosaito317', '2019-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS045767394397', '松井百恵', 0, '+1 213-574-4856', 2, '915921303869053531', '504 Figueroa Street Apt 30, Los Angeles, CA 90037, United States', '1992-11-18', 0, 0, 'mmomoe', '2010-01-29', 'mmom', '2011-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS414741937687', 'Karen Harrison', 1, '+86 20-1675-8199', 3, '153726684926093471', 'Room 2, 669 Xiaoping E Rd, Baiyun , Guangzhou, China', '1994-05-07', 0, 0, 'harrisonkaren', '2004-06-23', 'harrisonk', '2002-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS591521593665', 'Christine Phillips', 1, '+44 (161) 873 5999', 3, '730347879795603278', 'Unit 16, Oxford Eco Centre, 479 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-11-18', 0, 0, 'cp5', '2021-12-26', 'pc9', '2017-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS991335932903', '孔璐', 0, '+86 174-2529-9884', 1, '346560259766989015', '中国东莞珊瑚路711号35室', '1996-02-21', 0, 0, 'kl99', '2000-02-19', 'konlu', '2014-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS986307829525', 'Harold Silva', 1, '+86 755-937-4746', 2, '816689508643610862', 'Room 7, 187 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1989-03-11', 0, 0, 'hasilva', '2001-08-29', 'silva703', '2010-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS136953120294', '孔詩涵', 1, '+86 178-0612-2865', 3, '923395601574596808', 'No.27 building, 44 Jingtian East 1st St, Futian District, Shenzhen, China', '1991-07-14', 0, 0, 'kongshi99', '2021-03-22', 'kongs79', '2005-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS432313789275', '廖志遠', 1, '+86 145-0334-6475', 2, '824993976564029415', '5F, 314 Hongqiao Rd., Xu Hui District, Shanghai, China', '1989-01-20', 0, 0, 'lichi', '2000-04-03', 'cyl', '2017-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS941710656160', '文霆鋒', 1, '+86 755-097-8342', 4, '424659991680471232', 'Room 27, 581 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1992-11-29', 0, 0, 'tingfungma', '2019-02-18', 'tingfungma1026', '2020-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS880007981396', '李安琪', 1, '+44 5327 875917', 4, '275379382848750678', 'Block 45, 236 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1993-08-05', 0, 0, 'anqili', '2022-02-05', 'lianqi', '2006-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS050110112588', 'Kyle Stewart', 0, '+81 52-639-3311', 0, '190115479962296111', 'Rm. 42, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-11-08', 0, 0, 'skyle507', '2014-09-07', 'stekyle15', '2009-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS999339058142', '金子韬', 1, '+86 10-742-1315', 4, '986710870728125594', 'Room 15, CR Building, 283 FuXingMenNei Street, XiCheng District, Beijing, China', '1997-12-15', 0, 0, 'jinzita', '2020-11-19', 'jinz82', '2004-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS539341473863', '姜慧琳', 0, '+44 5557 926193', 1, '834571054140467425', 'No.2 Main building, 438 Park End St, Oxford, OX1 1JD, United Kingdom', '1986-03-23', 0, 0, 'wailamchang', '2000-02-16', 'chang722', '2013-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS278729276606', '莫震南', 1, '+86 143-6965-1288', 0, '690786510492383124', '中国广州市越秀区中山二路811号华润大厦41室', '1997-06-15', 0, 0, 'moz', '2002-04-21', 'mo4', '2020-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS461355226224', 'Jeffery Diaz', 0, '+81 70-6664-2980', 3, '959859091673439080', '日本なごやし熱田区千年二丁目5番19号31階', '1986-02-03', 0, 0, 'jeffdia', '2006-12-15', 'diaz97', '2001-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS846349405959', '坂本玲奈', 1, '+81 3-6713-5610', 1, '103068067744943839', '29-kai, 3-15-19 Ginza, Chuo-ku, Tokyo, Japan', '1997-04-18', 0, 0, 'sr1108', '2010-04-21', 'sakamotorena', '2020-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS144582533830', '程子韬', 0, '+81 90-8894-5843', 3, '064745079693928896', '日本なごやし北区楠味鋺三丁目80番11号19階', '1998-09-27', 0, 0, 'zitao1024', '2018-03-24', 'zc727', '2014-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS753667934182', '彭秀英', 1, '+86 132-1445-7143', 4, '656912256436676412', '47F, 296 68 Qinghe Middle St, Haidian District, Beijing, China', '1998-12-10', 0, 0, 'xiuyingpen86', '2019-01-20', 'pengxiu', '2017-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS651812780232', '袁安琪', 0, '+1 838-066-9515', 1, '915110520794535342', '628 State Street Apartment 3, Albany, NY 12203, United States', '1989-08-30', 0, 0, 'yueok', '2018-10-25', 'yueok3', '2002-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS037314774200', 'Benjamin Wells', 0, '+1 718-231-4189', 2, '798192229699837908', '551 Columbia St Suite 12, Brooklyn, NY 11231, United States', '1985-11-05', 0, 0, 'benwe91', '2004-08-04', 'bw5', '2015-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS259494557520', '盧慧琳', 0, '+81 74-349-7755', 0, '903021023197596565', '5-kai, 3-9-2 Gakuenminami, Nara, Japan', '1992-04-19', 0, 0, 'wailam20', '2021-12-16', 'lwailam', '2004-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS263374570746', '房國賢', 1, '+86 143-5267-2038', 1, '325825491154468048', '中国东莞珊瑚路914号10楼', '1987-11-03', 0, 0, 'kwokyin5', '2001-08-15', 'fokwokyin6', '2020-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS286125786114', '應學友', 1, '+86 755-816-2166', 0, '199997684139898634', 'No.29 building, 590 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1988-12-12', 0, 0, 'hokyau2019', '2005-02-26', 'yinghy2019', '2015-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS802255604073', '梅明', 1, '+44 7839 468980', 4, '657998114574527504', 'Flat 34, 164 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1996-06-17', 0, 0, 'mmi1003', '2014-09-19', 'mum', '2001-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS593378444316', '羅霆鋒', 0, '+86 159-2155-3990', 1, '435490846948717863', '中国中山乐丰六路328号9室', '1993-02-08', 0, 0, 'lo57', '2020-03-19', 'lotf1961', '2018-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS985979124922', 'Catherine Herrera', 0, '+86 760-249-6258', 1, '248270556832379026', '34F, 918 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1993-07-25', 0, 0, 'herreracatherine', '2015-07-06', 'herrera5', '2004-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS080010143195', '汤睿', 0, '+86 161-7685-0587', 1, '096691034567327927', 'Room 19, CR Building, 224 Jingtian East 1st St, Futian District, Shenzhen, China', '1995-02-26', 0, 0, 'tangrui', '2020-11-22', 'tangru2', '2002-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS392444875504', '山田光莉', 0, '+1 838-845-8054', 3, '562605821735002732', '121 Lark Street 3rd Floor, Albany, NY 12210, United States', '1994-07-30', 0, 0, 'yamadahikari', '2001-06-22', 'yamadahikari219', '2013-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS851560637892', '樊小慧', 1, '+86 760-7026-0543', 1, '859094427988731792', '中国中山乐丰六路962号华润大厦36室', '1994-10-08', 0, 0, 'fansiuwai1977', '2011-09-30', 'siuwai1219', '2000-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS664721809796', 'Wayne Campbell', 0, '+81 3-2787-6506', 1, '292951345453814197', 'Rm. 26, 1-6-13, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-04-11', 0, 0, 'cwa', '2014-02-13', 'wacampbell4', '2006-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS019377511476', '余詩涵', 0, '+81 3-9717-9853', 0, '498803468842189252', '日本東京品川区東五反田五丁目2番8号17階', '1990-04-15', 0, 0, 'yushih', '2010-11-23', 'shihan1110', '2016-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS507997535277', '山下詩乃', 0, '+1 213-733-1900', 2, '951552724423372072', '827 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1996-02-04', 0, 0, 'shiy311', '2016-12-30', 'shyamashita', '2009-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS005536279963', '任詠詩', 1, '+44 7900 056113', 2, '428687123331312848', 'Block 50, 925 Redfern St, Liverpool, L20 8JB, United Kingdom', '1998-02-09', 0, 0, 'wsy', '2021-11-09', 'wingsze605', '2018-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS118045297611', 'Bobby Nichols', 0, '+1 614-370-6951', 1, '747974812562047546', '368 Tremont Road Suite 25, Columbus, GA 43212, United States', '1985-07-01', 0, 0, 'bobbynichols', '2005-06-05', 'nichbobby', '2009-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS154236868962', '孙秀英', 1, '+86 760-598-8359', 3, '966573530709512933', '4F, 551 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1988-11-30', 0, 0, 'xiuysun14', '2018-10-15', 'sunxiu13', '2007-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS490114172472', '邵朝偉', 1, '+81 74-744-0348', 3, '676774220661993910', '日本ならし大和郡山市本庄町一丁目1番11号29階', '1994-02-03', 0, 0, 'siuchiuwai', '2007-07-04', 'chiuwai8', '2017-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS391189260807', '郭安琪', 1, '+81 52-888-9745', 2, '815219231537238602', 'Rm. 20, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1998-12-23', 0, 0, 'guoa', '2005-03-02', 'anqi3', '2006-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS726951707678', 'Henry Edwards', 1, '+86 21-5751-5553', 1, '013361642199072591', '中国上海市徐汇区虹桥路642号14栋', '1986-12-08', 0, 0, 'edwards85', '2004-01-22', 'henryedwards1', '2016-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS358962632566', 'Curtis Myers', 1, '+44 (161) 750 4149', 2, '215014712906657906', 'Flat 40, 508 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1987-08-12', 0, 0, 'myers927', '2013-04-16', 'curtismy', '2016-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS621636697698', '尹國權', 0, '+86 21-0180-4903', 2, '169630390353316061', '24F, 797 Binchuan Rd, Minhang District, Shanghai, China', '1998-07-10', 0, 0, 'yinkk', '2017-08-14', 'ykk10', '2019-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS952132684606', '朱璐', 1, '+44 (20) 7124 6052', 2, '280253812855528755', 'Block 50, 400 Maddox Street, London, W1S 1PU, United Kingdom', '1993-05-25', 0, 0, 'lzh7', '2012-02-10', 'zhu102', '2002-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS491339002168', '吉田絢斗', 1, '+81 11-052-1580', 3, '592981481606897150', '49F, 13-3-4 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1994-12-14', 0, 0, 'ayo', '2017-12-25', 'ayaty307', '2021-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS198900711542', 'Jimmy Burns', 1, '+1 718-028-0743', 1, '170248570945692436', '994 Flatbush Ave Apt 9, Brooklyn, NY 11225, United States', '1994-04-25', 0, 0, 'burnjimmy8', '2001-07-31', 'jburns', '2013-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS692319057251', '莫安琪', 0, '+81 52-097-1102', 2, '761220747093400338', '日本なごやし守山区瀬古東二丁目171番16号43階', '1992-07-08', 0, 0, 'anqimo1', '2014-11-07', 'moa1', '2001-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS489166651215', '中森美緒', 1, '+1 330-007-6122', 2, '581329803563469334', '54 Ridgewood Road Apartment 1, Akron, OH 44321, United States', '1988-03-11', 0, 0, 'mionaka2015', '2006-06-14', 'mionak210', '2017-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS364284763351', 'Christopher Cruz', 1, '+81 90-0916-8844', 1, '128351733855738524', '37F, 3-27-18 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1996-11-08', 0, 0, 'christophercruz', '2014-06-10', 'cruz4', '2010-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS750866705646', 'Maria Spencer', 1, '+81 80-5696-3241', 1, '732768415521553389', '33-kai, 5-2-20 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-01-24', 0, 0, 'marspencer', '2001-07-09', 'maspencer', '2017-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS176719324999', '田村和真', 0, '+81 70-2292-1589', 0, '619338486944223264', '日本なごやし守山区瀬古東二丁目171番5号16階', '1995-08-28', 0, 0, 'kazumatamur8', '2011-08-04', 'tamurka', '2007-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS523228832113', '村田架純', 1, '+81 3-6030-8358', 4, '230803413394811769', '41F, 1-6-1, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1988-08-22', 0, 0, 'km604', '2015-01-17', 'kasumimura', '2013-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS383107842584', 'Melissa Cook', 0, '+44 7031 152782', 3, '702932958087869418', 'Block 23, 456 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-10-17', 0, 0, 'cookm', '2017-04-02', 'comelissa48', '2021-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS208648668686', '梅志遠', 1, '+81 80-3296-2186', 1, '540189770661348738', 'Rm. 34, 2-3-7 Yoyogi, Shibuya-ku, Tokyo, Japan', '1990-11-20', 0, 0, 'muicy', '2010-10-03', 'mucy', '2006-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS365958968851', 'Karen Henderson', 1, '+81 80-9315-5586', 3, '594994559023864475', 'Rm. 16, 1-5-2, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1991-09-21', 0, 0, 'henkaren10', '2014-06-13', 'hekaren622', '2014-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS613653313204', 'Michelle Cox', 0, '+86 10-221-8377', 3, '179500189783750221', '中国北京市海淀区清河中街68号237号42栋', '1985-10-26', 0, 0, 'coxm3', '2021-02-13', 'coxm', '2016-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS625086667630', 'Jean Davis', 1, '+81 52-941-3466', 2, '861639581298298761', 'Rm. 30, 3-19-3 Shimizu, Kita Ward, Nagoya, Japan', '1993-04-22', 0, 0, 'davis208', '2002-03-08', 'davjea', '2008-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS954685908253', '陳發', 0, '+86 145-1288-4262', 0, '052783578803206194', '中国广州市天河区天河路445号32号楼', '1987-07-27', 0, 0, 'chafa', '2011-07-31', 'fat89', '2014-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS993767908896', 'Jeremy Coleman', 0, '+81 74-329-2343', 3, '775111551302783025', '12F, 1-7-10 Saidaiji Akodacho, Nara, Japan', '1988-12-10', 0, 0, 'colemj', '2001-05-08', 'jerecole', '2019-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS060392288459', 'Juan Ruiz', 0, '+86 181-6115-7360', 3, '539341743286553764', '38F, 804 FuXingMenNei Street, XiCheng District, Beijing, China', '1997-07-27', 0, 0, 'rjuan', '2009-05-16', 'jruiz8', '2021-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS077139124860', '曹慧琳', 1, '+81 3-8952-9361', 0, '747401885677747084', '日本東京品川区東五反田五丁目2番5号1号室', '1992-10-26', 0, 0, 'wlcho9', '2011-06-11', 'chwl', '2002-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS271721520461', '田睿', 0, '+81 66-130-6743', 2, '385363914527005732', '31-kai, 4-9-4 Kamihigashi, Hirano Ward, Osaka, Japan', '1986-01-16', 0, 0, 'trui5', '2016-05-09', 'tianrui', '2018-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS969628556427', '斉藤大輔', 0, '+81 90-9132-0120', 3, '889850830915366521', '日本札幌中央区宮の森四条六丁目1番16号38号室', '1998-10-14', 0, 0, 'dasaito', '2019-02-06', 'daisuke615', '2012-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS421638611615', '中村大和', 0, '+81 80-7416-7092', 1, '834529930675508421', '32F, 8 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-04-21', 0, 0, 'nakamurayamato1206', '2018-12-10', 'nakamyamato', '2012-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS794794219089', '横山大和', 1, '+81 80-2545-7865', 0, '288526353327356107', '日本おおさかし東住吉区東田辺三丁目27番4号34階', '1993-01-09', 0, 0, 'yokoyama', '2010-04-19', 'yamato1967', '2009-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS433722441578', '顾睿', 0, '+1 838-315-8088', 1, '816249666821099316', '625 Central Avenue Suite 17, Albany, NY 12205, United States', '1992-04-08', 0, 0, 'gu6', '2017-03-06', 'gur87', '2020-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS027473372744', 'Louise Peterson', 1, '+86 175-5023-1011', 3, '399790021977396234', 'Room 34, CR Building, 18 Hongqiao Rd., Xu Hui District, Shanghai, China', '1996-10-18', 0, 0, 'louispeterson3', '2006-02-15', 'louipeterson', '2010-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS574473636514', 'Kathryn Lopez', 1, '+86 20-463-3276', 2, '315923397757032604', 'No.26 building, 884 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1999-03-02', 0, 0, 'lokathryn45', '2010-11-16', 'kathrynlop8', '2014-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS712477683571', 'Thomas Bennett', 1, '+1 718-397-1843', 1, '274294290987899215', '726 1st Ave Suite 27, Brooklyn, NY 11220, United States', '1993-06-24', 0, 0, 'bthom', '2016-03-14', 'bthomas', '2004-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS054930490687', 'Judith Gray', 0, '+81 80-1583-4414', 1, '320523416749981172', 'Rm. 10, 2-1-19 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1987-07-05', 0, 0, 'grayjudi', '2001-05-13', 'gray6', '2007-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS092183418576', '譚國榮', 0, '+86 755-6224-9482', 3, '112979605776374055', '6F, 515 Jingtian East 1st St, Futian District, Shenzhen, China', '1991-04-14', 0, 0, 'kwokwingtam', '2015-08-21', 'tam517', '2020-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS344592086107', '鐘天樂', 0, '+44 (151) 464 9790', 4, '181302687111860288', 'Flat 36, 753 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1994-05-19', 0, 0, 'tlch', '2017-11-29', 'chuntinlo313', '2016-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS219213262831', '謝梓軒', 0, '+86 199-9450-6245', 1, '005144747322832765', 'No.19 building, 264 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1987-01-11', 0, 0, 'tszhints', '2016-12-08', 'thtse4', '2006-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS475234973316', 'Clarence Moore', 1, '+44 7655 958265', 1, '055861189255059355', 'Flat 23, 266 New Street, Birmingham, B2 4DB, United Kingdom', '1991-12-03', 0, 0, 'clarencemoore812', '2000-05-20', 'clmoore01', '2000-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS292698983358', '清水悠人', 0, '+1 838-632-9624', 2, '509925225111820146', '422 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1992-06-09', 0, 0, 'shimiyuto528', '2004-03-01', 'yushimizu2', '2019-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS700580866866', '斎藤桜', 0, '+81 52-424-1432', 1, '764053395771885313', 'Rm. 22, 19 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1998-05-10', 0, 0, 'sakura3', '2011-11-01', 'sasa', '2002-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS674224219712', '孙秀英', 0, '+44 (151) 258 3691', 0, '241241100663972267', 'No.27 Main building, 7 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1996-08-08', 0, 0, 'xisun', '2012-02-14', 'xiuying417', '2007-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS530932417674', 'Anna Sanchez', 0, '+81 70-0873-8848', 2, '810754678278026837', '20-kai, 2-5-7 Chitose, Atsuta Ward, Nagoya, Japan', '1992-01-29', 0, 0, 'sananna4', '2015-11-10', 'sanchezanna1991', '2001-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS189403917801', '田村大輔', 0, '+86 133-9531-1830', 2, '667616254805867001', '中国成都市锦江区人民南路四段932号9栋', '1997-09-29', 0, 0, 'dt10', '2003-12-08', 'dait5', '2019-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS935693040157', 'Jesse Reyes', 0, '+81 66-654-8628', 0, '502063995048158575', '日本おおさかし東住吉区東田辺三丁目27番6号12階', '1988-12-18', 0, 0, 'rje', '2002-02-09', 'jesse6', '2002-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS999803601722', 'Susan Clark', 1, '+1 330-233-4600', 2, '727754220008177336', '693 Collier Road 3rd Floor, Akron, OH 44320, United States', '1998-12-19', 0, 0, 'susanclar', '2020-02-29', 'susan10', '2002-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS427545751964', 'Howard Silva', 0, '+81 11-119-3223', 3, '256519514120520027', '23F, 5-19-15 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1985-01-02', 0, 0, 'howsilva', '2011-09-10', 'silva2020', '2014-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS545682637757', '廖杰宏', 1, '+81 90-3234-5076', 0, '888129506133733460', 'Rm. 39, 5-2-15 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1989-06-26', 0, 0, 'jiehong63', '2015-09-09', 'liao1977', '2021-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS398068313990', '木下涼太', 1, '+81 90-0773-1575', 1, '888555899180200466', '日本なごやし北区清水三丁目19番4号26階', '1991-03-05', 0, 0, 'kinoryota329', '2015-12-29', 'kryota1945', '2005-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS747561013316', '小林樹', 1, '+44 (1223) 41 8415', 0, '233469332330036992', 'Unit 45, Oxford Eco Centre, 983 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1998-03-20', 0, 0, 'itsukkobayashi824', '2022-03-03', 'ikob1022', '2020-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS409669403519', '藤田百花', 0, '+44 5852 103084', 3, '263037006795810099', 'No.9 Main building, 280 Sackville St, Manchester, M1 3BB, United Kingdom', '1990-04-20', 0, 0, 'fujita409', '2013-02-24', 'fujitamom312', '2012-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS932420156766', '藤井大和', 1, '+81 80-1678-8084', 2, '900307519576485886', '日本札幌白石区菊水三条五丁目4番10号5階', '1991-10-27', 0, 0, 'fujiiyamato10', '2021-05-25', 'yamatofujii6', '2006-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS915898634654', '安藤美緒', 1, '+86 760-183-4663', 2, '353942129600133145', '中国中山天河区大信商圈大信南路568号48室', '1993-10-15', 0, 0, 'ma108', '2011-05-04', 'andm1231', '2015-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS821552716529', '韓麗欣', 1, '+81 11-890-3978', 1, '099426776915539688', '日本札幌白石区菊水三条五丁目4番13号32階', '1989-06-16', 0, 0, 'laiha720', '2006-09-20', 'lyha', '2002-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS450525398114', '段致远', 0, '+81 52-306-1528', 2, '178140640002286822', '日本なごやし瑞穂区河岸町四丁目20番11号38階', '1988-02-23', 0, 0, 'zduan95', '2012-02-01', 'zhiyuanduan913', '2004-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS129949251058', '石井光莉', 1, '+81 11-250-7268', 2, '152708939577539650', '日本札幌豊平区豊平三条十三丁目3番11号33階', '1992-06-09', 0, 0, 'ihika', '2009-08-05', 'ishiihikari727', '2019-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS770143680703', '高木葵', 1, '+81 3-5034-5957', 1, '410907856646410589', '日本東京港区東新橋一丁目5番6号33階', '1992-03-01', 0, 0, 'takagi7', '2005-02-09', 'takagi8', '2013-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS257846606631', '馮富城', 1, '+81 70-9144-5348', 1, '875655365633061024', '日本おおさかし東住吉区東田辺三丁目27番15号2階', '1992-03-25', 0, 0, 'fsf', '2010-02-09', 'fungfushi1952', '2002-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS452656177077', '李慧儀', 0, '+86 760-369-8935', 1, '290639711317431122', '中国中山紫马岭商圈中山五路229号2室', '1996-09-07', 0, 0, 'leewy98', '2017-02-13', 'wylee', '2019-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS625926910914', '胡德華', 0, '+81 90-9479-1787', 0, '708737653799274767', '日本ならし学園南三丁目9番7号46階', '1995-01-26', 0, 0, 'wuta', '2005-07-03', 'takwah2005', '2012-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS335082938276', '小川桜', 1, '+81 11-164-4711', 1, '618128102651453700', '日本札幌白石区菊水三条五丁目4番17号18号室', '1994-10-17', 0, 0, 'ogasa', '2016-01-29', 'osaku', '2021-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS568359498563', '邓睿', 1, '+44 5164 453598', 3, '119414636593382620', 'Flat 42, 658 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1998-09-01', 0, 0, 'ruid', '2011-06-03', 'dr7', '2001-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS935028349356', '馮頴思', 0, '+1 614-364-7374', 3, '851771995752557802', '740 East Alley Apartment 44, Columbus, GA 43201, United States', '1986-07-17', 0, 0, 'fungws', '2020-01-24', 'wingszefu', '2012-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS135351955084', '韦晓明', 1, '+44 (151) 940 0406', 3, '873469516634318605', 'Unit 47, Oxford Eco Centre, 87 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1992-04-20', 0, 0, 'xiwei67', '2001-10-15', 'weixi', '2019-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS090822971429', '曹宇宁', 0, '+86 769-4365-6001', 3, '560058969610565874', '中国东莞环区南街二巷317号46楼', '1989-06-17', 0, 0, 'caoy', '2018-12-10', 'yuning7', '2013-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS294726806922', '中山光', 0, '+86 10-5546-1564', 0, '852467952040309369', '中国北京市延庆区028县道365号31号楼', '1996-04-01', 0, 0, 'hn214', '2008-02-01', 'hikarnak', '2007-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS617960647532', '翁嘉欣', 0, '+44 5404 638437', 0, '015471492326715784', 'Unit 37, Oxford Eco Centre, 408 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1993-03-28', 0, 0, 'karyanyung', '2009-04-29', 'yky', '2018-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS186660559737', '湯力申', 0, '+81 52-298-3600', 0, '672595945737186047', '29-kai, 20 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-06-30', 0, 0, 'tongliksun01', '2020-07-30', 'liksunto5', '2002-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS111967698224', '邓安琪', 1, '+1 213-242-2003', 3, '079603381513543092', '916 S Broadway Apartment 12, Los Angeles, CA 90015, United States', '1996-01-25', 0, 0, 'danqi1', '2014-11-21', 'dengan808', '2003-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS060073076899', 'Laura Romero', 1, '+81 80-0479-6932', 3, '971895916914712209', '日本東京品川区東五反田五丁目2番12号5階', '1993-02-21', 0, 0, 'laura65', '2016-04-17', 'lauromer10', '2017-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS198373549823', 'Angela Allen', 1, '+86 28-468-2504', 2, '764073910515002580', '中国成都市锦江区红星路三段957号华润大厦46室', '1991-01-06', 0, 0, 'aangel7', '2014-12-25', 'allenangel', '2021-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS189351503190', '叶子韬', 1, '+81 11-468-4669', 2, '665007645852343571', '日本札幌白石区菊水三条五丁目2番6号15号室', '1990-09-06', 0, 0, 'yezit1969', '2002-06-13', 'yezita2012', '2003-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS365161714318', '钱震南', 1, '+86 21-2134-0937', 3, '981434418144638596', '中国上海市闵行区宾川路466号9栋', '1998-11-22', 0, 0, 'qiazhennan', '2003-02-20', 'qzhennan', '2019-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS742141208373', 'Brandon Freeman', 1, '+86 28-033-7618', 2, '331034599224802950', '中国成都市成华区玉双路6号105号43号楼', '1993-06-22', 0, 0, 'brandonfreem1009', '2016-03-02', 'freemanbr', '2014-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS380986239483', 'Deborah Kelley', 1, '+44 (20) 6237 0241', 2, '947821619039878743', 'Flat 9, 648 Hanover Street, London, W1S 1YD, United Kingdom', '1991-10-08', 0, 0, 'dkelle', '2001-02-08', 'kelleydeborah90', '2016-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS730830190462', '桜井蓮', 0, '+86 20-2240-4300', 1, '347690329747547585', '中国广州市海珠区江南西路935号16楼', '1993-04-27', 0, 0, 'rensakurai', '2013-08-05', 'rensaku', '2018-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS876436174481', 'Sarah Morales', 0, '+44 5179 730878', 1, '181770868581307919', 'Block 12, 98 Park End St, Oxford, OX1 1JD, United Kingdom', '1991-09-06', 0, 0, 'ms6', '2000-03-18', 'morales9', '2011-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS362270209740', '戚朝偉', 0, '+86 20-235-6187', 4, '425075985471965378', 'Room 27, 610 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1993-01-31', 0, 0, 'chicchiuwai', '2014-07-19', 'chiuwai20', '2017-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS817017601562', '常岚', 1, '+86 755-235-2892', 3, '171518060959349839', '38F, 587 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1989-01-16', 0, 0, 'changla', '2008-06-10', 'clan4', '2020-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS940035721666', '孙子异', 1, '+86 10-0212-3271', 3, '958316780556905627', '中国北京市东城区东单王府井东街228号18号楼', '1999-01-02', 0, 0, 'zsu1', '2011-05-03', 'sunz', '2012-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS698821071900', '鄭淑怡', 0, '+81 3-3435-0660', 4, '656855104615480837', '日本東京千代田区丸の内一丁目6番4号32号室', '1997-05-22', 0, 0, 'chengsy', '2013-12-28', 'cheng5', '2008-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS204853366991', '贺璐', 0, '+1 330-931-2268', 0, '863242868067278045', '790 Collier Road Apt 14, Akron, OH 44320, United States', '1998-01-19', 0, 0, 'luhe', '2002-02-19', 'helu417', '2014-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS763803911026', 'Wendy Perry', 1, '+1 838-061-6056', 3, '243062812954396026', '507 Broadway Apartment 28, Albany, NY 12207, United States', '1988-01-24', 0, 0, 'wendyp', '2015-02-14', 'perrywendy', '2007-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS338856605475', 'Alexander Jones', 1, '+81 52-050-5328', 4, '292698596974042096', '29F, 8 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-12-16', 0, 0, 'jonesalexander', '2014-06-02', 'jonesalexander69', '2005-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS481810183165', '黎詩君', 1, '+81 90-0539-6115', 0, '560972070847967504', '日本なごやし守山区瀬古東二丁目171番8号8号室', '1986-10-10', 0, 0, 'szekwan6', '2021-09-12', 'lasze', '2021-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS729876099541', '鄺曉彤', 0, '+44 (20) 6285 4382', 1, '918263662905372286', 'Flat 46, 105 Regent Street, London, W1B 2LX, United Kingdom', '1991-08-08', 0, 0, 'htkwong', '2010-02-23', 'kwong1', '2005-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS233539072489', 'Rose Morgan', 1, '+86 10-939-0841', 1, '195881077367349388', '23F, 816 Dong Zhi Men, Dongcheng District, Beijing, China', '1987-10-22', 0, 0, 'rose86', '2015-08-21', 'mrose', '2006-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS071995343354', '松本一輝', 0, '+81 90-8219-3690', 4, '229330736704892338', '日本東京中央区銀座三丁目12番6号30号室', '1986-05-31', 0, 0, 'matsumoto1', '2005-02-27', 'mikki8', '2018-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS938915682556', '贾璐', 1, '+44 (20) 1708 4245', 1, '981964470417724647', 'No.28 Main building, 716 Pollen Street, London, W1S 1NG, United Kingdom', '1990-07-10', 0, 0, 'jialu1992', '2012-03-26', 'lujia4', '2017-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS108214341559', 'Phillip Wagner', 1, '+44 5737 673775', 2, '900207280893350671', 'Unit 31, Oxford Eco Centre, 607 Hanover Street, London, W1S 1YD, United Kingdom', '1985-07-20', 0, 0, 'phillipwag', '2004-09-22', 'phillw', '2005-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS223472488713', 'Evelyn White', 0, '+44 (20) 7305 2059', 3, '139313090341109890', 'Block 6, 439 Maddox Street, London, W1S 1PU, United Kingdom', '1988-06-06', 0, 0, 'white2', '2017-06-29', 'evelywhite', '2009-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS779477039461', '崔杰倫', 0, '+86 145-8270-3146', 3, '540381194556335219', '中国北京市東城区東直門內大街645号46楼', '1988-06-09', 0, 0, 'clchoi306', '2009-04-28', 'cch', '2020-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS609869897983', '陈璐', 1, '+86 183-6192-5354', 1, '218720363380408252', '中国广州市白云区小坪东路268号6号楼', '1986-11-24', 0, 0, 'luch', '2016-06-22', 'chenlu', '2006-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS281920254720', '中山舞', 0, '+1 614-723-5347', 2, '512507376080342284', '101 Diplomacy Drive Suite 3, Columbus, GA 43228, United States', '1993-01-08', 0, 0, 'mai6', '2002-07-21', 'nmai212', '2000-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS210618485982', 'Barbara Perez', 1, '+81 3-2739-5960', 3, '769381171480687520', '日本東京渋谷区代々木二丁目3番5号50階', '1987-10-22', 0, 0, 'barbperez', '2009-10-08', 'bperez', '2017-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS321560339168', '蕭富城', 0, '+44 (20) 3244 7967', 0, '122559925813719364', 'Unit 23, Oxford Eco Centre, 668 Regent Street, London, W1B 2LX, United Kingdom', '1990-09-20', 0, 0, 'sifs617', '2017-03-12', 'siufushing72', '2009-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS912049108798', '渡部紗良', 0, '+81 52-154-5958', 1, '392533687444339939', 'Rm. 49, 11 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-03-13', 0, 0, 'watanabesar', '2010-04-18', 'watansara9', '2006-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS836253908229', '陶家強', 0, '+86 158-0549-1641', 2, '526580146028546499', 'Room 35, 259 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1985-09-17', 0, 0, 'taokakeung6', '2005-02-15', 'taokakeung', '2018-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS978000559079', 'Marilyn Robinson', 0, '+1 614-074-1468', 1, '135575987402215196', '267 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1990-12-15', 0, 0, 'rmarilyn6', '2003-09-23', 'mrobin', '2000-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS178355663963', '程云熙', 0, '+86 10-0819-5281', 2, '044408663033317640', 'No.43 building, 460 028 County Rd, Yanqing District, Beijing, China', '1985-06-03', 0, 0, 'cheng89', '2014-04-10', 'ycheng74', '2005-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS789700193666', '罗杰宏', 1, '+81 90-0444-9502', 3, '330453929688261673', '8F, 2-1-11 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1998-10-18', 0, 0, 'jlu104', '2017-11-17', 'jiehongluo', '2012-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS379067289848', '罗宇宁', 1, '+81 90-6309-7684', 1, '657255566702451551', '11F, 12 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1989-04-28', 0, 0, 'yuluo', '2020-03-25', 'yuningl', '2015-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS795698558771', '房學友', 0, '+81 11-360-2287', 1, '827671387213593438', '16F, 5-2-5 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1992-07-26', 0, 0, 'fhy', '2012-03-15', 'fong808', '2018-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS490983099815', '應玲玲', 0, '+81 80-5593-1827', 4, '804723381392826238', 'Rm. 21, 17 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1998-10-06', 0, 0, 'ying518', '2000-10-23', 'lly', '2001-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS025291753025', '袁嘉伦', 0, '+81 74-064-8732', 2, '341219787269974704', '16F, 3-9-9 Gakuenminami, Nara, Japan', '1986-05-10', 0, 0, 'jialunyu', '2009-12-05', 'yuanj', '2002-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS422702223418', 'Joyce Herrera', 1, '+81 70-6933-2278', 3, '530704719403812398', '日本札幌清田区真栄四条五丁目19番19号28階', '1997-12-07', 0, 0, 'hjoyc', '2017-06-04', 'herjoyce7', '2001-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS040391744823', '山崎陽太', 0, '+81 90-3377-4658', 4, '634673743016349296', '19-kai, 3-19-8 Shimizu, Kita Ward, Nagoya, Japan', '1991-10-01', 0, 0, 'yotayamaz923', '2001-09-23', 'yota10', '2018-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS516906216772', '钱子异', 0, '+86 760-5385-5095', 3, '977313164952958616', '中国中山京华商圈华夏街549号25室', '1999-01-02', 0, 0, 'qianz', '2019-07-20', 'qianziyi', '2022-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS469383525031', 'Michelle Gordon', 1, '+86 139-3507-2216', 1, '168105462137656211', 'Room 17, CR Building, 130 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1987-03-24', 0, 0, 'michellego', '2013-06-21', 'michellegordon', '2009-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS759104371331', '武田美月', 0, '+44 (1865) 93 1558', 1, '226924807568160797', 'No.34 Main building, 358 Park End St, Oxford, OX1 1JD, United Kingdom', '1994-08-01', 0, 0, 'mitsukita', '2011-09-30', 'tm109', '2014-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS219124063892', '贺秀英', 1, '+86 28-820-7220', 3, '125707276162597892', '42F, 523 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1985-05-13', 0, 0, 'xhe41', '2015-01-20', 'hxiu', '2021-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS504465681766', '元安琪', 1, '+86 20-900-0857', 2, '807643743443705703', '中国广州市海珠区江南西路826号华润大厦17室', '1994-05-10', 0, 0, 'onkayyu', '2009-07-21', 'oky', '2017-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS814193786228', '原田葵', 1, '+86 175-7309-1566', 1, '779121352244491155', '中国上海市徐汇区虹桥路575号6栋', '1991-01-01', 0, 0, 'ahara43', '2005-06-07', 'aharada426', '2020-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS783168241023', '佐々木光莉', 1, '+86 28-0943-3837', 1, '265419214610491966', '中国成都市锦江区人民南路四段984号10栋', '1991-12-29', 0, 0, 'sasakihikari', '2016-07-31', 'hiks85', '2015-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS709267696829', '雷家文', 1, '+1 614-433-7025', 1, '604154238243160878', '959 East Cooke Road Apt 32, Columbus, GA 43214, United States', '1986-06-01', 0, 0, 'lkaman4', '2010-03-25', 'louikm3', '2013-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS434273446802', '渡辺翼', 0, '+1 838-099-6661', 2, '072050380580716353', '769 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1988-01-13', 0, 0, 'sato1123', '2012-09-06', 'tsubasas', '2018-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS868413593941', 'Ray Gonzales', 0, '+44 (121) 880 2856', 3, '347628748263794492', 'Unit 11, Oxford Eco Centre, 784 New Street, Birmingham, B2 4DB, United Kingdom', '1990-12-26', 0, 0, 'gonray9', '2007-11-18', 'gra324', '2020-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS080150587318', 'Debra Johnson', 0, '+86 10-0407-3759', 1, '616254633625408524', 'No.25 building, 60 028 County Rd, Yanqing District, Beijing, China', '1994-01-24', 0, 0, 'johnsondebr', '2019-02-07', 'jd5', '2006-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS887509524025', 'Glenn Hall', 0, '+1 212-275-6639', 1, '059073561614070757', '233 Fifth Avenue Suite 44, New York, NY 10017, United States', '1991-10-13', 0, 0, 'glenn530', '2008-05-10', 'hglenn', '2016-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS454221849584', '韦秀英', 0, '+1 212-906-6297', 0, '458988282421497515', '879 Canal Street Apt 14, New York, NY 10013, United States', '1993-04-24', 0, 0, 'weix2020', '2001-12-08', 'xiuying4', '2017-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS792882517577', 'Carlos Holmes', 0, '+86 138-6700-6023', 1, '045867259118672863', '中国广州市白云区小坪东路823号华润大厦14室', '1997-12-11', 0, 0, 'hoc', '2019-05-04', 'holmes07', '2014-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS885440360829', '甘詠詩', 0, '+81 90-3190-3856', 2, '069041058210778479', '5F, 13-3-19 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1988-05-10', 0, 0, 'wingszeka601', '2011-12-24', 'wingszeka', '2009-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS344058016880', '増田樹', 1, '+81 3-7900-8054', 4, '936236407321256874', '日本東京品川区東五反田五丁目2番7号11階', '1998-11-04', 0, 0, 'maitsuki1015', '2006-03-26', 'masitsu817', '2021-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS183309191785', 'Stanley Coleman', 0, '+44 (161) 692 7083', 2, '854601668827435020', 'Unit 3, Oxford Eco Centre, 351 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1985-12-14', 0, 0, 'stanley4', '2018-07-21', 'stacolem825', '2015-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS308088890183', 'Jeremy Coleman', 0, '+81 52-443-3627', 3, '978870324079423866', '15F, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1987-02-14', 0, 0, 'jeremycoleman3', '2021-11-23', 'colemje', '2011-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS941552473036', 'Fred Grant', 1, '+1 718-169-7682', 2, '699100011069845194', '208 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1987-10-04', 0, 0, 'fg2', '2006-01-11', 'frgrant', '2004-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS224426338744', '中森蒼士', 0, '+81 70-2239-3498', 2, '964678070117672317', '36-kai, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1985-07-16', 0, 0, 'nakamori625', '2011-08-02', 'nakaa', '2007-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS578862257503', 'Jonathan Bailey', 1, '+44 (151) 931 7820', 0, '934598042395059961', 'Unit 2, Oxford Eco Centre, 814 Redfern St, Liverpool, L20 8JB, United Kingdom', '1987-02-13', 0, 0, 'baileyjonathan8', '2016-07-05', 'jonathan10', '2019-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS086797605345', '阎致远', 0, '+81 66-059-8436', 4, '541641833021193691', '日本おおさかし西成区天神ノ森二丁目1番4号10号室', '1993-08-20', 0, 0, 'zhiyuan107', '2004-10-08', 'zhiyuanyan', '2008-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS910908001079', '狄潤發', 0, '+86 191-8581-7547', 4, '891502108998919869', '1F, No.408, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1986-01-11', 0, 0, 'yfti', '2015-06-07', 'yfti926', '2008-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS749211124439', 'Norman Tucker', 1, '+81 70-1444-0022', 1, '936455481766330088', '日本札幌豊平区豊平三条十三丁目3番8号42号室', '1999-03-03', 0, 0, 'normantuc', '2014-01-11', 'normtuck', '2004-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS970895556761', '宮本光莉', 0, '+86 196-8420-2625', 3, '511365062164482780', 'Room 9, 103 FuXingMenNei Street, XiCheng District, Beijing, China', '1993-02-16', 0, 0, 'miyamotohikari', '2010-10-19', 'miyhika', '2011-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS256266889397', 'Amy Ferguson', 0, '+86 174-8294-3112', 0, '070353507083612939', 'No.27 building, No.993, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1996-12-04', 0, 0, 'amyfe123', '2013-02-02', 'amyf', '2003-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS563306921983', '曹子异', 1, '+1 330-668-4919', 3, '343665306373282525', '910 Collier Road Suite 40, Akron, OH 44320, United States', '1988-11-10', 0, 0, 'caoziyi5', '2000-08-12', 'cziyi', '2006-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS544072850343', 'Norman Reyes', 1, '+86 141-0988-8991', 2, '817645656076890862', '中国北京市东城区东单王府井东街511号11楼', '1997-04-09', 0, 0, 'norman9', '2007-09-04', 'normanreye', '2006-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS147970450568', '藤原葉月', 0, '+1 330-788-0728', 2, '860296914271173178', '776 Fern Street Apartment 10, Akron, OH 44307, United States', '1993-10-27', 0, 0, 'fujiwhazuki45', '2013-12-02', 'hazukifu', '2014-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS375601519836', 'Stanley Castillo', 1, '+86 28-8191-0490', 4, '041298589748633355', 'No.41 building, 221 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1993-01-12', 0, 0, 'stanley57', '2021-03-17', 'sca', '2016-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS020872595832', '白杰倫', 1, '+86 175-0846-3143', 1, '123367375219474652', 'No.24 building, 253 FuXingMenNei Street, XiCheng District, Beijing, China', '1989-06-25', 0, 0, 'clpak2003', '2001-08-18', 'pachiehlun', '2009-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS301546919459', '三浦翼', 1, '+44 7304 736339', 0, '391644106563150212', 'Unit 19, Oxford Eco Centre, 565 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-02-11', 0, 0, 'miura2', '2000-01-11', 'miuratsubasa', '2006-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS445370709741', '谷口健太', 0, '+86 21-489-5267', 0, '554231780460965902', 'Room 8, 428 Jianxiang Rd, Pudong, Shanghai, China', '1994-05-16', 0, 0, 'taniguchiken', '2021-07-07', 'kenta10', '2007-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS904958001220', 'Robert Guzman', 1, '+86 28-1386-1297', 0, '716221040271702305', 'Room 20, CR Building, No.203, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1988-03-31', 0, 0, 'robert10', '2008-06-18', 'guzman8', '2000-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS149445769072', '吴睿', 0, '+86 769-3992-8241', 0, '569396875695247380', 'Room 15, CR Building, 267 Dongtai 5th St, Dongguan, China', '1995-01-03', 0, 0, 'ruiwu', '2019-12-16', 'wu1014', '2006-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS065475146912', '和田一輝', 0, '+1 213-077-0832', 0, '985545851400204765', '329 Sky Way Suite 21, Los Angeles, CA 90043, United States', '1996-09-23', 0, 0, 'ikkiwad', '2016-07-06', 'waikki416', '2016-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS145265263631', '蔡嘉伦', 0, '+1 718-557-5813', 3, '796618148525474764', '935 Flatbush Ave Apartment 10, Brooklyn, NY 11225, United States', '1985-05-05', 0, 0, 'jialunca', '2017-11-17', 'jcai', '2002-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS151201390819', '武田大輔', 1, '+86 157-8451-1443', 0, '609958752560681427', 'Room 37, CR Building, 820 Jiangnan West Road, Haizhu District, Guangzhou, China', '1990-05-04', 0, 0, 'takedadaisuke7', '2013-09-06', 'daisuketakeda6', '2006-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS548337695243', '伍嘉欣', 1, '+44 (116) 847 9960', 3, '076034390893506926', 'No.18 Main building, 917 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-01-28', 0, 0, 'ngky93', '2018-03-02', 'ng1990', '2004-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS188028631405', '李詩君', 1, '+86 181-7827-0402', 2, '889406200985951653', '40F, 773 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1994-01-27', 0, 0, 'szekwanle7', '2016-06-03', 'leeszekwan', '2016-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS780079977869', 'George Black', 0, '+86 190-6663-5955', 1, '315963247256666600', '中国上海市浦东新区橄榄路770号3室', '1994-11-25', 0, 0, 'blgeor4', '2011-08-21', 'bgeo', '2002-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS249178336555', 'Glenn Gutierrez', 0, '+44 (20) 7334 7056', 3, '201432292950182721', 'Flat 21, 983 Maddox Street, London, W1S 1PU, United Kingdom', '1991-11-23', 0, 0, 'glennguti5', '2018-06-04', 'gutierrezg', '2014-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS984301413053', '孔岚', 0, '+86 135-3906-8338', 3, '755289957763491400', 'Room 17, 351 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1996-03-01', 0, 0, 'kongla', '2006-07-11', 'lako', '2004-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS253526447566', '胡慧琳', 1, '+81 90-3173-8743', 2, '005271593981738546', '日本おおさかし平野区加美東四丁目9番18号36階', '1986-08-16', 0, 0, 'wailamwu', '2015-01-18', 'wailamwu2', '2021-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS686538204894', '佐々木蓮', 0, '+44 (121) 474 6380', 3, '727930271246455686', 'No.43 Main building, 865 New Street, Birmingham, B2 4DB, United Kingdom', '1992-01-02', 0, 0, 'sasakire', '2014-07-04', 'rs2', '2018-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS698049644598', '龚子异', 0, '+44 7054 993293', 2, '226193606700182499', 'Block 9, 126 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1992-12-27', 0, 0, 'gongzi', '2011-01-30', 'gongziyi', '2018-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS158928291618', 'David Fernandez', 1, '+44 (20) 6046 5173', 2, '322412138419382505', 'Unit 40, Oxford Eco Centre, 576 Maddox Street, London, W1S 1PU, United Kingdom', '1987-04-05', 0, 0, 'fdavid', '2006-11-03', 'fernandez3', '2010-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS194462592378', '田慧敏', 0, '+81 52-567-2426', 3, '965802749079268973', '日本なごやし守山区瀬古東二丁目171番17号22階', '1993-04-25', 0, 0, 'tin1', '2021-04-15', 'wmtin3', '2005-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS134188340478', 'Lisa Gordon', 1, '+1 838-745-8154', 1, '007781434191975368', '834 State Street 3rd Floor, Albany, NY 12203, United States', '1991-04-07', 0, 0, 'lisa97', '2014-10-30', 'lgordon', '2007-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS628645031352', 'Richard Guzman', 0, '+81 80-8975-0595', 1, '197664740082178209', 'Rm. 49, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1993-12-19', 0, 0, 'richard9', '2019-02-06', 'ricguzma', '2007-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS980306268047', 'Shirley Gardner', 1, '+86 193-7997-9955', 2, '200829121229312311', '50F, 418 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1994-04-23', 0, 0, 'gardnershirley48', '2009-12-31', 'shgardner02', '2006-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS370000671214', '曾家玲', 1, '+81 11-634-6819', 3, '028325739768782401', '日本札幌清田区真栄四条五丁目19番11号25階', '1995-06-17', 0, 0, 'tkl', '2008-05-17', 'tska', '2020-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS196698068059', '谭晓明', 0, '+86 197-5924-7704', 2, '119841839772039959', 'No.14 building, 578 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1994-03-28', 0, 0, 'tanxiaoming', '2021-10-12', 'xiaomtan824', '2012-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS365280718601', '木村美羽', 1, '+86 20-9358-9649', 1, '575821613595854972', '中国广州市天河区天河路11号47栋', '1989-01-10', 0, 0, 'kimurmiu415', '2004-09-26', 'kimura1957', '2002-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS941707633481', '郭詩涵', 1, '+81 80-5890-3956', 1, '335205950269846403', '日本ならし大和郡山市本庄町一丁目1番10号6階', '1993-05-20', 0, 0, 'guoshi', '2005-03-11', 'guoshihan', '2003-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS258774605932', '田村湊', 1, '+1 212-571-6331', 1, '643681494532941172', '959 Bank Street 3rd Floor, New York, NY 10014, United States', '1989-04-09', 0, 0, 'tamuram', '2020-01-22', 'tamura53', '2017-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS506691962576', '姜國榮', 1, '+86 755-801-0421', 3, '932400623770489567', '中国深圳龙岗区学园一巷682号华润大厦8室', '1992-01-31', 0, 0, 'kwokwing80', '2009-05-31', 'kwokwing3', '2008-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS788867543125', '戴杰宏', 0, '+44 5556 922115', 2, '185117978485361694', 'Unit 10, Oxford Eco Centre, 407 Sackville St, Manchester, M1 3BB, United Kingdom', '1986-07-22', 0, 0, 'jiehongd', '2006-04-15', 'jiehong62', '2009-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS145920646980', '島田蒼士', 1, '+1 838-915-7863', 4, '442791221570226084', '190 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1985-03-03', 0, 0, 'aoshishimada1203', '2020-05-22', 'shimadaaoshi224', '2020-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS245235839208', '馮詩君', 0, '+1 838-220-8927', 3, '775833948076112989', '907 Lark Street Suite 19, Albany, NY 12210, United States', '1992-11-07', 0, 0, 'fung224', '2020-12-28', 'skfung', '2018-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS952020191337', '秦震南', 1, '+86 755-079-4217', 2, '082735871698677126', 'No.14 building, 431 Jingtian East 1st St, Futian District, Shenzhen, China', '1994-01-15', 0, 0, 'zhqin', '2011-10-10', 'qinzhe', '2019-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS580375701553', '葉國賢', 0, '+44 (116) 055 7907', 3, '613329838181115512', 'Unit 14, Oxford Eco Centre, 827 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1996-08-10', 0, 0, 'yip1988', '2011-08-26', 'kwokyinyip', '2000-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS414457249135', 'Raymond Fisher', 0, '+86 769-450-9146', 1, '885609989251252425', 'No.10 building, 455 Kengmei 15th Alley, Dongguan, China', '1998-04-08', 0, 0, 'fraym', '2012-10-27', 'fraymond', '2017-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS064175353077', 'Russell Holmes', 1, '+44 (151) 127 3681', 3, '712531187371976177', 'No.28 Main building, 641 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1989-08-06', 0, 0, 'holmesrussell1957', '2013-06-05', 'russell730', '2003-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS195505581345', '唐國明', 0, '+81 70-9618-4186', 2, '505882056544633292', '日本東京千代田区丸の内一丁目6番19号49階', '1985-10-15', 0, 0, 'tongkm', '2009-03-06', 'kwokmington', '2015-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS657035767500', '呂詠詩', 1, '+81 90-0296-9180', 2, '144741854913909380', 'Rm. 43, 12 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1989-05-24', 0, 0, 'wslu8', '2003-04-28', 'wingszelui1942', '2011-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS777435415281', '罗杰宏', 0, '+86 760-4975-1310', 3, '706085729709908560', '中国中山京华商圈华夏街765号华润大厦1室', '1990-07-04', 0, 0, 'jiehongluo829', '2010-11-14', 'jiehluo', '2004-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS776117587212', '酒井花', 1, '+81 90-3501-3570', 2, '019641960510039217', '11F, 2-5-13 Chitose, Atsuta Ward, Nagoya, Japan', '1995-02-04', 0, 0, 'sakh2', '2003-06-03', 'hana910', '2003-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS245515539169', 'Sharon Daniels', 1, '+81 52-154-9572', 4, '298837902507483461', '34F, 3 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1991-04-06', 0, 0, 'danielssh', '2006-01-21', 'dansh', '2018-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS728166065260', 'Francis Kelly', 0, '+44 5384 067446', 1, '617007569647492627', 'Unit 47, Oxford Eco Centre, 326 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1992-09-01', 0, 0, 'fk1', '2001-02-09', 'frkelly', '2007-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS369920241243', 'Todd Rice', 0, '+81 3-6389-5024', 1, '970107093569158477', '日本東京港区東新橋一丁目5番4号7階', '1998-05-09', 0, 0, 'toddrice', '2003-04-15', 'rice8', '2007-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS361930009055', '鄧詩君', 1, '+86 170-5971-1880', 4, '795935960617127666', 'No.3 building, 900 Kengmei 15th Alley, Dongguan, China', '1994-10-30', 0, 0, 'szekwantang', '2005-01-21', 'tanszekwan', '2008-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS726852050296', '顾震南', 0, '+81 70-5460-9007', 2, '669356195335296639', '日本おおさかし東住吉区東田辺三丁目27番5号28号室', '1987-10-14', 0, 0, 'zhennangu', '2020-08-23', 'guzhennan4', '2000-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS272305253740', '丁詩涵', 0, '+44 5631 466874', 4, '127155042429700836', 'Unit 31, Oxford Eco Centre, 586 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1987-12-18', 0, 0, 'dings', '2010-04-26', 'shiding', '2008-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS353411068467', '餘家玲', 0, '+81 90-4550-5539', 3, '395954070807475404', '日本札幌白石区菊水三条五丁目4番18号37階', '1987-07-18', 0, 0, 'yuekl', '2008-02-20', 'yuekl', '2013-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS347602382653', '吕云熙', 0, '+81 80-4493-4663', 3, '316824890310202539', 'Rm. 16, 5-2-1 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-06-04', 0, 0, 'ylu', '2003-11-29', 'ylu', '2010-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS754524244253', '松田架純', 0, '+1 212-163-1634', 2, '921134476934298054', '759 Wooster Street Apartment 21, New York, NY 10012, United States', '1987-10-08', 0, 0, 'kasummatsuda', '2018-10-20', 'kasumats904', '2011-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS075134916552', '柴田美月', 0, '+86 193-1785-4822', 2, '445937118633236536', '中国中山天河区大信商圈大信南路397号2号楼', '1998-05-12', 0, 0, 'shmitsu1971', '2007-06-11', 'mitsus127', '2012-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS646930856718', '渡辺大和', 1, '+81 90-8898-1020', 1, '406162054716823033', '45-kai, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1988-04-28', 0, 0, 'satoyam', '2015-10-01', 'sato9', '2011-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS233971127222', '翁力申', 0, '+44 5537 858394', 1, '707289871752003302', 'Block 30, 31 Hanover St, Liverpool, L1 4AF, United Kingdom', '1997-09-20', 0, 0, 'liksunyung1965', '2010-06-16', 'lsy1101', '2001-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS330366043366', '葉國賢', 0, '+81 90-7554-7293', 0, '776184735123796430', 'Rm. 11, 3-9-2 Gakuenminami, Nara, Japan', '1988-01-30', 0, 0, 'ykwokyin', '2015-10-24', 'kwokyiny', '2002-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS218012921543', '金詩涵', 0, '+81 90-8776-4478', 2, '495961744267163969', '日本おおさかし西成区出城一丁目1番6号12号室', '1994-06-27', 0, 0, 'shihanji', '2014-12-20', 'shihanjin', '2014-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS581951085155', 'Eleanor Ross', 0, '+86 164-1274-8897', 1, '903642177313691596', 'No.42 building, 65 Binchuan Rd, Minhang District, Shanghai, China', '1990-05-30', 0, 0, 'roselea', '2007-04-19', 'elross', '2021-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS032413710502', 'Anthony Ramirez', 0, '+81 80-2392-3514', 1, '168641729201108391', 'Rm. 33, 5-2-13 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-03-11', 0, 0, 'ramia', '2004-07-22', 'ramireza429', '2017-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS046266250967', 'Marilyn Miller', 1, '+1 718-076-0774', 2, '598950109361754110', '887 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1998-11-14', 0, 0, 'marilmiller927', '2015-06-02', 'millermarilyn5', '2002-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS149950308538', 'Wayne Miller', 0, '+81 11-496-1333', 3, '078458415403671510', '41-kai, 5-19-14 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1990-10-30', 0, 0, 'miller620', '2017-06-23', 'waynem2', '2017-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS666380838632', '千葉凛', 0, '+86 20-3374-1532', 3, '849471378684005523', '20F, 559 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1988-12-18', 0, 0, 'chibrin416', '2009-10-14', 'chiba1995', '2016-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS359204090094', '钱嘉伦', 0, '+1 838-154-0457', 3, '405464124450297593', '662 Lark Street Apt 45, Albany, NY 12210, United States', '1996-01-31', 0, 0, 'jiqi', '2001-04-13', 'qijialu', '2019-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS127756565868', '斉藤明菜', 0, '+81 52-664-4067', 4, '183359833052790447', '日本なごやし守山区瀬古東二丁目171番18号10階', '1997-10-15', 0, 0, 'akinasai', '2014-07-30', 'akinasai825', '2000-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS920787476648', '吴子异', 0, '+44 7936 207484', 2, '041942055229711866', 'Block 5, 489 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1997-09-25', 0, 0, 'wuzi', '2019-10-31', 'wu1112', '2004-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS906716098704', 'Christopher James', 0, '+81 66-857-1027', 1, '164118476101006726', '21-kai, 3-27-8 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1992-03-10', 0, 0, 'jameschristopher77', '2011-08-15', 'christopherjam', '2017-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS165379924964', 'Jose Simpson', 0, '+81 74-532-4561', 3, '891777869544256748', 'Rm. 14, 4 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-04-26', 0, 0, 'simpsjo', '2020-04-25', 'josesimpson', '2003-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS248574225521', '陈璐', 1, '+86 20-2210-9225', 4, '333802020499838496', 'Room 31, CR Building, 323 Xiaoping E Rd, Baiyun , Guangzhou, China', '1988-06-10', 0, 0, 'lu78', '2011-11-02', 'luch', '2004-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS462207601584', '文榮發', 0, '+81 80-1704-0318', 2, '383341444961397248', '日本札幌白石区菊水三条五丁目4番9号37号室', '1985-10-27', 0, 0, 'wingfm', '2001-11-21', 'manwingfat', '2013-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS744160116462', '盧力申', 1, '+81 3-0732-3918', 4, '392232824396990967', '45-kai, 2-3-18 Yoyogi, Shibuya-ku, Tokyo, Japan', '1998-05-05', 0, 0, 'lo4', '2016-03-01', 'liksun88', '2003-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS605701260641', '陶晓明', 1, '+81 11-458-7178', 2, '123264776899444568', '19-kai, 5-4-13 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1996-05-18', 0, 0, 'xt913', '2020-03-15', 'xitao', '2018-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS980477867212', '熊睿', 1, '+81 11-909-0937', 4, '372514476082167353', '44F, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1992-06-07', 0, 0, 'xiongru', '2013-01-22', 'rux', '2013-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS765921285769', '陆致远', 1, '+44 (1223) 11 3305', 3, '701751118310237966', 'Block 15, 93 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1996-01-27', 0, 0, 'luzhiyu', '2020-05-16', 'zhiyuan222', '2000-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS682592386396', '山本海斗', 0, '+1 614-345-3214', 3, '908887223276195792', '828 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1990-01-24', 0, 0, 'kaito515', '2019-07-24', 'yamamoto225', '2019-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS846138092627', '曹嘉伦', 0, '+81 70-8298-4439', 2, '421887283732908053', '50-kai, 3-27-17 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1997-08-02', 0, 0, 'caojialun', '2013-06-21', 'cao3', '2007-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS717634298694', '加藤愛梨', 0, '+1 718-335-6165', 0, '998064396213008672', '273 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1989-01-11', 0, 0, 'airikato1', '2012-06-09', 'airikato414', '2009-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS533254308373', '向致远', 1, '+86 10-517-0657', 2, '787828374224658758', '中国北京市海淀区清河中街68号769号18号楼', '1991-03-14', 0, 0, 'zhiyuanxiang', '2014-02-05', 'zhiyuan5', '2002-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS066254671384', 'Rose Crawford', 1, '+1 212-154-0667', 1, '018675383740141292', '591 Wooster Street Suite 27, New York, NY 10012, United States', '1997-09-22', 0, 0, 'craros1206', '2005-05-28', 'crose', '2007-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS618046534038', '许睿', 0, '+86 142-6164-8278', 2, '071861098707805057', '中国上海市浦东新区橄榄路536号29楼', '1991-05-14', 0, 0, 'ruixu', '2016-03-12', 'rx412', '2005-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS878153642044', '谷志明', 0, '+86 28-0967-4031', 3, '870894648430127974', 'No.5 building, 871 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1986-02-11', 0, 0, 'chiming721', '2001-06-16', 'cmk1972', '2001-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS187615823950', 'Scott West', 1, '+81 52-250-6319', 1, '195443762588686992', 'Rm. 38, 3-19-16 Shimizu, Kita Ward, Nagoya, Japan', '1990-08-17', 0, 0, 'scott7', '2011-11-09', 'scott53', '2012-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS550902883974', '元家輝', 0, '+1 212-768-9653', 0, '497572902573393987', '561 Fifth Avenue Suite 50, New York, NY 10017, United States', '1987-06-13', 0, 0, 'ykafai', '2022-01-16', 'yuen7', '2003-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS829919451707', '三浦架純', 1, '+44 (1865) 84 5347', 2, '905925827657178792', 'Unit 21, Oxford Eco Centre, 929 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1987-08-29', 0, 0, 'miurakasum57', '2016-04-26', 'kmiura', '2001-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS130344304266', '加藤蓮', 0, '+44 (1865) 79 0681', 0, '979698373319568182', 'No.25 Main building, 72 Park End St, Oxford, OX1 1JD, United Kingdom', '1998-08-11', 0, 0, 'karen1965', '2001-10-03', 'renkato13', '2000-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS858244720606', 'Pamela Soto', 0, '+81 11-799-9282', 3, '619126857527778922', '45F, 2-1-1 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1988-10-02', 0, 0, 'soto9', '2007-10-19', 'soto1969', '2021-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS530294611807', '汪子韬', 1, '+86 183-1322-8176', 2, '266842954840529245', 'No.4 building, 146 Ganlan Rd, Pudong, Shanghai, China', '1986-08-30', 0, 0, 'zitaowa', '2017-01-20', 'wanzitao', '2013-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS615473896766', 'Jack Patel', 1, '+44 (161) 122 5745', 1, '872701042975763244', 'Unit 12, Oxford Eco Centre, 26 Sackville St, Manchester, M1 3BB, United Kingdom', '1990-10-30', 0, 0, 'pja', '2018-08-24', 'jack118', '2012-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS295719503558', '林嘉欣', 0, '+81 11-434-0650', 1, '859949590040216728', '12F, 5-2-3 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1989-07-01', 0, 0, 'lky', '2019-08-05', 'karla807', '2010-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS379783849345', '戴岚', 0, '+1 614-183-2025', 0, '858410849946080963', '233 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1988-02-26', 0, 0, 'dai71', '2007-04-21', 'ladai', '2005-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS580705167913', '上田美緒', 0, '+44 5356 497756', 3, '051492333141733833', 'Block 35, 210 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1991-11-06', 0, 0, 'mio421', '2008-09-08', 'miueda7', '2019-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS983428903512', '甘世榮', 1, '+81 80-2178-5844', 1, '768917379535501929', '日本東京港区東新橋一丁目5番1号36号室', '1985-11-05', 0, 0, 'kam9', '2020-09-13', 'swkam', '2010-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS281274414067', '石云熙', 1, '+86 21-075-3690', 1, '863956010709409689', '中国上海市黄浦区淮海中路807号华润大厦4室', '1997-06-04', 0, 0, 'yunshi9', '2014-05-02', 'yunxishi5', '2014-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS974062967141', '翁小慧', 0, '+1 330-021-6450', 0, '080476946217095228', '238 West Market Street Apt 46, Akron, OH 44333, United States', '1991-12-01', 0, 0, 'ysw605', '2012-11-06', 'yungsw701', '2016-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS409008556841', '汤宇宁', 1, '+81 90-9182-2129', 1, '463106092349374377', 'Rm. 3, 13-3-19 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1990-12-04', 0, 0, 'tang116', '2007-06-01', 'yuningtang', '2010-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS653587987217', '高震南', 0, '+1 614-471-7259', 2, '255234667712676664', '916 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1993-07-13', 0, 0, 'gazhennan1102', '2000-11-30', 'zhennangao', '2002-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS679196064489', '葉家玲', 1, '+86 145-5630-7618', 1, '130206679776108611', '1F, 626 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1990-01-31', 0, 0, 'klyip', '2007-09-25', 'klyip', '2005-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS418144325734', 'Diana Taylor', 0, '+1 838-007-2270', 0, '463751870550641994', '439 Broadway 3rd Floor, Albany, NY 12207, United States', '1996-10-10', 0, 0, 'tdiana', '2010-10-10', 'taydiana', '2009-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS350033179344', '葉詠詩', 0, '+1 330-642-2302', 3, '891160317329819653', '549 Riverview Road Suite 3, Akron, OH 44313, United States', '1986-01-15', 0, 0, 'wingsze10', '2011-06-03', 'wingszeyip10', '2018-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS394367345905', '桜井瑛太', 0, '+81 11-448-8798', 3, '271121714562324553', '日本札幌中央区宮の森四条六丁目1番16号31階', '1985-12-01', 0, 0, 'eitasaku', '2018-02-04', 'eitasak9', '2012-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS141227367523', '孫志遠', 1, '+81 11-803-8392', 3, '576106241090159091', '9-kai, 13-3-9 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1997-06-12', 0, 0, 'cyhsuan', '2010-08-17', 'cyhsuan', '2005-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS827496397809', '池田桜', 1, '+86 148-5449-7203', 2, '128832999054657815', '中国广州市天河区天河路226号9楼', '1989-05-25', 0, 0, 'isakura', '2006-12-26', 'ikedasak', '2006-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS755541775893', '林詩涵', 0, '+86 20-3026-1299', 1, '960916967099692362', '中国广州市越秀区中山二路343号24栋', '1994-10-12', 0, 0, 'lin10', '2001-11-05', 'lin724', '2008-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS248848323994', '蔡裕玲', 1, '+86 10-2575-6919', 4, '258706376913853894', 'Room 39, CR Building, 575 68 Qinghe Middle St, Haidian District, Beijing, China', '1992-10-02', 0, 0, 'yuling1995', '2010-01-18', 'choiyl', '2020-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS938513713180', '甘秀文', 0, '+86 28-7133-8974', 4, '713375395363561923', 'Room 9, CR Building, 59 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1991-04-26', 0, 0, 'kamsm1026', '2003-09-04', 'saumkam', '2008-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS643313593305', '夏杰宏', 0, '+44 (116) 803 5043', 3, '918411703388351205', 'Flat 5, 867 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1988-05-23', 0, 0, 'jiehoxia', '2014-06-29', 'jiehong10', '2016-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS147822857677', 'Brenda Romero', 1, '+44 (151) 244 4400', 3, '526033521599470195', 'Block 28, 101 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1986-01-10', 0, 0, 'romeb', '2017-03-09', 'brenda212', '2014-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS460340803060', '原田詩乃', 0, '+86 20-3710-6697', 3, '873920805068546628', '中国广州市海珠区江南西路720号47楼', '1994-12-14', 0, 0, 'harshino4', '2018-09-21', 'harada912', '2014-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS015524365898', '橋本美咲', 1, '+81 80-4873-7286', 1, '028081846852639405', '日本ならし学園南三丁目9番19号31階', '1986-10-11', 0, 0, 'hashimotomis', '2007-05-11', 'hashimotomisaki', '2015-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS241413719284', '内田百花', 0, '+1 312-162-2160', 4, '090329685871398652', '15 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1994-04-29', 0, 0, 'uchida2', '2006-04-27', 'muchida', '2004-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS066150869503', '唐玲玲', 0, '+1 718-505-2778', 3, '573180463997171964', '772 Bergen St Suite 46, Brooklyn, NY 11217, United States', '1995-04-08', 0, 0, 'tong1997', '2006-03-20', 'llt917', '2014-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS573786998399', '汪嘉伦', 0, '+44 5159 880116', 3, '511579745308993814', 'Block 30, 50 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1993-02-12', 0, 0, 'wanjialun', '2013-03-31', 'wang2', '2007-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS401099715387', 'Larry Meyer', 1, '+81 90-9997-7703', 2, '946308942687289020', '日本札幌中央区宮の森四条六丁目1番1号19階', '1985-05-24', 0, 0, 'meyerl', '2009-12-19', 'meyerlar8', '2015-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS893025937658', 'Rodney Flores', 0, '+86 769-742-2895', 2, '558226542644202310', 'No.31 building, 32 Kengmei 15th Alley, Dongguan, China', '1993-03-08', 0, 0, 'flores619', '2004-02-01', 'frodney', '2013-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS202904465357', '佐野光莉', 0, '+86 177-5623-8676', 3, '064888850755726076', '中国深圳福田区深南大道822号18室', '1994-08-05', 0, 0, 'hsano65', '2009-01-03', 'sah', '2018-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS814953512636', '千葉翼', 1, '+81 80-9929-5935', 3, '571517125482796976', '日本札幌豊平区豊平三条十三丁目3番13号45階', '1985-12-18', 0, 0, 'chibat67', '2015-01-19', 'chiba76', '2016-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS717439465631', '董秀英', 1, '+1 312-672-6176', 3, '224288814700961920', '247 North Michigan Ave Apartment 13, Chicago, IL 60611, United States', '1992-05-13', 0, 0, 'xiuyingdong414', '2004-07-26', 'xiud', '2011-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS306626737471', '區國權', 1, '+81 66-340-8806', 1, '292322390815973424', 'Rm. 17, 1-7-7 Omido, Higashiosaka, Osaka, Japan', '1995-08-29', 0, 0, 'aukwokkuen', '2005-02-24', 'au708', '2019-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS449724542829', '小山樹', 1, '+81 80-4962-5244', 0, '972949295887668344', '日本なごやし瑞穂区河岸町四丁目20番14号24階', '1992-03-11', 0, 0, 'itskoyama2', '2009-07-12', 'itsukik71', '2020-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS608314482491', '甘潤發', 0, '+86 151-6017-4072', 2, '205339820731026401', 'No.5 building, 157 Huanqu South Street 2nd Alley, Dongguan, China', '1993-06-27', 0, 0, 'yunfatka623', '2016-01-19', 'yunfatkam08', '2014-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS378750756323', '任杰宏', 1, '+81 90-9588-3668', 1, '307521292730181979', '日本札幌中央区宮の森四条六丁目1番9号5号室', '1985-10-07', 0, 0, 'jiehongren', '2017-04-26', 'rji', '2015-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS200257310298', '原田美咲', 0, '+86 185-4455-7337', 3, '684582980914994949', 'Room 30, 690 Shennan Ave, Futian District, Shenzhen, China', '1998-08-15', 0, 0, 'harmisa3', '2005-10-10', 'mharada00', '2009-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS313114822592', '官俊宇', 1, '+86 197-7384-3038', 1, '450385005362117075', '中国北京市東城区東直門內大街697号华润大厦34室', '1993-07-18', 0, 0, 'koon1025', '2001-09-16', 'koonchunyu7', '2015-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS210818118075', '鈴木葵', 0, '+86 166-5478-5658', 3, '819949258358166475', '中国东莞环区南街二巷891号33室', '1992-02-18', 0, 0, 'saoi1', '2013-05-02', 'aosuzuki', '2005-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS690698597396', 'Ann Silva', 1, '+81 66-005-6718', 0, '972663651986589744', 'Rm. 15, 1-1-10 Deshiro, Nishinari Ward, Osaka, Japan', '1996-07-26', 0, 0, 'asilva', '2001-02-28', 'ann1213', '2015-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS269117420679', '高木蒼士', 0, '+86 178-8140-4908', 2, '332685761399796094', '中国上海市闵行区宾川路359号25栋', '1995-05-12', 0, 0, 'aoshita', '2006-06-04', 'takagiaos', '2000-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS308397455794', '千葉美月', 1, '+81 80-6663-7766', 2, '689045397502175582', 'Rm. 18, 2-1-20 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1996-08-02', 0, 0, 'chibmitsu4', '2011-12-24', 'mitsukichiba', '2018-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS958232445650', '小川七海', 0, '+1 312-471-0280', 1, '714516370323925872', '971 Pedway Apt 39, Chicago, IL 60601, United States', '1997-07-08', 0, 0, 'ogawa1', '2013-09-25', 'nanami9', '2014-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS605646146933', '原田美月', 0, '+44 (20) 0179 7510', 1, '467888099751841111', 'Block 18, 918 Hanover Street, London, W1S 1YD, United Kingdom', '1992-02-27', 0, 0, 'haradamitsuki425', '2004-08-28', 'mitsuki620', '2013-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS196107289740', 'Richard Wilson', 1, '+86 28-883-2524', 2, '171085450163928891', 'No.36 building, 402 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1994-04-18', 0, 0, 'richardwils', '2009-07-06', 'richard123', '2010-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS198437565443', 'Micheal Vargas', 0, '+81 3-5944-9138', 4, '987985318805564476', '27F, 1-6-6, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-03-03', 0, 0, 'vargas302', '2002-01-25', 'vmi', '2021-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS916319924507', '李秀英', 0, '+86 21-836-2502', 0, '407949894873122600', '中国上海市闵行区宾川路425号华润大厦26室', '1998-03-23', 0, 0, 'xiuyingli6', '2001-12-18', 'lixiuying', '2018-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS253642579950', 'Marjorie Robertson', 0, '+86 182-1925-9974', 2, '104358628363620390', 'No.22 building, 992 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1986-09-16', 0, 0, 'marrob', '2010-05-30', 'romarjorie', '2004-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS441104396003', '近藤涼太', 0, '+81 80-1912-2546', 2, '029034646079511896', '14-kai, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1993-03-28', 0, 0, 'ryotakond4', '2008-10-11', 'kondo327', '2018-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS820628110512', '田惠敏', 1, '+44 (151) 104 4385', 1, '294235527530068219', 'No.7 Main building, 942 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1993-01-18', 0, 0, 'tinwaiman78', '2012-11-21', 'waimantin4', '2009-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS229963095646', 'Sharon Porter', 1, '+81 11-039-9938', 2, '645821263080766453', 'Rm. 15, 5-19-13 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1988-11-02', 0, 0, 'sporter3', '2009-02-14', 'portes', '2016-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS803094498704', 'Dennis Burns', 0, '+86 135-3849-0562', 1, '466507897163531390', 'No.37 building, 748 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1998-12-04', 0, 0, 'dbu', '2001-09-06', 'burns1', '2003-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS609112362986', '岩崎和真', 1, '+44 (161) 477 4423', 1, '368401625427657710', 'Block 39, 942 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1995-04-13', 0, 0, 'iwasakik', '2014-09-26', 'iwasakikazuma', '2012-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS037629454947', '阿部桜', 0, '+81 3-0844-9539', 2, '532732891673576731', '1-kai, 2-3-6 Yoyogi, Shibuya-ku, Tokyo, Japan', '1994-12-27', 0, 0, 'abesakura302', '2000-09-26', 'sab604', '2004-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS674229344001', '平野悠人', 1, '+81 66-096-5731', 2, '435041193283321192', 'Rm. 33, 1-1-12 Deshiro, Nishinari Ward, Osaka, Japan', '1987-11-14', 0, 0, 'yutohirano1021', '2002-07-22', 'hiryu', '2014-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS504035609105', 'Lee Fernandez', 0, '+81 90-3306-7216', 3, '471614713562473175', 'Rm. 49, 1-6-13, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1989-02-11', 0, 0, 'fernale', '2015-09-25', 'lfer', '2013-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS942311938215', 'William Ford', 1, '+86 167-0466-8308', 1, '512016175754688607', 'No.9 building, 648 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1992-11-10', 0, 0, 'williford', '2020-09-15', 'william7', '2011-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS268247541193', '曹小慧', 0, '+86 20-939-6952', 3, '858969742227671115', 'Room 50, CR Building, 257 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-06-15', 0, 0, 'chosw', '2008-07-13', 'siuwacho8', '2007-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS165795409855', '唐天樂', 1, '+1 614-955-8973', 1, '963803269125620116', '673 East Cooke Road Suite 4, Columbus, GA 43214, United States', '1993-05-15', 0, 0, 'tinlok1105', '2006-03-04', 'ttl', '2020-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS053890074724', '麥明詩', 0, '+81 74-346-6590', 4, '586587395711685781', '41F, 3-9-2 Gakuenminami, Nara, Japan', '1989-08-14', 0, 0, 'msm', '2016-11-04', 'mms', '2015-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS932716526786', 'Anne Sanders', 1, '+86 187-8492-6272', 1, '032736982525630292', '中国广州市越秀区中山二路192号华润大厦2室', '1991-07-13', 0, 0, 'ansanders', '2015-04-29', 'annsand', '2005-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS985347700265', 'Christine Soto', 1, '+81 11-846-6611', 1, '661724522721217214', 'Rm. 34, 5-4-15 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1998-04-25', 0, 0, 'chrissoto75', '2011-12-13', 'sotochr', '2020-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS316256888161', 'Bonnie Ferguson', 1, '+86 21-011-1681', 3, '771948870306318422', '25F, 488 Hongqiao Rd., Xu Hui District, Shanghai, China', '1992-12-14', 0, 0, 'bonnieferguson', '2004-11-18', 'bonnief', '2020-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS338762891792', '西村悠人', 0, '+44 (1865) 85 7087', 2, '105143262796478126', 'No.32 Main building, 638 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1995-08-03', 0, 0, 'yutonish', '2011-04-09', 'nishimura1120', '2020-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS045845158315', '萧子韬', 1, '+86 148-5432-0428', 2, '330035389088204710', 'Room 33, 472 Shennan Ave, Futian District, Shenzhen, China', '1995-05-21', 0, 0, 'xiaozit', '2018-06-18', 'xizi8', '2004-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS327409509846', '山口海斗', 0, '+1 213-645-9993', 3, '009490293014830803', '819 Sky Way Apt 45, Los Angeles, CA 90043, United States', '1992-02-29', 0, 0, 'yamaguchi2011', '2011-08-13', 'kaito95', '2014-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS151724736160', 'Roger Mills', 1, '+86 180-0840-2144', 0, '294609626145710893', 'Room 11, 539 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1987-04-29', 0, 0, 'millsr', '2005-01-29', 'rogermills', '2015-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS581497279680', '小林瑛太', 1, '+81 3-0305-7149', 1, '396612144563744344', '25F, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1993-05-21', 0, 0, 'kobayashie', '2007-01-09', 'kobayei', '2022-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS185299194363', 'Jeffery Gordon', 0, '+1 614-068-3727', 3, '034626999370249834', '606 East Alley Suite 27, Columbus, GA 43201, United States', '1998-11-05', 0, 0, 'gorjef', '2009-02-10', 'gordonjeffery2013', '2015-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS576739870123', '佐藤光莉', 1, '+1 838-498-1033', 4, '023370009480576001', '932 State Street 3rd Floor, Albany, NY 12203, United States', '1996-02-04', 0, 0, 'sato228', '2000-11-04', 'hsato', '2004-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS623018818137', '丁晓明', 1, '+44 5718 280651', 1, '400968518322853327', 'Flat 22, 921 Park End St, Oxford, OX1 1JD, United Kingdom', '1998-11-18', 0, 0, 'xiaoming5', '2018-05-27', 'xiaoming8', '2002-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS823055038606', 'Ethel Palmer', 0, '+86 168-6745-7980', 0, '361089965483050826', 'No.42 building, 472 Yueliu Rd, Fangshan District, Beijing, China', '1993-07-25', 0, 0, 'epalmer5', '2017-06-13', 'palmeethel4', '2008-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS940926880184', '佐々木美咲', 1, '+1 212-968-4574', 4, '370272273508790758', '929 Fifth Avenue Apartment 13, New York, NY 10017, United States', '1996-05-17', 0, 0, 'sasmisaki', '2009-09-23', 'sasakmis', '2006-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS315699846325', '上田葵', 0, '+86 130-3435-6649', 3, '212571442284222880', 'Room 44, CR Building, 202 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1996-04-11', 0, 0, 'aoi1967', '2005-05-06', 'ueda6', '2004-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS531296921150', '吉田紗良', 0, '+81 70-2712-5684', 0, '688319662476301283', '日本東京品川区東五反田五丁目2番2号11階', '1986-06-15', 0, 0, 'sarayos', '2003-09-03', 'sarayos', '2005-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS660876358688', '罗云熙', 1, '+81 3-5022-8230', 1, '063315338359439605', '44-kai, 1-5-11, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1995-03-29', 0, 0, 'ylu', '2013-03-15', 'luyunx1944', '2014-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS596020154877', '贾詩涵', 0, '+81 11-307-9690', 2, '874956625113939528', '日本札幌豊平区豊平三条十三丁目3番15号5号室', '1996-11-13', 0, 0, 'shihji', '2004-06-01', 'jshihan', '2008-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS489137891213', 'Paul Dixon', 0, '+44 5380 134838', 3, '792088965130784421', 'No.33 Main building, 422 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1990-06-04', 0, 0, 'dpaul', '2019-06-12', 'pd78', '2020-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS402220490915', '清水陸', 1, '+81 80-1717-0867', 1, '290210368341838148', '日本札幌厚別区上野幌一条二丁目1番17号6階', '1992-05-11', 0, 0, 'shiriku', '2012-02-21', 'shimizu1', '2014-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS386987509990', '岡本大和', 0, '+44 (116) 860 6345', 3, '254270098438226641', 'No.12 Main building, 68 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1988-01-27', 0, 0, 'yamato1959', '2021-06-14', 'yamato70', '2014-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS274269453770', '遠藤紗良', 0, '+44 7801 124306', 4, '845246306562944813', 'No.50 Main building, 645 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1985-01-06', 0, 0, 'endosara', '2006-12-07', 'endosara', '2013-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS322197315118', 'Eva Meyer', 1, '+1 838-059-4236', 3, '164553046171136426', '874 Central Avenue Apartment 46, Albany, NY 12206, United States', '1995-04-12', 0, 0, 'meyer43', '2013-09-17', 'mev', '2009-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS827824617506', 'Sherry Nelson', 1, '+86 10-866-2081', 2, '174296395578369081', '中国北京市朝阳区三里屯路857号48室', '1995-12-06', 0, 0, 'sherry72', '2004-07-24', 'nelson4', '2008-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS773196297255', '魏宇宁', 1, '+86 168-0997-3996', 4, '368748036930978264', '中国中山天河区大信商圈大信南路151号23号楼', '1990-05-14', 0, 0, 'yuning53', '2021-01-01', 'ywei', '2004-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS925184467301', '袁安琪', 1, '+1 718-931-7261', 3, '140175195291752892', '934 Nostrand Ave Suite 41, Brooklyn, NY 11216, United States', '1995-02-11', 0, 0, 'anqyuan1204', '2000-01-03', 'anqi65', '2016-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS570013937223', 'Amanda Patel', 0, '+86 158-7636-3114', 0, '667618412455133593', 'Room 36, 13 Middle Huaihai Road, Huangpu District, Shanghai, China', '1986-07-21', 0, 0, 'patel68', '2003-02-08', 'patelam', '2016-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS146932626523', '小山桜', 1, '+81 3-4388-6078', 1, '153188870902302261', '日本東京中央区銀座三丁目12番16号49号室', '1989-04-18', 0, 0, 'koyama84', '2004-06-20', 'sakko', '2002-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS465377445742', '何安琪', 0, '+44 (151) 312 1416', 2, '961796745901090677', 'No.28 Main building, 324 Redfern St, Liverpool, L20 8JB, United Kingdom', '1986-10-11', 0, 0, 'hea', '2012-02-17', 'hean', '2012-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS858014264610', '杜小慧', 1, '+86 760-791-5772', 1, '173707779095914706', 'No.25 building, 200 Lefeng 6th Rd, Zhongshan, China', '1996-08-20', 0, 0, 'tosiuwai3', '2003-06-22', 'tosw', '2020-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS003209770999', '曹曉彤', 1, '+81 52-215-6044', 4, '856036319966748669', '21-kai, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-09-09', 0, 0, 'hiutungc6', '2002-10-12', 'hiutung1945', '2000-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS209047900812', '孔璐', 0, '+81 3-1094-9132', 3, '620535661577530712', '20F, 3-15-3 Ginza, Chuo-ku, Tokyo, Japan', '1999-01-30', 0, 0, 'kolu', '2012-06-26', 'kl3', '2001-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS970516308779', '溫國權', 1, '+86 145-3862-4310', 3, '824428397405927982', '中国北京市西城区复兴门内大街294号42室', '1991-12-07', 0, 0, 'wankk', '2014-02-23', 'kkwan', '2020-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS151745164057', '邱秀英', 0, '+81 70-7000-9922', 3, '839957855237297516', '22F, 5-2-3 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1999-02-13', 0, 0, 'xiuying7', '2011-11-23', 'xiuyingqiu', '2017-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS031621083766', 'Jeremy Myers', 0, '+81 90-9353-0400', 2, '676571163904957811', 'Rm. 39, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1989-08-18', 0, 0, 'myejeremy', '2005-02-19', 'myersjeremy68', '2005-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS752003910476', '葉仲賢', 1, '+81 11-518-4680', 1, '849454973554134130', 'Rm. 34, 2-1-13 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1991-03-24', 0, 0, 'ychungyin1956', '2008-11-03', 'chungyin64', '2021-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS259299832631', 'Benjamin Woods', 0, '+86 193-3097-7174', 1, '631768914527579642', 'No.19 building, 647 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1985-12-18', 0, 0, 'benjaminwoods', '2002-09-18', 'bewoo', '2008-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS445075951831', '唐云熙', 0, '+81 52-052-5290', 3, '237891616217364935', 'Rm. 48, 10 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-01-29', 0, 0, 'tangyunxi1130', '2019-09-20', 'tayunxi', '2019-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS001418683756', '山崎和真', 1, '+81 11-685-7187', 4, '973514767618864050', '日本札幌清田区真栄四条五丁目19番1号37号室', '1995-05-06', 0, 0, 'kazumayama', '2004-04-07', 'yamazakikazuma', '2010-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS005382259083', '松田葉月', 0, '+44 (1223) 65 3935', 2, '735255558331767810', 'No.9 Main building, 642 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1998-12-07', 0, 0, 'hazukimatsuda2005', '2019-03-14', 'matsudahazuki', '2001-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS852114401213', '關國榮', 0, '+81 90-2587-3147', 1, '026602948785077541', '日本札幌白石区菊水三条五丁目2番9号1号室', '1988-08-29', 0, 0, 'kwkw', '2017-03-16', 'kwkw', '2014-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS764036028493', '杜家文', 0, '+86 157-3208-1404', 2, '962896227662036718', 'No.7 building, No. 341, Shuangqing Rd, Chenghua District, Chengdu, China', '1998-07-14', 0, 0, 'kamant926', '2007-10-21', 'kamant', '2004-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS073738031741', '周朝偉', 1, '+86 10-040-2077', 4, '450631893860457172', '46F, 685 Sanlitun Road, Chaoyang District, Beijing, China', '1993-03-11', 0, 0, 'chowcw', '2016-07-27', 'chowcw', '2010-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS404707526271', '黎慧儀', 1, '+86 10-898-0040', 1, '682557089628057567', '中国北京市朝阳区三里屯路54号12栋', '1995-05-12', 0, 0, 'lwaiyee', '2017-12-13', 'lawaiyee', '2009-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS115479204360', 'Teresa Ward', 1, '+86 195-9970-5132', 1, '292564278681322431', 'No.24 building, 888 Kengmei 15th Alley, Dongguan, China', '1985-06-10', 0, 0, 'wardt9', '2019-10-27', 'wt51', '2021-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS325728765356', '宋子异', 0, '+86 180-3675-5049', 4, '771143740914276740', '中国北京市房山区岳琉路31号38室', '1997-10-16', 0, 0, 'ziyi8', '2021-06-02', 'ziysong207', '2021-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS667353719428', 'Michelle Lewis', 1, '+86 760-775-3658', 4, '691017684487535567', '中国中山紫马岭商圈中山五路173号17号楼', '1997-05-25', 0, 0, 'michellel620', '2009-09-11', 'lewism', '2014-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS021891794359', '李詩涵', 1, '+1 212-744-4895', 1, '277334138379808655', '535 Wooster Street Apt 9, New York, NY 10012, United States', '1988-03-09', 0, 0, 'lishiha5', '2008-07-21', 'shli', '2000-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS863527585568', '森蓮', 1, '+86 10-1212-5150', 0, '633166331221222389', 'No.34 building, 661 Yueliu Rd, Fangshan District, Beijing, China', '1991-10-08', 0, 0, 'remori105', '2002-01-14', 'mori03', '2018-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS728917940977', '阎岚', 1, '+81 11-316-9399', 0, '919952054115214365', 'Rm. 3, 5-4-11 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1992-09-20', 0, 0, 'yanlan', '2005-08-29', 'lanyan84', '2020-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS867247849022', '佐々木七海', 0, '+44 7779 488219', 0, '119715720862618473', 'Block 11, 952 Hanover Street, London, W1S 1YD, United Kingdom', '1993-01-29', 0, 0, 'nansasaki', '2000-02-12', 'sasakina1975', '2006-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS323627110174', '木下花', 1, '+86 755-0667-6108', 3, '034276669100686585', '中国深圳罗湖区田贝一路587号48栋', '1991-07-01', 0, 0, 'hk03', '2000-11-15', 'hanakin86', '2021-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS855332927226', '徐嘉欣', 1, '+1 212-464-4480', 1, '424755932403337924', '162 Wooster Street Apt 4, New York, NY 10012, United States', '1998-12-19', 0, 0, 'karyantsu', '2004-12-15', 'tsuikaryan', '2017-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS157700360023', '郝詩涵', 1, '+1 838-923-1563', 1, '688773607803478621', '314 Lark Street Suite 50, Albany, NY 12210, United States', '1990-08-12', 0, 0, 'shihanh', '2007-03-11', 'haoshihan', '2003-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS679259501010', 'Rita Mason', 0, '+86 191-7347-3091', 3, '636265154950997978', 'No.35 building, 462 Binchuan Rd, Minhang District, Shanghai, China', '1994-12-08', 0, 0, 'rima', '2010-10-20', 'masrita1987', '2005-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS429787640447', '王慧琳', 1, '+86 192-8982-9924', 3, '879024681038628670', 'No.28 building, 236 Shanhu Rd, Dongguan, China', '1986-09-03', 0, 0, 'wailamwon2020', '2002-06-20', 'wwailam', '2007-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS466631239939', '龚云熙', 1, '+86 755-839-7209', 3, '703213970001838101', 'Room 50, CR Building, 328 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1998-01-01', 0, 0, 'gyunxi', '2011-11-04', 'gonyunx', '2016-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS552942711127', '中川優奈', 1, '+81 70-2160-4221', 1, '626010019781783050', '10-kai, 18 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-09-18', 0, 0, 'yunakagawa1985', '2021-04-10', 'yna17', '2018-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS637163501459', 'Barry Henry', 1, '+81 80-6485-3860', 2, '001885003775495033', '1F, 5-19-19 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1992-09-04', 0, 0, 'barryh', '2005-10-28', 'henrybarry5', '2009-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS818636044777', '孟宇宁', 0, '+81 3-3173-4584', 2, '591171938689030689', '14-kai, 2-3-16 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-05-05', 0, 0, 'yuninmeng', '2010-03-07', 'yunimeng', '2012-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS912455368477', 'Theresa Hicks', 0, '+86 156-9814-9037', 1, '343885568804417997', 'No.15 building, 651 Ganlan Rd, Pudong, Shanghai, China', '1992-11-25', 0, 0, 'theresah3', '2016-03-25', 'therhicks409', '2004-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS508093278478', '黄岚', 1, '+1 212-302-5351', 2, '518032617642948257', '921 Canal Street Apartment 12, New York, NY 10013, United States', '1990-04-09', 0, 0, 'hualan', '2020-09-08', 'lahua', '2015-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS763833924169', '福田陸', 0, '+1 212-063-7734', 1, '409412893158806007', '344 Bank Street Apt 48, New York, NY 10014, United States', '1991-03-30', 0, 0, 'rikufuku', '2007-07-13', 'rikufukud1', '2008-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS555791773400', '太田百花', 0, '+44 7892 516820', 2, '010281718345969243', 'Unit 3, Oxford Eco Centre, 879 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1985-11-06', 0, 0, 'momokaota', '2008-08-05', 'otmo63', '2012-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS241491612568', '新井紗良', 0, '+81 70-4556-4819', 1, '341702255844690726', '日本おおさかし近江堂一丁目7番2号26階', '1993-05-07', 0, 0, 'arasar', '2012-11-30', 'saraarai2', '2007-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS103602405941', 'Jason Mason', 0, '+81 80-3843-8362', 2, '512015439045014306', '日本東京品川区東五反田五丁目2番13号4階', '1987-08-27', 0, 0, 'jasonmason', '2008-05-26', 'masonj', '2007-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS443859878537', '加藤大輔', 1, '+44 5456 481790', 2, '536369620721541436', 'No.12 Main building, 384 Park End St, Oxford, OX1 1JD, United Kingdom', '1996-03-21', 0, 0, 'daisukek2011', '2010-03-11', 'kato1206', '2021-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS744399874384', '文麗欣', 1, '+44 5798 924266', 4, '458576062789936162', 'Unit 14, Oxford Eco Centre, 563 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1994-12-31', 0, 0, 'laiyan2', '2019-09-28', 'laiyanma3', '2003-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS083300975446', '赵子韬', 1, '+81 70-3287-8116', 3, '473554084278570830', '日本おおさかし東住吉区東田辺三丁目27番9号12号室', '1997-08-06', 0, 0, 'zhaozitao', '2016-05-06', 'zhaozitao5', '2005-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS132974672191', 'Irene Ward', 0, '+1 212-316-3688', 3, '982760905964311249', '360 West Houston Street 3rd Floor, New York, NY 10014, United States', '1995-08-07', 0, 0, 'wardirene', '2015-08-14', 'irene6', '2013-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS867719084773', '戴子异', 0, '+86 197-0207-6401', 1, '598883292732802176', 'Room 36, CR Building, 792 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1992-11-18', 0, 0, 'ziyida5', '2002-09-14', 'daiziyi', '2013-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS885634088787', '雷志遠', 0, '+81 90-9116-1902', 3, '596576481242616298', '38-kai, 1-7-3 Saidaiji Akodacho, Nara, Japan', '1997-06-20', 0, 0, 'chiyuenlou', '2007-07-02', 'louichiyuen514', '2021-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS581067028597', '方詠詩', 1, '+1 614-702-9082', 4, '178220014375851903', '738 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1989-06-26', 0, 0, 'fws', '2013-09-10', 'fong4', '2000-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS301677310138', '姜朝偉', 0, '+1 212-840-2600', 2, '350296166959265758', '238 Canal Street Apartment 35, New York, NY 10013, United States', '1987-03-11', 0, 0, 'chancw', '2018-05-28', 'cwc', '2017-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS369951451855', '田慧嫻', 0, '+1 838-891-9234', 1, '954204184532326791', '337 Central Avenue Apt 40, Albany, NY 12206, United States', '1985-08-19', 0, 0, 'twaihan707', '2004-03-14', 'watin', '2011-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS013739886370', '葉麗欣', 0, '+1 614-809-2184', 2, '925267950375645571', '563 Diplomacy Drive Suite 48, Columbus, GA 43228, United States', '1994-12-15', 0, 0, 'yiplaiyan1017', '2002-03-09', 'laiyanyip', '2000-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS647126265025', 'Curtis Phillips', 0, '+86 186-8252-5547', 1, '755274000433860288', '5F, 514 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1995-05-31', 0, 0, 'curtisphillips', '2012-08-07', 'phillipscurtis4', '2010-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS450386106232', '元富城', 0, '+44 5235 476436', 1, '566384417096805887', 'No.21 Main building, 224 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1985-02-20', 0, 0, 'fsy', '2010-08-07', 'yuen76', '2015-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS531618293803', '傅頴璇', 1, '+1 213-139-5001', 3, '818643250242715103', '86 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1986-01-20', 0, 0, 'fuwingsuen1954', '2004-07-31', 'wifu1958', '2007-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS516226138310', '官惠妹', 1, '+86 192-6200-3165', 4, '389756149907481869', '中国北京市西城区复兴门内大街636号33室', '1989-05-08', 0, 0, 'kohuimei', '2007-09-26', 'hmk', '2012-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS459398891535', '彭明詩', 1, '+1 614-923-1637', 3, '146545660052081312', '835 East Cooke Road Apartment 4, Columbus, GA 43214, United States', '1985-04-20', 0, 0, 'pang8', '2003-11-08', 'msp4', '2001-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS190885217828', '罗璐', 0, '+44 7555 251579', 3, '371545507710985862', 'No.12 Main building, 435 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1995-02-08', 0, 0, 'luol', '2016-12-13', 'lul8', '2021-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS875542991032', 'Maria Ortiz', 0, '+1 838-687-6426', 4, '685196898310049496', '331 Central Avenue Suite 3, Albany, NY 12206, United States', '1995-03-03', 0, 0, 'ortmar43', '2017-10-17', 'mao', '2009-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS406715889056', 'Jennifer Rose', 0, '+86 199-6706-6402', 3, '576099984387949281', '中国成都市成华区玉双路6号682号22楼', '1990-06-07', 0, 0, 'jenniro80', '2002-12-14', 'jros', '2014-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS886732669601', 'Eugene Castillo', 1, '+86 20-681-7629', 2, '693277653759263766', '中国广州市越秀区中山二路549号44楼', '1994-08-31', 0, 0, 'caseugene', '2018-07-06', 'castillo509', '2013-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS655027319596', 'Gladys Wright', 1, '+44 (20) 8153 1024', 3, '587750136155604841', 'Flat 43, 551 Hanover Street, London, W1S 1YD, United Kingdom', '1986-05-14', 0, 0, 'gladys09', '2011-12-28', 'wrighgladys', '2010-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS698678895120', '酒井瑛太', 1, '+44 5020 999456', 4, '661126364997112043', 'Unit 24, Oxford Eco Centre, 96 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1988-11-11', 0, 0, 'sakai5', '2020-08-21', 'eita720', '2010-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS299773548261', 'Jacqueline Ruiz', 0, '+81 11-592-4786', 1, '831057607293682594', '19-kai, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1994-07-30', 0, 0, 'jr13', '2009-01-24', 'ruizjacqueline', '2004-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS796951221207', 'Henry Olson', 0, '+1 330-186-3042', 2, '354997415771318528', '336 Fern Street Apt 31, Akron, OH 44307, United States', '1989-01-23', 0, 0, 'holson', '2000-10-31', 'henry316', '2019-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS008714600387', '山本翼', 1, '+1 213-961-9795', 3, '000027559418660478', '110 S Broadway Suite 26, Los Angeles, CA 90015, United States', '1994-02-27', 0, 0, 'tsubyamam', '2019-03-09', 'yamamtsu10', '2009-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS205935027658', '野村百恵', 1, '+86 760-416-0724', 2, '192180403069460859', '中国中山京华商圈华夏街355号21楼', '1987-04-18', 0, 0, 'momonomura', '2013-06-09', 'nomuramom', '2016-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS006570876978', '森明菜', 0, '+44 (20) 0536 0007', 1, '278488015665446891', 'Flat 32, 497 Pollen Street, London, W1S 1NG, United Kingdom', '1991-12-29', 0, 0, 'moria', '2003-05-14', 'akinamori331', '2018-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS825365108906', '邹嘉伦', 0, '+44 7993 791830', 1, '943399267360447169', 'No.39 Main building, 900 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1996-05-15', 0, 0, 'zoujialun', '2021-03-31', 'jialun128', '2006-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS335427782343', '千葉翼', 1, '+81 90-6067-4642', 0, '168767014393291493', '40-kai, 2-1-20 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-11-11', 0, 0, 'tsubasach', '2020-03-26', 'chibatsuba830', '2014-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS589293419237', '曾宇宁', 1, '+86 760-5649-0079', 3, '449628860328631293', 'No.4 building, 318 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1996-12-24', 0, 0, 'yuningzeng', '2005-06-05', 'zengyun', '2000-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS273255726255', 'Jose Anderson', 1, '+86 175-9479-9768', 2, '465920066474039599', '中国深圳罗湖区清水河一路238号华润大厦41室', '1996-12-17', 0, 0, 'anjose', '2011-06-24', 'anderson901', '2002-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS301640158672', '魏晓明', 1, '+44 5970 254503', 0, '170237472891468559', 'No.19 Main building, 158 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-08-03', 0, 0, 'wex2', '2011-05-22', 'xiaoming42', '2000-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS424781841891', '田中美緒', 0, '+86 160-9126-9707', 4, '780553042984383599', '中国北京市延庆区028县道530号4楼', '1991-09-02', 0, 0, 'mt55', '2021-01-03', 'miot', '2010-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS095872197360', 'Francisco Stone', 1, '+81 70-5522-6696', 4, '511188519398853387', 'Rm. 15, 13-3-19 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-02-06', 0, 0, 'stone1978', '2002-09-16', 'stofr1', '2005-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS518815874008', '山下美咲', 1, '+86 179-4823-3407', 3, '238200721343760554', 'No.46 building, 415 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1993-11-30', 0, 0, 'misaki64', '2009-08-16', 'ymi', '2001-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS961112847079', '前田陸', 0, '+81 90-5290-6266', 2, '027959943405678318', '日本おおさかし近江堂一丁目7番6号45階', '1990-09-02', 0, 0, 'rikumaeda', '2010-09-03', 'rikumae4', '2007-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS820231656931', '溫梓晴', 0, '+1 213-639-2722', 4, '055035290364414869', '325 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1992-02-10', 0, 0, 'wantszching', '2012-03-14', 'wantszching', '2009-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS301308271142', '张致远', 1, '+81 3-7643-6861', 0, '797349656231705851', '日本東京渋谷区代々木二丁目3番6号50階', '1997-05-17', 0, 0, 'zhang4', '2011-12-07', 'zhiyuanzh91', '2006-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS322889255798', '區朝偉', 1, '+44 7100 638060', 0, '861098908912568576', 'No.49 Main building, 583 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1992-10-04', 0, 0, 'chiuwai6', '2007-09-27', 'achiuwai9', '2010-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS478827235502', 'Marjorie Aguilar', 0, '+81 52-634-5416', 1, '340878212451559571', '36F, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-12-02', 0, 0, 'aguilarmarjorie', '2011-11-08', 'amar', '2010-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS372584306623', '何國明', 0, '+86 28-702-0187', 3, '204920791863307404', '中国成都市成华区双庆路526号华润大厦13室', '1997-06-21', 0, 0, 'hkm7', '2006-12-25', 'ho41', '2009-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS053974998365', '郭嘉伦', 1, '+44 5218 450892', 1, '488226442478801074', 'Flat 49, 370 Regent Street, London, W1B 2LX, United Kingdom', '1997-09-29', 0, 0, 'guojial322', '2001-06-14', 'guojialun', '2000-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS276242708137', '野口絢斗', 1, '+81 90-7765-7530', 0, '171331027652071666', '11F, 3 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1993-04-18', 0, 0, 'nogayato', '2015-01-30', 'noguayato425', '2006-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS316706068742', 'Adam Woods', 1, '+81 52-927-5013', 0, '568104812447761998', '3-kai, 11 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1985-08-07', 0, 0, 'woodsadam4', '2005-12-25', 'adamw9', '2008-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS622440783672', '秦杰宏', 0, '+86 154-0256-3809', 4, '866279490539559516', '中国上海市闵行区宾川路518号19号楼', '1987-05-01', 0, 0, 'qin17', '2021-02-06', 'jiehong5', '2018-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS875297156399', '尹秀英', 1, '+81 80-8374-8210', 1, '296928050370181458', '27-kai, 3-9-5 Gakuenminami, Nara, Japan', '1992-07-31', 0, 0, 'yxiuying', '2015-03-10', 'yin2014', '2000-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS322992163884', 'Troy Hamilton', 0, '+81 3-2575-9858', 3, '445392282354393963', '35F, 5-2-13 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1987-03-09', 0, 0, 'troh901', '2006-01-17', 'troy4', '2017-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS026426537802', '周詩涵', 1, '+44 (121) 586 8679', 0, '755750063092925198', 'No.28 Main building, 567 New Street, Birmingham, B2 4DB, United Kingdom', '1995-08-12', 0, 0, 'shzhou4', '2008-08-21', 'zhou919', '2019-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS479172696683', '中野美緒', 1, '+44 (151) 021 7231', 0, '725241263027655833', 'Flat 39, 112 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1985-03-18', 0, 0, 'nm608', '2015-11-01', 'mionakan90', '2021-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS229854612284', '武田美羽', 1, '+81 70-5163-0493', 3, '513011978127972518', '7F, 3-15-11 Ginza, Chuo-ku, Tokyo, Japan', '1992-06-27', 0, 0, 'miutakeda', '2015-10-11', 'tmiu', '2007-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS316585562160', '许子韬', 0, '+86 28-279-6647', 2, '781681014706470815', '29F, 729 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1988-05-21', 0, 0, 'xuz905', '2008-12-17', 'xuzita', '2003-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS029034813860', '黎晓明', 0, '+1 312-946-1707', 2, '139704600346732881', '104 Pedway Apt 50, Chicago, IL 60601, United States', '1991-08-13', 0, 0, 'xiaomingli5', '2010-01-20', 'xili4', '2014-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS194991560518', '酒井湊', 0, '+86 760-3836-8714', 1, '705815535354540605', '中国中山乐丰六路203号47栋', '1991-09-14', 0, 0, 'sakaiminato', '2017-09-11', 'minatosakai15', '2006-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS912315068812', 'Herbert Powell', 1, '+1 838-547-7580', 3, '271433823989837527', '728 Broadway 3rd Floor, Albany, NY 12207, United States', '1987-12-08', 0, 0, 'herbertp6', '2007-04-25', 'powherbert', '2009-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS318012209096', 'Harry Wright', 1, '+86 148-8941-0740', 3, '980511932858251773', '中国北京市延庆区028县道776号20号楼', '1994-11-18', 0, 0, 'wrightharry', '2011-08-27', 'wright414', '2007-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS954856159650', 'Tammy Stewart', 0, '+81 11-629-6218', 1, '387897138611230387', 'Rm. 15, 6-1-3, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1997-09-18', 0, 0, 'tammystewa97', '2017-07-18', 'tammy53', '2016-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS023266031065', '溫祖兒', 1, '+44 (20) 6310 2099', 1, '983696495437428026', 'No.24 Main building, 909 Pollen Street, London, W1S 1NG, United Kingdom', '1997-03-30', 0, 0, 'choyee1969', '2007-11-11', 'wanchoyee17', '2002-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS503320874383', '曹國榮', 0, '+44 (1865) 69 3685', 2, '964437034801231912', 'Flat 2, 506 Park End St, Oxford, OX1 1JD, United Kingdom', '1992-11-10', 0, 0, 'kwcho', '2012-10-09', 'kwokwingcho', '2013-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS866292416037', 'Mike Medina', 1, '+44 (151) 033 4310', 1, '603127974787590081', 'Flat 27, 847 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1986-12-01', 0, 0, 'mikemedin', '2005-11-11', 'medinam', '2009-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS936702592079', '毛世榮', 0, '+86 755-8390-1071', 0, '733858710537794389', '中国深圳福田区景田东一街666号5室', '1987-11-13', 0, 0, 'swmo', '2009-09-20', 'swmo824', '2001-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS679785636071', 'Dennis Fernandez', 1, '+86 191-1107-2663', 1, '654256789939150757', '中国北京市房山区岳琉路70号39楼', '1998-02-24', 0, 0, 'dfernandez', '2021-04-20', 'dennisferna', '2007-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS484804423713', '清水美緒', 1, '+44 5628 766147', 1, '640769681899243604', 'No.50 Main building, 326 Sackville St, Manchester, M1 3BB, United Kingdom', '1986-08-15', 0, 0, 'mioshimi', '2012-09-28', 'smio', '2008-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS890960182140', '江頴璇', 1, '+81 74-347-1499', 1, '129081504781459381', '日本ならし西大寺赤田町一丁目7番8号20階', '1989-04-04', 0, 0, 'kong66', '2018-06-27', 'wingsuen5', '2018-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS045229733366', '原田蓮', 1, '+86 131-2839-6644', 2, '958311346516075612', 'Room 15, CR Building, 82 Lefeng 6th Rd, Zhongshan, China', '1994-03-13', 0, 0, 'ren64', '2000-09-27', 'haradren', '2002-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS717708380762', 'Billy Owens', 1, '+81 80-8215-2056', 4, '894841540238129933', '3F, 6-1-16, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1998-09-08', 0, 0, 'ob623', '2007-06-22', 'owens1112', '2008-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS056892189903', '鄺志明', 1, '+81 80-3983-6157', 3, '837581456239708795', '日本なごやし北区清水三丁目19番9号49階', '1992-11-13', 0, 0, 'chiming10', '2021-12-25', 'chimingkw', '2004-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS249223635097', '狄安娜', 0, '+44 (151) 380 6463', 4, '081301208004356556', 'No.5 Main building, 645 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1989-01-28', 0, 0, 'onnati', '2021-02-02', 'onti', '2018-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS368968455314', '郭子韬', 0, '+86 10-2348-1525', 0, '132434015004683983', '中国北京市東城区東直門內大街994号27栋', '1993-11-11', 0, 0, 'guozitao', '2001-02-13', 'guzitao8', '2010-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS009151839651', 'Leslie Dunn', 1, '+1 212-336-6260', 0, '179906754590049583', '67 Bank Street Apartment 5, New York, NY 10014, United States', '1993-06-11', 0, 0, 'dunnlesli', '2006-02-23', 'dunnles', '2013-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS102284928141', 'Willie Harrison', 0, '+44 (20) 9214 5498', 4, '007645422280306617', 'Block 3, 621 Hanover Street, London, W1S 1YD, United Kingdom', '1994-05-16', 0, 0, 'harrison2', '2010-05-30', 'willieharrison1130', '2015-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS287835741827', 'Francis Murphy', 0, '+1 330-852-8060', 1, '935520388115088710', '829 Collier Road Apt 29, Akron, OH 44320, United States', '1985-10-28', 0, 0, 'frm5', '2014-05-14', 'murpf1961', '2003-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS749689735396', '宣玲玲', 1, '+86 149-1310-1940', 1, '986061774709734259', '中国上海市浦东新区橄榄路67号华润大厦23室', '1990-04-09', 0, 0, 'hsualingling328', '2019-06-26', 'llhsuan', '2015-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS997238401859', '千葉悠人', 0, '+81 74-948-2764', 3, '592927871624295397', '日本ならし大和郡山市本庄町一丁目1番18号39階', '1994-04-01', 0, 0, 'chibayuto4', '2006-12-18', 'yuto17', '2005-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS857311667773', '张震南', 0, '+86 20-8777-4522', 3, '277045334326810043', 'Room 17, CR Building, 371 Xiaoping E Rd, Baiyun , Guangzhou, China', '1992-03-08', 0, 0, 'zhzhang', '2012-11-22', 'zhz', '2000-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS777907187415', 'Sheila Washington', 0, '+86 769-3707-1625', 1, '866446549517913153', '中国东莞环区南街二巷384号华润大厦8室', '1995-02-15', 0, 0, 'sheilawashi', '2017-05-07', 'washington6', '2002-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS888080121509', 'Victor Castillo', 0, '+86 10-3160-4271', 3, '347561317463950210', '43F, 642 68 Qinghe Middle St, Haidian District, Beijing, China', '1996-03-12', 0, 0, 'castillovictor6', '2020-07-11', 'casvictor4', '2004-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS375219401582', '楊國明', 0, '+86 168-7871-8942', 1, '119305208329624923', '32F, 862 Tianhe Road, Tianhe District, Guangzhou, China', '1992-10-01', 0, 0, 'yeunkm', '2012-02-12', 'kmyeung7', '2011-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS819706828232', '白安娜', 1, '+81 80-1075-6228', 2, '955276700623676081', '日本東京品川区東五反田五丁目2番18号50階', '1985-08-24', 0, 0, 'onna1018', '2011-04-20', 'pakon03', '2015-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS933151214796', '郭家明', 0, '+81 52-188-4339', 4, '362749848060269412', '36-kai, 2-5-17 Chitose, Atsuta Ward, Nagoya, Japan', '1986-11-18', 0, 0, 'kwokkm', '2002-10-13', 'kwok1966', '2019-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS262157900238', '任子韬', 0, '+81 3-4454-9343', 1, '842093321817676613', '日本東京中央区銀座三丁目12番10号14階', '1988-11-14', 0, 0, 'zitaoren', '2008-02-10', 'zren', '2010-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS042753879473', '姜惠妹', 0, '+1 838-009-0766', 2, '243271522090871654', '966 Lark Street 3rd Floor, Albany, NY 12210, United States', '1985-07-02', 0, 0, 'chahm5', '2009-08-02', 'chhm710', '2006-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS252711258895', 'Roy Ramirez', 0, '+1 838-240-2609', 4, '992218722762987661', '228 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1991-07-10', 0, 0, 'ramirez1987', '2017-01-30', 'ramirez9', '2014-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS812589317629', '郭小慧', 0, '+86 21-307-1594', 2, '606000857921806831', '中国上海市黄浦区淮海中路563号华润大厦27室', '1988-08-27', 0, 0, 'kwsi', '2003-09-05', 'swkw8', '2001-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS293629386853', '平野瑛太', 0, '+86 21-495-1965', 1, '368422933498330162', 'No.18 building, 134 Jianxiang Rd, Pudong, Shanghai, China', '1998-01-24', 0, 0, 'eh51', '2020-11-08', 'hirano70', '2003-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS690315534705', '成潤發', 0, '+86 755-204-6754', 4, '542188355737754808', '中国深圳罗湖区田贝一路433号20栋', '1991-02-17', 0, 0, 'yus6', '2000-01-07', 'yunfatsh7', '2019-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS641772576512', '大塚美羽', 1, '+86 760-394-5827', 2, '361390960616472581', '中国中山紫马岭商圈中山五路740号华润大厦43室', '1989-01-21', 0, 0, 'otsukam', '2015-12-31', 'otsuka522', '2000-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS460816902417', '野村陽菜', 1, '+81 70-0616-4246', 2, '574184821338391511', '35F, 3-19-6 Shimizu, Kita Ward, Nagoya, Japan', '1988-01-27', 0, 0, 'hn1967', '2013-10-05', 'nomuhina', '2003-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS616747167356', '向淑怡', 1, '+81 70-3678-7857', 3, '553456098435244269', '日本なごやし守山区瀬古東二丁目171番19号36階', '1985-04-26', 0, 0, 'heungsukyee', '2015-01-08', 'syheung2', '2020-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS140785577465', '薛家輝', 0, '+81 74-759-3081', 1, '514177032830634199', '40-kai, 6 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-03-26', 0, 0, 'kafaisit4', '2022-01-17', 'sikaf', '2018-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS924543984689', '藤田詩乃', 1, '+81 11-653-5953', 3, '179462821961085249', '16-kai, 5-2-6 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-12-24', 0, 0, 'shinofuji', '2010-01-08', 'sfu', '2000-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS518866465917', 'Vincent Moreno', 0, '+81 52-137-6129', 3, '309688695353895180', '日本なごやし瑞穂区河岸町四丁目20番13号43階', '1998-09-15', 0, 0, 'mvin730', '2014-09-02', 'vincemor', '2010-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS071036475313', 'Bobby Rice', 0, '+86 755-5788-0651', 0, '722502452862835806', '中国深圳罗湖区蔡屋围深南东路838号31楼', '1989-10-11', 0, 0, 'ricebobby', '2017-01-09', 'bobbyrice', '2002-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS347489681314', 'Sean Wood', 1, '+86 195-3167-0127', 3, '566630190233216207', '中国上海市浦东新区橄榄路92号华润大厦45室', '1996-06-02', 0, 0, 'wood40', '2006-07-14', 'wsean', '2000-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS620945002591', 'Nathan Alexander', 0, '+1 212-249-3869', 0, '765936135875392326', '201 Bank Street Apartment 6, New York, NY 10014, United States', '1997-07-22', 0, 0, 'alexander1968', '2018-04-01', 'alexander7', '2009-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS108876987475', '沈云熙', 0, '+81 74-897-4030', 0, '440431010429263666', '日本ならし西大寺赤田町一丁目7番20号39号室', '1998-12-01', 0, 0, 'yunxishen', '2005-10-10', 'sheny84', '2005-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS676733580164', '斉藤美羽', 1, '+1 718-456-7749', 3, '926824061654984502', '486 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1986-01-24', 0, 0, 'miu00', '2004-12-18', 'saitom1110', '2012-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS586449777652', '何富城', 1, '+44 (121) 925 1063', 2, '876547503325507678', 'Flat 48, 731 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1996-08-30', 0, 0, 'fushingho', '2010-02-13', 'fushingho525', '2018-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS129823502242', 'Michelle Young', 1, '+81 52-942-1367', 0, '373456791292753323', '38-kai, 9 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-12-16', 0, 0, 'youngmichelle', '2015-08-24', 'michelleyoun', '2012-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS090103649724', 'Anna Butler', 0, '+86 183-5574-0486', 1, '138129134144232049', '中国北京市东城区东单王府井东街225号46号楼', '1994-07-05', 0, 0, 'annabut', '2016-11-18', 'bua', '2001-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS819200762733', '邹秀英', 0, '+86 176-3010-7412', 2, '064716321796066351', 'No.20 building, No. 12, Shuangqing Rd, Chenghua District, Chengdu, China', '1997-07-16', 0, 0, 'zouxiuying4', '2009-12-02', 'zoxiuy1997', '2006-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS824215974149', 'Keith Webb', 0, '+44 5800 720458', 3, '548587075654173417', 'Block 8, 97 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1992-02-24', 0, 0, 'webb202', '2002-11-17', 'kweb', '2015-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS511737439330', '陶嘉伦', 1, '+1 718-011-5942', 3, '672620279451980265', '14 1st Ave Apt 21, Brooklyn, NY 11220, United States', '1985-02-05', 0, 0, 'tjial', '2012-04-04', 'taoj1031', '2016-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS743369526584', '馮仲賢', 0, '+81 3-4092-9115', 3, '594111302994815702', '日本東京港区東新橋一丁目5番2号33階', '1986-03-08', 0, 0, 'fungchungyin', '2002-10-09', 'cyf1110', '2003-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS664876942911', '武田葉月', 0, '+86 20-548-5350', 1, '683314566046242881', '中国广州市越秀区中山二路272号10室', '1991-02-19', 0, 0, 'hazutakeda', '2007-01-20', 'hazukitake', '2018-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS184740003091', '桜井優奈', 1, '+86 139-3981-2048', 1, '060026745192847079', '15F, No.707, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1996-05-08', 0, 0, 'yunasakurai1003', '2011-08-21', 'sakuraiyuna', '2005-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS562895290492', 'Bernard Freeman', 0, '+44 (116) 738 6860', 0, '613871879275790871', 'No.21 Main building, 233 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-10-07', 0, 0, 'bf1992', '2012-08-11', 'freemanbernard1104', '2016-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS448369964298', '橋本愛梨', 1, '+1 212-628-7078', 3, '771400959875252555', '958 Canal Street 3rd Floor, New York, NY 10013, United States', '1995-04-04', 0, 0, 'hashimoto1940', '2012-04-16', 'airh', '2005-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS776789657174', '新井紗良', 0, '+44 7122 669915', 3, '661613159802421802', 'Block 44, 950 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1990-06-10', 0, 0, 'sararai02', '2009-04-18', 'saraar', '2015-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS171273447557', '長谷川湊', 1, '+81 52-622-3992', 2, '649897571781648007', '42-kai, 12 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-09-09', 0, 0, 'mhasegawa8', '2004-07-30', 'haseminato', '2003-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS982274341600', '山田桜', 1, '+86 174-8055-5403', 3, '097247768287178289', '16F, No. 6, Shuangqing Rd, Chenghua District, Chengdu, China', '1991-04-28', 0, 0, 'sya', '2015-07-25', 'sakura1122', '2017-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS283936321678', '長谷川樹', 1, '+1 330-807-3427', 3, '844507154197282048', '937 West Market Street Apt 44, Akron, OH 44333, United States', '1987-10-08', 0, 0, 'hits', '2011-11-30', 'hasegawa4', '2021-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS960765590565', '韓詠詩', 0, '+44 7367 690690', 4, '915771612751694977', 'Block 43, 594 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1987-01-25', 0, 0, 'hanwing', '2019-12-19', 'hawingsze', '2001-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS405735032796', 'Carmen Freeman', 1, '+1 212-049-5500', 3, '475171704349692262', '431 Bank Street Apt 3, New York, NY 10014, United States', '1987-02-04', 0, 0, 'carmen69', '2014-10-16', 'freeman1229', '2004-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS983390502628', '平野美月', 1, '+81 80-8536-9686', 4, '506533998384717770', '日本東京中央区銀座三丁目12番10号7階', '1992-10-07', 0, 0, 'hirano14', '2014-11-15', 'mithirano7', '2014-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS875560222922', 'Emily Jackson', 1, '+1 838-329-3500', 0, '391974669285149034', '95 Central Avenue Suite 17, Albany, NY 12206, United States', '1991-06-29', 0, 0, 'jaemily', '2020-09-27', 'emilyja', '2001-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS664598874328', '山本葉月', 0, '+81 70-4850-5241', 2, '472236732901397911', '日本おおさかし西成区天神ノ森二丁目1番19号15号室', '1985-12-31', 0, 0, 'yamamoto6', '2009-10-03', 'hazuki418', '2017-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS126867342846', 'Vincent Ortiz', 0, '+1 838-556-4891', 1, '997196140723804161', '1 Central Avenue Suite 25, Albany, NY 12205, United States', '1992-05-11', 0, 0, 'vortiz', '2009-08-12', 'ortizv', '2002-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS323444161074', '何岚', 0, '+86 28-4221-6812', 0, '899165013252482588', 'No.20 building, 646 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1986-09-22', 0, 0, 'lan1994', '2014-06-16', 'hel', '2013-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS468573273117', '阎子异', 0, '+86 20-272-2734', 2, '653077639221154209', '中国广州市越秀区中山二路457号38栋', '1989-05-14', 0, 0, 'yaziyi825', '2011-02-24', 'zy6', '2008-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS199016951041', '何梓晴', 0, '+86 185-9206-8810', 2, '805843455077672475', '中国北京市西城区复兴门内大街656号33室', '1995-05-14', 0, 0, 'hotszching', '2014-02-03', 'tszching7', '2008-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS695551267471', '車國榮', 1, '+86 136-5670-2068', 0, '164659086185841650', 'No.26 building, 179 East Wangfujing Street, Dongcheng District , Beijing, China', '1996-09-15', 0, 0, 'kwokwingche903', '2005-03-27', 'ckwokwing', '2019-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS101674688584', 'Doris Henderson', 0, '+44 (116) 660 3418', 0, '187574174262674705', 'Block 33, 227 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-10-07', 0, 0, 'dorishenderson7', '2010-02-14', 'hendersond3', '2012-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS815621463809', 'Joshua Olson', 1, '+86 760-8770-8441', 3, '046217788800484461', '中国中山天河区大信商圈大信南路221号43室', '1989-09-09', 0, 0, 'joshua1991', '2007-03-17', 'olsoj', '2009-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS094849467313', '于子韬', 0, '+86 159-2753-6058', 1, '642888161397276942', '中国中山天河区大信商圈大信南路889号华润大厦22室', '1987-04-18', 0, 0, 'zitaoy', '2007-06-10', 'zitaoyu', '2011-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS754699883037', '徐慧珊', 0, '+81 80-4115-4844', 0, '334481215456102033', '2-kai, 1-5-12, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1998-05-22', 0, 0, 'twaisan929', '2012-01-13', 'waisan1974', '2010-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS268098441525', '任國權', 1, '+86 769-8678-3718', 4, '597012828534479628', 'No.7 building, 871 Dongtai 5th St, Dongguan, China', '1987-06-28', 0, 0, 'ykk', '2021-02-27', 'yam54', '2014-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS751491734445', '余岚', 1, '+86 755-1049-5544', 1, '429245964607338312', '中国深圳龙岗区布吉镇西环路443号30栋', '1995-02-26', 0, 0, 'yu715', '2002-06-12', 'yulan', '2006-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS714512500797', 'John Dixon', 0, '+81 52-965-6261', 0, '383312746993817544', '日本なごやし熱田区千年二丁目5番3号34階', '1992-03-16', 0, 0, 'johndix1977', '2014-01-20', 'jdix', '2007-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS978405796116', '佐野百花', 0, '+86 140-9248-4913', 3, '056758453519160031', 'Room 29, 201 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1987-04-08', 0, 0, 'momoksa', '2004-05-22', 'msano4', '2016-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS370313465591', '萧宇宁', 1, '+44 5895 803257', 1, '965328029895088370', 'No.2 Main building, 322 Maddox Street, London, W1S 1PU, United Kingdom', '1985-01-04', 0, 0, 'xiyuning', '2019-03-24', 'xiayuning', '2017-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS719073095957', 'Katherine Gibson', 0, '+86 755-822-7356', 4, '650985916864187659', '13F, 547 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1992-06-15', 0, 0, 'gik8', '2004-07-16', 'katherinegibso', '2005-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS861002146790', '佐藤陸', 0, '+1 330-315-9241', 1, '578648338221514900', '464 Fern Street Suite 17, Akron, OH 44307, United States', '1990-11-02', 0, 0, 'satori927', '2018-08-12', 'rikusato', '2017-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS679497431641', '周國榮', 1, '+81 66-598-7953', 1, '439063361100656599', '48-kai, 1-1-11 Deshiro, Nishinari Ward, Osaka, Japan', '1998-07-02', 0, 0, 'kwc', '2015-07-16', 'kwokwingchow', '2004-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS487199850523', '梁富城', 1, '+86 133-4547-7979', 3, '714087644897817453', 'No.20 building, 180 Kengmei 15th Alley, Dongguan, China', '1992-06-18', 0, 0, 'fushing229', '2012-12-23', 'leufs', '2020-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS122019195248', 'Gary Kelley', 0, '+81 70-5888-7521', 3, '441584082026393842', '日本東京渋谷区代々木二丁目3番8号7号室', '1988-11-12', 0, 0, 'kelley8', '2012-09-02', 'kelley51', '2009-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS192081256398', 'Raymond Brown', 1, '+81 3-5252-5136', 1, '345426473887921355', '34-kai, 1-6-15, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1986-05-19', 0, 0, 'raymondbr', '2017-05-17', 'brownra307', '2011-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS598401963308', '毛頴思', 0, '+86 755-4457-3321', 1, '500102070152214171', '中国深圳龙岗区布吉镇西环路133号36栋', '1990-10-31', 0, 0, 'wsmo', '2014-06-07', 'mo7', '2014-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS689735511634', '魏震南', 1, '+86 136-2967-4896', 1, '724824234087286947', 'Room 35, 887 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1996-02-03', 0, 0, 'zhennan1951', '2005-03-12', 'zhewe7', '2017-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS176049597748', '酒井陽太', 1, '+44 5965 345466', 3, '642520592482297265', 'Block 27, 904 Mosley St, Manchester, M2 3AQ, United Kingdom', '1995-08-12', 0, 0, 'yots66', '2012-04-18', 'yotsa1953', '2001-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS009461195942', '林子韬', 1, '+44 (20) 9386 6968', 4, '791346600667613485', 'Block 47, 331 Hanover Street, London, W1S 1YD, United Kingdom', '1987-10-25', 0, 0, 'lzi717', '2020-03-08', 'lizitao1026', '2006-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS691782410369', '鈴木百恵', 0, '+44 (116) 014 3806', 3, '864036643599358884', 'Block 28, 771 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1994-10-29', 0, 0, 'msuzu319', '2003-01-13', 'smomoe1995', '2020-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS708915374613', 'Nicholas Hamilton', 1, '+86 166-8861-1753', 2, '410405716349925331', '中国北京市西城区复兴门内大街960号37栋', '1995-06-16', 0, 0, 'hamiltonnic', '2009-11-15', 'nicholashamil', '2005-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS999257894123', 'Josephine Nelson', 0, '+44 5277 589858', 3, '845717795564604793', 'No.38 Main building, 829 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-11-24', 0, 0, 'nelsojose906', '2009-10-18', 'nej', '2002-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS888854683526', '贺云熙', 1, '+1 838-136-8092', 2, '542083333262295295', '974 Central Avenue Suite 14, Albany, NY 12206, United States', '1991-09-21', 0, 0, 'heyunxi1229', '2009-05-14', 'hyunx8', '2009-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS608678818494', '鄧梓軒', 0, '+81 11-054-2549', 0, '594077229590743989', '日本札幌中央区宮の森四条六丁目1番19号19階', '1991-09-29', 0, 0, 'tath', '2004-03-08', 'tszhint', '2019-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS363730488105', '佐々木美咲', 0, '+81 11-395-1422', 2, '539710392612170380', '日本札幌白石区菊水三条五丁目2番19号22階', '1999-03-03', 0, 0, 'sasakimisa', '2015-01-07', 'misakisasa131', '2007-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS327949206760', '西村健太', 0, '+86 160-7156-9266', 0, '198992007545764107', '中国北京市延庆区028县道753号华润大厦38室', '1987-07-08', 0, 0, 'nishkenta', '2018-06-17', 'nishimurake', '2015-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS074030043118', '菊地百恵', 1, '+86 28-5308-3036', 1, '150139363452300675', 'No.13 building, 933 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1985-11-30', 0, 0, 'momoekikuchi', '2017-07-04', 'kikuchi1969', '2001-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS115549536737', 'Clara Alexander', 1, '+86 28-740-6282', 1, '642149895353900081', 'No.46 building, 206 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1995-06-07', 0, 0, 'claraa', '2011-07-27', 'alexander5', '2020-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS864478844639', '湯梓軒', 1, '+86 140-0520-0810', 1, '598234424533515604', 'Room 27, 347 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1991-04-29', 0, 0, 'tth', '2004-09-22', 'tongtszhin', '2003-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS417956902168', '鄭朝偉', 1, '+44 (151) 520 8790', 2, '846142002039521394', 'Flat 2, 223 Hanover St, Liverpool, L1 4AF, United Kingdom', '1986-01-09', 0, 0, 'cwche', '2017-11-23', 'chiuwai9', '2003-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS594465880379', 'Joseph Baker', 0, '+86 10-963-5739', 2, '598714602467801236', 'No.1 building, 246 West Chang''an Avenue, Xicheng District, Beijing, China', '1989-08-05', 0, 0, 'jbaker6', '2001-05-03', 'baker10', '2019-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS179614636473', '江家明', 1, '+44 5241 815799', 4, '399414248720951201', 'Flat 6, 522 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1992-04-19', 0, 0, 'kamikong', '2000-02-17', 'kongkm', '2006-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS278657551297', '罗詩涵', 1, '+86 10-747-0627', 0, '222297823411140685', '中国北京市東城区東直門內大街301号34栋', '1986-12-29', 0, 0, 'shihan9', '2021-07-08', 'shihanluo', '2003-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS917279983160', 'Carrie Richardson', 1, '+81 11-086-3537', 3, '162215876987858022', '47F, 6-1-15, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1988-11-07', 0, 0, 'carrie9', '2005-12-06', 'carririchardson', '2009-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS956233965696', '姚安琪', 0, '+81 80-2866-9416', 2, '702037018009738369', '15-kai, 1-1-1 Deshiro, Nishinari Ward, Osaka, Japan', '1996-10-04', 0, 0, 'yaanqi1', '2014-05-27', 'anqi1', '2016-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS759582838959', '大塚瑛太', 0, '+86 179-8146-1551', 3, '118534612893141069', 'Room 24, 288 Dong Zhi Men, Dongcheng District, Beijing, China', '1986-05-01', 0, 0, 'eitaotsuk', '2008-03-09', 'oei', '2013-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS819726053447', '邵致远', 1, '+81 3-8437-2477', 1, '668269586012468545', '日本東京港区東新橋一丁目5番10号26階', '1990-05-01', 0, 0, 'zhishao', '2018-05-12', 'shazh', '2004-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS832379631623', '鄺小慧', 1, '+86 189-9740-2144', 1, '696126335177172902', '中国东莞东泰五街911号3栋', '1996-03-05', 0, 0, 'kwong88', '2019-10-05', 'siuwaikwon88', '2001-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS906979691187', '陳詩君', 0, '+81 70-7410-5948', 3, '955547009405224818', 'Rm. 30, 3-19-16 Shimizu, Kita Ward, Nagoya, Japan', '1986-08-04', 0, 0, 'szekwan5', '2009-04-25', 'szekwanchan', '2011-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS218594277673', '王惠妹', 1, '+81 90-0478-7073', 0, '793470375941682066', 'Rm. 1, 3 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-11-14', 0, 0, 'huimewong', '2004-09-16', 'hmwong', '2020-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS142067101977', 'Christopher Turner', 0, '+44 (20) 4962 4177', 1, '584853113311572923', 'No.24 Main building, 752 Maddox Street, London, W1S 1PU, United Kingdom', '1990-07-02', 0, 0, 'turchristopher08', '2006-08-06', 'christopherturner1002', '2005-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS357321147000', '小川聖子', 0, '+81 80-9449-9081', 3, '437912891089313889', 'Rm. 45, 1-6-8, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1990-09-20', 0, 0, 'seikoo', '2014-06-01', 'ogawas', '2000-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS587869876639', 'Justin Phillips', 0, '+86 166-2716-0862', 3, '973885529725747120', '46F, 75 Sanlitun Road, Chaoyang District, Beijing, China', '1989-06-10', 0, 0, 'phillj1029', '2012-05-18', 'philljustin930', '2009-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS333217689173', 'Betty Snyder', 1, '+1 213-145-2103', 2, '310634031588458323', '585 Sky Way Apartment 30, Los Angeles, CA 90043, United States', '1989-08-12', 0, 0, 'snyderbetty', '2012-06-23', 'sbetty911', '2014-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS403924860798', 'Amy Morris', 0, '+44 7788 554471', 3, '853130231882257888', 'Block 23, 846 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1997-02-14', 0, 0, 'morris42', '2008-02-28', 'mora', '2019-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS830030209012', 'Randy Bailey', 0, '+1 312-398-3319', 1, '460083771506351016', '343 Pedway Suite 1, Chicago, IL 60601, United States', '1992-08-07', 0, 0, 'bailerand03', '2015-06-10', 'baileyrandy107', '2011-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS034256826249', 'Tiffany Mcdonald', 0, '+86 181-4960-0114', 4, '850054415527140176', 'Room 44, 776 Tianhe Road, Tianhe District, Guangzhou, China', '1990-04-21', 0, 0, 'tiffany117', '2007-04-28', 'mcdonaldtiffany', '2009-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS519849696752', 'Gerald Phillips', 1, '+86 10-646-2633', 4, '116702886960349022', 'No.50 building, 399 028 County Rd, Yanqing District, Beijing, China', '1991-02-26', 0, 0, 'geraldph10', '2019-11-02', 'geraldp4', '2017-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS538664515630', '贺震南', 0, '+1 312-742-5911', 1, '236756049929271370', '605 Pedway Apartment 39, Chicago, IL 60601, United States', '1995-06-11', 0, 0, 'hezhennan', '2019-11-04', 'hezhennan', '2010-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS822947440482', '麥小慧', 0, '+81 80-7515-7120', 2, '605941324827980473', '日本ならし学園南三丁目9番10号39階', '1992-01-04', 0, 0, 'siuwaim3', '2001-05-25', 'siuwaima', '2022-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS682218993527', '金晓明', 1, '+81 90-5954-6799', 3, '427343382887055380', '日本おおさかし平野区加美東四丁目9番12号3階', '1994-11-06', 0, 0, 'xj7', '2005-05-04', 'jinx', '2011-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS719782440097', 'Andrew Hunter', 1, '+81 52-666-1402', 2, '318616099742755233', '日本なごやし守山区瀬古東二丁目171番7号29号室', '1985-07-03', 0, 0, 'hunterandr', '2012-07-04', 'hunteandrew', '2012-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS068489251757', 'Jason Brown', 1, '+44 5949 715751', 2, '148384324041863124', 'Block 30, 963 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1998-07-23', 0, 0, 'brown3', '2015-07-13', 'jbrown', '2012-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS968652378417', 'Leroy Gomez', 1, '+86 140-3839-1887', 1, '870736218673646152', 'Room 48, 446 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1998-02-06', 0, 0, 'lgo8', '2001-05-12', 'gleroy', '2011-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS971411122256', '宮崎紗良', 1, '+86 132-1374-4782', 2, '056558762647393078', '中国广州市白云区小坪东路815号32楼', '1991-03-28', 0, 0, 'misara', '2004-05-20', 'miyasa', '2014-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS190118892034', '王力申', 1, '+81 66-024-9551', 4, '163711011894352721', '日本おおさかし西成区天神ノ森二丁目1番15号7階', '1985-04-30', 0, 0, 'wonliksun9', '2000-06-13', 'liksunwong64', '2017-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS294362592149', 'Ruth Payne', 1, '+81 90-6615-1801', 1, '766473728793550883', '日本ならし西大寺赤田町一丁目7番13号41号室', '1997-06-17', 0, 0, 'payner1225', '2006-01-31', 'rpay', '2013-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS751928710673', '江志明', 0, '+44 (1223) 31 5373', 2, '694715154625616654', 'No.38 Main building, 554 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1993-10-29', 0, 0, 'cmk', '2018-09-29', 'cmkong', '2006-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS488921595147', '谷口愛梨', 0, '+81 66-060-6582', 2, '904665081156007149', '日本おおさかし近江堂一丁目7番11号43号室', '1985-02-28', 0, 0, 'taniguchia99', '2014-12-18', 'taniguchiairi610', '2011-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS098164938697', '孙宇宁', 0, '+86 10-8092-9232', 2, '304403727094417603', '中国北京市海淀区清河中街68号81号47室', '1998-01-23', 0, 0, 'ysun', '2009-09-10', 'yunsun', '2019-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS379658871387', '傅秀英', 1, '+86 21-7630-6627', 4, '929032243594512916', 'Room 14, 871 Middle Huaihai Road, Huangpu District, Shanghai, China', '1996-12-04', 0, 0, 'fuxiuying510', '2010-09-24', 'fux225', '2005-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS186921914606', '戴安琪', 0, '+81 52-041-4753', 2, '640001819729483447', '37-kai, 4 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1989-12-28', 0, 0, 'daia', '2018-06-15', 'anqida', '2018-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS296335733478', '羅德華', 0, '+1 718-641-1397', 3, '667925024148635068', '256 Columbia St Apartment 39, Brooklyn, NY 11231, United States', '1987-12-20', 0, 0, 'takwah4', '2010-07-14', 'lotakwah5', '2001-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS572013474050', '杜嘉欣', 1, '+86 10-0919-9870', 3, '989663606435891392', 'No.9 building, 174 Yueliu Rd, Fangshan District, Beijing, China', '1987-09-02', 0, 0, 'tokaryan', '2004-03-23', 'toky', '2014-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS798629768910', '山下桜', 1, '+86 143-6916-6384', 3, '595585662611841938', '中国深圳福田区景田东一街895号25楼', '1988-05-21', 0, 0, 'yamashitasakur', '2002-01-30', 'saky', '2010-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS766476698704', '餘慧儀', 0, '+81 52-040-2582', 4, '052013318726449662', 'Rm. 5, 3-19-20 Shimizu, Kita Ward, Nagoya, Japan', '1989-01-10', 0, 0, 'waiyeeyue7', '2021-04-24', 'waiyee914', '2014-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS964689967120', 'Jeremy Dunn', 1, '+81 11-633-5060', 1, '098742371920035485', '13F, 5-4-3 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-12-10', 0, 0, 'dunjer', '2021-05-21', 'dunjer1', '2014-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS401759791335', '姜岚', 0, '+81 70-7775-2224', 1, '722970159956708629', '19F, 2-1-14 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1992-11-28', 0, 0, 'lan119', '2013-11-16', 'lanjiang', '2018-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS788721733759', '史子异', 1, '+81 80-9452-3798', 0, '434866373993357567', '日本なごやし瑞穂区河岸町四丁目20番8号45階', '1993-04-07', 0, 0, 'ziyishi7', '2005-03-02', 'shiz5', '2016-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS108769645892', '傅富城', 1, '+1 838-870-9414', 2, '037495749371174902', '459 State Street 3rd Floor, Albany, NY 12203, United States', '1988-06-04', 0, 0, 'fushing1011', '2000-11-20', 'fufs', '2016-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS473122769261', 'Theresa Moore', 1, '+81 80-0256-1514', 1, '831167853896031966', '日本なごやし瑞穂区河岸町四丁目20番20号42号室', '1992-05-01', 0, 0, 'moortheresa', '2003-07-11', 'theresamoore', '2004-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS678307937744', '翁德華', 1, '+81 3-6704-8021', 3, '736851337783602419', '日本東京品川区東五反田五丁目2番8号17階', '1985-12-31', 0, 0, 'takwahyun1997', '2019-06-04', 'yungtakwah', '2017-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS652491078145', '魏睿', 0, '+1 718-636-5023', 1, '087196903783128869', '54 Flatbush Ave Apt 8, Brooklyn, NY 11225, United States', '1998-07-03', 0, 0, 'ruwe1', '2007-03-12', 'weir4', '2012-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS953526439339', '秦璐', 0, '+81 11-243-4480', 1, '893952386261310406', '日本札幌清田区真栄四条五丁目19番5号34階', '1988-12-05', 0, 0, 'luqin328', '2013-01-24', 'luqi713', '2009-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS045387829736', 'Debra Cole', 1, '+44 5729 553595', 3, '744376915238537134', 'Flat 26, 612 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1992-11-05', 0, 0, 'debraco', '2018-07-24', 'cole714', '2010-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS193696127623', '山崎光莉', 1, '+86 10-836-0312', 2, '220127098365611209', 'No.22 building, 434 Dong Zhi Men, Dongcheng District, Beijing, China', '1986-11-03', 0, 0, 'hikariyamazaki912', '2010-12-09', 'yahikari', '2018-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS619513294988', '陆宇宁', 1, '+86 182-9239-7856', 0, '124528782997015121', 'Room 6, CR Building, 10 Huanqu South Street 2nd Alley, Dongguan, China', '1994-10-28', 0, 0, 'yuninglu', '2012-01-23', 'yuninlu', '2019-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS955359087283', '伊藤和真', 1, '+81 70-8037-8745', 3, '940437661873863125', '日本なごやし北区清水三丁目19番5号28階', '1995-03-24', 0, 0, 'kazumaito', '2001-08-24', 'ito1', '2005-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS662644872338', '张嘉伦', 1, '+81 11-095-0473', 4, '605692338799482248', '日本札幌白石区菊水三条五丁目2番4号46号室', '1986-05-09', 0, 0, 'jialun823', '2006-05-09', 'jialun1952', '2010-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS193603748840', '胡安娜', 0, '+86 769-405-8413', 1, '254426114441319898', '中国东莞珊瑚路693号25室', '1995-05-21', 0, 0, 'wu47', '2012-02-17', 'wuonna3', '2010-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS552911700535', '徐嘉欣', 0, '+86 144-8247-7741', 3, '866966719162187595', '11F, 864 028 County Rd, Yanqing District, Beijing, China', '1993-01-17', 0, 0, 'karyan10', '2009-12-12', 'karyan9', '2012-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS509353365585', 'Gladys Garcia', 0, '+86 136-9157-2865', 1, '990262242414313774', '中国上海市闵行区宾川路807号华润大厦47室', '1998-07-10', 0, 0, 'ggladys', '2018-10-08', 'garcigladys1', '2016-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS058319346393', '伍霆鋒', 0, '+86 172-4258-1025', 2, '599868174485515083', '中国深圳罗湖区清水河一路317号华润大厦40室', '1997-07-07', 0, 0, 'tfng105', '2003-08-21', 'tfng811', '2018-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS900880194151', '成慧琳', 1, '+1 614-575-8135', 3, '699681465818217805', '633 East Alley Suite 20, Columbus, GA 43201, United States', '1997-12-28', 0, 0, 'shingwailam215', '2013-11-06', 'shing5', '2015-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS239749203072', '蔡秀英', 1, '+81 3-0555-4001', 2, '576780237974492987', '40F, 2-3-6 Yoyogi, Shibuya-ku, Tokyo, Japan', '1998-01-09', 0, 0, 'cxi6', '2013-08-14', 'cx1944', '2012-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS343385308670', '李玲玲', 0, '+44 5559 003393', 3, '111868912403015820', 'No.11 Main building, 355 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1997-01-23', 0, 0, 'leeli', '2007-07-11', 'lell', '2020-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS692403382801', '江秀英', 1, '+86 20-7805-8361', 1, '397527698118750829', 'Room 35, CR Building, 900 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1994-11-30', 0, 0, 'jiangxiuying', '2016-06-18', 'jiang614', '2017-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS313289520684', 'Nancy Hill', 0, '+86 755-6886-4510', 0, '469748992812115861', 'No.2 building, 997 Shennan Ave, Futian District, Shenzhen, China', '1992-03-01', 0, 0, 'nancyh6', '2018-07-11', 'nah8', '2014-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS474069129124', '袁潤發', 0, '+81 70-0848-1000', 4, '382750628123559769', 'Rm. 40, 6-1-5, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-11-05', 0, 0, 'yuenyf1983', '2009-03-06', 'yuen6', '2019-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS437806663208', '元青雲', 0, '+81 80-0025-9256', 0, '341796270875653263', '39F, 2-1-12 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-08-19', 0, 0, 'chingwan7', '2007-05-20', 'yuenchingwan10', '2005-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS157041435560', '村上一輝', 0, '+86 769-8520-9970', 0, '306758364840914970', 'Room 34, 650 Dongtai 5th St, Dongguan, China', '1989-05-30', 0, 0, 'mik', '2010-09-11', 'murakami1', '2003-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS251543575359', 'Mildred Salazar', 0, '+86 760-228-1699', 3, '082801297682151506', '中国中山天河区大信商圈大信南路329号华润大厦23室', '1994-08-02', 0, 0, 'salmildr07', '2018-08-09', 'salami', '2002-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS400727067651', 'Gladys Gonzales', 0, '+1 330-281-6834', 3, '929011280212737942', '319 Fern Street Suite 40, Akron, OH 44307, United States', '1988-08-08', 0, 0, 'gladys1225', '2018-05-07', 'gogla', '2011-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS123863685701', '韦云熙', 0, '+86 147-0370-9513', 0, '836513901011793859', '中国上海市闵行区宾川路32号25号楼', '1996-06-27', 0, 0, 'yunxiw', '2011-10-19', 'wei45', '2012-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS413351503694', '千葉陽菜', 0, '+1 330-345-8888', 4, '001065656843407976', '107 Collier Road Apartment 37, Akron, OH 44320, United States', '1990-10-02', 0, 0, 'chhina', '2013-08-28', 'chiba1', '2002-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS539607282769', '森田蒼士', 1, '+1 838-444-8510', 0, '440215519269495450', '997 Lark Street Apt 38, Albany, NY 12210, United States', '1993-01-22', 0, 0, 'aoshim', '2022-03-04', 'morita17', '2020-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS782005079498', 'Kyle Parker', 1, '+86 755-5125-1554', 0, '062429998266604545', '中国深圳福田区景田东一街739号18室', '1996-10-14', 0, 0, 'parker930', '2002-11-27', 'kylepar', '2020-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS180660842877', '苏宇宁', 1, '+86 161-8409-4114', 1, '774042041042288787', 'No.29 building, 796 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1997-09-15', 0, 0, 'ysu', '2017-01-02', 'suyuning1227', '2017-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS876038713544', 'Monica Mcdonald', 0, '+44 5386 014702', 2, '946967611990001216', 'No.19 Main building, 897 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1988-09-30', 0, 0, 'mcdonm', '2019-11-03', 'mm204', '2011-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS662676482257', 'Shirley Garza', 0, '+81 11-601-4581', 2, '729689721340399130', '25F, 2-1-6 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1998-07-19', 0, 0, 'garzas', '2018-03-09', 'sg1998', '2002-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS123425736982', '宣志遠', 1, '+81 90-5990-2701', 1, '060912077119791041', '日本おおさかし西成区天神ノ森二丁目1番16号10階', '1988-05-21', 0, 0, 'hsuanchiyuen', '2015-09-26', 'hsuan19', '2011-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS913161544968', '盧詩君', 0, '+81 66-976-3996', 3, '481022574156105773', '日本おおさかし東住吉区東田辺三丁目27番19号30号室', '1991-06-24', 0, 0, 'loszekwan', '2014-09-03', 'lo7', '2008-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS243364281706', 'Kathy Hunter', 1, '+81 80-9496-4580', 1, '658801102204768153', '30F, 1-7-19 Saidaiji Akodacho, Nara, Japan', '1986-02-24', 0, 0, 'hunter201', '2002-02-26', 'hunter8', '2000-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS911903194035', 'Michael King', 0, '+86 139-6549-3229', 1, '328173316737728927', '中国深圳福田区深南大道449号华润大厦47室', '1997-12-01', 0, 0, 'miking', '2020-02-01', 'micking', '2017-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS218920021402', '石田美咲', 0, '+1 312-369-3520', 2, '256578261170182754', '914 Rush Street Apt 14, Chicago, IL 60611, United States', '1995-06-24', 0, 0, 'imisa313', '2022-02-28', 'ishmi93', '2018-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS722643021792', '吕睿', 1, '+86 180-0616-9686', 3, '032488404087202245', 'No.11 building, 547 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1999-03-04', 0, 0, 'lrui10', '2020-06-16', 'ruilu', '2014-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS397612047067', '毛云熙', 0, '+44 7458 409831', 3, '155365180580898449', 'Unit 20, Oxford Eco Centre, 772 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1988-08-20', 0, 0, 'yunxi74', '2000-01-04', 'maoy', '2010-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS225709855103', '任安琪', 1, '+44 (1865) 69 5558', 0, '517323805863736866', 'Flat 4, 571 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1990-01-07', 0, 0, 'aren117', '2021-07-06', 'rena6', '2008-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS513288603194', '池田美羽', 0, '+86 181-2222-3248', 1, '597976494374893070', '中国深圳龙岗区布吉镇西环路723号17楼', '1990-09-22', 0, 0, 'mikeda', '2007-04-08', 'im127', '2003-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS670818235523', '許詠詩', 1, '+86 760-5170-1572', 1, '304048481338000439', '中国中山天河区大信商圈大信南路444号2室', '1988-02-15', 0, 0, 'huiwingsze', '2011-05-10', 'wingsze630', '2004-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS441431600576', '鄧發', 1, '+81 70-1934-2709', 1, '138517911511456539', '日本東京渋谷区代々木二丁目3番10号11階', '1993-02-11', 0, 0, 'fat2', '2001-05-20', 'fat41', '2021-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS208430604713', '白祖兒', 0, '+81 3-2056-4579', 1, '521833853408134599', '13-kai, 1-5-17, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1992-03-26', 0, 0, 'cyp1974', '2009-10-26', 'cypak927', '2002-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS301237636827', 'Dorothy Gutierrez', 0, '+81 80-5311-5003', 3, '452689997939097300', 'Rm. 4, 1-5-10, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1999-01-23', 0, 0, 'gdo', '2011-01-07', 'dorothygut76', '2019-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS559714170105', '中森葵', 1, '+1 330-165-7150', 0, '853538448524712168', '427 Collier Road Apartment 14, Akron, OH 44320, United States', '1993-02-19', 0, 0, 'nakamoriaoi', '2020-09-25', 'aoinakamori7', '2008-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS547506080809', '黎子韬', 0, '+86 10-730-1661', 0, '926031694501542679', 'Room 29, CR Building, 598 East Wangfujing Street, Dongcheng District , Beijing, China', '1990-05-09', 0, 0, 'zitaoli', '2013-02-24', 'zil', '2007-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS142588603348', '曾國明', 0, '+81 70-1434-0173', 0, '321376071107011696', '48-kai, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1987-06-27', 0, 0, 'tsang44', '2003-01-31', 'tkwokming97', '2007-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS291383448490', '胡德華', 1, '+86 755-7216-9877', 4, '802957995006114103', '中国深圳罗湖区蔡屋围深南东路428号24室', '1995-05-06', 0, 0, 'takwahwu6', '2018-07-21', 'wutakwah9', '2000-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS590929969591', '張富城', 1, '+86 152-7384-5458', 1, '374217016114018030', '中国中山京华商圈华夏街715号10室', '1990-03-03', 0, 0, 'cfs327', '2002-10-15', 'fscheung', '2018-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS366432417763', '樂國明', 0, '+81 66-560-0123', 3, '477735243627046281', '日本おおさかし近江堂一丁目7番17号26号室', '1991-11-16', 0, 0, 'kwoklok', '2005-10-01', 'kwokmingl', '2009-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS539317239565', '容德華', 1, '+86 154-1160-8067', 3, '957974555742158829', 'No.23 building, 852 Binchuan Rd, Minhang District, Shanghai, China', '1998-06-19', 0, 0, 'takwahyung', '2012-09-16', 'takwahyu6', '2003-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS470785843732', '丁云熙', 1, '+81 90-8286-0590', 2, '347758686117646521', '44F, 5-4-14 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1995-08-25', 0, 0, 'yunxiding120', '2001-01-18', 'yuding', '2015-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS745769185702', '谷口愛梨', 0, '+86 137-9668-8303', 3, '641226873839651367', '中国深圳罗湖区蔡屋围深南东路809号华润大厦8室', '1988-10-07', 0, 0, 'taniguchiairi81', '2001-11-01', 'taniairi', '2002-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS509261008230', '毛頴思', 1, '+81 70-8369-0980', 1, '114430767071488304', 'Rm. 48, 13-3-12 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1986-04-03', 0, 0, 'wingszem', '2015-01-04', 'mows2', '2014-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS211988768845', '文力申', 1, '+86 138-6813-6439', 1, '114650889247098464', 'Room 22, 521 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1986-05-18', 0, 0, 'maliksun', '2004-04-27', 'liksunman4', '2006-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS457846418980', '中山大輔', 0, '+1 614-042-1088', 0, '856147726893889694', '500 Tremont Road Apartment 5, Columbus, GA 43212, United States', '1996-06-04', 0, 0, 'nakad', '2002-11-21', 'dainakayama1', '2018-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS379692996014', '苗嘉欣', 1, '+86 10-9581-1719', 0, '177566868179934156', '中国北京市东城区东单王府井东街19号22栋', '1985-05-19', 0, 0, 'miky', '2019-10-01', 'karyanmiu1', '2016-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS383329128080', '韩睿', 1, '+86 157-9187-0290', 3, '262584813651357885', '中国深圳龙岗区布吉镇西环路339号49号楼', '1997-04-12', 0, 0, 'ruihan', '2014-09-02', 'ruihan19', '2008-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS475238889517', '苑小慧', 1, '+81 90-1286-7688', 0, '450575390367316967', 'Rm. 49, 5-2-17 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-01-23', 0, 0, 'yuensw', '2014-05-23', 'yuensiuwai', '2019-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS221378819667', '楊國權', 0, '+86 21-4777-0689', 3, '266226391673621035', 'No.22 building, 206 Ganlan Rd, Pudong, Shanghai, China', '1986-08-04', 0, 0, 'ykk', '2020-10-27', 'yekk912', '2001-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS936006962629', '金晓明', 1, '+44 5115 801826', 1, '878385447447552402', 'No.1 Main building, 470 Hanover Street, London, W1S 1YD, United Kingdom', '1986-03-18', 0, 0, 'jxiaoming2', '2018-11-01', 'xiaoming6', '2010-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS797504310960', '贾璐', 1, '+44 (151) 986 0495', 3, '876062746301419507', 'Block 16, 798 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-12-26', 0, 0, 'jia00', '2019-12-20', 'jialu', '2002-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS076051394360', '前田結翔', 1, '+44 5668 160744', 4, '588560275191095442', 'Unit 19, Oxford Eco Centre, 27 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1992-09-25', 0, 0, 'yumaeda920', '2018-01-17', 'maeyui1', '2008-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS761654603068', '姚潤發', 1, '+86 194-4643-4880', 1, '792074385012350499', 'No.13 building, 53 028 County Rd, Yanqing District, Beijing, China', '1994-10-05', 0, 0, 'yeow5', '2003-03-14', 'yyf50', '2000-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS776560695227', '吉田和真', 1, '+86 148-7007-6655', 1, '733957681600387348', '中国深圳福田区深南大道100号27楼', '1995-01-13', 0, 0, 'yoshida620', '2003-04-21', 'yoshidakazuma74', '2002-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS519975670796', 'Pauline Campbell', 1, '+81 70-2609-4245', 1, '564861285790648519', '1F, 5-19-7 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-08-05', 0, 0, 'campbell4', '2004-07-31', 'campbpauline', '2018-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS166051836548', '阎岚', 0, '+86 20-6366-9932', 4, '869323979626373574', '中国广州市白云区机场路棠苑街五巷551号41栋', '1988-06-26', 0, 0, 'lyan2', '2018-03-01', 'yanla', '2001-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS370838965914', '许睿', 0, '+81 66-131-1383', 1, '159263951263459239', 'Rm. 28, 4-9-1 Kamihigashi, Hirano Ward, Osaka, Japan', '1997-11-08', 0, 0, 'rui1231', '2001-09-21', 'xrui', '2000-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS424213015078', '曾嘉伦', 1, '+1 330-146-6321', 2, '486844059812936764', '726 Collier Road Suite 27, Akron, OH 44320, United States', '1996-07-27', 0, 0, 'zeng42', '2009-11-29', 'jz4', '2013-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS054069287641', '島田涼太', 1, '+44 7982 121896', 0, '470900987447335988', 'No.36 Main building, 916 Park End St, Oxford, OX1 1JD, United Kingdom', '1989-04-17', 0, 0, 'shimadary', '2016-01-14', 'shr1967', '2019-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS370769405235', '藤原聖子', 0, '+81 52-159-5784', 1, '229719673054811983', '36-kai, 2-5-11 Chitose, Atsuta Ward, Nagoya, Japan', '1985-06-27', 0, 0, 'seikofujiwara', '2012-04-29', 'fujiseiko2', '2003-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS002144330703', '藍心穎', 0, '+86 10-088-2221', 4, '277068540953372156', '中国北京市西城区西長安街393号华润大厦2室', '1997-10-21', 0, 0, 'sumwinglam', '2000-06-08', 'swla8', '2005-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS246120218069', 'Ethel Boyd', 1, '+86 180-5464-9411', 0, '429880606192315226', '中国深圳福田区深南大道430号1楼', '1998-02-22', 0, 0, 'etheb', '2016-07-16', 'etheboyd', '2010-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS862746443305', '梁永發', 0, '+81 90-3050-7243', 2, '270913102782067824', '50-kai, 7 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-03-10', 0, 0, 'leungwingf1', '2019-10-14', 'leungwingfat', '2014-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS794827364261', 'Larry Dunn', 1, '+86 20-8645-4535', 3, '166003285639129775', 'No.47 building, 687 Jiangnan West Road, Haizhu District, Guangzhou, China', '1999-02-09', 0, 0, 'larrydunn', '2021-05-30', 'dunn9', '2003-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS926642272121', '田云熙', 1, '+86 130-2335-0500', 3, '333373654854983227', '中国广州市天河区天河路502号华润大厦8室', '1985-03-11', 0, 0, 'tian2008', '2009-03-08', 'tyunxi10', '2010-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS113240006940', '杜梓軒', 0, '+1 213-124-4491', 1, '934393569746717785', '366 Sky Way Suite 36, Los Angeles, CA 90043, United States', '1991-10-03', 0, 0, 'totszhin1993', '2018-08-06', 'thto4', '2016-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS495978671439', '邓岚', 0, '+81 74-822-9922', 0, '044286941160079701', '29-kai, 3 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1992-11-18', 0, 0, 'deng8', '2003-05-21', 'land', '2007-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS985071060914', 'Edward Daniels', 1, '+81 11-114-0143', 1, '457453775120557376', 'Rm. 22, 5-19-3 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1989-12-01', 0, 0, 'eddaniels1940', '2010-11-21', 'eddaniels', '2009-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS821508914697', '姜家輝', 1, '+81 70-8550-2498', 3, '870929459418754015', '日本なごやし北区楠味鋺三丁目80番2号23号室', '1991-10-15', 0, 0, 'changkf', '2016-10-16', 'ckf7', '2011-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS060854791778', '菅原結翔', 0, '+81 70-5190-0010', 3, '141823433568046807', '45F, 5-2-3 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-10-03', 0, 0, 'sugawara123', '2007-12-03', 'yuito51', '2016-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS719387349896', '杜子异', 0, '+1 330-786-9062', 1, '132507440252066519', '44 Fern Street Suite 13, Akron, OH 44307, United States', '1991-09-01', 0, 0, 'duziyi1944', '2021-04-29', 'ziyi9', '2016-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS551226114002', 'Monica West', 0, '+1 838-761-0531', 2, '397736937245179272', '990 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1993-08-21', 0, 0, 'wem3', '2012-02-26', 'monwes', '2007-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS354696542194', 'Edith James', 1, '+44 (161) 295 4385', 4, '117930137754145623', 'No.20 Main building, 589 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1987-05-22', 0, 0, 'edithjam10', '2014-09-09', 'edithjames', '2011-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS979391010989', '斎藤蓮', 1, '+86 28-9389-4880', 2, '798922977525170102', 'Room 50, CR Building, No. 110, Shuangqing Rd, Chenghua District, Chengdu, China', '1989-04-02', 0, 0, 'rensaito106', '2010-04-14', 'saren429', '2005-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS261649497753', '邵慧琳', 1, '+86 162-8426-4459', 2, '372978114478145177', '32F, 171 Jingtian East 1st St, Futian District, Shenzhen, China', '1990-12-16', 0, 0, 'siuwl', '2019-04-03', 'wailam503', '2018-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS822811487182', '彭璐', 0, '+44 (151) 341 4246', 2, '096301992543191131', 'Block 44, 301 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1988-01-29', 0, 0, 'lupe69', '2019-10-12', 'pl1212', '2016-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS163276293771', 'Linda Mitchell', 1, '+44 7176 088803', 1, '828774615937328282', 'Block 32, 903 Mosley St, Manchester, M2 3AQ, United Kingdom', '1993-02-05', 0, 0, 'linmitc325', '2000-09-18', 'mitlinda', '2016-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS417634183883', '橋本美咲', 1, '+81 74-353-4876', 4, '848404326111774416', '26-kai, 1-7-11 Saidaiji Akodacho, Nara, Japan', '1985-12-19', 0, 0, 'hashmisa', '2008-10-28', 'hashimotomisa', '2019-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS684943766497', 'Justin Hill', 0, '+44 5496 588926', 2, '092339105854648375', 'No.11 Main building, 680 Hanover Street, London, W1S 1YD, United Kingdom', '1991-03-21', 0, 0, 'hill2013', '2019-05-04', 'hillj', '2020-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS230780932877', '黎家輝', 0, '+44 7959 843402', 1, '905204631031993778', 'Flat 10, 780 Park End St, Oxford, OX1 1JD, United Kingdom', '1986-09-29', 0, 0, 'laikf520', '2005-09-07', 'kafail49', '2010-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS489552895892', '溫志遠', 0, '+81 80-2062-0457', 1, '790386002914484307', '50-kai, 5-2-16 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1986-09-11', 0, 0, 'chiyuenwa', '2008-02-19', 'wacy', '2003-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS337802817564', '高家文', 1, '+44 (121) 480 6364', 2, '874483704669354928', 'Unit 30, Oxford Eco Centre, 910 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1992-12-26', 0, 0, 'kaokaman86', '2014-09-11', 'kkm1951', '2002-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS760541089215', '田村愛梨', 1, '+81 74-458-4095', 0, '060495899242999427', '日本ならし大和郡山市本庄町一丁目1番19号12階', '1991-12-19', 0, 0, 'airtamura', '2014-02-14', 'airi1', '2007-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS928637416391', '韩璐', 1, '+81 80-7576-4970', 0, '575339062138769465', '日本なごやし瑞穂区河岸町四丁目20番3号21階', '1986-03-20', 0, 0, 'lhan14', '2018-12-02', 'hanlu', '2007-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS771866301700', 'Carlos Kim', 0, '+44 (116) 990 1786', 1, '059027866935233728', 'Unit 3, Oxford Eco Centre, 732 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-11-11', 0, 0, 'carlokim322', '2017-01-22', 'cki1011', '2019-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS875497217943', '余安琪', 1, '+86 28-752-6433', 2, '501201149286512872', '中国成都市成华区双庆路564号华润大厦40室', '1995-12-29', 0, 0, 'anqiyu514', '2011-10-24', 'yuanqi', '2008-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS390048395170', '安藤大輔', 1, '+1 212-318-8037', 1, '044555809003303115', '893 Wooster Street 3rd Floor, New York, NY 10012, United States', '1992-02-09', 0, 0, 'andoda', '2011-01-06', 'daisuando', '2018-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS777211664620', '毛安琪', 1, '+81 3-2190-2382', 4, '822542473243767292', '日本東京中央区銀座三丁目12番9号6階', '1993-05-03', 0, 0, 'maoa418', '2008-08-10', 'anqimao', '2008-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS151620324953', '鐘慧琳', 0, '+81 70-7293-5521', 2, '095580307572899741', '日本ならし大和郡山市本庄町一丁目1番20号29階', '1986-07-23', 0, 0, 'chung10', '2007-09-16', 'wailam815', '2001-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS158277192135', 'Debbie Morris', 1, '+81 52-112-7249', 3, '174238221613390752', '日本なごやし北区楠味鋺三丁目80番13号49号室', '1986-01-07', 0, 0, 'morde', '2013-07-20', 'morris1209', '2005-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS069368153336', '李嘉伦', 0, '+86 161-7566-2930', 4, '066099156600517628', 'No.50 building, 162 Dongtai 5th St, Dongguan, China', '1994-10-07', 0, 0, 'jialunli1980', '2020-02-23', 'jialunli', '2015-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS745419434428', '許玲玲', 1, '+86 28-2564-9261', 2, '267864132603360589', 'No.34 building, No. 466, Shuangqing Rd, Chenghua District, Chengdu, China', '1999-03-04', 0, 0, 'huill329', '2001-02-26', 'huilingling517', '2013-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS891917529499', '中島悠人', 0, '+86 145-1159-0235', 2, '789974530614387662', '中国深圳罗湖区田贝一路475号32号楼', '1990-04-14', 0, 0, 'yutona', '2010-04-06', 'nakajima3', '2020-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS902155851356', 'Bradley Turner', 0, '+81 66-626-0254', 2, '198289508138274402', '日本おおさかし西成区出城一丁目1番9号7階', '1998-01-05', 0, 0, 'turnbradley928', '2018-04-10', 'turnerb', '2001-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS290916687582', '宮崎一輝', 0, '+86 769-7800-8864', 0, '867272727726711695', '47F, 962 Kengmei 15th Alley, Dongguan, China', '1993-03-31', 0, 0, 'miyazakiikki4', '2004-12-19', 'miyazaki1', '2013-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS089239710519', 'Howard King', 1, '+81 70-4022-0702', 2, '898073386166953131', '3F, 2-1-7 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-04-29', 0, 0, 'hkin', '2002-08-28', 'khoward5', '2003-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS894769899449', 'Jacob Thompson', 0, '+81 74-581-5955', 1, '158436691955693380', '日本ならし大和郡山市本庄町一丁目1番8号32階', '1995-03-27', 0, 0, 'jacob73', '2011-02-02', 'thompsonj', '2001-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS108605936798', '青木架純', 0, '+81 80-0059-7605', 1, '682460809839713777', '7F, 5-2-16 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1989-07-09', 0, 0, 'aokik60', '2010-08-10', 'aokikasumi', '2018-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS368170191048', '加藤葉月', 0, '+1 213-257-8347', 2, '471880880962305586', '384 S Broadway Apartment 2, Los Angeles, CA 90015, United States', '1991-06-30', 0, 0, 'hazukikato82', '2009-06-02', 'katohazuki', '2018-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS051785719987', '苗家明', 0, '+81 3-6770-7932', 0, '682346283294187490', '30F, 1-6-20, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-03-25', 0, 0, 'kmm218', '2013-01-22', 'miukm', '2011-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS415017280495', '彭國榮', 1, '+86 10-894-9736', 2, '775536447381774512', 'No.42 building, 815 East Wangfujing Street, Dongcheng District , Beijing, China', '1988-08-28', 0, 0, 'pankwokw', '2014-09-02', 'pkw', '2016-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS958377409207', '沈致远', 0, '+1 330-248-3324', 1, '453137487019701693', '488 Ridgewood Road Apartment 9, Akron, OH 44321, United States', '1999-01-29', 0, 0, 'zshen7', '2021-06-22', 'shen708', '2002-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS606762556907', '许嘉伦', 1, '+44 5663 248470', 2, '409226938429923801', 'No.22 Main building, 370 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1996-12-22', 0, 0, 'xjialu', '2008-01-02', 'xujialun41', '2007-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS999717442519', '萬頴璇', 0, '+86 198-6545-5807', 2, '470753795458419490', '中国广州市白云区小坪东路184号4栋', '1990-10-12', 0, 0, 'wsmeng', '2014-11-18', 'mengwingsuen13', '2012-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS137025381208', '江子异', 1, '+86 755-266-3822', 3, '819378889214134441', '中国深圳罗湖区田贝一路394号48栋', '1986-09-17', 0, 0, 'jiangz907', '2001-10-15', 'ziyiji', '2005-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS194945678755', '藍思妤', 1, '+86 28-9833-7226', 1, '317190608144616903', 'Room 1, No. 586, Shuangqing Rd, Chenghua District, Chengdu, China', '1987-05-12', 0, 0, 'szeyu1941', '2016-01-23', 'lam10', '2017-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS376929147520', '鈴木涼太', 1, '+81 80-1147-6053', 3, '966159802115323863', '日本なごやし北区楠味鋺三丁目80番14号39階', '1994-07-17', 0, 0, 'suzuki7', '2008-01-24', 'ryotsu', '2020-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS794447479713', '韩杰宏', 0, '+44 5352 439867', 4, '353922202460815533', 'Block 14, 215 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-03-19', 0, 0, 'hanjieho60', '2005-05-01', 'jiehonghan', '2003-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS573435136621', '岡田葉月', 0, '+86 185-0130-7473', 4, '712228013312511694', '中国北京市朝阳区三里屯路430号8号楼', '1998-01-03', 0, 0, 'okada918', '2015-08-29', 'hazok', '2013-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS583266990695', '潘詩涵', 0, '+81 11-020-0904', 1, '537671389235936316', 'Rm. 7, 6-1-9, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1995-05-12', 0, 0, 'shipan1216', '2000-07-17', 'shihanpan', '2015-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS284823293189', '錢思妤', 0, '+86 149-9615-3873', 1, '656044522182201313', '中国成都市成华区双庆路807号24栋', '1992-12-21', 0, 0, 'szeyu1947', '2017-03-21', 'cszeyu', '2014-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS865822812364', '龚云熙', 0, '+81 90-7391-2143', 1, '540373495115600205', '日本東京千代田区丸の内一丁目6番13号37号室', '1994-01-26', 0, 0, 'yunxigong6', '2021-08-22', 'gong4', '2004-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS271883783445', '范璐', 1, '+81 11-860-9736', 1, '407390145682884597', '3-kai, 5-2-15 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1998-11-28', 0, 0, 'flu', '2003-04-04', 'fanl', '2021-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS605365968122', '尹家輝', 1, '+81 3-1676-3575', 3, '323945197927475517', '25F, 1-5-13, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1989-09-18', 0, 0, 'yikafai', '2021-11-12', 'ykf', '2010-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS747949229012', '姚杰宏', 0, '+86 151-5686-6932', 0, '173339861308464689', '中国广州市越秀区中山二路488号28室', '1994-09-08', 0, 0, 'jiehyao3', '2000-10-16', 'jiehyao', '2016-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS359368555649', 'Frances Romero', 0, '+44 7603 452094', 4, '712522617620240115', 'Block 2, 470 Mosley St, Manchester, M2 3AQ, United Kingdom', '1994-12-19', 0, 0, 'franromero', '2016-02-22', 'rfrances', '2004-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS994363956079', '江小慧', 1, '+1 838-115-1233', 1, '812016329707528074', '259 Central Avenue Apt 36, Albany, NY 12205, United States', '1998-05-15', 0, 0, 'kong57', '2006-06-17', 'ksw', '2020-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS532505150363', 'Grace Mcdonald', 0, '+86 28-580-0859', 3, '243138611290656967', 'No.14 building, 773 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1989-08-31', 0, 0, 'gracemcdonald1966', '2008-10-11', 'mcdong', '2012-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS278474046662', 'Carolyn Soto', 0, '+81 80-3362-0076', 2, '998042220683863449', 'Rm. 21, 1-7-5 Omido, Higashiosaka, Osaka, Japan', '1985-06-06', 0, 0, 'soc1129', '2018-06-25', 'sotocarolyn1970', '2008-02-29'); +INSERT INTO "public"."userinfo" VALUES ('TS223599248345', '姚慧敏', 1, '+86 755-7430-8515', 2, '965373966287459973', '中国深圳福田区景田东一街726号15号楼', '1992-02-18', 0, 0, 'waimanyeow68', '2015-11-03', 'waimaye1227', '2010-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS287425349930', '杜仲賢', 1, '+81 11-357-9629', 3, '638614805526976216', '日本札幌中央区宮の森四条六丁目1番10号5階', '1994-04-09', 0, 0, 'chungyin101', '2010-05-15', 'cyto6', '2019-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS800190742006', 'Douglas Cox', 1, '+81 90-4390-7145', 1, '689205602899291669', '日本おおさかし西成区天神ノ森二丁目1番19号20階', '1995-08-30', 0, 0, 'coxdoug', '2011-10-16', 'dougc', '2009-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS203669512041', '顧詠詩', 0, '+86 10-355-1869', 4, '126852203474139239', '中国北京市海淀区清河中街68号587号45室', '1992-09-13', 0, 0, 'kuws1103', '2000-12-12', 'kws1', '2002-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS389046442831', '陆子异', 0, '+86 183-9685-7323', 1, '252675138717812788', '中国上海市闵行区宾川路587号30号楼', '1985-06-22', 0, 0, 'luziyi', '2021-06-01', 'ziyilu116', '2000-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS440702259887', 'Julia Hawkins', 1, '+81 70-8244-2572', 4, '694555827145301627', '49-kai, 5-2-9 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-04-23', 0, 0, 'hjuli7', '2012-02-26', 'julia2002', '2009-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS090052703740', '丁晓明', 1, '+81 74-582-8757', 0, '543724398579332866', '19F, 19 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-05-07', 0, 0, 'xiaoming2', '2010-05-01', 'xiaoming831', '2017-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS610896554340', '严璐', 0, '+86 28-482-9548', 3, '255080690027171344', '中国成都市成华区二仙桥东三路476号8室', '1985-01-19', 0, 0, 'ylu', '2001-10-01', 'yan5', '2003-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS306481504898', 'Christopher Rogers', 0, '+81 11-435-0874', 3, '499063580567244785', 'Rm. 30, 6-1-7, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1988-06-11', 0, 0, 'christopherrogers04', '2006-04-09', 'rch99', '2014-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS367066760222', '今井葉月', 1, '+81 3-9150-0254', 1, '324423434118189198', 'Rm. 45, 5-2-6 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-04-26', 0, 0, 'imaihazuki', '2018-08-02', 'ihaz79', '2005-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS451035802190', 'Julie Hamilton', 1, '+44 7504 094061', 3, '008995102974354617', 'Flat 39, 747 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1995-11-11', 0, 0, 'jhamilton1230', '2004-11-30', 'julie6', '2006-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS423866144754', '小山蓮', 1, '+81 74-388-0033', 3, '911502137137921200', '日本ならし大和郡山市本庄町一丁目1番14号8号室', '1989-04-18', 0, 0, 'renkoyama3', '2001-04-09', 'kre17', '2011-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS417800081663', '林紗良', 0, '+86 192-9129-5151', 2, '417576125701743744', 'Room 48, CR Building, 659 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1990-04-11', 0, 0, 'sara1948', '2012-10-07', 'hasa', '2000-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS070249439026', 'Hazel Coleman', 0, '+1 213-794-5803', 0, '006618819448765076', '194 Wall Street Apt 10, Los Angeles, CA 90003, United States', '1998-03-26', 0, 0, 'hazelcoleman', '2020-10-28', 'hazelcolem07', '2004-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS403235521461', '藤仲賢', 1, '+81 80-0014-7513', 1, '294886103786748165', 'Rm. 36, 6 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1995-05-09', 0, 0, 'tcy208', '2007-01-01', 'chta', '2021-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS768505445805', 'Joel Flores', 1, '+81 66-332-0671', 0, '660525815694438045', '日本おおさかし近江堂一丁目7番7号6階', '1998-05-08', 0, 0, 'fljoel', '2006-08-13', 'floj', '2015-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS582602991483', '周嘉欣', 0, '+44 (116) 862 4327', 0, '216563646322348334', 'Unit 1, Oxford Eco Centre, 812 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1985-03-03', 0, 0, 'karyan6', '2003-07-07', 'kycho7', '2012-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS469118729031', '王富城', 1, '+81 11-981-2400', 0, '603513074104962099', '日本札幌清田区真栄四条五丁目19番15号38階', '1988-12-02', 0, 0, 'fushingwong3', '2019-08-01', 'wong48', '2003-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS623409801736', '杨宇宁', 1, '+81 11-446-1973', 1, '247643603699200572', '日本札幌清田区真栄四条五丁目19番20号29号室', '1988-04-17', 0, 0, 'yyuning', '2017-10-09', 'yany', '2009-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS126249275766', '汪小慧', 0, '+81 66-906-9898', 2, '836968569242086209', '日本おおさかし西成区天神ノ森二丁目1番20号4号室', '1986-07-13', 0, 0, 'swwong926', '2014-11-28', 'siuwaiwong', '2002-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS683715095332', 'Nathan Russell', 0, '+86 760-9926-7845', 3, '762191339321238003', '中国中山乐丰六路337号33栋', '1995-09-28', 0, 0, 'nar2007', '2003-04-12', 'nathan53', '2002-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS276615485686', 'Diana Kim', 1, '+81 80-8773-9698', 2, '465048677932969617', '10-kai, 1-1-10 Deshiro, Nishinari Ward, Osaka, Japan', '1995-12-18', 0, 0, 'dianaki7', '2012-10-15', 'kidiana', '2004-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS334479368503', '丁宇宁', 1, '+86 28-2784-0850', 3, '893180214888287143', '中国成都市成华区二仙桥东三路380号华润大厦4室', '1986-02-14', 0, 0, 'dingyuning', '2003-01-09', 'yd223', '2015-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS300507533654', '菅原光莉', 0, '+1 330-601-2149', 4, '752521634074012946', '343 Ridgewood Road Apartment 40, Akron, OH 44321, United States', '1990-07-30', 0, 0, 'sugawarahikari10', '2004-03-13', 'suhikari', '2002-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS800896979467', 'Nancy Roberts', 0, '+86 28-200-7908', 2, '849552563925530341', '中国成都市成华区玉双路6号229号47栋', '1992-08-01', 0, 0, 'nancyro', '2012-03-28', 'robenanc', '2013-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS592834771881', '郭震南', 1, '+1 213-490-5558', 2, '378490951817037634', '553 Figueroa Street Apt 32, Los Angeles, CA 90037, United States', '1997-11-30', 0, 0, 'guzhennan', '2010-06-10', 'guozhen', '2005-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS282448768050', 'Doris Turner', 1, '+44 (151) 841 8576', 3, '799050232612844008', 'Flat 30, 696 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1986-12-17', 0, 0, 'turndoris2', '2001-12-23', 'tdoris', '2008-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS673297668565', '應思妤', 1, '+86 158-9782-6266', 3, '095156779381496917', 'Room 26, CR Building, 472 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1994-11-01', 0, 0, 'szeyuying', '2003-12-02', 'ying1230', '2004-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS648878219678', '王子韬', 1, '+44 7299 302745', 4, '114524688753187235', 'No.17 Main building, 768 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1987-11-16', 0, 0, 'wangzitao', '2020-04-20', 'wangzitao', '2003-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS608214871824', '蕭志明', 1, '+81 11-871-9778', 4, '908163497385842193', '日本札幌厚別区上野幌一条二丁目1番6号39階', '1998-02-23', 0, 0, 'siuchiming2', '2011-04-24', 'chimingsiu415', '2015-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS847478486236', '呂頴璇', 1, '+81 80-1720-8560', 1, '069463615427591222', '日本東京中央区銀座三丁目12番16号42階', '1990-07-17', 0, 0, 'wsl', '2002-11-02', 'wingsuenl', '2011-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS503981447782', '卢岚', 1, '+1 212-278-4322', 1, '624958404242839186', '447 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1993-07-14', 0, 0, 'lulan', '2003-01-08', 'lan1118', '2021-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS770022946663', 'Donald Sanders', 0, '+81 70-6244-3968', 3, '020341197939038502', '日本なごやし守山区瀬古東二丁目171番4号21階', '1990-10-07', 0, 0, 'donsanders1019', '2001-07-14', 'sanders913', '2014-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS082718325860', 'Nancy Mendez', 0, '+81 11-130-6263', 2, '521594038099118134', '日本札幌厚別区上野幌一条二丁目1番13号4号室', '1993-10-10', 0, 0, 'mendez6', '2008-06-03', 'mn413', '2016-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS625906599999', '傅裕玲', 0, '+81 90-8743-5530', 1, '464245683506724497', 'Rm. 42, 3-19-14 Shimizu, Kita Ward, Nagoya, Japan', '1987-11-04', 0, 0, 'fuyu', '2006-06-26', 'ylfu69', '2021-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS375569851141', '傅璐', 0, '+44 7954 850634', 1, '325163422579491175', 'Unit 12, Oxford Eco Centre, 307 Sackville St, Manchester, M1 3BB, United Kingdom', '1996-12-14', 0, 0, 'fulu', '2018-09-11', 'lfu', '2006-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS851496031785', '萧子异', 0, '+44 7055 953396', 1, '295380330639647445', 'Flat 8, 394 Hanover St, Liverpool, L1 4AF, United Kingdom', '1990-12-24', 0, 0, 'ziyix530', '2017-09-22', 'xiaoz', '2011-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS665171583317', 'Juanita Perry', 1, '+86 149-9393-9916', 2, '941436034407526901', 'No.23 building, 938 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1987-10-08', 0, 0, 'jperry', '2008-12-18', 'perryj', '2009-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS205542705415', 'Glenn Anderson', 1, '+1 312-216-1535', 1, '717237958794779889', '563 North Michigan Ave Apartment 28, Chicago, IL 60611, United States', '1986-06-23', 0, 0, 'andersonglen', '2012-11-26', 'andglenn', '2013-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS126603531474', 'Marilyn Wallace', 0, '+1 330-436-0489', 1, '004706578039181380', '186 Collier Road Suite 29, Akron, OH 44320, United States', '1992-12-02', 0, 0, 'marilynwa801', '2017-03-28', 'mawal1', '2007-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS783567798711', '岩崎大地', 0, '+86 178-4055-9073', 3, '941203125128630067', '8F, 522 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1991-02-17', 0, 0, 'daichii2019', '2019-03-07', 'iwasadaichi', '2003-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS005170753711', '韦震南', 1, '+86 182-2041-0747', 2, '550945188648876542', 'No.37 building, 162 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1998-04-08', 0, 0, 'wezh', '2004-06-08', 'zhenw', '2011-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS273687513558', '唐子异', 0, '+81 66-160-1533', 0, '177009992534773905', 'Rm. 31, 3-27-3 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1985-01-17', 0, 0, 'zta508', '2009-05-20', 'tangz', '2016-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS051745258837', '中山陽太', 1, '+44 (116) 306 4169', 4, '766563369751994731', 'Block 20, 626 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1995-10-03', 0, 0, 'nakayamay', '2001-10-21', 'ynakay', '2003-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS938031877924', '谷家明', 1, '+1 212-585-9334', 0, '683825021758623288', '521 Fifth Avenue Apartment 36, New York, NY 10017, United States', '1997-07-22', 0, 0, 'kookm', '2014-10-29', 'kkami102', '2009-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS170098282511', 'Joe Ross', 0, '+44 7124 719234', 2, '764446221363457082', 'Flat 36, 592 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1993-11-17', 0, 0, 'rossj1108', '2017-04-18', 'joeros', '2015-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS679867403130', '邹嘉伦', 0, '+81 11-856-0718', 2, '442376587925583062', '50-kai, 6-1-14, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1996-11-07', 0, 0, 'jzo1', '2007-07-08', 'jzou', '2019-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS907839983608', '井上湊', 1, '+86 20-205-4673', 2, '621632493798329548', '中国广州市越秀区中山二路493号华润大厦16室', '1992-08-15', 0, 0, 'minato8', '2015-08-26', 'inoueminato', '2019-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS752744043208', '池田桜', 1, '+86 141-2392-8554', 3, '078232950641998402', '中国广州市越秀区中山二路909号43室', '1985-02-13', 0, 0, 'sakuraik', '2001-05-13', 'sikeda', '2010-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS099153971118', 'Ethel Jordan', 0, '+81 52-260-3023', 1, '833633493771052716', '43-kai, 13 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1985-06-08', 0, 0, 'jordane', '2008-02-11', 'etjord', '2014-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS396101029675', '酒井一輝', 0, '+1 718-394-5599', 1, '372564310434259017', '658 Flatbush Ave Suite 22, Brooklyn, NY 11225, United States', '1988-07-27', 0, 0, 'ikkisakai', '2015-05-09', 'iksaka', '2001-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS405175349576', 'Jason Rose', 1, '+86 28-2251-1184', 4, '046630472573518825', '中国成都市成华区双庆路546号3栋', '1988-11-26', 0, 0, 'jasonr', '2001-07-04', 'rose9', '2011-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS312558886253', '高木陸', 1, '+86 132-6890-7633', 1, '834724019926603171', 'No.6 building, 66 Dong Zhi Men, Dongcheng District, Beijing, China', '1992-06-01', 0, 0, 'rtakagi', '2008-09-26', 'riku1', '2002-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS698374065114', '郑子韬', 0, '+86 179-4091-9142', 3, '454032253675626741', '中国北京市東城区東直門內大街806号41室', '1997-01-14', 0, 0, 'zizhe', '2012-02-09', 'zitaozhe96', '2013-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS324622320170', '松田美月', 1, '+86 146-6208-2854', 2, '927870083349330282', 'No.19 building, 433 Shanhu Rd, Dongguan, China', '1996-08-18', 0, 0, 'mitsuki9', '2001-08-29', 'mitsuki910', '2016-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS685137117334', '程嘉伦', 0, '+81 80-2378-8457', 3, '309113021571014495', '日本おおさかし平野区加美東四丁目9番10号19号室', '1987-09-22', 0, 0, 'jialuncheng', '2016-03-23', 'jialun310', '2019-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS015127292471', 'Steven Jordan', 1, '+86 20-4169-5127', 1, '905940796251635995', '8F, 199 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1993-07-25', 0, 0, 'stejordan1', '2016-04-03', 'stevenjordan918', '2019-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS420381451857', '上田健太', 0, '+1 330-035-6894', 1, '066771648473709380', '877 Fern Street Apt 48, Akron, OH 44307, United States', '1998-05-17', 0, 0, 'uedakent821', '2016-06-20', 'kentau', '2006-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS065767316980', 'Danielle Rogers', 1, '+86 755-678-4130', 1, '758349619005784134', '中国深圳龙岗区布吉镇西环路313号华润大厦13室', '1991-11-14', 0, 0, 'darogers', '2003-12-06', 'danielle2', '2012-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS636640873601', '孙詩涵', 1, '+86 146-8505-8292', 4, '721473620730161371', 'No.29 building, 807 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1993-03-19', 0, 0, 'shihansu71', '2007-01-16', 'sun605', '2012-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS576077560304', '钱晓明', 0, '+44 (151) 942 3404', 3, '917897016670343261', 'No.37 Main building, 742 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1993-12-21', 0, 0, 'qianx1943', '2015-07-15', 'xiaomingqia', '2002-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS264245664549', 'Peter Robertson', 0, '+1 838-044-1755', 4, '473356491437100674', '367 State Street Apt 22, Albany, NY 12203, United States', '1988-07-02', 0, 0, 'peterrobertson', '2016-01-06', 'rpe', '2013-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS508703675769', '木下凛', 0, '+44 (121) 614 5154', 3, '412815177624987556', 'Block 46, 9 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1987-09-09', 0, 0, 'kinoshita1101', '2008-10-28', 'rin5', '2016-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS206390981256', '徐家明', 0, '+81 70-7761-0896', 2, '545285054621285078', '日本東京品川区東五反田五丁目2番15号1階', '1996-03-05', 0, 0, 'kmts', '2016-02-22', 'tskm5', '2011-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS998737022266', '伍國賢', 1, '+1 213-241-6530', 2, '623750310200410717', '122 Figueroa Street Suite 30, Los Angeles, CA 90037, United States', '1995-08-09', 0, 0, 'kwokyin618', '2017-09-10', 'kwokyinng', '2012-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS019245793832', '秦嘉伦', 1, '+81 90-1888-6930', 1, '809927369757812989', '9-kai, 4-9-19 Kamihigashi, Hirano Ward, Osaka, Japan', '1987-01-30', 0, 0, 'jialun3', '2016-04-10', 'jqin', '2001-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS781839364622', '姜岚', 1, '+1 330-944-8810', 2, '371831729165133757', '774 West Market Street 3rd Floor, Akron, OH 44333, United States', '1996-09-03', 0, 0, 'jila1996', '2015-09-06', 'jiang1208', '2014-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS044405568219', '汪學友', 0, '+81 80-8840-3541', 0, '436971785415533062', 'Rm. 7, 1-7-7 Omido, Higashiosaka, Osaka, Japan', '1986-03-17', 0, 0, 'wong908', '2017-08-20', 'hokyauwong', '2003-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS283326169687', '罗震南', 1, '+81 66-620-0179', 4, '203764673094987870', 'Rm. 18, 1-1-2 Deshiro, Nishinari Ward, Osaka, Japan', '1995-01-22', 0, 0, 'luoz', '2002-07-24', 'luozhenn10', '2016-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS452682745185', 'Teresa Rose', 0, '+1 330-817-4660', 3, '908384479715519895', '960 Riverview Road Apartment 12, Akron, OH 44313, United States', '1989-12-11', 0, 0, 'rose44', '2017-10-21', 'roseteresa', '2007-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS990092515697', '橋本葉月', 1, '+86 134-2741-2478', 4, '423343439712311993', 'No.15 building, 116 East Wangfujing Street, Dongcheng District , Beijing, China', '1997-12-21', 0, 0, 'hashimotohazuki', '2008-04-22', 'hhaz', '2020-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS489625861531', '胡子韬', 1, '+81 70-4072-7186', 2, '296196494805465938', '日本おおさかし近江堂一丁目7番3号30階', '1987-05-06', 0, 0, 'hu1', '2008-05-28', 'zitaohu', '2005-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS360616739151', '伊藤悠人', 0, '+86 198-4793-9097', 3, '625251352030874031', 'No.49 building, 216 Jiangnan West Road, Haizhu District, Guangzhou, China', '1992-07-23', 0, 0, 'iy221', '2021-02-24', 'itoyuto', '2002-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS566220188360', '黄子异', 1, '+81 52-673-8303', 2, '597863350364171686', '日本なごやし守山区瀬古東二丁目171番7号17号室', '1997-01-21', 0, 0, 'ziyhuang2001', '2021-11-29', 'huangziyi18', '2011-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS262951351406', '安藤七海', 0, '+86 28-8325-9494', 1, '997977257084984924', 'No.3 building, 158 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1985-11-23', 0, 0, 'annanami1987', '2014-10-21', 'nanamia', '2009-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS152600152150', '鄺慧嫻', 0, '+1 838-766-2589', 4, '520908455493734924', '469 Lark Street Suite 45, Albany, NY 12210, United States', '1989-03-20', 0, 0, 'waihan805', '2010-03-03', 'whkwong5', '2014-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS627107426444', '楊惠妹', 0, '+1 718-726-8780', 3, '519814990684010404', '956 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1998-09-20', 0, 0, 'yeunghm703', '2002-02-14', 'hmyeung', '2010-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS081875957566', 'Howard Allen', 0, '+81 90-8968-8137', 3, '555113906831992272', '3-kai, 8 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1995-11-26', 0, 0, 'allen82', '2020-05-20', 'allenh40', '2017-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS298720596915', 'Thelma Barnes', 1, '+1 330-388-9070', 1, '740208800877579160', '86 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1996-11-05', 0, 0, 'thelma816', '2000-05-30', 'barnes10', '2020-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS242891909187', '小山美月', 0, '+81 74-113-5907', 3, '385463008428748384', '37F, 14 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1988-03-28', 0, 0, 'mitsukiko', '2014-07-19', 'mitsukikoyama425', '2000-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS199095579066', '孫俊宇', 1, '+81 80-9538-3698', 2, '305911203962224871', '1F, 5-19-9 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1989-03-24', 0, 0, 'cyh', '2010-04-11', 'hsuan3', '2013-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS295425440136', '罗震南', 1, '+81 11-988-6780', 0, '012895839057063155', '日本札幌清田区真栄四条五丁目19番6号22号室', '1986-05-08', 0, 0, 'zhennanluo', '2021-08-27', 'zhennan2', '2007-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS810349399340', '曾詩涵', 0, '+86 175-8674-7493', 4, '226577249994055909', 'Room 43, 219 Middle Huaihai Road, Huangpu District, Shanghai, China', '1988-08-13', 0, 0, 'zeng322', '2010-02-28', 'zengshiha', '2020-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS612568478829', '史岚', 1, '+86 140-9368-0260', 3, '974293332615809041', '中国成都市锦江区红星路三段744号12号楼', '1993-10-09', 0, 0, 'lanshi3', '2010-07-19', 'sl68', '2005-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS680069708919', '姜云熙', 0, '+81 80-6420-4537', 1, '331294896728796734', 'Rm. 24, 1 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1995-04-13', 0, 0, 'jiang1003', '2021-04-28', 'jyunxi', '2013-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS622222655926', '樂明', 1, '+86 28-515-2890', 3, '876498786274859818', '中国成都市成华区双庆路908号华润大厦45室', '1990-10-16', 0, 0, 'minglok', '2000-03-20', 'minlok01', '2011-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS501739517047', '阮麗欣', 1, '+81 11-886-3483', 1, '182883055972337099', '45-kai, 2-1-20 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1992-10-10', 0, 0, 'yuen1950', '2014-04-19', 'yuenlaiyan1', '2010-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS543050990263', 'Harry Spencer', 1, '+81 80-9966-2584', 3, '117607304511795881', '日本なごやし瑞穂区河岸町四丁目20番10号22階', '1993-04-17', 0, 0, 'sharry', '2008-03-06', 'sharry', '2017-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS019844895003', 'Bruce West', 0, '+81 70-2403-7951', 2, '667776939673965095', 'Rm. 49, 1-5-8, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1987-07-13', 0, 0, 'bruce714', '2015-02-19', 'westbru', '2001-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS352436982496', '邹云熙', 1, '+1 312-446-3280', 2, '801451301782137882', '60 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1997-01-28', 0, 0, 'yunxizou67', '2003-06-17', 'yunxizou', '2006-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS425025709700', 'Alan Gutierrez', 1, '+81 90-3574-0725', 3, '142422777778115662', 'Rm. 4, 16 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1994-06-22', 0, 0, 'agutierrez', '2008-03-14', 'guala', '2016-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS654856498411', '熊岚', 0, '+1 330-776-9869', 3, '925698075072897170', '934 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1985-07-06', 0, 0, 'lanxiong', '2007-02-22', 'xiongl', '2015-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS115661031124', '内田結翔', 1, '+44 7898 168611', 2, '387239459159132144', 'Unit 19, Oxford Eco Centre, 943 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1998-10-11', 0, 0, 'uchidayuito928', '2013-01-16', 'yuituchida', '2012-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS795752927344', '孔睿', 0, '+86 151-5365-6564', 4, '827139838436135411', 'No.48 building, 476 Jianxiang Rd, Pudong, Shanghai, China', '1985-04-09', 0, 0, 'ruikong', '2007-05-23', 'ruik', '2010-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS066584348558', '陈杰宏', 1, '+1 838-327-6164', 0, '342689636145395216', '484 Central Avenue Suite 28, Albany, NY 12206, United States', '1998-03-08', 0, 0, 'cjieho', '2007-05-24', 'chenjiehong', '2016-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS797341287484', '于子韬', 1, '+1 330-610-7790', 4, '426185830064592256', '655 West Market Street Suite 35, Akron, OH 44333, United States', '1991-07-14', 0, 0, 'yu08', '2020-07-10', 'yuzitao', '2016-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS442601091568', '李頴思', 0, '+1 718-429-5655', 2, '511487218253962113', '422 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1992-07-15', 0, 0, 'wingsze6', '2019-04-17', 'lws', '2017-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS065798924600', '鄭明詩', 1, '+81 74-939-6056', 2, '272403236788637763', '1F, 9 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-07-07', 0, 0, 'mingszec62', '2020-09-10', 'chengmingsze8', '2014-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS705942637281', '苏宇宁', 1, '+86 21-9442-2065', 3, '467594267373479342', '36F, 225 Binchuan Rd, Minhang District, Shanghai, China', '1985-06-22', 0, 0, 'syuning731', '2001-06-29', 'suyuning', '2017-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS884420483819', '叶岚', 1, '+44 (151) 152 3157', 1, '919005373380071314', 'Block 19, 244 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1996-10-23', 0, 0, 'ye64', '2006-04-24', 'lanye1', '2020-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS866199954885', '唐震南', 1, '+81 70-4174-8243', 2, '593914079776286093', '日本札幌白石区菊水三条五丁目2番5号20階', '1990-07-16', 0, 0, 'zhenntang321', '2012-08-31', 'tang11', '2019-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS319728067390', '梅霆鋒', 1, '+1 212-383-0196', 4, '667913813811459755', '236 Fifth Avenue Suite 44, New York, NY 10017, United States', '1988-04-20', 0, 0, 'timu10', '2009-08-21', 'tingfung00', '2020-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS977363441603', 'Juan Webb', 0, '+86 21-571-2187', 3, '512659391518964511', 'Room 5, CR Building, 17 Ganlan Rd, Pudong, Shanghai, China', '1998-06-28', 0, 0, 'juanwebb', '2006-02-09', 'wjuan', '2021-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS404254317753', '麥玲玲', 1, '+81 74-853-1363', 4, '631011420512383355', '日本ならし学園南三丁目9番9号7階', '1995-02-19', 0, 0, 'makll', '2011-06-06', 'llmak1120', '2001-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS507079529164', '小島光', 1, '+1 330-389-8989', 4, '383485915974136221', '396 West Market Street Apt 44, Akron, OH 44333, United States', '1986-11-22', 0, 0, 'hikarko', '2001-06-19', 'hkojim5', '2009-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS081811750073', '石田陽菜', 0, '+86 760-7197-4431', 0, '547836518306544765', '中国中山紫马岭商圈中山五路562号44室', '1992-05-04', 0, 0, 'hinais', '2004-03-19', 'ih01', '2017-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS529837994381', '钟睿', 0, '+44 5246 381804', 2, '625358580559684980', 'No.48 Main building, 433 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1986-05-14', 0, 0, 'zhongrui', '2014-02-11', 'ruiz1112', '2011-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS814654032505', 'Kathy Murray', 0, '+81 90-5271-6347', 1, '452744634479865654', '日本おおさかし平野区加美東四丁目9番12号46号室', '1994-12-25', 0, 0, 'kathym', '2017-06-02', 'murray3', '2007-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS213983030909', '坂本蓮', 0, '+81 80-1565-2514', 1, '693588697760416825', '日本東京千代田区丸の内一丁目6番13号1階', '1989-07-21', 0, 0, 'rsakamoto8', '2014-07-10', 'sakaren', '2000-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS342177637021', '向安琪', 1, '+81 90-6370-6560', 1, '932763247689098701', '日本なごやし守山区瀬古東二丁目171番16号17号室', '1993-09-30', 0, 0, 'xianganq9', '2005-09-12', 'anqi5', '2010-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS821848540457', '松田拓哉', 1, '+86 146-4709-9110', 2, '091774197338426478', '中国中山天河区大信商圈大信南路17号23号楼', '1994-02-07', 0, 0, 'tmatsuda707', '2007-05-07', 'takuya1', '2021-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS716248201627', '卢秀英', 1, '+86 132-4462-7296', 1, '297170345735785489', '中国广州市白云区小坪东路585号华润大厦12室', '1994-01-21', 0, 0, 'xiul', '2011-06-19', 'xiul', '2012-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS372642341441', '宣家輝', 0, '+1 718-464-0553', 3, '975085597161838607', '607 Flatbush Ave Suite 31, Brooklyn, NY 11225, United States', '1996-09-23', 0, 0, 'kafai608', '2010-06-12', 'kfhsuan505', '2008-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS853494759523', '後藤海斗', 0, '+1 614-444-7411', 4, '324420211520265749', '210 Tremont Road Apt 31, Columbus, GA 43212, United States', '1986-08-02', 0, 0, 'gotokaito5', '2010-08-27', 'gkaito', '2012-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS720239837371', 'Nicholas Daniels', 1, '+86 28-3444-4894', 3, '472776154061961604', '中国成都市锦江区人民南路四段201号华润大厦16室', '1990-09-12', 0, 0, 'nichda9', '2012-08-21', 'danielsnicholas1974', '2006-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS586926518180', '桜井海斗', 0, '+86 149-8071-9806', 1, '917640255229205109', '22F, 834 028 County Rd, Yanqing District, Beijing, China', '1993-10-03', 0, 0, 'sakuraikait', '2011-01-15', 'kaito1107', '2019-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS266780505996', '新井百恵', 0, '+86 139-9414-3004', 1, '980066778553976797', '中国北京市海淀区清河中街68号902号10栋', '1990-04-02', 0, 0, 'aramomoe', '2011-04-25', 'aramom', '2001-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS462708859435', '杜發', 0, '+81 70-0444-4423', 2, '120155112781215753', '45-kai, 2-1-12 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1990-03-28', 0, 0, 'tofat', '2003-03-14', 'tofa', '2010-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS776261303354', '韩嘉伦', 1, '+86 755-877-9440', 2, '943173500682329969', 'Room 46, 788 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1988-04-06', 0, 0, 'jialunhan', '2021-10-15', 'jialunhan9', '2018-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS338979769068', 'Ryan Guzman', 0, '+44 5639 652959', 2, '783828332509457992', 'Unit 28, Oxford Eco Centre, 690 Pollen Street, London, W1S 1NG, United Kingdom', '1992-05-26', 0, 0, 'ryan10', '2000-07-09', 'ryanguzman42', '2017-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS671040327757', '吕致远', 1, '+86 160-4792-8918', 2, '092596598786753077', '17F, 643 Jingtian East 1st St, Futian District, Shenzhen, China', '1989-02-13', 0, 0, 'luzhi1', '2008-04-29', 'lzhiyuan', '2006-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS026709950006', '谷國權', 0, '+81 70-8845-3581', 4, '814547423266480314', '日本ならし西大寺赤田町一丁目7番12号47号室', '1998-07-22', 0, 0, 'kookk1', '2017-02-10', 'koo618', '2003-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS408988602443', '任嘉伦', 1, '+44 (20) 5522 7298', 2, '735029413121570811', 'No.37 Main building, 339 Hanover Street, London, W1S 1YD, United Kingdom', '1998-01-04', 0, 0, 'renj4', '2010-03-10', 'jialun120', '2004-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS148069704162', '山口拓哉', 0, '+81 52-634-2662', 4, '224699246977986716', '日本なごやし守山区瀬古東二丁目171番12号21階', '1998-03-23', 0, 0, 'yamt75', '2010-09-20', 'tayamaguchi8', '2020-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS796848662189', '西村健太', 1, '+44 5021 661206', 0, '402101698994955125', 'No.40 Main building, 478 Hanover St, Liverpool, L1 4AF, United Kingdom', '1992-12-03', 0, 0, 'nishk10', '2002-04-17', 'nishik912', '2004-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS958205922732', '廖裕玲', 0, '+86 179-3162-6182', 3, '631494724609768264', '中国北京市延庆区028县道583号华润大厦32室', '1986-08-01', 0, 0, 'liao1981', '2015-12-17', 'liaoyl67', '2014-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS201118420381', '翁青雲', 1, '+86 20-767-2274', 2, '368988185596840449', '中国广州市白云区机场路棠苑街五巷825号华润大厦46室', '1993-02-15', 0, 0, 'cwyung75', '2010-08-04', 'yucw7', '2019-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS461441683903', '坂本拓哉', 0, '+81 11-853-1883', 2, '741825141960621643', '22-kai, 6-1-15, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1988-01-03', 0, 0, 'takusak3', '2005-06-02', 'sakamototaku', '2017-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS765884575142', 'Louise Tucker', 1, '+81 3-2551-7646', 3, '250388051824314990', '日本東京中央区銀座三丁目12番19号1号室', '1992-04-18', 0, 0, 'tucker02', '2009-09-26', 'tuckerlouise', '2020-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS443163843564', '菊地葵', 0, '+86 755-834-5825', 2, '833664985502507670', 'Room 46, CR Building, 82 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1991-01-31', 0, 0, 'kikua', '2014-07-28', 'kikuchiaoi2', '2010-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS438175295198', '韩璐', 1, '+81 70-7304-7556', 1, '150661062775084648', '日本東京港区東新橋一丁目5番1号32号室', '1988-09-23', 0, 0, 'luhan', '2012-01-25', 'luha64', '2006-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS497410023998', 'Nathan Kennedy', 0, '+86 28-735-0522', 0, '492230816875169731', '中国成都市成华区玉双路6号354号华润大厦40室', '1986-04-09', 0, 0, 'kennatha', '2008-10-22', 'kennenath', '2012-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS080959555420', '常杰宏', 1, '+86 755-679-8628', 1, '739228760764462020', 'Room 38, CR Building, 132 Shennan Ave, Futian District, Shenzhen, China', '1996-07-21', 0, 0, 'chang519', '2014-01-15', 'chajieh', '2010-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS091569854102', '冯岚', 1, '+44 (161) 920 4025', 1, '010253778310286199', 'Block 14, 171 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-08-04', 0, 0, 'lanfeng', '2006-05-08', 'lanfeng', '2006-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS855699661433', '方岚', 1, '+44 (151) 542 0861', 0, '152301924343440742', 'No.13 Main building, 693 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1994-02-17', 0, 0, 'lafang4', '2016-10-30', 'fangl', '2009-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS940652744562', '清水玲奈', 1, '+81 80-3191-1441', 0, '443056021695191029', 'Rm. 50, 17 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-12-06', 0, 0, 'rena59', '2003-02-03', 'rshimi', '2012-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS772755097621', 'Steven Crawford', 1, '+81 70-6048-2869', 4, '759845304374848304', 'Rm. 45, 3-19-12 Shimizu, Kita Ward, Nagoya, Japan', '1996-12-18', 0, 0, 'cste', '2009-02-28', 'steven8', '2006-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS928912253238', '任霆鋒', 0, '+86 755-816-9282', 3, '626604446860717012', 'Room 6, CR Building, 152 Shennan Ave, Futian District, Shenzhen, China', '1993-03-12', 0, 0, 'yamtingfung', '2013-09-01', 'tingfung407', '2011-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS642908268969', 'Dawn Henderson', 0, '+81 90-9795-1379', 1, '932836725954731671', 'Rm. 36, 2-3-5 Yoyogi, Shibuya-ku, Tokyo, Japan', '1993-11-27', 0, 0, 'dawn2', '2016-06-30', 'dawnhende', '2002-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS815608894305', '林秀英', 1, '+44 (151) 521 9041', 0, '294895507443919171', 'Unit 26, Oxford Eco Centre, 598 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1992-01-31', 0, 0, 'linxiuying', '2007-08-21', 'lin922', '2008-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS972392550544', '江梓晴', 1, '+86 21-1186-2923', 2, '602553017136391669', 'Room 16, CR Building, 123 Hongqiao Rd., Xu Hui District, Shanghai, China', '1995-11-25', 0, 0, 'kongtszch56', '2006-11-23', 'kotc', '2018-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS322519785321', 'Bradley Vasquez', 1, '+81 70-6207-0570', 2, '515005396483375208', '7F, 5-2-3 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1994-09-06', 0, 0, 'vasquez7', '2012-07-31', 'bravasq', '2011-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS497459099043', '駱志明', 1, '+1 213-205-5925', 1, '789032463225809886', '935 Wall Street Apartment 13, Los Angeles, CA 90003, United States', '1986-06-09', 0, 0, 'lokcm66', '2015-01-10', 'cml328', '2015-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS787199480034', 'Shannon Tucker', 1, '+81 52-198-9684', 3, '215701428122059622', '日本なごやし守山区瀬古東二丁目171番9号24号室', '1991-10-03', 0, 0, 'tuckershannon', '2007-12-01', 'st6', '2021-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS182021209980', '横山葵', 1, '+81 70-2632-8025', 2, '529692893600915655', '日本おおさかし西成区出城一丁目1番16号47号室', '1998-02-13', 0, 0, 'aoiyo901', '2018-01-23', 'aoiyo129', '2005-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS260463145860', '傅詩涵', 0, '+81 74-763-3518', 3, '351845916831536847', '日本ならし大和郡山市本庄町一丁目1番15号12階', '1996-11-19', 0, 0, 'sfu324', '2008-10-13', 'fushih', '2012-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS957308679217', 'Justin Bailey', 1, '+44 (121) 031 1782', 3, '606025036761813712', 'Unit 26, Oxford Eco Centre, 987 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1988-10-30', 0, 0, 'justinb9', '2017-03-03', 'justin8', '2013-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS759372800491', '方子韬', 0, '+86 755-7507-9965', 3, '539379267827831062', '中国深圳罗湖区清水河一路867号40栋', '1991-06-03', 0, 0, 'zitao53', '2021-09-10', 'zitao329', '2000-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS583291578840', '汪宇宁', 1, '+81 52-801-6276', 2, '877069296297224236', 'Rm. 44, 2-5-1 Chitose, Atsuta Ward, Nagoya, Japan', '1987-10-26', 0, 0, 'wang404', '2015-05-05', 'wang8', '2017-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS024699469998', '林秀英', 0, '+44 (151) 510 3479', 0, '690994573088278169', 'Flat 1, 994 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1992-09-21', 0, 0, 'xiuyinglin', '2009-01-05', 'xl8', '2017-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS778309327645', '盧安娜', 0, '+81 66-464-4874', 1, '175733161988055209', '日本おおさかし東住吉区東田辺三丁目27番14号42階', '1996-07-20', 0, 0, 'onlo8', '2009-05-04', 'lonn', '2015-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS828614171301', '戚天樂', 0, '+1 614-780-6203', 2, '345724246811938163', '76 East Alley 3rd Floor, Columbus, GA 43201, United States', '1998-10-02', 0, 0, 'chtinlok', '2007-08-23', 'tinlok1980', '2014-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS926729783081', '村上聖子', 0, '+86 10-5070-5680', 4, '072439005911463738', '4F, 993 028 County Rd, Yanqing District, Beijing, China', '1991-05-04', 0, 0, 'muraksei', '2014-03-05', 'murakamiseiko', '2013-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS898290435219', 'Anna Reyes', 1, '+44 7209 209300', 2, '352481381037247321', 'Flat 6, 779 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1992-10-17', 0, 0, 'reyesanna2', '2004-08-05', 'annare5', '2001-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS046230813924', '佐藤翼', 1, '+86 21-7657-4705', 0, '374833407284266411', '25F, 460 Ganlan Rd, Pudong, Shanghai, China', '1999-01-03', 0, 0, 'satotsubasa5', '2014-05-27', 'tsusato', '2002-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS619406283361', '姜晓明', 1, '+81 11-765-6671', 1, '025948488828976550', '10-kai, 5-2-11 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-09-20', 0, 0, 'jiangxiaoming10', '2013-10-16', 'jiaxiao63', '2019-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS035898958890', '劉秀文', 1, '+86 175-2131-1691', 3, '872402875568505210', 'Room 24, 483 FuXingMenNei Street, XiCheng District, Beijing, China', '1991-08-28', 0, 0, 'lausauman5', '2006-12-25', 'lausm1017', '2000-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS353167946655', '石井樹', 0, '+81 90-7708-0198', 1, '003046444922443451', '2-kai, 2-1-4 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-08-28', 0, 0, 'itsukiishii', '2002-03-30', 'isi4', '2001-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS784055931752', '宮崎花', 0, '+44 (1223) 36 9195', 2, '897375536245475366', 'Block 18, 407 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1991-04-30', 0, 0, 'miyahana9', '2003-10-23', 'miyazakihana', '2021-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS283438179894', '菅原紗良', 0, '+44 5076 070188', 3, '104781437157354005', 'Block 11, 779 Mosley St, Manchester, M2 3AQ, United Kingdom', '1987-06-24', 0, 0, 'sara40', '2005-02-16', 'sugawarasa1124', '2015-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS519963587082', '孔震南', 1, '+86 28-441-0027', 1, '934080137928981359', 'No.18 building, No. 816, Shuangqing Rd, Chenghua District, Chengdu, China', '1994-06-05', 0, 0, 'zhennan3', '2015-06-28', 'zhennan3', '2002-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS511229230432', '河野絢斗', 0, '+81 66-487-3990', 1, '968731622210064957', '47-kai, 1-1-16 Deshiro, Nishinari Ward, Osaka, Japan', '1993-05-27', 0, 0, 'ayatok', '2011-03-17', 'konoayat', '2000-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS169075093694', '薛子韬', 0, '+81 11-609-3877', 3, '857340412244371685', '日本札幌中央区宮の森四条六丁目1番1号19号室', '1997-12-08', 0, 0, 'xzit1022', '2006-02-27', 'xuzitao', '2011-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS468606142767', '林晓明', 1, '+86 197-2910-8734', 2, '994248465328571553', 'No.20 building, 624 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1990-08-26', 0, 0, 'xiaolin1974', '2005-01-22', 'xial', '2013-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS501474053329', '周俊宇', 1, '+81 90-4950-3194', 0, '076989264099494554', '日本ならし学園南三丁目9番14号2号室', '1985-01-19', 0, 0, 'chunyu9', '2009-05-06', 'chocy9', '2005-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS981233322322', '木村葵', 0, '+86 152-9155-8298', 1, '568297449004935186', '中国深圳龙岗区学园一巷741号华润大厦33室', '1990-11-06', 0, 0, 'aoik5', '2021-09-08', 'kimura2', '2000-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS644851094546', '宮崎絢斗', 1, '+86 167-6708-4648', 0, '453903821546123876', 'Room 21, CR Building, 169 Shanhu Rd, Dongguan, China', '1996-01-25', 0, 0, 'ayamiyazaki', '2007-08-08', 'miyazakiayat608', '2014-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS199367075950', '廖子异', 0, '+81 3-4667-9354', 3, '816663030170259081', 'Rm. 28, 1-5-6, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1986-08-30', 0, 0, 'zli', '2001-09-28', 'liaoz', '2017-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS194715773440', '戴國明', 1, '+81 3-6417-2697', 3, '537376106493776981', '日本東京渋谷区代々木二丁目3番8号39階', '1987-03-26', 0, 0, 'daikm', '2003-04-19', 'kmd2', '2011-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS167643977707', '廖致远', 0, '+1 718-901-3097', 1, '538152250442684332', '254 Nostrand Ave Apt 42, Brooklyn, NY 11216, United States', '1993-10-24', 0, 0, 'liaoz', '2012-06-24', 'lzhiyuan', '2003-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS041769378712', '三浦翼', 1, '+1 212-002-3728', 1, '624064432472634253', '662 Fifth Avenue Apt 16, New York, NY 10017, United States', '1996-08-30', 0, 0, 'tsubasamiura1129', '2017-11-06', 'tsubasa2', '2019-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS542199365575', '魏璐', 0, '+86 150-4838-6143', 2, '709040125455240034', '中国北京市西城区西長安街868号16楼', '1997-01-16', 0, 0, 'welu07', '2015-05-06', 'wei1123', '2006-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS938873420196', '蒋嘉伦', 1, '+44 (1223) 04 1357', 1, '423034944344398042', 'Block 12, 339 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1990-07-29', 0, 0, 'jiangj', '2009-08-25', 'jialunjiang819', '2010-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS887903095718', '薛裕玲', 1, '+1 838-923-3134', 4, '699141358950043273', '653 Central Avenue Apartment 24, Albany, NY 12205, United States', '1990-12-10', 0, 0, 'yls', '2013-03-20', 'sityuling2013', '2019-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS959258055337', '唐杰宏', 0, '+81 66-908-3515', 2, '334213802141057226', 'Rm. 13, 3-27-16 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1985-07-18', 0, 0, 'tangj1992', '2019-04-17', 'jiehong1', '2019-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS935430520650', '邱慧嫻', 0, '+81 90-8123-6376', 1, '029833543969007140', '48-kai, 4-9-4 Kamihigashi, Hirano Ward, Osaka, Japan', '1987-03-02', 0, 0, 'yauwh', '2007-09-25', 'waihayau223', '2018-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS804065607517', '韓惠敏', 0, '+81 52-606-5638', 2, '268153007677664571', '34F, 2-5-14 Chitose, Atsuta Ward, Nagoya, Japan', '1985-08-21', 0, 0, 'han8', '2008-03-16', 'hanwaiman44', '2010-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS043075151645', '島田蓮', 0, '+81 80-2880-4683', 4, '839300213179290032', '13-kai, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-10-25', 0, 0, 'resh', '2003-05-01', 'renshi', '2021-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS453561142871', '薛發', 0, '+81 66-615-3081', 0, '091761767636538231', '日本おおさかし西成区天神ノ森二丁目1番13号36号室', '1995-03-22', 0, 0, 'sit8', '2021-03-14', 'fsit', '2017-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS463680541732', '毛睿', 1, '+81 52-479-3415', 3, '434515384927393354', '30F, 2-5-2 Chitose, Atsuta Ward, Nagoya, Japan', '1988-07-29', 0, 0, 'ruimao', '2017-04-29', 'mao3', '2015-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS912242649915', '高田拓哉', 1, '+81 80-9629-6330', 4, '287080655407192622', 'Rm. 50, 2-3-11 Yoyogi, Shibuya-ku, Tokyo, Japan', '1987-11-11', 0, 0, 'ttakuya528', '2009-07-31', 'takadata1001', '2013-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS982515053245', 'Gary Mason', 1, '+86 20-8766-3735', 2, '360125674290856435', '中国广州市越秀区中山二路903号39室', '1987-05-22', 0, 0, 'garmason3', '2008-04-26', 'garmason70', '2004-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS641043029629', '顾云熙', 1, '+81 90-5042-9224', 4, '508546131376186506', '42F, 3-27-7 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1999-01-27', 0, 0, 'yunxi54', '2003-02-02', 'yunxigu5', '2013-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS255266081033', '千葉瑛太', 0, '+81 52-916-9007', 3, '954183022988153341', '日本なごやし瑞穂区河岸町四丁目20番12号14号室', '1992-09-28', 0, 0, 'eitachiba', '2000-04-13', 'eitchiba', '2009-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS012955573865', 'Thelma Chavez', 0, '+81 3-8207-7686', 3, '551405017213111734', '日本東京中央区銀座三丁目12番8号15階', '1989-07-17', 0, 0, 'thelmchave', '2010-10-25', 'chavez3', '2014-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS795894354953', '後藤海斗', 0, '+81 90-7621-4362', 3, '396971263268874538', 'Rm. 48, 3-9-8 Gakuenminami, Nara, Japan', '1985-01-03', 0, 0, 'gotokaito19', '2020-04-13', 'kaitg', '2015-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS697573451927', 'Paul Schmidt', 0, '+86 769-664-2493', 2, '752153625937416050', 'No.19 building, 893 Dongtai 5th St, Dongguan, China', '1988-04-12', 0, 0, 'schmidt925', '2018-11-15', 'schmidtpaul518', '2018-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS657601382217', 'Timothy Mills', 1, '+86 10-338-4678', 0, '790405394081085132', '36F, 729 Dong Zhi Men, Dongcheng District, Beijing, China', '1997-01-27', 0, 0, 'millstimothy', '2013-07-28', 'mt6', '2008-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS620064283317', '河野桜', 0, '+86 198-1323-5239', 1, '107755452763374860', '中国成都市成华区玉双路6号543号40楼', '1986-02-06', 0, 0, 'sakura2', '2013-06-29', 'sakono', '2000-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS502801980376', '竹内一輝', 0, '+81 70-8285-0221', 1, '151908708606748917', 'Rm. 18, 3-15-6 Ginza, Chuo-ku, Tokyo, Japan', '1993-08-31', 0, 0, 'takeuchii', '2009-07-29', 'takeuchiikki3', '2012-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS581227249555', '大塚紗良', 0, '+86 138-1906-6207', 0, '977818125003093087', '42F, 212 Dong Zhi Men, Dongcheng District, Beijing, China', '1995-01-08', 0, 0, 'sotsuka', '2008-12-24', 'otssa', '2010-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS462202769067', '江睿', 1, '+81 70-6235-5427', 3, '992114715652616083', '40-kai, 2-1-15 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1990-03-18', 0, 0, 'rujiang', '2007-04-10', 'rui6', '2007-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS419932785437', '毛云熙', 1, '+86 181-2879-3014', 4, '035181042201033888', 'Room 33, CR Building, 644 Kengmei 15th Alley, Dongguan, China', '1994-04-22', 0, 0, 'mao1997', '2015-02-21', 'yunxi5', '2010-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS156043748886', '安藤陽菜', 0, '+86 150-1443-8633', 3, '546502861556382421', '中国北京市东城区东单王府井东街338号29栋', '1996-12-02', 0, 0, 'hinaando', '2008-03-04', 'andoh2005', '2006-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS288541978477', '鄭浩然', 0, '+81 11-892-8021', 1, '822609341028563757', '日本札幌中央区宮の森四条六丁目1番18号13号室', '1988-05-23', 0, 0, 'hoyin10', '2002-08-04', 'hoyin86', '2008-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS473166172116', 'Alfred Gonzalez', 1, '+86 769-6946-2063', 2, '317496241413059852', '中国东莞东泰五街355号9室', '1998-11-10', 0, 0, 'alfred10', '2011-10-12', 'agon', '2004-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS496771531626', 'Leslie Watson', 0, '+81 74-119-7943', 1, '536988647782168491', '日本ならし大和郡山市本庄町一丁目1番7号2号室', '1986-11-26', 0, 0, 'watsonl1945', '2015-03-14', 'watsonleslie', '2005-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS713573189389', '葉慧琳', 1, '+86 10-1031-4050', 2, '985071486892899105', '中国北京市延庆区028县道167号32栋', '1993-11-19', 0, 0, 'yipwailam', '2014-08-27', 'wailamy5', '2021-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS758017104966', '山下翼', 0, '+1 213-475-3227', 0, '379283417113999595', '392 Figueroa Street Apt 50, Los Angeles, CA 90037, United States', '1994-12-27', 0, 0, 'tya', '2011-08-18', 'yamashitats', '2011-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS678101411108', '廖惠敏', 1, '+44 7569 559879', 1, '514893498128090472', 'No.6 Main building, 367 Maddox Street, London, W1S 1PU, United Kingdom', '1997-02-08', 0, 0, 'liaowm', '2015-01-10', 'wml', '2011-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS745271466442', '顾詩涵', 0, '+86 179-8517-1629', 2, '804163197260616602', 'Room 10, CR Building, 248 Ganlan Rd, Pudong, Shanghai, China', '1992-03-03', 0, 0, 'shigu729', '2001-08-05', 'shihgu120', '2011-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS031191025527', '馬慧嫻', 1, '+44 5941 751383', 2, '892524373737718539', 'Flat 21, 860 Regent Street, London, W1B 2LX, United Kingdom', '1986-12-24', 0, 0, 'mawaihan418', '2004-12-06', 'whma', '2018-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS154595888615', '武田凛', 0, '+44 (1223) 76 9121', 1, '566407053904568419', 'Block 31, 513 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1987-09-09', 0, 0, 'rintak', '2001-12-30', 'takri8', '2005-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS786738688938', '陆震南', 1, '+86 10-359-7237', 2, '320461571393957358', '中国北京市東城区東直門內大街471号华润大厦32室', '1999-03-01', 0, 0, 'lu1111', '2012-01-11', 'zhlu', '2000-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS325554567981', '戴俊宇', 0, '+86 755-7186-7462', 3, '196384413421037458', 'No.50 building, 456 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1986-05-03', 0, 0, 'daichunyu', '2017-02-07', 'daicy101', '2006-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS269234705349', 'Valerie Watson', 1, '+81 52-383-5220', 4, '714924321321391511', '日本なごやし熱田区千年二丁目5番10号24号室', '1989-08-17', 0, 0, 'vwa', '2010-09-13', 'valewats', '2004-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS821433216516', 'Lucille Campbell', 0, '+44 (116) 346 5542', 2, '055537149597740408', 'Block 22, 359 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1991-02-19', 0, 0, 'lucillecampbell', '2011-11-23', 'campbelllucille6', '2006-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS186569927445', 'Kyle Fisher', 0, '+44 5841 783361', 3, '500683258915248060', 'Block 43, 422 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1987-08-29', 0, 0, 'fisherk', '2021-07-21', 'kfi325', '2020-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS884881220281', '陶天榮', 0, '+81 52-704-3209', 3, '954673767059441727', '18F, 3-19-19 Shimizu, Kita Ward, Nagoya, Japan', '1993-11-22', 0, 0, 'twtao', '2010-05-03', 'twt', '2016-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS491033005621', 'Lucille Watson', 0, '+86 21-444-9065', 1, '003785842787910839', 'Room 43, 915 Hongqiao Rd., Xu Hui District, Shanghai, China', '1994-01-21', 0, 0, 'watsonluc2', '2006-11-21', 'wal', '2012-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS035743570623', '高田紗良', 0, '+44 5890 410275', 1, '481712914863290539', 'Block 49, 454 New Street, Birmingham, B2 4DB, United Kingdom', '1997-05-21', 0, 0, 'saratakada501', '2018-07-19', 'tsara', '2002-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS277372594304', '田致远', 0, '+44 (151) 651 4690', 3, '646863565311417804', 'No.48 Main building, 690 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1991-12-09', 0, 0, 'zhiyuti', '2005-04-13', 'ztian', '2002-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS589647351503', 'Henry Price', 1, '+81 70-0701-9746', 1, '713738057267152316', '日本ならし学園南三丁目9番9号28階', '1989-06-21', 0, 0, 'prih', '2018-05-26', 'henry506', '2002-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS856610780792', 'Kenneth Reynolds', 0, '+44 5867 364053', 3, '689033251036934424', 'No.42 Main building, 941 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1985-08-15', 0, 0, 'reynkenneth', '2007-03-15', 'reynoldskenneth', '2014-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS851569443247', '井上大地', 1, '+1 718-838-4961', 2, '841440690322620100', '907 Flatbush Ave Apartment 39, Brooklyn, NY 11225, United States', '1994-04-23', 0, 0, 'daiinoue', '2015-09-21', 'daichi10', '2020-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS513417993803', '戴子异', 0, '+81 52-227-9054', 4, '129765347269093672', '19F, 5 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-08-08', 0, 0, 'ziyidai', '2008-01-16', 'daiziyi1213', '2003-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS155323235341', 'Ashley Kim', 0, '+86 769-9984-4034', 0, '563240062564813623', '中国东莞坑美十五巷881号华润大厦39室', '1998-09-22', 0, 0, 'kiashley', '2020-04-20', 'ask', '2004-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS174296820318', '邹睿', 0, '+81 70-9482-0571', 4, '868745337103124695', '22-kai, 1-5-18, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1986-07-16', 0, 0, 'rui2', '2014-05-11', 'ruizou', '2000-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS479632382441', '小山百花', 0, '+86 10-2148-8394', 2, '931363240644493044', 'No.42 building, 448 Sanlitun Road, Chaoyang District, Beijing, China', '1996-08-05', 0, 0, 'momokakoyama', '2011-08-05', 'momokakoyam71', '2018-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS818014868563', '平野葵', 0, '+86 197-4129-3940', 1, '788314256650382625', '中国成都市成华区二仙桥东三路752号华润大厦19室', '1998-10-07', 0, 0, 'hiraoi00', '2002-03-26', 'hirano1940', '2014-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS985971236722', '今井百花', 1, '+44 5763 186537', 1, '347589906340224999', 'No.26 Main building, 342 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1995-07-10', 0, 0, 'imaimomoka1989', '2018-09-22', 'imamom1', '2008-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS914174973277', 'Miguel Howard', 1, '+86 181-7004-5383', 2, '172099054092612854', '中国中山紫马岭商圈中山五路105号28楼', '1987-02-16', 0, 0, 'mihoward', '2004-01-23', 'mihowa6', '2017-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS231947390127', '高家玲', 1, '+81 80-3828-7500', 3, '879109874023225557', '20F, 1-7-2 Saidaiji Akodacho, Nara, Japan', '1993-06-06', 0, 0, 'kakaling', '2016-10-05', 'kkl63', '2010-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS375289317233', '梁慧嫻', 0, '+86 755-3281-7695', 2, '276479685568024142', '中国深圳福田区深南大道215号19室', '1990-01-20', 0, 0, 'waihan70', '2010-06-02', 'whl1001', '2012-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS571718560937', '鈴木光', 1, '+81 66-339-7389', 0, '254121837402049560', '40-kai, 1-7-12 Omido, Higashiosaka, Osaka, Japan', '1990-06-27', 0, 0, 'hikarsu', '2019-03-07', 'hsuzu', '2008-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS454438247595', '吕詩涵', 1, '+81 70-5763-5297', 4, '574982973390175374', '日本なごやし北区清水三丁目19番16号47号室', '1995-09-17', 0, 0, 'shihan8', '2005-02-23', 'lus', '2008-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS044302035080', '罗安琪', 0, '+81 66-112-1885', 1, '343824136908947276', '日本おおさかし西成区出城一丁目1番12号45階', '1997-06-27', 0, 0, 'anqluo', '2011-10-24', 'aluo', '2017-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS973257884044', 'Joan Barnes', 0, '+86 176-4073-3836', 2, '271478155904223180', '中国广州市越秀区中山二路235号40楼', '1987-08-30', 0, 0, 'bajo', '2014-02-03', 'joabarn52', '2020-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS923825694136', '胡俊宇', 1, '+86 10-3755-7610', 0, '765577137065797738', '中国北京市東城区東直門內大街683号华润大厦14室', '1989-02-10', 0, 0, 'wuchunyu', '2014-04-19', 'chunyu412', '2012-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS950203746008', '罗晓明', 0, '+86 755-109-4902', 4, '802374336617471945', 'Room 39, 125 Shennan Ave, Futian District, Shenzhen, China', '1999-01-19', 0, 0, 'lxiaoming', '2007-01-05', 'luxiaom3', '2008-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS864369787101', '市川紗良', 0, '+86 189-8163-0168', 2, '208950130345646240', 'Room 5, CR Building, 76 68 Qinghe Middle St, Haidian District, Beijing, China', '1995-08-12', 0, 0, 'saraichik9', '2011-06-24', 'ichiksara1982', '2000-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS554623696780', '丁安琪', 0, '+44 (116) 343 2655', 0, '719986266853563142', 'Flat 2, 207 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1988-11-07', 0, 0, 'ding503', '2002-09-05', 'dinganq626', '2007-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS107855498445', 'Pauline Gonzales', 1, '+86 769-015-6738', 1, '973861887925409220', 'Room 26, CR Building, 623 Shanhu Rd, Dongguan, China', '1994-09-14', 0, 0, 'pauline1120', '2010-12-07', 'pagonz1215', '2020-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS917280468368', 'Edith Fisher', 0, '+81 66-958-6340', 2, '819378505852484716', '29-kai, 1-1-6 Deshiro, Nishinari Ward, Osaka, Japan', '1986-02-15', 0, 0, 'edithfi3', '2007-11-26', 'fisher1010', '2013-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS663766971896', '蘇潤發', 1, '+86 175-2139-8224', 3, '039556689505840687', 'Room 13, 843 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1992-06-30', 0, 0, 'yunfat331', '2011-07-21', 'yunfatso', '2021-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS721630906559', '蕭小慧', 0, '+1 718-309-5017', 2, '472570483043366242', '380 Columbia St Suite 50, Brooklyn, NY 11231, United States', '1995-06-03', 0, 0, 'siuwai1970', '2012-09-08', 'siu306', '2003-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS212156933556', '任朝偉', 0, '+44 (116) 671 3653', 0, '385519612827046559', 'Flat 13, 26 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-11-04', 0, 0, 'cwyam', '2015-03-28', 'yamchiuw404', '2005-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS350107209642', '余致远', 1, '+81 66-620-7119', 4, '664859023723532771', '48-kai, 1-1-15 Deshiro, Nishinari Ward, Osaka, Japan', '1986-09-07', 0, 0, 'yz112', '2005-10-13', 'yu9', '2001-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS597822426056', '苗慧儀', 1, '+81 70-5594-9149', 4, '613591626737251115', '日本東京千代田区丸の内一丁目6番16号29階', '1991-10-13', 0, 0, 'mwy1227', '2004-03-23', 'waiyeemiu8', '2009-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS114047337949', 'Harry Moreno', 1, '+1 838-450-3250', 2, '375128705890290953', '742 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1991-01-20', 0, 0, 'harrymoreno', '2017-01-08', 'harrymoreno929', '2012-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS829046175408', '成國賢', 0, '+86 132-0215-6120', 3, '022329179116360161', '中国北京市延庆区028县道792号14楼', '1997-08-28', 0, 0, 'shingky912', '2010-04-17', 'shiky55', '2017-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS922763676018', 'Hazel Hicks', 1, '+81 70-5687-0727', 2, '680933990743193948', '日本なごやし北区楠味鋺三丁目80番2号25号室', '1990-08-18', 0, 0, 'hihazel', '2021-06-14', 'hicks95', '2017-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS359941372709', 'Jacob Howard', 1, '+81 52-436-5231', 3, '019953327247042061', '日本なごやし北区楠味鋺三丁目80番12号39階', '1998-10-23', 0, 0, 'hjacob', '2014-06-10', 'jahoward', '2005-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS746308181730', '西村一輝', 0, '+81 90-6671-2188', 1, '155391019110754507', '日本札幌白石区菊水三条五丁目2番4号10階', '1992-11-01', 0, 0, 'ikkn', '2021-12-29', 'nishimura59', '2011-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS921611330594', '小島湊', 0, '+44 (1223) 68 3365', 0, '212081189263424589', 'Unit 22, Oxford Eco Centre, 504 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1990-11-14', 0, 0, 'minato1006', '2019-09-16', 'km93', '2018-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS075479860792', '太田明菜', 1, '+81 90-5671-7177', 3, '641926902782323660', '日本札幌中央区宮の森四条六丁目1番12号48階', '1991-07-06', 0, 0, 'akina70', '2008-12-11', 'akinaot5', '2013-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS608163154202', 'Gregory Murray', 1, '+44 7020 139548', 3, '682021460873434518', 'Block 21, 1 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1987-01-22', 0, 0, 'gregmurray', '2011-11-07', 'mugrego72', '2012-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS035106648631', '戚詩君', 1, '+81 90-6617-1916', 4, '987940827887826834', '4F, 3-9-13 Gakuenminami, Nara, Japan', '1998-02-14', 0, 0, 'chicsk', '2022-01-25', 'chicszekwan', '2011-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS406704663581', 'Emma Russell', 0, '+44 5240 134054', 1, '063853678896827172', 'Block 35, 951 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1987-04-08', 0, 0, 'russellemma', '2003-06-25', 'russeemma6', '2007-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS971173770640', '薛宇宁', 1, '+86 130-1019-6391', 1, '095205565389246947', '中国成都市成华区玉双路6号56号华润大厦47室', '1992-02-15', 0, 0, 'xyunin13', '2006-11-28', 'xuey1002', '2001-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS056897659196', 'Rosa Ramirez', 0, '+81 66-643-4599', 1, '076332725174484315', '日本おおさかし平野区加美東四丁目9番14号15号室', '1999-01-23', 0, 0, 'rosaram', '2019-06-06', 'ramirezrosa', '2004-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS223778465648', '太田光莉', 0, '+86 760-8900-5319', 2, '790682729906496887', 'Room 9, 813 Lefeng 6th Rd, Zhongshan, China', '1987-07-08', 0, 0, 'otahikar', '2004-08-18', 'ota422', '2019-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS140448639945', '谷國權', 0, '+1 614-020-4487', 0, '333476451681502714', '342 East Alley Apartment 7, Columbus, GA 43201, United States', '1985-05-23', 0, 0, 'kkk3', '2019-08-05', 'kkwokkuen69', '2000-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS480438586219', '吉田瑛太', 0, '+86 196-8964-6217', 2, '231113347291623902', 'No.40 building, 151 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1992-12-17', 0, 0, 'yoshidaei', '2001-05-13', 'eiyoshida', '2013-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS482997601906', '杜志遠', 0, '+86 10-266-3490', 2, '343236313407374192', 'Room 25, CR Building, 787 Yueliu Rd, Fangshan District, Beijing, China', '1987-07-16', 0, 0, 'cyto903', '2018-01-22', 'chiyuento', '2016-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS100046908481', 'Marcus Stewart', 1, '+86 20-659-4748', 3, '327398888400624749', 'No.43 building, 935 Tianhe Road, Tianhe District, Guangzhou, China', '1993-12-21', 0, 0, 'mastewa', '2010-12-09', 'marcusst', '2007-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS808524655382', '黎安琪', 0, '+86 10-6464-0127', 3, '946268400352774529', '中国北京市西城区复兴门内大街647号17栋', '1990-08-16', 0, 0, 'anqli', '2019-03-16', 'lanqi', '2019-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS854761207022', '萧嘉伦', 1, '+81 80-8829-7032', 2, '296102695985057012', '日本なごやし守山区瀬古東二丁目171番10号47階', '1990-03-24', 0, 0, 'jx6', '2001-09-29', 'xj1122', '2021-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS688024845626', '廖淑怡', 0, '+1 213-999-6816', 3, '902726733028206937', '505 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1985-12-03', 0, 0, 'syliao', '2002-12-18', 'syli', '2000-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS308487031496', '譚榮發', 1, '+81 3-8021-2469', 1, '683654633898356870', '日本東京渋谷区代々木二丁目3番18号33階', '1988-04-30', 0, 0, 'tam64', '2006-11-05', 'wft1964', '2007-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS319925946551', '區杰倫', 1, '+86 142-0402-7680', 1, '888979087802235603', 'No.45 building, 392 Dong Zhi Men, Dongcheng District, Beijing, China', '1987-11-05', 0, 0, 'chiehlunau', '2008-02-01', 'clau6', '2017-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS464873159395', 'Jerry Crawford', 0, '+86 755-739-4069', 3, '621620910421255667', '8F, 811 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1996-10-07', 0, 0, 'crawfordjerry', '2020-10-09', 'crawfordje', '2017-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS196049454409', 'Chad Garcia', 1, '+1 312-601-8017', 2, '610261533495646855', '72 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1998-05-30', 0, 0, 'garciach2', '2010-07-04', 'garciacha6', '2003-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS646746147742', '青木明菜', 0, '+44 (1223) 85 7106', 2, '415602371034069469', 'Flat 43, 853 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-06-27', 0, 0, 'aokiakina', '2000-11-13', 'aakina', '2015-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS203450882227', '竹内詩乃', 0, '+86 159-7119-4435', 3, '075210960694531651', '38F, 637 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1998-10-31', 0, 0, 'takeuchi4', '2013-08-11', 'takeuchishino', '2018-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS908303168231', 'Lori Coleman', 1, '+81 11-877-5051', 1, '518431783698064756', 'Rm. 36, 6-1-4, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1995-09-30', 0, 0, 'lorcolem127', '2021-10-25', 'coleman1224', '2000-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS339135400572', '橋本美緒', 1, '+44 (1223) 26 9048', 2, '000955895395148844', 'Flat 7, 837 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1991-06-23', 0, 0, 'miohashimoto', '2011-02-04', 'miohashimoto9', '2021-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS104804349896', '汪嘉伦', 0, '+86 28-971-1794', 4, '403413766547967787', '中国成都市成华区玉双路6号335号32楼', '1985-09-05', 0, 0, 'jialuwang', '2015-01-14', 'wangji', '2011-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS608730483761', '夏岚', 1, '+1 330-012-5434', 1, '860152532321662412', '507 West Market Street 3rd Floor, Akron, OH 44333, United States', '1986-10-22', 0, 0, 'lanxia', '2001-03-31', 'lax', '2019-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS040346691698', '鈴木凛', 1, '+81 80-9064-0317', 2, '821950056513124882', '日本なごやし瑞穂区河岸町四丁目20番10号33階', '1994-06-29', 0, 0, 'suzukirin301', '2001-04-17', 'rinsuzuki1', '2014-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS631400627889', '梁慧嫻', 0, '+1 312-911-5596', 0, '763265842895461699', '610 North Michigan Ave Apartment 20, Chicago, IL 60611, United States', '1986-11-27', 0, 0, 'leunwh924', '2003-07-31', 'whleung', '2019-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS997042050725', '安藤光莉', 1, '+1 213-225-2837', 2, '692268812774127927', '711 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1993-10-01', 0, 0, 'andhikari03', '2007-12-13', 'hikariando', '2014-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS809309055057', '罗宇宁', 1, '+86 755-453-0715', 2, '529206372207939619', 'Room 39, CR Building, 941 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1994-06-02', 0, 0, 'luoyuning', '2002-12-20', 'yuning5', '2012-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS480261421015', '上野湊', 0, '+44 (151) 165 4181', 3, '909683580484145869', 'Unit 25, Oxford Eco Centre, 739 Hanover St, Liverpool, L1 4AF, United Kingdom', '1995-04-21', 0, 0, 'minue9', '2021-04-07', 'uem', '2004-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS607044963116', '黃裕玲', 0, '+81 11-622-3318', 3, '089934770401369928', '日本札幌白石区菊水三条五丁目4番12号8階', '1988-03-06', 0, 0, 'yuling75', '2009-09-19', 'ylwong', '2000-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS967737134274', '今井美緒', 0, '+86 197-1618-6870', 0, '154819839794711725', '中国北京市延庆区028县道778号2号楼', '1993-08-13', 0, 0, 'imio', '2004-08-14', 'imai5', '2000-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS582652898097', '小林百花', 0, '+81 70-4562-7414', 3, '180022824465107854', '39-kai, 3-9-3 Gakuenminami, Nara, Japan', '1992-02-25', 0, 0, 'momokako', '2020-11-22', 'momoka10', '2018-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS687404437007', '谭睿', 0, '+86 134-9124-6887', 2, '941066820235160581', '中国上海市徐汇区虹桥路2号25号楼', '1985-04-20', 0, 0, 'rt1', '2009-11-12', 'rutan', '2017-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS739921005040', '田村詩乃', 1, '+86 28-708-3902', 1, '738674782874925907', '中国成都市锦江区红星路三段793号7栋', '1995-06-09', 0, 0, 'shinotamura', '2008-09-02', 'shintam312', '2019-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS805093129638', '山口拓哉', 0, '+86 139-8676-9399', 1, '048675205608734836', '11F, 599 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1987-12-02', 0, 0, 'takuyayamaguchi', '2008-01-09', 'takuyay', '2016-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS542182271726', 'John Bailey', 0, '+86 186-5829-9424', 0, '353631141464495885', 'Room 10, CR Building, 444 FuXingMenNei Street, XiCheng District, Beijing, China', '1997-11-12', 0, 0, 'baileyjohn1', '2001-12-30', 'bjohn6', '2007-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS724733530071', '袁俊宇', 1, '+44 7994 123403', 0, '006534200386831287', 'No.26 Main building, 54 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1988-08-28', 0, 0, 'cyyuen', '2013-06-30', 'cyy', '2002-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS361055280596', '蔡致远', 0, '+86 21-7547-1751', 2, '748171236264116025', 'No.7 building, 979 Middle Huaihai Road, Huangpu District, Shanghai, China', '1995-10-17', 0, 0, 'zhiyc9', '2016-06-09', 'zhiyuan67', '2001-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS304589999506', '佐藤瑛太', 1, '+44 (161) 472 0451', 3, '479796954566879611', 'Flat 22, 557 Portland St, Manchester, M1 3LA, United Kingdom', '1992-12-21', 0, 0, 'se1986', '2005-10-22', 'satoei1204', '2018-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS031526467544', '大塚葉月', 1, '+81 90-8105-1486', 3, '504250451538517717', '日本東京千代田区丸の内一丁目6番2号7階', '1994-01-25', 0, 0, 'hazotsuka', '2016-08-14', 'otsukhazuk', '2003-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS572521808554', 'Howard Fernandez', 1, '+86 194-3039-7304', 1, '549288914229966990', 'Room 27, CR Building, 385 Kengmei 15th Alley, Dongguan, China', '1992-03-25', 0, 0, 'fernandezho17', '2016-07-06', 'fhoward', '2002-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS509037330000', '姜榮發', 1, '+1 312-594-7983', 1, '857138957382001234', '8 Pedway Apartment 21, Chicago, IL 60601, United States', '1997-01-27', 0, 0, 'wingfatcha4', '2016-04-21', 'wfchang', '2003-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS511285490104', '藤學友', 0, '+86 20-6016-3752', 4, '574857107023893786', 'No.9 building, 823 Tianhe Road, Tianhe District, Guangzhou, China', '1997-05-06', 0, 0, 'tang7', '2001-01-22', 'tanghokyau903', '2014-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS488185892579', '藤原百恵', 0, '+1 213-754-8399', 4, '492066600383292270', '870 Sky Way Apt 10, Los Angeles, CA 90043, United States', '1991-07-04', 0, 0, 'mfujiwara4', '2002-04-29', 'fujiwaram', '2004-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS633263110478', '蕭梓軒', 0, '+86 181-8950-6730', 3, '287716220238713749', '中国上海市闵行区宾川路159号华润大厦45室', '1990-06-25', 0, 0, 'sith', '2013-04-10', 'siu1', '2002-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS232021814922', '戚志遠', 1, '+44 (20) 9974 6728', 1, '057656901555823850', 'Block 47, 555 Regent Street, London, W1B 2LX, United Kingdom', '1995-11-30', 0, 0, 'chiyuenchic7', '2019-06-08', 'chiyuenchi', '2003-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS961045747206', '古嘉欣', 1, '+1 838-793-9793', 2, '571397693759541976', '157 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1994-07-02', 0, 0, 'karyanku', '2007-04-27', 'ku42', '2007-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS180326719500', 'Amanda Mason', 0, '+44 7188 065865', 2, '899483858085174925', 'No.20 Main building, 431 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1986-10-29', 0, 0, 'amandmason', '2017-11-14', 'maamand921', '2020-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS639854834076', 'George Foster', 0, '+86 20-8709-7252', 2, '163990950150698267', '中国广州市白云区小坪东路620号36楼', '1985-12-14', 0, 0, 'fostergeorge8', '2007-10-10', 'foster9', '2019-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS003573073901', '汪富城', 0, '+86 10-388-2012', 2, '963337282323044450', '中国北京市东城区东单王府井东街4号30室', '1985-09-29', 0, 0, 'wfs7', '2006-10-19', 'fushiwong217', '2010-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS849199298632', '曾宇宁', 1, '+86 769-333-1572', 0, '666059530809953043', '中国东莞坑美十五巷606号35栋', '1996-02-25', 0, 0, 'yzeng1971', '2021-08-22', 'zyuning', '2016-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS933102640202', '雷家文', 1, '+44 5108 400186', 2, '817070288595314355', 'Unit 48, Oxford Eco Centre, 263 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1996-07-20', 0, 0, 'kmloui2019', '2021-01-17', 'kamanloui', '2005-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS111743257773', '金云熙', 0, '+44 5486 204108', 1, '167589577245366862', 'No.20 Main building, 71 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1993-08-28', 0, 0, 'yunxi6', '2013-01-02', 'jinyunxi', '2001-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS990581530701', '渡部葵', 1, '+44 (1223) 96 9967', 0, '195046033945204579', 'No.33 Main building, 663 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1990-02-11', 0, 0, 'watanabeaoi', '2021-03-05', 'aoiwa1982', '2011-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS259393704765', '斎藤明菜', 1, '+1 213-990-3368', 0, '952539479866273314', '339 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1988-09-13', 0, 0, 'akina2012', '2014-02-12', 'saakin', '2018-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS260548211359', 'Brenda Cook', 0, '+81 74-291-9027', 3, '189451357531431254', '日本ならし大和郡山市本庄町一丁目1番3号32階', '1987-07-26', 0, 0, 'coobrenda', '2018-11-09', 'cook1008', '2014-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS125986570625', '山田花', 0, '+86 175-8228-7148', 1, '076638511157084493', 'Room 34, CR Building, 444 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1988-07-05', 0, 0, 'hanayam523', '2001-05-01', 'yamada2012', '2007-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS634306226022', '池田愛梨', 1, '+86 160-7398-9098', 2, '068311621228245867', '中国深圳罗湖区田贝一路733号6室', '1995-04-05', 0, 0, 'ikeda1016', '2020-01-14', 'airiike3', '2019-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS106895266670', '譚慧敏', 0, '+1 718-273-2030', 1, '228759990533053747', '728 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1996-05-21', 0, 0, 'wmt3', '2011-08-17', 'tamwm', '2018-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS646431286617', '岡本美月', 1, '+81 70-1657-1154', 2, '709791134313204966', '日本ならし学園南三丁目9番14号30号室', '1998-02-01', 0, 0, 'okamoto327', '2019-09-14', 'mitsuki225', '2001-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS357131881004', '文德華', 0, '+1 312-937-6577', 4, '114283356044596981', '815 North Michigan Ave Suite 13, Chicago, IL 60611, United States', '1990-08-12', 0, 0, 'takwahm2', '2000-07-15', 'matw2', '2012-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS542348198817', 'Daniel Jackson', 1, '+81 70-0914-5113', 4, '798841783296883199', '日本東京港区東新橋一丁目5番6号28階', '1991-10-14', 0, 0, 'daja', '2012-04-13', 'jacksond', '2004-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS701049288246', '後藤湊', 0, '+86 10-090-6300', 2, '376131570230944344', 'Room 18, CR Building, 288 68 Qinghe Middle St, Haidian District, Beijing, China', '1987-11-21', 0, 0, 'gotomi', '2010-01-01', 'mig9', '2007-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS308638441599', '鐘朝偉', 1, '+44 (121) 211 5929', 0, '690438930409029013', 'No.50 Main building, 774 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1988-12-01', 0, 0, 'chcw', '2012-07-06', 'chungcw930', '2014-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS885425007739', 'Douglas Kelly', 0, '+81 80-5921-4761', 2, '149332434142600344', '24-kai, 4-9-1 Kamihigashi, Hirano Ward, Osaka, Japan', '1993-04-03', 0, 0, 'kelly9', '2021-10-28', 'dougkell831', '2003-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS353015921895', '廖安琪', 1, '+86 139-5612-4774', 1, '697952700847608097', '31F, 733 Sanlitun Road, Chaoyang District, Beijing, China', '1989-11-18', 0, 0, 'lia207', '2018-10-27', 'liaoanq', '2018-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS315006606384', '姜頴思', 0, '+1 838-908-2151', 0, '607484536629820920', '975 Lark Street Apartment 30, Albany, NY 12210, United States', '1993-10-24', 0, 0, 'wsc', '2009-01-08', 'wingszec1998', '2016-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS249482298055', '阿部美月', 1, '+86 21-4613-2778', 1, '881757815244310083', '中国上海市浦东新区健祥路842号28楼', '1998-02-03', 0, 0, 'abemit', '2001-02-19', 'abmitsuki', '2005-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS670889424230', 'Pamela Mitchell', 0, '+81 70-8390-5256', 1, '110733302404351847', '33F, 11 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1991-05-19', 0, 0, 'pmitc', '2004-02-23', 'pamela5', '2013-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS398567739487', '劉富城', 0, '+86 769-8552-9004', 3, '438676906973536526', 'No.24 building, 106 Huanqu South Street 2nd Alley, Dongguan, China', '1985-05-05', 0, 0, 'fushing10', '2010-01-27', 'fushing10', '2008-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS289735018570', '蕭浩然', 1, '+1 213-217-5890', 3, '557478431222521102', '236 S Broadway Apartment 43, Los Angeles, CA 90015, United States', '1995-04-15', 0, 0, 'siuhoyin', '2018-06-27', 'siuhoyin42', '2012-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS673247489342', '武睿', 1, '+81 3-6699-9298', 2, '082281106323966466', '日本東京品川区東五反田五丁目2番7号31階', '1995-02-25', 0, 0, 'rui4', '2002-09-02', 'ruiwu', '2021-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS950650801341', '官永權', 0, '+1 212-671-7177', 3, '462949635954541535', '440 West Houston Street Apt 46, New York, NY 10014, United States', '1990-03-14', 0, 0, 'koon6', '2004-03-18', 'wingkuen89', '2006-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS811040003207', '罗安琪', 1, '+81 90-1517-6374', 2, '746601925221743204', 'Rm. 31, 2-1-14 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1997-10-18', 0, 0, 'luo9', '2008-10-29', 'anqiluo', '2008-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS218617740763', 'Travis Morgan', 1, '+81 80-4412-5250', 4, '547666365899203204', '日本おおさかし東住吉区東田辺三丁目27番20号21号室', '1989-10-21', 0, 0, 'motravi', '2018-06-07', 'morgantravi', '2015-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS205448674936', 'Ryan Herrera', 1, '+1 838-194-3072', 0, '105540479362724225', '218 Central Avenue Apt 14, Albany, NY 12206, United States', '1986-04-23', 0, 0, 'herrryan', '2012-06-21', 'hryan531', '2003-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS076103002010', '容國榮', 0, '+81 90-4454-7978', 2, '056828643934264745', '日本札幌白石区菊水三条五丁目4番14号46号室', '1986-06-25', 0, 0, 'yungkw', '2018-03-25', 'yungkw719', '2008-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS603396487466', '韓思妤', 1, '+81 66-348-5075', 1, '134028816596492092', '31-kai, 1-1-11 Deshiro, Nishinari Ward, Osaka, Japan', '1998-01-16', 0, 0, 'syhan1979', '2013-01-26', 'hansy', '2002-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS661132513174', 'Mike Torres', 0, '+81 52-977-9225', 3, '990814573461303429', '日本なごやし瑞穂区河岸町四丁目20番5号49階', '1993-03-25', 0, 0, 'mikt', '2011-02-14', 'mt420', '2012-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS628887474379', 'Arthur Kelley', 0, '+81 70-6877-6354', 3, '213544746670879594', 'Rm. 27, 1-7-17 Omido, Higashiosaka, Osaka, Japan', '1989-10-26', 0, 0, 'arthk', '2009-03-17', 'arkel', '2001-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS558708507961', '田中優奈', 0, '+86 10-1554-5830', 0, '507782186908401055', '中国北京市朝阳区三里屯路638号华润大厦47室', '1990-01-14', 0, 0, 'tayu', '2011-11-27', 'yunatan2', '2007-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS151169460987', '野村舞', 1, '+86 161-4380-4806', 2, '001421133353827477', '中国广州市越秀区中山二路946号2室', '1990-12-09', 0, 0, 'mainomura65', '2014-05-26', 'mainomura', '2004-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS497114409908', '薛俊宇', 1, '+1 718-308-9458', 1, '641448688929234756', '289 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1993-04-22', 0, 0, 'sitcy', '2010-11-08', 'schunyu', '2004-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS002582578411', '福田花', 0, '+81 11-883-0107', 2, '073390008651255862', '日本札幌豊平区豊平三条十三丁目3番10号3号室', '1985-11-22', 0, 0, 'fukudha', '2003-12-30', 'hanafukuda', '2006-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS463908952740', '藤玲玲', 1, '+86 769-8845-8363', 2, '735590482264460406', '中国东莞东泰五街195号28室', '1994-06-24', 0, 0, 'lltang89', '2018-12-06', 'tanglingling12', '2002-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS763874187898', '唐明', 1, '+81 66-179-1236', 2, '948918127025510479', '31-kai, 1-1-20 Deshiro, Nishinari Ward, Osaka, Japan', '1992-11-06', 0, 0, 'tmi', '2000-09-04', 'tming', '2011-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS243018906018', '曾宇宁', 0, '+81 80-4577-7638', 2, '631471252277124931', '日本おおさかし近江堂一丁目7番4号29階', '1987-07-09', 0, 0, 'yuningz', '2002-01-29', 'zeny', '2013-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS968561064447', '區志明', 0, '+86 170-1581-2591', 3, '456689927619512754', 'Room 16, CR Building, 914 Jingtian East 1st St, Futian District, Shenzhen, China', '1995-11-29', 0, 0, 'auch504', '2004-09-26', 'chimingau6', '2009-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS103069242992', 'Edna Jenkins', 1, '+81 70-2238-3509', 1, '208936353176140259', 'Rm. 33, 1-7-2 Saidaiji Akodacho, Nara, Japan', '1991-03-01', 0, 0, 'ednajenkins2', '2008-05-26', 'ednjen10', '2017-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS810712705535', '沈詩涵', 1, '+86 755-7086-2360', 3, '112503959512857476', 'No.21 building, 207 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1986-01-17', 0, 0, 'sheshihan02', '2005-09-05', 'sshih321', '2011-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS034502706550', '羅明', 0, '+44 (161) 322 9512', 4, '998570062544745253', 'No.25 Main building, 435 Mosley St, Manchester, M2 3AQ, United Kingdom', '1992-09-22', 0, 0, 'lomi02', '2020-05-30', 'loming', '2001-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS154788791797', '池田葵', 0, '+1 330-793-3890', 1, '394581104309065520', '512 Riverview Road Apt 24, Akron, OH 44313, United States', '1995-11-26', 0, 0, 'aoiikeda7', '2017-12-15', 'aoii74', '2009-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS711853201764', '關國榮', 1, '+86 184-6395-4988', 1, '339333912418621018', 'Room 44, 684 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1996-05-30', 0, 0, 'kkwokwing3', '2014-05-02', 'kwkwan1103', '2021-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS914618790723', 'Wendy Kelley', 1, '+44 (1223) 98 1636', 3, '532564386803059134', 'Unit 19, Oxford Eco Centre, 168 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1991-06-05', 0, 0, 'wk412', '2009-10-14', 'kellwend', '2006-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS276401525559', '高橋花', 1, '+1 213-740-0152', 1, '382439250865582126', '398 Grape Street Apt 27, Los Angeles, CA 90002, United States', '1988-01-13', 0, 0, 'takahashihana', '2021-08-26', 'takahha', '2011-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS600335756813', 'William Crawford', 1, '+81 11-009-0558', 2, '909982748586984504', '日本札幌中央区宮の森四条六丁目1番9号13階', '1998-12-05', 0, 0, 'crawfordw', '2017-02-13', 'cwilliam805', '2003-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS188035250370', 'Eddie Ross', 0, '+81 90-8999-3025', 2, '980505225666726411', '日本札幌豊平区豊平三条十三丁目3番10号39号室', '1990-11-01', 0, 0, 'rosseddie', '2010-08-05', 'eross6', '2022-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS127830072096', '和田玲奈', 1, '+86 28-151-1927', 3, '223151136528725503', '中国成都市成华区二仙桥东三路37号4楼', '1991-09-09', 0, 0, 'rena1998', '2000-04-16', 'ware7', '2017-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS877723972555', '曾梓晴', 0, '+81 74-699-5368', 2, '346749305707314165', '日本ならし大和郡山市本庄町一丁目1番19号18階', '1991-01-18', 0, 0, 'tszching228', '2007-11-13', 'tszching4', '2005-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS293624521219', '田曉彤', 0, '+81 3-6328-0184', 2, '705957988240510514', '日本東京中央区銀座三丁目12番4号2号室', '1991-05-03', 0, 0, 'tinht725', '2007-03-09', 'tihiutung825', '2018-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS872575045934', 'Harry Jordan', 0, '+81 90-7754-2589', 4, '942030255617113761', '日本おおさかし西成区出城一丁目1番17号48階', '1996-03-28', 0, 0, 'jorharry', '2014-08-10', 'hjordan', '2021-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS523767424170', '杉山美月', 0, '+86 150-8941-7988', 3, '729846231697482778', '中国广州市越秀区中山二路136号44栋', '1995-09-24', 0, 0, 'sugiyama1117', '2007-11-30', 'mitsuki8', '2018-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS620898819215', 'Lori Weaver', 1, '+81 52-763-0543', 1, '874440020063891266', '日本なごやし守山区瀬古東二丁目171番3号21階', '1997-06-01', 0, 0, 'loweaver', '2011-03-30', 'weaver2', '2014-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS809174284627', 'Clara Gordon', 1, '+1 718-653-3625', 0, '850640215619473070', '668 1st Ave Apt 41, Brooklyn, NY 11220, United States', '1989-08-20', 0, 0, 'clara44', '2000-07-06', 'gordon87', '2000-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS006926192483', '吕子韬', 0, '+86 760-014-7055', 3, '958978016608979862', 'No.32 building, 426 Lefeng 6th Rd, Zhongshan, China', '1997-01-30', 0, 0, 'zitl', '2007-08-21', 'luzita7', '2021-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS790984913559', '丁璐', 1, '+86 177-2249-3855', 1, '408666694980334137', 'Room 48, CR Building, 856 Hongqiao Rd., Xu Hui District, Shanghai, China', '1994-07-14', 0, 0, 'luding1113', '2003-12-29', 'dil', '2000-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS222153110946', 'Wayne Wells', 1, '+86 192-8236-0840', 1, '829384686251370418', 'No.27 building, 403 West Chang''an Avenue, Xicheng District, Beijing, China', '1988-03-05', 0, 0, 'waywells', '2007-05-11', 'wellswa', '2002-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS442604723643', '葉浩然', 0, '+44 7646 446143', 2, '223703422469084030', 'No.42 Main building, 741 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1985-04-07', 0, 0, 'hoyiny', '2015-07-05', 'yiphy', '2019-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS925832216540', '中山詩乃', 1, '+81 90-6852-5120', 3, '753999788729037703', '日本札幌豊平区豊平三条十三丁目3番18号1階', '1998-03-02', 0, 0, 'shino9', '2016-02-18', 'nashino', '2018-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS531232536785', '福田七海', 1, '+86 158-1870-7693', 2, '647233185530816163', '中国深圳龙岗区布吉镇西环路506号华润大厦8室', '1987-09-01', 0, 0, 'fukudanana3', '2019-12-31', 'fnanami04', '2017-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS199539007940', 'Kelly Wallace', 1, '+86 153-8968-7743', 2, '915096804387682009', 'Room 32, 402 Hongqiao Rd., Xu Hui District, Shanghai, China', '1992-06-22', 0, 0, 'wallace109', '2004-07-04', 'wallace522', '2019-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS163914190341', '夏岚', 1, '+1 330-824-4719', 2, '884362873206992399', '554 Ridgewood Road Apartment 6, Akron, OH 44321, United States', '1995-08-04', 0, 0, 'xial', '2018-08-20', 'lanxia10', '2018-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS679517298721', 'Theodore Lee', 1, '+86 755-5226-0500', 1, '911622401761980089', '中国深圳龙岗区布吉镇西环路432号13楼', '1995-02-27', 0, 0, 'letheodore4', '2000-10-28', 'theodore64', '2017-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS855239328357', '房永發', 1, '+44 5076 663892', 1, '930824909304062697', 'Unit 48, Oxford Eco Centre, 568 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1986-04-14', 0, 0, 'fongwi', '2019-08-27', 'wingffon', '2006-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS547603858939', '王曉彤', 1, '+86 192-8134-0443', 4, '834771030311926302', '中国上海市浦东新区橄榄路822号13栋', '1985-07-29', 0, 0, 'wong03', '2012-04-22', 'htwong', '2009-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS267348879484', '呂學友', 0, '+86 196-8670-8647', 4, '836829982351907694', '中国东莞东泰五街375号25栋', '1994-12-10', 0, 0, 'luihokyau', '2012-12-17', 'hokyau707', '2000-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS818068850402', '中島悠人', 0, '+44 7967 472699', 1, '323807926596517197', 'Flat 22, 70 Pollen Street, London, W1S 1NG, United Kingdom', '1990-09-21', 0, 0, 'yuton', '2004-03-10', 'yutnak', '2002-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS808206939943', 'Kevin Sanders', 0, '+1 614-675-3004', 0, '991580868577258771', '756 Diplomacy Drive Apt 31, Columbus, GA 43228, United States', '1993-09-05', 0, 0, 'kevin1984', '2006-08-21', 'kevinsanders', '2005-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS404642107453', 'Joan Patel', 1, '+1 330-616-8001', 3, '806623606528087388', '784 West Market Street 3rd Floor, Akron, OH 44333, United States', '1992-01-13', 0, 0, 'pateljoan', '2013-10-30', 'joapa8', '2016-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS077666167423', '邵小慧', 1, '+44 (161) 324 6219', 0, '816592831569746181', 'Block 50, 999 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-02-08', 0, 0, 'ssw', '2022-01-21', 'siusiu', '2020-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS271159826001', '戴慧儀', 0, '+81 80-0281-2495', 1, '154843426955661312', '日本東京中央区銀座三丁目12番20号10階', '1986-08-29', 0, 0, 'daiwy', '2014-02-08', 'daiwaiyee', '2000-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS728412932590', '周致远', 1, '+44 (121) 895 5015', 3, '111372732200982105', 'Block 16, 370 New Street, Birmingham, B2 4DB, United Kingdom', '1995-09-20', 0, 0, 'zzhiy', '2013-07-10', 'zhouzhiyuan830', '2002-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS417230039974', '孙晓明', 0, '+86 161-6212-4909', 2, '361470559381803155', 'No.10 building, 100 FuXingMenNei Street, XiCheng District, Beijing, China', '1989-04-08', 0, 0, 'xiaoming6', '2003-09-11', 'xiaosu', '2000-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS381385482731', 'Frederick James', 0, '+81 90-5356-0054', 3, '048429718410760106', '日本おおさかし平野区加美東四丁目9番14号31階', '1990-03-20', 0, 0, 'frederick708', '2005-09-25', 'frjames', '2018-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS801446519561', 'Clarence Young', 0, '+44 (116) 999 4368', 0, '706970972809603267', 'No.40 Main building, 803 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1992-07-22', 0, 0, 'youngclare1231', '2015-09-04', 'clayoung2018', '2018-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS201157289224', 'Timothy Black', 1, '+81 11-142-3291', 2, '443919892284569540', '35-kai, 13-3-8 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1985-03-11', 0, 0, 'tblack3', '2015-04-19', 'bltimothy', '2005-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS772128608695', '高木陽菜', 1, '+81 90-2494-7586', 2, '961803286756857335', '18F, 5-19-14 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1992-10-08', 0, 0, 'takagihina', '2014-11-04', 'hitakagi1012', '2004-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS195770014184', '福田和真', 0, '+86 177-0800-7692', 3, '630769074851940651', '中国中山紫马岭商圈中山五路242号6号楼', '1994-05-04', 0, 0, 'fukuda2', '2016-11-19', 'kazumafukuda1', '2013-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS572918662914', 'Jonathan Flores', 1, '+81 70-9937-5994', 2, '676829331439498682', 'Rm. 1, 1-7-9 Omido, Higashiosaka, Osaka, Japan', '1989-05-04', 0, 0, 'jonathan1004', '2020-04-12', 'floresjo', '2003-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS810180662936', '余子异', 0, '+44 (151) 407 5408', 1, '433657637920693071', 'Block 37, 686 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1995-04-08', 0, 0, 'yuziyi', '2014-12-23', 'zy10', '2006-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS170068488190', '韦詩涵', 1, '+81 11-973-1055', 2, '571959021922592573', '日本札幌白石区菊水三条五丁目2番16号18階', '1993-09-16', 0, 0, 'wshi', '2016-09-28', 'shihwe', '2018-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS152454969650', '曹小慧', 1, '+81 11-939-9023', 2, '043876990984359062', '22F, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1987-05-22', 0, 0, 'swcho93', '2022-01-20', 'siuwaicho', '2016-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS846667525508', 'Rhonda Murphy', 1, '+81 66-679-6743', 1, '504809392053064506', '日本おおさかし近江堂一丁目7番9号23階', '1998-10-18', 0, 0, 'murhonda', '2012-03-30', 'murpr9', '2005-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS579900221342', '邓子韬', 1, '+86 146-8244-6437', 1, '100788700523722939', 'No.10 building, 142 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1990-08-02', 0, 0, 'zitao4', '2022-02-23', 'deng5', '2014-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS703572123614', '徐杰宏', 0, '+81 90-9600-6017', 1, '267479667637343297', '日本ならし西大寺赤田町一丁目7番7号3号室', '1998-10-05', 0, 0, 'xjieho', '2010-03-25', 'xujiehong', '2014-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS661209670300', 'Jonathan Burns', 0, '+1 312-566-7668', 0, '748088487650723417', '252 Rush Street Apt 17, Chicago, IL 60611, United States', '1997-07-22', 0, 0, 'jburn', '2002-08-31', 'jbur', '2016-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS555094204779', '李詠詩', 0, '+81 70-8994-0454', 3, '287760123475417429', '日本ならし学園南三丁目9番19号19階', '1996-06-19', 0, 0, 'wsl', '2009-05-01', 'wsle6', '2020-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS532395336213', '胡國賢', 0, '+81 90-2064-3886', 1, '546205084763658571', '日本おおさかし西成区天神ノ森二丁目1番15号10階', '1985-05-27', 0, 0, 'kwokyin7', '2012-10-13', 'wuky1212', '2017-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS073373931065', '戴思妤', 0, '+86 183-9760-2593', 2, '817303355963995270', '46F, 419 Dong Zhi Men, Dongcheng District, Beijing, China', '1986-10-20', 0, 0, 'dasz', '2022-01-13', 'daiszeyu', '2002-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS716513857330', '有村大地', 0, '+44 (20) 2500 3482', 1, '946751920797499458', 'Block 36, 339 Pollen Street, London, W1S 1NG, United Kingdom', '1989-08-31', 0, 0, 'daichiarimura', '2019-04-13', 'arimura203', '2019-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS955167094813', 'Theodore Turner', 1, '+81 66-663-1402', 4, '217361902014031046', '日本おおさかし近江堂一丁目7番4号44号室', '1991-05-04', 0, 0, 'theturner62', '2018-03-04', 'tut1', '2022-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS403534492523', '加藤美緒', 0, '+81 11-252-4935', 4, '979037722410334929', '27F, 6-1-14, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1990-02-09', 0, 0, 'mioka', '2016-12-10', 'mkato710', '2010-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS344144588050', '井上花', 1, '+81 70-4591-3695', 4, '299068984259612243', 'Rm. 44, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-07-26', 0, 0, 'inhana', '2015-04-24', 'ih819', '2004-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS494119497267', '渡辺海斗', 1, '+86 769-0722-6058', 4, '602172616436471554', 'No.2 building, 120 Dongtai 5th St, Dongguan, China', '1985-12-25', 0, 0, 'sato44', '2014-01-10', 'kaitosato', '2007-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS903420035241', '樂慧敏', 0, '+86 170-8568-7716', 1, '861901408018718846', 'Room 39, CR Building, 33 68 Qinghe Middle St, Haidian District, Beijing, China', '1995-03-01', 0, 0, 'wmlok', '2011-07-28', 'waimanlok', '2008-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS867325358795', '高橋明菜', 1, '+44 (116) 349 3596', 0, '078685182037108893', 'No.10 Main building, 962 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1997-06-12', 0, 0, 'taakin520', '2009-02-15', 'akinta3', '2010-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS091984813759', '高子异', 1, '+81 74-415-6036', 3, '413174272783549325', '日本ならし大和郡山市本庄町一丁目1番17号47階', '1991-06-25', 0, 0, 'gao10', '2006-10-14', 'ziyiga', '2002-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS024194994455', '原田明菜', 0, '+86 10-885-8416', 2, '705150864554260009', 'Room 35, CR Building, 905 68 Qinghe Middle St, Haidian District, Beijing, China', '1996-07-22', 0, 0, 'ha1222', '2014-12-02', 'akina96', '2009-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS441676960610', '龙杰宏', 1, '+81 70-9037-8736', 4, '538243595697884707', '36-kai, 3-27-1 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1998-10-19', 0, 0, 'longjieh2', '2003-09-01', 'jiehong719', '2021-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS640548422770', '藤原聖子', 0, '+44 7251 226998', 2, '093159321661910113', 'Unit 10, Oxford Eco Centre, 146 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1985-09-20', 0, 0, 'sfujiwara', '2014-09-13', 'seikofu', '2006-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS266239361963', 'Laura Watson', 0, '+81 11-084-0377', 4, '762061891034637893', '日本札幌豊平区豊平三条十三丁目3番8号47号室', '1994-04-17', 0, 0, 'watsla', '2016-11-08', 'walaura74', '2019-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS434865516398', '武宇宁', 0, '+1 213-804-0893', 0, '376297340235012926', '550 Wall Street Apartment 15, Los Angeles, CA 90003, United States', '1989-05-07', 0, 0, 'yuningwu16', '2013-08-04', 'wuyuning', '2003-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS766244729359', '馬淑怡', 0, '+44 (121) 942 2210', 0, '858814125324163727', 'Flat 8, 108 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1995-10-21', 0, 0, 'sukyeema', '2000-07-08', 'sukyeema', '2008-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS300163281872', 'Louis Henderson', 1, '+86 755-290-6012', 3, '054081142642306253', '中国深圳龙岗区布吉镇西环路163号华润大厦42室', '1997-12-03', 0, 0, 'louis1995', '2011-12-03', 'henderson5', '2012-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS384045980993', '周德華', 1, '+1 213-810-2630', 0, '680329041414846375', '296 Figueroa Street Apartment 26, Los Angeles, CA 90037, United States', '1992-06-11', 0, 0, 'tachow', '2021-12-22', 'takwah20', '2012-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS888996444267', '崔頴璇', 0, '+1 213-027-8894', 0, '624080850969324063', '934 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1997-11-06', 0, 0, 'wingsuenchoi918', '2014-12-01', 'wingsuenc', '2006-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS829860620720', 'Shirley Anderson', 0, '+86 155-4300-5404', 1, '234674531799225578', 'No.9 building, 201 Shennan Ave, Futian District, Shenzhen, China', '1994-05-18', 0, 0, 'andeshirl', '2000-08-26', 'shirleyanderson', '2021-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS859454612498', '任仲賢', 0, '+1 212-972-3876', 4, '783324606608174484', '637 Bank Street Apt 11, New York, NY 10014, United States', '1985-09-22', 0, 0, 'yamcy220', '2003-03-09', 'chungyinyam', '2005-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS143293758710', '顾震南', 0, '+44 (121) 680 0522', 0, '436285066009477056', 'Flat 41, 95 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1989-07-31', 0, 0, 'guzhennan3', '2000-11-23', 'zhennan15', '2010-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS593549289526', '柴田凛', 1, '+86 169-3395-6643', 2, '477612818368521064', '中国北京市房山区岳琉路786号37室', '1993-08-21', 0, 0, 'shibatarin61', '2008-05-28', 'shibarin8', '2013-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS378495892175', '石田陸', 0, '+86 21-3605-8287', 2, '455473320069124477', '32F, 930 Middle Huaihai Road, Huangpu District, Shanghai, China', '1997-09-10', 0, 0, 'rikish', '2004-03-25', 'riku6', '2001-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS164356957000', '杜霆鋒', 1, '+81 70-6242-3073', 1, '302225840408697610', '日本おおさかし西成区天神ノ森二丁目1番12号32階', '1997-09-14', 0, 0, 'totf', '2013-08-08', 'tingfungto', '2008-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS744446545235', '河野光', 1, '+86 191-8176-9262', 3, '102230118759535683', 'No.41 building, 984 Lefeng 6th Rd, Zhongshan, China', '1991-02-10', 0, 0, 'konohikaru', '2021-08-09', 'hikaru2', '2018-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS445559427520', 'Lee Ward', 1, '+81 80-6696-3226', 1, '230082137853637555', '36-kai, 14 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-02-01', 0, 0, 'walee', '2011-01-12', 'wardlee', '2012-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS135170045786', '林舞', 0, '+81 3-3122-3848', 1, '075653828248377474', '日本東京港区東新橋一丁目5番5号36階', '1993-07-14', 0, 0, 'maihay', '2004-11-03', 'mha67', '2015-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS678804001273', '中島樹', 1, '+86 21-813-7753', 3, '650630640547842522', 'No.13 building, 135 Hongqiao Rd., Xu Hui District, Shanghai, China', '1986-02-10', 0, 0, 'itsukinakajima', '2016-08-11', 'itsuki706', '2012-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS214850995171', '陶秀英', 0, '+86 146-9829-0032', 0, '938326445192888067', 'Room 3, CR Building, 684 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1992-12-25', 0, 0, 'xiuyit1101', '2019-12-20', 'taoxiuying', '2017-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS440157439817', '木下結翔', 0, '+1 838-008-5538', 2, '684174285723781203', '600 Lark Street 3rd Floor, Albany, NY 12210, United States', '1989-03-26', 0, 0, 'yuitkinoshita60', '2007-09-24', 'yuitokinoshita97', '2020-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS613770935787', '市川玲奈', 1, '+1 213-640-4769', 2, '675190689457794363', '716 S Broadway Apt 13, Los Angeles, CA 90015, United States', '1987-03-19', 0, 0, 'rena1204', '2001-05-05', 'ichikawa520', '2014-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS122461082186', '石井彩乃', 0, '+86 10-176-2913', 2, '056109873766378231', '中国北京市房山区岳琉路70号34号楼', '1988-05-23', 0, 0, 'ishii330', '2010-01-08', 'ayanoishii', '2010-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS356270519572', 'Alfred Spencer', 1, '+81 3-8243-0667', 2, '024960213066307690', '日本東京渋谷区代々木二丁目3番10号32号室', '1987-07-31', 0, 0, 'alfs', '2017-12-07', 'alfredsp', '2004-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS537290928807', 'Kelly Diaz', 1, '+86 169-2056-3579', 0, '554250044353787610', 'Room 48, 703 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1993-01-13', 0, 0, 'dik51', '2009-08-12', 'kdiaz1992', '2004-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS862071713016', 'Diana Stewart', 1, '+44 (1865) 11 5959', 3, '812136903837592721', 'No.2 Main building, 747 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1994-12-30', 0, 0, 'stewadiana41', '2013-01-10', 'stewart4', '2004-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS068245554243', '邵梓晴', 1, '+81 52-173-1502', 2, '106739215094001366', '日本なごやし瑞穂区河岸町四丁目20番13号5階', '1997-08-12', 0, 0, 'sts6', '2005-12-31', 'tcs1119', '2015-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS509788083124', '汪震南', 0, '+1 718-304-4690', 1, '660908343873747452', '166 1st Ave Suite 15, Brooklyn, NY 11220, United States', '1988-03-12', 0, 0, 'wangzhennan9', '2019-04-20', 'wangzhe', '2001-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS564900980484', 'Kimberly Ferguson', 1, '+86 148-9242-4170', 2, '042426319295896322', '中国深圳罗湖区清水河一路383号14栋', '1988-11-02', 0, 0, 'kimberlyfe76', '2002-01-18', 'kimberlyferg', '2009-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS248490701218', '元家輝', 1, '+86 182-9842-0505', 2, '397333703519537270', 'Room 44, CR Building, 22 Shanhu Rd, Dongguan, China', '1991-05-06', 0, 0, 'yuen6', '2020-02-22', 'ykf618', '2006-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS025739869681', '邱安琪', 1, '+86 132-1802-3874', 1, '572924922078607264', '中国深圳龙岗区学园一巷923号28栋', '1995-09-19', 0, 0, 'onkayyau', '2003-05-11', 'onkayya', '2020-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS625181495038', '陆詩涵', 1, '+81 3-5352-7133', 2, '195203419017031386', '30F, 3-15-6 Ginza, Chuo-ku, Tokyo, Japan', '1989-01-06', 0, 0, 'shihan42', '2002-03-23', 'shihan7', '2000-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS917127226239', 'Laura Mason', 1, '+86 167-6443-3924', 2, '596827280182846225', '中国上海市浦东新区健祥路16号华润大厦45室', '1987-06-04', 0, 0, 'laura52', '2000-04-25', 'masonlaura1212', '2016-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS499822272524', '鄺安琪', 0, '+81 74-567-7664', 4, '293374820105374013', '11-kai, 1-7-15 Saidaiji Akodacho, Nara, Japan', '1990-06-15', 0, 0, 'onkay74', '2011-08-31', 'kwong6', '2013-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS871973429114', 'Antonio Williams', 1, '+86 755-776-2539', 3, '830749383327121587', 'Room 1, 904 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1990-01-31', 0, 0, 'williamsantonio520', '2017-01-02', 'aw2000', '2012-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS190573365018', '今井悠人', 1, '+81 90-9552-0509', 2, '304614322346868709', '日本なごやし守山区瀬古東二丁目171番14号34階', '1997-07-13', 0, 0, 'iyuto10', '2004-07-03', 'iyuto18', '2002-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS925524321069', '韦岚', 0, '+44 (20) 3215 0422', 3, '606616718616470696', 'No.8 Main building, 955 Maddox Street, London, W1S 1PU, United Kingdom', '1993-02-01', 0, 0, 'lan6', '2012-02-02', 'lawei', '2001-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS829347880584', '方睿', 1, '+81 3-2414-6417', 4, '283262209259186407', '46-kai, 1-6-9, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1991-11-28', 0, 0, 'ruifa', '2010-11-11', 'fangrui', '2000-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS453186280167', '伍安娜', 0, '+81 80-4891-4013', 3, '852321081845023960', 'Rm. 38, 5-4-2 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1995-03-10', 0, 0, 'ngon', '2011-04-03', 'onng1129', '2006-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS017479642387', '翁惠敏', 1, '+1 312-018-5370', 0, '128560351944962354', '564 North Michigan Ave Apartment 1, Chicago, IL 60611, United States', '1996-12-11', 0, 0, 'yungwm78', '2003-11-28', 'yuwai', '2003-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS770511323959', '孫安娜', 1, '+86 143-2729-5133', 3, '833287802011497966', 'Room 20, CR Building, 805 Hongqiao Rd., Xu Hui District, Shanghai, China', '1990-11-20', 0, 0, 'hsuanon3', '2005-12-13', 'onnah', '2011-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS914867111963', '韓秀文', 0, '+86 130-8924-8048', 0, '131349794980767817', '中国北京市海淀区清河中街68号190号5号楼', '1999-01-19', 0, 0, 'hansm', '2014-05-26', 'sauman5', '2012-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS375259605208', 'Jimmy Kelly', 1, '+86 178-0077-6003', 3, '429261712230048589', '中国广州市白云区小坪东路293号44楼', '1997-06-21', 0, 0, 'jimmyk610', '2009-03-31', 'kelly8', '2004-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS594584448706', '孔杰宏', 0, '+81 70-5488-7000', 0, '907403581481308159', '23-kai, 5-2-6 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1993-08-08', 0, 0, 'kong406', '2001-12-30', 'jik74', '2017-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS524234733012', '岡田葉月', 0, '+44 7016 700074', 2, '889327893276181946', 'Flat 40, 198 Redfern St, Liverpool, L20 8JB, United Kingdom', '1989-07-12', 0, 0, 'okadahaz1119', '2000-06-17', 'hazukiokada3', '2007-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS137326672713', '邱梓軒', 0, '+86 755-9108-7439', 1, '718310976496037611', '中国深圳龙岗区布吉镇西环路150号30栋', '1998-10-30', 0, 0, 'yautszhin', '2007-11-15', 'thya', '2003-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS335124878523', 'Herbert Brown', 1, '+44 (1223) 56 8286', 0, '084266779826637898', 'No.36 Main building, 328 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1993-06-18', 0, 0, 'herbertb', '2009-05-17', 'hbro', '2010-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS669696915785', '曹裕玲', 0, '+81 66-428-9680', 1, '374395681073593139', '17-kai, 3-27-15 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1986-08-07', 0, 0, 'choyuling', '2021-01-04', 'yuling2', '2006-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS453605116683', 'Diane Coleman', 1, '+44 (1865) 81 5833', 2, '122194344907754451', 'Block 50, 930 Park End St, Oxford, OX1 1JD, United Kingdom', '1991-09-24', 0, 0, 'dianecoleman', '2011-09-17', 'cdiane', '2019-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS722304857941', '熊云熙', 1, '+1 614-770-3581', 1, '021245919719924189', '236 East Alley 3rd Floor, Columbus, GA 43201, United States', '1986-02-14', 0, 0, 'xionyu', '2012-10-31', 'xyunxi', '2010-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS294190241377', 'Carmen Baker', 1, '+86 180-8653-4604', 3, '313609067196142306', '中国广州市越秀区中山二路343号华润大厦13室', '1986-08-09', 0, 0, 'carbake506', '2002-02-23', 'bakerc', '2015-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS354961468533', '馬國明', 1, '+81 11-687-6522', 1, '001146550342667489', '39F, 2-1-10 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-08-31', 0, 0, 'makwokming', '2018-02-27', 'ma6', '2015-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS055658493319', '高田光莉', 0, '+81 70-5015-0321', 0, '463055864624265723', '49-kai, 6-1-7, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-10-29', 0, 0, 'th5', '2010-08-19', 'hikari10', '2008-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS791422136897', 'Mike Brown', 0, '+86 191-9015-8888', 0, '336147025647870877', 'Room 29, CR Building, 995 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1985-03-07', 0, 0, 'mikebro', '2006-11-02', 'mikbrown', '2004-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS417989654060', '吉田拓哉', 1, '+1 330-975-9617', 3, '035481335918455923', '841 West Market Street Apt 17, Akron, OH 44333, United States', '1996-10-06', 0, 0, 'yoshidata', '2016-03-14', 'yoshida6', '2017-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS002136533960', '邵秀英', 1, '+81 70-6448-0261', 0, '162149970168388886', '日本ならし大和郡山市本庄町一丁目1番15号28号室', '1988-07-10', 0, 0, 'xiuying8', '2007-09-18', 'shao618', '2020-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS550600271558', '中川聖子', 0, '+81 80-6550-3149', 1, '043352327970122891', 'Rm. 6, 15 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1992-03-31', 0, 0, 'nakseiko17', '2016-07-25', 'seina', '2018-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS758389440962', 'Matthew Woods', 0, '+86 182-0127-5664', 2, '770603334063176941', '中国中山紫马岭商圈中山五路145号6号楼', '1996-04-19', 0, 0, 'matthew1027', '2008-05-15', 'mw7', '2011-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS983915462313', '岩崎玲奈', 0, '+86 171-4812-7144', 1, '770752455521087260', '中国深圳福田区景田东一街155号华润大厦47室', '1986-07-20', 0, 0, 'renaiwasaki', '2011-07-05', 'renaiwas10', '2005-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS238166088135', '戴詩涵', 0, '+81 70-9358-1862', 4, '638942724236796987', 'Rm. 25, 8 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-11-25', 0, 0, 'dais', '2012-02-18', 'dai1954', '2004-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS604275308384', '何詠詩', 0, '+86 181-7765-4110', 1, '273175762773094422', '中国深圳福田区深南大道145号13号楼', '1988-03-21', 0, 0, 'howingsze', '2001-03-27', 'ho1', '2011-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS899081928818', '高木光莉', 0, '+86 10-598-9660', 1, '628917315507496910', 'No.45 building, 965 East Wangfujing Street, Dongcheng District , Beijing, China', '1986-03-13', 0, 0, 'takhika', '2015-05-05', 'takaghi', '2017-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS230729001001', 'Norma Hernandez', 1, '+86 168-6722-4514', 3, '542636751826628580', 'Room 35, CR Building, 792 Lefeng 6th Rd, Zhongshan, China', '1990-07-10', 0, 0, 'normah', '2010-12-07', 'hernandez9', '2018-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS117321444135', 'Raymond Reyes', 1, '+81 80-1339-6022', 2, '768735447509248076', '日本東京千代田区丸の内一丁目6番17号17号室', '1989-05-23', 0, 0, 'reyraymo', '2001-10-07', 'reyraymond', '2011-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS760656235396', 'Pamela Griffin', 0, '+81 52-430-5950', 1, '608748317436609813', '日本なごやし北区楠味鋺三丁目80番11号29階', '1988-04-25', 0, 0, 'pamelagriff', '2015-01-10', 'grp', '2010-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS463499152053', '邵晓明', 0, '+86 178-4333-6074', 2, '572980951118623090', '中国深圳福田区深南大道48号6室', '1992-06-07', 0, 0, 'xiaomingshao', '2021-07-23', 'xiaoming13', '2017-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS364450207477', '胡璐', 0, '+86 160-2736-8528', 4, '743234178025207320', '中国广州市海珠区江南西路111号25室', '1990-07-22', 0, 0, 'hulu', '2000-01-08', 'hu608', '2017-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS369520692207', '方子异', 0, '+81 74-879-2942', 0, '297367671432778732', '日本ならし西大寺赤田町一丁目7番5号13階', '1991-01-11', 0, 0, 'ziyfang', '2013-01-08', 'ziyifang', '2016-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS904687500116', '苑浩然', 0, '+81 80-8504-6960', 2, '363045270670164317', '日本東京品川区東五反田五丁目2番1号19号室', '1989-05-26', 0, 0, 'hyyuen911', '2013-03-16', 'hoyin7', '2000-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS079500579794', '常岚', 0, '+81 80-5538-7882', 2, '632982965641685091', '日本札幌白石区菊水三条五丁目2番12号7階', '1987-09-28', 0, 0, 'cla', '2013-09-07', 'changlan', '2012-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS543158641602', 'Kyle Ferguson', 0, '+81 3-2202-0955', 0, '856137139943688215', 'Rm. 50, 1-6-5, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1993-04-04', 0, 0, 'kyle9', '2020-08-05', 'ferkyle', '2000-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS255955027983', '姚家強', 0, '+1 213-513-7908', 4, '779442528944673000', '365 Figueroa Street Apartment 41, Los Angeles, CA 90037, United States', '1997-07-26', 0, 0, 'kkye817', '2008-11-21', 'yeokk', '2001-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS227634251037', '邱安琪', 0, '+86 20-2822-1101', 0, '088417779966207046', '中国广州市白云区小坪东路805号6号楼', '1994-07-04', 0, 0, 'qiuanq', '2022-02-14', 'anqiqiu9', '2017-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS997785161712', '曹霆鋒', 1, '+1 614-965-4691', 3, '887468828105657454', '715 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1993-03-01', 0, 0, 'chotf', '2000-01-19', 'tfcho', '2000-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS925168430159', 'Irene Palmer', 0, '+44 (20) 3996 3623', 3, '586352451223625672', 'Flat 28, 772 Pollen Street, London, W1S 1NG, United Kingdom', '1987-12-30', 0, 0, 'pirene', '2014-01-30', 'palmerirene86', '2005-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS252517129919', 'Ashley Dunn', 1, '+81 90-1504-2095', 2, '285645307805572567', 'Rm. 12, 2-1-5 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1989-03-19', 0, 0, 'dunnashley', '2016-03-20', 'dunn13', '2007-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS638122632183', '范致远', 1, '+86 10-5348-3972', 0, '045316891836027661', 'Room 19, CR Building, 536 028 County Rd, Yanqing District, Beijing, China', '1990-06-17', 0, 0, 'fzhiy', '2008-09-08', 'zhiyfan504', '2006-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS841067263378', '范杰宏', 0, '+86 192-6662-2787', 1, '993317778385625266', 'Room 10, CR Building, 781 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1985-10-22', 0, 0, 'fanjiehong', '2016-05-12', 'fanj8', '2002-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS466025771654', '任榮發', 1, '+86 133-3626-3895', 0, '821762937030330276', '中国东莞珊瑚路442号华润大厦31室', '1997-03-16', 0, 0, 'wingfatya', '2019-04-28', 'wiy', '2015-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS011112134883', '宣志明', 1, '+81 90-3778-1249', 2, '245188111675771068', '日本札幌白石区菊水三条五丁目2番13号41号室', '1998-09-12', 0, 0, 'chimingh', '2012-11-29', 'hcm4', '2020-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS418180317090', '菊地陽太', 0, '+1 838-845-0714', 2, '498000859105569916', '73 State Street Suite 48, Albany, NY 12203, United States', '1996-08-13', 0, 0, 'kyota', '2008-09-07', 'kikuyota', '2011-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS624143330233', '朱致远', 1, '+81 80-0368-7346', 4, '667852746611279421', '日本おおさかし東住吉区東田辺三丁目27番3号2階', '1992-06-01', 0, 0, 'zzh', '2016-04-06', 'zhuzhiyuan18', '2014-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS673085957895', '石井凛', 0, '+81 90-1666-6860', 3, '193278788351948861', '日本なごやし守山区瀬古東二丁目171番9号22階', '1992-01-17', 0, 0, 'rishii', '2007-05-19', 'ishiirin', '2009-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS483617466074', '鈴木玲奈', 0, '+81 11-515-6132', 1, '474879880251546014', 'Rm. 22, 2-1-14 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1986-06-06', 0, 0, 'renasuzuki', '2005-01-26', 'suzukirena', '2018-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS210023221104', '千葉明菜', 0, '+44 7950 275977', 1, '655343043002788879', 'Block 50, 727 Sackville St, Manchester, M1 3BB, United Kingdom', '1994-06-20', 0, 0, 'akina46', '2006-06-16', 'chakin', '2006-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS730479397017', 'Harold Rogers', 1, '+1 330-136-4109', 1, '677672921893056637', '587 West Market Street Apt 37, Akron, OH 44333, United States', '1994-02-18', 0, 0, 'harogers', '2007-08-06', 'rharol9', '2007-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS846481762696', '斉藤架純', 1, '+44 7183 575989', 1, '762372919268648287', 'Unit 48, Oxford Eco Centre, 494 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1985-10-19', 0, 0, 'kasusaito', '2014-12-27', 'kassaito52', '2002-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS180135966699', '井上一輝', 0, '+81 80-0297-6954', 1, '157060419152374849', '日本札幌厚別区上野幌一条二丁目1番12号16号室', '1996-11-23', 0, 0, 'ikkin', '2015-05-05', 'inoueikk929', '2020-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS583736738161', 'Nicholas Garza', 0, '+44 7221 367094', 4, '152446984643679712', 'Flat 27, 642 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-12-23', 0, 0, 'gnicholas', '2005-10-17', 'gnicholas', '2004-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS996587922848', '丸山紗良', 1, '+1 838-814-9871', 0, '472875659594132128', '272 Lark Street Apartment 22, Albany, NY 12210, United States', '1993-05-03', 0, 0, 'marusa523', '2019-06-21', 'sarama', '2013-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS669202224540', '余宇宁', 0, '+81 70-1146-8847', 1, '348103941879443858', '8-kai, 2-1-8 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1985-10-31', 0, 0, 'yuyuning1980', '2001-12-28', 'yuy', '2000-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS743179265337', 'Norman Ortiz', 0, '+44 5615 643181', 2, '043321122997607089', 'Unit 38, Oxford Eco Centre, 109 New Street, Birmingham, B2 4DB, United Kingdom', '1985-06-08', 0, 0, 'ortiz702', '2021-08-11', 'normanortiz', '2014-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS065393702333', '朱子韬', 1, '+86 21-864-7661', 1, '465491548727310152', 'Room 16, CR Building, 278 Hongqiao Rd., Xu Hui District, Shanghai, China', '1997-02-14', 0, 0, 'zz48', '2009-06-15', 'zitao1978', '2000-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS266401087761', '大野一輝', 1, '+81 80-6445-9313', 1, '186691772174224322', '日本札幌豊平区豊平三条十三丁目3番18号50階', '1989-07-06', 0, 0, 'ikkon503', '2000-06-01', 'ikkion', '2013-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS733916810818', '萧晓明', 1, '+81 70-7293-9404', 1, '160479080962647331', '19F, 1-5-13, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1992-04-09', 0, 0, 'xx9', '2002-07-01', 'xiaomingxiao', '2018-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS547877335533', '邱睿', 0, '+86 10-899-0586', 0, '450671511454995519', '中国北京市延庆区028县道300号华润大厦25室', '1989-10-11', 0, 0, 'ruiqi', '2006-03-14', 'rqi8', '2008-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS959205985129', 'Cindy Gibson', 0, '+86 194-0309-0666', 3, '910598225960546903', 'Room 32, No.757, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1985-08-27', 0, 0, 'gibsonci', '2007-03-17', 'cindy1129', '2003-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS776262155642', '石詩涵', 0, '+81 90-3084-1118', 0, '472825974424023571', '日本東京中央区銀座三丁目12番9号38階', '1989-03-21', 0, 0, 'shishihan', '2018-06-21', 'shihan50', '2000-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS857031863331', '井上架純', 0, '+86 755-501-3464', 0, '603214699434187688', '39F, 204 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1988-08-21', 0, 0, 'kasumi1945', '2006-12-03', 'inoukasumi', '2005-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS962312545317', '大塚大地', 0, '+81 90-8172-2198', 2, '027666968049502686', '日本札幌中央区宮の森四条六丁目1番9号30号室', '1989-04-08', 0, 0, 'dotsu10', '2013-08-11', 'daichiotsuka', '2006-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS296838219101', '錢朝偉', 1, '+81 66-706-9787', 1, '202275703612893192', '31-kai, 4-9-8 Kamihigashi, Hirano Ward, Osaka, Japan', '1991-02-09', 0, 0, 'cchiuwai2001', '2020-07-08', 'chin8', '2016-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS894314165035', '山口拓哉', 1, '+81 70-2151-0887', 4, '536264504888238007', 'Rm. 45, 1-7-14 Omido, Higashiosaka, Osaka, Japan', '1992-08-15', 0, 0, 'taky10', '2007-10-04', 'ytakuya3', '2006-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS558348935927', 'Sylvia Ramos', 0, '+1 718-681-0213', 2, '597575335742461838', '276 Flatbush Ave Suite 34, Brooklyn, NY 11225, United States', '1994-10-17', 0, 0, 'sylviaramos', '2014-06-12', 'sylviaramos14', '2001-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS642205077078', 'Mark Hill', 1, '+1 718-638-9368', 4, '550323308023838534', '801 Nostrand Ave Apartment 46, Brooklyn, NY 11216, United States', '1996-07-22', 0, 0, 'mhill9', '2011-04-01', 'mhi3', '2004-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS571641389766', 'Denise Lee', 1, '+86 755-5354-1853', 3, '654389490937449502', 'Room 2, 894 Shennan Ave, Futian District, Shenzhen, China', '1995-03-30', 0, 0, 'dele', '2020-04-13', 'leed', '2008-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS608323353767', '伊藤光', 1, '+86 161-2259-3079', 0, '023892724874089872', '中国北京市延庆区028县道977号28楼', '1986-09-17', 0, 0, 'itohika106', '2020-06-22', 'hikarito', '2009-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS617598499470', '岩崎舞', 1, '+44 5174 883694', 2, '973869401801884323', 'Flat 4, 917 Sackville St, Manchester, M1 3BB, United Kingdom', '1987-11-01', 0, 0, 'iwama', '2017-11-04', 'mai4', '2017-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS698900011037', '谷口凛', 1, '+86 193-1774-3512', 4, '240083708976473514', '中国北京市东城区东单王府井东街23号华润大厦24室', '1991-02-15', 0, 0, 'tanigri', '2000-04-02', 'trin', '2009-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS038005579667', '田中悠人', 1, '+1 212-796-3017', 0, '376929383518505327', '105 Wooster Street Suite 31, New York, NY 10012, United States', '1989-09-17', 0, 0, 'tanaka64', '2009-08-21', 'yuto728', '2002-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS458634711741', '阎震南', 1, '+81 52-615-9608', 3, '374246185709372015', '日本なごやし北区清水三丁目19番20号49階', '1991-11-19', 0, 0, 'yanz911', '2007-01-30', 'yanzhennan', '2004-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS462215782665', 'Rebecca Clark', 1, '+81 90-6033-8200', 1, '260570828960473833', '47F, 5 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-10-22', 0, 0, 'rebeccaclark1205', '2003-04-02', 'rebeccaclark', '2010-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS128679620495', '丁云熙', 1, '+81 52-604-7576', 1, '321199370118963578', 'Rm. 5, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-01-29', 0, 0, 'yunxdi917', '2014-08-06', 'dingy1028', '2020-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS943565315592', '石田彩乃', 1, '+81 70-7342-9503', 1, '700912507136327263', '35-kai, 9 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1985-09-09', 0, 0, 'ishayano92', '2015-10-09', 'ishiayan', '2015-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS347911451574', '蘇安琪', 1, '+86 185-1138-8760', 1, '042048053386863561', '中国深圳罗湖区田贝一路720号华润大厦4室', '1986-10-22', 0, 0, 'oks20', '2022-02-07', 'soonkay', '2009-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS975281940812', '甘玲玲', 1, '+44 7986 222687', 1, '763757324160211361', 'Block 14, 953 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1995-05-15', 0, 0, 'linglingka2', '2005-05-05', 'klingling05', '2005-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS017543445996', '孟璐', 1, '+1 213-930-6001', 3, '077680502402755346', '195 Sky Way Apt 48, Los Angeles, CA 90043, United States', '1990-04-10', 0, 0, 'mlu', '2016-03-22', 'lmen509', '2007-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS581783785120', 'Roger Spencer', 1, '+44 5414 592959', 1, '989524310966725512', 'Flat 27, 982 New Street, Birmingham, B2 4DB, United Kingdom', '1988-11-26', 0, 0, 'spr', '2015-01-21', 'roger6', '2005-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS015962842722', 'Jacob Mendez', 0, '+44 (20) 3439 4607', 0, '929453187701855226', 'No.30 Main building, 613 Pollen Street, London, W1S 1NG, United Kingdom', '1994-12-04', 0, 0, 'jacobmendez', '2005-08-15', 'jmendez', '2015-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS251627177638', 'Thomas Meyer', 0, '+44 5035 105418', 2, '016839170843510170', 'Unit 23, Oxford Eco Centre, 968 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1986-05-18', 0, 0, 'thomasm', '2010-11-07', 'meyer1968', '2021-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS294114467481', '蔡惠敏', 1, '+86 10-266-1063', 2, '157055995162057713', '中国北京市朝阳区三里屯路743号21楼', '1986-08-21', 0, 0, 'choiwa', '2008-06-14', 'wmchoi', '2010-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS505379898955', '陶杰宏', 0, '+86 154-5585-7219', 2, '207190521927840071', 'No.45 building, 91 Xiaoping E Rd, Baiyun , Guangzhou, China', '1991-12-14', 0, 0, 'jiehong1', '2005-06-02', 'taji', '2010-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS651816029485', '張天樂', 0, '+81 70-9541-7015', 0, '959539250278434014', '35F, 5-2-9 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1989-03-19', 0, 0, 'cheungtl', '2017-05-11', 'chetinlok58', '2014-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS976405853733', '胡秀文', 0, '+86 143-5294-9893', 2, '589874678153488604', '中国上海市浦东新区健祥路957号9栋', '1989-12-02', 0, 0, 'wusm', '2017-06-20', 'wsauman623', '2009-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS673865702648', '有村彩乃', 0, '+86 146-8203-2377', 1, '383833996442945471', '中国北京市海淀区清河中街68号836号10室', '1997-11-13', 0, 0, 'aayano', '2015-12-13', 'ayano62', '2021-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS771573216621', '顾睿', 0, '+44 (1223) 07 1528', 3, '007863874835056155', 'Unit 11, Oxford Eco Centre, 504 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-09-26', 0, 0, 'rgu', '2012-12-07', 'gurui', '2010-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS312632167237', '谭云熙', 1, '+86 133-4106-9870', 1, '310034520388841448', '中国北京市房山区岳琉路42号13室', '1998-03-05', 0, 0, 'yut1944', '2009-03-22', 'ytan525', '2009-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS891026995457', 'Karen Carter', 0, '+81 90-9812-6443', 2, '386958099834634445', '34-kai, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-06-30', 0, 0, 'karcar', '2003-01-09', 'kc3', '2017-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS070711058318', 'Mary Long', 0, '+86 755-8341-0304', 3, '819807938398463253', 'Room 24, CR Building, 425 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1992-04-29', 0, 0, 'longmar921', '2014-12-07', 'marylong', '2009-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS256965021130', '上野美咲', 0, '+86 153-8508-8747', 1, '895595337835829816', '中国成都市成华区双庆路549号24号楼', '1995-09-18', 0, 0, 'uenomisaki', '2021-07-07', 'umisaki625', '2018-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS971085075603', '阮國權', 0, '+44 5836 033789', 1, '491783894796150121', 'No.32 Main building, 285 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1995-05-18', 0, 0, 'ykwokkuen44', '2017-03-21', 'kkyuen7', '2021-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS936529225864', '太田舞', 0, '+86 184-0284-3024', 3, '487555753900719298', 'No.14 building, No.852, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1993-09-07', 0, 0, 'otma11', '2017-07-18', 'mai54', '2010-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS976814767060', '木下光莉', 1, '+86 153-1074-4460', 3, '295500261477245538', '中国广州市白云区机场路棠苑街五巷892号48室', '1985-03-27', 0, 0, 'kinoshik10', '2021-10-10', 'hkinoshita', '2010-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS495305208987', '邵睿', 1, '+81 90-5633-8158', 0, '022642397547505446', '日本東京中央区銀座三丁目12番12号18階', '1987-04-17', 0, 0, 'ruishao', '2018-05-15', 'rui2', '2014-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS403513170695', '清水大輔', 1, '+81 11-528-3166', 2, '922473676260118905', '日本札幌中央区宮の森四条六丁目1番12号8階', '1992-10-20', 0, 0, 'daish', '2013-02-07', 'sdaisuke10', '2000-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS948429981321', '平野陽太', 0, '+44 (161) 138 5223', 4, '648372882444692315', 'No.36 Main building, 538 Portland St, Manchester, M1 3LA, United Kingdom', '1995-02-03', 0, 0, 'hyota', '2011-01-10', 'hirano6', '2015-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS351617628882', 'Brandon Gordon', 1, '+81 11-643-4874', 3, '860834900117482543', '17-kai, 13-3-8 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1988-02-08', 0, 0, 'gordbran', '2010-08-03', 'gordonbrandon2', '2016-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS270593001592', '谢子异', 1, '+44 5530 314238', 0, '796609523895918782', 'Block 8, 730 Maddox Street, London, W1S 1PU, United Kingdom', '1997-05-05', 0, 0, 'xizi212', '2003-08-18', 'ziyixie', '2003-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS371413570135', '前田蓮', 0, '+1 213-831-0179', 4, '684134326064386138', '961 Grape Street Apt 5, Los Angeles, CA 90002, United States', '1985-06-02', 0, 0, 'mr92', '2011-01-06', 'remaeda712', '2000-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS294906886443', '青木玲奈', 1, '+44 (121) 128 9697', 3, '052437927320792447', 'Unit 45, Oxford Eco Centre, 292 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1985-07-03', 0, 0, 'aokirena', '2019-07-06', 'renaoki', '2018-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS245300563964', 'Phyllis Freeman', 1, '+44 (121) 758 0815', 3, '041604697997159647', 'Flat 16, 227 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1998-12-15', 0, 0, 'phyllfr', '2003-02-12', 'freeman6', '2014-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS788699722458', '姜志遠', 1, '+86 28-5071-1200', 2, '887347338650216542', '中国成都市成华区二仙桥东三路412号19栋', '1996-06-03', 0, 0, 'changcy10', '2007-11-28', 'chang53', '2020-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS491182112987', 'Jennifer Bailey', 0, '+1 718-005-0478', 1, '978571428061525356', '544 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1993-04-21', 0, 0, 'bajenni', '2009-05-31', 'baileyje226', '2021-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS584815489002', '陳慧敏', 1, '+1 312-694-2870', 1, '488051845480775924', '781 Pedway 3rd Floor, Chicago, IL 60601, United States', '1993-12-14', 0, 0, 'chan411', '2020-12-01', 'chanwm', '2012-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS313034165029', '莫岚', 0, '+81 90-9485-4606', 1, '401971206881234333', 'Rm. 5, 17 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1996-07-19', 0, 0, 'molan52', '2004-01-07', 'molan917', '2016-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS749157095838', '葉嘉欣', 1, '+86 28-5928-1200', 1, '952820337311791029', '中国成都市锦江区红星路三段909号30号楼', '1985-12-26', 0, 0, 'yip508', '2016-02-05', 'karyanyip', '2008-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS487068581842', '柴田愛梨', 0, '+44 5108 410385', 3, '770035576780991921', 'Flat 27, 481 Maddox Street, London, W1S 1PU, United Kingdom', '1992-09-17', 0, 0, 'shibataairi', '2013-10-15', 'shibataai', '2005-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS592980899392', 'Bobby Gordon', 1, '+1 212-186-7385', 1, '001538110266587536', '328 West Houston Street 3rd Floor, New York, NY 10014, United States', '1987-11-19', 0, 0, 'gordonbo', '2010-08-18', 'gordb', '2014-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS587321790093', '雷詩涵', 1, '+86 158-7983-0437', 2, '794567217422676521', '中国北京市房山区岳琉路554号42楼', '1986-01-08', 0, 0, 'shihan70', '2006-12-11', 'leishihan', '2004-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS666857353827', '長谷川凛', 1, '+86 140-8975-1903', 3, '338429688088300408', 'No.18 building, 956 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1990-11-25', 0, 0, 'rinhasegawa1119', '2008-11-04', 'hasegawari', '2000-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS119402551865', 'Lillian Mitchell', 0, '+86 142-4163-9556', 1, '091654177928103706', 'Room 43, 685 Shanhu Rd, Dongguan, China', '1993-10-28', 0, 0, 'mitchell7', '2009-07-02', 'mitchelllilli', '2003-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS577873424006', '謝浩然', 0, '+1 213-586-9850', 1, '367957960213585870', '193 S Broadway Suite 28, Los Angeles, CA 90015, United States', '1985-02-28', 0, 0, 'thoyin06', '2020-01-23', 'hoyintse', '2005-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS473142413638', 'Rhonda Gray', 0, '+44 (116) 541 0447', 3, '226672275783971991', 'No.31 Main building, 717 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1996-11-22', 0, 0, 'gray8', '2003-09-29', 'rhondag', '2012-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS155999742595', '湯慧嫻', 0, '+1 312-829-5028', 2, '471363086189485948', '269 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1994-11-08', 0, 0, 'towaihan506', '2009-05-24', 'whto5', '2013-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS495884141069', 'Jose Jimenez', 1, '+1 718-105-7024', 2, '292792313923013417', '409 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1996-06-30', 0, 0, 'jimenez2', '2006-02-23', 'joseji', '2008-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS686960338324', '容秀文', 0, '+86 10-1805-8022', 2, '920220264823631888', 'Room 1, 713 028 County Rd, Yanqing District, Beijing, China', '1997-10-29', 0, 0, 'smyun5', '2003-08-09', 'smyung', '2011-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS488528408428', 'Rebecca Young', 0, '+44 (20) 5457 1392', 1, '364773254930427534', 'Block 36, 466 Hanover Street, London, W1S 1YD, United Kingdom', '1997-02-12', 0, 0, 'ryoun1119', '2013-08-12', 'young04', '2003-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS671694255554', '高橋樹', 0, '+86 10-210-9208', 2, '873790287345188718', '中国北京市西城区西長安街667号28号楼', '1986-12-03', 0, 0, 'taki', '2017-02-03', 'takaitsuki', '2021-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS569815979241', '龙致远', 0, '+1 614-520-5846', 3, '739644634849104712', '400 East Cooke Road Suite 3, Columbus, GA 43214, United States', '1989-11-14', 0, 0, 'long1965', '2005-02-15', 'longz', '2014-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS629375498257', '谢子异', 0, '+44 (1223) 04 5524', 3, '570494916844599551', 'Unit 4, Oxford Eco Centre, 622 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1990-06-28', 0, 0, 'ziyi5', '2001-04-28', 'xieziy4', '2000-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS170202641632', 'Kathy Bailey', 0, '+1 213-279-3552', 2, '462199427703186209', '723 Figueroa Street Suite 24, Los Angeles, CA 90037, United States', '1996-06-05', 0, 0, 'kathy10', '2012-10-19', 'bailka', '2019-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS227951885412', '藤田涼太', 1, '+86 186-8982-8066', 1, '702645473383231786', 'No.24 building, 273 028 County Rd, Yanqing District, Beijing, China', '1997-09-02', 0, 0, 'ryfujita', '2001-05-07', 'ryotafu10', '2020-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS965146411411', 'Teresa Payne', 0, '+44 (151) 831 0194', 2, '782777969408387960', 'Block 8, 446 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1994-10-18', 0, 0, 'tepayne', '2004-08-30', 'teresapayn', '2020-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS119471792910', '程詩涵', 1, '+86 193-7987-7903', 2, '466098614926513144', '42F, 468 Dong Zhi Men, Dongcheng District, Beijing, China', '1993-01-04', 0, 0, 'chengshiha', '2013-04-19', 'chengs', '2006-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS363835155289', '駱國明', 1, '+86 194-8483-7408', 1, '049250352700239671', '中国北京市東城区東直門內大街736号1楼', '1987-11-13', 0, 0, 'lokwokming', '2002-10-29', 'lokkwokming', '2006-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS833814735684', '田中光', 0, '+86 20-810-9498', 0, '566637595051424464', '中国广州市越秀区中山二路398号41栋', '1997-12-14', 0, 0, 'hikaru98', '2019-05-23', 'hikarutanak8', '2016-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS364425421835', '島田百花', 1, '+1 213-422-9674', 2, '824511500962211751', '863 Alameda Street Apartment 30, Los Angeles, CA 90002, United States', '1997-01-28', 0, 0, 'shimada2', '2003-09-26', 'shm', '2003-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS636609018153', '林致远', 0, '+81 80-5353-9955', 2, '479630706388424210', '28F, 2-1-7 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1998-02-13', 0, 0, 'lizhi421', '2015-06-13', 'lin45', '2014-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS491871766989', '袁岚', 0, '+44 (151) 901 7604', 4, '049535329068917772', 'No.5 Main building, 7 Hanover St, Liverpool, L1 4AF, United Kingdom', '1998-11-27', 0, 0, 'lanyua1030', '2018-05-14', 'lanyuan6', '2017-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS212754340100', '毛子韬', 1, '+1 718-397-9782', 0, '180932786255811585', '11 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1985-05-31', 0, 0, 'zitaomao', '2000-05-26', 'zitmao', '2006-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS394218429024', '内田拓哉', 1, '+86 191-4387-2886', 1, '512859463207843741', 'Room 19, CR Building, 497 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1991-03-13', 0, 0, 'takuya1207', '2004-02-20', 'takuyuchida', '2016-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS613929440120', '田宇宁', 1, '+44 7682 172990', 4, '521698241312260142', 'Flat 40, 29 Maddox Street, London, W1S 1PU, United Kingdom', '1993-07-26', 0, 0, 'tianyuning', '2015-10-17', 'yuningt', '2020-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS938876217053', '武云熙', 0, '+81 3-9197-4086', 0, '795281115874003820', '12-kai, 1-6-15, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-01-06', 0, 0, 'ywu95', '2012-02-21', 'yunxiwu5', '2001-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS400253328654', '孟晓明', 1, '+44 (121) 007 0368', 3, '860835619691326436', 'Block 38, 157 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1987-10-20', 0, 0, 'xiaommeng', '2018-07-24', 'mengxiaoming8', '2002-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS011193766461', '容家玲', 0, '+1 718-180-1687', 3, '337329798373503566', '542 Columbia St Apt 7, Brooklyn, NY 11231, United States', '1989-10-22', 0, 0, 'kly', '2004-04-02', 'yung92', '2013-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS471417084349', '藤世榮', 0, '+86 10-309-8820', 1, '583922962582004416', 'No.15 building, 885 Dong Zhi Men, Dongcheng District, Beijing, China', '1994-12-29', 0, 0, 'tang8', '2004-06-28', 'tansaiwing916', '2002-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS037570133400', 'Francis Watson', 1, '+81 66-805-8160', 0, '411474301788349561', '日本おおさかし近江堂一丁目7番15号4号室', '1993-09-17', 0, 0, 'watsonfr123', '2014-05-23', 'watsonfra323', '2010-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS318718323009', 'Bruce Hamilton', 1, '+86 151-8191-4274', 4, '469787923008744935', '中国北京市西城区复兴门内大街759号30室', '1989-01-30', 0, 0, 'hamiltonb', '2018-12-27', 'bruceh', '2002-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS547316986819', '薛璐', 1, '+86 10-2335-2324', 4, '919570277065294326', '中国北京市西城区复兴门内大街790号19楼', '1986-06-01', 0, 0, 'luxue8', '2000-06-11', 'xl3', '2012-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS083822088898', '宮崎健太', 1, '+86 10-519-8046', 2, '765094089377825205', '中国北京市海淀区清河中街68号459号20栋', '1985-11-02', 0, 0, 'kentamiyazaki', '2007-07-26', 'miyazakikenta', '2012-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS173517598091', '朱小慧', 0, '+86 194-0881-3935', 3, '997768396538270088', '中国上海市浦东新区健祥路463号10室', '1987-06-26', 0, 0, 'chu63', '2003-04-25', 'csiuwai10', '2019-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS249772568030', '孟秀英', 1, '+81 11-957-9131', 1, '462467735285252787', '46-kai, 5-19-5 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1989-01-18', 0, 0, 'mengx', '2013-01-24', 'xiuying1961', '2010-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS322362488158', '石田樹', 1, '+86 170-1931-6293', 2, '775160571201401169', 'Room 9, 748 FuXingMenNei Street, XiCheng District, Beijing, China', '1997-02-11', 0, 0, 'iit', '2010-11-19', 'iitsuki', '2008-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS363293200102', '韓詩君', 1, '+86 21-166-9474', 0, '490861810685688775', '中国上海市浦东新区橄榄路205号27号楼', '1989-11-27', 0, 0, 'hsk', '2013-04-01', 'skhan', '2003-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS529892490790', '孔安琪', 0, '+86 769-9184-8087', 2, '541091831780788689', '中国东莞珊瑚路139号17号楼', '1989-01-05', 0, 0, 'kong716', '2001-01-03', 'konganq', '2005-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS660662841275', '横山樹', 1, '+86 161-6298-3160', 4, '852051428947996662', '中国北京市房山区岳琉路87号46栋', '1991-01-11', 0, 0, 'itsukiyokoyama', '2007-02-05', 'yoit', '2002-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS623209746664', 'Esther Soto', 0, '+44 5765 582089', 3, '345639054939874465', 'Unit 42, Oxford Eco Centre, 329 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1987-02-12', 0, 0, 'sote4', '2011-05-11', 'esot7', '2005-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS829018739577', 'Rose Ellis', 0, '+86 10-630-2074', 3, '523930864653829199', 'No.48 building, 218 Yueliu Rd, Fangshan District, Beijing, China', '1994-01-05', 0, 0, 'rose1', '2018-03-23', 'ellrose', '2001-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS166019253101', 'John Crawford', 0, '+81 74-364-2873', 2, '656411731906116981', '日本ならし西大寺赤田町一丁目7番12号3号室', '1996-02-06', 0, 0, 'crawfordjoh', '2012-08-10', 'crawfordjohn8', '2015-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS198094490998', 'Arthur Wagner', 0, '+86 162-5397-1054', 3, '049717871833296714', '中国东莞珊瑚路592号15室', '1998-04-02', 0, 0, 'wagnarthur517', '2005-06-02', 'arthur6', '2021-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS337263201384', 'Teresa Myers', 1, '+81 66-890-4377', 1, '720571354385859855', '日本おおさかし西成区天神ノ森二丁目1番20号6号室', '1993-08-09', 0, 0, 'mteres', '2004-05-09', 'teresamyers1127', '2013-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS892896529130', '石田一輝', 0, '+86 755-211-6086', 1, '165824176422563379', 'No.15 building, 561 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1989-12-11', 0, 0, 'iishi418', '2007-05-03', 'ikkiishida44', '2019-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS491786154081', '唐睿', 0, '+86 10-1370-6180', 4, '839908667007486368', '中国北京市西城区复兴门内大街209号46室', '1989-02-10', 0, 0, 'trui608', '2016-08-08', 'tangrui', '2021-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS983302368518', '高橋光', 1, '+86 195-5225-1867', 4, '637313839421513623', 'Room 16, CR Building, 942 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1997-09-19', 0, 0, 'hikarutak', '2005-10-26', 'hikaru1114', '2005-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS645214219328', '吉田和真', 0, '+86 150-9069-6866', 3, '157826921487308574', 'Room 30, CR Building, 754 68 Qinghe Middle St, Haidian District, Beijing, China', '1993-06-21', 0, 0, 'yok', '2010-06-18', 'yoshidakazuma6', '2003-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS342523705675', 'Chris Reed', 0, '+86 755-4553-1044', 4, '561424445307525518', '中国深圳福田区深南大道689号华润大厦47室', '1997-12-29', 0, 0, 'chrisreed9', '2005-05-06', 'chreed', '2005-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS580524754665', 'Elaine Porter', 1, '+44 5460 094638', 3, '412904901884597890', 'Block 45, 689 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1992-01-21', 0, 0, 'elaineporter', '2003-10-16', 'porter801', '2001-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS479546071495', '伊藤彩乃', 0, '+44 (20) 4092 0339', 1, '098460944460338972', 'No.49 Main building, 171 Pollen Street, London, W1S 1NG, United Kingdom', '1988-04-16', 0, 0, 'ayanoito702', '2007-10-08', 'ita1', '2005-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS761239468554', '朱睿', 0, '+81 66-594-3359', 2, '443889769707961754', '50-kai, 1-7-14 Omido, Higashiosaka, Osaka, Japan', '1988-02-23', 0, 0, 'zhu1002', '2006-04-20', 'zhurui517', '2012-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS615007513958', '朱杰宏', 1, '+81 74-062-7980', 1, '067047425440333793', '13F, 1-7-2 Saidaiji Akodacho, Nara, Japan', '1989-01-08', 0, 0, 'jiehongz67', '2020-06-11', 'jiehozh', '2008-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS657795566712', 'Bernard Martin', 1, '+86 755-7825-1789', 2, '212947596105238593', '中国深圳罗湖区蔡屋围深南东路502号华润大厦9室', '1985-08-18', 0, 0, 'martin7', '2018-01-24', 'martiber10', '2017-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS907877751492', '市川百花', 0, '+86 20-1552-5498', 1, '293502766850043089', '47F, 988 Xiaoping E Rd, Baiyun , Guangzhou, China', '1997-04-01', 0, 0, 'ichim', '2008-01-02', 'momokai', '2003-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS559866007815', '張頴璇', 1, '+86 10-201-1614', 3, '440606288781454050', '中国北京市房山区岳琉路802号30室', '1997-09-14', 0, 0, 'wingsuencheung', '2019-07-07', 'cheuws52', '2018-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS694038081366', '何安琪', 0, '+81 70-0722-8582', 4, '827996363746485456', '日本なごやし北区楠味鋺三丁目80番14号45号室', '1997-12-06', 0, 0, 'anqi7', '2011-04-04', 'hean', '2005-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS761884926843', '韩嘉伦', 0, '+44 (20) 7445 2400', 3, '421677467047737484', 'No.26 Main building, 187 Pollen Street, London, W1S 1NG, United Kingdom', '1993-06-15', 0, 0, 'hanjial506', '2013-05-06', 'han10', '2013-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS532705976832', '常詩涵', 0, '+81 70-1496-2088', 3, '799744072255272433', '日本東京中央区銀座三丁目12番18号22階', '1997-07-11', 0, 0, 'shchang', '2003-09-19', 'shihanchang2010', '2017-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS881824885113', 'Edith Peterson', 1, '+81 80-3422-3767', 4, '568190049612067853', '21F, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1986-03-10', 0, 0, 'petersoned94', '2020-12-03', 'edith9', '2007-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS291307224096', 'Charles Black', 0, '+81 3-5897-2148', 3, '759662611494495753', '日本東京渋谷区代々木二丁目3番6号50号室', '1999-01-15', 0, 0, 'blackc401', '2005-07-10', 'charles3', '2007-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS939809348441', '方宇宁', 1, '+81 52-977-8661', 4, '511256687901832850', '日本なごやし熱田区千年二丁目5番3号13階', '1987-06-02', 0, 0, 'fyunin', '2009-03-13', 'yuningfang', '2003-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS322609332735', '高木結翔', 1, '+1 838-830-8388', 1, '539660616000873103', '601 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1993-01-11', 0, 0, 'yuitotakagi9', '2005-03-19', 'takayui1965', '2013-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS025221272448', '馬朝偉', 1, '+44 (1223) 62 5387', 2, '234422224345147349', 'Unit 7, Oxford Eco Centre, 410 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1991-06-05', 0, 0, 'cwm', '2018-07-28', 'machiuwai1978', '2018-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS183908499761', '魏云熙', 0, '+44 (1223) 41 9777', 1, '179920866480360208', 'Flat 42, 998 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1989-03-23', 0, 0, 'weiyunx', '2014-06-09', 'weiy19', '2010-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS796093751304', 'Brandon Price', 1, '+86 188-1901-8469', 3, '749388643929241798', '中国成都市成华区二仙桥东三路699号23栋', '1994-08-02', 0, 0, 'brandon3', '2013-04-23', 'brandonprice', '2021-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS848172744708', '菅原蓮', 0, '+44 (161) 203 3113', 3, '067183820288322056', 'Unit 1, Oxford Eco Centre, 415 Sackville St, Manchester, M1 3BB, United Kingdom', '1995-01-05', 0, 0, 'rsugawara', '2002-07-05', 'sugawararen', '2019-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS993899523656', '潘睿', 1, '+44 7015 039762', 4, '104115866233719215', 'Block 48, 736 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1991-04-04', 0, 0, 'pan813', '2000-08-10', 'pan10', '2003-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS964703947503', '汤子异', 1, '+44 5328 673769', 2, '984232162685205899', 'Block 4, 626 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1995-12-13', 0, 0, 'ziyitang', '2013-05-17', 'taziyi', '2013-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS398770797852', 'James Evans', 1, '+81 11-042-7502', 1, '696423878351112833', '日本札幌厚別区上野幌一条二丁目1番19号4階', '1994-03-10', 0, 0, 'evansja10', '2000-02-12', 'ejames10', '2012-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS583828668759', '松田明菜', 0, '+44 7163 379525', 1, '279841431912901940', 'Unit 40, Oxford Eco Centre, 833 Redfern St, Liverpool, L20 8JB, United Kingdom', '1997-02-16', 0, 0, 'amatsuda312', '2013-07-15', 'makina4', '2007-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS586650264229', '内田桜', 0, '+81 11-760-4037', 2, '830131548489692267', 'Rm. 47, 5-4-12 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-08-08', 0, 0, 'sakura2019', '2020-02-23', 'uchis', '2013-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS841251895012', '李家文', 1, '+86 167-2433-4301', 3, '727486630080479969', 'No.47 building, 947 Ganlan Rd, Pudong, Shanghai, China', '1989-01-05', 0, 0, 'leekaman', '2003-03-22', 'leekm', '2003-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS943555300209', '熊詩涵', 0, '+44 (121) 888 1046', 1, '462468565924104277', 'Block 43, 556 New Street, Birmingham, B2 4DB, United Kingdom', '1994-04-25', 0, 0, 'sxiong1', '2004-08-14', 'shihxi2007', '2003-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS724292754911', '吉田大和', 1, '+86 769-172-3616', 3, '730174024614246690', '中国东莞珊瑚路642号20楼', '1990-01-07', 0, 0, 'yoshiday', '2013-05-09', 'yyo', '2014-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS359499823641', '岡田凛', 1, '+81 70-9312-5431', 1, '876172993363124916', '日本東京港区東新橋一丁目5番15号48号室', '1994-02-23', 0, 0, 'okadarin4', '2006-03-06', 'okari', '2012-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS284259774254', '葉志遠', 0, '+86 167-1961-0202', 3, '539860535792491657', 'No.33 building, No. 482, Shuangqing Rd, Chenghua District, Chengdu, China', '1992-07-10', 0, 0, 'yip108', '2009-08-27', 'chiyy', '2012-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS707863529863', '田杰宏', 1, '+81 70-4935-4700', 1, '421115120363695984', '日本なごやし瑞穂区河岸町四丁目20番5号15号室', '1992-03-22', 0, 0, 'tian51', '2021-08-26', 'jiehongtian6', '2000-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS594713982134', '小林湊', 0, '+1 614-385-6931', 4, '433113202594684362', '210 East Alley 3rd Floor, Columbus, GA 43201, United States', '1998-08-16', 0, 0, 'kobayashimin207', '2007-06-02', 'mk1', '2018-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS461812864303', '龚璐', 1, '+86 154-4122-7634', 4, '832712967333560652', 'Room 13, CR Building, 189 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1996-02-04', 0, 0, 'lugo', '2021-04-03', 'lugong00', '2009-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS505008890366', '森田明菜', 0, '+81 3-4711-7795', 1, '172549304308159527', 'Rm. 19, 3-15-4 Ginza, Chuo-ku, Tokyo, Japan', '1997-01-14', 0, 0, 'akimori1', '2008-01-03', 'maki204', '2004-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS151080204349', '董宇宁', 1, '+1 213-588-8884', 4, '421462896916123017', '509 Wall Street Apartment 23, Los Angeles, CA 90003, United States', '1985-11-26', 0, 0, 'dongyuning', '2008-10-16', 'yuning3', '2003-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS753420539107', '中村光莉', 1, '+86 163-1333-4743', 2, '774853838791557801', '中国成都市成华区玉双路6号190号34室', '1996-02-15', 0, 0, 'hikari1943', '2009-05-31', 'nakamurahika', '2021-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS877804839895', '田中百花', 1, '+86 140-5022-3739', 2, '256775611840965363', '中国北京市延庆区028县道131号华润大厦11室', '1995-09-10', 0, 0, 'tanmom', '2018-08-23', 'motanaka57', '2012-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS391362466698', '贺嘉伦', 0, '+86 174-4094-8880', 0, '420558596127666196', 'No.46 building, 640 Dongtai 5th St, Dongguan, China', '1989-10-02', 0, 0, 'jhe', '2016-11-04', 'hejialun', '2014-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS132433759934', 'Ray Jordan', 1, '+86 130-8971-7320', 1, '621363232987834094', '中国东莞珊瑚路614号11号楼', '1994-06-06', 0, 0, 'rjord726', '2008-11-26', 'jordray76', '2006-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS994107291190', '郭浩然', 0, '+86 131-9420-0776', 1, '896499759497151341', '13F, 890 028 County Rd, Yanqing District, Beijing, China', '1989-03-10', 0, 0, 'hoyinkwok', '2015-04-03', 'hykwo', '2000-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS943992009900', '有村陸', 0, '+81 80-0512-6491', 1, '530937272423168607', '50-kai, 3-27-4 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1991-06-15', 0, 0, 'arimura724', '2001-06-28', 'riku1', '2000-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS644961372145', 'Wendy Ford', 0, '+86 28-797-2095', 2, '622046068953470379', 'No.5 building, 817 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1997-02-04', 0, 0, 'wef', '2006-10-13', 'wendfor4', '2007-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS203926733505', '赵子异', 1, '+86 193-8912-3997', 3, '928739518891314411', '8F, 856 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1990-06-25', 0, 0, 'zhziy1229', '2005-02-19', 'ziyi5', '2009-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS941746145030', 'Randall Anderson', 1, '+86 199-3222-0108', 3, '146507867162606757', 'No.43 building, 151 Shanhu Rd, Dongguan, China', '1997-05-08', 0, 0, 'randallande', '2014-01-03', 'ar1991', '2004-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS909036066816', '刘杰宏', 1, '+81 70-9893-8806', 4, '750815524964328492', '日本札幌厚別区上野幌一条二丁目1番15号36号室', '1996-04-08', 0, 0, 'jiehongli', '2008-05-28', 'jiehong8', '2006-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS789202212773', 'Todd Guzman', 0, '+86 10-288-9979', 2, '151822161049011429', '中国北京市延庆区028县道489号14号楼', '1996-08-29', 0, 0, 'guzmantodd78', '2015-07-25', 'gutodd67', '2002-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS336834706216', '罗睿', 1, '+81 66-659-3993', 3, '947057231586450802', '26F, 1-1-19 Deshiro, Nishinari Ward, Osaka, Japan', '1994-10-11', 0, 0, 'ruiluo', '2002-05-04', 'luorui10', '2013-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS824411467838', '余岚', 1, '+44 (20) 9137 0794', 4, '673724302569491094', 'Flat 30, 994 Pollen Street, London, W1S 1NG, United Kingdom', '1989-02-26', 0, 0, 'ly6', '2017-01-25', 'lan7', '2008-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS844109067880', '林詩涵', 1, '+86 755-627-8772', 1, '253372940860891003', 'No.21 building, 648 Jingtian East 1st St, Futian District, Shenzhen, China', '1995-11-21', 0, 0, 'shihanlin615', '2020-07-04', 'lis', '2006-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS580373035116', 'Carlos Hernandez', 1, '+81 3-1163-2786', 2, '139863435234723114', '日本東京渋谷区代々木二丁目3番16号34階', '1995-09-10', 0, 0, 'hernc824', '2004-10-18', 'carloshern', '2003-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS125597392142', 'Sherry Mcdonald', 0, '+81 90-9239-7672', 1, '636590896245638495', '22-kai, 5-2-2 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1997-12-05', 0, 0, 'smcdonald', '2016-12-18', 'mshe', '2011-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS175874622825', '和田陸', 1, '+86 150-2011-7775', 2, '401372523847836875', 'Room 39, CR Building, 526 East Wangfujing Street, Dongcheng District , Beijing, China', '1995-05-19', 0, 0, 'wadariku1970', '2004-05-24', 'wadari', '2014-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS739469117214', '小林優奈', 0, '+44 (161) 501 0327', 3, '778479861654208312', 'No.5 Main building, 174 Mosley St, Manchester, M2 3AQ, United Kingdom', '1996-10-08', 0, 0, 'kyu6', '2012-03-23', 'kobayyun', '2010-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS396971626630', '安藤蒼士', 1, '+1 212-452-5512', 2, '055651338473327128', '908 Bank Street 3rd Floor, New York, NY 10014, United States', '1989-09-20', 0, 0, 'aosha', '2010-04-08', 'aoshia', '2020-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS697360574855', '高田光莉', 0, '+44 5899 502702', 2, '527180172503480845', 'Block 11, 366 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1994-02-07', 0, 0, 'takahikari', '2010-12-27', 'takadhik5', '2005-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS872972097413', '武秀英', 1, '+81 80-5537-8871', 4, '490968987675853435', '8F, 11 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-11-08', 0, 0, 'xwu', '2011-04-03', 'wux', '2004-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS099018668197', '蔡秀文', 1, '+86 21-187-7134', 3, '534550915839646089', '40F, 637 Hongqiao Rd., Xu Hui District, Shanghai, China', '1995-05-01', 0, 0, 'chosm', '2012-05-27', 'chosm', '2003-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS961093102377', '雷玲玲', 0, '+81 52-079-8284', 3, '561657283920447997', '日本なごやし瑞穂区河岸町四丁目20番14号17号室', '1985-04-13', 0, 0, 'lingling829', '2002-12-26', 'louill', '2021-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS853170724871', '汪致远', 1, '+44 (1223) 87 0948', 1, '923373157159224838', 'Unit 38, Oxford Eco Centre, 950 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1986-03-17', 0, 0, 'wazhiyuan', '2014-04-14', 'wang1121', '2010-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS612821409168', '鄺心穎', 1, '+81 52-832-2106', 2, '814569315025304881', '27F, 3-19-10 Shimizu, Kita Ward, Nagoya, Japan', '1994-02-07', 0, 0, 'swk8', '2008-03-21', 'kwongsw', '2016-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS621242552729', 'Stephanie Gardner', 0, '+1 718-760-7263', 2, '553329455614123524', '978 Columbia St Suite 13, Brooklyn, NY 11231, United States', '1993-02-07', 0, 0, 'stephanieg', '2017-09-14', 'gardnstephanie71', '2010-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS962460638218', '島田優奈', 1, '+44 (20) 2319 3912', 0, '786177445769783822', 'Unit 44, Oxford Eco Centre, 436 Regent Street, London, W1B 2LX, United Kingdom', '1992-06-29', 0, 0, 'shimadayuna10', '2007-07-26', 'shimyu', '2014-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS471900893213', '郝杰宏', 1, '+81 66-073-4732', 1, '762548042819105294', '6F, 4-9-6 Kamihigashi, Hirano Ward, Osaka, Japan', '1988-03-30', 0, 0, 'haojieho', '2019-01-14', 'hao6', '2012-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS559453506285', '陆致远', 0, '+1 330-107-3487', 3, '142986648945585956', '987 Fern Street Suite 24, Akron, OH 44307, United States', '1992-04-15', 0, 0, 'lu1976', '2009-06-14', 'lu3', '2019-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS336743661737', '孫嘉欣', 0, '+1 838-327-4275', 4, '412473083092664618', '409 Lark Street 3rd Floor, Albany, NY 12210, United States', '1992-06-21', 0, 0, 'hsuankaryan', '2008-08-20', 'karyanhsuan', '2016-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS503609493056', '于璐', 1, '+86 28-922-3007', 2, '223833107523686502', 'No.7 building, No. 688, Shuangqing Rd, Chenghua District, Chengdu, China', '1990-08-16', 0, 0, 'yul', '2002-07-30', 'lu1954', '2021-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS615699703557', 'Gloria Roberts', 1, '+81 80-7846-0865', 2, '310321967279943796', '30F, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1994-03-03', 0, 0, 'rg7', '2000-07-19', 'robertsgloria3', '2017-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS507909031831', '孟云熙', 1, '+81 11-611-6146', 2, '610272273225074796', '35-kai, 2-1-4 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1991-01-04', 0, 0, 'yunxi210', '2021-08-27', 'yumeng114', '2009-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS264860334163', 'Joanne Washington', 0, '+86 192-1607-8760', 3, '581010148627160847', 'No.28 building, 671 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1986-09-10', 0, 0, 'washingtonjoanne', '2017-08-06', 'jwashington', '2016-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS694344983700', '加藤一輝', 1, '+81 80-1687-7189', 2, '401232548005585318', 'Rm. 33, 1-6-2, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1997-10-23', 0, 0, 'kikki', '2001-11-12', 'katikki', '2013-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS156935795930', '冯秀英', 1, '+81 11-975-0197', 1, '934050144776731925', '日本札幌中央区宮の森四条六丁目1番5号35階', '1992-08-18', 0, 0, 'xiuying1115', '2002-04-24', 'xiuyingf15', '2020-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS723556335738', '平野光莉', 0, '+81 80-0946-6196', 1, '181604584142247982', '日本東京渋谷区代々木二丁目3番6号3階', '1998-01-11', 0, 0, 'hhirano76', '2001-08-11', 'hikarih03', '2010-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS293200274571', '森翼', 1, '+44 (121) 279 1302', 2, '688978274375117591', 'No.36 Main building, 131 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1986-10-24', 0, 0, 'mtsubasa', '2011-11-18', 'tsubam', '2007-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS466423415306', '谷梓晴', 1, '+1 213-982-8331', 0, '261943773148921030', '126 Grape Street Apt 26, Los Angeles, CA 90002, United States', '1994-10-16', 0, 0, 'kootc', '2003-05-13', 'tszching1957', '2014-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS376523998515', 'Cynthia Martin', 1, '+44 (20) 1658 9744', 0, '620077868049692921', 'Unit 30, Oxford Eco Centre, 797 Regent Street, London, W1B 2LX, United Kingdom', '1988-11-17', 0, 0, 'macynth318', '2000-12-30', 'cynthia120', '2010-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS525127065586', '鈴木湊', 1, '+81 66-735-2332', 0, '338789337935120518', '40F, 2-1-3 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1993-01-17', 0, 0, 'sminato', '2019-02-21', 'minato10', '2005-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS177842057324', '刘云熙', 1, '+1 330-955-3042', 1, '091115288939008368', '902 Riverview Road Suite 24, Akron, OH 44313, United States', '1992-03-04', 0, 0, 'liuyunxi', '2015-01-01', 'yunxiliu', '2013-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS865661355494', '小川紗良', 0, '+81 74-320-6983', 2, '286400254058922830', '日本ならし学園南三丁目9番19号33階', '1987-08-10', 0, 0, 'ogawasa', '2003-10-18', 'ogawas54', '2017-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS751083428882', '夏震南', 1, '+44 5024 740930', 1, '920439978964267092', 'Unit 32, Oxford Eco Centre, 428 New Street, Birmingham, B2 4DB, United Kingdom', '1986-01-01', 0, 0, 'xiazhenn104', '2017-05-17', 'xiazh', '2020-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS114379854543', '渡部愛梨', 1, '+1 838-902-7585', 4, '949722329936829101', '806 Central Avenue Apartment 3, Albany, NY 12206, United States', '1989-06-17', 0, 0, 'watanabeairi3', '2017-05-18', 'airwatanabe', '2017-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS683292405733', 'Anita Daniels', 0, '+1 718-632-8027', 2, '914434031566374143', '580 Columbia St Apt 11, Brooklyn, NY 11231, United States', '1996-05-25', 0, 0, 'anitadaniels49', '2001-02-04', 'daniels1002', '2014-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS248432749602', '杨子韬', 0, '+1 838-926-1486', 2, '473558210081536806', '98 Broadway Apartment 11, Albany, NY 12207, United States', '1991-11-09', 0, 0, 'zyang4', '2017-03-15', 'zitao709', '2003-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS405703879738', 'Clarence Griffin', 0, '+86 10-8934-4247', 1, '536259655940184596', 'Room 15, CR Building, 797 Yueliu Rd, Fangshan District, Beijing, China', '1994-11-13', 0, 0, 'claregriffin', '2019-09-16', 'clargriffin', '2021-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS343093598340', '中野結翔', 1, '+86 141-1486-6118', 3, '632769735017670070', 'No.8 building, 416 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1990-03-30', 0, 0, 'yuito13', '2019-01-12', 'yuito302', '2019-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS968927576815', '夏致远', 0, '+86 769-0128-5763', 2, '467178904614264412', '中国东莞东泰五街371号38室', '1997-01-18', 0, 0, 'zhiyuan626', '2012-07-18', 'xiazhiyuan1', '2000-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS378374443299', '遠藤明菜', 0, '+81 80-4409-1307', 2, '510015233767240623', '日本札幌白石区菊水三条五丁目4番18号3号室', '1987-06-28', 0, 0, 'akinaendo', '2012-12-03', 'endak', '2004-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS472545921255', '崔岚', 1, '+81 70-9967-9885', 3, '955281087167803451', '日本なごやし熱田区千年二丁目5番9号19階', '1986-08-09', 0, 0, 'cuila', '2003-07-26', 'cui1972', '2017-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS609577878068', '毛宇宁', 0, '+81 3-0283-7257', 2, '096716493766157486', '日本東京港区東新橋一丁目5番3号44階', '1997-11-06', 0, 0, 'ymao', '2001-05-11', 'mao88', '2010-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS787949633104', 'Jonathan Edwards', 0, '+86 187-9806-0804', 2, '396203772415461793', 'No.49 building, 794 Jiangnan West Road, Haizhu District, Guangzhou, China', '1997-10-04', 0, 0, 'jonathaned', '2011-06-05', 'edwjon', '2014-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS438573117778', 'Wanda Cole', 0, '+1 614-001-6753', 3, '506828358088998078', '679 East Alley 3rd Floor, Columbus, GA 43201, United States', '1996-03-19', 0, 0, 'wandacole1221', '2019-02-21', 'cwa', '2021-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS492873663775', '藤原百花', 0, '+81 74-006-4953', 4, '015962849663450288', '4F, 8 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-02-11', 0, 0, 'momoka2', '2020-09-04', 'fujm', '2018-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS260853314709', '孙秀英', 0, '+81 80-5874-2213', 3, '119988349212086708', '日本なごやし瑞穂区河岸町四丁目20番11号12階', '1989-02-10', 0, 0, 'xiuying2', '2004-11-19', 'xiuys', '2018-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS580243453204', '高木光莉', 0, '+86 10-889-5011', 3, '568422467752928315', '中国北京市房山区岳琉路630号20号楼', '1995-06-15', 0, 0, 'hikarita', '2015-10-17', 'takagihikari', '2006-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS624131504915', '邓晓明', 1, '+1 330-307-6260', 0, '548466562678315208', '48 Collier Road Apt 2, Akron, OH 44320, United States', '1991-09-27', 0, 0, 'xden704', '2001-08-14', 'xiaomingdeng', '2001-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS582285276669', '李子异', 1, '+81 74-890-2019', 1, '520432362536739063', '22-kai, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1985-04-23', 0, 0, 'lziyi', '2005-01-15', 'ziyi3', '2012-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS964046544480', '後藤優奈', 0, '+86 10-2928-3509', 2, '168648338063330549', 'No.38 building, 390 Sanlitun Road, Chaoyang District, Beijing, China', '1993-05-11', 0, 0, 'yuna903', '2004-05-02', 'gotoyuna', '2010-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS657053551079', '蕭永權', 1, '+81 70-0801-7860', 1, '137660087606101210', '日本東京千代田区丸の内一丁目6番12号17号室', '1991-03-06', 0, 0, 'wksiu', '2020-05-15', 'wingkuensiu98', '2014-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS127963432026', '李璐', 1, '+44 (1865) 04 4907', 0, '770509856980046804', 'No.12 Main building, 865 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1997-05-27', 0, 0, 'luli', '2012-07-30', 'lil', '2017-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS551948088817', '岩崎百恵', 1, '+81 66-022-6179', 0, '369454248312441437', '46-kai, 1-1-6 Deshiro, Nishinari Ward, Osaka, Japan', '1988-12-08', 0, 0, 'momi', '2011-03-24', 'iwasakim6', '2014-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS912929283581', '呂家明', 1, '+86 155-6097-9225', 2, '189149812774883407', 'Room 10, 400 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1987-03-16', 0, 0, 'kaming5', '2001-10-31', 'luikam315', '2006-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS356517018697', '崔心穎', 1, '+86 182-9316-6378', 4, '716231821464110341', '中国中山乐丰六路201号16楼', '1996-03-20', 0, 0, 'swchoi720', '2004-05-16', 'choi1989', '2015-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS237623995033', '宋詩涵', 0, '+86 143-4773-6953', 4, '968158197926597913', '中国成都市成华区双庆路112号华润大厦43室', '1991-02-24', 0, 0, 'sonshihan4', '2005-08-14', 'shihanson', '2020-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS803435901447', '許祖兒', 1, '+86 10-7582-1209', 2, '411467293599162970', '36F, 661 68 Qinghe Middle St, Haidian District, Beijing, China', '1998-01-04', 0, 0, 'cyhu80', '2017-02-16', 'choyeehui3', '2019-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS927212948019', '毛子韬', 1, '+86 194-1993-9911', 3, '754367554622817978', '中国上海市徐汇区虹桥路169号27室', '1990-02-01', 0, 0, 'maozitao58', '2022-02-06', 'zitaomao', '2014-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS649322449733', 'Vincent Richardson', 1, '+81 52-803-0976', 2, '778670097924939033', '43F, 3-19-14 Shimizu, Kita Ward, Nagoya, Japan', '1997-03-15', 0, 0, 'rv6', '2008-03-27', 'vincr', '2010-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS812027304354', 'Susan Burns', 1, '+1 312-421-8516', 2, '039032471141043930', '423 North Michigan Ave Suite 4, Chicago, IL 60611, United States', '1998-03-14', 0, 0, 'burnsusan2', '2009-02-06', 'burns1', '2009-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS370680541830', 'Nicole Bryant', 1, '+86 188-9658-9855', 3, '197050675742540385', '28F, No.91, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1989-07-31', 0, 0, 'bryantn2', '2002-11-29', 'bryannicole', '2018-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS396229179429', 'David Stone', 0, '+81 11-118-8327', 2, '691213108645638904', '日本札幌白石区菊水三条五丁目2番6号27階', '1995-05-15', 0, 0, 'stonedavid1', '2013-12-03', 'david74', '2008-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS968114302249', '吳永發', 1, '+81 11-198-9066', 0, '345928766644050481', '日本札幌清田区真栄四条五丁目19番1号43階', '1994-07-17', 0, 0, 'nwingfat', '2017-11-25', 'wingfat6', '2010-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS626596504826', '韩岚', 0, '+86 760-677-4895', 1, '838231703757437656', '中国中山紫马岭商圈中山五路292号28栋', '1997-02-25', 0, 0, 'laha527', '2007-04-11', 'lanhan', '2021-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS394337054614', '鐘秀文', 0, '+1 614-760-5698', 1, '206034255105113630', '889 Wicklow Road Apt 3, Columbus, GA 43204, United States', '1985-01-29', 0, 0, 'smchun', '2001-07-15', 'smchung', '2007-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS475739459734', 'Irene Ramos', 1, '+86 147-1679-8737', 4, '022079221677911371', '中国东莞环区南街二巷536号32楼', '1996-10-30', 0, 0, 'ramosi', '2010-01-28', 'ir4', '2018-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS691537442652', '冯致远', 1, '+86 199-2957-4266', 1, '110872857275334041', '27F, 941 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1991-08-01', 0, 0, 'zhiyuanfeng815', '2012-06-03', 'fz1968', '2009-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS563714391479', '范安琪', 1, '+86 176-0578-4039', 4, '209967240860646983', 'Room 34, 378 East Wangfujing Street, Dongcheng District , Beijing, China', '1991-06-18', 0, 0, 'anqifan', '2001-10-17', 'anqifa', '2002-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS185880470270', '區志明', 0, '+86 171-5859-3828', 3, '830112640892446702', '中国北京市西城区复兴门内大街864号4楼', '1995-11-04', 0, 0, 'achimi', '2019-04-30', 'cmau', '2022-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS064899530436', 'Sharon Mendez', 1, '+1 213-731-3725', 3, '916992362630485285', '833 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1990-08-28', 0, 0, 'sharon119', '2015-11-01', 'mendsharon', '2000-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS698053338232', 'Carl Perry', 0, '+86 755-658-1924', 1, '568882237233477344', 'Room 4, CR Building, 876 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1985-03-13', 0, 0, 'caperry1007', '2018-10-13', 'perrca9', '2005-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS134428327948', 'Francis Gibson', 0, '+81 74-850-7215', 3, '560892692058839284', '日本ならし学園南三丁目9番17号23号室', '1985-05-04', 0, 0, 'francisgibso03', '2019-02-09', 'francisgibson5', '2001-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS911130483477', 'Eugene Roberts', 0, '+44 7675 969549', 3, '856410299132119519', 'Unit 24, Oxford Eco Centre, 375 Hanover Street, London, W1S 1YD, United Kingdom', '1986-07-21', 0, 0, 'robeeugene', '2000-11-18', 'robertseugen', '2010-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS214790180792', '江國明', 1, '+81 3-9626-1391', 1, '945058667759200737', '日本東京品川区東五反田五丁目2番17号32号室', '1993-09-20', 0, 0, 'kwokmingkon', '2004-06-15', 'kong8', '2000-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS290531534858', 'Gerald Clark', 1, '+86 197-2622-0637', 2, '544485412589639756', 'No.7 building, 510 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1994-06-14', 0, 0, 'geraldcla804', '2001-07-15', 'gerclar2', '2009-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS894078615103', 'Edwin Henry', 1, '+86 157-5270-1607', 2, '191042553465203421', '中国成都市锦江区红星路三段446号7室', '1987-02-20', 0, 0, 'henryedwin1', '2021-03-17', 'edwinhenry8', '2016-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS327233009659', '莫秀英', 1, '+86 196-4962-5621', 2, '992990653318758385', 'No.41 building, 96 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1989-08-08', 0, 0, 'moxiuying', '2014-07-16', 'mox', '2009-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS600954156360', '高木聖子', 1, '+44 5709 844032', 2, '083618317224096285', 'Flat 44, 731 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1989-07-24', 0, 0, 'takags2', '2016-09-10', 'takagise', '2006-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS022778162933', '田安琪', 0, '+81 80-0204-1761', 2, '286399441095532904', '28F, 16 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1989-01-13', 0, 0, 'tonkay', '2020-09-03', 'onkay56', '2015-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS475518508665', 'Mark Dixon', 0, '+44 (1223) 92 0771', 0, '342592325667797322', 'Unit 14, Oxford Eco Centre, 876 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1992-12-27', 0, 0, 'dixonmar', '2021-03-28', 'markdix925', '2010-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS418778544305', '蘇志遠', 1, '+1 838-236-6651', 1, '097336972223995225', '344 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1989-09-04', 0, 0, 'sochiyuen', '2000-12-11', 'cyso', '2010-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS885471131128', '严嘉伦', 0, '+81 11-184-4153', 3, '667729891840479690', '日本札幌白石区菊水三条五丁目2番11号33号室', '1992-07-11', 0, 0, 'jiayan', '2001-07-20', 'jiaya', '2021-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS405161796418', 'Craig Robinson', 1, '+81 52-048-7918', 3, '361857272170151720', 'Rm. 38, 7 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1995-09-16', 0, 0, 'robinsoncraig8', '2014-01-29', 'craig6', '2019-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS051211677635', 'Jean Phillips', 1, '+81 52-096-3202', 3, '615836253852557497', '日本なごやし守山区瀬古東二丁目171番8号2階', '1986-04-17', 0, 0, 'jeanphil', '2021-05-05', 'philljean', '2006-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS158582761914', '彭宇宁', 1, '+44 (20) 1157 4607', 1, '024341860587603662', 'Flat 11, 921 Maddox Street, London, W1S 1PU, United Kingdom', '1996-12-13', 0, 0, 'yunipen', '2007-11-12', 'yunpeng', '2020-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS760997577796', 'Edward Gray', 0, '+81 3-3322-8165', 0, '683779165321495634', '12F, 1-5-17, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1991-02-16', 0, 0, 'gray329', '2015-05-17', 'graedward', '2003-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS267990578954', '任云熙', 0, '+44 (116) 414 2004', 3, '840453228729267560', 'No.28 Main building, 877 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1995-11-06', 0, 0, 'yunxire', '2000-04-29', 'yren1', '2017-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS302708192322', '汪岚', 1, '+1 838-510-5712', 3, '747424795891356108', '514 Broadway Apartment 19, Albany, NY 12207, United States', '1991-07-07', 0, 0, 'lwang', '2004-10-29', 'lanwang8', '2016-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS943681991934', '杜岚', 0, '+81 70-6209-0779', 3, '834190504681342434', 'Rm. 9, 2 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-05-29', 0, 0, 'dlan', '2017-05-04', 'dulan', '2020-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS449474531794', 'Louis Parker', 0, '+86 20-157-6666', 0, '137918198300889061', '中国广州市海珠区江南西路817号43室', '1987-07-02', 0, 0, 'louis501', '2013-07-14', 'louipa6', '2012-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS973497148976', '萧云熙', 0, '+44 5987 726592', 1, '929927143453095286', 'Unit 1, Oxford Eco Centre, 213 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1987-02-09', 0, 0, 'yunxi2', '2000-06-19', 'yunx', '2008-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS561156019400', '彭安琪', 1, '+44 (121) 601 4999', 0, '416691614965633336', 'Flat 11, 69 New Street, Birmingham, B2 4DB, United Kingdom', '1998-02-17', 0, 0, 'anqi51', '2014-03-09', 'penga', '2010-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS720482544856', '許詩君', 1, '+86 28-2112-5570', 2, '304178449803269900', 'Room 50, No. 375, Shuangqing Rd, Chenghua District, Chengdu, China', '1998-07-20', 0, 0, 'szekwan10', '2001-04-14', 'skh1', '2010-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS622945489425', '區明詩', 0, '+86 165-7790-5071', 3, '294498035822893685', '中国上海市徐汇区虹桥路934号42栋', '1986-03-21', 0, 0, 'aumingsze', '2000-09-27', 'msau', '2000-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS324269287322', '阿部翼', 0, '+1 312-349-3270', 4, '728596976303335084', '538 Rush Street Apartment 15, Chicago, IL 60611, United States', '1985-03-13', 0, 0, 'abtsu1', '2016-02-27', 'abet', '2004-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS285876306435', '原田紗良', 0, '+86 170-1615-8071', 1, '194092066747896713', '中国中山紫马岭商圈中山五路412号34号楼', '1998-09-20', 0, 0, 'sarah', '2012-11-01', 'has10', '2021-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS315806962759', '秦杰宏', 0, '+81 80-9718-9850', 2, '765796762890764059', '日本おおさかし西成区出城一丁目1番16号2号室', '1992-04-04', 0, 0, 'qjiehong', '2015-03-16', 'jiehongqin', '2021-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS745275200419', '姜梓晴', 1, '+86 760-794-7083', 2, '989763084861268708', '中国中山天河区大信商圈大信南路880号20室', '1990-10-25', 0, 0, 'changtszching2', '2012-05-03', 'tszching7', '2020-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS756645227930', '呂慧珊', 1, '+86 760-991-7803', 2, '569690466081804331', '中国中山乐丰六路326号43栋', '1997-07-30', 0, 0, 'luiwaisan7', '2005-10-26', 'luiwai', '2011-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS808290192342', '餘發', 1, '+44 5085 935638', 2, '362596453182279407', 'Unit 15, Oxford Eco Centre, 621 New Street, Birmingham, B2 4DB, United Kingdom', '1985-09-27', 0, 0, 'yue4', '2006-06-17', 'yue210', '2004-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS343458923133', 'Patrick Hicks', 0, '+81 66-498-5256', 1, '241907844116016197', '日本おおさかし近江堂一丁目7番13号35階', '1992-01-21', 0, 0, 'hp303', '2013-03-14', 'hicks1214', '2019-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS422539245861', '盧惠敏', 1, '+86 197-6033-3565', 3, '999006407290706766', 'Room 14, 270 Yueliu Rd, Fangshan District, Beijing, China', '1996-04-05', 0, 0, 'waimanlo', '2018-10-09', 'lowm', '2010-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS217182003463', '朱璐', 0, '+81 90-0489-7372', 1, '676478943449164950', 'Rm. 43, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-10-20', 0, 0, 'zhulu717', '2009-05-31', 'lu82', '2000-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS658026484798', 'Albert Lopez', 1, '+81 80-7052-9373', 3, '513476310104576701', 'Rm. 28, 1-7-8 Saidaiji Akodacho, Nara, Japan', '1998-08-20', 0, 0, 'lalbert14', '2002-02-15', 'lopeza', '2005-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS689525513688', '韦子异', 0, '+86 755-225-6499', 3, '033109304516799845', 'Room 9, CR Building, 163 Shennan Ave, Futian District, Shenzhen, China', '1998-06-12', 0, 0, 'weiziyi', '2015-04-02', 'ziyiwei', '2009-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS065805453338', '翁發', 0, '+81 66-895-8969', 1, '307460788322639697', '21-kai, 1-7-10 Omido, Higashiosaka, Osaka, Japan', '1998-04-21', 0, 0, 'faty', '2009-12-18', 'faty8', '2016-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS963887965325', '大野大地', 1, '+44 7152 954975', 1, '727036965830636466', 'Block 10, 66 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1997-03-26', 0, 0, 'daichiono', '2005-04-11', 'daichi9', '2006-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS316476542591', '彭慧珊', 1, '+86 10-2502-0884', 4, '397868060889006995', '中国北京市东城区东单王府井东街288号29室', '1997-08-11', 0, 0, 'wspang', '2014-02-07', 'waisanp', '2016-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS671003763227', '中島玲奈', 1, '+86 179-0189-5854', 4, '576207310253276679', '中国深圳福田区景田东一街836号华润大厦42室', '1993-01-16', 0, 0, 'nakajimare', '2010-11-01', 'nakaren', '2013-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS977663720155', '田晓明', 0, '+86 21-0575-0329', 3, '784282590863494519', '中国上海市徐汇区虹桥路923号27室', '1998-09-04', 0, 0, 'tiaxiaoming1986', '2014-09-01', 'xtian8', '2006-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS014365971446', 'Carrie Alvarez', 0, '+81 80-9804-7035', 2, '521521606383419960', 'Rm. 4, 13-3-7 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1993-12-02', 0, 0, 'carrieal', '2010-01-08', 'alvarezca', '2001-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS808507664664', '许詩涵', 0, '+81 52-156-5264', 0, '952670989117157344', 'Rm. 19, 10 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1998-10-08', 0, 0, 'shihaxu6', '2018-06-29', 'xushi47', '2003-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS349899784962', '廖安琪', 1, '+86 160-3929-8007', 1, '135149146955604177', 'Room 10, No. 602, Shuangqing Rd, Chenghua District, Chengdu, China', '1994-02-27', 0, 0, 'anqi1', '2002-07-04', 'anqiliao', '2021-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS759167573944', '邵惠妹', 1, '+86 155-0761-5904', 2, '227096460996608736', '中国北京市東城区東直門內大街397号33栋', '1996-01-11', 0, 0, 'shui', '2004-01-03', 'sihuimei2', '2001-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS386678821229', '莫震南', 1, '+44 5372 859325', 0, '600377702067051376', 'No.27 Main building, 786 Maddox Street, London, W1S 1PU, United Kingdom', '1997-03-01', 0, 0, 'zhennan810', '2006-08-12', 'zhennan809', '2020-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS347745294170', 'Tina Munoz', 0, '+86 20-459-1137', 1, '746874504598354972', '中国广州市海珠区江南西路815号13楼', '1993-06-05', 0, 0, 'munozt', '2018-11-30', 'munot', '2008-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS868783966058', '徐睿', 0, '+44 5098 339139', 0, '018347848734486447', 'Block 16, 404 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1986-07-17', 0, 0, 'xru1942', '2021-02-10', 'xur', '2019-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS609375399906', 'Lori Kelley', 0, '+86 28-8102-9140', 3, '999865840436774965', '22F, No.239, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1985-07-21', 0, 0, 'lori93', '2018-05-29', 'kelley1', '2017-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS972244697769', 'Pamela Tucker', 0, '+81 90-2883-7267', 1, '148381408938466001', '日本ならし西大寺赤田町一丁目7番6号15階', '1996-09-10', 0, 0, 'patucker', '2000-03-12', 'tuckerpamela', '2007-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS006155582809', '王致远', 0, '+81 74-652-5039', 3, '718875191460190262', 'Rm. 25, 1-7-18 Saidaiji Akodacho, Nara, Japan', '1990-10-19', 0, 0, 'wang305', '2015-01-26', 'wangzhiyuan', '2000-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS873260148608', '林宇宁', 0, '+1 838-024-7870', 2, '530689050112325540', '140 Central Avenue Suite 14, Albany, NY 12206, United States', '1994-08-24', 0, 0, 'yuninglin', '2008-03-01', 'liny', '2014-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS637919040598', 'Don Warren', 1, '+86 190-4253-3491', 2, '483523947839472157', 'Room 13, CR Building, 802 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1995-01-10', 0, 0, 'wd15', '2006-02-15', 'donw', '2006-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS843611716244', 'Stanley Cooper', 0, '+44 (151) 099 3611', 3, '872078364479078607', 'Unit 27, Oxford Eco Centre, 527 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1989-01-13', 0, 0, 'costanley', '2022-02-06', 'coopers', '2010-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS309934912266', '刘杰宏', 1, '+86 769-2348-3655', 1, '654354121285652788', 'No.31 building, 666 Huanqu South Street 2nd Alley, Dongguan, China', '1988-06-11', 0, 0, 'liujiehong', '2019-07-16', 'liujiehong609', '2019-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS243510398150', 'Roger Gardner', 0, '+81 52-313-4640', 2, '332382770492883441', '21F, 3-19-15 Shimizu, Kita Ward, Nagoya, Japan', '1996-06-19', 0, 0, 'grog6', '2005-10-11', 'rogg', '2005-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS902769650710', '三浦百花', 0, '+1 213-390-1602', 1, '536994593529958974', '713 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1995-10-24', 0, 0, 'momokamiura108', '2020-03-18', 'mmomo', '2012-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS685066355231', 'Ryan Parker', 1, '+81 66-297-6272', 2, '024235453824698244', 'Rm. 23, 3-27-6 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1990-10-30', 0, 0, 'rparker', '2000-02-06', 'parkerr', '2012-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS838370198689', '叶璐', 1, '+44 7858 496462', 0, '651317943783987340', 'Flat 26, 727 Hanover St, Liverpool, L1 4AF, United Kingdom', '1986-06-16', 0, 0, 'luy', '2002-05-02', 'lye90', '2012-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS221700545352', 'Evelyn Diaz', 0, '+81 74-611-0851', 3, '822770300238266688', '日本ならし西大寺赤田町一丁目7番12号7号室', '1992-12-14', 0, 0, 'evelyn109', '2006-12-11', 'evelyd1971', '2021-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS639670203246', '池田大地', 0, '+44 (151) 172 3182', 2, '463166908531052486', 'Unit 29, Oxford Eco Centre, 202 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1993-09-06', 0, 0, 'daichiikeda2', '2020-08-12', 'ida8', '2017-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS973310859921', '方明詩', 1, '+44 (20) 8883 6382', 3, '945526331724744311', 'Unit 10, Oxford Eco Centre, 208 Maddox Street, London, W1S 1PU, United Kingdom', '1989-05-18', 0, 0, 'mingsze7', '2002-04-22', 'mingsze20', '2011-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS752708633252', '安藤蒼士', 0, '+81 66-929-3167', 1, '406228199209614987', '日本おおさかし平野区加美東四丁目9番20号19階', '1991-02-24', 0, 0, 'aoshiando105', '2018-05-20', 'aoshia', '2007-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS122314118592', 'Sharon Grant', 1, '+81 74-112-1940', 3, '196370303205539579', '日本ならし大和郡山市本庄町一丁目1番1号4号室', '1994-04-14', 0, 0, 'sharon8', '2006-07-12', 'sharongra2017', '2014-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS917786308378', '何睿', 1, '+86 769-108-2036', 0, '605698314987939825', '中国东莞环区南街二巷917号19栋', '1995-06-06', 0, 0, 'rui7', '2003-10-14', 'ruih', '2013-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS475483314025', '石井葵', 0, '+81 90-1240-6939', 0, '711380841862117422', '日本札幌清田区真栄四条五丁目19番10号20階', '1996-12-14', 0, 0, 'aoiishi', '2000-07-22', 'ishiao', '2007-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS729424548461', 'Cheryl Mitchell', 0, '+1 212-632-2143', 2, '795229802072492337', '882 Fifth Avenue Apartment 11, New York, NY 10017, United States', '1986-11-17', 0, 0, 'mitchellc', '2017-09-27', 'cmitchell', '2009-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS886928303047', '太田葵', 1, '+86 10-111-1005', 3, '461660914821803884', 'No.28 building, 445 East Wangfujing Street, Dongcheng District , Beijing, China', '1990-05-15', 0, 0, 'otaa', '2014-05-10', 'otaao', '2012-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS489028801076', '後藤詩乃', 0, '+81 66-265-1084', 2, '636983291374803900', '43-kai, 2-1-19 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1986-12-31', 0, 0, 'goto4', '2020-07-08', 'shinogot', '2010-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS412166414648', '苑國權', 1, '+86 769-2142-3784', 0, '925880898415653326', 'No.21 building, 459 Huanqu South Street 2nd Alley, Dongguan, China', '1990-12-22', 0, 0, 'yuenkk16', '2016-04-24', 'yuen10', '2005-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS125124747248', 'Tina Moore', 1, '+86 10-950-1432', 1, '961841094291648328', '中国北京市東城区東直門內大街938号47栋', '1994-04-25', 0, 0, 'mtina9', '2001-09-19', 'tinmoore2', '2004-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS804778676752', '萬力申', 1, '+81 90-2646-9369', 2, '652482382801891926', '日本ならし西大寺赤田町一丁目7番20号19階', '1990-03-13', 0, 0, 'mengliksun1207', '2013-04-13', 'menliksun', '2011-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS481586266577', '竹内美咲', 1, '+81 70-4236-3732', 1, '373577319078308951', '46-kai, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1986-11-03', 0, 0, 'misatakeuchi', '2009-09-15', 'misaki1015', '2019-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS483329454930', '藤頴璇', 1, '+81 66-681-9926', 2, '639788431901915756', '38-kai, 2-1-13 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1994-08-24', 0, 0, 'wingsuen6', '2003-03-08', 'tang1', '2014-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS452838774743', '伊藤光莉', 0, '+86 21-372-5188', 3, '975168941436591609', 'Room 38, CR Building, 84 Jianxiang Rd, Pudong, Shanghai, China', '1992-12-27', 0, 0, 'hikari74', '2008-09-20', 'itohikari', '2007-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS892483154006', 'Louis Harris', 0, '+44 (20) 3023 2284', 2, '493468031361391384', 'Unit 11, Oxford Eco Centre, 633 Regent Street, London, W1B 2LX, United Kingdom', '1987-09-05', 0, 0, 'harrilouis', '2002-04-03', 'harloui', '2010-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS213127389568', '武田結翔', 0, '+1 312-278-2841', 3, '304393457967339623', '22 Rush Street Suite 46, Chicago, IL 60611, United States', '1985-03-14', 0, 0, 'yuitotakeda', '2000-03-06', 'takyuito', '2004-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS336339098102', '馮國明', 1, '+86 160-2631-8075', 0, '382968512272873232', '中国中山京华商圈华夏街849号华润大厦32室', '1988-09-05', 0, 0, 'fung2', '2008-11-30', 'kmfun', '2012-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS710194761871', '高田桜', 1, '+1 718-067-7114', 1, '481659419972203844', '796 Bergen St Apartment 36, Brooklyn, NY 11217, United States', '1990-12-23', 0, 0, 'satakada5', '2004-06-14', 'takadas10', '2010-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS286602035679', 'Sandra Allen', 0, '+86 134-7509-7460', 3, '491733108805583344', 'Room 25, CR Building, 938 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1995-02-12', 0, 0, 'sandra829', '2008-08-07', 'allesandra', '2020-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS815135051216', '朱致远', 0, '+44 (151) 636 3490', 2, '355192678309147221', 'No.7 Main building, 193 Hanover St, Liverpool, L1 4AF, United Kingdom', '1995-03-21', 0, 0, 'zhuzhiyuan', '2006-08-24', 'zhuzhiyuan', '2014-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS407361383483', '何德華', 1, '+1 213-829-1792', 1, '585721865199385781', '384 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1985-03-07', 0, 0, 'htw', '2006-10-27', 'hotw', '2010-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS262481233462', '梁子异', 1, '+86 755-006-9785', 2, '742413016774317759', '中国深圳罗湖区田贝一路709号34楼', '1994-01-08', 0, 0, 'liangziyi1979', '2020-03-27', 'zl213', '2004-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS978386222342', 'Jeffery Silva', 0, '+86 138-7115-6685', 1, '186236959145861469', 'Room 45, No.124, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1998-11-13', 0, 0, 'silvajeffe', '2008-11-23', 'jefferysilva408', '2001-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS087059278556', '呂志明', 1, '+44 5199 854034', 4, '539117083247843622', 'No.18 Main building, 802 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1991-01-24', 0, 0, 'luichiming', '2005-03-13', 'luichim', '2016-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS089930412483', '湯富城', 0, '+81 11-793-7042', 1, '769048191258637081', '32F, 5-4-19 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-12-05', 0, 0, 'fushingtong', '2007-01-19', 'tonfs6', '2007-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS461513988427', '薛子异', 1, '+86 188-5630-3582', 2, '992229617324703012', '16F, 677 Jingtian East 1st St, Futian District, Shenzhen, China', '1986-03-24', 0, 0, 'ziyix904', '2012-02-08', 'xziyi', '2002-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS423610694215', '叶嘉伦', 1, '+86 161-3368-6547', 2, '135686820999596349', '中国上海市黄浦区淮海中路28号华润大厦36室', '1997-07-11', 0, 0, 'yejialu617', '2012-12-05', 'ye430', '2004-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS539711432401', '贺宇宁', 0, '+1 312-777-0430', 4, '445997839493460819', '434 North Michigan Ave Apartment 45, Chicago, IL 60611, United States', '1985-05-17', 0, 0, 'heyunin', '2014-07-06', 'yunih1966', '2006-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS207683848505', '蔣安娜', 0, '+81 70-7851-2174', 3, '826320013149145223', '24F, 5-2-16 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-01-20', 0, 0, 'chiaonna', '2005-11-11', 'chianon69', '2016-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS412935000734', '常秀英', 0, '+81 66-858-5399', 3, '224134258316098409', '7-kai, 2-1-9 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-07-18', 0, 0, 'xiuying527', '2014-09-10', 'chx', '2018-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS491248670390', '區裕玲', 0, '+81 74-190-0091', 3, '551370399712493492', '日本ならし大和郡山市本庄町一丁目1番17号23階', '1998-01-01', 0, 0, 'auyu', '2021-03-06', 'yulingau9', '2001-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS684200612618', '雷睿', 0, '+81 80-1663-3346', 3, '955236123513547211', '19F, 2-1-5 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-02-02', 0, 0, 'rul', '2014-04-08', 'rui309', '2013-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS871078635281', '佐藤美緒', 1, '+81 70-8545-9957', 4, '944998190672037804', '日本おおさかし平野区加美東四丁目9番20号44階', '1991-11-24', 0, 0, 'misato', '2002-04-15', 'mios', '2014-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS459130887302', 'Judith Alvarez', 1, '+81 80-0285-2112', 3, '864181654774453030', 'Rm. 25, 3-19-14 Shimizu, Kita Ward, Nagoya, Japan', '1993-06-26', 0, 0, 'alvarezj5', '2013-11-24', 'alvarezjud903', '2006-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS378129871692', '岩崎花', 1, '+86 760-8925-6573', 1, '121831637081616676', '中国中山紫马岭商圈中山五路556号华润大厦1室', '1985-04-01', 0, 0, 'hanaiw', '2019-02-03', 'iwasakihan', '2006-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS172649645204', '崔嘉伦', 0, '+86 755-185-8791', 2, '383360767053817997', '15F, 970 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1993-03-15', 0, 0, 'jialun629', '2004-11-30', 'jialcui', '2007-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS862416234753', '贾晓明', 0, '+44 (161) 621 6323', 1, '224492768252242416', 'Unit 4, Oxford Eco Centre, 282 Portland St, Manchester, M1 3LA, United Kingdom', '1990-07-23', 0, 0, 'jiaxia1960', '2012-05-01', 'jiaxiaoming1108', '2016-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS632565595873', '内田一輝', 1, '+81 11-559-7309', 2, '395664163650233865', '日本札幌中央区宮の森四条六丁目1番5号31階', '1998-01-14', 0, 0, 'uchida3', '2006-10-30', 'ikkuc730', '2014-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS068733513573', '石田絢斗', 1, '+86 760-5642-8418', 1, '273467309002934292', '中国中山紫马岭商圈中山五路25号4楼', '1997-08-22', 0, 0, 'ai48', '2011-06-20', 'ayaish10', '2014-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS333497730653', '太田樹', 0, '+81 80-9858-4287', 0, '422042804137219944', 'Rm. 47, 6-1-20, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1995-03-17', 0, 0, 'oitsuki5', '2009-04-13', 'iota', '2009-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS529729377267', 'Herbert Vargas', 1, '+86 144-1346-8833', 3, '226172610677684554', '中国东莞坑美十五巷59号华润大厦27室', '1987-04-18', 0, 0, 'hvargas', '2018-06-06', 'hv95', '2015-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS781543917517', 'Edward West', 1, '+81 70-5856-9844', 2, '388141140216511135', '日本なごやし北区清水三丁目19番15号6号室', '1988-02-14', 0, 0, 'edwardwest1', '2015-08-19', 'wedwar', '2014-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS353930867770', '島田美咲', 1, '+44 (20) 0470 5215', 2, '448450822813511191', 'No.43 Main building, 949 Hanover Street, London, W1S 1YD, United Kingdom', '1985-01-31', 0, 0, 'shimmisaki8', '2014-08-27', 'shimada9', '2020-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS119398335906', '古明', 0, '+44 7751 581014', 3, '630639029186555595', 'No.15 Main building, 275 Hanover Street, London, W1S 1YD, United Kingdom', '1998-07-16', 0, 0, 'km407', '2012-04-10', 'kuming', '2003-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS997603488447', '菅原大輔', 0, '+1 212-762-0859', 1, '101386163825435046', '607 Bank Street Apt 48, New York, NY 10014, United States', '1986-05-03', 0, 0, 'dsu', '2014-10-02', 'sugawaradaisuke', '2016-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS250649911327', '小川桜', 1, '+44 (1223) 08 7607', 4, '030936734579613432', 'Flat 2, 305 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1987-11-30', 0, 0, 'osakura', '2008-06-17', 'ogawa98', '2008-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS178918547132', 'Steve Flores', 1, '+81 90-4968-1448', 4, '349660602219790499', '24F, 1 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1997-05-12', 0, 0, 'florsteve', '2009-09-21', 'flores1', '2010-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS807065811915', 'Thelma Robinson', 1, '+81 52-174-8455', 0, '456677217698795729', '日本なごやし守山区瀬古東二丁目171番5号27号室', '1990-12-06', 0, 0, 'thelmarobinson8', '2016-12-30', 'robinsonth', '2021-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS572724008489', '高橋蓮', 0, '+81 70-7463-6389', 1, '617080410421082164', '日本ならし学園南三丁目9番5号20階', '1994-02-07', 0, 0, 'rentakah', '2008-08-11', 'ren87', '2011-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS902632613812', 'Carol Watson', 1, '+86 197-8191-4411', 2, '921951504085258652', 'No.50 building, 688 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1989-03-14', 0, 0, 'watsc', '2013-12-30', 'carolw', '2010-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS357000835468', '中川翼', 1, '+44 5517 685427', 2, '973096804427130024', 'Flat 33, 808 Park End St, Oxford, OX1 1JD, United Kingdom', '1998-04-09', 0, 0, 'nakagawatsub', '2003-10-19', 'tnakagawa9', '2000-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS553314672742', '山崎蓮', 1, '+81 70-4856-1948', 1, '142499012052015042', '11F, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1995-05-26', 0, 0, 'reny', '2010-06-18', 'reyamazaki', '2020-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS027904794329', '翁俊宇', 1, '+86 145-4848-7289', 2, '868767714526458562', 'No.29 building, 300 Jianxiang Rd, Pudong, Shanghai, China', '1990-10-25', 0, 0, 'chunyuy', '2008-09-17', 'yungcy', '2018-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS348424751363', 'Robert Brown', 1, '+86 130-3621-7862', 2, '249277277031672946', '中国北京市西城区西長安街981号华润大厦10室', '1997-08-27', 0, 0, 'robertbrown', '2011-02-04', 'robbrown1', '2013-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS805563285906', '高詠詩', 0, '+86 28-691-5228', 3, '909869094433931958', '中国成都市锦江区红星路三段446号48号楼', '1996-03-14', 0, 0, 'wskao66', '2020-03-02', 'kao67', '2008-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS110818788201', 'Justin Brooks', 0, '+81 74-432-4493', 4, '886250298017578874', '日本ならし大和郡山市本庄町一丁目1番10号48階', '1990-11-24', 0, 0, 'bjustin', '2006-01-20', 'brooks6', '2002-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS295547792132', 'Philip Cooper', 1, '+86 164-5678-8749', 3, '124534575349228265', '49F, 635 Huanqu South Street 2nd Alley, Dongguan, China', '1994-05-18', 0, 0, 'coophilip', '2016-10-02', 'philipcoop1985', '2010-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS591579405402', '文安娜', 0, '+81 70-5523-7987', 1, '057457054041730607', '1-kai, 4-9-9 Kamihigashi, Hirano Ward, Osaka, Japan', '1986-04-20', 0, 0, 'onna1997', '2013-06-14', 'manon', '2001-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS216088609586', 'Ryan Gonzalez', 0, '+86 163-0732-5409', 1, '200396939823189725', 'Room 12, No. 166, Shuangqing Rd, Chenghua District, Chengdu, China', '1990-07-05', 0, 0, 'rgon4', '2009-06-19', 'gryan', '2016-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS642791035620', 'Jesse Howard', 1, '+81 74-479-3163', 3, '279554727265940713', '日本ならし西大寺赤田町一丁目7番10号27階', '1991-03-22', 0, 0, 'jesseh', '2021-01-29', 'hjesse1994', '2004-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS485980932454', '董秀英', 0, '+81 66-871-3655', 3, '351326458479162172', '34-kai, 2-1-2 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1986-09-07', 0, 0, 'xiuyingdon1129', '2013-12-28', 'dx1', '2000-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS741469135701', '斎藤樹', 0, '+81 66-818-7908', 1, '454227262675324865', 'Rm. 30, 2-1-2 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1994-04-22', 0, 0, 'itsaito919', '2019-11-17', 'itsuki9', '2003-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS954689374325', 'Joanne Stephens', 1, '+81 90-5298-9205', 1, '682260604122177381', 'Rm. 8, 2-1-6 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1987-09-01', 0, 0, 'stephens66', '2017-06-29', 'stephensjoann10', '2012-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS184720208990', '毛震南', 1, '+44 (161) 213 8387', 2, '715390634021651160', 'Block 14, 472 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-06-21', 0, 0, 'zhennm', '2017-09-27', 'zhennanmao', '2004-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS370740001228', 'Katherine Woods', 1, '+86 769-6450-3122', 3, '862501097774065926', '中国东莞东泰五街565号37栋', '1990-10-03', 0, 0, 'wk2001', '2020-01-05', 'woodk10', '2008-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS497664805757', '藤原結翔', 0, '+81 52-435-4286', 3, '031311229969159712', '43F, 2 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-02-03', 0, 0, 'yuito1986', '2003-02-02', 'yuitf7', '2018-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS753288015412', '車國榮', 0, '+1 330-088-7901', 4, '499026162165301381', '405 Collier Road Apartment 37, Akron, OH 44320, United States', '1989-12-10', 0, 0, 'kwokwingch7', '2015-01-17', 'kwche10', '2004-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS843617676564', 'Charlotte Boyd', 0, '+44 (121) 957 3139', 4, '783926957151892525', 'Unit 26, Oxford Eco Centre, 998 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1986-05-04', 0, 0, 'boydcharl69', '2001-07-15', 'boyd1', '2018-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS051514001544', '成詠詩', 0, '+1 330-404-4271', 2, '461315085267999576', '270 West Market Street 3rd Floor, Akron, OH 44333, United States', '1997-05-09', 0, 0, 'shingws', '2001-07-02', 'shingwing20', '2017-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS447225668826', '羅慧琳', 0, '+1 614-975-3131', 1, '611226298829557740', '500 East Alley Apt 25, Columbus, GA 43201, United States', '1985-06-13', 0, 0, 'wailamlo', '2012-10-02', 'wailam6', '2017-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS880874600290', 'Ray Freeman', 1, '+86 10-9642-4045', 4, '730075196950959974', 'No.21 building, 637 Dong Zhi Men, Dongcheng District, Beijing, China', '1989-02-17', 0, 0, 'freemanray7', '2019-08-23', 'rayfree', '2006-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS023792628701', '邹璐', 1, '+44 (161) 740 5581', 3, '600724284635123160', 'No.5 Main building, 269 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-12-11', 0, 0, 'zolu228', '2013-01-28', 'luzou11', '2021-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS820773484366', '梁致远', 0, '+81 80-5911-0316', 3, '835386060407966680', 'Rm. 43, 13-3-16 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1988-10-29', 0, 0, 'liang10', '2012-05-03', 'zliang42', '2001-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS463090832382', 'Frank Hall', 1, '+86 166-0324-4066', 3, '163807221532572267', '中国成都市锦江区人民南路四段129号华润大厦1室', '1998-05-18', 0, 0, 'hall7', '2007-09-07', 'hall6', '2005-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS448495818981', '井上花', 1, '+81 90-4181-2477', 1, '765014702128460486', '日本札幌白石区菊水三条五丁目2番8号5階', '1989-04-29', 0, 0, 'haino1982', '2013-05-23', 'hinoue', '2015-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS083139494616', 'Brenda Smith', 1, '+86 181-7007-5995', 1, '192541011246378361', '7F, 165 Dongtai 5th St, Dongguan, China', '1999-01-29', 0, 0, 'brensmith', '2001-11-08', 'smitb', '2015-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS904672313027', '容浩然', 1, '+81 80-8602-4782', 0, '725982571869118366', '31-kai, 1-7-4 Omido, Higashiosaka, Osaka, Japan', '1991-09-07', 0, 0, 'hyy', '2016-12-19', 'yhy', '2002-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS572310538905', '高嘉伦', 0, '+81 70-3339-7339', 2, '428495147402980089', '1-kai, 6-1-16, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-11-14', 0, 0, 'gaoj', '2009-11-03', 'jialg1', '2012-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS568581980251', 'Carmen Murphy', 1, '+81 66-046-3465', 1, '830885448501868952', '日本おおさかし西成区出城一丁目1番19号39号室', '1988-04-06', 0, 0, 'murphy1962', '2011-05-08', 'murphyc', '2008-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS424975141204', 'Daniel Stevens', 1, '+81 70-8752-3508', 2, '358319400495407530', '日本ならし大和郡山市本庄町一丁目1番20号46階', '1987-10-02', 0, 0, 'sdan', '2020-12-25', 'daniel6', '2005-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS315048655487', 'Anita Miller', 1, '+81 3-6490-4909', 3, '880635732958837863', '14F, 3-15-12 Ginza, Chuo-ku, Tokyo, Japan', '1987-12-16', 0, 0, 'millera', '2006-06-22', 'milleranit', '2006-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS909442228135', '袁裕玲', 0, '+44 5138 341994', 1, '909147832147024985', 'Flat 19, 636 Portland St, Manchester, M1 3LA, United Kingdom', '1989-02-10', 0, 0, 'ylyuen', '2019-08-07', 'yulingyuen', '2013-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS776192098829', '郭詩涵', 1, '+81 90-7854-0016', 3, '296377441811919576', '日本東京中央区銀座三丁目12番11号5階', '1988-03-27', 0, 0, 'shihanguo', '2016-07-02', 'guo7', '2012-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS271082353284', '文力申', 0, '+81 80-8813-0065', 1, '860202798181765128', '7-kai, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1993-07-26', 0, 0, 'mals', '2000-11-19', 'liksunman', '2001-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS174876261805', '谢晓明', 1, '+86 188-3841-8130', 3, '533586949162446776', '中国北京市东城区东单王府井东街534号46室', '1988-07-13', 0, 0, 'xiaomxie56', '2015-12-25', 'xie711', '2003-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS904899980352', '平野架純', 0, '+86 760-7513-7383', 2, '775231440967165805', '中国中山乐丰六路456号22楼', '1990-04-20', 0, 0, 'hiranokasu', '2010-03-14', 'hik', '2002-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS262157637649', '蘇嘉欣', 1, '+86 133-8856-4587', 4, '628160604331302796', 'Room 3, 986 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1989-12-28', 0, 0, 'kyso2001', '2005-04-25', 'soky44', '2013-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS017695689740', '姚晓明', 0, '+81 11-410-2587', 4, '047768017002383133', '3-kai, 13-3-10 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1997-08-18', 0, 0, 'yaxiaoming', '2003-01-19', 'xiaomingyao74', '2015-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS960757195675', '菊地湊', 0, '+86 174-1286-9779', 1, '900121143127236188', 'Room 9, 726 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1989-03-10', 0, 0, 'kikuchi908', '2018-09-19', 'kikuchimi', '2020-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS012832200601', 'Clarence Robinson', 0, '+1 718-898-9096', 2, '285958452206634054', '703 1st Ave Apt 43, Brooklyn, NY 11220, United States', '1998-06-17', 0, 0, 'robinclar', '2020-02-09', 'robinson3', '2012-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS434422195148', '菊地明菜', 0, '+81 11-181-1689', 2, '154711437003210029', '日本札幌白石区菊水三条五丁目2番10号32階', '1987-01-27', 0, 0, 'aki6', '2018-10-10', 'kikua', '2017-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS286719015481', '孙璐', 1, '+1 718-566-5012', 1, '386374029787525245', '66 Columbia St Apartment 14, Brooklyn, NY 11231, United States', '1987-08-26', 0, 0, 'slu', '2016-04-20', 'sunl904', '2019-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS829908968134', '鈴木葉月', 1, '+81 66-641-4473', 1, '199306143783890426', '4F, 3-27-15 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1994-09-28', 0, 0, 'suzukihazuki', '2014-11-19', 'suzuhazuk1031', '2018-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS754702985337', '于秀英', 0, '+1 838-826-3051', 2, '958571171016042549', '470 Broadway 3rd Floor, Albany, NY 12207, United States', '1991-07-14', 0, 0, 'xiuying2', '2010-12-28', 'yuxiuyi', '2002-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS513823254665', '邹致远', 1, '+1 213-866-4307', 4, '585593449940779702', '6 Grape Street Suite 38, Los Angeles, CA 90002, United States', '1998-09-23', 0, 0, 'zzhiyuan727', '2001-04-01', 'zhiyuan803', '2016-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS690011551444', '清水美月', 0, '+1 213-571-9340', 3, '028983349003403507', '978 Alameda Street Suite 16, Los Angeles, CA 90002, United States', '1986-12-05', 0, 0, 'mitsuki73', '2002-01-02', 'shimizumitsuki', '2012-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS009913887837', '向詠詩', 0, '+44 5464 944512', 2, '546359206498158066', 'Unit 17, Oxford Eco Centre, 118 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1989-05-30', 0, 0, 'heungws218', '2017-07-20', 'heungws', '2003-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS385584287711', '前田凛', 1, '+81 52-891-8048', 4, '314568137093207760', '47-kai, 6 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1998-10-28', 0, 0, 'rin528', '2020-12-10', 'maedarin111', '2021-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS815555904243', '白安娜', 0, '+81 3-1983-0833', 1, '119971378313447683', '日本東京港区東新橋一丁目5番11号28階', '1992-02-16', 0, 0, 'onnapak8', '2005-07-06', 'onnpak1025', '2001-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS925873322462', '中森陽菜', 1, '+81 11-075-5211', 3, '798015426718568747', '日本札幌豊平区豊平三条十三丁目3番10号19号室', '1991-04-20', 0, 0, 'hinanakamori610', '2014-06-24', 'nhi', '2010-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS871034096789', 'Jamie Ward', 1, '+1 614-555-8560', 1, '868318149373740400', '586 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1994-10-17', 0, 0, 'wardjamie1103', '2006-06-09', 'ward8', '2004-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS509658584271', '宋杰宏', 1, '+1 838-951-1265', 3, '432670665488357061', '548 Broadway Apt 8, Albany, NY 12207, United States', '1997-09-30', 0, 0, 'song313', '2010-08-10', 'jiehong627', '2015-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS299598594290', '萬明', 1, '+44 5905 817440', 4, '458051725320068264', 'No.23 Main building, 389 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1995-09-15', 0, 0, 'minmen', '2021-11-08', 'mime', '2020-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS927485742404', '田致远', 1, '+86 10-2049-0875', 3, '199152617624167011', '14F, 287 028 County Rd, Yanqing District, Beijing, China', '1987-02-18', 0, 0, 'tian1114', '2021-10-20', 'zhiyuant', '2001-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS044074312924', 'Brandon Roberts', 0, '+44 (161) 940 9370', 2, '902926872925766919', 'Unit 13, Oxford Eco Centre, 101 Portland St, Manchester, M1 3LA, United Kingdom', '1987-11-08', 0, 0, 'rbrandon1115', '2003-11-08', 'roberts627', '2011-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS892366006147', '韦秀英', 1, '+81 90-8300-4539', 2, '372508235497657734', '23F, 1-1-4 Deshiro, Nishinari Ward, Osaka, Japan', '1988-04-04', 0, 0, 'xiuywei', '2011-07-01', 'weixiu', '2017-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS507972999060', 'Ethel Long', 0, '+86 167-5598-8335', 3, '689336069566386432', '中国上海市黄浦区淮海中路970号19楼', '1997-11-11', 0, 0, 'ethellong802', '2012-09-13', 'lethe', '2017-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS178038636344', '周永發', 0, '+81 90-8958-3573', 1, '302681630879721668', 'Rm. 25, 2-5-15 Chitose, Atsuta Ward, Nagoya, Japan', '1999-01-19', 0, 0, 'chowwf', '2006-11-27', 'chowwingfat', '2006-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS363070389119', 'Cindy Griffin', 0, '+86 191-1817-0344', 4, '626710697496584825', 'No.6 building, 102 FuXingMenNei Street, XiCheng District, Beijing, China', '1991-04-14', 0, 0, 'griffincind', '2011-04-17', 'cindygriffin09', '2017-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS282238857637', 'Terry Jackson', 0, '+86 755-368-6032', 2, '856647779283410119', 'Room 29, CR Building, 178 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1993-07-15', 0, 0, 'jackson319', '2007-02-19', 'jacksonterry', '2007-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS780016833991', '戚德華', 0, '+86 28-1262-9741', 1, '951417065496472380', 'No.48 building, 925 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1998-03-23', 0, 0, 'takchic', '2006-10-17', 'chictw', '2017-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS088177643514', '田中大輔', 1, '+86 28-3090-1259', 0, '860836809118258019', '中国成都市锦江区红星路三段574号华润大厦35室', '1987-09-02', 0, 0, 'tanaka8', '2009-02-11', 'daisuketanaka15', '2009-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS389553481558', 'Juan Garcia', 1, '+44 7053 895393', 3, '558753771437008628', 'Block 33, 409 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1988-01-25', 0, 0, 'garcia1947', '2004-08-20', 'garj8', '2018-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS275331531465', '竹内百花', 0, '+1 718-857-9917', 2, '976733051504086788', '213 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1986-01-20', 0, 0, 'mtakeuchi', '2005-11-11', 'takeuchimomok', '2011-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS135143519514', 'Kathryn Stone', 0, '+81 74-957-6998', 2, '049753657240484090', '21F, 3-9-11 Gakuenminami, Nara, Japan', '1993-10-10', 0, 0, 'stonekathryn1997', '2007-01-27', 'kathrynst46', '2002-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS059604479585', '岡田光莉', 1, '+86 769-8735-3040', 1, '270844820737088947', 'Room 29, CR Building, 474 Huanqu South Street 2nd Alley, Dongguan, China', '1995-11-01', 0, 0, 'okah', '2012-04-16', 'hikaokada', '2020-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS378367358134', '小林翼', 0, '+86 186-4970-7805', 1, '640824936977517562', '中国上海市闵行区宾川路526号华润大厦24室', '1990-03-30', 0, 0, 'tsubasakobayashi', '2011-08-18', 'kobtsubasa', '2000-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS523002877486', 'Tina Stone', 0, '+81 90-6384-1553', 2, '323069715553033060', '日本札幌豊平区豊平三条十三丁目3番11号35階', '1989-02-01', 0, 0, 'stotina3', '2012-11-14', 'tinas', '2005-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS257734200507', '鄧家明', 0, '+81 3-4362-4379', 0, '660189753902430391', '日本東京渋谷区代々木二丁目3番11号38階', '1998-12-14', 0, 0, 'kmtang10', '2019-01-14', 'tkami', '2000-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS219857251715', '小山大地', 1, '+86 760-194-1631', 0, '913058164049028064', 'Room 15, CR Building, 827 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1993-06-14', 0, 0, 'daick', '2009-11-12', 'koydaichi1020', '2004-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS010976269758', 'Elaine Patterson', 0, '+1 213-332-2746', 2, '612225663234009265', '151 Wall Street Suite 41, Los Angeles, CA 90003, United States', '1985-09-20', 0, 0, 'elainepatt', '2006-09-03', 'patteelaine', '2019-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS316761182116', '馬國明', 1, '+81 70-5018-3456', 3, '997997554206400542', 'Rm. 30, 4-9-17 Kamihigashi, Hirano Ward, Osaka, Japan', '1996-02-20', 0, 0, 'makm', '2004-01-10', 'kmma208', '2009-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS130329387241', '譚德華', 0, '+1 614-942-1383', 0, '586666545570014485', '164 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1988-02-01', 0, 0, 'ttw', '2003-10-27', 'takwahta', '2008-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS236098572886', '市川百花', 0, '+44 7766 885931', 2, '519017253487745138', 'Flat 20, 565 Portland St, Manchester, M1 3LA, United Kingdom', '1992-04-03', 0, 0, 'michikawa205', '2018-04-24', 'im408', '2013-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS989113860574', '黎詩君', 0, '+86 176-2043-6692', 1, '323930414116431263', 'No.45 building, 217 Tianhe Road, Tianhe District, Guangzhou, China', '1995-04-04', 0, 0, 'sklai49', '2021-08-19', 'lsk', '2006-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS598336360401', '徐永發', 1, '+1 614-672-6603', 2, '621457949652408254', '263 East Alley Apartment 19, Columbus, GA 43201, United States', '1991-07-25', 0, 0, 'wftsui', '2019-11-06', 'tsui2', '2021-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS622858289994', '鄧小慧', 0, '+44 (161) 533 5379', 1, '654674012336293772', 'Block 7, 855 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-04-10', 0, 0, 'siuwai8', '2013-12-13', 'tangsiuwai', '2018-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS005324084122', '駱世榮', 1, '+81 66-530-4477', 0, '588814008799391531', '日本おおさかし西成区出城一丁目1番5号27号室', '1995-01-29', 0, 0, 'losw', '2013-04-13', 'swlok', '2000-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS495515241017', 'Eva Baker', 0, '+81 52-522-8444', 1, '692528686616926791', 'Rm. 36, 2-5-15 Chitose, Atsuta Ward, Nagoya, Japan', '1993-06-20', 0, 0, 'evabaker', '2003-07-21', 'eva3', '2013-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS151312469710', '松田大輔', 1, '+44 5538 931917', 2, '675551556556883501', 'Block 7, 931 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1995-11-21', 0, 0, 'daisukematsu107', '2018-06-30', 'matsuda1972', '2009-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS543771123589', '區志遠', 1, '+86 769-892-1462', 2, '495314099046018564', '中国东莞环区南街二巷149号49楼', '1998-11-29', 0, 0, 'aucy', '2004-07-22', 'chiyuen1997', '2011-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS542051352547', '楊梓軒', 0, '+81 52-741-2669', 0, '495943580247356188', '日本なごやし守山区瀬古東二丁目171番8号27階', '1990-05-18', 0, 0, 'yeungtszhin', '2014-05-13', 'tszhinyeu4', '2012-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS699207922730', '任梓軒', 1, '+81 80-4996-5119', 4, '162841302577169640', '日本おおさかし近江堂一丁目7番9号24階', '1986-03-22', 0, 0, 'yam18', '2001-08-13', 'yam2', '2001-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS518187357850', '張志遠', 0, '+44 5668 304182', 1, '792508781654494228', 'Block 44, 410 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1988-01-03', 0, 0, 'chiyuenche', '2013-05-21', 'cheung1', '2019-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS898392667618', '戚學友', 1, '+86 10-610-4938', 3, '210593168042624417', 'No.39 building, 947 Sanlitun Road, Chaoyang District, Beijing, China', '1996-02-18', 0, 0, 'chy1984', '2001-03-25', 'chichokyau', '2006-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS762707114457', '姜詩涵', 1, '+86 154-0896-0605', 3, '770290995772386251', 'Room 38, 527 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1991-06-16', 0, 0, 'jianshihan04', '2016-05-22', 'shihanjiang', '2002-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS510610957142', 'Edwin Schmidt', 1, '+1 213-797-4142', 2, '381078310360146101', '443 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1993-05-04', 0, 0, 'edwin1', '2009-06-17', 'edsch', '2019-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS389751275115', '薛震南', 1, '+44 (121) 091 0868', 2, '497665921582261854', 'Flat 40, 483 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1997-11-18', 0, 0, 'zhennan10', '2001-09-13', 'xuezhe', '2009-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS993149558453', '尹梓晴', 1, '+86 10-5469-6380', 3, '681053630359511906', '中国北京市西城区复兴门内大街170号42号楼', '1995-01-04', 0, 0, 'yintszching128', '2008-09-07', 'yintc8', '2007-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS702937701506', '武睿', 0, '+86 10-487-8065', 3, '453473928887583325', '中国北京市西城区复兴门内大街90号9号楼', '1992-11-25', 0, 0, 'ruiwu', '2004-11-02', 'rui3', '2004-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS507752421112', '石嘉伦', 0, '+86 755-2017-2929', 3, '562473491016387023', '中国深圳罗湖区蔡屋围深南东路743号华润大厦48室', '1986-08-06', 0, 0, 'js46', '2003-09-05', 'shijialun', '2010-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS840209583297', '許國榮', 1, '+86 10-374-5783', 0, '997813116470493947', '中国北京市延庆区028县道9号44号楼', '1991-03-16', 0, 0, 'hkwokwing55', '2020-08-13', 'huikwokwing6', '2000-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS757861447052', 'Robin Watson', 0, '+81 11-270-2209', 3, '575333625970724373', '日本札幌中央区宮の森四条六丁目1番12号3号室', '1995-01-11', 0, 0, 'robinwa', '2004-02-11', 'watsor10', '2011-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS530056297298', '段子韬', 0, '+86 146-7827-5178', 1, '310670424875334661', '中国成都市锦江区红星路三段159号华润大厦21室', '1989-02-12', 0, 0, 'dzitao', '2003-05-16', 'duanzitao', '2014-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS414511626291', '曹嘉伦', 0, '+86 28-7409-6340', 3, '565567069349379918', '中国成都市锦江区红星路三段157号华润大厦45室', '1985-01-28', 0, 0, 'jialun9', '2011-07-15', 'caoj615', '2016-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS082404135310', '文富城', 1, '+86 181-0520-2937', 3, '993822639917006191', '22F, 140 West Chang''an Avenue, Xicheng District, Beijing, China', '1988-01-18', 0, 0, 'mfu', '2019-05-23', 'manfushing7', '2011-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS374181225817', 'Gregory Chen', 0, '+81 52-394-0419', 0, '520456406773538930', '3F, 2-5-16 Chitose, Atsuta Ward, Nagoya, Japan', '1990-05-12', 0, 0, 'gregorychen', '2020-08-10', 'gregorych', '2002-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS987487560858', '武秀英', 0, '+81 11-005-3704', 3, '219744965134358709', '日本札幌白石区菊水三条五丁目2番6号3階', '1996-07-02', 0, 0, 'wuxiuyi', '2011-07-30', 'xiuyingwu15', '2020-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS347236485330', '丁詩涵', 0, '+81 70-7906-2052', 4, '931580789794979956', '13F, 3-19-4 Shimizu, Kita Ward, Nagoya, Japan', '1997-12-25', 0, 0, 'shihanding312', '2001-09-04', 'dshihan', '2013-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS418303294199', '狄慧嫻', 0, '+1 312-339-7049', 0, '572949548867325341', '813 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1991-03-26', 0, 0, 'tiwaihan4', '2016-01-23', 'tiwaih10', '2016-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS236812693670', 'Charles Bennett', 1, '+81 70-0909-4378', 1, '740892424363653950', '日本おおさかし近江堂一丁目7番3号15階', '1991-12-04', 0, 0, 'charles7', '2003-05-23', 'cbennett', '2011-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS926012903100', '木村和真', 0, '+44 7434 189021', 1, '121500688256402006', 'Unit 40, Oxford Eco Centre, 573 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1994-11-21', 0, 0, 'kimura1', '2016-05-21', 'kimura811', '2001-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS309310499236', '楊安娜', 0, '+81 74-430-7026', 2, '033929610986012171', '日本ならし大和郡山市本庄町一丁目1番19号49階', '1992-12-30', 0, 0, 'yon92', '2016-03-09', 'onyeung2', '2021-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS838639010599', '酒井架純', 1, '+81 90-3588-6105', 1, '807208523349752376', 'Rm. 35, 1-7-14 Omido, Higashiosaka, Osaka, Japan', '1987-09-09', 0, 0, 'sakaika05', '2008-11-05', 'saka', '2008-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS747488710102', 'Lillian Scott', 0, '+86 28-6285-6334', 1, '528470379182216978', 'No.42 building, No. 884, Shuangqing Rd, Chenghua District, Chengdu, China', '1985-06-17', 0, 0, 'scolillian48', '2010-11-16', 'lillians6', '2020-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS685569715698', '梁詩涵', 0, '+1 212-506-2589', 4, '193276895530769055', '220 Wooster Street 3rd Floor, New York, NY 10012, United States', '1990-03-07', 0, 0, 'liashih', '2019-07-01', 'liang203', '2010-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS319178517947', 'Nathan Hall', 1, '+44 (151) 731 1592', 1, '355395907350161572', 'Flat 32, 213 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1989-11-03', 0, 0, 'nathhall907', '2017-01-08', 'nathanhall1115', '2016-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS708557260995', '韓志明', 0, '+81 3-2072-5673', 3, '407644925527558002', '25F, 3-15-8 Ginza, Chuo-ku, Tokyo, Japan', '1990-12-18', 0, 0, 'hcm', '2014-10-23', 'chiming81', '2010-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS644167699897', '高橋葉月', 1, '+81 90-7656-4792', 0, '326343550168353887', '6-kai, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1993-10-27', 0, 0, 'takahaz', '2007-07-14', 'takahashihaz46', '2021-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS784090349165', '大塚美緒', 0, '+86 190-3139-8442', 1, '817376561656082547', '中国东莞东泰五街283号1楼', '1988-08-15', 0, 0, 'mio619', '2004-02-01', 'miots', '2009-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS249247971611', '中村陽太', 1, '+1 213-942-8548', 2, '408534812292115847', '217 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1998-03-24', 0, 0, 'nakamura4', '2019-07-25', 'yotna', '2007-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS705355161130', '黃小慧', 0, '+81 11-217-9785', 3, '057803460732636941', '日本札幌白石区菊水三条五丁目2番2号33階', '1985-03-22', 0, 0, 'wongsiuwai', '2012-07-19', 'siuwwon9', '2016-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS233545621360', '周璐', 0, '+44 (1865) 13 4938', 1, '222630948132769634', 'Unit 38, Oxford Eco Centre, 106 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1998-07-21', 0, 0, 'luzhou', '2001-12-12', 'zhoulu', '2013-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS999461199582', '谭云熙', 0, '+81 70-5976-4250', 1, '209163039892814468', '日本札幌中央区宮の森四条六丁目1番15号19号室', '1997-02-07', 0, 0, 'tanyunxi', '2021-01-18', 'yunxitan', '2012-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS976438170277', '岡本美月', 0, '+81 80-8203-3859', 4, '836981628372662820', '日本ならし学園南三丁目9番20号8階', '1999-01-13', 0, 0, 'okamoto706', '2012-10-30', 'okamomitsuki', '2001-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS102171431900', '沈嘉伦', 0, '+81 11-828-8670', 2, '308656636184263408', '41F, 5-2-20 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-01-17', 0, 0, 'jialunshen', '2004-12-27', 'shenjialun', '2004-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS928465953894', 'Randall Diaz', 0, '+81 11-127-4944', 1, '119093738666440394', 'Rm. 25, 5-4-11 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1994-07-21', 0, 0, 'dran', '2004-05-17', 'randall6', '2020-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS870199815069', '洪國權', 1, '+86 755-146-4521', 2, '864567949362669061', '中国深圳罗湖区田贝一路242号50栋', '1995-01-16', 0, 0, 'hunkwo02', '2001-06-13', 'kkhung8', '2004-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS493976971578', '島田凛', 0, '+86 769-7918-8868', 2, '545365231451042894', 'No.30 building, 93 Shanhu Rd, Dongguan, China', '1990-08-03', 0, 0, 'rins10', '2021-11-20', 'rinshima9', '2011-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS640467122052', '木下百花', 0, '+81 70-6103-4398', 2, '649129312560666455', '日本なごやし瑞穂区河岸町四丁目20番18号16号室', '1989-07-20', 0, 0, 'momokkinoshita', '2006-03-10', 'momkinoshita', '2004-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS064581693873', '谷口美月', 1, '+86 20-9083-6071', 2, '442925523499943131', '中国广州市白云区机场路棠苑街五巷673号5楼', '1994-06-06', 0, 0, 'taniguchi516', '2010-07-28', 'mitta4', '2001-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS127386927808', '小林葉月', 0, '+1 838-757-1452', 3, '181415659014293949', '151 Central Avenue Apartment 13, Albany, NY 12206, United States', '1987-04-01', 0, 0, 'khazuki', '2007-07-20', 'hazuki9', '2000-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS647027988304', '姚云熙', 0, '+44 5049 193512', 4, '011711222206135018', 'No.15 Main building, 192 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1990-09-26', 0, 0, 'yaoyunxi', '2021-06-16', 'yaoyunxi', '2016-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS714178626010', '有村大輔', 1, '+81 80-9609-2747', 3, '700401038500411251', '24F, 5-2-19 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-02-20', 0, 0, 'daisuke1020', '2008-12-25', 'daia1965', '2009-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS503243573496', '孟璐', 1, '+1 213-915-6462', 4, '712401247196945041', '174 Sky Way Suite 36, Los Angeles, CA 90043, United States', '1988-01-04', 0, 0, 'lume65', '2003-06-19', 'lumeng909', '2004-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS460574298195', '青木聖子', 1, '+44 7226 167574', 3, '488341759490205290', 'Block 14, 785 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1994-08-23', 0, 0, 'seikao', '2009-10-25', 'aos1943', '2018-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS559053084248', '酒井七海', 0, '+81 3-1565-3297', 0, '017135947322683884', '日本東京千代田区丸の内一丁目6番14号11階', '1996-12-28', 0, 0, 'sakainanami228', '2013-12-20', 'snanami', '2006-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS413159016529', 'Douglas Griffin', 1, '+86 769-9596-5541', 2, '090642242313153958', 'Room 39, 604 Huanqu South Street 2nd Alley, Dongguan, China', '1994-02-07', 0, 0, 'gdouglas', '2015-08-14', 'griffindouglas5', '2001-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS577833916399', '加藤桜', 1, '+81 70-2033-4094', 3, '457815360766380576', '日本おおさかし平野区加美東四丁目9番14号48階', '1990-09-30', 0, 0, 'sakurak8', '2008-04-24', 'kasak', '2017-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS583155614181', 'Janice Morales', 1, '+1 838-181-7373', 2, '902391374792311590', '853 Broadway Apt 46, Albany, NY 12207, United States', '1987-12-03', 0, 0, 'janmora516', '2002-05-04', 'jmorales', '2003-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS049884396238', '傅永發', 0, '+1 838-349-8082', 3, '348340613548428884', '910 Central Avenue Apt 31, Albany, NY 12206, United States', '1985-12-28', 0, 0, 'fwingfat', '2017-08-22', 'fu117', '2021-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS943195078686', '大塚詩乃', 0, '+44 7866 909602', 1, '214483489603771618', 'Flat 38, 150 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1987-04-02', 0, 0, 'so1950', '2010-07-17', 'shino4', '2003-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS038522670541', '曹家玲', 0, '+86 20-712-5256', 1, '076200448540260161', 'No.16 building, 45 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1987-08-29', 0, 0, 'klc43', '2020-12-15', 'cho1', '2019-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS741257081070', 'Brian Olson', 1, '+86 755-1904-5554', 1, '656325715185614062', '中国深圳罗湖区清水河一路274号48室', '1990-11-02', 0, 0, 'olsobrian', '2001-11-01', 'brianols621', '2011-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS547279914216', 'Mike Herrera', 0, '+44 (1865) 57 8092', 2, '893703908265126153', 'No.23 Main building, 688 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1989-04-20', 0, 0, 'mikhe', '2006-08-19', 'herrera523', '2005-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS284647588190', '菊地美咲', 1, '+81 52-425-7075', 2, '222678682454733180', 'Rm. 36, 2-5-13 Chitose, Atsuta Ward, Nagoya, Japan', '1988-03-30', 0, 0, 'misakikiku', '2016-08-21', 'kikuchimisak', '2013-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS257078963216', 'Julia Nichols', 1, '+81 74-936-2431', 3, '128876063657915108', '日本ならし西大寺赤田町一丁目7番9号45階', '1989-04-25', 0, 0, 'njulia', '2020-12-30', 'junichols', '2011-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS749781780243', '段子异', 1, '+44 (161) 781 0140', 2, '448307418348261371', 'Unit 29, Oxford Eco Centre, 734 Portland St, Manchester, M1 3LA, United Kingdom', '1988-02-24', 0, 0, 'duanzi04', '2021-08-07', 'duaziy', '2015-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS511455253145', '顧發', 1, '+44 (161) 594 7967', 1, '250568192271559495', 'No.33 Main building, 2 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-06-15', 0, 0, 'fatku', '2008-01-05', 'fat71', '2009-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS984967648681', '馬力申', 1, '+81 90-8293-4040', 4, '005147816009342230', 'Rm. 38, 2 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1985-06-30', 0, 0, 'ma2', '2000-01-25', 'liksunma', '2002-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS022028385568', 'Randy Long', 0, '+81 90-1101-0386', 1, '537135332000612785', '45-kai, 1-7-8 Saidaiji Akodacho, Nara, Japan', '1994-10-25', 0, 0, 'longrandy', '2009-12-26', 'rlong718', '2014-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS688859816642', 'Ashley Foster', 1, '+81 70-2779-7905', 1, '483240135211184252', '日本札幌白石区菊水三条五丁目4番20号1階', '1988-11-11', 0, 0, 'fosterashley', '2007-04-07', 'asf', '2015-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS347683599512', 'Debra Morales', 0, '+86 28-263-8946', 3, '644005414808083616', '中国成都市锦江区红星路三段731号44楼', '1986-04-10', 0, 0, 'moraldebra', '2016-03-08', 'mdebra806', '2000-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS148550360517', 'Miguel Davis', 1, '+1 330-365-7244', 4, '917709339976567229', '850 Ridgewood Road Suite 25, Akron, OH 44321, United States', '1995-12-01', 0, 0, 'davmiguel', '2004-07-04', 'davismiguel', '2004-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS593834947496', '毛梓晴', 1, '+1 212-743-2554', 3, '077110480916941357', '193 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1985-05-31', 0, 0, 'mo92', '2018-08-05', 'tszching8', '2006-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS101193174810', '馬家強', 0, '+81 52-643-7775', 1, '544236796684388448', '日本なごやし守山区瀬古東二丁目171番10号8階', '1999-02-15', 0, 0, 'ma1122', '2009-09-14', 'kkma508', '2007-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS282205098689', '伊藤絢斗', 0, '+1 614-992-2400', 3, '385833223598083724', '303 Tremont Road Suite 46, Columbus, GA 43212, United States', '1986-04-03', 0, 0, 'itoaya802', '2000-08-01', 'itoay', '2010-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS821027557638', '郑子异', 0, '+86 28-7067-0237', 1, '771592631081920464', '45F, No. 250, Shuangqing Rd, Chenghua District, Chengdu, China', '1997-03-19', 0, 0, 'zhengziy903', '2006-08-09', 'zziyi', '2017-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS816805527808', '李天榮', 1, '+86 157-0288-4451', 0, '711087977331588379', 'Room 20, 379 Dong Zhi Men, Dongcheng District, Beijing, China', '1988-08-10', 0, 0, 'lee2', '2022-02-17', 'twlee', '2000-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS709632044116', '野口美羽', 0, '+44 (161) 113 9923', 3, '513521533531916784', 'No.18 Main building, 699 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-10-01', 0, 0, 'nogm', '2000-12-18', 'miunogu619', '2017-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS282714678344', '吕岚', 0, '+44 (1223) 47 2907', 2, '781991195356325745', 'No.21 Main building, 715 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1994-09-13', 0, 0, 'lul', '2015-05-18', 'lanlu', '2014-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS195853799384', '佘家輝', 0, '+81 70-0722-3290', 3, '445068319843475803', '日本札幌厚別区上野幌一条二丁目1番13号40階', '1995-09-27', 0, 0, 'shekf53', '2008-02-23', 'shehkafai', '2018-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS107469706759', '阿部翼', 1, '+81 11-360-3731', 1, '007152820799917497', '日本札幌中央区宮の森四条六丁目1番20号9階', '1987-11-06', 0, 0, 'abe3', '2011-12-14', 'abetsubasa2', '2006-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS845106361251', '内田愛梨', 0, '+44 (1865) 98 5699', 2, '327012442650487078', 'Unit 47, Oxford Eco Centre, 660 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1994-02-16', 0, 0, 'airi8', '2002-12-02', 'uchida8', '2010-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS385638442683', '山下拓哉', 1, '+81 74-355-6552', 1, '747984029536103013', '日本ならし西大寺赤田町一丁目7番10号40階', '1989-04-18', 0, 0, 'ty826', '2004-10-20', 'yat02', '2021-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS867095690045', '石宇宁', 1, '+86 769-057-2144', 2, '060906374539821816', 'Room 2, CR Building, 19 Kengmei 15th Alley, Dongguan, China', '1990-05-28', 0, 0, 'shiyunin', '2018-09-06', 'syuning6', '2020-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS628434332162', 'Dennis Mendez', 1, '+86 20-7203-1136', 1, '542668400713976952', 'Room 16, CR Building, 247 Jiangnan West Road, Haizhu District, Guangzhou, China', '1989-01-15', 0, 0, 'mendez07', '2015-10-01', 'dmen', '2014-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS365398237756', '陶安琪', 1, '+86 168-5199-3776', 2, '066900170642785736', '中国中山乐丰六路616号27栋', '1988-08-31', 0, 0, 'anqi2', '2004-10-16', 'anqita', '2008-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS896483174569', '野村陸', 1, '+44 (116) 785 8486', 0, '923318527228874436', 'No.7 Main building, 696 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-07-31', 0, 0, 'nomurariku814', '2006-08-09', 'rikunomura', '2001-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS226793318712', 'Alice Harrison', 0, '+86 168-7262-7228', 2, '573370051782484703', 'Room 49, CR Building, 296 Huanqu South Street 2nd Alley, Dongguan, China', '1991-06-11', 0, 0, 'alih', '2006-08-04', 'ahar2', '2001-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS353657641711', '駱詩君', 1, '+81 52-448-7996', 2, '590357288393886721', '36-kai, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-08-20', 0, 0, 'szekwanlok4', '2010-07-06', 'sklok9', '2008-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS643878351101', '元朝偉', 0, '+81 80-6668-8534', 1, '704755988257900494', '日本なごやし北区清水三丁目19番7号37階', '1990-02-17', 0, 0, 'yuen1948', '2015-01-25', 'ychiuwai', '2002-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS625973426956', '横山陽太', 0, '+86 191-3315-2294', 0, '238561833963116560', '中国广州市白云区小坪东路96号4栋', '1997-12-13', 0, 0, 'yotayokoyama', '2013-04-29', 'yokoyamayo1979', '2004-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS705998919137', '陈嘉伦', 0, '+44 7648 212355', 2, '286740448015007293', 'No.10 Main building, 486 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1992-11-20', 0, 0, 'chenj', '2006-01-31', 'chenjial', '2001-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS477001970523', '于子异', 1, '+44 (116) 686 1320', 1, '435142262114437524', 'Flat 50, 78 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1992-03-25', 0, 0, 'yuz', '2015-04-28', 'yuzi', '2000-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS207955484124', '陳永權', 0, '+81 11-728-0252', 3, '902147638611731177', '12-kai, 5-19-17 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1997-07-14', 0, 0, 'chanwingkuen', '2007-10-19', 'wingkuench1945', '2020-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS015245500581', '溫梓軒', 1, '+86 136-1195-0415', 3, '513057335272646048', 'No.30 building, 164 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1994-07-02', 0, 0, 'wantszhin', '2018-08-18', 'tszhinwan', '2013-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS459848591766', 'Walter Mcdonald', 0, '+81 70-3377-7066', 4, '354372604558659037', '日本札幌白石区菊水三条五丁目2番17号37階', '1988-09-04', 0, 0, 'mcdonwalte', '2017-04-16', 'mwalter', '2007-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS256102564643', 'Samuel Black', 0, '+86 28-516-0411', 3, '864582493296709595', '中国成都市成华区玉双路6号28号3号楼', '1988-04-28', 0, 0, 'blacs', '2019-04-24', 'sablack', '2019-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS197636859469', 'Mike Stewart', 0, '+1 212-068-5764', 4, '687017968806009841', '442 West Houston Street Suite 20, New York, NY 10014, United States', '1998-10-19', 0, 0, 'stewamik', '2018-10-31', 'stewart109', '2014-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS053826808024', '秦嘉伦', 0, '+1 718-881-7526', 3, '761287892705318254', '260 Columbia St Suite 4, Brooklyn, NY 11231, United States', '1994-12-22', 0, 0, 'qj6', '2002-12-09', 'qin9', '2021-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS191749119776', '叶云熙', 1, '+81 90-4474-2154', 2, '617182333643791328', '50-kai, 3 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-09-15', 0, 0, 'yeyunxi1122', '2001-11-29', 'yunxi6', '2002-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS667391143565', 'Edith Palmer', 1, '+81 11-984-2859', 0, '707185222215559910', 'Rm. 14, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1986-05-15', 0, 0, 'edith40', '2021-10-09', 'paedi', '2015-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS209501039265', '山口紗良', 1, '+81 11-791-8336', 2, '116209865604415160', '36-kai, 6-1-19, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1992-04-03', 0, 0, 'sarayamaguchi82', '2017-08-26', 'saray60', '2021-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS348040227200', 'Virginia Scott', 1, '+86 142-6421-3862', 1, '323847012164913525', '中国北京市延庆区028县道385号23楼', '1996-10-19', 0, 0, 'virginia5', '2005-12-12', 'virginias816', '2000-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS037225598856', 'Gary Hawkins', 0, '+86 134-1743-3486', 2, '710745388578645120', '中国中山天河区大信商圈大信南路448号20楼', '1989-01-25', 0, 0, 'gh1', '2020-02-09', 'ghawki', '2009-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS206947434794', '千葉美羽', 0, '+81 52-487-5158', 2, '125148785289493330', 'Rm. 28, 3-19-8 Shimizu, Kita Ward, Nagoya, Japan', '1991-12-27', 0, 0, 'chibamiu809', '2012-06-20', 'chiba5', '2010-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS378325694970', '崔霆鋒', 1, '+81 80-1870-7121', 3, '621657832576097679', '日本札幌豊平区豊平三条十三丁目3番2号8号室', '1987-05-19', 0, 0, 'tingfungchoi47', '2004-07-04', 'choitingfung78', '2005-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS943305816845', '方家文', 1, '+1 838-819-0711', 1, '874746596673183221', '475 Broadway Apt 49, Albany, NY 12207, United States', '1988-01-01', 0, 0, 'kmfong509', '2014-02-20', 'fongkm', '2003-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS364886743687', '小山蓮', 1, '+81 90-6519-6119', 3, '706224176938525152', '日本札幌中央区宮の森四条六丁目1番1号37階', '1986-11-18', 0, 0, 'rekoy', '2011-09-27', 'koyren98', '2001-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS706362247965', '石子韬', 1, '+81 70-7411-7989', 3, '994547364228466867', '日本なごやし北区清水三丁目19番16号13階', '1996-04-30', 0, 0, 'sz76', '2018-07-09', 'zitao118', '2013-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS654677912104', '戴璐', 1, '+81 11-068-2960', 4, '998738988768005443', '日本札幌白石区菊水三条五丁目4番12号23階', '1990-04-17', 0, 0, 'dailu7', '2011-05-13', 'ludai4', '2004-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS509266129872', '邵睿', 0, '+81 80-6468-1873', 1, '806408275471692459', '40-kai, 3-9-8 Gakuenminami, Nara, Japan', '1997-12-26', 0, 0, 'sru', '2003-01-19', 'shrui', '2001-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS762112637446', '高橋蓮', 0, '+1 838-042-3243', 2, '924696501842374094', '451 Central Avenue Apt 19, Albany, NY 12205, United States', '1985-09-26', 0, 0, 'rentakah10', '2012-06-01', 'retakahashi', '2018-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS162814180252', 'Deborah Daniels', 1, '+86 196-5198-4346', 3, '707514874843863966', 'No.18 building, 112 028 County Rd, Yanqing District, Beijing, China', '1992-09-13', 0, 0, 'debd1984', '2017-03-27', 'danielsdeborah530', '2008-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS244875702276', '有村大和', 0, '+86 140-2629-1953', 0, '322964115530992855', '中国广州市白云区机场路棠苑街五巷209号28号楼', '1986-11-21', 0, 0, 'ariyamat228', '2000-12-08', 'yamatoar', '2012-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS637823768400', '徐永權', 0, '+1 838-900-6085', 1, '341862227451336676', '4 Broadway Apt 38, Albany, NY 12207, United States', '1998-11-13', 0, 0, 'twingkuen1101', '2001-09-08', 'tswingkuen6', '2008-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS670165651797', 'Mike Kelly', 1, '+1 838-956-0397', 1, '507721254383354799', '330 Central Avenue Apt 50, Albany, NY 12205, United States', '1992-04-05', 0, 0, 'kellmike', '2002-09-27', 'kellymi65', '2002-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS281170467696', 'Clifford Morales', 1, '+81 52-606-9530', 0, '244809948813481430', '日本なごやし北区楠味鋺三丁目80番9号9階', '1992-06-05', 0, 0, 'moralesclifford', '2005-12-13', 'mclifford', '2003-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS780252221112', '譚永權', 1, '+44 7628 016746', 4, '684412891509878311', 'Block 29, 274 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1989-11-22', 0, 0, 'twk', '2010-12-04', 'wingkuent10', '2019-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS112117783068', '田安娜', 1, '+44 (161) 541 5236', 1, '973222604580457902', 'Unit 21, Oxford Eco Centre, 381 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-07-11', 0, 0, 'onna1962', '2007-04-26', 'tin10', '2008-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS327940456780', 'Lori Garcia', 0, '+86 755-0930-7956', 3, '679581318920400783', '中国深圳罗湖区田贝一路9号1号楼', '1991-03-29', 0, 0, 'lorigarcia', '2016-01-25', 'lorigarc', '2013-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS972034601442', '村田紗良', 0, '+81 70-8924-3603', 1, '039627154631128000', 'Rm. 15, 6-1-15, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1992-05-09', 0, 0, 'saramu63', '2017-07-15', 'muratsara618', '2013-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS938734034753', '馬天榮', 1, '+44 5698 229485', 4, '215447840222187740', 'No.4 Main building, 859 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1988-12-20', 0, 0, 'matw', '2015-06-07', 'matinwing', '2021-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS447645585395', '孟秀英', 1, '+86 21-973-3874', 3, '660990400092600895', '中国上海市闵行区宾川路27号11栋', '1986-07-02', 0, 0, 'meng42', '2016-07-13', 'mxiu122', '2011-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS817743620182', '小川海斗', 0, '+44 7902 173812', 1, '576331506041289472', 'No.19 Main building, 212 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-04-25', 0, 0, 'ogawkait', '2002-11-09', 'kaitog', '2000-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS293861867991', 'Dawn Ward', 0, '+81 90-9654-5218', 1, '915988896112979749', '19F, 17 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1985-01-05', 0, 0, 'dw84', '2018-01-20', 'dawnw1', '2014-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS483588684995', 'Arthur Romero', 1, '+44 5037 893927', 4, '647279245303335504', 'Block 40, 14 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1990-11-23', 0, 0, 'arthurome', '2019-08-29', 'romeroarthur', '2010-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS616447971393', '中村彩乃', 1, '+86 161-5737-9267', 0, '372689118185519532', '中国东莞珊瑚路53号华润大厦23室', '1988-01-04', 0, 0, 'nakamura00', '2020-06-22', 'nakamura1', '2010-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS473256807175', '胡震南', 1, '+81 80-9832-0099', 1, '029244251150950772', '日本札幌中央区宮の森四条六丁目1番12号8号室', '1996-06-22', 0, 0, 'huzhe', '2013-09-06', 'huzhennan', '2021-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS170816451112', '内田陽菜', 0, '+86 182-2234-8352', 4, '680042357714245296', 'Room 10, 65 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1985-02-16', 0, 0, 'uchhi214', '2002-12-19', 'hina5', '2016-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS275414343618', '鄺世榮', 1, '+81 90-7405-2516', 2, '278483709503435190', '日本札幌中央区宮の森四条六丁目1番14号47階', '1988-11-30', 0, 0, 'swkwong', '2016-06-25', 'swkwong7', '2018-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS241668110236', '姜家輝', 1, '+44 (151) 022 9108', 2, '940539232898562494', 'No.2 Main building, 161 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1997-02-24', 0, 0, 'kfchang324', '2014-07-28', 'chang2018', '2017-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS505402111949', 'Jeffrey Fox', 0, '+44 (1865) 13 2644', 0, '593488908800604300', 'No.16 Main building, 97 Park End St, Oxford, OX1 1JD, United Kingdom', '1994-07-16', 0, 0, 'fojeffrey', '2009-07-26', 'fox1115', '2008-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS556633551036', '大野葉月', 1, '+1 614-859-2391', 3, '512430453377991638', '26 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1987-09-07', 0, 0, 'hazukio9', '2000-10-29', 'ohazuk89', '2008-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS063396588289', '應杰倫', 1, '+1 614-714-3268', 3, '553109506864436798', '974 East Alley Suite 26, Columbus, GA 43201, United States', '1985-09-20', 0, 0, 'chiehlunying', '2004-09-11', 'chiehlun2', '2016-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS837094476814', 'Alexander Patel', 0, '+81 90-8468-4168', 0, '070719764354273308', '日本なごやし熱田区千年二丁目5番6号37階', '1987-01-15', 0, 0, 'alexanderp918', '2021-07-10', 'patale7', '2020-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS757714099156', '郝宇宁', 0, '+44 (161) 261 8975', 2, '196562292875003924', 'Block 28, 871 Mosley St, Manchester, M2 3AQ, United Kingdom', '1987-09-15', 0, 0, 'hao4', '2019-05-09', 'yuninghao', '2001-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS203402674237', '上野翼', 0, '+1 213-149-5794', 2, '972214027732428226', '606 Figueroa Street Apt 29, Los Angeles, CA 90037, United States', '1990-06-20', 0, 0, 'tsubasaueno', '2012-11-16', 'tsubasau', '2020-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS570552757027', '森陽菜', 1, '+81 66-724-7777', 1, '591384820144442110', '日本おおさかし東住吉区東田辺三丁目27番13号11階', '1988-07-18', 0, 0, 'morihina', '2001-11-09', 'mhina601', '2010-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS195215295931', 'Irene Mills', 0, '+81 74-945-2142', 3, '692523937929345419', '21-kai, 18 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1988-08-19', 0, 0, 'millsirene', '2010-12-17', 'im711', '2009-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS430437555648', '大野玲奈', 1, '+81 80-8641-0565', 1, '269338452278002042', '49F, 1-1-16 Deshiro, Nishinari Ward, Osaka, Japan', '1996-08-14', 0, 0, 'onoren', '2013-01-15', 'orena', '2010-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS050738241737', 'Theresa Green', 0, '+86 28-6763-5847', 0, '780381162133782828', 'No.37 building, No. 539, Shuangqing Rd, Chenghua District, Chengdu, China', '1997-01-01', 0, 0, 'therg10', '2021-10-01', 'thergreen', '2003-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS031329275565', '酒井愛梨', 0, '+1 330-102-3346', 3, '683745355498826332', '291 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1992-07-24', 0, 0, 'sakaiair7', '2003-01-29', 'sakai5', '2017-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS674385565647', '薛子异', 1, '+86 144-9807-6592', 2, '974221745822538846', '中国上海市徐汇区虹桥路213号17号楼', '1990-01-10', 0, 0, 'xue9', '2021-04-30', 'ziyixu', '2002-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS689977409943', '井上絢斗', 1, '+81 52-614-0552', 4, '511293994278322583', 'Rm. 46, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1986-09-13', 0, 0, 'inoueayato', '2020-11-10', 'ayatoinoue', '2018-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS956045118335', 'Patricia Barnes', 1, '+1 718-937-8376', 2, '702014106495320795', '553 Bergen St Apt 5, Brooklyn, NY 11217, United States', '1995-10-12', 0, 0, 'patrbarnes1997', '2001-04-26', 'patriciabarn', '2005-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS747178260293', 'Marie Morris', 0, '+86 28-561-3569', 2, '537985831596647595', 'No.45 building, No. 482, Shuangqing Rd, Chenghua District, Chengdu, China', '1995-06-12', 0, 0, 'morrim', '2019-06-10', 'morrim3', '2014-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS083100729011', '邵永權', 0, '+86 164-3204-4397', 3, '204126371321567728', '中国北京市东城区东单王府井东街456号40楼', '1996-07-11', 0, 0, 'wingkuensiu821', '2015-03-05', 'wingkuens', '2003-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS573350786630', '毛秀文', 1, '+81 3-1066-9911', 1, '076886265802122839', '18-kai, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1998-06-28', 0, 0, 'smmo', '2001-05-27', 'mosm', '2015-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS777305004377', '石川一輝', 1, '+86 20-0680-4918', 2, '791328778681316074', 'No.2 building, 314 Xiaoping E Rd, Baiyun , Guangzhou, China', '1999-01-04', 0, 0, 'iishik1950', '2012-08-23', 'ikkiishikawa', '2022-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS895613986254', '王詩涵', 1, '+86 152-1863-2652', 4, '071027470297875585', '25F, 387 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1992-11-04', 0, 0, 'shihan7', '2017-01-13', 'shihanwa8', '2015-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS827668362661', '坂本瑛太', 1, '+81 52-653-9772', 1, '935715785534228735', '44-kai, 3-19-15 Shimizu, Kita Ward, Nagoya, Japan', '1991-08-09', 0, 0, 'eitsakam', '2022-03-01', 'sakaeita', '2021-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS392020979922', '宣力申', 0, '+86 132-7780-3983', 3, '145288667701611747', '中国成都市锦江区红星路三段308号华润大厦24室', '1997-07-01', 0, 0, 'lsh3', '2003-08-18', 'hliksun', '2000-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS680759522427', '斉藤七海', 0, '+81 11-571-5618', 1, '577755173216925162', '日本札幌清田区真栄四条五丁目19番6号7号室', '1990-08-14', 0, 0, 'nanasaito4', '2001-08-26', 'saito97', '2018-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS840606636077', '唐裕玲', 0, '+81 66-660-0900', 0, '755111965418228238', 'Rm. 5, 2-1-12 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1998-06-23', 0, 0, 'tonyuling1105', '2015-07-22', 'yltong1001', '2016-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS159837356108', 'Christopher Thompson', 1, '+1 213-422-7792', 3, '792500533236128524', '383 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1987-03-07', 0, 0, 'chrthomp', '2019-02-13', 'thompsonchr429', '2010-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS454726217665', '江詩涵', 1, '+81 90-5891-2248', 2, '579832558499157618', '3-kai, 2-1-19 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1999-02-23', 0, 0, 'shihanjiang', '2007-11-19', 'jianshihan', '2018-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS780710696016', '張青雲', 1, '+44 (116) 089 7318', 4, '069927364650395311', 'Block 3, 173 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1985-07-19', 0, 0, 'cheungcw109', '2007-09-02', 'cwcheung1', '2017-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS160128940333', 'Clifford Green', 1, '+44 (1865) 42 8316', 3, '707958665320495449', 'Block 24, 506 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1998-07-08', 0, 0, 'greenc', '2015-04-26', 'clifford122', '2003-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS615936843679', '阿部聖子', 0, '+86 10-841-5874', 0, '849901877895690396', '31F, 537 FuXingMenNei Street, XiCheng District, Beijing, China', '1994-02-02', 0, 0, 'seikoa', '2008-11-30', 'sa1205', '2009-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS983914884271', '孙秀英', 1, '+44 (161) 680 3185', 2, '480404354636261514', 'No.9 Main building, 724 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1987-04-10', 0, 0, 'xiuying48', '2000-05-02', 'sun01', '2021-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS212800038063', '佐々木花', 1, '+86 760-0388-0567', 0, '241989707598683188', '中国中山天河区大信商圈大信南路748号4楼', '1993-09-27', 0, 0, 'sasakha', '2006-08-17', 'hsasaki', '2011-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS419437760990', '關力申', 0, '+44 5260 901670', 4, '429428945794750922', 'Flat 30, 783 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1996-07-16', 0, 0, 'liksunkw', '2017-09-05', 'kwanliksun224', '2008-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS511722534171', '严云熙', 1, '+1 212-362-3653', 4, '985666421550730726', '739 Wooster Street Apt 45, New York, NY 10012, United States', '1996-09-07', 0, 0, 'yuy', '2015-03-26', 'yunxiya629', '2005-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS710500660517', 'Jesse Thomas', 1, '+86 21-9454-1389', 0, '229634804356070279', '中国上海市浦东新区橄榄路595号47栋', '1990-10-05', 0, 0, 'thomjesse8', '2006-08-09', 'jesse1210', '2020-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS129795152400', '彭國明', 1, '+86 171-0448-4522', 3, '530510624434593390', 'Room 44, No.857, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1986-06-07', 0, 0, 'kmpang', '2009-05-28', 'pangkm', '2013-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS496131355263', '傅璐', 0, '+81 90-1461-3683', 1, '591911582291263955', '日本ならし学園南三丁目9番15号4階', '1985-09-26', 0, 0, 'ful1114', '2006-04-21', 'flu3', '2013-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS473368020314', '钱嘉伦', 0, '+44 5445 058271', 0, '430803443582942621', 'Unit 38, Oxford Eco Centre, 404 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1985-06-30', 0, 0, 'qianj6', '2003-10-07', 'qijialun', '2008-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS343413079003', 'Bobby Henry', 0, '+81 3-4430-2940', 3, '386353870287397766', '16F, 3-15-6 Ginza, Chuo-ku, Tokyo, Japan', '1997-01-23', 0, 0, 'bobh', '2021-07-30', 'bhenry', '2002-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS829083970644', '竹内絢斗', 1, '+86 769-0232-7615', 3, '779166055007397850', '中国东莞环区南街二巷631号华润大厦45室', '1992-08-18', 0, 0, 'takeuchi604', '2011-02-11', 'ayato3', '2001-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS499723301948', '清水大地', 0, '+86 175-0876-9576', 2, '871163577751795358', '中国成都市成华区二仙桥东三路94号29栋', '1991-05-04', 0, 0, 'dshimizu7', '2001-09-29', 'daichis82', '2004-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS148305078302', '薛青雲', 0, '+1 212-923-9586', 1, '665301830203630380', '303 Bank Street Apt 30, New York, NY 10014, United States', '1994-08-30', 0, 0, 'chis', '2022-02-19', 'sitchingwan', '2021-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS794296645579', 'Pauline Washington', 1, '+81 70-8384-8652', 4, '951518221996540253', 'Rm. 27, 5-4-14 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1989-03-12', 0, 0, 'washingtonpa', '2007-07-08', 'wapauli', '2006-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS905402695262', '胡嘉伦', 0, '+86 186-2721-9287', 2, '680190999575962272', '中国深圳罗湖区蔡屋围深南东路304号14号楼', '1992-04-24', 0, 0, 'jiah1957', '2018-01-21', 'hujia', '2002-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS588534005005', '橋本百花', 1, '+44 (1865) 62 4100', 1, '534589410168879512', 'Unit 29, Oxford Eco Centre, 650 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1992-12-19', 0, 0, 'hashmomoka20', '2017-09-04', 'hashimotom', '2004-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS224365211501', '任安琪', 1, '+81 70-0501-8490', 4, '648426886353582980', '日本おおさかし西成区天神ノ森二丁目1番14号12号室', '1996-12-04', 0, 0, 'ren48', '2013-10-12', 'anqire67', '2020-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS262516216025', '内田蒼士', 1, '+44 (20) 4497 4639', 3, '383773712197422651', 'Unit 11, Oxford Eco Centre, 22 Hanover Street, London, W1S 1YD, United Kingdom', '1991-01-25', 0, 0, 'uchidaaoshi5', '2021-01-22', 'aosu626', '2017-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS395645057617', '白志明', 1, '+86 172-7339-7697', 3, '515954417179353897', '中国成都市成华区二仙桥东三路153号36栋', '1993-10-07', 0, 0, 'pcm1', '2003-09-27', 'chiming10', '2001-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS094922215576', '楊明詩', 0, '+86 191-8745-4539', 3, '830542288210012877', '中国深圳福田区景田东一街541号23栋', '1993-02-02', 0, 0, 'yeungms', '2019-04-16', 'msyeu1215', '2014-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS760407870535', 'James Castro', 0, '+81 74-716-0509', 1, '928938681608795854', '日本ならし西大寺赤田町一丁目7番16号3階', '1997-10-22', 0, 0, 'jcast', '2007-04-17', 'casjames7', '2003-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS738933160829', '向云熙', 0, '+1 212-313-8347', 2, '275056071113663273', '637 Fifth Avenue Suite 8, New York, NY 10017, United States', '1992-04-30', 0, 0, 'yxiang919', '2004-11-02', 'xiyunxi', '2021-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS384324091691', 'Ruby Rodriguez', 1, '+86 20-1451-8528', 1, '284490989515500442', '中国广州市越秀区中山二路470号48栋', '1990-01-19', 0, 0, 'rodrruby523', '2008-12-05', 'rodrruby', '2018-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS117252711779', '菊地一輝', 1, '+44 5203 792598', 1, '150415973430694762', 'Flat 4, 764 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-09-13', 0, 0, 'ikkikikuchi', '2010-08-07', 'ikkikikuchi', '2016-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS700760479217', '曹學友', 1, '+86 10-3749-2332', 3, '406351835474960316', 'No.6 building, 954 West Chang''an Avenue, Xicheng District, Beijing, China', '1989-04-30', 0, 0, 'chohy610', '2000-03-21', 'cho19', '2021-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS724983660296', '宮崎結翔', 1, '+86 10-3489-6455', 2, '980431991374536715', 'Room 39, 378 68 Qinghe Middle St, Haidian District, Beijing, China', '1989-05-16', 0, 0, 'yuito55', '2012-01-19', 'myuito', '2013-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS022348068558', '毛嘉伦', 1, '+81 74-617-3894', 3, '791568617806581051', '日本ならし学園南三丁目9番10号43号室', '1987-02-12', 0, 0, 'jimao', '2017-04-26', 'jmao', '2010-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS447464045193', '中森光', 0, '+1 312-574-4993', 2, '971553472949044702', '503 North Michigan Ave Suite 17, Chicago, IL 60611, United States', '1997-07-11', 0, 0, 'hikarnakamori', '2007-09-15', 'hn208', '2014-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS841184377365', '苗慧嫻', 1, '+81 66-749-0256', 4, '125101490600618887', '日本おおさかし東住吉区東田辺三丁目27番3号36階', '1998-11-14', 0, 0, 'miu10', '2000-08-24', 'miuwh', '2016-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS766593937659', 'Kenneth Grant', 0, '+86 10-0429-0618', 1, '346332254621874357', 'Room 27, CR Building, 267 Dong Zhi Men, Dongcheng District, Beijing, China', '1991-10-14', 0, 0, 'kennethg707', '2005-07-29', 'grant2009', '2014-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS470419867768', '譚國賢', 1, '+86 132-2901-9029', 2, '586675532028254097', 'Room 39, 814 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1987-06-21', 0, 0, 'tkwokyin1957', '2014-04-18', 'taky', '2021-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS763893164160', '官天樂', 0, '+81 52-718-7670', 3, '263253428050719561', 'Rm. 9, 11 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-12-19', 0, 0, 'tlko1991', '2018-07-15', 'tinlok1996', '2009-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS208037621503', 'Jerry Vargas', 0, '+44 (161) 209 3734', 2, '127156200736604493', 'Flat 29, 141 Portland St, Manchester, M1 3LA, United Kingdom', '1998-01-05', 0, 0, 'vargasjerry', '2008-10-27', 'jerrvarg', '2006-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS539428468652', '小川美緒', 0, '+1 213-997-6539', 1, '854277369340963237', '237 Grape Street Apartment 12, Los Angeles, CA 90002, United States', '1992-10-18', 0, 0, 'mio229', '2022-01-22', 'ogawami', '2004-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS518902199495', '陶宇宁', 1, '+86 10-552-9116', 3, '930950652826721736', '中国北京市房山区岳琉路175号41室', '1996-08-26', 0, 0, 'tyuning', '2015-04-20', 'yuninta', '2009-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS323738861031', '周睿', 1, '+86 20-296-4460', 4, '175305131910901618', '中国广州市海珠区江南西路780号3栋', '1990-07-01', 0, 0, 'zhourui1026', '2018-08-17', 'zhou08', '2015-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS336836851135', '小川愛梨', 1, '+86 196-5134-9051', 0, '780273035932334853', 'No.19 building, 932 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1994-07-18', 0, 0, 'airiogawa76', '2018-06-26', 'airi8', '2020-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS094909635195', 'Irene Burns', 1, '+86 28-5945-9832', 1, '240781722100720860', 'Room 8, CR Building, No.749, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1994-04-22', 0, 0, 'irene69', '2013-09-08', 'irenebu', '2002-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS142602873372', '汤晓明', 0, '+81 80-2389-6681', 2, '625091319614067835', '13-kai, 1-1-20 Deshiro, Nishinari Ward, Osaka, Japan', '1989-08-29', 0, 0, 'xiaomingtang', '2015-02-06', 'xiaomingt', '2018-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS276367473071', '梁杰宏', 0, '+81 11-530-5963', 2, '333957042020479476', '26-kai, 5-2-17 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1993-05-10', 0, 0, 'jiliang9', '2008-07-25', 'jiehongl3', '2000-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS841712255472', 'Rose Reed', 1, '+1 213-980-5417', 3, '959726595828311254', '774 Figueroa Street Apt 25, Los Angeles, CA 90037, United States', '1991-07-23', 0, 0, 'roseree10', '2000-02-07', 'reed725', '2015-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS662028749397', '唐杰宏', 0, '+81 52-115-2735', 1, '071661798052856265', '35-kai, 12 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1994-10-09', 0, 0, 'tangjiehong1225', '2008-12-09', 'jiehongtang7', '2005-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS415152857189', '孔詩涵', 0, '+86 188-1810-9374', 1, '635101908835737598', '中国中山乐丰六路80号36楼', '1985-05-26', 0, 0, 'kong117', '2001-03-22', 'kongsh20', '2001-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS571611786413', 'Francisco Ward', 0, '+1 614-228-7427', 0, '390926403011489144', '850 Diplomacy Drive Apartment 1, Columbus, GA 43228, United States', '1995-03-04', 0, 0, 'ward1125', '2016-11-10', 'warfrancisco526', '2021-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS520296885425', '侯致远', 1, '+86 186-1103-8539', 4, '522279480643973568', 'Room 22, CR Building, 142 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1996-07-30', 0, 0, 'zhiyuanh2', '2002-06-20', 'zhiyuan715', '2001-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS541880423554', 'Philip Payne', 0, '+86 760-896-4949', 4, '772976315782860391', '中国中山京华商圈华夏街308号18栋', '1989-01-30', 0, 0, 'philp', '2010-02-22', 'paynephilip', '2013-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS927589224397', '翁力申', 1, '+86 28-2972-5979', 3, '832119981337999891', 'No.10 building, 1 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1989-06-06', 0, 0, 'yung9', '2020-10-05', 'yuliksun2', '2017-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS361424292931', '沈杰宏', 1, '+86 154-8403-8415', 1, '544805210149907163', 'No.18 building, 179 Jiangnan West Road, Haizhu District, Guangzhou, China', '1995-08-20', 0, 0, 'shenjieho', '2013-04-04', 'sji', '2000-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS263286990255', '小林湊', 1, '+86 755-029-6527', 2, '124374424232451304', 'Room 18, 743 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1994-07-17', 0, 0, 'mikob', '2004-02-06', 'kobayashiminato', '2016-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS831481925096', 'Wendy Tucker', 1, '+1 718-258-5586', 3, '153928954333610694', '548 1st Ave Suite 14, Brooklyn, NY 11220, United States', '1985-10-02', 0, 0, 'tuckwendy', '2009-01-04', 'wtucke', '2011-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS191008525930', '田睿', 1, '+86 161-1764-3926', 4, '640984609108823042', 'No.16 building, No. 147, Shuangqing Rd, Chenghua District, Chengdu, China', '1987-04-15', 0, 0, 'rtia', '2020-12-17', 'ruiti', '2009-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS041942750535', '邹秀英', 1, '+81 74-873-1565', 4, '021208224287005729', '日本ならし西大寺赤田町一丁目7番10号12号室', '1990-04-03', 0, 0, 'xiuying418', '2007-12-14', 'xizou66', '2008-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS402727042840', 'Kathleen Robinson', 0, '+44 7226 752086', 0, '622540867551551724', 'Block 17, 230 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1991-09-11', 0, 0, 'kathleenrobinson', '2015-02-13', 'katrobin82', '2006-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS250731587228', '杉山涼太', 0, '+86 20-803-2048', 0, '446418810704382405', '中国广州市白云区小坪东路945号华润大厦34室', '1988-12-24', 0, 0, 'sugiyama3', '2014-10-09', 'sryota', '2005-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS145432562723', '孟杰宏', 1, '+1 212-513-5554', 4, '100460247183995154', '126 Wooster Street Suite 30, New York, NY 10012, United States', '1997-01-25', 0, 0, 'jmeng', '2002-11-27', 'menji94', '2008-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS686837359604', 'Jamie Daniels', 1, '+86 170-5123-2594', 1, '682595887850170397', '中国中山乐丰六路258号14号楼', '1992-01-12', 0, 0, 'danija', '2021-04-14', 'danielsjamie', '2007-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS702345240432', '蔡國榮', 0, '+81 52-141-3794', 0, '766741046020299243', '日本なごやし熱田区千年二丁目5番17号12階', '1998-01-25', 0, 0, 'choi1986', '2010-11-20', 'ckw', '2015-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS905665749406', '前田樹', 0, '+44 5494 181233', 1, '825429651716658821', 'Flat 7, 791 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1997-12-10', 0, 0, 'maedait', '2001-11-27', 'itsuki819', '2007-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS612306536079', 'Jesus Bennett', 0, '+86 180-0641-6894', 2, '438233010059909089', '21F, 829 Kengmei 15th Alley, Dongguan, China', '1992-04-13', 0, 0, 'jesus6', '2015-05-16', 'benjesus56', '2018-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS855458729131', '藤發', 1, '+1 213-187-6442', 3, '097686375643658698', '461 Wall Street Apt 42, Los Angeles, CA 90003, United States', '1996-06-20', 0, 0, 'ftang2009', '2019-07-13', 'ftan', '2014-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS593039578146', '周秀英', 0, '+86 179-5286-1007', 2, '229810150722520099', 'No.44 building, 596 Middle Huaihai Road, Huangpu District, Shanghai, China', '1988-10-04', 0, 0, 'xiuying9', '2017-08-22', 'xiuyingzhou1', '2008-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS127136615734', '陆子异', 1, '+81 70-6424-4530', 3, '683169631102608340', 'Rm. 14, 2-1-3 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-12-21', 0, 0, 'ziyilu904', '2001-10-23', 'luziyi', '2003-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS405629881967', '田中健太', 0, '+44 5112 009779', 3, '683080845667587248', 'Block 46, 303 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1989-08-05', 0, 0, 'tanaka79', '2012-12-09', 'tanakenta', '2004-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS425470604716', '邵霆鋒', 0, '+44 5753 000292', 0, '112276584869131367', 'Flat 45, 907 Hanover Street, London, W1S 1YD, United Kingdom', '1988-04-16', 0, 0, 'siutf', '2008-04-08', 'tfsiu', '2018-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS642032238854', '増田美咲', 1, '+81 66-663-1585', 3, '142020750486071281', '日本おおさかし西成区天神ノ森二丁目1番16号28階', '1987-05-21', 0, 0, 'mamisaki6', '2021-05-11', 'mmisaki', '2005-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS959725043555', '樂學友', 0, '+86 199-7165-1482', 3, '643008093564920955', '40F, 684 Xiaoping E Rd, Baiyun , Guangzhou, China', '1996-02-28', 0, 0, 'hylok', '2019-07-01', 'hokyaulok3', '2000-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS867108091845', 'Heather Russell', 1, '+86 167-1090-8082', 4, '951793330888711369', 'Room 40, CR Building, 479 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1995-04-01', 0, 0, 'hrus', '2014-07-06', 'hearuss', '2015-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS593250279160', 'Susan Hernandez', 1, '+81 80-8053-2437', 2, '439492607321895660', '33F, 5 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1992-04-24', 0, 0, 'susanh2008', '2016-07-12', 'suhernandez', '2014-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS012067472930', '方淑怡', 0, '+81 3-3550-4513', 4, '796414282725832972', '日本東京千代田区丸の内一丁目6番20号21階', '1992-06-28', 0, 0, 'fsukyee8', '2003-04-21', 'sukyee926', '2014-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS999078322176', '叶致远', 0, '+81 90-0082-6716', 2, '160956287938523145', '日本おおさかし西成区出城一丁目1番4号2階', '1997-10-26', 0, 0, 'zhiyuan8', '2019-10-17', 'yezhiyuan', '2016-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS760351008348', '何宇宁', 1, '+1 212-185-9457', 1, '190378313503759367', '403 Canal Street Suite 38, New York, NY 10013, United States', '1987-05-20', 0, 0, 'yuninghe', '2001-11-18', 'heyuning830', '2008-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS522743674930', '長谷川百花', 0, '+86 21-2478-3329', 4, '383071519610732329', '13F, 873 Binchuan Rd, Minhang District, Shanghai, China', '1996-04-20', 0, 0, 'mha', '2020-01-15', 'momokahasegawa', '2008-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS059899570772', '安藤結翔', 0, '+81 52-382-2402', 2, '309685303260258372', '日本なごやし北区楠味鋺三丁目80番20号37号室', '1987-07-08', 0, 0, 'yuando', '2003-09-17', 'ando10', '2003-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS250507513483', '宮崎美咲', 0, '+81 74-124-2340', 1, '504875861756838846', '26F, 2 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-02-02', 0, 0, 'miyazakimisaki', '2001-08-06', 'miyazaki97', '2006-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS157391449210', '陶子异', 0, '+1 614-487-7892', 1, '235299074200271327', '333 East Cooke Road Apt 44, Columbus, GA 43214, United States', '1990-11-07', 0, 0, 'ziyit709', '2016-12-29', 'tao8', '2021-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS148125055529', '贺安琪', 1, '+86 168-3756-5710', 4, '622863513732358396', '中国成都市锦江区红星路三段66号44室', '1991-09-20', 0, 0, 'anqi823', '2017-07-29', 'heanqi', '2003-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS274604379564', '苑思妤', 0, '+1 614-736-6687', 1, '025790358883100643', '953 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1994-05-23', 0, 0, 'yuen16', '2003-08-16', 'yuesz2', '2018-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS236867255529', '渡部大和', 1, '+81 52-309-2690', 2, '907246320541242296', '日本なごやし北区清水三丁目19番7号20階', '1988-10-20', 0, 0, 'watanabeyamato96', '2002-10-31', 'watayamato', '2014-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS812301200311', '周睿', 0, '+86 760-8532-0735', 0, '256092259152079380', 'Room 41, CR Building, 413 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1996-10-20', 0, 0, 'zhou1112', '2021-02-01', 'ruizh6', '2021-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS520273150917', '池田樹', 1, '+1 213-658-3653', 1, '360393431367864587', '757 Sky Way Apt 10, Los Angeles, CA 90043, United States', '1994-10-10', 0, 0, 'ikeda527', '2021-05-20', 'ii85', '2014-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS800287543498', '彭慧珊', 0, '+81 90-6006-7437', 3, '395364863818510069', '日本札幌中央区宮の森四条六丁目1番7号26階', '1990-03-16', 0, 0, 'waisan51', '2014-05-01', 'pang43', '2020-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS213760657476', '任杰倫', 0, '+44 7133 400166', 3, '061901336786081343', 'No.9 Main building, 631 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1993-06-08', 0, 0, 'yamcl', '2012-11-28', 'yamcl', '2004-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS782233440118', 'Edward Tucker', 1, '+86 10-5303-1163', 1, '295848399570527610', 'No.26 building, 367 East Wangfujing Street, Dongcheng District , Beijing, China', '1997-03-02', 0, 0, 'edwtucker', '2015-02-21', 'tucker2', '2017-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS746631983160', 'Betty Dunn', 0, '+44 5330 183340', 2, '502363811838372705', 'Flat 25, 871 Mosley St, Manchester, M2 3AQ, United Kingdom', '1991-05-20', 0, 0, 'dunnbetty601', '2015-06-10', 'dbetty7', '2000-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS968958359725', '森優奈', 1, '+81 11-526-6269', 3, '024116115469177288', '日本札幌中央区宮の森四条六丁目1番7号19階', '1991-01-05', 0, 0, 'moriyuna', '2009-05-18', 'myuna10', '2008-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS094375228177', 'Larry Kelley', 1, '+1 614-836-7654', 2, '026086121759000712', '396 East Cooke Road Apt 8, Columbus, GA 43214, United States', '1991-05-24', 0, 0, 'larrykelley', '2007-08-06', 'lak', '2013-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS579132282883', '渡部美咲', 0, '+81 52-120-2816', 1, '102191462981562938', 'Rm. 17, 10 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1992-12-30', 0, 0, 'watanabemisaki109', '2013-07-18', 'watanabemisaki903', '2007-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS655202404613', '常岚', 1, '+1 212-293-5121', 2, '287341045430856583', '177 Canal Street Apt 7, New York, NY 10013, United States', '1998-09-09', 0, 0, 'changlan', '2015-09-22', 'lachang', '2019-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS755814967143', '方家輝', 1, '+1 213-672-4835', 1, '871154286457848448', '678 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1985-11-26', 0, 0, 'fongkafai', '2002-09-26', 'fong9', '2018-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS402258551957', '佐野樹', 1, '+81 80-7036-3332', 1, '947567996671541887', 'Rm. 26, 3-15-14 Ginza, Chuo-ku, Tokyo, Japan', '1996-07-23', 0, 0, 'sano1110', '2000-07-02', 'itsuksano1967', '2021-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS501724211701', '蔡心穎', 1, '+1 838-415-0623', 3, '804065110556966239', '173 Lark Street 3rd Floor, Albany, NY 12210, United States', '1985-09-24', 0, 0, 'choisum', '2014-09-18', 'swc', '2010-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS933260379761', 'Barbara Alexander', 0, '+81 11-499-6412', 2, '658935007887710105', 'Rm. 45, 5-4-8 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-08-26', 0, 0, 'alexabar', '2018-11-25', 'alexanderbarbara79', '2009-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS857016990567', '韦睿', 0, '+86 185-0068-1334', 3, '597136201582119614', 'No.43 building, 123 FuXingMenNei Street, XiCheng District, Beijing, China', '1996-09-06', 0, 0, 'ruwei', '2003-06-20', 'weirui1', '2007-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS709099494986', '斉藤玲奈', 0, '+86 199-5061-3194', 3, '573774110018361168', '中国中山天河区大信商圈大信南路493号49楼', '1985-01-03', 0, 0, 'rena77', '2010-11-19', 'sr43', '2000-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS132034035372', '盧詠詩', 1, '+81 80-6373-9397', 3, '811675541211853884', '日本ならし西大寺赤田町一丁目7番1号23号室', '1996-02-14', 0, 0, 'lo5', '2018-05-07', 'wslo', '2004-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS336469644454', 'Patrick Powell', 0, '+86 10-3783-0809', 3, '584647116057493789', '中国北京市海淀区清河中街68号229号3号楼', '1990-08-13', 0, 0, 'patrickp2', '2008-02-21', 'powell6', '2010-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS382562383379', '袁志遠', 1, '+81 90-6392-0230', 2, '567115917485801742', '日本おおさかし西成区出城一丁目1番16号1階', '1998-03-27', 0, 0, 'chiyuen814', '2019-06-10', 'yuchiyuen', '2000-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS801219229471', '彭慧敏', 0, '+86 166-2671-5781', 1, '482586145628054630', '中国中山京华商圈华夏街2号华润大厦12室', '1986-07-22', 0, 0, 'wmpang', '2016-09-11', 'wmpang', '2007-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS925810473327', '官發', 0, '+44 5854 639845', 0, '522143502167868658', 'Unit 42, Oxford Eco Centre, 294 New Street, Birmingham, B2 4DB, United Kingdom', '1995-06-07', 0, 0, 'koonfa7', '2020-04-04', 'kofat', '2022-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS740345895170', '贺云熙', 1, '+81 66-446-2446', 3, '882660929470011002', '37F, 2-1-8 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1986-09-02', 0, 0, 'hy7', '2017-05-02', 'heyunxi7', '2016-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS371366112437', '沈嘉伦', 1, '+81 3-1239-5747', 3, '170354840741313040', '9-kai, 3-15-20 Ginza, Chuo-ku, Tokyo, Japan', '1988-08-06', 0, 0, 'shenjialun', '2009-01-20', 'sjialun', '2017-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS212992397019', 'Sheila Edwards', 0, '+44 (121) 798 8811', 2, '262719227886684409', 'No.7 Main building, 220 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1990-11-21', 0, 0, 'sheilaedwards', '2009-10-28', 'edwards325', '2006-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS388535271854', '岡本百恵', 0, '+86 10-8926-4228', 1, '219167248988278363', 'No.33 building, 847 Dong Zhi Men, Dongcheng District, Beijing, China', '1994-11-22', 0, 0, 'momoeokam7', '2001-08-16', 'omomoe', '2019-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS094326489172', '孫秀文', 1, '+86 168-6297-0401', 1, '133022903302684252', 'No.42 building, 967 Jianxiang Rd, Pudong, Shanghai, China', '1992-08-26', 0, 0, 'sauhsuan', '2012-08-22', 'saumanhsu74', '2006-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS048027988439', '翁惠敏', 0, '+81 52-881-4379', 4, '996707087327596914', '10-kai, 3 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-06-29', 0, 0, 'waiman6', '2006-03-23', 'wmyung', '2009-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS060742603305', '曹睿', 0, '+44 7101 855672', 2, '711554791023011720', 'Flat 48, 818 Regent Street, London, W1B 2LX, United Kingdom', '1995-08-01', 0, 0, 'cao810', '2018-12-17', 'cao10', '2007-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS489770751117', '森田蓮', 1, '+81 70-3477-4934', 0, '602656272655438731', '日本ならし学園南三丁目9番2号38階', '1991-01-06', 0, 0, 'morita97', '2005-12-14', 'remor', '2010-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS211773773507', '钟震南', 0, '+86 760-0582-4454', 4, '022281737173203872', 'Room 28, 270 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1988-04-24', 0, 0, 'zhongzh', '2002-03-01', 'zhennanz', '2019-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS011483663660', '田子韬', 0, '+81 90-1105-0296', 4, '567668089495024347', '日本札幌白石区菊水三条五丁目2番4号1号室', '1985-01-07', 0, 0, 'zitaotia2', '2019-12-22', 'tianzitao7', '2020-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS147805382654', '林岚', 1, '+1 213-566-5368', 2, '296588093712188195', '448 S Broadway Apt 40, Los Angeles, CA 90015, United States', '1999-01-14', 0, 0, 'linl', '2003-09-25', 'linl2', '2001-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS738457653521', '溫惠敏', 1, '+86 159-6442-4024', 2, '755035524306867000', '中国深圳罗湖区田贝一路457号14室', '1997-05-24', 0, 0, 'wwa86', '2003-04-18', 'wwm', '2006-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS105084917706', '有村聖子', 0, '+81 11-204-3537', 3, '589107607416792312', '日本札幌白石区菊水三条五丁目2番13号31号室', '1997-09-07', 0, 0, 'aseiko1962', '2004-01-26', 'seikoarimura', '2014-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS602151639471', '斉藤詩乃', 1, '+86 21-5769-2118', 3, '878278521667997214', '16F, 339 Binchuan Rd, Minhang District, Shanghai, China', '1988-07-23', 0, 0, 'saitoshino89', '2020-12-09', 'saitoshino', '2002-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS060802355805', 'Eddie Carter', 1, '+86 150-9461-8829', 2, '063900910967052965', '中国成都市成华区玉双路6号934号华润大厦48室', '1985-07-20', 0, 0, 'eddiecarter3', '2019-01-12', 'cartere1968', '2011-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS677310510947', 'Benjamin Payne', 1, '+86 146-4948-9849', 3, '236309175541298189', '中国北京市西城区复兴门内大街528号华润大厦14室', '1997-03-14', 0, 0, 'paynebenjamin', '2000-02-26', 'pabenjamin', '2016-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS405322944708', '顾晓明', 0, '+81 52-558-7451', 2, '833053023667990329', '日本なごやし北区清水三丁目19番1号49階', '1996-01-18', 0, 0, 'guxiao', '2002-09-14', 'xiagu', '2017-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS725375658882', '鈴木樹', 1, '+1 213-250-0356', 2, '871134604084280376', '16 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1997-02-02', 0, 0, 'suzukitsuk623', '2007-04-18', 'suzuki99', '2010-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS708974025936', '尹杰宏', 0, '+1 838-476-0474', 2, '344368582906809472', '91 Central Avenue Apartment 50, Albany, NY 12205, United States', '1992-08-11', 0, 0, 'jiehoyin13', '2003-07-18', 'jiehongyin', '2014-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS478960138651', '严秀英', 1, '+81 80-0093-2848', 2, '390522777442310279', '日本東京港区東新橋一丁目5番17号7階', '1996-03-27', 0, 0, 'xiuyan3', '2004-09-12', 'yanxi6', '2006-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS909988903625', '林梓軒', 0, '+81 66-049-8755', 3, '638205142325737458', '日本おおさかし平野区加美東四丁目9番4号17号室', '1987-12-03', 0, 0, 'lth613', '2017-12-09', 'tszhlam4', '2002-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS315782121028', '岡田瑛太', 1, '+86 140-5218-2303', 3, '808863564705195768', '2F, 49 Jianxiang Rd, Pudong, Shanghai, China', '1992-06-25', 0, 0, 'okadaeit', '2009-09-19', 'eita00', '2007-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS514129493053', '宣國權', 1, '+86 181-9479-8325', 3, '480246136224550181', '中国上海市黄浦区淮海中路603号35室', '1989-11-22', 0, 0, 'kwokkuenhsu429', '2011-06-06', 'hsuankk831', '2001-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS786188519422', '黄睿', 1, '+81 90-9249-1843', 0, '837335422958387065', 'Rm. 35, 3-15-7 Ginza, Chuo-ku, Tokyo, Japan', '1997-03-21', 0, 0, 'hr56', '2008-10-02', 'huangrui', '2003-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS680184049285', 'Norman White', 1, '+86 769-0370-2256', 2, '464822211915221252', '中国东莞东泰五街604号39号楼', '1986-07-04', 0, 0, 'normawhite', '2006-03-30', 'whiteno8', '2019-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS818727193426', 'Joseph Green', 0, '+81 70-9403-5282', 2, '605646959666600440', '日本おおさかし西成区天神ノ森二丁目1番12号4号室', '1997-07-26', 0, 0, 'jogreen', '2022-02-13', 'josephg', '2009-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS958887979973', '小川優奈', 1, '+86 769-873-7862', 3, '607089365556072262', '中国东莞环区南街二巷25号50栋', '1993-06-01', 0, 0, 'ogawa04', '2016-04-14', 'yuna4', '2021-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS598127791256', 'Jacqueline Stephens', 0, '+81 3-9190-2828', 4, '977247351318195463', '日本東京品川区東五反田五丁目2番13号14階', '1993-11-14', 0, 0, 'jstephens', '2000-10-18', 'jacquelinesteph', '2013-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS739348936502', '姜霆鋒', 0, '+81 52-547-9593', 3, '299703867619808873', '日本なごやし北区楠味鋺三丁目80番2号26階', '1992-08-26', 0, 0, 'changtingfung', '2021-04-15', 'changtingfung', '2009-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS748450851615', '曹云熙', 1, '+1 838-408-7476', 3, '387083451863361677', '293 Lark Street Apt 2, Albany, NY 12210, United States', '1993-10-18', 0, 0, 'yunxicao52', '2018-12-15', 'yucao', '2004-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS436595684533', '翁家強', 0, '+86 139-9096-7448', 3, '421106241076697277', 'No.11 building, 93 Kengmei 15th Alley, Dongguan, China', '1987-11-23', 0, 0, 'yunkakeung', '2014-07-16', 'ykk', '2014-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS441270997604', '李富城', 1, '+81 11-438-4350', 3, '347115797118595379', '日本札幌白石区菊水三条五丁目4番7号43階', '1987-04-09', 0, 0, 'fushing425', '2010-01-03', 'fushing1951', '2017-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS391312583573', '汪永發', 1, '+44 (161) 436 4193', 2, '262323302748117038', 'Flat 36, 618 Portland St, Manchester, M1 3LA, United Kingdom', '1990-03-01', 0, 0, 'wong82', '2016-08-23', 'wingfat92', '2001-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS040343453870', '桜井聖子', 1, '+44 (1865) 55 8746', 2, '398014598765683187', 'Flat 12, 754 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1991-05-02', 0, 0, 'sseiko5', '2017-07-07', 'sakurai5', '2002-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS501833936752', '鈴木一輝', 1, '+86 163-4307-1834', 3, '548255974370758399', '18F, 738 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1998-07-28', 0, 0, 'isuz', '2009-06-28', 'ikkisuz501', '2011-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS263962500322', '青木花', 0, '+86 181-6849-0065', 2, '228453028162340951', '中国中山紫马岭商圈中山五路777号23室', '1989-12-30', 0, 0, 'hanaaoki422', '2018-04-19', 'aokihana40', '2010-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS162027503626', '曹國賢', 1, '+81 90-3395-5129', 4, '367848650123607566', '日本ならし西大寺赤田町一丁目7番18号10号室', '1993-10-06', 0, 0, 'kycho', '2012-12-07', 'kwokyin8', '2004-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS579201379469', '薛震南', 0, '+81 80-5948-2873', 1, '501637224107510187', '50-kai, 4-9-20 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-03-05', 0, 0, 'xue14', '2012-02-27', 'zhennanxu', '2020-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS435549353132', '井上葉月', 1, '+81 80-5236-0568', 2, '232294503172148701', '日本おおさかし西成区天神ノ森二丁目1番12号5階', '1998-09-13', 0, 0, 'hinoue', '2004-01-26', 'hazuki40', '2004-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS775394258789', '朱睿', 1, '+81 52-191-6755', 4, '548612629392138500', '日本なごやし守山区瀬古東二丁目171番17号45号室', '1987-06-13', 0, 0, 'ruizhu', '2016-11-02', 'rui4', '2017-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS277226908758', '向宇宁', 0, '+44 (20) 4573 2862', 2, '309046917047048377', 'No.43 Main building, 295 Regent Street, London, W1B 2LX, United Kingdom', '1996-07-23', 0, 0, 'xiang1016', '2015-08-28', 'yxi1225', '2014-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS274628965258', '譚秀文', 0, '+81 70-4498-5036', 3, '661246372139939111', 'Rm. 22, 18 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1990-04-27', 0, 0, 'tamsauman724', '2014-11-06', 'tam7', '2008-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS184430450535', 'Alice Snyder', 1, '+44 7418 922396', 4, '948611087919436006', 'Block 47, 777 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1986-06-29', 0, 0, 'salice', '2016-09-04', 'snyderalice623', '2008-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS990628103272', '白曉彤', 0, '+44 (161) 133 9348', 2, '103475325901709655', 'Block 35, 248 Portland St, Manchester, M1 3LA, United Kingdom', '1993-12-05', 0, 0, 'paht604', '2002-02-26', 'htpa', '2001-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS593195843939', 'Gregory Stone', 0, '+81 70-5417-6783', 1, '505553689123314224', '日本おおさかし平野区加美東四丁目9番1号47号室', '1987-05-04', 0, 0, 'stone06', '2008-02-18', 'gregory813', '2012-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS940018682766', '杜嘉伦', 0, '+86 769-710-2707', 3, '783765870926358241', '19F, 270 Shanhu Rd, Dongguan, China', '1997-11-14', 0, 0, 'dujialun', '2019-05-31', 'djia', '2001-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS613385211424', '梁安琪', 0, '+81 90-7608-3858', 1, '733850346803330960', '日本東京中央区銀座三丁目12番11号47号室', '1987-10-12', 0, 0, 'okleung', '2011-06-07', 'onkayleun1', '2012-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS245154256575', 'Bryan Dixon', 0, '+86 160-9905-7311', 1, '482803043561693351', '中国深圳福田区深南大道359号10栋', '1995-11-27', 0, 0, 'bryan316', '2011-01-02', 'dixonb', '2021-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS951043329767', '石詩涵', 0, '+81 66-573-3095', 1, '021739117857870017', '日本おおさかし東住吉区東田辺三丁目27番14号12階', '1989-05-04', 0, 0, 'shihanshi', '2017-10-10', 'shihansh', '2008-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS266806225980', '野村陸', 0, '+81 70-7050-6295', 2, '810511568579057013', 'Rm. 41, 16 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1985-12-30', 0, 0, 'nomurar', '2008-08-28', 'nrik', '2000-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS207981088098', '吳國榮', 1, '+1 614-102-0401', 2, '843984480388561464', '664 Wicklow Road Suite 13, Columbus, GA 43204, United States', '1991-09-04', 0, 0, 'nkwokwing829', '2002-11-19', 'kwokwingng', '2006-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS636467977272', '杜嘉伦', 0, '+1 213-107-0758', 1, '424065400152933821', '486 Alameda Street Apartment 16, Los Angeles, CA 90002, United States', '1991-01-27', 0, 0, 'jialun612', '2000-02-27', 'jialun614', '2008-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS426724596197', '邓杰宏', 0, '+1 212-720-4324', 1, '879564478706307513', '717 Bank Street Apartment 27, New York, NY 10014, United States', '1991-11-25', 0, 0, 'jiehongde4', '2010-12-11', 'denj6', '2015-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS561519881842', '梁杰宏', 1, '+86 170-6520-6226', 2, '342125809485566036', '中国北京市延庆区028县道750号12号楼', '1989-08-29', 0, 0, 'liang52', '2008-12-16', 'jiehong314', '2010-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS341586001651', '郭子韬', 1, '+1 213-506-9935', 1, '107876653167436436', '964 Figueroa Street Apartment 4, Los Angeles, CA 90037, United States', '1995-03-07', 0, 0, 'guzit48', '2008-02-23', 'zitguo', '2005-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS993727124682', 'Leonard Hughes', 1, '+44 7873 622385', 2, '730117317056199217', 'Flat 50, 329 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1988-05-29', 0, 0, 'leonahu', '2007-12-25', 'hleona50', '2012-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS388805009329', '伊藤大和', 0, '+44 (1223) 28 3389', 0, '408014351805056070', 'Block 1, 473 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1989-07-22', 0, 0, 'yamito726', '2002-04-07', 'yamato4', '2020-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS290978373551', '陈宇宁', 0, '+86 21-278-8832', 3, '821575995042980295', 'No.7 building, 645 Jianxiang Rd, Pudong, Shanghai, China', '1986-06-09', 0, 0, 'yuning5', '2014-01-25', 'yuningchen', '2003-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS053925377781', '中村健太', 0, '+86 760-999-6564', 0, '702656861381580107', '中国中山乐丰六路830号9号楼', '1997-03-28', 0, 0, 'knakamura', '2010-01-17', 'nakamurakenta', '2001-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS224985162181', '樊霆鋒', 0, '+86 21-950-8077', 0, '618106781505851141', 'Room 35, 755 Binchuan Rd, Minhang District, Shanghai, China', '1989-10-31', 0, 0, 'tff', '2000-02-19', 'fantf', '2013-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS134658916970', '吴詩涵', 1, '+81 11-398-0528', 2, '463379744261900838', 'Rm. 16, 13-3-5 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1995-06-19', 0, 0, 'shihanwu', '2019-09-24', 'shihanwu', '2005-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS021355690224', '常秀英', 0, '+86 157-1309-4179', 2, '357380726380304270', 'No.49 building, 286 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1992-08-23', 0, 0, 'xiuyingc916', '2015-05-16', 'chanxiuying9', '2013-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS564096947192', '廖云熙', 1, '+44 (116) 399 3286', 2, '469659950251386759', 'Unit 50, Oxford Eco Centre, 339 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1998-11-15', 0, 0, 'liaoy1', '2004-12-12', 'liaoy', '2005-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS481532058624', 'Jeremy Wright', 1, '+81 52-393-5008', 2, '234908044283800530', '日本なごやし守山区瀬古東二丁目171番8号30階', '1985-01-22', 0, 0, 'wjerem119', '2021-08-13', 'wrightjeremy117', '2010-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS982616134181', '钟秀英', 0, '+44 7123 371475', 3, '632039893331116244', 'Unit 27, Oxford Eco Centre, 883 Redfern St, Liverpool, L20 8JB, United Kingdom', '1990-05-18', 0, 0, 'zhongxiu', '2004-03-19', 'zxiuyi420', '2015-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS746916772260', '姚岚', 0, '+1 838-777-7052', 0, '459675160371527242', '27 Broadway Suite 20, Albany, NY 12207, United States', '1991-06-07', 0, 0, 'lyao7', '2000-06-25', 'layao5', '2002-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS573104601594', '岡本涼太', 1, '+81 70-6036-2450', 3, '773276765848350560', '日本おおさかし近江堂一丁目7番10号11号室', '1987-12-19', 0, 0, 'ryota56', '2001-06-28', 'ryookam51', '2003-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS897985093341', '楊慧儀', 0, '+81 3-8476-8127', 1, '594836761185315803', 'Rm. 22, 5-2-11 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1987-08-08', 0, 0, 'wyyeung1108', '2003-11-17', 'yeung1957', '2007-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS833859109994', '吴詩涵', 0, '+44 (121) 589 9524', 3, '339285520146098270', 'Unit 47, Oxford Eco Centre, 275 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1985-11-16', 0, 0, 'shihan87', '2018-08-25', 'shihan328', '2006-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS451412540556', '松本聖子', 0, '+81 70-4638-8551', 2, '409834413949504659', 'Rm. 19, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1997-08-16', 0, 0, 'matsuseiko', '2011-08-13', 'matsumoto95', '2005-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS102909469409', '關詩君', 1, '+81 3-6073-2254', 1, '890965606607715258', '日本東京品川区東五反田五丁目2番13号37階', '1998-08-01', 0, 0, 'szekwankwan', '2018-06-10', 'kwask', '2016-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS329180407278', 'Barbara Stewart', 0, '+86 176-0211-6067', 2, '874569476552571767', '47F, 28 Dongtai 5th St, Dongguan, China', '1991-03-30', 0, 0, 'bst', '2000-08-04', 'barbarastew', '2018-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS914259244639', '丸山明菜', 0, '+86 10-202-2845', 1, '954447318255257023', 'Room 28, CR Building, 776 FuXingMenNei Street, XiCheng District, Beijing, China', '1992-08-20', 0, 0, 'akina130', '2021-05-28', 'maruyamaakina1980', '2003-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS015609981166', '侯杰宏', 0, '+81 74-071-7216', 0, '202952055760194710', '日本ならし学園南三丁目9番1号45階', '1987-09-05', 0, 0, 'hou1982', '2012-09-25', 'jih87', '2021-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS819313516778', 'Ethel Perry', 1, '+81 70-2032-5963', 4, '453958062995640039', '44-kai, 2-1-4 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-05-01', 0, 0, 'etper1124', '2009-11-22', 'etperr1214', '2018-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS881010119280', '傅詩涵', 0, '+86 28-997-1168', 1, '298722299172058179', 'Room 49, CR Building, 376 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1997-04-01', 0, 0, 'shihan4', '2016-06-02', 'shihanfu50', '2018-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS447054534100', '陶秀英', 1, '+81 3-6643-5170', 4, '160826644489438059', '日本東京中央区銀座三丁目12番4号41号室', '1997-05-29', 0, 0, 'taoxiuying', '2017-07-26', 'taoxiuying3', '2021-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS713604816889', '顾子韬', 1, '+81 11-265-0401', 0, '674045826903288211', '6-kai, 5-19-14 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1993-04-23', 0, 0, 'zgu406', '2009-10-14', 'zitaog', '2022-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS070045535545', '赵子韬', 0, '+44 (151) 133 0978', 3, '983736920880963756', 'No.46 Main building, 2 Hanover St, Liverpool, L1 4AF, United Kingdom', '1998-05-14', 0, 0, 'zitaozhao', '2001-09-14', 'zz9', '2007-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS796827865301', 'Josephine Gonzales', 0, '+81 3-6833-3450', 0, '664319476927353756', '日本東京港区東新橋一丁目5番2号23階', '1992-06-03', 0, 0, 'jgonz', '2012-12-21', 'josephine53', '2008-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS774020632794', '呂家文', 1, '+86 154-2145-3407', 1, '363778620612776383', 'No.29 building, 196 Middle Huaihai Road, Huangpu District, Shanghai, China', '1985-11-06', 0, 0, 'lui00', '2009-02-26', 'kmlu40', '2021-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS147775230473', '蔣曉彤', 0, '+44 7093 999492', 3, '934082402776103257', 'Unit 44, Oxford Eco Centre, 758 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1999-02-19', 0, 0, 'chianghiutung', '2019-03-29', 'hiutchia', '2012-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS216798002582', '河野架純', 1, '+44 7928 899236', 2, '348433517468524577', 'No.40 Main building, 642 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1991-12-18', 0, 0, 'konok', '2003-05-02', 'kasumi3', '2010-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS885427985275', '高致远', 0, '+44 (20) 0194 5465', 1, '343320940849245009', 'Unit 18, Oxford Eco Centre, 27 Hanover Street, London, W1S 1YD, United Kingdom', '1987-06-28', 0, 0, 'gaozhiy', '2001-07-13', 'zhiyga4', '2005-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS870075359026', '崔岚', 0, '+86 10-666-0082', 1, '563302536609025937', '24F, 78 FuXingMenNei Street, XiCheng District, Beijing, China', '1998-08-08', 0, 0, 'cui9', '2021-06-13', 'lancu1108', '2014-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS555021972153', '唐睿', 0, '+81 90-7585-8719', 2, '748977446848814087', '日本ならし西大寺赤田町一丁目7番9号33階', '1996-01-14', 0, 0, 'ruit', '2016-07-04', 'rui528', '2011-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS087545432357', '菅原陽菜', 1, '+1 212-628-6487', 1, '346590924896562258', '490 Fifth Avenue Apartment 20, New York, NY 10017, United States', '1991-05-10', 0, 0, 'hina7', '2018-03-29', 'hinas', '2012-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS027423606507', '樊浩然', 1, '+86 760-4773-3119', 1, '377832491102730151', 'No.38 building, 117 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1997-04-04', 0, 0, 'fanhy', '2020-01-31', 'fanhoyin1216', '2008-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS665145696325', '金子彩乃', 0, '+44 5692 073385', 4, '498506202704135642', 'Block 10, 959 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1993-12-09', 0, 0, 'ayk', '2010-10-16', 'kanekoay', '2010-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS615018703834', '渡辺玲奈', 0, '+1 838-621-0355', 4, '366230202310687180', '98 Lark Street Suite 37, Albany, NY 12210, United States', '1992-10-14', 0, 0, 'satorena', '2018-05-30', 'satorena1', '2018-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS939374697739', 'Francisco Gonzales', 0, '+44 7037 728184', 2, '768604227539443524', 'Unit 14, Oxford Eco Centre, 475 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1995-04-07', 0, 0, 'gfrancisco', '2004-11-02', 'fgonza', '2017-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS030088443027', '丁璐', 1, '+86 28-888-8648', 2, '684017022025535201', 'No.35 building, 417 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1988-07-25', 0, 0, 'luding', '2004-09-23', 'dlu75', '2010-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS318147748207', 'Edward Munoz', 0, '+44 5680 060434', 1, '215254725447998816', 'No.46 Main building, 945 Mosley St, Manchester, M2 3AQ, United Kingdom', '1996-02-09', 0, 0, 'munoze92', '2003-04-13', 'edwardmunoz1971', '2016-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS035694089445', '山本翼', 0, '+1 614-729-7544', 4, '079991351113449319', '823 East Alley Apt 39, Columbus, GA 43201, United States', '1994-05-19', 0, 0, 'tsubasay2016', '2012-02-22', 'ytsub', '2009-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS097823619701', '汪致远', 1, '+86 131-2002-0685', 1, '389314355736670189', '中国上海市徐汇区虹桥路408号46楼', '1998-02-05', 0, 0, 'zhiyuan69', '2012-08-02', 'wang75', '2010-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS829728204027', '林安琪', 1, '+81 80-5956-7703', 2, '018594428587881737', '5F, 2-1-8 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1995-10-26', 0, 0, 'lanqi9', '2013-02-09', 'anqil66', '2017-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS372343235118', '韦璐', 0, '+86 197-3870-5905', 4, '194958161462778513', '中国成都市锦江区红星路三段560号18栋', '1993-10-15', 0, 0, 'lw6', '2018-05-18', 'luwei130', '2006-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS733442016409', '江安琪', 1, '+81 3-6661-4552', 3, '093288799077058934', 'Rm. 43, 1-5-13, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1991-04-04', 0, 0, 'anqijiang', '2018-02-25', 'jiananqi', '2011-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS119582252783', 'Kenneth Washington', 0, '+1 718-192-0857', 4, '749932323024747252', '530 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1997-04-29', 0, 0, 'kenneth220', '2016-04-22', 'washingtonkenneth', '2015-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS624824156580', '刘嘉伦', 1, '+81 80-5735-9018', 4, '763097410121334221', '29-kai, 2-5-2 Chitose, Atsuta Ward, Nagoya, Japan', '1989-01-03', 0, 0, 'liujialun2', '2008-08-29', 'jial76', '2019-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS588615954172', '清水陽太', 1, '+1 312-042-0176', 1, '657174153372451599', '476 North Michigan Ave Apartment 41, Chicago, IL 60611, United States', '1993-03-19', 0, 0, 'yoshimi', '2001-09-24', 'yotshi', '2021-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS566860951662', '胡嘉伦', 1, '+81 3-5481-3878', 2, '148766331858741378', '38-kai, 5-2-8 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1991-07-16', 0, 0, 'jialunh', '2011-10-16', 'jialunhu', '2015-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS795855449681', '朱杰宏', 1, '+44 7464 709554', 1, '237098510110970720', 'Flat 11, 267 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1987-05-10', 0, 0, 'jiehozhu', '2000-10-10', 'jiz', '2005-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS280565679613', '和田大地', 0, '+44 (161) 045 3760', 2, '259223707503433205', 'Unit 24, Oxford Eco Centre, 136 Portland St, Manchester, M1 3LA, United Kingdom', '1992-08-30', 0, 0, 'wadadaich95', '2018-06-05', 'daichiwa10', '2014-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS012468622895', '戴杰宏', 1, '+86 20-8323-7915', 3, '639687852099759711', '中国广州市白云区机场路棠苑街五巷599号38栋', '1991-12-26', 0, 0, 'jdai1', '2017-05-20', 'daijieh', '2006-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS172061261305', '吉田蒼士', 0, '+81 52-682-5502', 3, '379686553763590027', '日本なごやし北区楠味鋺三丁目80番5号35号室', '1994-09-02', 0, 0, 'yoshidaao56', '2013-01-04', 'yoshiaoshi5', '2022-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS824704228022', '西村大和', 1, '+81 66-880-9318', 3, '935045665119455091', '19-kai, 3-27-8 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-07-27', 0, 0, 'nisyamato10', '2010-09-01', 'nyam', '2017-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS349954216471', 'Jack Mendoza', 1, '+44 (121) 412 0939', 2, '194450429618390943', 'Block 34, 274 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1991-09-16', 0, 0, 'jackm4', '2019-01-06', 'mendojack5', '2003-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS251560006982', '曹云熙', 1, '+86 20-5444-8605', 2, '284736629306047550', '32F, 739 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1996-07-04', 0, 0, 'cyunxi7', '2020-10-09', 'cay', '2007-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS206962049978', '中山優奈', 1, '+86 195-8842-0216', 3, '470787391758547335', 'Room 10, CR Building, No. 362, Shuangqing Rd, Chenghua District, Chengdu, China', '1989-09-28', 0, 0, 'yunakay3', '2016-06-27', 'ynak', '2013-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS524638765503', '木村百花', 1, '+44 (121) 105 2949', 2, '668218881904691236', 'Flat 25, 514 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1990-08-18', 0, 0, 'kimura1973', '2018-01-30', 'momok60', '2000-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS322977903623', '邱致远', 0, '+86 135-3942-6700', 2, '144238088753648178', '中国深圳龙岗区布吉镇西环路204号华润大厦36室', '1990-05-27', 0, 0, 'qzhiyuan', '2009-01-25', 'zhiyuanqiu', '2021-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS864747607652', 'Dawn Butler', 0, '+81 70-3180-5485', 2, '030422990974491572', '日本札幌白石区菊水三条五丁目4番19号11号室', '1998-08-07', 0, 0, 'dawnbutle4', '2011-09-11', 'dawn321', '2014-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS479559754193', 'Joseph Garcia', 1, '+1 212-466-9738', 4, '417990582734146574', '493 Canal Street Apartment 50, New York, NY 10013, United States', '1996-05-26', 0, 0, 'josephga', '2000-05-01', 'gjoseph7', '2005-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS129599374832', '石秀英', 1, '+86 760-1610-4360', 1, '806982517245035215', '中国中山紫马岭商圈中山五路57号49栋', '1986-06-09', 0, 0, 'shix', '2008-04-16', 'shxiuy1117', '2003-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS380524814616', '刘子韬', 0, '+81 3-7649-3231', 4, '850316851918950652', '日本東京中央区銀座三丁目12番8号17階', '1994-10-14', 0, 0, 'zli', '2001-04-17', 'zitaol', '2004-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS124344406280', 'Anita Patterson', 1, '+44 (1223) 12 4178', 1, '859515815214570762', 'Flat 27, 613 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1997-02-23', 0, 0, 'ap54', '2017-12-05', 'anita128', '2004-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS432928342997', '薛子异', 0, '+86 21-394-4360', 1, '186735799475904529', 'Room 32, CR Building, 135 Jianxiang Rd, Pudong, Shanghai, China', '1991-01-30', 0, 0, 'zx1947', '2013-05-21', 'ziyi1', '2020-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS186531964101', 'Eddie Alexander', 0, '+81 74-057-0690', 0, '371943772917364898', '9-kai, 3-9-12 Gakuenminami, Nara, Japan', '1990-02-09', 0, 0, 'eddieal812', '2015-12-29', 'eddieal', '2004-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS989225251897', '渡部葵', 0, '+86 21-180-3650', 1, '669020949387041461', '16F, 901 Middle Huaihai Road, Huangpu District, Shanghai, China', '1997-04-04', 0, 0, 'watanabe717', '2010-11-03', 'watanabeaoi', '2013-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS983076058887', 'Barry Kennedy', 1, '+86 769-7414-7011', 1, '563114710248721819', 'No.25 building, 993 Huanqu South Street 2nd Alley, Dongguan, China', '1988-11-21', 0, 0, 'barrykennedy', '2000-02-29', 'barry77', '2011-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS149611925160', '姜晓明', 0, '+86 132-4740-0669', 3, '994000715184605633', 'No.45 building, 792 Shanhu Rd, Dongguan, China', '1999-02-27', 0, 0, 'jxia1122', '2004-11-05', 'xiaomingjiang9', '2006-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS070858279997', '钱秀英', 1, '+81 52-904-7983', 1, '156721587392376241', 'Rm. 6, 2-5-16 Chitose, Atsuta Ward, Nagoya, Japan', '1985-03-03', 0, 0, 'qianx', '2017-08-19', 'qianxiuy', '2011-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS747568787746', '许詩涵', 0, '+1 213-466-7662', 0, '661876992897222565', '557 S Broadway Apartment 30, Los Angeles, CA 90015, United States', '1995-05-26', 0, 0, 'shihxu', '2015-09-30', 'xushihan19', '2021-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS408747065928', '林家強', 0, '+86 760-7018-8157', 3, '509499428233712657', '中国中山京华商圈华夏街663号29室', '1985-07-04', 0, 0, 'lamkak', '2011-07-07', 'lkak', '2013-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS956744859822', '鈴木結翔', 0, '+86 20-729-2992', 1, '779759223738845540', '45F, 680 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1997-07-18', 0, 0, 'suzukiyuito', '2006-09-22', 'suzyu', '2012-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS953431559739', '黎裕玲', 1, '+86 21-988-3624', 4, '173035842336534612', 'No.35 building, 978 Jianxiang Rd, Pudong, Shanghai, China', '1994-04-18', 0, 0, 'yulinglai', '2000-12-25', 'yuling4', '2011-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS155754018561', '韦睿', 0, '+81 11-670-7069', 4, '064786301617196396', '20-kai, 13-3-11 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-05-08', 0, 0, 'weirui726', '2009-12-20', 'rwei83', '2001-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS965959143210', 'Larry Patel', 0, '+1 330-382-8345', 1, '244922779010249265', '856 Fern Street Apartment 26, Akron, OH 44307, United States', '1990-08-25', 0, 0, 'lapatel02', '2020-01-03', 'patellarr10', '2013-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS261192528893', '于子异', 1, '+86 21-475-5205', 2, '031464094476411735', 'Room 32, CR Building, 817 Binchuan Rd, Minhang District, Shanghai, China', '1996-07-11', 0, 0, 'ziyiy', '2007-06-01', 'ziyi1980', '2021-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS404767280167', '張麗欣', 1, '+86 158-0536-1062', 3, '158483335780351794', '中国北京市朝阳区三里屯路203号27栋', '1996-03-22', 0, 0, 'cheung6', '2015-04-16', 'cheung8', '2000-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS729057215923', '森田架純', 0, '+81 70-4311-2609', 3, '938282395840596776', '日本ならし学園南三丁目9番18号9階', '1995-05-30', 0, 0, 'kasumimorita56', '2001-01-07', 'kasumi8', '2016-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS366746276690', '楊俊宇', 1, '+81 80-2549-0540', 3, '622421730332962380', '38-kai, 9 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-11-29', 0, 0, 'yeung9', '2002-06-01', 'cyyeun518', '2010-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS377843000944', '任永權', 1, '+86 132-6161-8658', 4, '901570439506746445', '19F, 959 Tianhe Road, Tianhe District, Guangzhou, China', '1993-05-29', 0, 0, 'yam528', '2012-11-21', 'yam502', '2013-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS513169807056', '汤云熙', 1, '+86 199-4163-7163', 0, '157355315875528004', '中国成都市成华区二仙桥东三路642号12栋', '1985-07-26', 0, 0, 'yunxi7', '2009-12-10', 'tangyunxi929', '2020-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS208436119862', 'Robert Gomez', 1, '+86 193-8073-6500', 3, '004986595693527161', 'Room 46, CR Building, 168 68 Qinghe Middle St, Haidian District, Beijing, China', '1993-08-15', 0, 0, 'robgomez', '2022-01-11', 'robertgomez1971', '2003-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS760622904406', '黎安琪', 0, '+81 52-878-7020', 1, '145091544305887296', '26F, 7 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-10-21', 0, 0, 'li1984', '2021-02-25', 'lan', '2019-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS310354028547', '松本大輔', 1, '+86 144-6664-8361', 1, '970378357699557420', '中国中山乐丰六路634号6楼', '1996-02-03', 0, 0, 'daisukemats', '2017-05-14', 'daism1952', '2020-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS853012486384', '近藤美緒', 0, '+81 66-835-6349', 3, '465159670602784954', '20F, 2-1-20 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1992-02-21', 0, 0, 'konmio', '2016-12-29', 'miokondo', '2018-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS606605374589', '韓俊宇', 1, '+1 718-257-0725', 0, '465805745190766395', '707 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1987-04-20', 0, 0, 'cyha917', '2021-02-23', 'cyhan', '2016-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS005093150362', 'Martin Kelley', 1, '+86 10-3700-1903', 2, '199311711914873149', '中国北京市东城区东单王府井东街269号19栋', '1991-12-14', 0, 0, 'mkelley', '2009-07-27', 'kelley6', '2010-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS033034150538', '楊發', 0, '+86 134-7077-7629', 2, '379215740625701107', '25F, 69 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-06-30', 0, 0, 'yeungfat8', '2017-03-20', 'yeung202', '2001-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS503503665535', '周璐', 1, '+1 212-312-4365', 1, '479411468959645820', '582 Bank Street 3rd Floor, New York, NY 10014, United States', '1995-10-22', 0, 0, 'luzho', '2012-07-15', 'zhlu', '2006-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS458333110170', '千葉光莉', 1, '+81 52-974-7130', 3, '780243450573773858', '日本なごやし守山区瀬古東二丁目171番3号3号室', '1988-12-27', 0, 0, 'chikari', '2003-10-18', 'chibahikari', '2021-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS506178954670', '武田結翔', 0, '+86 28-962-3588', 1, '946484891883925154', '中国成都市锦江区红星路三段739号13室', '1986-06-17', 0, 0, 'takyuito', '2017-10-29', 'takedyuito1994', '2007-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS912574910295', 'Maria Fisher', 0, '+1 838-237-1369', 0, '730141214431651524', '981 State Street Apartment 34, Albany, NY 12203, United States', '1993-05-24', 0, 0, 'fishermar2', '2010-01-31', 'fishm', '2003-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS871870960687', '桜井美月', 1, '+86 755-111-8273', 3, '237062265522659386', 'Room 31, 169 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1985-12-06', 0, 0, 'mitsusaku', '2009-03-14', 'sakumitsuki1', '2007-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS597488583300', '秦嘉伦', 0, '+81 70-0043-3941', 2, '649871384322603097', '31-kai, 14 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1991-09-24', 0, 0, 'qijialun', '2014-09-07', 'qijial', '2002-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS697726532957', 'Doris Diaz', 0, '+86 141-3418-1497', 4, '573775187577619421', 'No.31 building, 103 Binchuan Rd, Minhang District, Shanghai, China', '1991-09-25', 0, 0, 'ddiaz8', '2008-06-19', 'ddoris914', '2012-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS258068859528', '孙秀英', 1, '+81 80-0070-0102', 3, '472647047176581819', '日本東京品川区東五反田五丁目2番20号14階', '1991-01-23', 0, 0, 'sun1992', '2018-05-03', 'xiuyingsun912', '2009-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS816144216850', 'William Gonzales', 1, '+86 28-7034-8090', 2, '540951231866306327', 'No.40 building, No. 13, Shuangqing Rd, Chenghua District, Chengdu, China', '1986-03-08', 0, 0, 'gonzales6', '2015-01-24', 'gonzales9', '2006-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS102643569220', '常秀英', 1, '+86 10-3127-6031', 2, '937112099627721518', '中国北京市海淀区清河中街68号447号3号楼', '1990-08-11', 0, 0, 'xiuychang', '2011-03-17', 'cxiuying', '2018-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS897192724204', '孫小慧', 0, '+86 10-9765-7201', 2, '227663230958293028', '中国北京市延庆区028县道886号华润大厦31室', '1995-03-30', 0, 0, 'hsuansw3', '2012-04-19', 'hsuan6', '2018-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS925832180323', '高璐', 1, '+1 838-683-9996', 1, '005483413339259123', '912 Broadway Apartment 42, Albany, NY 12207, United States', '1985-11-19', 0, 0, 'lugao3', '2017-04-21', 'gaolu', '2007-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS543854155216', '吴睿', 1, '+86 21-2493-8115', 4, '502676857534683900', '中国上海市徐汇区虹桥路588号38室', '1989-10-10', 0, 0, 'ruiwu1984', '2010-08-22', 'rwu', '2012-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS307936329233', '上田彩乃', 0, '+86 10-5684-1523', 2, '557173136777591175', 'No.21 building, 468 Dong Zhi Men, Dongcheng District, Beijing, China', '1992-05-29', 0, 0, 'uayan1101', '2000-07-08', 'uedaayan', '2016-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS516808479979', '今井涼太', 1, '+86 190-5037-2477', 1, '850044188193873339', 'Room 33, 278 Ganlan Rd, Pudong, Shanghai, China', '1988-11-03', 0, 0, 'iry', '2014-01-24', 'ryotaim', '2004-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS092956289249', 'Patricia Porter', 1, '+1 718-852-1036', 2, '899156023318347359', '833 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1998-11-16', 0, 0, 'porter517', '2020-10-05', 'porterpat', '2000-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS271435349110', '杉山葵', 1, '+81 11-619-4341', 3, '544818606975726703', 'Rm. 12, 5-4-12 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1996-11-18', 0, 0, 'asugi', '2011-05-19', 'sugiaoi', '2010-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS913462399975', '江子韬', 1, '+81 80-4436-2318', 3, '988383244035291502', 'Rm. 27, 1-7-11 Omido, Higashiosaka, Osaka, Japan', '1985-06-09', 0, 0, 'jianzita127', '2016-04-27', 'jiangz', '2019-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS959453678613', 'Vincent Reyes', 1, '+44 7733 615576', 4, '860113761075727092', 'Block 17, 930 Regent Street, London, W1B 2LX, United Kingdom', '1987-12-28', 0, 0, 'reyes829', '2021-09-18', 'vincent10', '2020-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS780874379438', '罗璐', 0, '+81 3-2677-3552', 3, '473512905010110287', 'Rm. 11, 5-2-12 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1992-11-24', 0, 0, 'luol63', '2006-01-03', 'lulu', '2014-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS478513586101', '山口涼太', 0, '+86 755-198-4989', 3, '614608342505139655', 'No.36 building, 593 Jingtian East 1st St, Futian District, Shenzhen, China', '1995-04-22', 0, 0, 'yamaguchiryot315', '2007-11-15', 'yamryota63', '2001-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS408073960947', '任嘉欣', 0, '+81 70-5567-7191', 2, '063942590146151454', '26F, 2-1-4 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1987-05-20', 0, 0, 'yam1983', '2012-01-16', 'kyy', '2009-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS884892301718', '横山玲奈', 1, '+86 21-1475-0740', 0, '675942514292915945', 'No.9 building, 176 Ganlan Rd, Pudong, Shanghai, China', '1998-03-04', 0, 0, 'renyokoyama09', '2008-05-06', 'reyok', '2008-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS636907711628', '雷詩涵', 0, '+81 11-999-9668', 2, '386965054998939431', '日本札幌豊平区豊平三条十三丁目3番5号10号室', '1997-11-30', 0, 0, 'lei5', '2012-04-09', 'shihanlei2', '2013-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS345629577426', 'Raymond Kennedy', 0, '+81 66-063-5557', 1, '269455417382115653', 'Rm. 26, 1-1-5 Deshiro, Nishinari Ward, Osaka, Japan', '1990-10-03', 0, 0, 'kennedyraymond8', '2005-09-08', 'kennedyraymond', '2004-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS726277929887', '福田百恵', 1, '+1 838-393-1596', 1, '789054438029126693', '229 Lark Street Apartment 5, Albany, NY 12210, United States', '1998-08-09', 0, 0, 'momofukuda', '2002-07-27', 'fukumomo', '2018-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS090429488675', '遠藤優奈', 1, '+81 70-1085-0124', 3, '933779918540224159', '日本おおさかし平野区加美東四丁目9番6号48階', '1985-12-02', 0, 0, 'yunaendo', '2011-01-16', 'endoyuna4', '2003-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS681597590810', '邱小慧', 0, '+81 11-402-2827', 1, '389523805427809642', '日本札幌白石区菊水三条五丁目4番17号43階', '1995-07-16', 0, 0, 'swy3', '2011-11-24', 'yausiuwai8', '2006-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS111701724156', 'Ralph Morris', 1, '+81 90-5306-5530', 2, '666032127394434249', '23F, 3-9-11 Gakuenminami, Nara, Japan', '1992-10-08', 0, 0, 'ralmorris', '2018-10-26', 'morris707', '2006-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS438110663835', '董睿', 0, '+81 80-1831-0651', 1, '346377632543795991', '日本東京千代田区丸の内一丁目6番12号13階', '1993-08-30', 0, 0, 'dongrui9', '2000-05-12', 'dongrui726', '2020-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS730128630789', '赵震南', 1, '+86 185-7940-4575', 4, '651388313341779829', '9F, 463 Shanhu Rd, Dongguan, China', '1998-06-24', 0, 0, 'zzhennan', '2020-06-08', 'zhazhen5', '2010-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS560175686707', 'Susan Castro', 1, '+44 5573 556560', 1, '351389679378467650', 'Block 46, 428 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1994-10-19', 0, 0, 'susanc2', '2014-12-31', 'castro1010', '2003-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS721533639056', '加藤優奈', 1, '+86 21-4238-3147', 0, '877948509412152129', '中国上海市浦东新区橄榄路379号26楼', '1998-12-31', 0, 0, 'yunakato', '2009-07-09', 'yuna425', '2009-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS859882087644', 'Amber Morales', 1, '+1 212-843-7304', 0, '440998620206206792', '507 Wooster Street Apartment 47, New York, NY 10012, United States', '1985-04-27', 0, 0, 'moralesamber312', '2002-03-23', 'ambmorales', '2003-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS104474387574', '秦子韬', 1, '+44 7309 688573', 0, '394482903869984237', 'Block 43, 456 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1988-02-11', 0, 0, 'qzitao', '2001-04-27', 'qin1029', '2002-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS365070186309', '藍慧珊', 0, '+1 838-983-3645', 2, '680143154535420520', '609 Broadway Apartment 14, Albany, NY 12207, United States', '1994-09-21', 0, 0, 'waisanlam', '2015-09-11', 'waisan1984', '2020-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS047251193660', '高木海斗', 0, '+44 (1223) 11 3386', 0, '284648966625071070', 'No.1 Main building, 782 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1995-04-03', 0, 0, 'takagkaito43', '2008-02-10', 'kaitotaka9', '2019-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS758663959907', '村上翼', 0, '+86 192-3441-5092', 1, '302786872467108841', '中国中山天河区大信商圈大信南路807号26楼', '1994-02-17', 0, 0, 'mtsuba', '2001-03-27', 'tmurakami1971', '2014-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS374508492328', 'Theresa Washington', 1, '+81 3-2782-6323', 1, '034996901635126682', '日本東京千代田区丸の内一丁目6番11号39階', '1991-06-17', 0, 0, 'washingtont', '2005-05-22', 'therewashington', '2009-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS090927872167', '上田優奈', 0, '+86 141-1480-7956', 3, '152383443100806878', '中国东莞坑美十五巷372号23室', '1989-07-28', 0, 0, 'yunau9', '2008-08-03', 'uedyuna19', '2002-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS441185450440', '段嘉伦', 1, '+86 10-718-1140', 1, '536816259317732380', 'Room 4, 928 Dong Zhi Men, Dongcheng District, Beijing, China', '1992-08-17', 0, 0, 'jialun73', '2015-05-02', 'jidua', '2004-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS740532970188', '駱淑怡', 1, '+44 5334 389426', 3, '637148565499575170', 'No.7 Main building, 397 Hanover Street, London, W1S 1YD, United Kingdom', '1998-11-08', 0, 0, 'lok00', '2002-03-17', 'syl8', '2011-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS730493077526', '桜井湊', 1, '+86 154-3601-4655', 3, '733710434599669082', 'No.1 building, No.968, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1985-02-12', 0, 0, 'sakuraiminato', '2021-05-06', 'sakuraimin', '2003-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS217201449938', '錢淑怡', 0, '+81 66-684-5136', 0, '403500926111122864', '8F, 4-9-1 Kamihigashi, Hirano Ward, Osaka, Japan', '1991-03-31', 0, 0, 'chinsy', '2011-04-03', 'sukyee930', '2016-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS723481862402', '岡田拓哉', 1, '+44 (151) 439 5179', 1, '216848776172043853', 'Flat 42, 163 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1998-07-31', 0, 0, 'okadatakuy', '2014-01-30', 'takokada', '2016-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS954650318707', '橋本美緒', 1, '+81 3-2164-5059', 1, '474142960768322168', '37F, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1989-07-07', 0, 0, 'hashim', '2013-08-22', 'mio52', '2020-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS346151184762', '山田葉月', 1, '+44 5454 425032', 3, '161864857416440413', 'Unit 45, Oxford Eco Centre, 374 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1992-06-18', 0, 0, 'yamadahazuki76', '2006-12-11', 'yamadhazuki', '2001-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS159200522300', '伍秀文', 0, '+86 151-4741-6500', 1, '021033704134518391', 'Room 22, CR Building, 103 Tianhe Road, Tianhe District, Guangzhou, China', '1994-02-04', 0, 0, 'sauman5', '2003-09-11', 'smng704', '2019-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS846016121894', '田發', 0, '+81 90-1703-9883', 4, '103279944295297854', 'Rm. 11, 3-15-10 Ginza, Chuo-ku, Tokyo, Japan', '1997-10-13', 0, 0, 'tin629', '2015-03-22', 'ftin10', '2008-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS217579063568', '菊地樹', 1, '+86 769-690-1506', 4, '175730957131602397', '中国东莞环区南街二巷205号3栋', '1989-04-26', 0, 0, 'kikuchiitsu', '2009-03-15', 'ikik', '2004-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS860095686319', 'Lawrence Reed', 0, '+86 755-000-0017', 1, '567908258333432855', 'No.26 building, 544 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1996-06-21', 0, 0, 'reed9', '2003-03-26', 'reedlawre', '2000-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS407914371913', 'John Wagner', 0, '+81 66-511-5448', 0, '509030801592041539', 'Rm. 18, 1-1-12 Deshiro, Nishinari Ward, Osaka, Japan', '1994-03-21', 0, 0, 'wagnerjohn', '2018-08-31', 'jwagner64', '2019-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS326937263817', 'Jeffrey Rose', 0, '+86 760-4035-4005', 1, '951516493816040778', 'No.14 building, 411 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1986-11-06', 0, 0, 'jeffreyr', '2002-03-13', 'rje', '2021-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS727007890261', '錢慧珊', 0, '+81 90-8288-4546', 2, '456370452261310799', '30-kai, 5-19-15 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1987-07-31', 0, 0, 'waisan6', '2006-08-29', 'chinwaisan', '2019-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS262189397396', '阿部玲奈', 0, '+86 170-2344-4590', 4, '650268124742567638', '中国北京市海淀区清河中街68号771号华润大厦32室', '1990-08-22', 0, 0, 'rab', '2000-01-27', 'abr', '2003-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS338596092180', '汤睿', 0, '+1 614-563-0121', 0, '532735033321024492', '380 Diplomacy Drive Suite 39, Columbus, GA 43228, United States', '1997-04-10', 0, 0, 'rutang', '2005-05-01', 'tanrui', '2000-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS283899459287', '贺詩涵', 1, '+1 213-310-7182', 4, '566879275839502464', '70 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1995-07-12', 0, 0, 'shihan1116', '2020-11-26', 'shihanhe', '2016-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS848428037005', '武睿', 1, '+81 90-6900-6168', 4, '015988638301466522', '日本おおさかし西成区出城一丁目1番8号31階', '1997-04-23', 0, 0, 'ruiwu3', '2008-10-10', 'wurui', '2019-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS136589585905', 'Manuel Chavez', 1, '+44 5593 325548', 1, '407601033809099467', 'Unit 13, Oxford Eco Centre, 975 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1985-08-22', 0, 0, 'chavezmanuel', '2022-02-08', 'chama930', '2017-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS657904919892', 'Nicole Gutierrez', 0, '+81 3-1624-3517', 0, '243215367230732126', '11-kai, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-09-18', 0, 0, 'gutienico331', '2002-07-16', 'gnicole', '2021-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS681505427496', '苗家文', 1, '+86 760-9723-2709', 3, '286796541420592640', 'Room 49, 170 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1988-06-25', 0, 0, 'kamanmi128', '2007-06-29', 'kmmi1962', '2008-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS703159408854', '苗潤發', 1, '+81 80-0423-0941', 1, '125606006627456715', 'Rm. 36, 5-2-3 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-05-21', 0, 0, 'yfmiu3', '2004-01-27', 'miu72', '2016-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS378148558150', 'Arthur Scott', 0, '+1 213-525-1790', 2, '122119672768616903', '102 Grape Street Apartment 15, Los Angeles, CA 90002, United States', '1987-09-08', 0, 0, 'arthurs', '2000-08-17', 'sarthur831', '2007-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS156799933597', '前田絢斗', 0, '+81 74-035-7341', 4, '357873920094107430', '日本ならし西大寺赤田町一丁目7番19号15号室', '1986-04-15', 0, 0, 'maedaayat55', '2020-04-26', 'maeda904', '2000-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS400703704460', '余安琪', 1, '+44 7155 907334', 1, '832012750550538741', 'Flat 16, 53 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1987-10-29', 0, 0, 'anyu1029', '2001-06-26', 'anqiyu43', '2001-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS750320182505', '徐杰倫', 1, '+1 212-478-6680', 3, '679853080883042773', '792 Bank Street Apartment 7, New York, NY 10014, United States', '1991-05-06', 0, 0, 'cltsui6', '2012-11-08', 'tscl', '2010-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS353848856970', '叶杰宏', 0, '+86 10-0778-8524', 1, '166626402133136249', 'Room 5, CR Building, 615 028 County Rd, Yanqing District, Beijing, China', '1996-03-16', 0, 0, 'jiehong1', '2021-12-05', 'jiehong58', '2017-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS033493203453', '吴璐', 1, '+86 10-8987-1563', 0, '163713725891865074', 'No.42 building, 893 Dong Zhi Men, Dongcheng District, Beijing, China', '1989-02-03', 0, 0, 'lu8', '2014-02-11', 'luwu3', '2004-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS364635570784', '林杰宏', 1, '+81 90-6782-4013', 2, '385829516300676869', '日本東京品川区東五反田五丁目2番3号1階', '1998-08-14', 0, 0, 'jiehongl', '2004-10-13', 'jieholin', '2005-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS352195569981', '餘慧敏', 0, '+1 614-497-3790', 3, '317770100381938483', '955 East Cooke Road Suite 1, Columbus, GA 43214, United States', '1986-10-23', 0, 0, 'yuewm', '2008-06-02', 'waimany', '2012-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS737163502349', '小川桜', 1, '+44 (1223) 81 1994', 1, '006891911931296604', 'Block 20, 917 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1997-10-11', 0, 0, 'ogsakura9', '2017-12-23', 'ogawsakur5', '2003-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS771049220393', 'Benjamin Wood', 1, '+81 90-1473-6509', 2, '719565294203794377', '日本札幌白石区菊水三条五丁目2番19号24階', '1995-05-04', 0, 0, 'woodbenj4', '2011-11-24', 'benwood01', '2012-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS252335569095', '元麗欣', 0, '+81 90-0496-5532', 3, '482893131812738744', '日本ならし大和郡山市本庄町一丁目1番2号30号室', '1998-04-06', 0, 0, 'yly404', '2011-10-17', 'lyy', '2018-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS089996212925', '谷天樂', 0, '+86 20-3960-9927', 2, '819718064691184831', 'No.10 building, 691 Xiaoping E Rd, Baiyun , Guangzhou, China', '1985-06-16', 0, 0, 'koo430', '2006-07-04', 'kootinl', '2002-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS881067799063', 'Francis Thompson', 0, '+86 168-5657-4986', 3, '180460647378156116', '中国深圳罗湖区田贝一路898号15室', '1997-06-25', 0, 0, 'thompsonfrancis1', '2008-04-29', 'francisthompson330', '2016-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS773229382974', '關頴思', 0, '+44 (121) 562 0486', 3, '974249041564546029', 'No.36 Main building, 565 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1986-01-28', 0, 0, 'wingszekwan105', '2005-06-15', 'kwaws', '2010-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS781049226775', '彭云熙', 0, '+86 20-383-2973', 1, '342939635940161276', 'No.3 building, 107 Tianhe Road, Tianhe District, Guangzhou, China', '1988-11-29', 0, 0, 'yunp5', '2000-07-26', 'ype', '2004-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS322360992038', '汪曉彤', 1, '+1 213-635-4899', 2, '891538655027159810', '529 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1991-12-17', 0, 0, 'hiutungwong', '2003-12-15', 'hiutung8', '2009-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS519937236811', 'Doris Mcdonald', 0, '+81 52-787-0608', 4, '167835480644982674', '4F, 13 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1986-11-27', 0, 0, 'domcd', '2006-04-28', 'mcdonalddor', '2008-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS041598133351', '木村涼太', 0, '+1 718-903-3966', 2, '627790544668302959', '772 Bergen St Apt 9, Brooklyn, NY 11217, United States', '1997-09-12', 0, 0, 'kimurar', '2016-01-22', 'rkimura97', '2008-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS976204796111', 'Robin Boyd', 1, '+86 175-1460-1885', 0, '330811889681717905', 'No.33 building, 905 Binchuan Rd, Minhang District, Shanghai, China', '1993-09-26', 0, 0, 'boydrobin9', '2010-07-18', 'boydrobin', '2018-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS614077626625', '蘇梓軒', 0, '+81 52-333-8177', 3, '962998928994530363', '日本なごやし瑞穂区河岸町四丁目20番3号21階', '1988-04-17', 0, 0, 'tszhin1951', '2011-01-14', 'so224', '2014-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS075622184600', '许岚', 0, '+81 3-6397-8288', 3, '461757779486998078', '15-kai, 1-6-15, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-04-13', 0, 0, 'lanxu', '2000-02-25', 'xul14', '2010-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS546992141780', 'Nathan Lee', 1, '+1 213-631-6636', 1, '616203993579220526', '773 Alameda Street Apt 29, Los Angeles, CA 90002, United States', '1995-10-31', 0, 0, 'lee3', '2011-07-14', 'nathanlee93', '2013-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS734410321325', 'Elaine Ford', 0, '+1 838-823-5582', 1, '060409513214687637', '886 Central Avenue Apt 15, Albany, NY 12206, United States', '1994-03-04', 0, 0, 'elainef', '2013-08-12', 'forde1996', '2004-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS346425176277', '李睿', 0, '+81 52-822-1459', 1, '372381329554391535', 'Rm. 47, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-05-31', 0, 0, 'li4', '2018-05-14', 'lr6', '2003-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS797308735505', '何云熙', 0, '+86 760-555-5756', 4, '135301004989298587', '23F, 331 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1992-04-16', 0, 0, 'yunxi5', '2010-01-18', 'yunxi6', '2003-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS112710209943', '韦云熙', 1, '+1 212-802-0553', 1, '338187220589882849', '310 Wooster Street Apt 31, New York, NY 10012, United States', '1986-10-12', 0, 0, 'wei6', '2018-09-16', 'ywe8', '2017-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS704481665359', '蒋安琪', 1, '+86 760-832-8238', 3, '538439720532976318', 'No.4 building, 875 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1985-05-20', 0, 0, 'anqi814', '2015-04-27', 'anjiang', '2011-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS543451976067', '近藤悠人', 0, '+1 330-300-4722', 3, '622826965975919904', '967 Collier Road 3rd Floor, Akron, OH 44320, United States', '1991-09-30', 0, 0, 'yutokondo72', '2008-03-23', 'kondy', '2005-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS646325977795', '武田光莉', 1, '+81 70-8207-7166', 2, '568585743604733051', '日本なごやし守山区瀬古東二丁目171番12号15号室', '1994-01-26', 0, 0, 'htakeda', '2004-07-20', 'hikari6', '2015-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS614193918435', '盧朝偉', 1, '+1 213-612-3440', 4, '398307412507732670', '731 Grape Street Apt 26, Los Angeles, CA 90002, United States', '1995-02-01', 0, 0, 'locw', '2007-07-19', 'locw', '2006-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS866204031378', '小野蓮', 0, '+81 90-5865-1950', 0, '223105158356810998', '日本札幌清田区真栄四条五丁目19番8号2号室', '1992-12-24', 0, 0, 'onoren', '2008-10-15', 'renono815', '2001-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS714529932039', '严晓明', 0, '+81 3-6237-0202', 2, '929857781674960262', '日本東京港区東新橋一丁目5番12号29階', '1992-04-17', 0, 0, 'xiay', '2016-04-04', 'xiaoming13', '2013-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS733069403527', 'Kevin Wilson', 1, '+86 150-7426-5809', 0, '188128255445208868', 'No.27 building, 867 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1992-06-24', 0, 0, 'wilson4', '2016-04-22', 'wilkevin', '2013-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS480580619916', '黄杰宏', 1, '+86 190-6041-5475', 1, '992835524646784591', '中国北京市西城区西長安街37号23栋', '1995-03-10', 0, 0, 'huanjiehong', '2019-03-24', 'huajieh', '2015-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS224413407859', '谷口絢斗', 1, '+44 5604 481139', 1, '958775625313238871', 'No.6 Main building, 915 New Street, Birmingham, B2 4DB, United Kingdom', '1987-10-18', 0, 0, 'ayatt', '2000-07-23', 'taniguchiayato407', '2005-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS201240788020', '孫慧嫻', 1, '+86 10-502-9935', 0, '309343845161625026', 'Room 34, CR Building, 158 FuXingMenNei Street, XiCheng District, Beijing, China', '1993-02-19', 0, 0, 'hwaihan', '2014-02-02', 'hsuanwaihan725', '2019-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS773182748812', 'Alfred Burns', 1, '+81 52-142-6419', 3, '955265683471216427', '47-kai, 4 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-11-08', 0, 0, 'alfred421', '2004-03-12', 'alfrebur9', '2012-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS407234955892', '王國榮', 0, '+81 80-1010-9381', 1, '158508360602608791', '日本札幌中央区宮の森四条六丁目1番4号30階', '1989-08-01', 0, 0, 'wongkwokwing', '2016-12-22', 'kwokwing1987', '2015-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS588216642571', '新井大和', 0, '+44 (161) 686 2375', 3, '125218571283001624', 'Block 39, 946 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1991-10-06', 0, 0, 'yamato85', '2005-02-07', 'araiya', '2011-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS857385817734', '丁子异', 1, '+81 70-3480-0824', 0, '516693193645955650', '日本おおさかし西成区天神ノ森二丁目1番12号42階', '1985-04-14', 0, 0, 'dingziyi', '2015-09-03', 'zd5', '2000-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS429628361536', '石晓明', 1, '+86 755-1895-7771', 1, '618074193488682962', 'Room 34, 181 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1988-09-14', 0, 0, 'sx1996', '2016-02-03', 'xiaomingshi', '2018-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS492409495014', '熊杰宏', 0, '+86 136-1997-9368', 0, '170210917118901522', '43F, 328 Kengmei 15th Alley, Dongguan, China', '1987-08-24', 0, 0, 'jiehongxi', '2010-09-09', 'jiehong1014', '2007-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS393143039055', '伍志明', 0, '+1 614-771-0332', 2, '614859547253412254', '875 East Alley 3rd Floor, Columbus, GA 43201, United States', '1996-08-06', 0, 0, 'chimng', '2013-02-14', 'ncm430', '2002-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS765445198266', '卢云熙', 0, '+86 10-2357-6020', 3, '728208002775615824', 'Room 40, 179 68 Qinghe Middle St, Haidian District, Beijing, China', '1988-09-09', 0, 0, 'yunxil', '2020-10-07', 'yunxilu', '2012-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS450484862618', 'Francis Washington', 1, '+1 838-562-7381', 2, '230042745357507654', '480 State Street 3rd Floor, Albany, NY 12203, United States', '1992-01-29', 0, 0, 'wfrancis9', '2007-07-21', 'washfr719', '2002-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS196103977911', '横山美咲', 0, '+44 7420 954535', 1, '975156190482120853', 'Flat 28, 978 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1991-11-30', 0, 0, 'yokm89', '2011-11-11', 'yokmisa', '2001-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS905022416827', 'Jane Stone', 0, '+44 (121) 725 3396', 0, '314486352366042973', 'Flat 29, 599 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1993-03-18', 0, 0, 'jastone', '2003-04-28', 'stonejane1989', '2005-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS987543233929', 'Carolyn Brown', 0, '+86 199-5370-2951', 3, '262979247750480625', 'Room 4, 53 Huanqu South Street 2nd Alley, Dongguan, China', '1986-12-10', 0, 0, 'carolynbrown', '2006-06-10', 'cabrown', '2019-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS609561221843', '佐野瑛太', 1, '+86 20-555-1904', 4, '056619964985867519', '中国广州市白云区机场路棠苑街五巷581号华润大厦34室', '1994-06-24', 0, 0, 'eitasano', '2008-07-29', 'seita', '2016-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS514476666953', '邓云熙', 1, '+81 11-522-1884', 1, '274051840790364986', 'Rm. 30, 5-2-6 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1993-07-17', 0, 0, 'yunden', '2010-11-12', 'dyunxi', '2007-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS891587469251', '丁詩涵', 0, '+81 52-767-9301', 3, '808688926851775271', '16-kai, 3-19-15 Shimizu, Kita Ward, Nagoya, Japan', '1998-11-25', 0, 0, 'shihan2', '2013-09-06', 'dings9', '2019-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS648019915818', 'Aaron Taylor', 1, '+86 195-8592-6345', 2, '933372448711510089', '中国成都市锦江区人民南路四段599号16楼', '1990-06-10', 0, 0, 'taya', '2012-11-02', 'aaron1946', '2010-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS799330665273', '常岚', 1, '+1 212-042-1856', 1, '411824768382662369', '971 Bank Street 3rd Floor, New York, NY 10014, United States', '1995-04-19', 0, 0, 'lanchang', '2006-12-24', 'chang1947', '2011-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS554033961740', '房惠妹', 1, '+81 66-038-3662', 3, '201777387559558893', '日本おおさかし西成区天神ノ森二丁目1番7号41階', '1993-09-16', 0, 0, 'huimeif', '2009-03-14', 'fong2001', '2016-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS357405271704', '罗子异', 1, '+81 52-191-2970', 4, '446369234030991261', '日本なごやし守山区瀬古東二丁目171番8号46階', '1985-07-16', 0, 0, 'luozi3', '2012-11-01', 'luoziy', '2010-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS198196790204', '郭國明', 0, '+81 11-926-7855', 0, '613599559832175972', '35F, 5-2-5 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-02-23', 0, 0, 'kwkwokming', '2014-02-24', 'kwokmingk', '2015-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS895727512248', '中村架純', 0, '+81 90-9019-6673', 2, '046752002562663399', '日本おおさかし東住吉区東田辺三丁目27番19号9階', '1995-11-16', 0, 0, 'kasnakam', '2018-02-15', 'nkasumi', '2008-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS434908340174', '范子异', 1, '+81 74-273-1651', 4, '627687663824153038', '日本ならし西大寺赤田町一丁目7番10号10号室', '1988-09-21', 0, 0, 'ziyfan', '2013-03-09', 'zfan6', '2006-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS113366172548', '贾子韬', 1, '+86 138-1221-9275', 0, '444252111554231716', '中国深圳罗湖区蔡屋围深南东路681号华润大厦24室', '1991-09-10', 0, 0, 'jizi1', '2021-07-12', 'zitaojia9', '2001-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS240194290055', '岡田舞', 0, '+81 3-9454-6020', 3, '743236870419045408', '日本東京中央区銀座三丁目12番13号47階', '1996-12-26', 0, 0, 'maioka1008', '2018-07-10', 'mai8', '2021-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS961097494956', 'Lucille Henderson', 0, '+44 (20) 4788 7583', 1, '238066852582139832', 'Unit 47, Oxford Eco Centre, 751 Hanover Street, London, W1S 1YD, United Kingdom', '1990-09-02', 0, 0, 'luh716', '2016-08-24', 'lhende', '2016-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS448600139214', '古梓軒', 1, '+81 3-4020-6503', 3, '642590968199134957', '23F, 3-15-17 Ginza, Chuo-ku, Tokyo, Japan', '1998-08-23', 0, 0, 'kutszhin', '2007-03-20', 'thku', '2020-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS896553663470', 'Cindy Mendoza', 0, '+1 614-371-9682', 0, '844122910260145731', '51 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1991-09-20', 0, 0, 'cmend2014', '2013-06-24', 'mcindy2', '2012-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS404439099741', '青木美咲', 0, '+86 140-3673-0573', 0, '897509029872175307', '中国成都市锦江区人民南路四段656号2号楼', '1991-07-27', 0, 0, 'misakiaoki', '2013-04-27', 'misakia', '2007-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS057569024174', '中村樹', 1, '+81 3-0635-8228', 1, '964544881088481156', '38-kai, 1-6-5, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1996-03-11', 0, 0, 'nakamuraitsuki', '2000-01-08', 'nitsuki', '2012-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS552510236473', '唐家文', 1, '+81 3-5808-0130', 3, '302353116921052515', '6-kai, 1-5-20, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1993-06-01', 0, 0, 'tkaman8', '2014-11-28', 'tkm', '2004-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS230981799124', '杜家強', 0, '+81 90-3475-3783', 1, '356733224580401863', '日本札幌白石区菊水三条五丁目4番17号42号室', '1991-12-06', 0, 0, 'kkto', '2018-09-29', 'kkto7', '2017-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS521871625455', '近藤蓮', 1, '+86 193-2324-9453', 4, '531859938577588969', 'Room 30, CR Building, 797 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1996-10-19', 0, 0, 'rkondo', '2022-03-02', 'kondo40', '2020-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS946142519155', 'Willie Gomez', 1, '+81 74-572-0414', 1, '811849972500430098', '17F, 1-7-4 Saidaiji Akodacho, Nara, Japan', '1991-01-31', 0, 0, 'gomezwilli', '2020-09-23', 'gomezwillie', '2021-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS639095616548', 'Micheal Patel', 1, '+86 755-777-7747', 3, '243423527444110134', 'Room 50, 423 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1993-01-28', 0, 0, 'mipat', '2007-07-23', 'michealpatel', '2010-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS942849425711', '姚明', 1, '+81 66-460-5562', 2, '763225591641754924', '3F, 2-1-3 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1986-06-14', 0, 0, 'mingyeow', '2007-06-07', 'yeowm', '2004-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS646708748567', 'Harold Patel', 0, '+81 11-252-9309', 1, '479520229700668679', '日本札幌中央区宮の森四条六丁目1番2号2号室', '1996-09-13', 0, 0, 'harolpate10', '2000-01-03', 'haroldp', '2021-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS020011170923', 'Rosa Clark', 0, '+81 80-5186-9548', 0, '680630441171302619', 'Rm. 36, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1995-12-22', 0, 0, 'clarrosa', '2004-10-02', 'clark90', '2003-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS830095394758', '應惠敏', 1, '+44 (20) 2262 5457', 3, '851639024500411348', 'Flat 32, 551 Regent Street, London, W1B 2LX, United Kingdom', '1988-05-11', 0, 0, 'ying1998', '2002-09-28', 'ying3', '2020-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS794501321529', '史致远', 1, '+86 755-185-7907', 0, '814784595660428425', 'Room 13, CR Building, 452 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1996-09-02', 0, 0, 'zhiys', '2000-11-07', 'shzhiyu', '2011-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS972527138764', '斉藤明菜', 1, '+86 145-6647-7627', 3, '211307993738740141', '中国成都市锦江区人民南路四段428号华润大厦28室', '1994-07-22', 0, 0, 'akina57', '2007-08-01', 'saitoakina81', '2002-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS718255982712', '森美緒', 0, '+86 151-3624-8938', 0, '784963446242918028', 'No.20 building, 767 Jiangnan West Road, Haizhu District, Guangzhou, China', '1985-09-06', 0, 0, 'mio107', '2020-04-17', 'miomori1012', '2009-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS915527257798', '谷口陽太', 0, '+44 7314 870631', 0, '731284068248291104', 'Flat 7, 574 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1995-10-22', 0, 0, 'taniguchiy6', '2018-02-06', 'yotataniguchi79', '2000-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS535300819481', 'Mark Martin', 1, '+81 90-7658-8387', 2, '531557619730755518', '日本ならし学園南三丁目9番2号31階', '1992-08-24', 0, 0, 'marmark9', '2006-12-23', 'markmar', '2011-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS791770150526', '姜云熙', 1, '+44 7223 853848', 3, '195572835124579430', 'No.3 Main building, 223 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1990-02-27', 0, 0, 'yunxi49', '2013-02-08', 'jiangyunxi', '2012-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS862324135331', '文小慧', 1, '+44 (1865) 11 4697', 2, '846627101037020048', 'Unit 34, Oxford Eco Centre, 229 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1997-06-06', 0, 0, 'swman', '2003-12-07', 'masw521', '2002-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS478121561228', 'Tiffany Lee', 0, '+86 196-6233-0015', 0, '581053894434494043', '中国北京市延庆区028县道558号18栋', '1989-01-01', 0, 0, 'leetiffany5', '2006-06-17', 'lee1946', '2008-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS395948842792', '任心穎', 0, '+1 614-848-6365', 3, '144515693088812454', '853 East Cooke Road Suite 40, Columbus, GA 43214, United States', '1997-08-03', 0, 0, 'yamsumwing1', '2009-09-20', 'ysw', '2007-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS145674524194', '千葉美咲', 0, '+81 90-7258-2068', 3, '444546817056186652', '日本札幌中央区宮の森四条六丁目1番10号6号室', '1992-01-13', 0, 0, 'chmisaki', '2013-08-12', 'chibami118', '2008-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS856914389493', '魏安琪', 1, '+1 312-080-8233', 4, '514572571113648815', '854 North Michigan Ave Suite 42, Chicago, IL 60611, United States', '1995-12-13', 0, 0, 'weianqi', '2004-02-24', 'weianqi', '2018-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS073595446319', '戴祖兒', 1, '+44 (1865) 99 3666', 0, '262835041165146714', 'No.12 Main building, 679 Park End St, Oxford, OX1 1JD, United Kingdom', '1994-10-11', 0, 0, 'dcy', '2010-05-02', 'cydai20', '2001-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS678590114486', 'Carlos Sanders', 1, '+81 80-4026-2439', 0, '227876336391316012', '日本札幌白石区菊水三条五丁目4番20号42階', '1997-01-18', 0, 0, 'sanderscarlos9', '2015-01-24', 'cs3', '2011-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS285865810125', '田村悠人', 0, '+1 312-819-0324', 3, '208848901768583279', '179 Rush Street Apt 44, Chicago, IL 60611, United States', '1994-05-18', 0, 0, 'ytamur', '2019-05-21', 'tamurayu405', '2017-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS398869667065', '工藤美羽', 1, '+81 52-551-2710', 2, '257773113903202555', '日本なごやし守山区瀬古東二丁目171番3号30階', '1990-03-22', 0, 0, 'miukudo', '2011-02-11', 'kudm', '2007-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS869259999240', '工藤明菜', 0, '+86 20-628-3734', 3, '989507610622370038', 'No.26 building, 197 Tianhe Road, Tianhe District, Guangzhou, China', '1997-11-10', 0, 0, 'aku2001', '2015-05-06', 'akina406', '2005-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS194278563187', 'Edwin Rodriguez', 1, '+44 (121) 960 2102', 2, '568645393990135820', 'Flat 8, 324 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1989-06-07', 0, 0, 'edwin5', '2001-04-10', 'edwinrodriguez', '2011-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS318790925907', '佐野健太', 0, '+1 614-757-8256', 2, '352868718937484558', '921 East Alley Apt 50, Columbus, GA 43201, United States', '1997-06-30', 0, 0, 'sanokent904', '2001-01-13', 'kentasano', '2010-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS783209174089', '谷天樂', 1, '+81 74-730-8669', 0, '460255145195569821', 'Rm. 44, 1-7-14 Saidaiji Akodacho, Nara, Japan', '1985-10-18', 0, 0, 'tinlokkoo', '2005-01-27', 'koo5', '2010-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS884455852197', '今井陽菜', 1, '+86 177-1899-2987', 3, '591500265420104835', '中国北京市海淀区清河中街68号54号39栋', '1997-06-30', 0, 0, 'ihi127', '2017-05-05', 'ihina', '2005-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS667178389767', '黎玲玲', 0, '+81 80-7009-8464', 4, '485010791126717259', '日本ならし学園南三丁目9番6号47号室', '1990-04-23', 0, 0, 'laill415', '2009-01-12', 'lalingling', '2011-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS760868814451', '熊秀英', 0, '+44 5948 203376', 2, '987522726018620661', 'Unit 36, Oxford Eco Centre, 911 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-12-02', 0, 0, 'xiuying717', '2010-11-09', 'xiongx', '2011-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS139326196486', '莫梓晴', 1, '+86 178-3443-9726', 1, '289081940007746633', '中国东莞坑美十五巷181号17室', '1997-01-26', 0, 0, 'tcmok6', '2017-03-14', 'tsmo', '2017-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS841425608136', '常子韬', 1, '+81 11-773-1418', 3, '610747141176975642', '日本札幌白石区菊水三条五丁目2番5号47階', '1989-08-29', 0, 0, 'zitchang03', '2019-11-10', 'changzitao5', '2000-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS340963449450', '前田陽菜', 0, '+86 131-7550-8003', 0, '108658578665644239', '中国深圳龙岗区学园一巷799号43号楼', '1995-03-28', 0, 0, 'hinama2', '2015-10-03', 'hinamaeda812', '2021-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS733790467305', '何頴璇', 1, '+86 21-6539-1208', 2, '314230472446964748', '中国上海市闵行区宾川路425号50室', '1987-04-09', 0, 0, 'wsho', '2008-04-22', 'hows', '2016-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS907677091102', '吉田海斗', 0, '+86 168-1952-6042', 4, '965622436869890370', 'Room 3, 853 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1999-03-05', 0, 0, 'yoka1029', '2001-04-13', 'kay77', '2007-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS309864523558', '小野玲奈', 0, '+44 (1865) 31 2755', 2, '590362738922829236', 'Unit 5, Oxford Eco Centre, 316 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1997-06-08', 0, 0, 'onrena', '2011-07-09', 'renaono', '2004-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS495727665416', 'Margaret Miller', 1, '+44 7929 409590', 2, '260656541670856524', 'No.13 Main building, 175 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1986-12-10', 0, 0, 'mimarga1987', '2009-02-26', 'mmargaret', '2008-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS847791653121', '張永發', 1, '+81 90-5220-8703', 1, '581237575646778474', '32F, 6-1-17, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1992-06-17', 0, 0, 'wfcheun', '2019-02-14', 'wingfatch2', '2021-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS980806005429', '森葵', 1, '+86 10-122-1832', 3, '758486176101874205', 'No.26 building, 256 FuXingMenNei Street, XiCheng District, Beijing, China', '1994-09-22', 0, 0, 'moaoi', '2001-09-19', 'aoimori', '2009-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS817689225981', '青木美緒', 0, '+86 151-8369-0240', 3, '610307856685820186', 'No.50 building, 297 East Wangfujing Street, Dongcheng District , Beijing, China', '1995-05-13', 0, 0, 'mioaoki', '2004-07-02', 'aokimio', '2001-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS040079177098', '曹震南', 1, '+86 184-4070-6558', 2, '304118725058925693', '46F, 486 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1995-07-18', 0, 0, 'cazhennan20', '2002-05-05', 'zhec', '2001-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS701788167213', 'Roy Flores', 0, '+44 (151) 740 8819', 0, '364642474939722235', 'Flat 38, 853 Redfern St, Liverpool, L20 8JB, United Kingdom', '1992-06-30', 0, 0, 'florroy9', '2004-02-25', 'royflo', '2004-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS009729151104', 'Brenda Green', 0, '+81 66-708-6694', 0, '288420035979295439', '日本おおさかし西成区天神ノ森二丁目1番15号20号室', '1997-07-29', 0, 0, 'greenb', '2017-02-07', 'grbrenda', '2016-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS799498220454', 'David Jordan', 0, '+86 755-040-3039', 0, '331616467121176950', 'Room 42, CR Building, 20 Jingtian East 1st St, Futian District, Shenzhen, China', '1988-12-14', 0, 0, 'jodavid1', '2011-08-13', 'jordan8', '2009-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS502477994912', 'Edward Reyes', 0, '+86 760-072-7668', 0, '309642985124427957', 'Room 31, 17 Lefeng 6th Rd, Zhongshan, China', '1988-05-11', 0, 0, 'edwreye1', '2005-03-26', 'edwarreye1106', '2015-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS825778180946', '陳慧敏', 0, '+44 5604 388469', 0, '306531439710949044', 'Unit 16, Oxford Eco Centre, 67 Redfern St, Liverpool, L20 8JB, United Kingdom', '1985-01-20', 0, 0, 'waiman3', '2008-01-11', 'chanwm', '2010-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS204784351501', '石井玲奈', 1, '+86 197-0498-8040', 0, '667792909548939366', '中国广州市天河区天河路456号19栋', '1988-08-06', 0, 0, 'ishii716', '2004-07-31', 'renaishii', '2004-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS560658818039', '駱俊宇', 0, '+81 3-9628-5707', 4, '639292345148795046', '39-kai, 1-5-10, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-01-25', 0, 0, 'lokchunyu7', '2009-06-11', 'lokchu', '2019-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS185497351867', '大野優奈', 1, '+81 90-8689-5207', 3, '815502794512945856', '日本なごやし北区楠味鋺三丁目80番16号39号室', '1994-03-27', 0, 0, 'yuna220', '2007-10-02', 'oyuna64', '2011-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS999064059758', '马杰宏', 0, '+1 330-730-3350', 3, '389945244563185462', '234 Fern Street Suite 24, Akron, OH 44307, United States', '1988-07-24', 0, 0, 'ma48', '2014-09-12', 'majieho', '2013-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS146022285062', 'Nicholas Evans', 0, '+81 52-290-5820', 1, '644924562384627561', '日本なごやし熱田区千年二丁目5番7号10階', '1997-12-15', 0, 0, 'nicholasevans', '2020-07-25', 'evansnich', '2018-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS313492592903', '郭慧敏', 1, '+81 66-306-8472', 1, '381641035180399285', '31-kai, 1-7-4 Omido, Higashiosaka, Osaka, Japan', '1986-04-19', 0, 0, 'kwokwm', '2014-12-27', 'kwowm', '2010-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS511465779185', 'Diana Gardner', 0, '+44 (151) 979 9581', 1, '181613643052518803', 'Flat 29, 105 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1997-09-02', 0, 0, 'digardner622', '2004-03-25', 'gard', '2008-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS307960029050', '村田花', 1, '+81 80-1766-4304', 1, '917768808944567015', '日本ならし学園南三丁目9番18号34階', '1997-05-01', 0, 0, 'murata2', '2002-02-24', 'hana831', '2008-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS771953636346', '馬嘉欣', 1, '+44 (1223) 54 1859', 3, '928570583695564700', 'No.34 Main building, 912 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1992-11-12', 0, 0, 'ma8', '2003-12-24', 'mkaryan501', '2019-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS282646978277', '橋本大地', 1, '+1 838-441-7990', 1, '164134343245505534', '990 Central Avenue Suite 49, Albany, NY 12205, United States', '1997-03-19', 0, 0, 'daichhashimoto', '2014-03-05', 'daicha', '2016-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS700065949656', '林安琪', 1, '+86 755-622-2449', 3, '821067645732337597', '中国深圳龙岗区学园一巷873号32楼', '1997-10-17', 0, 0, 'oklam', '2017-11-13', 'lamok1121', '2015-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS015677933040', 'Dennis Ross', 0, '+1 614-960-5510', 2, '997174558336441183', '784 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1988-07-25', 0, 0, 'dennisr', '2013-08-04', 'denniross729', '2003-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS382782580283', '沈致远', 1, '+86 28-1188-9898', 1, '138309742442751162', '中国成都市成华区二仙桥东三路655号7楼', '1988-12-30', 0, 0, 'zhiyuan58', '2014-03-02', 'zhiyuans80', '2013-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS934993997480', 'Rosa Harris', 1, '+44 7402 195594', 3, '836765081959252889', 'Flat 3, 97 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1991-04-12', 0, 0, 'harrisr', '2010-07-01', 'roharris', '2008-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS649007424020', '金子聖子', 0, '+86 10-576-6976', 2, '040915547103238815', '中国北京市海淀区清河中街68号920号16栋', '1987-04-06', 0, 0, 'kanekos602', '2018-10-22', 'seikokaneko', '2007-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS747478321809', '安藤百恵', 0, '+44 5900 785465', 0, '869936787797309117', 'Unit 43, Oxford Eco Centre, 415 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1998-10-04', 0, 0, 'ma1103', '2013-03-21', 'ma1', '2004-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS251457063305', 'Joshua Rogers', 0, '+81 90-8232-9535', 1, '819375889274976823', '21F, 19 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1992-11-30', 0, 0, 'jrogers', '2010-12-25', 'joshua3', '2016-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS161384620812', '餘思妤', 0, '+44 5660 913338', 2, '609009638846638921', 'Flat 26, 396 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1986-03-11', 0, 0, 'syyu', '2012-11-16', 'syyue2007', '2009-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS377940379851', '程致远', 0, '+86 158-6587-5935', 3, '441621292844174030', '中国东莞坑美十五巷416号9楼', '1986-03-17', 0, 0, 'czhiyuan', '2006-12-12', 'cz7', '2012-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS139964439925', '史秀英', 0, '+81 52-324-2643', 0, '727346354909788631', '5-kai, 12 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1992-09-29', 0, 0, 'xiuyings4', '2007-08-07', 'xiuyshi', '2000-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS234579295667', '阮曉彤', 1, '+81 66-897-1459', 2, '318320309246907775', '16F, 2-1-18 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1997-12-29', 0, 0, 'htyuen628', '2017-01-02', 'hiutung79', '2004-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS699813691811', '有村光', 1, '+86 179-1979-6293', 3, '709995770883624955', '中国深圳罗湖区蔡屋围深南东路831号35楼', '1986-06-29', 0, 0, 'hikaru8', '2009-11-07', 'arimura01', '2011-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS390793718066', '岡田陸', 0, '+86 755-1201-7229', 3, '329058791784479346', '中国深圳罗湖区田贝一路414号13楼', '1998-05-28', 0, 0, 'okada9', '2013-05-21', 'riokada', '2009-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS761053968114', '侯璐', 0, '+81 70-8987-8071', 1, '730132111866822671', '日本なごやし守山区瀬古東二丁目171番18号42階', '1991-08-18', 0, 0, 'lu4', '2008-03-23', 'hou2006', '2021-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS665618838980', '金杰宏', 1, '+1 614-523-5850', 4, '412588072883616684', '230 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1998-05-04', 0, 0, 'jiehojin4', '2005-03-14', 'jjiehong', '2000-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS347564829692', '武秀英', 0, '+81 80-9520-5157', 2, '230699825541822079', '日本札幌中央区宮の森四条六丁目1番2号5号室', '1989-11-23', 0, 0, 'xwu1963', '2015-07-16', 'wxiuying', '2010-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS752060513922', '中山大輔', 0, '+81 70-9841-1661', 4, '355342410793653161', '日本おおさかし東住吉区東田辺三丁目27番2号12号室', '1997-04-12', 0, 0, 'dnak1', '2001-02-05', 'daisnakayama', '2008-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS869073957496', '青木百恵', 1, '+44 5217 072871', 2, '853901651120218207', 'No.6 Main building, 314 Hanover Street, London, W1S 1YD, United Kingdom', '1995-06-09', 0, 0, 'aokmo', '2019-09-27', 'aoki8', '2018-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS516686329292', '陶子异', 1, '+81 66-665-7538', 2, '887907037773543794', '日本おおさかし西成区天神ノ森二丁目1番16号13階', '1988-10-06', 0, 0, 'tao94', '2007-02-01', 'ziytao', '2012-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS331992015600', '黎榮發', 0, '+86 184-2664-8622', 3, '352617219594878799', '中国北京市東城区東直門內大街625号48室', '1994-02-08', 0, 0, 'lawf', '2001-10-14', 'lwingfat', '2008-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS499977759625', 'Kathy Scott', 0, '+1 213-943-7121', 2, '950117027084490906', '980 Sky Way Suite 15, Los Angeles, CA 90043, United States', '1993-04-20', 0, 0, 'scottkathy', '2011-01-21', 'kathysco', '2018-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS969449759105', '王慧儀', 1, '+1 614-166-6415', 4, '938439292629629957', '543 East Alley Suite 13, Columbus, GA 43201, United States', '1991-04-29', 0, 0, 'wongwaiy8', '2022-01-05', 'wongwy1126', '2017-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS843078301894', '中野百恵', 0, '+86 755-328-8300', 2, '599805984027142625', 'No.35 building, 31 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1993-01-09', 0, 0, 'nakanomomoe408', '2017-12-13', 'nakanomomoe6', '2008-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS579824845009', '苗慧敏', 1, '+86 21-404-0660', 0, '903238238318485677', '中国上海市浦东新区健祥路70号华润大厦34室', '1990-04-26', 0, 0, 'miuwaiman', '2018-07-19', 'miuwaiman', '2003-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS520712988197', 'Norman Dunn', 1, '+86 132-7896-2028', 4, '699095175742104439', '中国北京市延庆区028县道909号24楼', '1990-04-01', 0, 0, 'ndun5', '2005-11-03', 'dunnnor', '2000-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS701502544980', '村田七海', 1, '+81 80-1907-2707', 2, '917129419761804875', '日本札幌中央区宮の森四条六丁目1番3号9階', '1987-10-29', 0, 0, 'muratananami5', '2001-07-10', 'nanammurata', '2021-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS999458734487', '金子一輝', 0, '+1 212-283-4365', 0, '443707531114926832', '894 Fifth Avenue Apt 16, New York, NY 10017, United States', '1990-06-15', 0, 0, 'kaneko506', '2016-09-21', 'ikkka', '2008-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS043494363678', '马杰宏', 0, '+81 80-6157-3462', 2, '684715482100778298', 'Rm. 30, 3-19-2 Shimizu, Kita Ward, Nagoya, Japan', '1992-08-22', 0, 0, 'jiehong901', '2010-08-05', 'jiehongm8', '2002-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS345168679281', '沈云熙', 1, '+44 7444 339231', 1, '223153214004524433', 'Block 43, 683 Sackville St, Manchester, M1 3BB, United Kingdom', '1989-12-13', 0, 0, 'yunxishen', '2008-10-04', 'yunxi229', '2011-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS707672854464', 'Stephanie Jenkins', 1, '+86 140-6689-4417', 2, '372178672123697406', '中国北京市西城区复兴门内大街789号2栋', '1995-09-01', 0, 0, 'jenkins201', '2019-08-21', 'jenkstephanie6', '2015-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS226418978212', '韦晓明', 1, '+81 80-8018-7188', 2, '085801119615717787', '24F, 5-2-1 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1989-09-25', 0, 0, 'xwe', '2021-02-11', 'xiaomingwe8', '2000-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS428435668034', '麥國榮', 0, '+81 66-572-6001', 1, '583083410606619742', '2-kai, 3-27-10 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1998-01-08', 0, 0, 'makkw', '2012-12-13', 'kwokwing9', '2013-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS045585585920', '田中陽菜', 0, '+86 10-9901-6719', 2, '488174800098266992', '33F, 148 Sanlitun Road, Chaoyang District, Beijing, China', '1992-01-16', 0, 0, 'hinatanaka', '2011-05-14', 'hitanaka', '2004-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS449543047188', 'Tammy Hayes', 1, '+81 52-335-5703', 1, '117578861087173797', '10F, 1 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1993-10-19', 0, 0, 'htam', '2004-06-21', 'htammy', '2003-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS609350361367', '中森紗良', 1, '+81 70-0264-9655', 1, '447418455258191471', '27F, 2-1-12 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1991-11-15', 0, 0, 'nakamsara', '2001-08-18', 'saranaka', '2002-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS195847937314', 'Lee Morgan', 0, '+44 5873 783596', 2, '348184772819128010', 'No.50 Main building, 940 Hanover St, Liverpool, L1 4AF, United Kingdom', '1988-03-19', 0, 0, 'ml6', '2008-06-28', 'morlee', '2013-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS815866533943', 'Cheryl Torres', 1, '+86 197-4971-6612', 1, '614765058500424710', 'Room 39, 230 028 County Rd, Yanqing District, Beijing, China', '1994-08-25', 0, 0, 'torres85', '2006-08-07', 'cht222', '2005-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS410735826993', 'Catherine Ruiz', 1, '+86 760-9224-6403', 2, '625532785099506002', '36F, 857 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1998-09-29', 0, 0, 'cr909', '2000-12-14', 'ruizca', '2003-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS432521697830', '廖安琪', 0, '+81 3-0137-6205', 1, '512464991337758872', '日本東京渋谷区代々木二丁目3番1号15号室', '1990-03-16', 0, 0, 'anqli98', '2016-09-16', 'lanqi', '2001-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS511931661794', '龚秀英', 1, '+81 66-648-6205', 3, '815892716518758029', '日本おおさかし東住吉区東田辺三丁目27番15号3階', '1994-04-24', 0, 0, 'xiugo', '2019-10-09', 'xgon3', '2020-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS018391678739', 'Randy Salazar', 0, '+86 769-2012-5962', 3, '046025490018401188', '中国东莞珊瑚路172号华润大厦6室', '1998-01-09', 0, 0, 'randysalazar9', '2003-05-31', 'ras', '2017-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS533038213137', '葉詠詩', 0, '+81 11-152-0930', 1, '460153776452071907', '日本札幌中央区宮の森四条六丁目1番3号4階', '1989-11-04', 0, 0, 'wsyip1949', '2015-02-26', 'wingsze2010', '2020-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS377230575921', '蒋致远', 1, '+81 52-758-3947', 3, '276318419168289004', 'Rm. 26, 17 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-07-22', 0, 0, 'zhiyuanji', '2011-09-04', 'jiang10', '2018-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS607501266545', '原田桜', 0, '+86 755-922-2510', 3, '908007700672180095', 'No.35 building, 782 Jingtian East 1st St, Futian District, Shenzhen, China', '1990-05-25', 0, 0, 'sakh1', '2002-10-23', 'harada5', '2003-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS924188405300', '蕭德華', 0, '+81 70-4108-1918', 3, '300188994320022594', '39-kai, 3-15-14 Ginza, Chuo-ku, Tokyo, Japan', '1991-12-28', 0, 0, 'twsi', '2014-05-28', 'takwah1111', '2021-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS354418187964', 'Anna Martinez', 1, '+86 147-3604-4734', 0, '220513506056370409', '中国中山京华商圈华夏街423号29室', '1991-09-24', 0, 0, 'annamart', '2008-11-14', 'martinez2007', '2013-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS380425655788', '曹思妤', 0, '+86 155-6781-7200', 0, '564821312064670481', '中国上海市黄浦区淮海中路811号36室', '1996-06-13', 0, 0, 'sycho', '2020-11-23', 'chosy', '2007-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS623923160488', '陆云熙', 1, '+81 11-876-8398', 1, '456278924410634686', '27-kai, 5-2-9 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1995-03-30', 0, 0, 'luy', '2005-05-05', 'yunxilu', '2007-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS331042382430', '石致远', 1, '+81 74-801-9609', 4, '887822294187210509', '日本ならし西大寺赤田町一丁目7番5号22号室', '1986-03-10', 0, 0, 'shizhiyuan', '2011-08-09', 'shi1', '2003-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS550681550330', '増田美緒', 0, '+81 11-899-1899', 4, '336246518034897432', 'Rm. 22, 5-4-12 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1995-10-28', 0, 0, 'masumio214', '2021-06-19', 'mio109', '2018-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS719894711222', 'Stanley Flores', 0, '+44 7146 931983', 3, '578644987917895700', 'No.2 Main building, 437 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-02-06', 0, 0, 'florstan704', '2020-01-03', 'floress86', '2003-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS974182467483', '姚秀英', 1, '+81 80-1993-1700', 0, '279346184572930691', '日本ならし西大寺赤田町一丁目7番3号1号室', '1996-02-28', 0, 0, 'xiuyingya13', '2010-04-02', 'yaoxiuying', '2014-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS084250351593', '梅麗欣', 0, '+1 212-816-1030', 2, '920805705246014865', '879 Canal Street 3rd Floor, New York, NY 10013, United States', '1995-01-25', 0, 0, 'muilaiyan', '2005-04-30', 'lymui9', '2000-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS633828873791', '村田七海', 0, '+86 760-590-3096', 2, '454800371834442578', 'Room 37, CR Building, 581 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1996-04-04', 0, 0, 'nmura', '2006-06-11', 'muratananami628', '2018-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS430544653488', '白詩君', 0, '+81 52-041-6685', 0, '421524169698905399', '日本なごやし北区楠味鋺三丁目80番4号29階', '1986-05-10', 0, 0, 'skpa', '2005-11-14', 'pak7', '2019-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS577821490335', '金致远', 1, '+44 7949 465738', 1, '927631538874803672', 'Block 21, 903 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1990-02-13', 0, 0, 'jizhiyuan11', '2006-05-09', 'jzhiyu01', '2005-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS731570650841', 'Peggy Kelley', 0, '+1 213-006-5270', 3, '720465496439103518', '922 Figueroa Street Apartment 10, Los Angeles, CA 90037, United States', '1993-06-01', 0, 0, 'peggkelle', '2020-08-18', 'kelleypeg', '2007-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS605022092479', '福田百恵', 0, '+1 312-538-5959', 0, '983778596984758323', '820 North Michigan Ave Apt 24, Chicago, IL 60611, United States', '1988-03-10', 0, 0, 'momoefukuda302', '2003-04-02', 'fukudam618', '2015-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS255106893315', '市川優奈', 1, '+86 769-863-7137', 4, '712499955045495499', '中国东莞东泰五街955号40号楼', '1989-09-20', 0, 0, 'yichikawa', '2021-03-08', 'yunaichikawa5', '2014-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS574731326806', '邵曉彤', 0, '+81 70-0018-7362', 3, '951261918879041115', '41-kai, 1-1-1 Deshiro, Nishinari Ward, Osaka, Japan', '1987-08-28', 0, 0, 'htsiu', '2005-10-08', 'hiutungs', '2018-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS935026310069', '丁晓明', 0, '+86 769-864-7140', 2, '164075665865289842', 'No.1 building, 961 Kengmei 15th Alley, Dongguan, China', '1992-11-14', 0, 0, 'xiaoming6', '2019-05-05', 'xiaoming3', '2004-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS307176037512', '馬永權', 1, '+86 147-1773-2319', 1, '296035113018631026', '中国北京市東城区東直門內大街149号华润大厦8室', '1995-04-16', 0, 0, 'mawk', '2008-06-03', 'wingkuenm', '2000-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS273993404563', '高岚', 1, '+81 80-2769-2329', 2, '727609104098391709', '日本ならし学園南三丁目9番19号7階', '1994-10-11', 0, 0, 'gao1956', '2002-02-15', 'langao2', '2005-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS285143686223', '羅思妤', 1, '+1 212-902-8421', 2, '166756326955737257', '37 Fifth Avenue Apartment 8, New York, NY 10017, United States', '1991-04-06', 0, 0, 'lo324', '2015-10-31', 'lsy', '2004-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS181198087763', 'Bryan Sullivan', 0, '+1 614-749-7815', 2, '845215756352633795', '622 East Cooke Road Apt 15, Columbus, GA 43214, United States', '1990-12-25', 0, 0, 'bryansul', '2004-08-26', 'bryasullivan', '2004-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS750053406864', '新井詩乃', 0, '+44 (151) 868 8057', 1, '411989922337417085', 'No.3 Main building, 609 Redfern St, Liverpool, L20 8JB, United Kingdom', '1988-06-30', 0, 0, 'arais10', '2010-08-26', 'shinarai88', '2007-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS703423784635', 'Josephine Turner', 0, '+81 66-418-0991', 3, '005538595067790405', '日本おおさかし近江堂一丁目7番14号18号室', '1996-10-25', 0, 0, 'josephine9', '2016-05-01', 'jost13', '2020-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS705832231503', '駱潤發', 1, '+86 755-5764-4698', 2, '449784228298748951', '中国深圳罗湖区蔡屋围深南东路921号12室', '1991-08-20', 0, 0, 'yflo', '2017-09-13', 'yunfatlok', '2003-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS004594271133', '吴岚', 1, '+86 10-895-3503', 0, '480469167057658243', '49F, 73 East Wangfujing Street, Dongcheng District , Beijing, China', '1993-11-05', 0, 0, 'lanwu6', '2000-05-22', 'wula1009', '2015-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS673701584526', 'Ronald Perez', 1, '+81 52-423-0237', 1, '460368903449994383', 'Rm. 31, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-12-24', 0, 0, 'ronperez', '2018-12-07', 'perezron', '2005-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS188395446550', '森田陸', 1, '+81 66-196-3082', 2, '706493958853585240', '2F, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1999-01-21', 0, 0, 'mri531', '2008-05-19', 'mriku', '2002-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS905751508599', 'Joan Herrera', 1, '+86 21-3223-9180', 2, '450603736337881996', '中国上海市闵行区宾川路821号21号楼', '1991-07-25', 0, 0, 'hjoa05', '2014-08-22', 'joher', '2017-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS797441106856', '贺晓明', 1, '+44 5827 315997', 4, '301344669163577537', 'No.15 Main building, 356 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1988-06-08', 0, 0, 'hexiaoming', '2008-12-13', 'hex1017', '2018-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS006978467659', '渡辺結翔', 1, '+86 154-2148-2766', 3, '713088862706555349', '中国北京市西城区西長安街539号2栋', '1997-05-08', 0, 0, 'ys926', '2013-05-13', 'yuisato116', '2004-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS170341914685', '江玲玲', 1, '+86 28-617-4861', 0, '564312029973686257', '中国成都市成华区玉双路6号895号华润大厦46室', '1993-01-17', 0, 0, 'konglingling', '2003-03-02', 'linglingkong', '2010-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS946869536596', '姜杰宏', 1, '+86 769-471-8387', 2, '139633049448982284', '中国东莞坑美十五巷192号华润大厦34室', '1992-07-08', 0, 0, 'jiangj1224', '2007-08-20', 'jiehong3', '2021-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS361508527297', '唐安琪', 0, '+1 838-140-8797', 0, '741830904497969781', '102 State Street 3rd Floor, Albany, NY 12203, United States', '1993-07-24', 0, 0, 'tang1110', '2019-01-01', 'tang521', '2000-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS937202783740', '宮本彩乃', 1, '+81 90-3572-1142', 3, '720072903948711657', '日本東京港区東新橋一丁目5番3号46階', '1987-10-08', 0, 0, 'ayam', '2008-02-01', 'miyaa', '2000-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS495759322190', '上野美咲', 0, '+44 (1223) 42 1936', 1, '222856458481844939', 'Unit 35, Oxford Eco Centre, 216 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1994-02-26', 0, 0, 'umisaki1', '2014-04-27', 'misau', '2015-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS585473493746', '周仲賢', 0, '+1 330-754-8424', 3, '019987399736677213', '624 West Market Street Apt 44, Akron, OH 44333, United States', '1992-09-18', 0, 0, 'chow7', '2018-01-10', 'cychow', '2007-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS409092698296', '曹震南', 1, '+86 185-9636-6498', 1, '886806913164138787', '中国上海市浦东新区橄榄路100号7号楼', '1987-09-29', 0, 0, 'zheca7', '2012-02-01', 'caozhennan', '2016-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS609861160912', '陈杰宏', 1, '+86 10-304-8966', 1, '620965255546879602', 'No.5 building, 964 028 County Rd, Yanqing District, Beijing, China', '1997-01-31', 0, 0, 'jch', '2003-01-22', 'jiehongchen6', '2006-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS283765821836', '斎藤樹', 1, '+44 7459 294616', 2, '501270353359604604', 'Flat 21, 445 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1995-12-07', 0, 0, 'itsuki6', '2001-10-24', 'saititsu53', '2000-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS743116973061', 'Victor Marshall', 1, '+86 187-9176-0896', 2, '594197388733259451', '中国北京市延庆区028县道561号41号楼', '1997-02-14', 0, 0, 'victor72', '2018-09-12', 'marsvictor', '2008-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS219200043673', '朱致远', 0, '+81 90-4496-9236', 1, '196020589101156195', 'Rm. 4, 2-1-9 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-04-11', 0, 0, 'zhzhiyuan1', '2017-10-16', 'zhiyzhu112', '2009-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS041311329682', '郝安琪', 0, '+81 70-4413-0897', 4, '424047556998942076', 'Rm. 41, 1-7-11 Omido, Higashiosaka, Osaka, Japan', '1994-08-23', 0, 0, 'haoanqi', '2008-09-05', 'ahao', '2012-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS084410331923', '木下蓮', 0, '+81 70-7615-1727', 4, '216249455367168387', '日本おおさかし近江堂一丁目7番1号33階', '1996-05-28', 0, 0, 'rkinoshita', '2022-02-07', 'kren', '2009-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS294862833527', 'Theodore Watson', 0, '+81 3-7174-9382', 3, '592186489724391971', 'Rm. 29, 1-5-3, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1987-09-14', 0, 0, 'watsontheodore', '2002-02-05', 'watsontheodore', '2006-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS288186688825', '森光莉', 1, '+81 70-6652-2735', 0, '208545276357960845', '日本ならし学園南三丁目9番4号44階', '1995-10-29', 0, 0, 'mhika91', '2003-03-27', 'morihikari', '2013-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS287606180516', '袁嘉伦', 0, '+86 21-6174-4493', 2, '933187515358541655', 'Room 33, 998 Middle Huaihai Road, Huangpu District, Shanghai, China', '1990-07-31', 0, 0, 'yuanj', '2014-12-11', 'yjia', '2019-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS218846418812', '馮青雲', 0, '+81 66-501-4677', 1, '710821327105003056', '日本おおさかし西成区天神ノ森二丁目1番17号10階', '1998-07-18', 0, 0, 'chingwan1978', '2008-09-18', 'chingwanfu', '2013-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS384190467542', '河野光莉', 0, '+81 3-2611-7247', 3, '059063871727997294', '22F, 5-2-9 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-06-07', 0, 0, 'kono75', '2014-11-25', 'hk1209', '2021-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS790708575839', 'Eddie Medina', 0, '+1 213-845-0311', 2, '930429734989682390', '508 Sky Way Apt 29, Los Angeles, CA 90043, United States', '1999-01-10', 0, 0, 'medinedd', '2018-11-12', 'eddie1948', '2015-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS037682636984', '石田大地', 1, '+86 20-398-4787', 3, '355179664198345118', 'No.47 building, 957 Xiaoping E Rd, Baiyun , Guangzhou, China', '1999-01-18', 0, 0, 'daichiishida510', '2018-12-26', 'id3', '2007-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS785107160380', '姜學友', 1, '+86 21-8934-0623', 3, '909426257622950578', '中国上海市闵行区宾川路715号华润大厦40室', '1988-01-09', 0, 0, 'hokyachang', '2005-02-18', 'hokyauc1944', '2013-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS745559092656', '斉藤玲奈', 0, '+81 90-9896-6190', 3, '604759528753286686', '49-kai, 1-5-20, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1992-06-04', 0, 0, 'saitrena', '2019-04-18', 'saitorena1', '2010-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS796420992703', '車德華', 1, '+86 21-9735-3191', 1, '636792053247085907', '中国上海市闵行区宾川路668号华润大厦34室', '1989-09-29', 0, 0, 'twch1987', '2019-05-26', 'che104', '2004-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS971798306509', '方杰宏', 1, '+86 769-749-3837', 2, '697278972311539884', 'Room 13, 221 Kengmei 15th Alley, Dongguan, China', '1985-02-25', 0, 0, 'fangjiehong', '2000-06-16', 'jiehongfang', '2017-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS705913521076', '藤田優奈', 0, '+81 66-529-5040', 2, '712914125350639508', '日本おおさかし平野区加美東四丁目9番10号27号室', '1988-05-03', 0, 0, 'fujyuna', '2004-05-22', 'yunfuj', '2011-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS252852762357', '侯岚', 0, '+81 80-8106-4666', 2, '989003823399394689', '日本東京中央区銀座三丁目12番3号33号室', '1998-04-08', 0, 0, 'hol4', '2007-04-24', 'lanhou', '2002-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS190269732820', '曹天榮', 1, '+86 133-0136-7961', 0, '012355982696315128', '中国成都市锦江区红星路三段278号14号楼', '1987-09-23', 0, 0, 'chotinwing', '2000-06-23', 'tinwing10', '2019-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS484987972630', 'Elaine Boyd', 1, '+44 (161) 937 6847', 0, '487202563808239737', 'Unit 18, Oxford Eco Centre, 943 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1988-09-26', 0, 0, 'boydela', '2015-08-06', 'elaine902', '2003-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS118277276719', '林詠詩', 1, '+1 213-052-3996', 2, '774596344656877252', '717 Grape Street Apartment 27, Los Angeles, CA 90002, United States', '1994-09-11', 0, 0, 'laws1102', '2014-01-28', 'wslam731', '2016-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS467409354190', '汪梓晴', 0, '+1 312-952-4646', 2, '009245923063423882', '503 North Michigan Ave Suite 12, Chicago, IL 60611, United States', '1996-02-08', 0, 0, 'tszchingwo', '2012-01-29', 'tcwong1012', '2016-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS583236802483', '菊地樹', 0, '+44 5057 773406', 2, '261668902415455554', 'No.3 Main building, 254 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1990-11-13', 0, 0, 'kikuchii09', '2013-07-15', 'ikikuc118', '2017-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS717663295910', '丸山聖子', 1, '+81 80-2822-6484', 1, '414920855636504764', 'Rm. 31, 6 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1998-04-29', 0, 0, 'seikomaruy518', '2004-03-10', 'maruyama909', '2019-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS211731598220', '湯國明', 0, '+1 718-688-4602', 1, '119943626792882535', '729 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1988-01-25', 0, 0, 'kmtong', '2016-03-12', 'tkm', '2006-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS229234828288', '萬家玲', 0, '+44 5186 709471', 3, '634471037410997811', 'No.28 Main building, 834 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1989-05-13', 0, 0, 'mengkaling', '2003-09-15', 'klmeng', '2014-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS896609967199', '谷慧珊', 0, '+1 213-707-7759', 2, '542470831206583489', '734 S Broadway Apartment 28, Los Angeles, CA 90015, United States', '1986-11-06', 0, 0, 'koowaisan', '2002-11-23', 'wskoo', '2014-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS536914503720', '狄淑怡', 1, '+86 191-7211-5864', 1, '359640002493453142', 'Room 23, CR Building, 912 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1987-03-02', 0, 0, 'syti4', '2010-01-14', 'syti208', '2003-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS804309591665', '吉田光莉', 1, '+44 5654 096074', 4, '142817559295154108', 'No.42 Main building, 461 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1995-06-27', 0, 0, 'hiky', '2011-10-20', 'hikari1002', '2017-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS670044564490', 'Rachel Snyder', 1, '+44 7016 854234', 3, '348647187528927607', 'No.20 Main building, 881 New Street, Birmingham, B2 4DB, United Kingdom', '1988-04-10', 0, 0, 'srache', '2011-12-30', 'rachsnyd', '2020-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS805890683261', 'Martha Torres', 1, '+81 11-345-2866', 2, '819022438784145109', '日本札幌清田区真栄四条五丁目19番8号49号室', '1993-11-19', 0, 0, 'torremart6', '2006-06-04', 'martha104', '2013-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS486466910776', '張心穎', 1, '+81 80-7575-8862', 1, '780957333146472626', '37F, 1-1-6 Deshiro, Nishinari Ward, Osaka, Japan', '1986-10-02', 0, 0, 'sumwing1959', '2006-09-19', 'cheungsumwing310', '2010-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS511590847937', '吕子韬', 0, '+81 52-294-5511', 2, '809164526116999116', '50-kai, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-11-03', 0, 0, 'zitalu', '2006-08-14', 'zitalu', '2005-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS180776609537', '福田美緒', 1, '+86 172-6024-1142', 1, '118049324277747441', 'Room 26, 680 Kengmei 15th Alley, Dongguan, China', '1998-08-17', 0, 0, 'miofukuda', '2004-04-13', 'mfuku', '2010-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS814738666448', '原田桜', 1, '+81 3-5819-4588', 2, '969287474150397440', '日本東京港区東新橋一丁目5番13号37号室', '1986-02-28', 0, 0, 'sakurah', '2011-06-24', 'sha', '2012-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS305917416227', '宮本翼', 1, '+81 66-960-2188', 3, '236679241274749014', '2-kai, 4-9-16 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-01-22', 0, 0, 'tsubasamiya', '2012-09-01', 'tsubasa1981', '2004-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS864042696141', '菊地湊', 1, '+81 90-6171-6044', 4, '447433445060957720', '日本おおさかし平野区加美東四丁目9番1号12階', '1987-12-13', 0, 0, 'minatkik', '2018-07-05', 'kikuchi1961', '2018-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS181608366522', 'Ellen Smith', 1, '+1 330-363-2023', 2, '875545068959495187', '587 Ridgewood Road Apartment 4, Akron, OH 44321, United States', '1990-03-12', 0, 0, 'sel', '2007-09-01', 'esmi55', '2013-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS433079168658', '曾惠妹', 1, '+1 330-458-4324', 3, '170925071135854748', '814 Collier Road 3rd Floor, Akron, OH 44320, United States', '1991-04-13', 0, 0, 'tsahuimei1204', '2004-01-06', 'huimeitsang', '2005-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS353659245891', 'Amy Evans', 0, '+44 (20) 6800 6667', 2, '335421245183887225', 'Block 25, 908 Pollen Street, London, W1S 1NG, United Kingdom', '1985-03-03', 0, 0, 'aevans129', '2006-01-29', 'amyevans304', '2003-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS286799361871', 'Janet Nichols', 0, '+86 28-754-8563', 3, '843970991268141996', '中国成都市锦江区红星路三段226号华润大厦43室', '1986-01-02', 0, 0, 'janetnicho', '2018-12-24', 'janen', '2005-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS656543591193', '蕭天榮', 1, '+81 80-6771-0582', 4, '238300605722070591', '日本札幌白石区菊水三条五丁目2番11号34階', '1994-01-24', 0, 0, 'siutinwing', '2017-10-06', 'twsiu', '2016-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS634449057874', '應國榮', 0, '+81 70-7677-3771', 0, '909324066955514021', 'Rm. 1, 5-2-19 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1991-08-29', 0, 0, 'ykwokwing1227', '2009-05-07', 'yinkw', '2016-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS025890462703', '林安琪', 1, '+1 614-546-1866', 2, '353298013565132634', '805 East Cooke Road Apt 5, Columbus, GA 43214, United States', '1998-09-19', 0, 0, 'lamonkay', '2016-11-18', 'okla124', '2002-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS726863265706', 'Don Woods', 1, '+1 838-831-8237', 2, '447818679501070621', '674 Central Avenue Apartment 20, Albany, NY 12205, United States', '1993-07-05', 0, 0, 'wdo', '2000-10-31', 'donwood', '2014-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS070487815263', '袁惠敏', 0, '+1 838-107-8651', 2, '098480801828734750', '771 Lark Street Suite 40, Albany, NY 12210, United States', '1987-01-03', 0, 0, 'waimanyuen', '2008-05-19', 'yuewaiman10', '2021-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS334937233614', '坂本絢斗', 0, '+81 74-073-4616', 4, '547527762618280341', '27-kai, 18 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-05-10', 0, 0, 'sa1959', '2003-08-27', 'sakamotoayat', '2010-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS163846353940', '唐永權', 1, '+1 718-388-1663', 2, '063778865312746489', '753 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1992-01-20', 0, 0, 'towi', '2017-06-20', 'wingkuentong', '2011-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS417503226447', '尹嘉伦', 0, '+81 80-7904-7572', 1, '331423772789405062', '日本東京千代田区丸の内一丁目6番17号23階', '1997-12-04', 0, 0, 'jiy', '2019-05-15', 'yinjialun4', '2016-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS146034398738', '夏子异', 0, '+1 213-032-9163', 1, '615287265512442174', '203 Wall Street Apt 37, Los Angeles, CA 90003, United States', '1993-11-24', 0, 0, 'ziyixia', '2010-02-19', 'zx630', '2021-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS749180662736', '田村優奈', 1, '+1 614-658-0166', 0, '305191232168512498', '373 East Cooke Road Apartment 25, Columbus, GA 43214, United States', '1994-07-05', 0, 0, 'yuntamur7', '2003-05-21', 'yunatamura', '2003-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS805916384073', '许秀英', 1, '+81 3-7319-9637', 2, '499213926345037208', 'Rm. 36, 1-5-8, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1988-02-01', 0, 0, 'xiuyxu', '2015-07-05', 'xuxiuy', '2021-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS339095372912', 'Christine Palmer', 0, '+86 179-1090-3729', 3, '887467543964705987', 'No.11 building, 99 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1986-05-06', 0, 0, 'christinep502', '2005-05-29', 'pachristine', '2018-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS137259624501', 'Randy Gutierrez', 1, '+81 80-6891-6794', 2, '377573895556673933', '日本おおさかし東住吉区東田辺三丁目27番13号35階', '1997-02-27', 0, 0, 'randyguti', '2018-12-20', 'grandy', '2013-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS034658467195', '林杰宏', 1, '+86 755-989-1568', 0, '709344967985107610', '中国深圳罗湖区田贝一路669号华润大厦7室', '1995-04-27', 0, 0, 'lin1946', '2009-05-29', 'jlin', '2021-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS529663262536', '樂頴璇', 0, '+44 7748 159732', 2, '876033551659727801', 'Block 10, 540 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1997-07-30', 0, 0, 'wingsl', '2019-06-16', 'wingsuenlok71', '2020-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS999863355202', '史云熙', 1, '+81 52-416-5188', 4, '732878887585747347', '日本なごやし守山区瀬古東二丁目171番1号15階', '1990-08-24', 0, 0, 'shi1220', '2022-01-26', 'shyun928', '2019-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS673093245708', 'Deborah White', 1, '+86 163-8074-5463', 4, '817252219797585417', 'Room 17, 989 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1995-07-30', 0, 0, 'white19', '2001-11-15', 'whdeb59', '2021-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS440274305555', 'Rebecca Moreno', 0, '+1 213-205-6774', 1, '482227331073248658', '389 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1996-03-06', 0, 0, 'rebecca03', '2008-10-13', 'rebecca47', '2006-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS038985092124', '钱杰宏', 1, '+86 176-2466-8230', 0, '201855966550955133', 'Room 19, 814 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1988-01-09', 0, 0, 'qianjiehong', '2012-09-15', 'qian5', '2011-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS936230549836', '戚國賢', 0, '+86 140-4744-6921', 3, '215230209235865166', 'Room 8, 228 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1985-08-05', 0, 0, 'kwokyin8', '2009-03-08', 'kwokyin74', '2012-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS853227748082', '關志明', 1, '+86 10-5259-0378', 1, '366694259122610390', 'No.20 building, 965 West Chang''an Avenue, Xicheng District, Beijing, China', '1994-01-04', 0, 0, 'chimingk', '2016-02-04', 'kwancm', '2001-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS036914437046', '斎藤七海', 1, '+81 3-6722-6873', 1, '990243277028094181', 'Rm. 40, 3-15-2 Ginza, Chuo-ku, Tokyo, Japan', '1988-11-02', 0, 0, 'saitonanami1003', '2001-05-04', 'nansaito825', '2017-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS805682482537', '關梓軒', 0, '+81 90-5766-4679', 3, '169863332601224718', 'Rm. 39, 2-5-13 Chitose, Atsuta Ward, Nagoya, Japan', '1989-07-25', 0, 0, 'kwanth', '2005-09-21', 'kwan01', '2011-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS514149902077', '王國明', 1, '+86 28-7255-5233', 2, '835365865359955808', '中国成都市成华区双庆路875号40栋', '1994-12-04', 0, 0, 'kmwong', '2006-11-06', 'wong109', '2021-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS526025989077', '村田陽菜', 1, '+86 160-2812-6890', 3, '432944064904574759', '中国广州市白云区小坪东路979号45栋', '1994-12-11', 0, 0, 'muratahina', '2002-01-08', 'hinamurata', '2015-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS300549446568', '斉藤百花', 0, '+44 5834 647609', 2, '615016456026308762', 'Flat 38, 509 Mosley St, Manchester, M2 3AQ, United Kingdom', '1993-07-14', 0, 0, 'momsai', '2013-03-12', 'momokasaito1981', '2016-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS784016843427', 'Kelly Roberts', 0, '+81 52-671-1528', 4, '070522291683364510', '日本なごやし守山区瀬古東二丁目171番19号18号室', '1994-02-11', 0, 0, 'rokelly', '2006-04-23', 'kelly9', '2013-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS425640745869', '方安琪', 1, '+1 838-310-5278', 0, '541833112034651730', '145 Broadway Apartment 48, Albany, NY 12207, United States', '1992-11-14', 0, 0, 'fananqi', '2002-06-09', 'fanganqi', '2012-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS592795651230', '侯安琪', 1, '+44 (116) 889 4910', 2, '194884669594614877', 'Block 20, 70 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1992-08-15', 0, 0, 'hou205', '2016-09-03', 'anqh1208', '2016-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS427268476500', '千葉詩乃', 1, '+86 10-9799-7787', 1, '773700236019472785', 'No.31 building, 19 028 County Rd, Yanqing District, Beijing, China', '1988-09-16', 0, 0, 'shino4', '2013-07-20', 'cshino', '2007-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS934969058088', '谢云熙', 1, '+81 80-8658-6009', 3, '998159846897124949', '44F, 5-2-2 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1994-07-20', 0, 0, 'yunxi121', '2020-09-02', 'xiyunxi510', '2016-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS824225908419', '松井拓哉', 0, '+81 52-180-1550', 4, '573362575680781043', '日本なごやし北区清水三丁目19番20号8階', '1992-01-16', 0, 0, 'tmatsui5', '2021-09-22', 'takuyama', '2000-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS767337094393', '容裕玲', 0, '+86 769-599-2703', 0, '332490406795573895', 'Room 15, 469 Huanqu South Street 2nd Alley, Dongguan, China', '1991-07-13', 0, 0, 'yly', '2003-03-14', 'yulingyun807', '2012-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS692545537158', '韦嘉伦', 0, '+86 135-4712-9827', 0, '967435457344852444', '中国广州市海珠区江南西路85号13室', '1986-02-04', 0, 0, 'jialunw', '2010-03-07', 'jialunw76', '2000-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS226737857477', 'Ashley Taylor', 0, '+44 (161) 222 9318', 3, '733022090029467696', 'Block 15, 64 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1986-11-02', 0, 0, 'ast222', '2010-02-16', 'ashleyt8', '2021-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS923872845195', '钱震南', 1, '+81 66-586-9526', 3, '561906595089179276', '日本おおさかし西成区天神ノ森二丁目1番9号47号室', '1998-02-19', 0, 0, 'qizhennan4', '2010-06-20', 'zheqian', '2008-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS977290190290', 'Rosa Hawkins', 0, '+86 10-034-0136', 2, '422205774988344108', '中国北京市西城区西長安街192号华润大厦2室', '1996-05-12', 0, 0, 'hawkinsros', '2019-08-27', 'hawkins2', '2019-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS668239762282', 'Mario Richardson', 1, '+86 130-1565-6884', 1, '417007839228855809', '中国北京市西城区西長安街557号18室', '1987-04-15', 0, 0, 'mr2003', '2008-05-14', 'mariorichardson426', '2021-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS002932444853', '任頴璇', 1, '+86 769-9007-9508', 2, '421487439446513230', '中国东莞东泰五街389号33楼', '1985-06-05', 0, 0, 'wsyam1969', '2012-05-17', 'yam8', '2005-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS216480936216', '何明', 0, '+86 10-016-1391', 1, '391309814414780188', '39F, 321 028 County Rd, Yanqing District, Beijing, China', '1992-05-30', 0, 0, 'minho509', '2017-02-18', 'homi121', '2006-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS378640542243', '何子韬', 0, '+81 52-951-1536', 2, '042688372085573163', 'Rm. 44, 1 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-10-07', 0, 0, 'hez217', '2012-10-15', 'hezitao', '2005-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS176765315986', '藤井七海', 0, '+44 7464 714497', 3, '314671241365951071', 'Unit 34, Oxford Eco Centre, 990 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1986-11-21', 0, 0, 'nanami1', '2014-04-07', 'nanafujii', '2012-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS721746662945', '陶子异', 1, '+1 838-999-7341', 1, '536832570884399980', '851 Broadway 3rd Floor, Albany, NY 12207, United States', '1993-02-01', 0, 0, 'ziyi2', '2007-08-04', 'taoziyi4', '2014-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS483144633509', '島田紗良', 1, '+81 3-5479-4649', 2, '146473978577235573', '日本東京中央区銀座三丁目12番13号10階', '1986-12-08', 0, 0, 'sshim6', '2008-03-13', 'shsa', '2010-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS403437527726', 'Pauline Moreno', 0, '+81 80-6847-6796', 1, '847644896672440632', '31F, 3-19-13 Shimizu, Kita Ward, Nagoya, Japan', '1997-04-15', 0, 0, 'mopaul63', '2014-07-29', 'morenopau8', '2018-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS644726045168', 'Edward Stevens', 1, '+86 178-5401-6469', 4, '712314816524976097', 'No.35 building, 622 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-08-13', 0, 0, 'edwardstevens', '2006-08-30', 'edwards9', '2004-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS543888280478', '松田翼', 1, '+1 312-937-8702', 1, '745541363775011230', '395 Pedway Suite 16, Chicago, IL 60601, United States', '1996-10-13', 0, 0, 'matsubasa', '2007-02-07', 'tsubasamatsuda1107', '2016-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS565231643914', 'Bonnie Rivera', 0, '+44 7533 656183', 4, '301675552648492710', 'No.7 Main building, 340 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1994-05-30', 0, 0, 'riverabonn', '2016-05-24', 'riverab', '2008-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS310200753716', '林大和', 0, '+86 760-8764-8334', 3, '968385521820708599', '中国中山天河区大信商圈大信南路314号华润大厦32室', '1993-01-14', 0, 0, 'yamathayashi6', '2019-02-13', 'yamatoh11', '2010-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS416312725680', 'Albert Evans', 0, '+1 614-237-9225', 4, '947956754450835639', '645 Wicklow Road Apt 1, Columbus, GA 43204, United States', '1986-10-17', 0, 0, 'albert97', '2003-09-29', 'ealbert', '2007-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS274878460943', 'Jimmy Collins', 0, '+81 3-5224-5002', 1, '893532167386724433', '日本東京港区東新橋一丁目5番19号13階', '1987-08-27', 0, 0, 'jcoll8', '2001-08-15', 'jimmycoll', '2015-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS766865290778', '駱國榮', 1, '+81 11-006-5938', 2, '294077191984525968', '41F, 6-1-9, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-03-02', 0, 0, 'lok1', '2002-08-08', 'kwlok', '2013-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS801428663126', '遠藤健太', 1, '+81 80-8731-4569', 3, '481487315874465981', '27F, 5-2-10 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-01-20', 0, 0, 'endo525', '2014-03-30', 'endo98', '2017-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS288099843698', '梅思妤', 1, '+86 149-1730-4865', 3, '541810210936483645', 'Room 25, CR Building, 636 Yueliu Rd, Fangshan District, Beijing, China', '1989-02-04', 0, 0, 'sym6', '2009-05-04', 'szeyumui', '2018-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS752501098534', '中村明菜', 0, '+86 10-874-8826', 3, '170901858508937795', '中国北京市朝阳区三里屯路903号华润大厦4室', '1997-07-17', 0, 0, 'akinnaka928', '2002-02-25', 'akinanakamura1966', '2002-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS391929048613', '金子一輝', 0, '+81 11-130-1564', 0, '277427519999166708', '日本札幌白石区菊水三条五丁目4番1号25号室', '1988-08-25', 0, 0, 'kaneko6', '2015-05-28', 'kanekoikki2', '2007-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS188399544810', '谷國賢', 1, '+86 139-1480-8252', 2, '128202271731343395', '中国中山天河区大信商圈大信南路737号49栋', '1992-07-13', 0, 0, 'kky', '2003-11-26', 'koky', '2020-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS117835656867', 'Kyle Wilson', 0, '+86 10-4829-7474', 0, '192869071109032041', 'Room 26, CR Building, 404 FuXingMenNei Street, XiCheng District, Beijing, China', '1998-12-01', 0, 0, 'kyle79', '2021-08-15', 'kylewilso', '2018-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS576355585312', 'Nicholas Murphy', 0, '+81 80-6012-7679', 2, '966239805378394755', '日本札幌豊平区豊平三条十三丁目3番18号36号室', '1994-09-29', 0, 0, 'murphynic', '2013-09-24', 'nmurphy43', '2019-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS957519901911', 'Janice Jones', 0, '+86 769-7810-0806', 3, '495619348698922784', '中国东莞环区南街二巷487号33栋', '1985-12-15', 0, 0, 'jjanice', '2010-08-13', 'janijones', '2005-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS415083216986', '石川結翔', 0, '+86 138-2381-7866', 1, '290569853909940259', '41F, 649 Jingtian East 1st St, Futian District, Shenzhen, China', '1995-11-25', 0, 0, 'yuitoishikawa', '2003-07-23', 'ishikawa6', '2014-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS214859050465', '清水翼', 1, '+86 199-1337-7031', 4, '971637818009220378', '中国东莞坑美十五巷560号华润大厦44室', '1988-01-05', 0, 0, 'shitsubasa116', '2000-12-31', 'tsubasa629', '2019-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS104430676556', '黎岚', 1, '+81 70-4222-0031', 4, '578881987758684786', '日本札幌豊平区豊平三条十三丁目3番4号6階', '1987-04-01', 0, 0, 'lilan', '2008-12-26', 'lilan', '2020-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS814074708095', '苗心穎', 1, '+1 212-707-6345', 2, '463442756340510069', '682 Wooster Street 3rd Floor, New York, NY 10012, United States', '1990-08-18', 0, 0, 'misw106', '2007-06-29', 'miu703', '2007-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS739377645257', '萧子韬', 1, '+81 80-6667-1614', 1, '806861139387176101', '13F, 2-1-10 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1987-06-27', 0, 0, 'zixi609', '2015-07-09', 'xiao03', '2000-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS403452445738', 'Josephine Rose', 1, '+1 312-788-9193', 3, '848045888428984453', '726 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1995-07-07', 0, 0, 'rjosephine', '2018-08-08', 'rose04', '2017-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS756081896695', '尹子韬', 0, '+86 769-6067-3910', 2, '746431472176292632', 'Room 39, CR Building, 580 Huanqu South Street 2nd Alley, Dongguan, China', '1990-04-18', 0, 0, 'zitao203', '2021-06-12', 'yin1124', '2003-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS818165649499', '森田陸', 0, '+86 760-5418-8253', 2, '951229719535866871', '30F, 51 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1986-09-04', 0, 0, 'moritariku', '2020-10-25', 'moritariku1005', '2001-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS040287482632', '斎藤大地', 0, '+81 11-880-3235', 4, '441115670818485053', 'Rm. 41, 5-2-10 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1994-07-04', 0, 0, 'saitodaichi', '2005-03-17', 'saitodaich3', '2000-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS195505563199', '曹青雲', 1, '+44 (161) 640 1000', 1, '566628247257383502', 'No.12 Main building, 108 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-11-21', 0, 0, 'ccw625', '2010-08-25', 'chocw5', '2013-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS155999393656', '江頴璇', 1, '+1 213-610-0816', 1, '109469057836754127', '800 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1988-07-06', 0, 0, 'wingsk', '2000-12-31', 'wingsuenk', '2005-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS371321600882', 'Jeremy Snyder', 0, '+81 70-1621-3437', 2, '081016999043097880', 'Rm. 21, 1-7-19 Omido, Higashiosaka, Osaka, Japan', '1997-02-01', 0, 0, 'jsnyder3', '2002-12-08', 'snyderjeremy', '2014-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS862202441097', '顾致远', 0, '+86 196-0806-0480', 2, '694905641441668550', 'No.26 building, 810 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1997-01-20', 0, 0, 'zhiyuangu', '2006-10-23', 'guzhiyuan', '2000-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS821066389652', 'Vincent Lee', 0, '+81 70-3364-4894', 2, '064134308394347029', '日本札幌中央区宮の森四条六丁目1番3号28階', '1992-01-23', 0, 0, 'lvincent53', '2007-12-25', 'vincentlee', '2005-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS399311607666', '任浩然', 1, '+86 180-7484-2651', 3, '127943114481816477', '中国北京市房山区岳琉路103号47号楼', '1995-05-03', 0, 0, 'hyy1225', '2011-08-12', 'hoyy9', '2010-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS493908122267', '池田大地', 0, '+86 136-5230-7631', 3, '057109312126692330', '中国深圳龙岗区布吉镇西环路179号6栋', '1989-02-27', 0, 0, 'ikedadaichi', '2010-10-18', 'ikedadaic1974', '2014-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS972621248440', 'Michael Garcia', 1, '+1 212-241-1736', 0, '745284309212735228', '351 Wooster Street Suite 16, New York, NY 10012, United States', '1997-08-18', 0, 0, 'garcimichael', '2021-09-19', 'garciami9', '2012-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS730476257484', '佘潤發', 0, '+81 3-3736-7764', 2, '063131900988500146', '13-kai, 3-15-17 Ginza, Chuo-ku, Tokyo, Japan', '1987-03-01', 0, 0, 'yfsh', '2000-08-18', 'syunfat923', '2009-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS499514010646', '韩岚', 1, '+86 28-7838-2259', 3, '332563606209207170', '中国成都市成华区二仙桥东三路464号13号楼', '1995-03-12', 0, 0, 'hanlan', '2019-01-20', 'lanhan', '2004-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS160646134204', '安藤光', 1, '+86 158-8399-7368', 0, '825318732355903361', '5F, 558 Sanlitun Road, Chaoyang District, Beijing, China', '1993-02-08', 0, 0, 'andoh', '2015-12-26', 'andohikaru', '2002-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS683457802144', '姜家玲', 0, '+1 614-539-7386', 0, '974370847527314513', '580 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1990-03-18', 0, 0, 'changkaling10', '2000-08-06', 'chakl79', '2001-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS741092418665', 'Rodney James', 1, '+81 80-7921-0423', 2, '258663421394437447', '日本東京千代田区丸の内一丁目6番4号43階', '1986-03-19', 0, 0, 'rodjam74', '2013-07-05', 'rodney5', '2005-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS146243302987', '阿部愛梨', 1, '+44 (121) 057 5879', 0, '660576795887453463', 'No.31 Main building, 818 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1997-12-17', 0, 0, 'airia', '2009-07-19', 'abe204', '2009-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS738055449763', 'Carrie Castro', 1, '+1 614-502-5755', 0, '777502226044098745', '220 East Alley 3rd Floor, Columbus, GA 43201, United States', '1991-02-26', 0, 0, 'carcast709', '2012-06-09', 'castrocarri', '2021-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS497603339863', 'Norma Gardner', 1, '+86 163-9105-2870', 3, '136106277238337442', '18F, 323 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1995-12-14', 0, 0, 'gardnernorma222', '2001-11-07', 'normagardn', '2007-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS112210277941', '坂本結翔', 0, '+86 769-833-5749', 3, '495771240806519515', '中国东莞珊瑚路693号5楼', '1988-10-08', 0, 0, 'sakyuito', '2003-06-05', 'yuisakamoto914', '2000-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS028855144220', 'Chad Gibson', 0, '+81 70-6519-6792', 3, '706842439294538205', 'Rm. 24, 2-1-13 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1986-03-17', 0, 0, 'chadgibson', '2009-06-26', 'gibchad', '2009-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS827544637885', '官安娜', 0, '+81 70-9462-4455', 2, '111230767304018744', '日本札幌清田区真栄四条五丁目19番10号18階', '1991-07-27', 0, 0, 'onnakoon', '2007-12-23', 'onkoon4', '2010-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS039511882961', '有村七海', 1, '+86 769-7914-5966', 1, '411548121892060040', 'Room 34, 752 Kengmei 15th Alley, Dongguan, China', '1986-08-05', 0, 0, 'nanamiarimura1230', '2005-03-26', 'arimurananam7', '2002-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS265076040549', '朱國榮', 1, '+81 80-3820-7765', 1, '839062993350005580', '29F, 1-1-2 Deshiro, Nishinari Ward, Osaka, Japan', '1985-03-05', 0, 0, 'chukw', '2013-09-18', 'kwokwingchu06', '2018-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS261804264371', '村上陸', 0, '+81 11-359-7814', 3, '685066677510508123', 'Rm. 25, 13-3-5 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1988-09-25', 0, 0, 'murakamirik106', '2007-01-04', 'rikumurakami', '2011-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS864698663755', 'Arthur Rose', 1, '+86 10-7014-2876', 0, '017668314034650895', 'Room 7, CR Building, 969 East Wangfujing Street, Dongcheng District , Beijing, China', '1985-04-26', 0, 0, 'arose1947', '2016-12-17', 'arthur5', '2003-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS679505560050', '孟震南', 1, '+81 11-592-5776', 3, '680050344131002186', '日本札幌豊平区豊平三条十三丁目3番17号9号室', '1987-08-12', 0, 0, 'menz', '2008-03-17', 'meng323', '2001-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS484380639634', '武秀英', 0, '+86 21-9361-9626', 0, '704334844129976836', '中国上海市徐汇区虹桥路366号5号楼', '1988-04-18', 0, 0, 'wuxiuy', '2016-07-11', 'wu10', '2016-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS204412066769', 'Amber Diaz', 1, '+81 80-5388-7761', 1, '582863528015588800', '日本なごやし熱田区千年二丁目5番1号36号室', '1986-03-25', 0, 0, 'amberdiaz09', '2021-03-22', 'ambd', '2008-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS015500411239', '梅裕玲', 0, '+81 11-373-8324', 1, '158849880967895212', '日本札幌厚別区上野幌一条二丁目1番14号46階', '1995-08-23', 0, 0, 'ylm67', '2019-03-30', 'ylmui', '2006-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS601963819053', '谭晓明', 1, '+86 10-9593-4552', 1, '907090894217370984', 'No.34 building, 463 Sanlitun Road, Chaoyang District, Beijing, China', '1994-09-24', 0, 0, 'xiaomingtan101', '2014-07-09', 'tanxiao', '2007-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS075559077157', '向致远', 0, '+86 176-3576-6314', 0, '239979106831869540', '中国广州市越秀区中山二路226号30号楼', '1987-04-06', 0, 0, 'zhiyuan4', '2009-04-01', 'zhiyuanxiang3', '2021-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS052103238257', '唐慧嫻', 1, '+86 151-7995-2943', 3, '884261506638114850', '中国广州市白云区小坪东路585号12楼', '1994-03-11', 0, 0, 'tonwa4', '2003-10-17', 'whto', '2018-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS442093919880', '溫世榮', 1, '+86 28-426-9247', 3, '444761607259167693', '32F, 994 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1985-02-26', 0, 0, 'saiwing72', '2010-05-18', 'saiwingwan1230', '2011-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS350324594822', 'George Henry', 1, '+44 (20) 1939 7022', 1, '590300458849639714', 'Flat 40, 548 Pollen Street, London, W1S 1NG, United Kingdom', '1991-09-03', 0, 0, 'henry3', '2002-12-20', 'hgeorge', '2004-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS192524103502', '後藤葉月', 1, '+81 66-918-8130', 1, '687276667812005250', '日本おおさかし近江堂一丁目7番19号12階', '1986-06-10', 0, 0, 'hagoto', '2009-03-20', 'gotohazuki', '2008-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS841048727061', '竹内百花', 1, '+1 718-106-7562', 3, '097201779470826626', '730 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1993-05-12', 0, 0, 'momoka5', '2014-03-27', 'tam', '2011-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS592005134769', 'Mark Alvarez', 0, '+86 755-282-6809', 2, '337669062478436977', 'No.6 building, 521 Jingtian East 1st St, Futian District, Shenzhen, China', '1986-07-01', 0, 0, 'am76', '2001-09-11', 'markalvarez', '2006-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS137401260837', 'Donna Cooper', 0, '+86 20-1776-3781', 1, '052735249596486783', '中国广州市白云区机场路棠苑街五巷276号25号楼', '1992-12-03', 0, 0, 'dcooper2005', '2019-10-04', 'cood', '2018-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS874634518743', '汤子异', 1, '+81 74-105-0406', 4, '545854848167102208', 'Rm. 43, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1989-04-07', 0, 0, 'ziyit', '2017-02-27', 'tangz403', '2002-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS540321935697', '官安娜', 1, '+86 160-1554-7610', 3, '139162215727356042', 'No.35 building, 250 Tianhe Road, Tianhe District, Guangzhou, China', '1997-03-29', 0, 0, 'kon531', '2012-11-27', 'koon5', '2007-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS927198560832', '陳力申', 1, '+86 755-0037-5302', 1, '613275481190447460', '中国深圳福田区景田东一街195号16号楼', '1996-06-09', 0, 0, 'chanliksun', '2005-04-01', 'liksunchan', '2015-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS920611732759', '中村美咲', 0, '+81 52-691-4577', 1, '207043085813137606', '日本なごやし守山区瀬古東二丁目171番1号47号室', '1986-05-26', 0, 0, 'nakamura2014', '2010-12-11', 'misaki9', '2000-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS412181344944', '新井陸', 0, '+86 20-176-7264', 1, '583399798150430762', '中国广州市白云区小坪东路955号46号楼', '1988-07-06', 0, 0, 'rikarai213', '2013-08-18', 'rikuara', '2013-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS947336801807', '内田優奈', 1, '+1 212-239-0498', 3, '012330704702187674', '189 Bank Street 3rd Floor, New York, NY 10014, United States', '1994-01-03', 0, 0, 'yuna6', '2007-10-07', 'uchidayuna10', '2000-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS843484209532', '潘云熙', 1, '+86 177-7822-8666', 2, '663901745480080332', '中国深圳罗湖区蔡屋围深南东路130号30栋', '1986-03-29', 0, 0, 'yunxip71', '2007-11-02', 'ypan', '2022-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS227402146128', '桜井百花', 1, '+86 196-5842-4160', 3, '245339179388757064', '中国中山乐丰六路804号1号楼', '1986-05-15', 0, 0, 'momoka325', '2006-02-22', 'momoks1963', '2016-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS255435107671', '郑云熙', 0, '+81 11-970-6603', 3, '265733011409699160', '43-kai, 5-2-13 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-05-25', 0, 0, 'zhenyunxi', '2018-05-19', 'yunxi5', '2014-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS541324197817', '孟子韬', 0, '+1 838-018-2455', 3, '525020119812121303', '649 Central Avenue Suite 35, Albany, NY 12205, United States', '1995-12-12', 0, 0, 'zitao1953', '2005-10-14', 'mengzita', '2016-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS953244036438', '甘榮發', 1, '+1 838-761-3383', 3, '298605512125593731', '4 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1988-12-11', 0, 0, 'kwingfat', '2015-07-01', 'kwf10', '2012-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS151036006241', 'Kim Dixon', 1, '+1 212-983-5005', 3, '595663810248755633', '2 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1989-01-22', 0, 0, 'dixki', '2013-08-15', 'kidixon', '2016-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS635830245026', '横山和真', 1, '+44 7023 094260', 1, '981732708332279943', 'No.47 Main building, 788 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1993-08-18', 0, 0, 'kyokoy10', '2009-11-08', 'yokoyama617', '2015-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS617706133913', '高安娜', 1, '+81 70-7383-9651', 2, '961379955206503284', '32F, 2-1-9 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1987-06-04', 0, 0, 'kaonna', '2001-12-07', 'kaoonna5', '2000-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS399261760699', 'Scott Morgan', 0, '+81 11-062-3269', 1, '878654116207331227', '日本札幌中央区宮の森四条六丁目1番10号33号室', '1996-12-06', 0, 0, 'smorgan', '2006-04-19', 'moscott', '2014-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS468106813786', '田青雲', 0, '+86 133-3697-1260', 1, '959969808629298577', '中国东莞坑美十五巷387号6栋', '1995-12-30', 0, 0, 'chingwantin', '2013-10-26', 'cwtin', '2002-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS114903039545', '石井光莉', 0, '+86 187-4444-8014', 0, '204490872573494407', 'No.33 building, 363 Ganlan Rd, Pudong, Shanghai, China', '1990-11-01', 0, 0, 'hikariishii1', '2008-08-09', 'ish', '2016-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS596159567298', '青木拓哉', 0, '+81 52-019-8014', 0, '683720523363249975', '43-kai, 3-19-14 Shimizu, Kita Ward, Nagoya, Japan', '1987-06-12', 0, 0, 'takuyaaoki1113', '2014-07-23', 'takuyaok2', '2005-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS338624681036', '楊明詩', 1, '+1 838-906-9848', 3, '999572387237291154', '596 State Street Suite 37, Albany, NY 12203, United States', '1985-11-15', 0, 0, 'yeungmings', '2021-12-05', 'mingsze17', '2004-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS923774694938', 'Juan Weaver', 1, '+81 90-8057-1279', 1, '374082589092213763', 'Rm. 43, 5-2-4 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1994-12-19', 0, 0, 'weaverjuan', '2011-12-08', 'wejuan2', '2004-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS471876088766', '徐震南', 1, '+1 330-334-7658', 4, '584718551967385057', '434 Collier Road Suite 7, Akron, OH 44320, United States', '1991-03-30', 0, 0, 'xu229', '2014-01-24', 'zhennanx', '2001-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS359866851330', '傅浩然', 1, '+81 70-0773-5182', 1, '933638233933002004', '11-kai, 5-4-4 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1994-02-12', 0, 0, 'fuhy', '2016-10-13', 'fuhy', '2001-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS147382481320', '余璐', 1, '+44 (1865) 68 7795', 3, '978847682046417510', 'Block 5, 76 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1988-10-18', 0, 0, 'luyu96', '2000-05-22', 'luy', '2011-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS389414514243', '安藤絢斗', 1, '+86 162-5163-2855', 2, '851857463486672680', '中国东莞环区南街二巷808号37室', '1997-07-25', 0, 0, 'andoayato', '2016-12-01', 'ayaando4', '2014-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS283790860900', 'Victor Stewart', 1, '+1 312-084-7676', 0, '324798301707848496', '838 Pedway Apt 19, Chicago, IL 60601, United States', '1989-05-02', 0, 0, 'victor1980', '2008-11-04', 'vicstewa', '2010-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS646558630308', '田詩涵', 1, '+86 143-8917-0216', 2, '575088825399550028', 'No.35 building, 409 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1991-09-19', 0, 0, 'ts1', '2000-11-15', 'shihantian', '2012-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS513513148929', '曹安琪', 0, '+86 151-9118-9363', 3, '212011977107030788', '6F, 58 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1985-12-17', 0, 0, 'caoanqi', '2002-10-10', 'anqicao', '2011-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS978193261080', 'Stephanie Stevens', 1, '+86 28-7716-4442', 1, '740442264002114229', '中国成都市成华区双庆路310号华润大厦23室', '1995-10-15', 0, 0, 'stephanie502', '2014-10-04', 'stephaniestevens', '2021-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS765818421537', '河野美咲', 1, '+86 21-355-8928', 3, '202820675457589645', '中国上海市浦东新区健祥路873号华润大厦47室', '1995-05-27', 0, 0, 'mkono64', '2016-01-21', 'misakikono4', '2008-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS203418046591', '邵秀英', 1, '+86 137-3615-3682', 1, '333830526083620796', 'No.18 building, 80 Ganlan Rd, Pudong, Shanghai, China', '1996-04-09', 0, 0, 'shxiuy48', '2000-06-01', 'sxiu', '2021-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS798173739331', '阿部紗良', 0, '+1 718-748-0936', 3, '935950730318723411', '515 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1998-05-29', 0, 0, 'asara7', '2007-08-12', 'sabe', '2000-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS689731155357', '曹慧琳', 1, '+86 21-847-8653', 3, '524636350299142428', '中国上海市黄浦区淮海中路129号华润大厦10室', '1986-02-03', 0, 0, 'wailam422', '2006-08-16', 'cwl', '2012-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS682970295677', 'Monica Fox', 1, '+44 (151) 679 7862', 0, '462556252235482586', 'No.11 Main building, 206 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1993-05-28', 0, 0, 'fox331', '2013-09-04', 'monicaf', '2014-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS194785489380', '曹睿', 0, '+81 66-624-1784', 1, '862091198931672673', '日本おおさかし平野区加美東四丁目9番16号1階', '1989-09-03', 0, 0, 'rcao03', '2001-05-03', 'caru', '2010-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS804976423204', '田村悠人', 0, '+86 20-648-4094', 4, '242410897595411608', 'Room 40, 23 Jiangnan West Road, Haizhu District, Guangzhou, China', '1995-03-19', 0, 0, 'yuto7', '2003-03-13', 'tamyuto', '2010-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS356564187787', '福田紗良', 0, '+1 614-609-6316', 0, '251427855468085537', '636 East Cooke Road Suite 44, Columbus, GA 43214, United States', '1995-06-20', 0, 0, 'fukusa', '2013-10-02', 'sarafuk1944', '2002-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS537290140661', '卢璐', 0, '+81 70-7143-3923', 3, '629363085983921085', '8-kai, 5 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-01-27', 0, 0, 'lulu', '2021-07-14', 'lulu', '2005-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS280559603175', '李世榮', 1, '+86 755-188-9388', 4, '851015948182231361', '中国深圳福田区景田东一街398号华润大厦37室', '1985-01-25', 0, 0, 'saiwinglee1031', '2006-06-09', 'lee514', '2015-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS082029103356', 'Clarence Mcdonald', 1, '+44 (121) 845 2582', 2, '273383978082327195', 'No.1 Main building, 386 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1993-10-18', 0, 0, 'clarencemcdonald92', '2020-10-19', 'clarencemcd', '2010-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS388953855829', '馮淑怡', 0, '+1 614-494-7975', 1, '399920954595738008', '861 Wicklow Road Apt 28, Columbus, GA 43204, United States', '1989-09-14', 0, 0, 'fungsy1007', '2004-06-22', 'sukyefung', '2014-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS096859311227', '伍永發', 1, '+81 3-1653-1439', 3, '221212005031778021', '日本東京品川区東五反田五丁目2番5号2号室', '1991-11-22', 0, 0, 'wingfat706', '2011-03-09', 'ngwf', '2008-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS679149762665', '大野明菜', 1, '+81 52-561-4161', 2, '696965921215339995', '日本なごやし北区清水三丁目19番8号4階', '1994-11-02', 0, 0, 'oakina8', '2009-10-27', 'onoakina2016', '2001-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS842972172126', 'Emily Rice', 0, '+86 139-2034-3378', 3, '021320040195811695', 'Room 32, CR Building, No.942, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-08-08', 0, 0, 'eri', '2014-09-10', 'emir', '2010-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS884086134012', '坂本詩乃', 0, '+86 10-704-6831', 1, '380202289449738158', 'Room 33, 455 Sanlitun Road, Chaoyang District, Beijing, China', '1993-07-15', 0, 0, 'shinosaka84', '2011-05-03', 'shinosakamoto', '2017-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS792091954416', '山崎美月', 1, '+44 (121) 704 5962', 0, '135842357430832373', 'Flat 30, 633 New Street, Birmingham, B2 4DB, United Kingdom', '1985-11-28', 0, 0, 'yamazakimits716', '2009-10-12', 'yamazmi', '2017-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS408412945123', 'Crystal Martinez', 0, '+86 20-332-3008', 1, '646112032629197383', '中国广州市白云区机场路棠苑街五巷166号华润大厦38室', '1988-01-31', 0, 0, 'crystalmartinez', '2015-09-25', 'martic', '2022-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS549794665642', '青木美羽', 0, '+44 (121) 361 6487', 2, '952464475534235606', 'Block 33, 297 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1994-06-26', 0, 0, 'miaoki1', '2006-03-04', 'miua1995', '2008-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS504585245749', '文頴思', 1, '+86 28-8037-5426', 1, '641866164781876943', 'Room 34, CR Building, 848 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1998-10-24', 0, 0, 'wingszeman1', '2022-01-07', 'wingszeman9', '2009-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS300701530803', '小林優奈', 1, '+81 80-5904-9934', 3, '676158468478394995', '日本ならし大和郡山市本庄町一丁目1番5号12階', '1985-02-16', 0, 0, 'kobayyuna1960', '2001-08-26', 'koby', '2004-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS931773537925', '黃玲玲', 1, '+44 (161) 678 0290', 3, '896610953873287154', 'Flat 48, 462 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1993-09-28', 0, 0, 'wongll', '2020-08-19', 'wongll', '2019-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS368034682413', '黎詩涵', 1, '+86 28-470-3367', 4, '376443104697433391', '中国成都市成华区玉双路6号228号17栋', '1998-05-16', 0, 0, 'shihali48', '2003-07-30', 'shihan7', '2012-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS910568435421', 'Roger Moreno', 1, '+86 197-2772-3474', 2, '690512038296033230', '中国深圳罗湖区清水河一路378号50室', '1986-03-12', 0, 0, 'rogermoreno9', '2006-03-13', 'moreroger15', '2001-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS036488168429', '孫志明', 1, '+86 755-384-7806', 1, '002124537500846672', '中国深圳龙岗区学园一巷638号2号楼', '1985-07-13', 0, 0, 'chiming1', '2012-02-17', 'hsuanchiming', '2016-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS065767385776', 'Norma Robertson', 0, '+81 11-017-7814', 1, '174242562240669434', '日本札幌白石区菊水三条五丁目2番4号29号室', '1992-04-30', 0, 0, 'robertson1952', '2000-02-08', 'robernor', '2006-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS257608132360', '崔仲賢', 1, '+81 74-164-8680', 4, '729793762913247631', '41F, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1992-09-12', 0, 0, 'cchungyin4', '2003-04-10', 'chchungyin86', '2001-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS684863874996', '邱杰宏', 1, '+86 134-4709-6327', 4, '306809205282276187', '中国北京市西城区复兴门内大街87号7室', '1994-11-17', 0, 0, 'qiujieh', '2004-09-08', 'jiehong6', '2020-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS203042568792', '狄玲玲', 0, '+1 213-765-4438', 1, '004103529497695906', '244 Grape Street Suite 41, Los Angeles, CA 90002, United States', '1991-06-19', 0, 0, 'llti', '2006-05-11', 'llt', '2015-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS894100483346', 'Leonard Campbell', 1, '+86 184-0683-4962', 2, '806171852296737127', 'Room 44, CR Building, 530 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1994-07-14', 0, 0, 'lecamp', '2015-02-17', 'leonardcam', '2009-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS279466839068', 'Heather Williams', 1, '+86 133-1163-8550', 0, '565692284815194779', '中国深圳龙岗区布吉镇西环路857号华润大厦33室', '1993-07-07', 0, 0, 'heawilliams', '2012-02-09', 'williamsh6', '2003-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS582444166636', '三浦架純', 0, '+1 213-896-5752', 2, '817264841574702746', '608 Sky Way Apartment 30, Los Angeles, CA 90043, United States', '1995-02-16', 0, 0, 'mkasu', '2019-05-28', 'miura99', '2013-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS474959242577', 'Billy Ramos', 1, '+81 90-3828-3363', 2, '017732223774261716', '23-kai, 5-19-18 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1999-02-07', 0, 0, 'ramosbilly88', '2011-07-09', 'billyramos', '2011-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS844037399338', '武秀英', 0, '+81 66-594-6050', 2, '803835387862390107', '日本おおさかし近江堂一丁目7番5号35階', '1985-07-18', 0, 0, 'wuxiuying', '2000-05-09', 'xiuywu', '2001-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS494914970840', '姚國明', 0, '+81 11-275-3988', 1, '061813395145503202', '10F, 5-2-3 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1998-07-10', 0, 0, 'yeowkwokming', '2003-07-06', 'yeow6', '2020-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS185533222615', '田岚', 0, '+86 755-7177-8746', 2, '850953428324088048', 'Room 19, 922 Shennan Ave, Futian District, Shenzhen, China', '1996-06-19', 0, 0, 'lanti1986', '2001-07-24', 'lantian', '2013-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS731586682024', 'John Scott', 0, '+86 760-029-1205', 3, '886555026813209252', '中国中山乐丰六路931号47栋', '1996-09-04', 0, 0, 'johnscott72', '2021-02-05', 'scottjo', '2006-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS048050869465', '熊秀英', 1, '+81 70-0424-0177', 1, '260931667421209257', '日本札幌中央区宮の森四条六丁目1番2号2階', '1991-01-10', 0, 0, 'xiongxiuying', '2016-04-28', 'xiuyx9', '2005-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS917402640131', '向宇宁', 0, '+86 197-7665-1750', 4, '296387347491236532', 'No.38 building, 526 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1996-09-23', 0, 0, 'yuninxiang', '2003-11-13', 'yuning89', '2016-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS110287684576', '三浦拓哉', 1, '+81 70-1792-1858', 4, '292652299696036488', '6-kai, 5-4-13 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-05-12', 0, 0, 'miuratakuya', '2008-10-06', 'miurata56', '2021-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS890941219608', '叶子异', 0, '+81 52-810-0544', 2, '256208917124303719', '日本なごやし北区楠味鋺三丁目80番20号25階', '1998-03-21', 0, 0, 'yez', '2013-02-03', 'yeziyi', '2000-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS380083861809', '上田結翔', 0, '+44 7855 117246', 1, '192171570791953738', 'Unit 5, Oxford Eco Centre, 41 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1993-06-02', 0, 0, 'yueda', '2000-11-18', 'ueda3', '2018-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS633159028353', '郭嘉伦', 0, '+81 3-2287-5766', 1, '950504537101408884', '39F, 1-5-11, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-01-03', 0, 0, 'guo1110', '2002-02-01', 'jg4', '2007-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS999218709113', 'Aaron Kim', 1, '+44 5270 835273', 2, '623563134525241723', 'Unit 22, Oxford Eco Centre, 802 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1988-11-18', 0, 0, 'aaronk10', '2008-01-11', 'aarkim114', '2010-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS434089790803', '小野拓哉', 0, '+44 7157 411216', 4, '846799607941529672', 'Block 20, 718 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1996-11-04', 0, 0, 'onotakuya', '2019-03-16', 'tono18', '2008-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS972586005220', '黃國賢', 1, '+81 52-416-0246', 3, '234377432340679030', 'Rm. 12, 20 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-07-30', 0, 0, 'wongky', '2009-08-15', 'wong1206', '2014-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS378290626040', 'Tina Miller', 0, '+81 3-0584-4163', 1, '427349675840191104', '日本東京港区東新橋一丁目5番10号41階', '1985-05-04', 0, 0, 'millertina51', '2011-05-10', 'miltina73', '2000-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS712961359998', 'Gloria Watson', 1, '+81 70-9488-4351', 4, '142607604074509620', 'Rm. 26, 1-5-3, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1993-07-26', 0, 0, 'watsong806', '2002-07-31', 'watsgloria3', '2014-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS479125053878', '橋本翼', 0, '+44 7238 396750', 2, '556943347761991386', 'No.5 Main building, 78 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1989-12-08', 0, 0, 'hashimototsuba', '2008-04-19', 'htsubasa', '2016-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS551717317552', 'Linda Ford', 0, '+86 160-4237-1469', 2, '611771282755366946', '中国上海市徐汇区虹桥路523号华润大厦36室', '1998-09-03', 0, 0, 'forlinda', '2012-04-17', 'lf10', '2011-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS211805420921', '卢宇宁', 0, '+86 177-0831-4335', 2, '553630832484277900', '中国成都市成华区双庆路935号44室', '1991-06-10', 0, 0, 'luyuni', '2005-03-01', 'yulu1220', '2002-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS497032500330', '樊榮發', 0, '+81 80-9035-9623', 1, '210550530037179106', '27-kai, 17 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1985-11-01', 0, 0, 'fan930', '2021-09-25', 'wffan', '2008-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS703954176049', '向俊宇', 1, '+81 80-1400-8473', 0, '542126149809260405', 'Rm. 9, 9 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-09-02', 0, 0, 'heung7', '2001-02-10', 'chunheu', '2022-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS464378340905', '石井美緒', 1, '+86 148-9593-6873', 4, '851656831348472490', 'Room 29, 218 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1990-02-04', 0, 0, 'ismio8', '2012-10-24', 'ishii07', '2008-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS456408793401', '森拓哉', 0, '+44 7512 320190', 0, '392788894033387293', 'Unit 18, Oxford Eco Centre, 919 Maddox Street, London, W1S 1PU, United Kingdom', '1998-04-21', 0, 0, 'takuya12', '2000-12-25', 'mtakuya9', '2003-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS526851337264', 'Victoria Richardson', 0, '+81 52-435-0494', 4, '206401448062016931', '1F, 17 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1994-07-04', 0, 0, 'richardsonv6', '2008-06-16', 'victoric313', '2018-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS812817655027', '鐘學友', 1, '+81 70-4805-4490', 0, '020734858122043618', '5F, 2-1-1 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1996-05-20', 0, 0, 'chunghokyau', '2008-04-26', 'hokyauchun', '2010-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS662073413089', 'Jack Reyes', 1, '+1 212-483-3425', 4, '333959972541507506', '122 Wooster Street Suite 12, New York, NY 10012, United States', '1995-04-21', 0, 0, 'reyesj', '2007-04-04', 'jr817', '2019-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS588071849212', '陆睿', 1, '+81 90-7296-9119', 1, '649815644114827410', '25F, 1 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-03-30', 0, 0, 'rui803', '2008-05-29', 'rulu', '2013-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS853748564414', '雷云熙', 1, '+1 212-861-5744', 1, '806485592302342474', '732 Bank Street Apt 40, New York, NY 10014, United States', '1985-05-22', 0, 0, 'yunxilei', '2008-07-13', 'leiyunxi', '2013-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS763810301683', '薛頴思', 0, '+81 70-5739-1887', 0, '474216493808594494', '日本おおさかし東住吉区東田辺三丁目27番5号41階', '1986-06-01', 0, 0, 'wssi', '2006-01-03', 'wingsze89', '2003-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS653328081949', 'Jennifer Adams', 1, '+81 52-611-2281', 1, '768488350340646327', '日本なごやし北区楠味鋺三丁目80番3号6階', '1997-03-28', 0, 0, 'adamsj4', '2005-07-06', 'adams803', '2011-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS998663885273', '伍發', 1, '+86 174-1340-6049', 4, '674310175043590013', 'Room 26, CR Building, 356 Sanlitun Road, Chaoyang District, Beijing, China', '1997-04-18', 0, 0, 'fatng8', '2008-08-10', 'fng1', '2007-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS990920859094', '邵國明', 0, '+81 66-643-0068', 1, '934309798103643916', 'Rm. 31, 2-1-14 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1992-11-24', 0, 0, 'siu1975', '2002-01-16', 'kwokmings', '2004-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS711012092686', 'Amy Graham', 0, '+81 70-4479-4642', 1, '961656655467069437', 'Rm. 19, 3-15-15 Ginza, Chuo-ku, Tokyo, Japan', '1992-08-29', 0, 0, 'graham2', '2013-12-17', 'graam5', '2012-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS722941115752', '井上光', 0, '+44 7415 378556', 1, '529747534262646856', 'Unit 32, Oxford Eco Centre, 100 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1992-10-28', 0, 0, 'ihikaru56', '2012-04-06', 'hikinoue2012', '2007-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS222063604580', 'Anita Harris', 1, '+86 755-0186-9975', 1, '222642618286270704', '中国深圳罗湖区蔡屋围深南东路759号华润大厦22室', '1996-06-03', 0, 0, 'ha8', '2006-12-13', 'aharri926', '2007-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS233655169442', 'Ricky Hamilton', 1, '+81 70-1396-5620', 4, '409455607742972726', '44F, 5-2-12 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1992-08-23', 0, 0, 'rickham', '2018-07-27', 'hamilricky303', '2019-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS061940891091', 'Frederick Garza', 0, '+44 (161) 591 3051', 2, '802094623541470757', 'Unit 39, Oxford Eco Centre, 728 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1985-10-20', 0, 0, 'gfrede', '2003-11-02', 'garza5', '2000-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS458507922335', '蔣麗欣', 0, '+86 190-9836-7126', 4, '218747267867235111', 'No.10 building, 72 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1991-10-25', 0, 0, 'claiyan3', '2001-04-16', 'laiyanc', '2015-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS860417913641', '阮惠敏', 0, '+1 330-316-0054', 3, '685331226461345712', '362 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1987-08-23', 0, 0, 'yuen1013', '2018-01-18', 'yuen42', '2006-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS492009161527', '熊云熙', 0, '+81 70-3356-4702', 0, '637287593057385446', 'Rm. 50, 9 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1991-08-07', 0, 0, 'xyunxi', '2020-11-19', 'xiongyun56', '2006-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS561519360179', 'Joanne Jones', 1, '+81 11-481-6207', 0, '886435687921344005', '49F, 13-3-14 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1993-04-14', 0, 0, 'joannejon', '2002-08-01', 'jojones929', '2014-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS331241294795', '崔晓明', 1, '+81 66-539-1083', 3, '830727051746724683', '日本おおさかし平野区加美東四丁目9番1号32階', '1998-09-04', 0, 0, 'cui1105', '2019-03-30', 'cuix', '2007-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS664888975201', 'Shawn Stone', 0, '+86 21-972-8105', 1, '607947905100821817', '中国上海市徐汇区虹桥路793号18号楼', '1995-12-04', 0, 0, 'stone8', '2000-07-02', 'stone9', '2014-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS182831839410', '渡辺七海', 0, '+1 212-985-8665', 3, '332801539983852926', '342 West Houston Street 3rd Floor, New York, NY 10014, United States', '1987-05-28', 0, 0, 'nasato703', '2013-12-17', 'nanamsato', '2006-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS321267009950', '梁國榮', 0, '+81 52-182-2107', 0, '686663316158999482', '日本なごやし瑞穂区河岸町四丁目20番4号24階', '1992-11-12', 0, 0, 'leungkw', '2010-05-18', 'kwokwing720', '2009-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS353897842235', '渡辺美緒', 1, '+44 (1865) 59 3785', 1, '015745802961387305', 'Block 3, 55 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1986-11-04', 0, 0, 'ms7', '2005-11-29', 'sato43', '2020-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS084636114538', '原愛梨', 0, '+86 168-3237-3477', 1, '631574937095766265', 'Room 20, CR Building, 756 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1998-05-16', 0, 0, 'airihara', '2009-08-10', 'hara17', '2015-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS600188264934', '元惠敏', 1, '+86 10-2154-2988', 3, '803960145272011335', '中国北京市西城区西長安街642号31号楼', '1990-10-28', 0, 0, 'yuenwaiman908', '2006-05-24', 'yuenwm', '2019-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS415817149831', '何嘉伦', 0, '+86 21-286-2153', 1, '420698638106353141', 'Room 2, CR Building, 619 Jianxiang Rd, Pudong, Shanghai, China', '1999-01-29', 0, 0, 'jialhe422', '2007-02-28', 'hejialun', '2014-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS964012715059', '龙璐', 1, '+81 11-276-6301', 2, '892642091658210407', '日本札幌厚別区上野幌一条二丁目1番6号49階', '1993-12-31', 0, 0, 'longlu', '2011-04-03', 'lulong8', '2001-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS153828799569', '區家玲', 1, '+81 11-413-6470', 1, '991539717233000173', '日本札幌中央区宮の森四条六丁目1番11号29階', '1986-07-12', 0, 0, 'klau416', '2016-10-07', 'aukaling', '2011-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS626321746264', '後藤詩乃', 1, '+1 718-914-2023', 1, '731087411782684482', '729 Bergen St Apt 37, Brooklyn, NY 11217, United States', '1989-04-19', 0, 0, 'goto1115', '2021-02-25', 'gotoshino322', '2014-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS998769055177', '金秀英', 0, '+86 173-0525-0411', 2, '606061451332739743', '中国深圳罗湖区清水河一路449号17栋', '1992-01-03', 0, 0, 'xiuyingjin8', '2014-05-25', 'jx725', '2019-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS145061212202', '毛家玲', 1, '+44 5593 977044', 2, '123619240644095420', 'Unit 40, Oxford Eco Centre, 341 Hanover St, Liverpool, L1 4AF, United Kingdom', '1998-12-07', 0, 0, 'klm1944', '2005-11-30', 'klm', '2004-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS897083830836', '劉家強', 0, '+86 133-9031-3493', 1, '844921446106255830', 'Room 14, CR Building, 677 028 County Rd, Yanqing District, Beijing, China', '1994-11-10', 0, 0, 'kklau12', '2004-08-08', 'kkla1958', '2011-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS022423457256', 'William Robertson', 1, '+1 718-930-7473', 3, '490450797402626550', '425 Flatbush Ave Suite 15, Brooklyn, NY 11225, United States', '1989-04-30', 0, 0, 'william505', '2005-04-17', 'robertsonw', '2007-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS060560716898', '萬梓軒', 0, '+86 130-8143-6972', 0, '404414058990904925', '中国东莞珊瑚路833号18号楼', '1988-04-17', 0, 0, 'meth1', '2000-11-14', 'thmeng912', '2015-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS222331417919', '韩岚', 0, '+44 5966 001391', 2, '981805404399708411', 'No.17 Main building, 250 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1985-11-16', 0, 0, 'lanhan', '2007-11-10', 'lanh1029', '2002-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS243724579857', '上田葉月', 0, '+1 330-825-3031', 0, '657821474155892689', '129 Collier Road 3rd Floor, Akron, OH 44320, United States', '1988-01-12', 0, 0, 'ueda1024', '2011-11-10', 'uedahazuki', '2010-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS127992454908', '石田七海', 1, '+44 7524 066919', 1, '048278758634344133', 'No.10 Main building, 818 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1997-10-31', 0, 0, 'nanami1023', '2014-01-18', 'nanami1116', '2008-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS116022282143', '任青雲', 0, '+81 66-940-2493', 1, '275248600843358866', '日本おおさかし東住吉区東田辺三丁目27番17号32階', '1992-01-02', 0, 0, 'yamcw', '2021-06-03', 'yamcw', '2008-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS814803843248', '傅力申', 1, '+1 312-517-9702', 1, '267021791553592084', '308 North Michigan Ave Suite 40, Chicago, IL 60611, United States', '1996-08-04', 0, 0, 'fuls', '2005-02-04', 'liksun829', '2008-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS988493486425', 'Anita Dixon', 1, '+81 70-7769-5593', 2, '395219393354975259', '23-kai, 1-7-19 Saidaiji Akodacho, Nara, Japan', '1990-02-21', 0, 0, 'anitd', '2016-11-29', 'adixon', '2006-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS887664840937', '小野詩乃', 1, '+81 90-4097-7500', 4, '113414112817983122', 'Rm. 36, 5-2-19 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-07-22', 0, 0, 'oshino', '2020-06-27', 'onoshino', '2001-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS014477398059', '段岚', 1, '+81 70-5038-6418', 2, '227863445085383042', '日本おおさかし西成区天神ノ森二丁目1番8号1階', '1996-10-08', 0, 0, 'duanlan00', '2004-05-10', 'duanla7', '2000-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS939949994560', '顾子韬', 0, '+1 330-801-7955', 0, '832225690470607000', '79 Collier Road Suite 34, Akron, OH 44320, United States', '1990-12-21', 0, 0, 'zigu', '2010-08-28', 'zitaog6', '2016-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS610549025699', '麥學友', 1, '+44 (1865) 19 2458', 0, '367333268185552296', 'Block 50, 80 Park End St, Oxford, OX1 1JD, United Kingdom', '1989-05-10', 0, 0, 'makhokyau819', '2000-08-16', 'mak228', '2015-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS261283762150', '山口海斗', 0, '+81 52-755-1030', 0, '928175074209891651', '日本なごやし北区清水三丁目19番16号2号室', '1988-10-14', 0, 0, 'ky5', '2007-03-27', 'yamagk', '2012-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS780437920556', '朱致远', 1, '+86 151-3064-1205', 4, '876661096654925287', '中国东莞东泰五街512号34栋', '1990-07-31', 0, 0, 'zzhiy', '2008-03-09', 'zhiyuan1117', '2002-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS672500861480', 'Alexander Hayes', 1, '+81 80-8095-8549', 1, '735416406056879640', '日本札幌厚別区上野幌一条二丁目1番6号40階', '1997-02-21', 0, 0, 'alexanderhay1026', '2011-09-02', 'alexanderh7', '2020-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS726115445177', '竹内結翔', 1, '+81 70-1976-0601', 3, '107369745957240210', '18-kai, 1-7-10 Omido, Higashiosaka, Osaka, Japan', '1986-07-04', 0, 0, 'yuito95', '2002-03-31', 'yuittakeuchi1971', '2019-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS702059156012', '杨震南', 1, '+86 28-9493-4042', 2, '894590497700850487', '中国成都市锦江区红星路三段948号1号楼', '1998-02-14', 0, 0, 'zhennany2', '2000-09-20', 'zya', '2004-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS384979161762', 'Marcus Cruz', 1, '+86 10-6880-4946', 0, '625005317798065235', '中国北京市东城区东单王府井东街520号29楼', '1997-05-22', 0, 0, 'crumarcus', '2002-08-12', 'marcr', '2018-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS048527168243', '陆璐', 1, '+86 769-428-4485', 1, '725094566861871820', '46F, 885 Dongtai 5th St, Dongguan, China', '1986-06-29', 0, 0, 'lulu622', '2021-12-19', 'lulu', '2003-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS119711623703', '莫杰宏', 1, '+44 (1865) 93 0504', 2, '766319925791462382', 'Block 48, 269 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1998-09-23', 0, 0, 'moj', '2017-06-26', 'jmo3', '2000-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS359271015165', '蔡慧敏', 0, '+86 153-8733-7852', 1, '627631604847689730', '中国深圳龙岗区学园一巷720号华润大厦48室', '1988-06-13', 0, 0, 'wmchoi', '2004-09-27', 'cwm', '2013-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS776727198304', '甘力申', 0, '+81 80-4545-5511', 0, '473185856961865212', '日本札幌中央区宮の森四条六丁目1番17号37号室', '1986-07-18', 0, 0, 'kliksun711', '2012-06-25', 'kam1961', '2001-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS602004634590', '邵頴璇', 0, '+81 70-0955-0125', 2, '181902026871247539', '日本おおさかし東住吉区東田辺三丁目27番8号17号室', '1990-07-13', 0, 0, 'siu928', '2018-10-05', 'swingsuen525', '2022-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS594727764435', '森田大和', 0, '+81 80-2996-3486', 0, '436136308717409953', '日本なごやし北区楠味鋺三丁目80番5号42階', '1995-02-06', 0, 0, 'yamorita79', '2000-07-02', 'ymorita', '2001-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS602028791157', 'Diane Smith', 0, '+44 7983 451116', 2, '053525319896488223', 'Flat 6, 935 Hanover Street, London, W1S 1YD, United Kingdom', '1985-01-21', 0, 0, 'smithd04', '2003-05-05', 'smd8', '2020-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS299255943285', '孟秀英', 0, '+86 21-6076-2245', 1, '739813500587011723', '中国上海市闵行区宾川路738号35号楼', '1996-11-19', 0, 0, 'meng705', '2014-10-31', 'mexiuying72', '2005-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS566143393878', '佐野結翔', 1, '+86 168-4084-8196', 2, '542077109561400705', '中国深圳福田区景田东一街433号19室', '1998-05-19', 0, 0, 'yuitosano', '2014-07-08', 'syuito626', '2001-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS573508594611', 'Samuel Johnson', 0, '+86 190-0858-2700', 3, '167681620388657042', '中国东莞珊瑚路288号华润大厦43室', '1998-05-08', 0, 0, 'samuel8', '2017-08-05', 'samueljohnson', '2009-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS457763200850', 'Bryan Green', 0, '+81 70-1563-4736', 0, '529290108100518595', '39F, 13-3-4 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1989-02-20', 0, 0, 'brgreen', '2007-08-26', 'bgr', '2012-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS742495917373', 'Deborah Dixon', 0, '+81 52-624-6312', 3, '455941758811610842', 'Rm. 14, 19 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1999-01-31', 0, 0, 'deborahd94', '2013-10-29', 'dixond', '2000-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS430866385534', '蘇力申', 0, '+44 7080 611676', 1, '148056382578373127', 'Unit 29, Oxford Eco Centre, 351 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1989-03-17', 0, 0, 'liksso10', '2019-05-03', 'soliksun', '2018-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS230342264685', '羅惠妹', 1, '+86 10-9831-3106', 2, '139082746843052330', '中国北京市东城区东单王府井东街297号华润大厦15室', '1989-11-05', 0, 0, 'huimeilo', '2015-12-12', 'lohuimei', '2004-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS563189204706', '李發', 0, '+86 139-3735-3214', 2, '155313618918446114', 'No.40 building, 287 Dong Zhi Men, Dongcheng District, Beijing, China', '1991-04-01', 0, 0, 'lfa9', '2013-08-17', 'lee1958', '2008-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS573781288858', '黎思妤', 0, '+81 70-9911-6703', 2, '683883523022562012', '日本ならし大和郡山市本庄町一丁目1番12号23階', '1990-03-03', 0, 0, 'szeyu98', '2006-07-12', 'laiszeyu', '2014-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS701538779659', '曾頴璇', 1, '+1 718-195-6611', 1, '224149887680081441', '253 1st Ave Apt 27, Brooklyn, NY 11220, United States', '1990-12-05', 0, 0, 'wingsuen405', '2019-05-28', 'wst', '2020-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS736329656992', '傅潤發', 1, '+44 (161) 779 7891', 2, '093185644507308288', 'Flat 30, 787 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-11-11', 0, 0, 'yunfu804', '2005-06-15', 'yunffu5', '2015-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS434180857088', '林翼', 0, '+81 80-8569-8560', 2, '506300326782236494', '31-kai, 5-2-8 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-03-09', 0, 0, 'tsubasa1018', '2011-06-28', 'tsubasa729', '2012-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS629475692879', '彭德華', 0, '+86 755-499-9568', 0, '891870782889675788', 'Room 15, 506 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1988-12-14', 0, 0, 'takwahpang2008', '2016-09-12', 'pangtakwah106', '2001-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS687832158104', '韓嘉欣', 0, '+86 755-173-6816', 4, '201439938959811821', '中国深圳罗湖区田贝一路109号17室', '1986-03-10', 0, 0, 'haky', '2011-11-07', 'hanky', '2013-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS583514744296', 'Alfred Stephens', 0, '+81 11-004-2751', 1, '956371261405473594', 'Rm. 43, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-11-04', 0, 0, 'stephalfred', '2004-04-30', 'stephens9', '2015-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS610463387978', 'Anne Wright', 0, '+86 28-899-0823', 3, '661033756677183798', '中国成都市成华区玉双路6号559号华润大厦49室', '1996-06-17', 0, 0, 'annewright', '2009-06-20', 'wrighanne', '2012-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS618825846432', '工藤優奈', 0, '+81 66-328-0574', 1, '293123428769319954', '41-kai, 3-27-9 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1991-08-17', 0, 0, 'kudo1213', '2007-01-04', 'yunk8', '2001-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS774277885823', '市川葵', 0, '+86 145-6942-2180', 1, '324209149226998275', '中国中山紫马岭商圈中山五路87号2栋', '1997-04-19', 0, 0, 'aichikawa', '2014-07-06', 'ichikawaaoi', '2008-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS766017383727', '前田拓哉', 0, '+1 614-328-3419', 0, '237989039976786899', '825 East Cooke Road Apartment 29, Columbus, GA 43214, United States', '1993-09-07', 0, 0, 'maedatakuya', '2001-11-14', 'takmaeda', '2013-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS574040797976', '藤田光', 1, '+86 769-465-7531', 0, '771427942223582897', '中国东莞环区南街二巷721号49楼', '1994-11-29', 0, 0, 'fhikaru8', '2002-09-07', 'fujita1', '2021-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS087138762865', '宮崎光', 0, '+44 5453 910765', 1, '800115873594133912', 'Block 16, 193 Redfern St, Liverpool, L20 8JB, United Kingdom', '1991-03-13', 0, 0, 'hikarumiyazaki', '2017-05-29', 'mhi405', '2004-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS361267168871', '文朝偉', 1, '+81 90-0397-5431', 3, '529283699870337778', '40F, 2-1-1 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1990-12-18', 0, 0, 'macw2', '2020-01-09', 'manchiu', '2005-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS859397127907', 'Michael Kennedy', 0, '+86 185-0595-1168', 1, '870144699047700274', 'Room 46, 472 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1991-01-12', 0, 0, 'michael2', '2002-06-05', 'kenmich', '2009-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS999138414120', '清水愛梨', 1, '+44 (151) 225 2648', 2, '391691896068674378', 'No.40 Main building, 828 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1985-08-04', 0, 0, 'shimair87', '2007-10-29', 'airi6', '2016-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS145654660030', 'Ricky Foster', 1, '+81 3-5562-2431', 0, '976160971959765370', '49F, 1-5-8, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1987-02-01', 0, 0, 'fricky', '2014-04-03', 'rfos10', '2018-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS378402157137', '唐安琪', 1, '+86 151-1825-6279', 0, '179942587883308083', '中国深圳福田区深南大道457号2栋', '1986-06-16', 0, 0, 'anqtan', '2002-05-10', 'tanganqi', '2018-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS538547153715', 'Allen Palmer', 1, '+86 195-6616-6932', 1, '390122537044886301', '中国成都市锦江区人民南路四段423号华润大厦17室', '1988-07-16', 0, 0, 'allpalm', '2013-08-29', 'allenpalmer', '2009-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS979331040941', '袁詩涵', 0, '+86 168-1661-4802', 0, '213669552385831838', 'Room 13, CR Building, 293 Dongtai 5th St, Dongguan, China', '1985-04-17', 0, 0, 'yuanshihan', '2005-05-13', 'yuans1957', '2013-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS114979382833', '丁云熙', 1, '+44 (116) 935 2211', 4, '012029162596369773', 'Unit 15, Oxford Eco Centre, 720 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1992-01-13', 0, 0, 'ding5', '2003-04-03', 'yunxi6', '2013-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS800682803759', '韦璐', 0, '+81 80-7643-5939', 0, '207308944798990485', 'Rm. 20, 2-3-6 Yoyogi, Shibuya-ku, Tokyo, Japan', '1996-02-29', 0, 0, 'lu4', '2010-10-11', 'weilu', '2021-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS788414050589', '严睿', 1, '+1 838-481-9475', 1, '496131503335132620', '684 Central Avenue Apt 38, Albany, NY 12206, United States', '1993-07-23', 0, 0, 'yar5', '2013-05-12', 'yanrui', '2020-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS396124749074', '周裕玲', 0, '+81 3-4016-9791', 1, '702399274357715225', '26-kai, 1-5-13, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-12-06', 0, 0, 'chyuling', '2012-06-10', 'ylchow', '2009-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS739952795849', '三浦翼', 1, '+86 755-0809-5537', 3, '644214741654498296', 'No.21 building, 620 Jingtian East 1st St, Futian District, Shenzhen, China', '1995-05-17', 0, 0, 'miuratsubasa1985', '2002-06-27', 'miurat', '2006-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS001535098782', '和田瑛太', 1, '+86 190-6997-9677', 4, '872216912749373425', '中国北京市房山区岳琉路403号华润大厦28室', '1989-07-18', 0, 0, 'wada1980', '2011-01-14', 'eiwada', '2000-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS683384348008', 'Steven Rivera', 1, '+1 718-013-7009', 4, '213180240673186499', '314 1st Ave Apartment 2, Brooklyn, NY 11220, United States', '1995-04-20', 0, 0, 'steriver6', '2020-07-11', 'srive', '2013-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS759773454535', '黄云熙', 0, '+81 70-5679-6587', 2, '245311315849759974', '25F, 3-15-11 Ginza, Chuo-ku, Tokyo, Japan', '1993-06-14', 0, 0, 'yuhuang', '2005-01-08', 'huangyunxi7', '2004-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS397025796366', '邱璐', 0, '+81 52-557-2016', 3, '808137011444671342', '4-kai, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1999-01-26', 0, 0, 'lu6', '2018-10-15', 'qiulu714', '2000-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS777652096100', 'Mary Hawkins', 0, '+81 90-8240-6521', 0, '729938726838222680', '日本おおさかし近江堂一丁目7番7号32号室', '1991-01-19', 0, 0, 'mary2', '2020-03-02', 'mhaw', '2020-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS894087431779', '太田健太', 1, '+1 212-108-4086', 2, '856577367068747852', '280 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1986-01-15', 0, 0, 'kentaota', '2005-01-24', 'ota7', '2017-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS626518629410', '高詠詩', 0, '+44 5135 806795', 3, '899355014678491017', 'No.39 Main building, 234 Regent Street, London, W1B 2LX, United Kingdom', '1994-09-05', 0, 0, 'wskao8', '2017-02-18', 'wingsze1', '2003-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS320133151842', 'Emily Moreno', 1, '+81 80-8511-2974', 0, '489019317531899808', '日本おおさかし東住吉区東田辺三丁目27番9号47階', '1998-04-24', 0, 0, 'em306', '2022-02-11', 'emo', '2001-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS797285181115', '鄺家文', 0, '+81 80-3867-8440', 2, '642103413901052910', '日本札幌厚別区上野幌一条二丁目1番20号19階', '1992-05-06', 0, 0, 'kaman8', '2012-05-18', 'kmkwong1013', '2004-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS217775477146', '上野百花', 0, '+81 80-2054-5700', 2, '044911212056464598', '日本おおさかし東住吉区東田辺三丁目27番5号42号室', '1988-04-20', 0, 0, 'momoka614', '2006-08-15', 'momueno', '2003-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS742046389106', '山崎樹', 1, '+81 80-3272-0285', 3, '579683127886936175', '28-kai, 3-9-1 Gakuenminami, Nara, Japan', '1987-06-06', 0, 0, 'ityamazaki', '2015-06-25', 'yitsuk', '2001-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS359847312634', '佐野絢斗', 1, '+86 143-6793-1819', 3, '756206896659751031', 'No.3 building, 905 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1986-04-20', 0, 0, 'as3', '2004-10-21', 'ayato4', '2014-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS469928562984', 'Janet Ross', 1, '+86 134-8988-5315', 2, '728661207904355150', '中国上海市闵行区宾川路351号华润大厦16室', '1990-08-25', 0, 0, 'jros', '2018-12-10', 'janetr', '2011-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS593398540063', 'Joanne Rose', 1, '+86 755-160-5540', 0, '684153993438007061', 'Room 19, 536 Jingtian East 1st St, Futian District, Shenzhen, China', '1994-10-31', 0, 0, 'joanne601', '2005-03-01', 'rj8', '2009-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS859363845831', 'Jacob Butler', 1, '+1 718-345-0685', 3, '115315855631676582', '472 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1993-10-29', 0, 0, 'jbu1974', '2008-05-13', 'butjaco', '2011-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS314454884146', '田志遠', 0, '+86 10-0014-7891', 1, '748375854090726277', 'Room 34, CR Building, 177 Dong Zhi Men, Dongcheng District, Beijing, China', '1992-03-03', 0, 0, 'chiyuen1', '2018-11-18', 'cytin', '2008-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS582558294253', 'Allen Grant', 0, '+86 10-2194-9038', 4, '913372346570907322', '中国北京市海淀区清河中街68号429号25号楼', '1997-08-29', 0, 0, 'granallen', '2007-06-13', 'allengra83', '2003-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS361468408141', 'Walter Grant', 0, '+81 52-670-5046', 0, '767792592315635597', 'Rm. 18, 3-19-11 Shimizu, Kita Ward, Nagoya, Japan', '1992-07-27', 0, 0, 'wgra10', '2021-11-19', 'gwal', '2012-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS657791964174', '洪仲賢', 0, '+81 3-1600-5667', 4, '874060371665276329', '日本東京港区東新橋一丁目5番1号2階', '1986-03-31', 0, 0, 'cyhu16', '2008-06-06', 'chungyin809', '2013-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS860569743478', 'Sean Wright', 1, '+81 90-2073-5024', 2, '123849289038162413', 'Rm. 33, 1-7-4 Omido, Higashiosaka, Osaka, Japan', '1992-11-25', 0, 0, 'wrsean', '2004-09-25', 'seanwright516', '2017-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS433545113274', '岡田健太', 1, '+81 80-0415-1971', 3, '693580704361949409', '日本東京品川区東五反田五丁目2番6号31階', '1987-09-09', 0, 0, 'okada1999', '2010-03-16', 'okadaken1998', '2020-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS528890155795', '石井湊', 1, '+44 7915 592789', 1, '206788445716155418', 'Unit 21, Oxford Eco Centre, 927 Mosley St, Manchester, M2 3AQ, United Kingdom', '1986-02-28', 0, 0, 'isminat', '2015-12-28', 'minatoishii20', '2014-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS866677311192', '高木悠人', 0, '+44 5271 564280', 1, '616225605649663095', 'Flat 23, 420 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-03-09', 0, 0, 'takagyuto9', '2017-12-07', 'takagiyuto2020', '2006-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS329460951664', '金子陸', 1, '+86 10-6797-8307', 3, '965320806601569770', 'Room 44, 826 Yueliu Rd, Fangshan District, Beijing, China', '1989-10-08', 0, 0, 'kanekriku01', '2017-10-16', 'rikukaneko402', '2019-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS408423148849', '中川葉月', 1, '+44 5261 147432', 2, '750139478259159447', 'Flat 42, 167 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-12-08', 0, 0, 'nakagawa1960', '2003-05-26', 'hn2000', '2012-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS111611742622', '苏安琪', 1, '+1 718-900-2288', 2, '229598983674697730', '484 Flatbush Ave Apt 3, Brooklyn, NY 11225, United States', '1988-11-27', 0, 0, 'anqi1969', '2001-04-22', 'anqisu50', '2012-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS655574196969', '野村湊', 1, '+86 10-443-1577', 3, '329562893103540221', '中国北京市房山区岳琉路862号5号楼', '1998-12-01', 0, 0, 'mn56', '2017-09-12', 'nminato', '2018-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS709231100610', '何秀文', 0, '+1 614-549-7379', 3, '295349418761732749', '928 Tremont Road Apartment 36, Columbus, GA 43212, United States', '1988-10-05', 0, 0, 'sauman8', '2001-04-12', 'hsauman03', '2003-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS018010026766', 'Clarence Ferguson', 1, '+1 213-106-3256', 3, '894324323923460371', '960 Alameda Street Apt 46, Los Angeles, CA 90002, United States', '1995-03-16', 0, 0, 'fergusonclare10', '2005-01-26', 'claferguson9', '2001-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS128506580343', '房天樂', 0, '+86 192-3929-1876', 3, '134986550437055959', '23F, 517 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1996-06-08', 0, 0, 'fongtinlok123', '2021-01-29', 'tlf417', '2018-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS563209724606', '戚曉彤', 0, '+1 718-978-4432', 1, '731512252621240487', '543 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1992-09-20', 0, 0, 'chichiutung', '2017-10-22', 'chihiutung', '2004-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS123817660458', '唐秀英', 0, '+86 760-337-9300', 0, '368617346593641435', 'Room 15, 77 Lefeng 6th Rd, Zhongshan, China', '1998-04-21', 0, 0, 'tang76', '2010-02-26', 'txiuying', '2002-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS386538850729', '方杰宏', 1, '+81 52-180-7989', 1, '075596202292293576', '3F, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1989-07-29', 0, 0, 'fangj', '2014-04-13', 'jiehong8', '2007-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS598062304643', 'Victoria Kennedy', 0, '+86 175-9894-0444', 1, '539016720859334812', '中国深圳龙岗区布吉镇西环路593号35室', '1989-05-25', 0, 0, 'vkennedy5', '2014-11-07', 'victoriakennedy', '2008-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS661836392870', 'April Dixon', 1, '+81 80-1658-3734', 2, '466742413356321110', '日本なごやし瑞穂区河岸町四丁目20番1号32号室', '1989-08-26', 0, 0, 'dixapril', '2019-07-05', 'dixon10', '2015-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS408616145567', '梁力申', 1, '+86 165-3087-5846', 1, '021361305873047415', '中国上海市黄浦区淮海中路8号38号楼', '1991-10-18', 0, 0, 'liksun00', '2014-05-08', 'liksun9', '2017-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS198337196727', '龚宇宁', 0, '+44 (1223) 68 9522', 3, '129269740992239784', 'Flat 41, 771 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1990-02-23', 0, 0, 'gonyu', '2019-09-11', 'yuning3', '2018-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS773921662491', '邵頴璇', 0, '+1 838-761-0148', 0, '857141428957630065', '846 Broadway Apartment 22, Albany, NY 12207, United States', '1986-05-05', 0, 0, 'sws', '2017-04-21', 'wingsuen704', '2019-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS918613575764', '高明', 0, '+44 7635 659724', 3, '003216944118511294', 'Unit 30, Oxford Eco Centre, 234 New Street, Birmingham, B2 4DB, United Kingdom', '1986-04-17', 0, 0, 'mingk', '2020-01-14', 'kao4', '2012-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS623752378508', '渡部架純', 1, '+86 20-874-5530', 2, '525141500665198227', 'Room 43, 442 Tianhe Road, Tianhe District, Guangzhou, China', '1990-03-22', 0, 0, 'kasumiwa516', '2021-12-07', 'kwatanabe1995', '2008-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS744498131903', '邹子异', 1, '+81 3-5326-7684', 1, '904680678287096357', '12-kai, 2-3-1 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-07-02', 0, 0, 'ziyzou1130', '2005-05-05', 'zoziyi', '2020-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS244026300629', '青木湊', 0, '+81 66-869-6622', 3, '085346670996357479', '日本おおさかし平野区加美東四丁目9番8号42階', '1996-10-20', 0, 0, 'aokimin58', '2000-12-06', 'aminato', '2007-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS966700461402', '程杰宏', 0, '+1 718-316-3369', 1, '942552413509130237', '814 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1991-12-27', 0, 0, 'jic2', '2005-04-08', 'jiehong6', '2002-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS747047949085', '高田蓮', 0, '+86 20-5355-8020', 3, '822997954694208666', 'No.8 building, 860 Jiangnan West Road, Haizhu District, Guangzhou, China', '1992-08-05', 0, 0, 'tre', '2002-05-28', 'rtakada', '2014-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS726030323268', 'Shirley Allen', 0, '+81 80-9923-3765', 2, '833489757760160726', 'Rm. 18, 5-4-2 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-07-23', 0, 0, 'shirley9', '2014-09-27', 'shirley6', '2018-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS994170886208', 'Jamie Garza', 0, '+44 5569 774274', 3, '210116093960046621', 'Unit 9, Oxford Eco Centre, 430 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1995-04-27', 0, 0, 'gajam', '2002-08-27', 'gj1', '2008-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS347985309102', '斎藤一輝', 0, '+81 52-108-7294', 3, '260646071298012114', '日本なごやし熱田区千年二丁目5番4号50階', '1986-03-28', 0, 0, 'saito8', '2011-01-25', 'isaito', '2013-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS757334489741', '河野涼太', 0, '+86 199-7898-6078', 3, '036714341569612758', '8F, 917 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1996-06-26', 0, 0, 'ryota57', '2010-08-06', 'kono904', '2010-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS358052719897', '内田悠人', 0, '+1 838-233-2695', 3, '041652866329342191', '783 Lark Street Apartment 20, Albany, NY 12210, United States', '1985-10-01', 0, 0, 'uchidayu', '2010-11-28', 'yutouchid601', '2013-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS271061167811', '廖岚', 0, '+1 213-875-4133', 1, '263727453396617356', '464 S Broadway Apartment 37, Los Angeles, CA 90015, United States', '1993-10-29', 0, 0, 'liao8', '2021-07-14', 'liaolan', '2004-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS712230319556', 'Eddie Black', 0, '+86 769-078-2120', 1, '189023940488848743', '中国东莞坑美十五巷572号华润大厦37室', '1993-01-28', 0, 0, 'edblack', '2009-03-27', 'blackeddie8', '2001-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS973325052973', '松井美月', 0, '+1 718-131-5542', 2, '048314532104457185', '61 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1990-09-08', 0, 0, 'mm69', '2001-07-14', 'mitsukimatsui', '2013-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS290121394348', '韦云熙', 1, '+86 10-691-0357', 1, '852898614419144820', '中国北京市房山区岳琉路754号10栋', '1998-10-29', 0, 0, 'weiyunxi', '2003-12-19', 'weiyunx', '2001-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS259302301329', 'Julia Jordan', 1, '+81 70-8495-3326', 2, '464617567958189946', 'Rm. 32, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1987-08-06', 0, 0, 'julia1009', '2021-05-17', 'joju', '2011-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS163424605967', '宣嘉欣', 0, '+86 174-1648-4749', 3, '865816338499709127', '中国深圳罗湖区蔡屋围深南东路589号49室', '1995-01-03', 0, 0, 'hsukaryan', '2012-02-25', 'hsuanky05', '2007-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS335798939262', '佐々木花', 1, '+86 187-2474-1244', 3, '438118251603790897', 'No.9 building, 950 Tianhe Road, Tianhe District, Guangzhou, China', '1985-02-14', 0, 0, 'sasakihana', '2000-01-16', 'hans', '2005-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS204424793600', '山下陽太', 1, '+86 10-2934-6606', 0, '883272240568822870', '中国北京市海淀区清河中街68号432号20室', '1988-02-22', 0, 0, 'yamashitayot1119', '2002-10-02', 'yamashita1940', '2003-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS666267564902', 'Jack Flores', 0, '+44 7069 791486', 3, '630718662292958942', 'Unit 39, Oxford Eco Centre, 869 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1986-08-26', 0, 0, 'jackflores212', '2013-05-04', 'floj', '2003-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS080853953061', '黎家玲', 1, '+81 66-928-9895', 2, '789706970401323569', '50F, 4-9-18 Kamihigashi, Hirano Ward, Osaka, Japan', '1994-11-05', 0, 0, 'laikl', '2018-03-04', 'lai1968', '2004-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS710870788863', '黎子异', 1, '+44 5233 207330', 3, '244911136675554867', 'Unit 28, Oxford Eco Centre, 601 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1985-03-16', 0, 0, 'ziyi10', '2002-05-22', 'li4', '2000-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS147939629545', '河野悠人', 1, '+81 52-338-9651', 2, '913842439743927680', '日本なごやし北区清水三丁目19番4号3階', '1992-04-09', 0, 0, 'konoy', '2012-10-12', 'yk8', '2011-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS638579319750', '杉山舞', 1, '+44 5465 160805', 1, '551619718731978193', 'Block 6, 924 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1986-08-23', 0, 0, 'masu03', '2013-07-17', 'masugiyama818', '2003-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS596430626803', '中野玲奈', 0, '+81 3-0469-4918', 4, '396014201309841621', '日本東京中央区銀座三丁目12番4号14階', '1989-10-03', 0, 0, 'nakanrena1968', '2010-02-05', 'renan', '2010-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS473666698857', 'Frank Edwards', 1, '+86 10-7267-0016', 1, '350197355645218210', '28F, 794 Sanlitun Road, Chaoyang District, Beijing, China', '1989-06-22', 0, 0, 'edwards1964', '2009-10-16', 'edwarf520', '2021-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS715943898147', '張世榮', 1, '+81 70-7312-1496', 3, '444233930016818050', '日本おおさかし東住吉区東田辺三丁目27番4号41階', '1987-09-09', 0, 0, 'chesw', '2005-11-28', 'chsw1003', '2001-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS268942997054', 'Judith Jackson', 0, '+81 3-8559-5035', 3, '234263887386855885', '3F, 3-15-12 Ginza, Chuo-ku, Tokyo, Japan', '1988-06-22', 0, 0, 'judithjackson', '2013-08-16', 'judij', '2005-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS253679974127', '酒井桜', 0, '+86 134-5231-4366', 4, '369940818870623120', 'No.46 building, 478 Shanhu Rd, Dongguan, China', '1993-12-06', 0, 0, 'sakai528', '2009-06-13', 'sakaisakura3', '2020-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS808750820194', '太田詩乃', 0, '+1 212-241-3520', 1, '598922683246203615', '914 Bank Street Apt 28, New York, NY 10014, United States', '1997-02-03', 0, 0, 'otshino8', '2006-09-29', 'shinoot', '2019-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS804915132260', '藤原舞', 1, '+86 769-980-9087', 2, '981611023629320742', '中国东莞东泰五街236号2栋', '1996-06-19', 0, 0, 'maf81', '2000-11-17', 'mai05', '2005-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS882362312448', '吳家文', 1, '+86 755-7447-9891', 2, '893126529603238208', 'No.24 building, 45 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1986-04-25', 0, 0, 'nkaman', '2013-10-11', 'ngkaman', '2008-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS541434925548', '朱云熙', 1, '+86 20-6243-5041', 2, '401387039750094807', 'No.47 building, 722 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1985-03-11', 0, 0, 'zhyunxi2', '2020-02-02', 'yunxizhu', '2007-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS480533306732', 'Alice Castillo', 0, '+81 11-772-5565', 1, '546444060094420958', '日本札幌豊平区豊平三条十三丁目3番5号27号室', '1997-10-03', 0, 0, 'castalice', '2007-04-08', 'castialice', '2010-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS358657933353', '上田美月', 0, '+86 172-8875-8649', 2, '612311648045082209', '中国深圳罗湖区田贝一路157号26楼', '1997-11-27', 0, 0, 'mitsukiueda2', '2004-05-25', 'mueda', '2019-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS604029572126', '苗慧嫻', 0, '+1 213-288-4008', 4, '554287145813297572', '314 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1998-11-24', 0, 0, 'mwaihan', '2013-08-05', 'whmiu', '2000-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS695727323501', '田家玲', 0, '+81 90-0755-1890', 3, '919703721346218794', '44-kai, 6-1-14, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1993-07-24', 0, 0, 'tinkaling', '2007-12-07', 'kalingtin', '2021-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS352698959481', '苑梓晴', 0, '+1 213-321-6242', 3, '602429206629013725', '254 Wall Street Apartment 7, Los Angeles, CA 90003, United States', '1985-07-16', 0, 0, 'tcyuen', '2021-01-30', 'ytszching', '2000-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS060213662714', '伊藤拓哉', 0, '+81 80-0516-1308', 3, '466853689409243726', '日本なごやし守山区瀬古東二丁目171番13号39階', '1998-02-20', 0, 0, 'takuyai1201', '2004-06-20', 'itot', '2012-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS569995749310', '武田湊', 0, '+81 70-0852-1191', 2, '564106564784244155', '19-kai, 2-3-4 Yoyogi, Shibuya-ku, Tokyo, Japan', '1986-11-03', 0, 0, 'takedmin', '2004-12-28', 'minatot', '2016-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS409925397838', '毛嘉欣', 1, '+81 90-3599-2003', 2, '553283131411453464', '日本ならし大和郡山市本庄町一丁目1番1号43号室', '1998-06-08', 0, 0, 'kymo', '2010-04-10', 'mokaryan7', '2005-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS264457248482', '邱惠敏', 0, '+1 330-834-1147', 3, '700448951949751910', '692 Ridgewood Road Suite 9, Akron, OH 44321, United States', '1992-11-08', 0, 0, 'yau72', '2016-08-25', 'yau1958', '2011-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS708316264910', 'Debra Dunn', 0, '+81 11-009-4052', 3, '322512553124742174', '23F, 5-19-5 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1990-02-26', 0, 0, 'debradunn', '2008-02-25', 'debradun7', '2018-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS440355201968', '周致远', 1, '+81 66-940-8648', 3, '962360276672758008', '1F, 4-9-12 Kamihigashi, Hirano Ward, Osaka, Japan', '1987-07-12', 0, 0, 'zhiyuan1209', '2013-12-25', 'zz74', '2009-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS683912545120', 'Jennifer Allen', 1, '+1 330-769-4619', 2, '124241935329049884', '632 Riverview Road Apartment 40, Akron, OH 44313, United States', '1997-11-07', 0, 0, 'allenjennifer3', '2020-10-17', 'ajennifer', '2002-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS810984491656', '曾岚', 1, '+86 163-2805-4982', 2, '658397157150850004', '中国深圳罗湖区蔡屋围深南东路925号45号楼', '1995-10-11', 0, 0, 'zlan', '2021-03-15', 'zel', '2001-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS021574940601', '石川花', 1, '+44 7857 302475', 2, '071985174712378667', 'No.46 Main building, 560 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1996-02-16', 0, 0, 'ihana', '2003-09-15', 'hishikawa03', '2015-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS546511237053', '加藤架純', 1, '+81 3-7684-2958', 2, '833611862945593678', '1-kai, 1-5-10, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1992-03-31', 0, 0, 'kato70', '2017-01-02', 'kato20', '2001-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS448435395889', '向璐', 1, '+81 3-4394-4085', 3, '731262139193335807', '日本東京品川区東五反田五丁目2番1号24階', '1999-03-04', 0, 0, 'xlu', '2014-04-15', 'xilu', '2003-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS013332810398', '黃家文', 0, '+86 143-5595-6743', 1, '550446314170972940', 'Room 4, CR Building, 578 Lefeng 6th Rd, Zhongshan, China', '1991-02-27', 0, 0, 'wkama', '2021-08-30', 'wong213', '2021-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS512051786306', '蘇杰倫', 1, '+1 312-751-3172', 2, '018990202937402786', '881 Rush Street Apartment 25, Chicago, IL 60611, United States', '1994-12-22', 0, 0, 'socl57', '2004-10-24', 'cls', '2016-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS518203416267', 'Jacqueline Powell', 1, '+44 (1223) 49 6150', 2, '376477318126894562', 'No.47 Main building, 531 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1993-05-24', 0, 0, 'jacqpowel78', '2003-08-09', 'jacqueline4', '2009-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS329635316026', '藤原陽太', 1, '+81 3-8263-3821', 3, '236722167743028228', '日本東京中央区銀座三丁目12番6号31号室', '1991-11-30', 0, 0, 'fujiwara05', '2018-07-26', 'fujiwyota', '2021-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS957551440053', 'Chris Hayes', 1, '+81 11-233-3182', 3, '636653520360837668', '30-kai, 13-3-10 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1998-08-25', 0, 0, 'hchris', '2002-09-15', 'hayeschris', '2000-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS290772132339', 'Kevin Perez', 0, '+81 70-9596-1360', 1, '275986436841349537', '42-kai, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1998-11-19', 0, 0, 'perez1209', '2014-10-27', 'kevinperez7', '2014-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS175692101990', '向家輝', 0, '+86 10-580-3304', 3, '404427448720148514', 'Room 33, CR Building, 36 East Wangfujing Street, Dongcheng District , Beijing, China', '1998-05-25', 0, 0, 'hkafai', '2021-02-20', 'kafaiheu', '2018-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS087175289686', '丸山蒼士', 1, '+44 5972 066239', 0, '379128044998993653', 'Unit 43, Oxford Eco Centre, 128 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1996-05-20', 0, 0, 'aoshimaruyama', '2009-01-22', 'maruyamaa', '2018-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS549434381422', '廖淑怡', 0, '+86 176-5042-8297', 3, '273233568838888988', 'Room 18, CR Building, 169 Xiaoping E Rd, Baiyun , Guangzhou, China', '1986-11-07', 0, 0, 'sukyeeliao', '2021-02-03', 'lisukyee', '2011-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS006848358378', 'Michelle Coleman', 1, '+86 196-2748-9667', 1, '846335382963444373', 'Room 33, CR Building, 866 Binchuan Rd, Minhang District, Shanghai, China', '1998-08-26', 0, 0, 'colemmichelle4', '2007-08-26', 'com3', '2015-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS091856487574', 'Sara West', 0, '+44 7357 722941', 1, '314496052513678541', 'Block 10, 421 Maddox Street, London, W1S 1PU, United Kingdom', '1987-05-08', 0, 0, 'sawest', '2008-10-08', 'sarw', '2015-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS755455332450', '橋本美緒', 0, '+44 (116) 242 5501', 2, '696608659091874603', 'No.18 Main building, 821 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1985-03-11', 0, 0, 'hasm', '2007-07-30', 'mihashimoto', '2013-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS572888673156', '菅原結翔', 1, '+44 (1865) 14 0812', 4, '963682790385479849', 'Block 14, 193 Park End St, Oxford, OX1 1JD, United Kingdom', '1992-07-22', 0, 0, 'syuito', '2017-09-24', 'sugawara116', '2002-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS118244330531', '譚淑怡', 1, '+86 145-5954-8855', 2, '072986424347690797', '中国成都市成华区双庆路113号23室', '1989-11-03', 0, 0, 'sukyeet', '2019-06-13', 'sukyee925', '2000-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS606292015747', '严岚', 1, '+86 21-9517-5449', 3, '265280688970279287', '中国上海市徐汇区虹桥路710号50号楼', '1990-10-05', 0, 0, 'yalan416', '2007-05-04', 'yanl', '2004-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS725568696294', '村上一輝', 0, '+86 20-738-4580', 2, '088471858301060132', 'No.23 building, 330 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-05-15', 0, 0, 'murakikki', '2008-09-30', 'ikkimu', '2014-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS262261632132', 'Lisa Reynolds', 0, '+81 11-484-3848', 4, '510583010847694151', '日本札幌清田区真栄四条五丁目19番20号11階', '1990-07-28', 0, 0, 'reynl05', '2012-09-24', 'lisar', '2008-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS458981125336', '市川結翔', 0, '+1 718-199-0678', 3, '408815986589256029', '319 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1996-02-03', 0, 0, 'ichikawayuito', '2010-06-29', 'ichy', '2007-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS240757072771', '呂國明', 1, '+86 760-2095-8291', 3, '609022781394125757', '中国中山紫马岭商圈中山五路155号24室', '1986-12-28', 0, 0, 'luikm', '2010-09-12', 'kwokminglui', '2011-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS027899323485', 'Crystal Warren', 0, '+86 760-5466-3271', 2, '346534432655019750', '中国中山京华商圈华夏街313号6室', '1992-11-12', 0, 0, 'crystal10', '2003-07-22', 'crystalw4', '2000-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS335854190742', '王安琪', 1, '+44 5845 151086', 3, '345983524530342974', 'Flat 1, 798 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1986-02-13', 0, 0, 'wanqi', '2008-12-15', 'anqi2002', '2018-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS643326389321', '橋本舞', 0, '+1 330-362-7302', 1, '996108585017923702', '473 Fern Street Suite 36, Akron, OH 44307, United States', '1992-09-19', 0, 0, 'maihashimoto1104', '2000-03-17', 'hasm83', '2004-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS400889910550', '劉富城', 1, '+44 (151) 000 2453', 2, '150518220909725795', 'Block 43, 810 Hanover St, Liverpool, L1 4AF, United Kingdom', '1989-08-21', 0, 0, 'lau96', '2011-05-27', 'lau10', '2018-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS477900480515', 'Gary Morales', 0, '+86 191-3496-1516', 0, '204005813795493830', '中国成都市成华区玉双路6号609号华润大厦48室', '1996-05-19', 0, 0, 'moralesg', '2001-12-02', 'morales49', '2013-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS610719425367', '阿部美月', 0, '+86 186-2709-5616', 2, '959647376433652273', 'No.20 building, 857 Xiaoping E Rd, Baiyun , Guangzhou, China', '1996-11-04', 0, 0, 'abemi', '2008-08-20', 'abemits4', '2021-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS413804855058', '贺致远', 1, '+86 194-3422-5860', 4, '873699266373361274', '中国中山天河区大信商圈大信南路655号华润大厦43室', '1998-12-07', 0, 0, 'hzhiyuan1208', '2020-04-22', 'zhiyuanhe2', '2015-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS412565614155', '高田玲奈', 0, '+81 52-375-1633', 0, '383971220082631111', '日本なごやし熱田区千年二丁目5番12号49階', '1988-09-17', 0, 0, 'rentakada', '2016-03-20', 'takadarena', '2008-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS805144863336', 'Katherine Vasquez', 0, '+86 755-179-5308', 2, '181426305326367498', 'Room 31, 503 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1991-04-12', 0, 0, 'katherine9', '2020-03-22', 'katherine9', '2018-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS716461325199', '叶璐', 0, '+1 838-948-7300', 2, '361962984054366955', '320 Central Avenue Suite 30, Albany, NY 12206, United States', '1989-01-04', 0, 0, 'luye', '2020-08-31', 'ye7', '2006-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS736080358108', '陶安娜', 1, '+81 80-7888-1820', 2, '036424068480115341', '日本札幌白石区菊水三条五丁目2番7号40階', '1995-10-14', 0, 0, 'tao4', '2015-11-17', 'onnata', '2000-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS356379905773', 'Glenn Reyes', 0, '+81 74-864-8186', 1, '546930862556934078', '14F, 8 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-07-09', 0, 0, 'reyesglenn425', '2019-01-27', 'gr11', '2021-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS134430318288', '徐杰宏', 0, '+86 157-7622-4566', 3, '943956209986942953', '28F, 177 68 Qinghe Middle St, Haidian District, Beijing, China', '1985-06-12', 0, 0, 'jxu4', '2004-08-04', 'xj3', '2004-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS065270555725', '洪國賢', 0, '+1 330-082-1211', 2, '394319345337853432', '850 Fern Street Suite 16, Akron, OH 44307, United States', '1997-02-15', 0, 0, 'kwokyin7', '2002-07-13', 'hungky', '2009-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS220848105683', '汪榮發', 1, '+81 52-759-8988', 1, '356804332539098063', '日本なごやし北区清水三丁目19番4号24階', '1995-06-18', 0, 0, 'wongwingfat', '2012-11-05', 'wfwon', '2019-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS620475066379', '韩璐', 0, '+86 20-4081-1618', 2, '209938372502589235', '中国广州市白云区机场路棠苑街五巷934号33楼', '1991-05-08', 0, 0, 'luhan', '2009-06-01', 'lhan', '2016-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS541191066987', '丸山花', 1, '+81 3-9311-2944', 1, '905887127937238153', '45-kai, 1-6-17, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1994-08-09', 0, 0, 'maruyamahana', '2014-02-13', 'maruyama99', '2005-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS414075775221', '小野大地', 0, '+44 (151) 865 0935', 4, '106751527380612372', 'Flat 8, 867 Hanover St, Liverpool, L1 4AF, United Kingdom', '1993-10-09', 0, 0, 'ondaichi', '2015-09-16', 'odaic6', '2014-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS100509527498', '池田涼太', 0, '+86 135-9797-5650', 2, '713992389460459272', '中国上海市浦东新区橄榄路816号28栋', '1986-10-23', 0, 0, 'ryotaikeda80', '2016-05-18', 'iker54', '2004-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS572919260632', '阎震南', 0, '+86 130-8445-4943', 1, '767949474819346813', 'No.40 building, 914 Dong Zhi Men, Dongcheng District, Beijing, China', '1990-01-04', 0, 0, 'zhennany9', '2011-10-11', 'zheya', '2000-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS115327700840', '佐藤和真', 0, '+81 90-6320-7570', 3, '239440942328224142', '25-kai, 2-3-10 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-08-07', 0, 0, 'kazumas5', '2022-02-26', 'kazumasa1961', '2010-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS595566794758', '駱天樂', 0, '+81 80-3908-8260', 1, '062561334251650447', '日本おおさかし平野区加美東四丁目9番14号19階', '1998-02-16', 0, 0, 'ltinl', '2016-03-06', 'loktl123', '2018-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS220046394804', 'Elizabeth Taylor', 0, '+44 5050 429083', 1, '479177208475312404', 'Unit 39, Oxford Eco Centre, 291 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1994-02-27', 0, 0, 'eltaylor', '2002-05-18', 'taylorelizabeth', '2002-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS303115229469', 'Edward Smith', 1, '+81 90-3566-5208', 1, '438094456324611401', '日本おおさかし平野区加美東四丁目9番10号1階', '1992-06-04', 0, 0, 'edwars', '2016-11-14', 'esmith', '2004-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS284716253184', '黎致远', 1, '+44 (121) 108 5269', 0, '865034253545595112', 'Unit 46, Oxford Eco Centre, 2 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1989-05-15', 0, 0, 'zhli', '2016-11-02', 'lizhiyuan7', '2006-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS017314901885', 'Ricky Foster', 0, '+1 213-481-4103', 1, '832507857973285899', '195 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1997-07-26', 0, 0, 'foster9', '2003-08-07', 'foster820', '2003-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS910089881832', 'Ryan Bailey', 0, '+1 838-512-0646', 4, '985592568870640669', '786 Lark Street 3rd Floor, Albany, NY 12210, United States', '1997-09-19', 0, 0, 'baileryan', '2010-12-22', 'baileyry', '2004-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS165433668890', 'Ernest Warren', 0, '+81 80-2727-0463', 0, '487601466012855623', 'Rm. 31, 2-1-15 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1990-12-30', 0, 0, 'waern1997', '2007-11-24', 'warren3', '2020-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS409327065409', 'Kimberly Watson', 1, '+81 80-2746-6646', 2, '855629283951335825', '33F, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1986-08-09', 0, 0, 'kimberlywatso8', '2017-11-25', 'kimberlywatson1', '2012-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS947059948333', '萬頴思', 0, '+86 157-4495-4296', 3, '587775911682978054', 'Room 9, CR Building, 252 Dongtai 5th St, Dongguan, China', '1993-05-29', 0, 0, 'mews', '2004-02-07', 'mwingsze', '2013-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS161930938110', '今井蒼士', 1, '+44 (116) 617 7110', 2, '966642480159452347', 'Flat 2, 16 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1995-07-04', 0, 0, 'imaiaoshi1212', '2011-04-08', 'aoi', '2008-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS714598613682', '河野悠人', 1, '+81 3-5343-4347', 3, '596108927706271899', 'Rm. 32, 1-5-17, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1988-06-01', 0, 0, 'yutk', '2016-08-11', 'konoy', '2007-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS028080010260', 'Jonathan Gardner', 0, '+86 198-7104-8080', 3, '453829029050456964', '中国北京市西城区复兴门内大街384号31号楼', '1995-11-15', 0, 0, 'jonathangar', '2018-08-16', 'jonathangardner', '2005-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS594721569405', '藤原七海', 0, '+44 7762 993009', 2, '953490885904367903', 'Flat 14, 546 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1993-05-02', 0, 0, 'nfuj46', '2017-01-11', 'fujnanami', '2021-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS951082761893', '沈云熙', 1, '+1 838-392-9743', 3, '867504362153939517', '473 Central Avenue Suite 20, Albany, NY 12205, United States', '1996-07-20', 0, 0, 'shenyunx10', '2018-12-07', 'yunxis131', '2007-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS561270482944', 'Janet Wilson', 1, '+44 7296 679834', 2, '346441572397295416', 'Flat 20, 1 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1986-07-25', 0, 0, 'janetwilson', '2020-05-16', 'janetwils', '2012-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS537281340463', '宮本陽菜', 1, '+44 (1223) 39 5687', 0, '332923268030352275', 'Flat 9, 827 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1996-09-06', 0, 0, 'miyahi2', '2015-04-27', 'miyamoto2', '2004-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS906334778631', '中森悠人', 1, '+44 (20) 3082 9625', 2, '889415856462384053', 'No.45 Main building, 424 Regent Street, London, W1B 2LX, United Kingdom', '1994-04-24', 0, 0, 'yutonakamori', '2000-06-21', 'ynakamori', '2019-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS466709732715', '石田聖子', 0, '+86 28-8253-7773', 3, '458772645473948120', 'No.35 building, No. 612, Shuangqing Rd, Chenghua District, Chengdu, China', '1996-12-26', 0, 0, 'seikoish1', '2004-08-27', 'ishidasei516', '2016-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS746287688472', '藤原樹', 1, '+44 (116) 172 4923', 2, '449293847255337456', 'No.6 Main building, 831 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1998-06-28', 0, 0, 'fujiwara4', '2013-10-16', 'fi506', '2005-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS984181255235', 'Jacqueline Stone', 0, '+1 718-985-0443', 0, '794476978647671868', '790 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1987-01-22', 0, 0, 'jacquelinesto42', '2016-04-03', 'jacqust', '2000-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS550717509182', '石川蒼士', 0, '+81 66-312-9411', 3, '865186765467279960', '27F, 2-1-20 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1996-01-11', 0, 0, 'ishikawaaosh', '2003-07-09', 'aoshiishikawa', '2019-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS975648118644', '毛麗欣', 1, '+1 330-918-2958', 3, '901218885804875081', '331 West Market Street Suite 6, Akron, OH 44333, United States', '1994-09-27', 0, 0, 'laiyan5', '2017-09-17', 'moly', '2021-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS369070677208', '湯家強', 0, '+44 (121) 737 5137', 4, '341730964894960638', 'Unit 47, Oxford Eco Centre, 251 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1986-05-01', 0, 0, 'kktong93', '2011-05-22', 'tonka52', '2006-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS001695798858', 'Debbie Butler', 0, '+1 718-428-4567', 2, '664335475464479658', '762 Flatbush Ave Suite 8, Brooklyn, NY 11225, United States', '1989-03-15', 0, 0, 'debbiebutl', '2002-10-01', 'butlerdebbie97', '2016-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS025123711081', '钱云熙', 0, '+86 162-2999-4054', 1, '616784530068224687', 'No.49 building, 269 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1985-03-23', 0, 0, 'qianyunxi1', '2014-09-28', 'qianyunxi', '2004-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS511525968951', 'Danielle Nguyen', 1, '+81 66-992-8390', 3, '051680771527045131', '日本おおさかし東住吉区東田辺三丁目27番13号45号室', '1989-06-20', 0, 0, 'nguyen84', '2001-01-20', 'daniellenguyen', '2011-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS829923876233', 'Peter Spencer', 0, '+86 755-804-1420', 3, '361419481261373915', 'No.20 building, 63 Shennan Ave, Futian District, Shenzhen, China', '1985-09-01', 0, 0, 'speter', '2014-09-03', 'spenpete', '2014-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS191878797951', '宋睿', 0, '+86 183-5397-7055', 3, '656514031621924568', 'No.28 building, 917 Hongqiao Rd., Xu Hui District, Shanghai, China', '1991-12-29', 0, 0, 'sonrui50', '2003-10-01', 'rusong', '2010-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS770412542361', '林大和', 1, '+81 90-6740-4344', 0, '881314779968342178', '日本札幌中央区宮の森四条六丁目1番13号1階', '1989-07-16', 0, 0, 'yamahayashi', '2014-07-05', 'hayashiyamato6', '2010-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS777134131218', 'Louis Rivera', 0, '+86 187-0646-1229', 0, '948366941025500536', '中国北京市延庆区028县道184号11楼', '1988-04-09', 0, 0, 'rl209', '2004-06-12', 'louis319', '2014-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS723209738587', '石井光莉', 1, '+44 7737 286280', 1, '750597875898313714', 'Flat 8, 769 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1991-04-03', 0, 0, 'ishhik', '2002-05-09', 'ishihik99', '2001-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS665443659427', '崔子异', 1, '+81 52-389-9261', 1, '041113189371711707', '日本なごやし熱田区千年二丁目5番7号28階', '1989-06-12', 0, 0, 'ziyicu', '2009-04-25', 'cziyi', '2004-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS100436028493', '戚頴璇', 1, '+81 90-0923-5949', 0, '029651644174884108', 'Rm. 11, 3-9-9 Gakuenminami, Nara, Japan', '1991-05-22', 0, 0, 'chicws', '2015-09-01', 'wingsuenchic', '2016-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS184278915237', 'Willie Daniels', 1, '+44 7993 851184', 3, '412774243742792460', 'Block 19, 928 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1994-10-23', 0, 0, 'willidaniels', '2006-07-22', 'wdaniels', '2006-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS067679287223', 'Jamie King', 0, '+81 70-1926-4438', 2, '647205523056109178', '41F, 13-3-1 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1990-02-11', 0, 0, 'king83', '2011-11-05', 'kingj214', '2006-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS241586669899', 'Susan Dunn', 1, '+1 718-687-3919', 3, '994255723539460163', '774 1st Ave Suite 49, Brooklyn, NY 11220, United States', '1993-08-20', 0, 0, 'susandunn', '2003-09-15', 'dunns1956', '2005-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS303393782196', '容祖兒', 1, '+86 138-2343-1128', 1, '382495866656700637', 'No.23 building, 446 Yueliu Rd, Fangshan District, Beijing, China', '1990-09-03', 0, 0, 'yungch', '2003-07-27', 'ycy', '2005-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS905074947697', '林惠敏', 0, '+86 21-297-0670', 2, '326360590011029512', 'Room 33, CR Building, 439 Hongqiao Rd., Xu Hui District, Shanghai, China', '1996-08-23', 0, 0, 'lamwm', '2005-01-12', 'lawm', '2020-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS103549664739', 'Stephen Perry', 1, '+81 90-8199-0645', 2, '601772189030147468', '日本おおさかし西成区出城一丁目1番15号42号室', '1986-04-24', 0, 0, 'perrste', '2014-01-08', 'perry1958', '2014-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS337584459503', 'Debbie Wright', 0, '+44 (161) 217 2971', 1, '560265469704237491', 'Block 8, 13 Sackville St, Manchester, M1 3BB, United Kingdom', '1996-05-31', 0, 0, 'debwri', '2020-05-20', 'debbie8', '2000-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS391457769358', '杨宇宁', 1, '+81 52-240-0169', 4, '733017119224586357', '日本なごやし守山区瀬古東二丁目171番14号22階', '1986-10-29', 0, 0, 'yyang', '2018-02-27', 'yangyuning', '2008-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS664322274204', '松本優奈', 0, '+1 718-868-1690', 1, '721460185586847572', '936 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1997-11-03', 0, 0, 'yunam', '2020-05-11', 'my713', '2016-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS984239507426', '姜嘉伦', 1, '+81 11-954-8222', 2, '873237258264319793', '4F, 5-2-7 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1998-05-09', 0, 0, 'jialun10', '2008-02-14', 'jiajiang', '2019-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS218901017780', 'Bonnie Meyer', 0, '+86 134-1578-8359', 2, '822776188989043210', '中国成都市成华区二仙桥东三路899号37楼', '1998-10-22', 0, 0, 'meyerb8', '2007-10-13', 'bonnieme', '2020-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS683010249167', '和田大輔', 0, '+44 (1223) 92 5024', 0, '399483056008240205', 'No.4 Main building, 945 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1989-11-03', 0, 0, 'daisw1958', '2000-10-21', 'daisuke59', '2000-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS740234658941', '董安琪', 0, '+1 330-091-3287', 0, '347735916564632095', '32 Ridgewood Road Suite 3, Akron, OH 44321, United States', '1991-04-10', 0, 0, 'adong731', '2003-11-23', 'anqid', '2014-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS246442090174', 'Ralph Murray', 1, '+1 213-553-5998', 3, '404013211137392870', '490 Wall Street Apt 16, Los Angeles, CA 90003, United States', '1993-06-10', 0, 0, 'murrayralph', '2007-05-30', 'ralphmurray', '2009-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS306070387320', 'Christopher West', 0, '+1 718-140-0341', 2, '907085057040023946', '810 Flatbush Ave Suite 15, Brooklyn, NY 11225, United States', '1996-12-03', 0, 0, 'westchris', '2004-06-10', 'christopher1026', '2018-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS566791438683', '胡晓明', 1, '+44 (20) 3293 0194', 0, '936289459653276760', 'Block 43, 942 Regent Street, London, W1B 2LX, United Kingdom', '1989-12-28', 0, 0, 'xiaominghu00', '2007-07-14', 'xiaoming68', '2015-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS237061002171', '山田光', 0, '+86 10-4936-7899', 3, '603499443263911376', 'No.27 building, 694 East Wangfujing Street, Dongcheng District , Beijing, China', '1991-08-23', 0, 0, 'yhikar2', '2005-11-24', 'yhika', '2003-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS040296138159', '譚慧敏', 0, '+86 28-3023-2594', 2, '431912080005808181', 'No.10 building, No.508, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1991-09-14', 0, 0, 'waiman1024', '2005-06-07', 'waimantam', '2011-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS136661936916', 'Eugene Harrison', 0, '+81 66-266-9635', 2, '419421645758998099', 'Rm. 24, 1-7-1 Omido, Higashiosaka, Osaka, Japan', '1986-05-17', 0, 0, 'harrison5', '2021-08-17', 'harrisoneu8', '2004-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS195210974152', '千葉聖子', 1, '+1 213-400-4767', 0, '222069456600438071', '94 Grape Street Suite 1, Los Angeles, CA 90002, United States', '1993-05-30', 0, 0, 'chibas2012', '2018-12-07', 'cseiko', '2017-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS806290130833', '鄧學友', 0, '+1 838-004-5176', 0, '839849318153433159', '444 Lark Street Apt 35, Albany, NY 12210, United States', '1997-01-23', 0, 0, 'tanghokya2', '2002-11-19', 'tanghokya', '2011-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS002814023444', '高木美緒', 0, '+1 212-686-1349', 3, '199567473012895708', '511 Fifth Avenue Suite 24, New York, NY 10017, United States', '1987-12-22', 0, 0, 'takagimi46', '2010-08-20', 'miot620', '2000-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS510715165648', '遠藤凛', 1, '+44 (121) 197 7462', 1, '456818982463860558', 'Block 27, 541 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1995-04-09', 0, 0, 'rinendo209', '2011-10-11', 'endorin', '2020-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS376028287954', '麥淑怡', 1, '+81 52-368-8395', 4, '781083920848048927', 'Rm. 35, 3 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1998-01-20', 0, 0, 'mak1985', '2011-06-03', 'sukyee2020', '2017-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS921050330532', '苗裕玲', 0, '+86 10-9839-6416', 2, '561583723803430318', '中国北京市朝阳区三里屯路946号38楼', '1985-01-27', 0, 0, 'myl', '2005-04-12', 'yumiu', '2002-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS829152843619', '譚潤發', 1, '+86 21-0653-4745', 0, '791194391754744614', '中国上海市浦东新区橄榄路733号5楼', '1985-05-25', 0, 0, 'tyf1121', '2004-02-29', 'tamyunfat', '2008-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS434344193870', '田云熙', 0, '+44 (116) 286 1678', 2, '845177724959004113', 'Flat 23, 558 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1985-07-06', 0, 0, 'yunxitian5', '2013-01-30', 'yunxitian', '2015-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS242320157635', '中山愛梨', 0, '+86 130-0147-8991', 4, '585590122168695937', '中国北京市海淀区清河中街68号671号14室', '1997-09-23', 0, 0, 'nakayairi', '2020-03-25', 'airinakay', '2005-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS666150752364', '馬霆鋒', 0, '+86 10-6239-5466', 2, '537523395257010644', '中国北京市朝阳区三里屯路735号华润大厦30室', '1994-09-12', 0, 0, 'tfma', '2008-03-10', 'ma7', '2015-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS191699952054', 'Virginia Guzman', 1, '+81 90-7882-0277', 0, '517713797592155771', '23-kai, 20 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1996-09-11', 0, 0, 'guzmanvi', '2012-01-25', 'guzmanvirginia3', '2011-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS314338489791', '安藤絢斗', 1, '+44 (151) 144 1264', 0, '487117040678799634', 'No.5 Main building, 764 Hanover St, Liverpool, L1 4AF, United Kingdom', '1995-09-29', 0, 0, 'anda', '2011-09-04', 'ayatoando4', '2018-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS478047135758', '黎慧敏', 1, '+81 90-9731-7578', 2, '347091757833558325', '24F, 3-9-17 Gakuenminami, Nara, Japan', '1998-06-30', 0, 0, 'wml4', '2004-12-28', 'waimanlai804', '2005-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS405550615211', '曾安琪', 0, '+86 177-1484-0625', 2, '361281791154264519', '中国成都市成华区双庆路77号华润大厦8室', '1995-06-03', 0, 0, 'zenganqi6', '2008-05-21', 'zenanqi', '2019-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS806367362001', '邓致远', 1, '+86 130-1087-2075', 1, '344944484850154140', '中国深圳罗湖区蔡屋围深南东路454号3室', '1996-10-02', 0, 0, 'zhiyuan1017', '2013-05-23', 'zhiyudeng', '2006-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS121523491801', '木村美月', 1, '+44 (151) 543 9734', 3, '692196631652314322', 'No.32 Main building, 170 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1989-01-20', 0, 0, 'kimuramitsuki', '2003-03-27', 'kimurami', '2020-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS068494553847', 'Eleanor Henry', 1, '+81 70-9132-4092', 3, '272041734947850290', 'Rm. 23, 2-1-20 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1998-03-28', 0, 0, 'eleanorhenry', '2002-05-16', 'henryel', '2002-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS452592803289', '董詩涵', 1, '+86 186-6540-5846', 2, '402357375699746765', 'No.27 building, 474 Shennan Ave, Futian District, Shenzhen, China', '1985-08-06', 0, 0, 'shdong1957', '2009-01-06', 'dons902', '2010-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS455499985917', '常睿', 0, '+44 (1865) 63 3137', 4, '717398871491447397', 'Block 5, 121 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1996-11-17', 0, 0, 'charui', '2014-10-06', 'ruicha6', '2012-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS668099591623', '上田大地', 0, '+86 755-4229-2759', 2, '540260133652498105', '中国深圳龙岗区学园一巷551号华润大厦45室', '1997-11-05', 0, 0, 'daichiueda', '2012-04-05', 'ueda229', '2003-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS225870572020', '木村一輝', 1, '+86 142-9204-0490', 2, '426543160023484649', '中国东莞珊瑚路834号华润大厦33室', '1992-07-07', 0, 0, 'ikkikimura3', '2014-09-23', 'kimurikk', '2016-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS885025135460', 'Christopher Vargas', 0, '+86 176-5898-6684', 4, '368415328155773612', '中国广州市天河区天河路119号华润大厦45室', '1998-11-11', 0, 0, 'vargasch', '2018-01-17', 'vchristopher', '2017-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS036819083089', '佘朝偉', 0, '+1 213-742-2605', 2, '984571598750760039', '289 Figueroa Street Apt 43, Los Angeles, CA 90037, United States', '1988-05-28', 0, 0, 'shcw701', '2013-04-04', 'shchiuwai', '2005-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS358248258064', 'Howard Mendez', 1, '+44 (20) 7662 4416', 3, '772651511053469747', 'Unit 8, Oxford Eco Centre, 724 Pollen Street, London, W1S 1NG, United Kingdom', '1988-11-20', 0, 0, 'mendehowa2', '2017-03-27', 'mh72', '2006-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS377632299262', '平野悠人', 1, '+81 70-6913-3893', 1, '527253788856090380', '日本東京品川区東五反田五丁目2番7号27階', '1992-09-20', 0, 0, 'yhir', '2014-09-20', 'yutoh', '2012-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS340050736896', '渡辺玲奈', 0, '+86 155-4303-7718', 3, '267550611471427191', '中国成都市成华区双庆路552号2楼', '1990-03-07', 0, 0, 'srena622', '2005-01-17', 'sato95', '2017-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS865888496053', 'Jerry Rice', 0, '+44 5092 099396', 3, '232550855840560264', 'Flat 46, 61 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1996-08-19', 0, 0, 'rijerry5', '2019-01-17', 'jerice', '2021-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS523751526368', '伍頴思', 1, '+1 330-269-1511', 1, '449911715666694230', '905 Fern Street Apartment 3, Akron, OH 44307, United States', '1987-11-23', 0, 0, 'wingsze57', '2011-02-05', 'wingszeng', '2009-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS565175324338', '森陸', 1, '+44 (1865) 59 2926', 1, '664178049051865744', 'No.31 Main building, 176 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1991-03-27', 0, 0, 'moririk', '2019-03-26', 'rikumori5', '2011-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS269355041267', '成小慧', 1, '+81 52-870-7523', 3, '043354543098488011', '31F, 3-19-10 Shimizu, Kita Ward, Nagoya, Japan', '1988-06-22', 0, 0, 'shinsw79', '2004-04-23', 'shingsiuwa42', '2001-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS390084048328', '龙宇宁', 0, '+86 28-672-2323', 1, '242135504182165405', '6F, 688 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1994-05-07', 0, 0, 'lonyuning', '2019-11-28', 'yuning1', '2006-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS872997776544', 'Stanley Silva', 1, '+81 70-5115-5131', 4, '621939038501211254', '日本東京中央区銀座三丁目12番7号18階', '1986-07-16', 0, 0, 'stanleysilva1951', '2019-11-26', 'stansilva', '2012-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS321559502029', '高詩涵', 0, '+44 (151) 447 7409', 1, '935838905001613335', 'Unit 21, Oxford Eco Centre, 972 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1987-03-20', 0, 0, 'gaoshiha8', '2012-10-28', 'sga603', '2003-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS233317404369', '雷裕玲', 1, '+86 199-2306-5229', 3, '542992826214814664', '中国北京市西城区西長安街371号2室', '1987-11-11', 0, 0, 'loyuling', '2006-12-19', 'yuling05', '2000-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS347828600425', '佐野紗良', 0, '+44 (1223) 83 0171', 3, '262415470997088874', 'Unit 37, Oxford Eco Centre, 218 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1997-12-27', 0, 0, 'sara127', '2003-09-17', 'sara52', '2001-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS858248822630', 'Annie Crawford', 0, '+1 614-372-0591', 2, '239491358248317246', '959 East Alley Apt 23, Columbus, GA 43201, United States', '1996-02-07', 0, 0, 'anniecrawford', '2009-10-13', 'crawann425', '2010-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS434134701195', '鄧榮發', 0, '+81 52-658-3914', 1, '212444097841325708', '日本なごやし北区清水三丁目19番19号44階', '1994-12-26', 0, 0, 'wita', '2005-08-14', 'tangwing60', '2021-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS712421505813', '田天榮', 1, '+86 165-3636-3334', 1, '830469269122968854', 'Room 30, 10 Shennan Ave, Futian District, Shenzhen, China', '1989-03-24', 0, 0, 'tintinwing', '2019-03-12', 'twti', '2005-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS755977972738', '曾嘉伦', 1, '+86 769-139-5245', 2, '288943266061444778', '中国东莞环区南街二巷14号28室', '1991-02-18', 0, 0, 'zengjialun', '2010-11-11', 'zejialun', '2002-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS118032133611', 'Amanda Ford', 0, '+81 52-362-9315', 0, '871551888398406631', '10F, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1995-09-12', 0, 0, 'amaford', '2018-03-21', 'forda', '2012-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS235822072029', '高橋聖子', 1, '+1 838-097-2677', 3, '783559364650933513', '736 Central Avenue Apt 45, Albany, NY 12205, United States', '1989-01-05', 0, 0, 'seikt', '2004-08-26', 'seiko1983', '2008-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS962520808473', '秦嘉伦', 1, '+86 149-0436-6917', 1, '008560005799756419', '中国东莞珊瑚路183号6栋', '1987-06-13', 0, 0, 'qijialun3', '2004-12-24', 'jialunqin9', '2010-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS385772018638', '高橋美羽', 0, '+81 80-5784-7912', 3, '458553219025744188', '日本おおさかし西成区出城一丁目1番19号2階', '1994-05-02', 0, 0, 'miu1995', '2007-04-05', 'miut10', '2010-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS822133925910', '彭家強', 0, '+86 760-315-1016', 3, '233251930203332298', '中国中山京华商圈华夏街157号16栋', '1992-05-25', 0, 0, 'pkake', '2001-09-07', 'pang1985', '2012-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS264513062758', '徐子韬', 1, '+44 (121) 545 3670', 1, '684271475276842037', 'Unit 11, Oxford Eco Centre, 519 New Street, Birmingham, B2 4DB, United Kingdom', '1994-12-30', 0, 0, 'zitaxu1017', '2000-11-04', 'zitaxu', '2001-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS829361202662', '木村彩乃', 0, '+86 755-0984-0839', 4, '609878975945758108', '9F, 315 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1993-11-12', 0, 0, 'kimuraayan', '2009-08-04', 'kimuayano1978', '2008-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS410995123180', '张睿', 0, '+81 80-7544-5247', 1, '848229382917449180', '日本札幌厚別区上野幌一条二丁目1番5号35号室', '1990-01-29', 0, 0, 'zhangr', '2006-07-26', 'zhang7', '2007-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS758504884677', '刘杰宏', 1, '+81 70-2530-0168', 0, '881305892265762231', '40-kai, 1-1-13 Deshiro, Nishinari Ward, Osaka, Japan', '1994-02-24', 0, 0, 'jiehong804', '2017-06-13', 'jiehongliu10', '2010-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS904860451678', '長谷川桜', 1, '+86 179-8900-0527', 2, '163564987269036257', '中国深圳福田区深南大道771号华润大厦39室', '1989-08-02', 0, 0, 'sakhase51', '2011-07-16', 'sakura1213', '2010-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS793036762390', '苗慧嫻', 0, '+81 11-706-0101', 2, '607508799115202878', '4-kai, 5-2-2 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-02-16', 0, 0, 'miuwaihan', '2021-08-04', 'miuwh', '2003-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS679036729594', '苑小慧', 1, '+86 154-6638-7755', 1, '524149446939648647', '中国上海市浦东新区橄榄路709号3栋', '1987-05-16', 0, 0, 'yuen4', '2003-12-05', 'siuwai87', '2021-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS352850762691', '胡潤發', 1, '+86 137-0058-4977', 4, '269535951216354497', 'No.30 building, 545 Dong Zhi Men, Dongcheng District, Beijing, China', '1997-05-07', 0, 0, 'wuyf', '2012-05-08', 'yunfatwu903', '2016-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS294742724464', '譚永發', 0, '+81 90-0721-9174', 2, '635587379858159948', '日本札幌白石区菊水三条五丁目4番19号31階', '1985-04-14', 0, 0, 'tawingfat1', '2021-01-04', 'tawf', '2017-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS236148400589', '高木結翔', 0, '+81 74-518-7185', 3, '514656501974139754', '日本ならし学園南三丁目9番8号29階', '1992-11-17', 0, 0, 'yuitot2', '2015-07-22', 'takagi722', '2001-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS121623285698', '木下光', 1, '+81 52-053-2738', 4, '929534693249237503', '日本なごやし北区楠味鋺三丁目80番18号46号室', '1990-11-15', 0, 0, 'kinoshitahikaru', '2002-11-10', 'kinoshita5', '2010-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS983937260971', 'Benjamin Reed', 0, '+44 (1223) 97 9329', 2, '804138114469931682', 'No.42 Main building, 317 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1990-04-24', 0, 0, 'benjaminre', '2020-06-05', 'benjaminreed2003', '2008-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS801982054632', '田子韬', 0, '+86 163-1843-9629', 1, '388330821464636560', 'Room 39, 580 Huanqu South Street 2nd Alley, Dongguan, China', '1989-08-22', 0, 0, 'zitaotian1212', '2007-01-17', 'zitaotian', '2004-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS596131712855', '徐惠妹', 0, '+44 (1223) 28 3756', 0, '429339936348713118', 'Block 25, 927 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1989-04-25', 0, 0, 'hmt413', '2020-01-04', 'thuimei324', '2012-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS203444162303', '郑宇宁', 0, '+86 28-6799-5778', 3, '787818144500726031', '37F, No.916, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1986-02-11', 0, 0, 'zheng3', '2012-06-07', 'zhyun17', '2014-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS703113834462', '盧詠詩', 1, '+1 330-556-9507', 2, '823284834825871891', '999 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1992-04-04', 0, 0, 'lowingsze02', '2004-08-27', 'wingszelo', '2015-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS137417721879', '戴小慧', 1, '+81 70-9893-7733', 2, '415744583406871884', 'Rm. 7, 2-5-4 Chitose, Atsuta Ward, Nagoya, Japan', '1989-09-23', 0, 0, 'siuwaida', '2012-12-30', 'swd92', '2020-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS744250971595', '董璐', 1, '+86 20-932-7939', 3, '795931638441921123', '中国广州市白云区机场路棠苑街五巷754号49号楼', '1989-10-12', 0, 0, 'lu4', '2020-04-21', 'ld1', '2005-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS377651867754', 'Jacob Flores', 0, '+81 70-0903-7438', 4, '973069135531428099', 'Rm. 8, 1-6-12, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1994-04-09', 0, 0, 'floresja1', '2019-02-28', 'florjacob', '2010-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS213416271570', '佘國權', 1, '+81 70-3424-6487', 0, '392450664537658923', '日本札幌厚別区上野幌一条二丁目1番3号12階', '1991-09-20', 0, 0, 'shkk201', '2016-10-03', 'kwokkuen7', '2015-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS929880328297', '孟秀英', 1, '+1 212-995-6176', 2, '089242408756966379', '38 Fifth Avenue Apt 49, New York, NY 10017, United States', '1995-04-01', 0, 0, 'xiuyingmeng', '2009-11-27', 'mengxi4', '2018-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS269267503270', '許天榮', 1, '+81 80-5588-1643', 3, '715844484966315131', '12F, 4-9-3 Kamihigashi, Hirano Ward, Osaka, Japan', '1995-01-31', 0, 0, 'tinwing404', '2005-09-25', 'htinwing221', '2012-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS602687204044', '邵子韬', 1, '+1 213-251-3462', 1, '834234666792151102', '198 Grape Street Apt 12, Los Angeles, CA 90002, United States', '1986-09-22', 0, 0, 'shaozitao', '2019-03-29', 'shazita', '2011-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS044716813619', '青木凛', 0, '+1 330-475-1500', 3, '468187999824844198', '537 Fern Street Apt 22, Akron, OH 44307, United States', '1988-06-13', 0, 0, 'riaoki', '2005-06-24', 'rinaoki', '2005-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS838897443422', '千葉蒼士', 0, '+1 838-307-1434', 1, '154019539887561819', '703 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1987-06-06', 0, 0, 'chibaaoshi1961', '2010-02-06', 'aoch416', '2002-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS248226883132', '前田美月', 1, '+81 90-0711-8154', 1, '504796505927864052', '日本東京品川区東五反田五丁目2番13号38階', '1988-12-01', 0, 0, 'maedamitsu', '2019-02-23', 'mitsuki57', '2016-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS280993796973', '安藤光', 0, '+1 213-739-7907', 0, '270202171807356492', '349 Grape Street Suite 34, Los Angeles, CA 90002, United States', '1994-01-12', 0, 0, 'andhi', '2018-12-28', 'andoh', '2017-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS329278518958', '刘震南', 0, '+1 838-686-6539', 1, '608831810100476046', '982 State Street Apartment 8, Albany, NY 12203, United States', '1986-05-08', 0, 0, 'zhenliu', '2001-04-13', 'zhennanli', '2002-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS995711294044', 'Joan Grant', 1, '+81 90-9380-4994', 3, '969845621305584035', '日本東京港区東新橋一丁目5番17号19階', '1998-01-18', 0, 0, 'jgr', '2008-11-06', 'joan5', '2010-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS421543291731', '呂志明', 0, '+44 (20) 8447 6913', 1, '712508981763373162', 'Unit 44, Oxford Eco Centre, 924 Maddox Street, London, W1S 1PU, United Kingdom', '1989-03-12', 0, 0, 'cmlui', '2019-10-01', 'lucm', '2003-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS857617823195', '村上葉月', 0, '+86 149-1866-7508', 2, '675499076135522244', '23F, 650 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1998-06-11', 0, 0, 'hazuki6', '2000-06-05', 'hazukimurakami', '2007-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS200187639982', '木下湊', 0, '+86 10-337-7101', 3, '628721131762875770', '42F, 633 68 Qinghe Middle St, Haidian District, Beijing, China', '1999-02-11', 0, 0, 'minato3', '2021-10-04', 'kinoshitam', '2020-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS740265135805', '邱頴思', 0, '+44 7033 620951', 1, '072006424166044416', 'Block 29, 953 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1989-06-07', 0, 0, 'yauws', '2020-11-01', 'wiya4', '2003-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS287057868915', '孔嘉伦', 0, '+1 614-530-3779', 0, '749884111128006637', '77 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1985-09-17', 0, 0, 'jialko97', '2007-07-19', 'jialk', '2020-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS368028196542', '鐘德華', 1, '+44 5101 925768', 4, '877732583927817433', 'Unit 2, Oxford Eco Centre, 22 Hanover St, Liverpool, L1 4AF, United Kingdom', '1997-04-05', 0, 0, 'chuntakwah407', '2001-09-13', 'takwahchung', '2019-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS143233920350', '何睿', 1, '+86 189-8231-1366', 2, '550129840429374230', '中国成都市成华区二仙桥东三路577号华润大厦28室', '1990-12-08', 0, 0, 'hrui', '2000-11-08', 'he327', '2018-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS659409429183', '雷宇宁', 0, '+1 718-263-4314', 0, '888803341703534601', '707 Columbia St Apartment 43, Brooklyn, NY 11231, United States', '1994-01-09', 0, 0, 'leiyuning96', '2019-06-21', 'leiyuning', '2013-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS871304734171', 'Rachel Reyes', 1, '+86 10-484-2480', 4, '044823036329689315', '17F, 629 Dong Zhi Men, Dongcheng District, Beijing, China', '1995-11-30', 0, 0, 'reyesrachel12', '2013-08-10', 'rachel414', '2015-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS778425783102', '阎嘉伦', 0, '+1 838-661-6665', 2, '110464982740381328', '678 State Street 3rd Floor, Albany, NY 12203, United States', '1990-06-16', 0, 0, 'jialun5', '2004-10-10', 'jiyan', '2009-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS850991826506', '車富城', 1, '+81 52-239-9279', 1, '463558735128537986', '日本なごやし北区清水三丁目19番7号33号室', '1990-07-27', 0, 0, 'fushing1', '2007-04-07', 'chefushing', '2004-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS383371017020', '佘惠敏', 0, '+81 90-5422-3546', 3, '949014744902702726', 'Rm. 48, 3-19-3 Shimizu, Kita Ward, Nagoya, Japan', '1993-01-28', 0, 0, 'waimans', '2015-03-19', 'swm', '2003-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS561934306779', 'Martin Munoz', 0, '+1 212-244-0615', 1, '018297996711666469', '138 West Houston Street Apartment 32, New York, NY 10014, United States', '1997-11-12', 0, 0, 'mamunoz', '2005-09-01', 'munozmart', '2001-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS662524024939', '工藤和真', 1, '+86 20-143-6363', 0, '786851198083893947', '中国广州市天河区天河路726号6栋', '1988-01-06', 0, 0, 'kudka', '2018-05-01', 'kudokazuma925', '2020-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS894202572675', 'Donna Morales', 1, '+1 213-401-1590', 3, '835935087718496689', '945 Sky Way Apt 38, Los Angeles, CA 90043, United States', '1998-08-23', 0, 0, 'morales9', '2015-07-19', 'md1021', '2005-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS695465055495', '陳麗欣', 1, '+81 90-2400-5603', 0, '098369993963894572', '50F, 1-6-17, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1996-01-03', 0, 0, 'lychan', '2017-01-21', 'lychan', '2000-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS218673817808', 'Connie Mcdonald', 1, '+81 74-698-7016', 1, '705558740458729062', '37F, 3-9-20 Gakuenminami, Nara, Japan', '1997-12-12', 0, 0, 'mconnie', '2014-01-15', 'cmcdonald', '2005-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS295616950065', 'Laura Rogers', 0, '+44 5597 464532', 2, '081516837645961346', 'Unit 49, Oxford Eco Centre, 976 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1988-10-29', 0, 0, 'laurrog', '2014-09-14', 'rogersl', '2021-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS816328355329', '譚國賢', 1, '+81 11-244-5432', 1, '187657181370910864', '36-kai, 5-2-7 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-08-06', 0, 0, 'kwokyinta46', '2010-03-03', 'tamky', '2019-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS127079967352', '小山光莉', 1, '+1 212-884-0945', 1, '489198152018355413', '288 West Houston Street Suite 40, New York, NY 10014, United States', '1991-05-25', 0, 0, 'koyamh', '2010-04-09', 'koyamahikar1223', '2009-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS384334606430', '袁頴璇', 0, '+44 (121) 786 1409', 4, '717490859862513029', 'Flat 35, 152 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1998-06-28', 0, 0, 'wingsuen7', '2012-06-04', 'yuenws', '2010-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS684257583510', '池田樹', 1, '+81 74-497-5948', 0, '113901574510834963', '49F, 6 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1990-02-10', 0, 0, 'itsukiikeda', '2002-12-29', 'itsuki417', '2012-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS997144792017', 'Jesus Nichols', 0, '+86 21-7638-4948', 2, '836477393151321551', '中国上海市浦东新区健祥路230号17号楼', '1995-06-07', 0, 0, 'jesusnichols', '2004-07-15', 'nicholsje422', '2009-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS145293806174', '工藤翼', 1, '+81 52-650-8654', 0, '251079830996095218', 'Rm. 27, 1 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1987-05-26', 0, 0, 'kudtsuba', '2006-02-28', 'tkud', '2000-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS657241666721', '應思妤', 1, '+44 5794 900598', 2, '142912708630381058', 'No.4 Main building, 75 Redfern St, Liverpool, L20 8JB, United Kingdom', '1990-06-04', 0, 0, 'yisy', '2002-05-08', 'syying225', '2008-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS495420465903', '中野葵', 1, '+1 213-229-5705', 2, '412565888920493027', '264 Sky Way Suite 37, Los Angeles, CA 90043, United States', '1994-11-11', 0, 0, 'nao', '2012-09-06', 'anakan729', '2000-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS728168099135', '彭心穎', 1, '+1 718-476-9620', 4, '064235427193164119', '749 Columbia St Apartment 17, Brooklyn, NY 11231, United States', '1993-12-21', 0, 0, 'sumwingpang', '2003-04-27', 'pasumwing', '2006-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS046279264987', 'Alice White', 1, '+81 66-880-0825', 0, '629716785682795906', '日本おおさかし西成区天神ノ森二丁目1番11号4階', '1991-08-07', 0, 0, 'whia3', '2019-11-27', 'alicwhite', '2004-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS157110071431', 'Phillip Barnes', 1, '+44 (116) 589 0072', 1, '938079075349520386', 'Flat 15, 380 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1993-01-16', 0, 0, 'barnesphi55', '2010-02-06', 'phbarnes', '2014-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS254155439072', 'Nathan Adams', 0, '+86 172-3587-5706', 0, '900805991492836134', 'No.6 building, 867 68 Qinghe Middle St, Haidian District, Beijing, China', '1998-12-08', 0, 0, 'adamsnath', '2009-04-20', 'adamsnathan3', '2008-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS483885297927', 'Marvin Kennedy', 1, '+81 70-6773-7544', 4, '148823770642616933', '日本おおさかし平野区加美東四丁目9番6号49号室', '1987-10-29', 0, 0, 'mark', '2005-10-11', 'mark', '2018-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS084788698448', '许安琪', 1, '+86 164-8236-7164', 0, '775475423284015612', '39F, 958 028 County Rd, Yanqing District, Beijing, China', '1992-03-24', 0, 0, 'xuanqi01', '2014-03-10', 'anqixu', '2014-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS495997912318', '小島聖子', 0, '+81 70-0088-3432', 1, '758244086059568682', '日本おおさかし近江堂一丁目7番8号42号室', '1988-10-29', 0, 0, 'kojima52', '2011-08-20', 'kojima9', '2017-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS262480447349', '餘慧儀', 0, '+86 188-2243-0943', 1, '835450237915000074', '中国中山紫马岭商圈中山五路811号31栋', '1985-04-24', 0, 0, 'waiyee04', '2018-12-24', 'waiyeeyue', '2003-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS598214869800', 'Louise Collins', 0, '+86 20-4049-0491', 1, '839221049921867169', 'No.11 building, 943 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1996-03-14', 0, 0, 'louise8', '2014-05-05', 'louise1213', '2017-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS916660635246', '福田翼', 1, '+81 3-1974-1630', 2, '310114649223400346', '19F, 1-5-12, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-09-23', 0, 0, 'fukudat1992', '2020-09-10', 'tsubafu', '2020-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS268212957317', '小島美咲', 0, '+86 151-5726-5090', 4, '642332958476828775', 'Room 46, 16 Yueliu Rd, Fangshan District, Beijing, China', '1989-12-01', 0, 0, 'mkoj', '2019-06-21', 'misakojima202', '2004-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS626149376684', 'Teresa Simmons', 0, '+81 70-6261-8451', 0, '668934079652819374', '13-kai, 1-5-1, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1996-10-15', 0, 0, 'siteres97', '2010-02-14', 'teresasimm', '2012-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS903321892869', 'Rebecca Hamilton', 1, '+81 90-9460-0719', 3, '876680611297607937', '日本札幌豊平区豊平三条十三丁目3番20号13階', '1987-12-28', 0, 0, 'hamilton1011', '2007-10-26', 'hr8', '2016-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS434216942238', 'Sheila Ortiz', 1, '+86 164-0387-7247', 3, '177751917659284318', '中国中山京华商圈华夏街759号16栋', '1997-05-16', 0, 0, 'ortshe', '2019-09-12', 'sheilaort1031', '2003-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS407876406288', '孙睿', 0, '+81 66-787-8735', 3, '740059206198198924', 'Rm. 5, 4-9-18 Kamihigashi, Hirano Ward, Osaka, Japan', '1996-11-29', 0, 0, 'ruisun', '2013-04-01', 'ruis', '2016-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS638757392165', 'Edna Cox', 0, '+81 52-393-2463', 1, '576089661542757706', 'Rm. 11, 2-5-18 Chitose, Atsuta Ward, Nagoya, Japan', '1992-02-26', 0, 0, 'edna10', '2001-04-20', 'ednaco409', '2005-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS110406142560', 'Scott Lewis', 0, '+86 181-5796-9449', 2, '566275849844609155', '中国上海市闵行区宾川路42号1室', '1989-06-01', 0, 0, 'lewis109', '2016-02-29', 'scottlewis1107', '2004-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS715512297960', '蒋岚', 1, '+44 (1223) 48 8770', 1, '547323353528419880', 'Block 15, 859 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1997-02-07', 0, 0, 'jianglan', '2008-04-25', 'jianlan', '2013-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS676284517770', '青木湊', 1, '+86 179-1667-8978', 1, '372553441162224224', '中国北京市東城区東直門內大街163号华润大厦3室', '1992-11-26', 0, 0, 'aokiminato', '2018-09-05', 'miaoki', '2014-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS285998729323', '區詩君', 0, '+81 3-5025-4014', 2, '921152237651799279', '日本東京中央区銀座三丁目12番2号3階', '1997-04-04', 0, 0, 'skau63', '2001-07-29', 'szekwan323', '2017-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS802079417704', '桜井優奈', 0, '+81 90-5571-3242', 1, '191901269995983604', '8-kai, 2-1-6 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1988-09-23', 0, 0, 'sakuyu', '2017-11-29', 'ysakurai', '2003-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS091355457170', '廖祖兒', 0, '+44 (121) 144 4425', 2, '441851800619106170', 'Block 26, 404 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1985-03-01', 0, 0, 'choyee10', '2010-10-17', 'lcho8', '2014-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS551265142569', 'Kathleen Snyder', 0, '+86 760-522-3841', 2, '786402141439232851', '中国中山乐丰六路524号41室', '1993-03-28', 0, 0, 'kathlsnyder', '2000-03-12', 'ks7', '2012-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS597850073292', '韩致远', 1, '+81 90-7687-6257', 3, '395880048982682187', '日本札幌清田区真栄四条五丁目19番8号21階', '1988-11-27', 0, 0, 'hanzh', '2013-09-12', 'zhiyuan5', '2021-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS138859622536', '原田陽菜', 0, '+81 80-6127-6309', 1, '601134318275009082', '日本おおさかし平野区加美東四丁目9番12号9階', '1992-07-31', 0, 0, 'hharada', '2007-03-08', 'hhar728', '2016-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS478299890059', '藤田百花', 0, '+81 52-897-0356', 3, '082373317994704900', 'Rm. 20, 20 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-10-04', 0, 0, 'mfu', '2010-08-05', 'mfu', '2002-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS754036074287', '島田大地', 0, '+86 755-3170-9307', 2, '373328617720743173', '中国深圳龙岗区学园一巷562号18栋', '1989-06-26', 0, 0, 'dshimada9', '2006-12-21', 'shimada1', '2013-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS575389515481', '王家強', 0, '+86 185-3013-4247', 3, '584323176212024671', 'No.26 building, 649 Shanhu Rd, Dongguan, China', '1986-03-07', 0, 0, 'wkk', '2002-08-17', 'kkwon', '2020-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS909720886761', '薛仲賢', 1, '+81 74-445-4809', 3, '610420121367060948', '日本ならし西大寺赤田町一丁目7番7号4階', '1990-05-27', 0, 0, 'chungyin80', '2005-12-30', 'chusit', '2007-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS499968585346', 'Maria Gordon', 0, '+1 312-470-2629', 2, '217225277265610452', '363 North Michigan Ave Apt 41, Chicago, IL 60611, United States', '1991-01-24', 0, 0, 'gordonmaria', '2007-07-03', 'gormaria', '2009-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS140520324164', '谢宇宁', 1, '+81 66-402-0100', 2, '642124770769518011', '日本おおさかし近江堂一丁目7番12号34号室', '1994-07-08', 0, 0, 'xieyuning1007', '2001-07-24', 'yxie', '2003-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS141160253784', '袁祖兒', 1, '+86 20-706-7592', 1, '651548606863416452', '中国广州市越秀区中山二路940号6号楼', '1991-08-24', 0, 0, 'choyee1120', '2014-04-08', 'ychoyee', '2002-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS127171686408', 'Mario Wilson', 0, '+44 5610 845005', 1, '808589745651918511', 'No.48 Main building, 47 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1987-08-01', 0, 0, 'mario819', '2007-02-15', 'wilsonm1941', '2005-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS498495941752', '樂發', 1, '+81 90-2312-7242', 1, '847583375537983110', '日本東京千代田区丸の内一丁目6番18号31号室', '1988-01-18', 0, 0, 'lfat927', '2020-02-26', 'lokfat', '2014-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS389094224100', '梅慧敏', 0, '+86 20-4903-9339', 1, '833167136112504911', '中国广州市天河区天河路72号46栋', '1996-08-21', 0, 0, 'muwm', '2001-09-16', 'muiwaima105', '2017-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS668939211735', '董震南', 0, '+81 80-8874-7396', 3, '972537064005757865', '25F, 3-15-1 Ginza, Chuo-ku, Tokyo, Japan', '1985-07-05', 0, 0, 'zhedong', '2010-05-23', 'donzhennan', '2003-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS385635070340', '山田健太', 1, '+86 140-5681-4331', 0, '910785920914307648', '中国深圳福田区深南大道185号40栋', '1990-08-08', 0, 0, 'kentay', '2017-07-07', 'kenta1963', '2003-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS007518779584', '許朝偉', 0, '+44 (116) 445 8788', 3, '581878453726362168', 'Block 16, 914 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1991-10-15', 0, 0, 'cwhui83', '2005-08-19', 'huicw626', '2005-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS020836806252', '韩嘉伦', 1, '+44 (121) 838 9210', 1, '885913656190731625', 'Unit 8, Oxford Eco Centre, 947 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1999-02-22', 0, 0, 'hjialun9', '2007-04-30', 'jhan7', '2018-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS230991124226', '野村樹', 1, '+81 80-7044-4985', 2, '808594556256841040', '日本札幌白石区菊水三条五丁目4番5号6号室', '1986-03-11', 0, 0, 'nomuraitsuki', '2016-06-07', 'noitsuki', '2002-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS439708475346', '韓天榮', 0, '+1 838-843-1964', 4, '532511124876206634', '383 Central Avenue Apt 5, Albany, NY 12205, United States', '1996-12-25', 0, 0, 'twh9', '2016-05-06', 'hantw', '2018-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS134563912088', 'Gerald Green', 1, '+81 90-1699-8793', 3, '867470806197338112', '日本札幌中央区宮の森四条六丁目1番8号38階', '1990-02-26', 0, 0, 'green19', '2020-11-08', 'gerald308', '2021-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS001108449127', '谢宇宁', 1, '+86 177-4111-3174', 0, '668055710115249673', '中国广州市白云区小坪东路115号22楼', '1986-12-25', 0, 0, 'yuningxi95', '2003-12-15', 'xieyuning', '2014-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS513432966418', '崔璐', 1, '+44 (1865) 48 4697', 0, '419048659024407800', 'Block 18, 471 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1998-06-22', 0, 0, 'cuilu', '2004-11-20', 'clu', '2015-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS774295001321', 'Andrea Green', 0, '+86 28-6449-0554', 4, '172950418515161966', '中国成都市成华区玉双路6号982号华润大厦9室', '1985-05-15', 0, 0, 'greenandre5', '2019-01-22', 'andreagreen', '2010-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS217522147103', '曹璐', 1, '+44 7841 242218', 2, '805051686626569293', 'Unit 33, Oxford Eco Centre, 782 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1993-07-10', 0, 0, 'caolu620', '2019-10-09', 'cl102', '2017-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS137479358459', '曹岚', 0, '+86 769-709-7985', 2, '401300067980229951', '中国东莞坑美十五巷256号8楼', '1990-10-14', 0, 0, 'cao1', '2001-09-01', 'lan415', '2004-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS868415645325', '中山七海', 1, '+44 (151) 205 5011', 3, '788093218306020521', 'No.48 Main building, 527 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-03-16', 0, 0, 'nanan', '2002-02-20', 'nanaminak', '2001-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS528298509813', '薛小慧', 0, '+81 3-6166-1871', 1, '105977526572222407', '日本東京中央区銀座三丁目12番1号40号室', '1990-12-05', 0, 0, 'sit512', '2003-09-29', 'siuwai3', '2004-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS076016725840', '秦安琪', 1, '+81 74-339-7266', 3, '442996745050785725', '20-kai, 1-7-19 Saidaiji Akodacho, Nara, Japan', '1991-01-07', 0, 0, 'anqiq9', '2007-05-08', 'qinanqi527', '2008-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS641191880310', 'Clarence Ferguson', 0, '+1 838-439-4272', 1, '553147425367485769', '763 State Street Suite 13, Albany, NY 12203, United States', '1987-01-25', 0, 0, 'clarence7', '2014-11-16', 'feclarence', '2003-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS784835423801', '邱秀英', 0, '+81 52-558-3404', 0, '284396628299275722', '日本なごやし守山区瀬古東二丁目171番6号44号室', '1995-07-23', 0, 0, 'xqiu', '2014-06-24', 'xiuqiu2', '2005-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS789309033733', 'Jacob Gonzales', 1, '+81 80-8550-1973', 0, '029396623357455536', '日本ならし西大寺赤田町一丁目7番5号25階', '1995-08-15', 0, 0, 'jacobg', '2012-04-15', 'gojacob', '2000-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS032927089404', '常璐', 1, '+86 755-1033-7280', 4, '293922562309235069', '中国深圳罗湖区清水河一路413号46楼', '1994-11-04', 0, 0, 'changlu1117', '2001-08-20', 'luchan1224', '2012-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS189533868636', 'Wanda Lewis', 1, '+44 7118 561265', 3, '424766367680797809', 'Unit 41, Oxford Eco Centre, 333 Hanover Street, London, W1S 1YD, United Kingdom', '1990-02-20', 0, 0, 'wanda1102', '2020-09-06', 'lewis1', '2014-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS309921264953', '钱子异', 1, '+86 156-1011-8798', 2, '467530806802493649', 'No.10 building, 586 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1988-01-03', 0, 0, 'qziy', '2013-10-20', 'qianziy407', '2016-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS087033241372', '藍發', 1, '+44 7372 422553', 2, '042326142722203363', 'Flat 34, 69 New Street, Birmingham, B2 4DB, United Kingdom', '1994-01-21', 0, 0, 'fatlam', '2002-05-30', 'falam9', '2017-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS480443774092', '福田蓮', 0, '+1 212-942-1941', 1, '077005091485668898', '552 Bank Street 3rd Floor, New York, NY 10014, United States', '1990-07-12', 0, 0, 'fukudren01', '2021-01-17', 'fren', '2012-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS094198675325', 'Victoria Rose', 0, '+86 21-975-2608', 2, '133458607055618642', '中国上海市浦东新区健祥路27号36室', '1995-12-03', 0, 0, 'rosev', '2015-05-18', 'victoria7', '2009-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS424099637418', 'Lois Reynolds', 0, '+1 213-773-2555', 4, '101635921858243941', '939 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1985-11-22', 0, 0, 'reynoldsloi', '2008-09-01', 'reynoldslois', '2016-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS491266446037', '中野百恵', 0, '+81 52-530-1247', 1, '069407417941201073', '24F, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1996-06-28', 0, 0, 'nakano6', '2000-01-31', 'mnakan1102', '2021-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS549368078857', '莫仲賢', 1, '+81 3-8924-5082', 3, '093304939323812240', 'Rm. 43, 3-15-9 Ginza, Chuo-ku, Tokyo, Japan', '1985-04-13', 0, 0, 'cymok', '2019-05-06', 'cymok56', '2007-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS855803219884', '毛家明', 1, '+86 143-7313-8179', 1, '215723137889405054', '1F, 613 East Wangfujing Street, Dongcheng District , Beijing, China', '1985-03-24', 0, 0, 'kmmo', '2006-12-09', 'kaming124', '2021-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS356933573205', '姚玲玲', 1, '+81 11-132-4693', 1, '256420642409786883', '日本札幌白石区菊水三条五丁目4番19号47階', '1989-01-05', 0, 0, 'linglingye', '2019-09-10', 'llyeow', '2012-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS161682267311', 'Edna Thomas', 1, '+86 151-3040-9920', 1, '595171432375189415', '中国成都市成华区双庆路291号华润大厦35室', '1989-08-17', 0, 0, 'thomasedna', '2004-10-13', 'et219', '2006-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS738516838850', '中島蓮', 1, '+81 66-121-3154', 1, '668314956060563786', '44-kai, 2-1-17 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1996-02-02', 0, 0, 'nakajima804', '2014-07-08', 'nakajren', '2016-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS487174176522', '赵睿', 0, '+81 70-2279-9116', 1, '895135523351253353', '40F, 5-4-11 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1987-03-14', 0, 0, 'ruzhao8', '2014-04-29', 'zrui', '2019-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS312512967163', '鄭明詩', 0, '+86 193-1654-7395', 0, '459931179602817871', 'Room 21, CR Building, 864 Shennan Ave, Futian District, Shenzhen, China', '1990-02-26', 0, 0, 'mingsze910', '2003-01-09', 'chenmingsze', '2007-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS457322418427', '區慧儀', 0, '+86 138-9540-3297', 0, '040169225866440092', '中国成都市成华区二仙桥东三路628号9室', '1989-07-12', 0, 0, 'auwy3', '2007-02-16', 'awaiye', '2004-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS184643898021', '于晓明', 0, '+1 614-470-9185', 1, '254123539802927571', '542 East Alley Apartment 6, Columbus, GA 43201, United States', '1989-03-28', 0, 0, 'yuxiaoming1117', '2021-12-07', 'yuxia2', '2012-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS803636540694', 'Karen Washington', 1, '+86 161-6363-6578', 1, '172274519563255382', '中国广州市海珠区江南西路253号华润大厦43室', '1986-05-31', 0, 0, 'karenwash', '2002-04-08', 'karewashington05', '2009-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS155375176123', '鐘祖兒', 1, '+1 838-455-1738', 1, '391437806030902670', '299 Broadway 3rd Floor, Albany, NY 12207, United States', '1987-02-18', 0, 0, 'chung809', '2011-05-28', 'chchoyee', '2020-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS831532610005', '菊地湊', 0, '+44 (1223) 62 3042', 4, '867366913531875345', 'Flat 20, 584 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1987-05-31', 0, 0, 'kikuchi1956', '2018-02-11', 'kim', '2004-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS516023027199', '雷杰倫', 1, '+81 52-770-1198', 4, '830205952455800327', '9-kai, 2-5-14 Chitose, Atsuta Ward, Nagoya, Japan', '1997-07-26', 0, 0, 'chiehlunlo', '2016-08-01', 'chiehlunlou', '2004-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS980573544379', '上野美羽', 1, '+86 181-4767-5131', 1, '795533625402561997', '14F, 348 Jiangnan West Road, Haizhu District, Guangzhou, China', '1994-01-16', 0, 0, 'uenomiu', '2012-06-21', 'miuuen', '2008-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS976366076862', '郭詠詩', 0, '+44 (121) 944 1384', 3, '792126957614847089', 'Block 42, 392 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1988-06-16', 0, 0, 'wingszek', '2012-01-29', 'kwokwingsze', '2021-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS276114014115', '菅原百恵', 0, '+1 614-295-4429', 3, '943014599411306319', '466 Tremont Road Apt 5, Columbus, GA 43212, United States', '1999-03-01', 0, 0, 'sugawaramomoe', '2012-02-28', 'msuga2', '2003-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS651096516212', '崔子异', 1, '+81 90-4716-9977', 3, '283243116400800140', 'Rm. 9, 6-1-16, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1990-09-09', 0, 0, 'cui4', '2015-08-02', 'cui16', '2001-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS736026476198', '李國權', 0, '+81 52-039-9393', 4, '979764946919160325', '日本なごやし北区楠味鋺三丁目80番17号24号室', '1993-12-24', 0, 0, 'leekwokkuen1209', '2008-01-12', 'lkk', '2020-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS402926638941', '福田瑛太', 1, '+81 52-152-3111', 3, '718566037171535338', 'Rm. 3, 3 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-08-25', 0, 0, 'fukudae', '2013-01-05', 'fukuda1020', '2021-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS084655449333', '吉田彩乃', 0, '+81 90-0677-9299', 0, '904277981806740910', '25-kai, 5-4-12 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-02-19', 0, 0, 'yoshida1118', '2010-10-23', 'ayo', '2016-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS316152917629', '林裕玲', 1, '+44 7391 106338', 2, '870139949407466054', 'Block 50, 585 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1989-09-19', 0, 0, 'lam59', '2018-02-05', 'yulingl', '2001-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS892887434228', 'Donna Jackson', 1, '+86 164-1169-9317', 3, '680532370664301303', 'No.28 building, 408 Jiangnan West Road, Haizhu District, Guangzhou, China', '1990-08-25', 0, 0, 'jacksondonna713', '2022-02-15', 'donnajac67', '2008-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS689746449947', '新井桜', 1, '+86 760-7302-2011', 3, '247914077699545081', '中国中山紫马岭商圈中山五路107号7室', '1998-09-04', 0, 0, 'sakuraa', '2017-01-11', 'arai9', '2004-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS523536622344', '谷口葉月', 1, '+44 5535 665826', 3, '218961708513819509', 'Flat 20, 67 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-02-21', 0, 0, 'hataniguchi', '2003-07-29', 'hataniguchi', '2012-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS362605735094', 'Jane Mendez', 0, '+86 20-7634-5584', 1, '424368269133141258', 'No.16 building, 352 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1988-01-31', 0, 0, 'jmende', '2009-03-19', 'janem90', '2006-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS500808704505', '小野拓哉', 1, '+44 7971 722859', 2, '917419176281557000', 'Block 1, 172 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1990-09-23', 0, 0, 'takuyao', '2019-12-06', 'tono6', '2017-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS532496481973', '吉田結翔', 1, '+44 (1223) 19 3796', 1, '536116054167741070', 'No.26 Main building, 15 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1992-06-06', 0, 0, 'yuitoyoshida6', '2018-10-08', 'yuitoyo', '2003-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS187453407698', 'Bruce Moreno', 0, '+86 20-6298-0301', 3, '313138025160708268', 'Room 31, 879 Jiangnan West Road, Haizhu District, Guangzhou, China', '1992-03-08', 0, 0, 'bruce10', '2002-03-12', 'moreno2', '2017-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS235984451368', '錢安娜', 1, '+81 11-924-7588', 1, '265003492924180068', '34F, 6-1-6, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1986-11-17', 0, 0, 'chinonna517', '2015-06-14', 'chinonna', '2000-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS765185133691', 'Bobby Gonzalez', 1, '+44 (20) 3173 0289', 1, '476634143015945043', 'Unit 18, Oxford Eco Centre, 796 Regent Street, London, W1B 2LX, United Kingdom', '1986-04-23', 0, 0, 'gonbobby603', '2005-11-15', 'bogonzalez', '2000-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS929393655259', '岡本明菜', 1, '+1 614-000-9867', 1, '943212972905546429', '393 Tremont Road Apartment 23, Columbus, GA 43212, United States', '1996-12-13', 0, 0, 'okamoto313', '2003-03-27', 'aokamoto', '2015-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS959877963119', '吴晓明', 1, '+1 718-495-0130', 4, '559789121099651746', '44 1st Ave Suite 20, Brooklyn, NY 11220, United States', '1989-02-12', 0, 0, 'wuxiaoming', '2003-08-22', 'wu3', '2019-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS544162495052', 'Eugene Wells', 0, '+44 (20) 1699 3174', 3, '401022318900292646', 'Flat 36, 891 Regent Street, London, W1B 2LX, United Kingdom', '1996-04-12', 0, 0, 'ewells', '2001-06-19', 'eugwell', '2001-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS600134345721', '魏晓明', 1, '+86 167-5933-3195', 0, '871947392340275682', '中国上海市浦东新区橄榄路213号华润大厦11室', '1989-08-25', 0, 0, 'wxia', '2008-02-20', 'weixia4', '2017-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS139057152975', '方發', 0, '+44 5577 793192', 2, '294082762801415948', 'Flat 13, 883 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1986-12-02', 0, 0, 'ffong', '2001-10-12', 'fongfa', '2009-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS202380589572', '餘杰倫', 1, '+81 66-016-9338', 2, '190766292592069349', '日本おおさかし平野区加美東四丁目9番11号7号室', '1988-04-02', 0, 0, 'yuecl', '2019-04-29', 'cly3', '2016-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS638478111848', '罗詩涵', 0, '+86 145-0597-7638', 4, '692222673319596737', 'Room 28, 210 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1986-02-06', 0, 0, 'luosh', '2017-01-15', 'shihan513', '2018-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS281399880635', 'Carmen Cole', 0, '+44 7576 887428', 2, '876948021182212014', 'No.41 Main building, 586 Pollen Street, London, W1S 1NG, United Kingdom', '1991-04-02', 0, 0, 'cco', '2001-07-09', 'carmencole722', '2003-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS694773108638', '馬家文', 1, '+86 149-3125-3024', 1, '409356260029030531', '中国北京市西城区西長安街331号23楼', '1990-12-20', 0, 0, 'makaman', '2016-06-19', 'kmma', '2001-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS888349675922', '藤田百恵', 0, '+1 330-390-4105', 3, '079656349028727906', '359 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1997-05-20', 0, 0, 'fum1121', '2002-05-26', 'momoef', '2007-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS156097759208', '小野美緒', 0, '+1 838-376-2721', 0, '524720462673664942', '129 State Street 3rd Floor, Albany, NY 12203, United States', '1991-11-15', 0, 0, 'mono', '2000-02-21', 'ono2', '2018-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS287998314630', '中川健太', 0, '+81 80-0617-5934', 1, '431820753982772720', '日本札幌中央区宮の森四条六丁目1番3号7号室', '1986-02-01', 0, 0, 'kentan', '2007-05-05', 'kentanakagawa', '2001-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS252852076877', '唐岚', 0, '+81 11-538-8975', 3, '461691036834996960', 'Rm. 15, 5-2-2 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1996-04-06', 0, 0, 'lantang5', '2008-07-17', 'talan8', '2018-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS068533075706', '赵子韬', 0, '+1 312-677-3632', 1, '984527235949880388', '182 North Michigan Ave Apt 18, Chicago, IL 60611, United States', '1998-02-11', 0, 0, 'zhao2', '2000-09-01', 'zhaozi', '2005-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS943195550214', '有村凛', 1, '+86 10-496-3460', 0, '504075595023858530', '中国北京市房山区岳琉路994号15号楼', '1998-10-18', 0, 0, 'rinarimu', '2021-07-27', 'rinarimura1014', '2009-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS587523043012', '何祖兒', 0, '+81 11-440-3301', 0, '340601694410756924', 'Rm. 44, 5-2-16 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-10-18', 0, 0, 'cyho', '2020-04-16', 'hocy', '2014-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS431164221563', '常睿', 0, '+1 212-946-0424', 4, '232264282006653219', '154 Fifth Avenue Suite 47, New York, NY 10017, United States', '1992-09-29', 0, 0, 'crui', '2019-08-28', 'changru', '2001-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS323751801377', '钱安琪', 0, '+44 5031 014920', 2, '498770928513039956', 'Block 13, 875 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1998-02-19', 0, 0, 'qiaa', '2018-06-30', 'aqian1025', '2014-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS696878164717', 'Frances Nelson', 1, '+1 212-730-2846', 2, '281948402275457660', '407 Bank Street Apartment 11, New York, NY 10014, United States', '1990-05-28', 0, 0, 'nelsofr', '2000-10-21', 'frances3', '2021-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS797262375559', '田村玲奈', 1, '+1 212-118-8552', 3, '246427730560487748', '832 Wooster Street Suite 24, New York, NY 10012, United States', '1990-08-24', 0, 0, 'tamuraren7', '2014-03-21', 'rtamura', '2003-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS658336836945', '内田陽菜', 0, '+86 173-8551-6149', 2, '126829476538925635', 'No.9 building, 151 Shennan Ave, Futian District, Shenzhen, China', '1986-03-18', 0, 0, 'hinauc', '2008-10-15', 'hinauch', '2015-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS391150499516', '苗明詩', 1, '+81 80-0740-6176', 0, '497471570719624985', '日本東京中央区銀座三丁目12番10号10号室', '1990-08-17', 0, 0, 'miumings7', '2011-11-12', 'mmingsze', '2016-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS452736389726', '菅原葵', 0, '+86 174-8056-8628', 2, '068833365695292922', 'Room 18, 242 Huanqu South Street 2nd Alley, Dongguan, China', '1987-06-04', 0, 0, 'aoi905', '2020-11-01', 'sugawaraaoi', '2009-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS935286599805', '村田涼太', 1, '+86 21-4665-0611', 2, '196792626282933988', '2F, 494 Binchuan Rd, Minhang District, Shanghai, China', '1991-06-12', 0, 0, 'ryotmurat913', '2019-07-10', 'rmura', '2015-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS285850119871', '新井凛', 0, '+81 52-708-3850', 3, '911841175048081533', '36-kai, 1 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1994-12-18', 0, 0, 'ar7', '2013-07-20', 'arair', '2018-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS115299667113', '葉慧琳', 0, '+86 10-789-5842', 2, '662979590661745294', 'No.6 building, 504 68 Qinghe Middle St, Haidian District, Beijing, China', '1998-03-04', 0, 0, 'waily511', '2013-01-16', 'wailam7', '2017-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS983313220431', 'Martha Schmidt', 0, '+1 330-489-3450', 4, '889817212436491917', '221 Collier Road Apt 20, Akron, OH 44320, United States', '1995-12-17', 0, 0, 'martha3', '2014-11-23', 'ms6', '2014-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS872704860483', '井上美咲', 0, '+86 10-5904-1906', 1, '716568897625726561', '中国北京市海淀区清河中街68号796号华润大厦27室', '1985-08-15', 0, 0, 'miinoue', '2001-11-09', 'mii', '2018-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS364381679964', '洪家強', 0, '+1 718-886-3760', 1, '664345813456525290', '651 Bergen St Suite 35, Brooklyn, NY 11217, United States', '1988-02-06', 0, 0, 'kakeunghung7', '2006-06-01', 'kakeung1', '2012-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS712382038545', '佐藤花', 1, '+81 3-6720-0458', 4, '376334501598225217', '日本東京港区東新橋一丁目5番2号47号室', '1997-04-19', 0, 0, 'satoh6', '2011-09-26', 'hanas1968', '2018-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS000702787232', '馮明', 0, '+1 838-479-5567', 1, '223081969310553191', '916 Lark Street Suite 8, Albany, NY 12210, United States', '1996-03-03', 0, 0, 'fmi', '2013-03-04', 'funming', '2012-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS771214003101', 'Karen Williams', 0, '+86 168-1809-9883', 1, '744025611165766586', 'Room 1, 418 Lefeng 6th Rd, Zhongshan, China', '1997-04-27', 0, 0, 'wikar', '2006-03-12', 'kwilliams', '2016-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS520842891489', '松田一輝', 1, '+44 7857 474866', 2, '262458096835835462', 'Flat 44, 46 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1996-04-15', 0, 0, 'mikki', '2013-09-21', 'ikkimatsu', '2020-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS336948804232', '丸山美羽', 0, '+86 195-3582-1029', 1, '987106455579624720', '中国北京市西城区复兴门内大街85号48室', '1994-08-10', 0, 0, 'maruyamami325', '2004-08-16', 'mimar', '2000-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS995725923015', '任祖兒', 1, '+81 80-4305-0241', 3, '040126741850241995', '43F, 1-5-2, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1987-07-31', 0, 0, 'choyeey6', '2012-08-01', 'yam12', '2007-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS109791885333', '孟晓明', 1, '+86 178-0561-1926', 3, '135288569927523720', 'No.28 building, 192 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1986-02-25', 0, 0, 'xiameng1029', '2014-01-28', 'mxi', '2010-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS362132598622', '杜秀英', 0, '+86 755-650-8944', 3, '598200446510149979', '中国深圳龙岗区学园一巷740号10栋', '1991-06-05', 0, 0, 'duxiuy', '2000-09-01', 'xiuydu', '2004-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS712365302857', '苑明', 0, '+86 169-1104-1060', 0, '818572841150797599', '中国成都市锦江区红星路三段573号1楼', '1988-12-23', 0, 0, 'ymin', '2019-12-07', 'mingyuen', '2019-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS344195990427', '鈴木陸', 0, '+86 181-6243-3327', 1, '465592557525339986', '24F, 804 Tianhe Road, Tianhe District, Guangzhou, China', '1988-07-06', 0, 0, 'rikusuzuki', '2005-04-09', 'riku10', '2006-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS666581732849', '森詩乃', 1, '+86 163-7624-0171', 3, '499865704944275807', 'Room 10, 451 Xiaoping E Rd, Baiyun , Guangzhou, China', '1992-10-01', 0, 0, 'moshino', '2000-08-08', 'shinom6', '2018-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS217105258741', '魏宇宁', 0, '+1 212-345-6600', 2, '909029463464059538', '272 Bank Street Suite 38, New York, NY 10014, United States', '1987-11-22', 0, 0, 'weiyu1020', '2020-08-16', 'wei3', '2012-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS353249489466', '藤原陽太', 1, '+86 193-6755-9018', 3, '893343984623083005', 'Room 26, 135 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1990-03-15', 0, 0, 'yotafujiw1940', '2015-07-29', 'yotafuj1', '2014-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS018686436896', '村田詩乃', 0, '+81 70-6372-3182', 0, '447446907982142950', '日本東京港区東新橋一丁目5番4号16号室', '1990-09-10', 0, 0, 'muratashino3', '2019-07-13', 'shinm', '2000-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS779315901339', '山崎結翔', 0, '+86 769-635-2311', 3, '802115890594385996', 'No.43 building, 297 Shanhu Rd, Dongguan, China', '1989-12-05', 0, 0, 'yyamazaki88', '2005-11-14', 'yyuito6', '2008-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS882907615951', 'Brian Ward', 1, '+44 7959 422937', 3, '454615204216011704', 'Unit 9, Oxford Eco Centre, 826 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1989-11-07', 0, 0, 'brianw', '2019-06-17', 'brward612', '2014-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS967470527369', 'Rita Marshall', 0, '+81 80-5252-1082', 0, '690414376220597536', '日本なごやし北区楠味鋺三丁目80番3号39階', '1996-05-13', 0, 0, 'marshallri', '2013-01-31', 'mrita2', '2017-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS866057090210', '冯詩涵', 0, '+81 80-7734-4399', 2, '359767025109859729', 'Rm. 13, 3-27-7 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1986-11-18', 0, 0, 'shihf', '2001-08-25', 'feng10', '2012-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS250974096946', 'Janet Reyes', 1, '+1 312-258-0379', 1, '536846808418374640', '357 Rush Street Suite 11, Chicago, IL 60611, United States', '1994-08-21', 0, 0, 'rjan', '2001-02-01', 'janetreyes', '2008-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS101804245507', '邱宇宁', 1, '+44 7146 750044', 1, '175767205196542657', 'No.30 Main building, 882 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1989-09-27', 0, 0, 'qiuyuni', '2014-04-07', 'yuniqiu', '2018-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS465540849335', '楊浩然', 1, '+81 90-4249-0595', 2, '363241895155178392', 'Rm. 50, 6-1-10, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1994-02-05', 0, 0, 'yeunghoyin', '2000-10-22', 'hoyinyeun', '2013-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS503545439681', 'Douglas Martin', 0, '+44 (116) 518 4156', 3, '639342334558825426', 'Flat 47, 24 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1985-01-19', 0, 0, 'dougmartin4', '2012-04-21', 'mdougl10', '2021-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS837982703400', '區發', 1, '+81 66-466-9719', 1, '133435906818769616', '39F, 1-7-4 Omido, Higashiosaka, Osaka, Japan', '1994-02-25', 0, 0, 'fau62', '2019-02-20', 'aufat', '2008-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS948734113215', '劉永權', 1, '+1 718-298-8085', 1, '959867448872549394', '109 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1996-01-31', 0, 0, 'lauwk99', '2001-12-17', 'wingkuenl', '2007-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS209948872993', '武田明菜', 1, '+44 5183 444083', 4, '286788591924163962', 'Unit 30, Oxford Eco Centre, 375 Hanover St, Liverpool, L1 4AF, United Kingdom', '1996-08-24', 0, 0, 'takakina', '2005-01-11', 'takeakin', '2018-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS687469834310', '福田花', 0, '+81 66-751-7803', 4, '693402596382782522', '43F, 1-1-7 Deshiro, Nishinari Ward, Osaka, Japan', '1999-02-12', 0, 0, 'hanfukuda7', '2002-02-01', 'hanafuku', '2012-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS247653261135', '松田美月', 0, '+86 155-8934-7344', 1, '383371504712519335', '中国东莞坑美十五巷203号华润大厦28室', '1994-06-23', 0, 0, 'mam', '2004-10-12', 'mitsukim', '2009-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS989041947133', '山崎陸', 0, '+81 90-1469-3328', 1, '311925988945940796', '日本おおさかし西成区出城一丁目1番19号34階', '1991-09-03', 0, 0, 'rikuya1941', '2008-09-25', 'yamazakiriku513', '2000-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS909990311227', '刘云熙', 0, '+81 70-3805-7425', 3, '375569420983133037', 'Rm. 6, 5-19-1 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1989-03-07', 0, 0, 'yunxiliu6', '2007-10-07', 'liyunx', '2004-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS396691738435', 'Emily Rose', 0, '+81 90-8074-0283', 2, '692159002457024274', '日本なごやし熱田区千年二丁目5番7号32階', '1996-10-01', 0, 0, 'emilrose', '2013-08-24', 'emilyr', '2007-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS544888141888', '贾杰宏', 0, '+86 20-6502-0825', 0, '628793173050270914', '中国广州市白云区小坪东路342号11栋', '1989-08-15', 0, 0, 'jj311', '2000-08-29', 'jiaj', '2001-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS093700576160', '桜井拓哉', 1, '+81 70-3976-0380', 1, '962376284586714058', '日本札幌豊平区豊平三条十三丁目3番7号47階', '1996-04-29', 0, 0, 'takuyasakurai', '2007-11-18', 'takuya1', '2018-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS461003284817', '梅朝偉', 0, '+81 90-5667-0828', 2, '290571307079277495', '日本おおさかし西成区天神ノ森二丁目1番3号10階', '1997-03-07', 0, 0, 'muichiuwai', '2003-04-15', 'chiuwaimui', '2021-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS549799338661', '阎子异', 1, '+86 173-0265-3955', 1, '083099022836444149', '中国成都市锦江区人民南路四段170号12栋', '1988-08-09', 0, 0, 'ziyiyan', '2013-03-25', 'ziyiya', '2009-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS963509029402', '何嘉伦', 1, '+81 66-057-7169', 0, '735939156664993680', 'Rm. 19, 2-1-14 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1993-10-12', 0, 0, 'jialhe6', '2017-08-19', 'hejial', '2019-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS301503303418', '狄明', 1, '+81 3-7046-6037', 2, '051938992650525515', '日本東京港区東新橋一丁目5番12号37階', '1998-03-31', 0, 0, 'ti51', '2011-07-15', 'mingt', '2019-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS026357928062', '有村凛', 0, '+1 718-329-3587', 2, '835957003105612377', '929 1st Ave Apartment 17, Brooklyn, NY 11220, United States', '1991-03-28', 0, 0, 'arimura201', '2020-06-25', 'arimura106', '2015-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS633418721960', 'Carrie Aguilar', 0, '+81 52-487-9474', 3, '180303636114814388', 'Rm. 50, 3-19-8 Shimizu, Kita Ward, Nagoya, Japan', '1994-07-15', 0, 0, 'aca1', '2021-05-01', 'aguilarcarri117', '2009-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS065461692632', 'Charles Coleman', 0, '+44 (20) 2484 7564', 0, '547232230045477806', 'Flat 31, 648 Hanover Street, London, W1S 1YD, United Kingdom', '1996-01-21', 0, 0, 'colemancharles', '2004-01-05', 'charlescol', '2002-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS208376322230', '朱云熙', 1, '+86 755-170-5409', 2, '280615599549326552', '13F, 680 Jingtian East 1st St, Futian District, Shenzhen, China', '1989-09-22', 0, 0, 'zhu1109', '2016-02-16', 'yunxiz1008', '2017-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS640122004270', '前田蒼士', 0, '+44 (1865) 20 0600', 2, '941827984215949317', 'No.17 Main building, 189 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1988-08-23', 0, 0, 'aoshi3', '2004-12-18', 'aoshimaeda', '2020-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS786850709722', '菅原明菜', 0, '+1 213-150-3148', 0, '933326987921176221', '897 Alameda Street Suite 41, Los Angeles, CA 90002, United States', '1987-08-20', 0, 0, 'sugawara1', '2011-03-28', 'akinasu', '2017-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS889772357168', '郝子韬', 0, '+86 193-7104-8299', 4, '339235761706874480', '中国北京市東城区東直門內大街824号华润大厦19室', '1987-10-19', 0, 0, 'hazitao7', '2018-10-31', 'zitaoha8', '2019-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS419942271561', 'Theresa Young', 1, '+1 213-894-5687', 4, '406780292861912003', '114 Grape Street Suite 14, Los Angeles, CA 90002, United States', '1994-06-03', 0, 0, 'theresayoung10', '2019-09-16', 'theresayoung12', '2008-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS439625445721', '汪嘉伦', 1, '+86 28-8011-4596', 2, '128706550392358703', 'Room 12, CR Building, No.997, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-04-16', 0, 0, 'wjialun', '2019-04-19', 'jialunwa', '2014-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS497803542157', '王子韬', 1, '+81 52-607-8478', 4, '032849429756981715', '日本なごやし瑞穂区河岸町四丁目20番5号39階', '1998-12-21', 0, 0, 'wanzitao', '2009-11-28', 'wzit', '2012-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS507706536547', '苏安琪', 1, '+81 3-6025-0337', 0, '126704713381513899', '日本東京品川区東五反田五丁目2番16号3号室', '1990-04-01', 0, 0, 'anqi72', '2021-07-15', 'su528', '2021-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS354292362900', '苑杰倫', 1, '+1 838-478-1507', 3, '199236301565698215', '224 State Street Suite 38, Albany, NY 12203, United States', '1990-09-03', 0, 0, 'yuechiehlun5', '2008-12-29', 'yuechieh3', '2018-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS740839287169', 'Eugene Martinez', 0, '+86 145-3966-1075', 1, '946925051679646013', '中国广州市越秀区中山二路272号华润大厦31室', '1989-09-16', 0, 0, 'eugenemart', '2013-02-09', 'em423', '2017-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS024803893695', '福田絢斗', 1, '+81 90-7013-2586', 2, '084632233007498681', '6-kai, 3-15-3 Ginza, Chuo-ku, Tokyo, Japan', '1985-10-11', 0, 0, 'fukuda1116', '2015-07-21', 'afukuda328', '2008-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS265234870998', 'Bruce Fisher', 0, '+81 66-845-0596', 2, '793927836875533350', '日本おおさかし平野区加美東四丁目9番9号47階', '1992-03-22', 0, 0, 'fishbruc315', '2015-05-23', 'bfisher55', '2009-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS691112037848', 'Edith Fisher', 0, '+86 21-549-2698', 3, '123425616243114467', '9F, 826 Binchuan Rd, Minhang District, Shanghai, China', '1998-08-27', 0, 0, 'editf', '2011-07-18', 'fied', '2011-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS520467152140', '太田玲奈', 0, '+81 66-386-3862', 3, '796918443598788021', '日本おおさかし西成区天神ノ森二丁目1番19号14号室', '1988-07-21', 0, 0, 'rota', '2014-07-13', 'renot', '2003-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS003650380243', '郭安娜', 1, '+1 614-682-8073', 0, '296142109289941169', '424 Diplomacy Drive Apt 16, Columbus, GA 43228, United States', '1997-01-06', 0, 0, 'kwok73', '2021-12-30', 'onna1948', '2006-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS232250925264', '伊藤大輔', 0, '+1 212-859-4861', 1, '849496586775942621', '888 West Houston Street Suite 11, New York, NY 10014, United States', '1996-06-10', 0, 0, 'itd1217', '2010-09-26', 'daisuke10', '2004-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS031423842455', '長谷川美羽', 1, '+81 74-049-4783', 3, '184977750861914108', '29F, 10 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1988-06-16', 0, 0, 'hmiu71', '2013-07-21', 'hasmiu89', '2005-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS818682511097', '松田葉月', 1, '+81 66-451-4870', 3, '521647702697244250', '12-kai, 1-1-15 Deshiro, Nishinari Ward, Osaka, Japan', '1987-08-08', 0, 0, 'matsuda1', '2010-02-22', 'matha', '2008-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS992352854837', '郭慧珊', 1, '+44 (151) 700 8654', 2, '178302842915916310', 'Block 49, 306 Redfern St, Liverpool, L20 8JB, United Kingdom', '1998-05-19', 0, 0, 'waisan68', '2015-08-15', 'wskwok', '2021-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS899599601592', '汪岚', 0, '+81 90-6613-7862', 3, '017449587519982197', '17-kai, 1-5-20, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1988-08-27', 0, 0, 'wanglan', '2019-02-20', 'wl7', '2015-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS708764058791', '杜致远', 0, '+44 (1223) 54 9107', 4, '488657101248975790', 'Flat 34, 207 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1990-05-12', 0, 0, 'zdu', '2006-05-19', 'duz', '2015-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS634262644469', '盧志明', 0, '+1 718-480-8718', 0, '122349053270703540', '381 Columbia St Apt 49, Brooklyn, NY 11231, United States', '1996-11-18', 0, 0, 'lo1962', '2003-01-20', 'lcm', '2021-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS829147065150', '工藤愛梨', 1, '+1 312-309-8500', 3, '531187344087681123', '651 Rush Street Apt 23, Chicago, IL 60611, United States', '1997-01-19', 0, 0, 'kairi', '2011-08-18', 'kudo1', '2015-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS288936197884', '姜杰宏', 0, '+86 755-8926-2500', 4, '403838429003159536', '中国深圳龙岗区学园一巷647号17室', '1996-10-05', 0, 0, 'jiejian', '2004-03-31', 'jiehongj', '2021-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS917759024170', '宮本桜', 1, '+81 80-0756-9017', 0, '333452027622435330', '日本おおさかし東住吉区東田辺三丁目27番4号9階', '1994-02-15', 0, 0, 'sakuramiya718', '2014-01-18', 'smiya3', '2011-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS225123483673', '钱杰宏', 1, '+86 755-2713-2002', 3, '943854798302318976', 'No.21 building, 733 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-08-22', 0, 0, 'qian5', '2006-07-29', 'jiehongq', '2019-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS689853608079', '原田健太', 0, '+86 149-6906-6713', 2, '242929068241393185', '36F, 899 Shennan Ave, Futian District, Shenzhen, China', '1995-03-12', 0, 0, 'harada506', '2002-12-06', 'haradkenta', '2021-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS293142921788', '楊家輝', 0, '+1 330-157-7015', 3, '135635133514716657', '57 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1998-08-26', 0, 0, 'kafaiyeung414', '2007-03-05', 'kafai1104', '2008-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS332842758433', '梁云熙', 1, '+44 5890 679973', 0, '867099261887567906', 'Flat 3, 840 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-06-23', 0, 0, 'yunxilia1', '2012-08-20', 'liangy', '2001-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS277354039998', '譚浩然', 1, '+1 718-094-2697', 2, '310145633316082951', '260 Bergen St Apt 20, Brooklyn, NY 11217, United States', '1985-11-10', 0, 0, 'tahy', '2000-12-31', 'tamhy44', '2002-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS454118778671', '坂本絢斗', 0, '+86 165-1856-4130', 1, '189751561084708191', '中国中山京华商圈华夏街707号23栋', '1998-04-14', 0, 0, 'ayatsakamoto', '2002-08-17', 'sakamotoayat', '2008-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS665044882602', 'Russell Stone', 1, '+1 838-625-0046', 0, '543367588354474357', '949 Central Avenue Suite 23, Albany, NY 12206, United States', '1997-11-08', 0, 0, 'stru118', '2005-12-08', 'russ', '2017-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS597138086672', '萧子异', 1, '+86 28-076-9677', 3, '304202884084580825', 'Room 30, CR Building, 575 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1997-04-30', 0, 0, 'ziyixiao6', '2015-03-22', 'ziyxiao4', '2015-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS226612466125', '山口玲奈', 0, '+44 5779 589367', 1, '546474846717975632', 'Block 13, 199 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1986-04-07', 0, 0, 'yaren01', '2005-03-17', 'renayamaguchi', '2020-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS182828784404', '江慧珊', 0, '+86 20-840-8224', 4, '148549153040549965', '21F, 97 Tianhe Road, Tianhe District, Guangzhou, China', '1996-09-10', 0, 0, 'kongws', '2015-06-25', 'kws', '2012-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS249284012749', '朱國權', 1, '+86 171-8341-5423', 2, '677784335376941336', 'No.46 building, 835 Jingtian East 1st St, Futian District, Shenzhen, China', '1989-09-07', 0, 0, 'chukwokkuen4', '2020-09-28', 'kwokch809', '2006-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS116412212830', '區小慧', 1, '+44 7058 315916', 4, '527769296885223937', 'Flat 28, 788 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1995-04-07', 0, 0, 'siuwaiau6', '2016-10-20', 'ausiu', '2009-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS486682036651', '蔡力申', 0, '+81 70-1426-1888', 2, '787708024560651865', '日本ならし学園南三丁目9番9号30号室', '1987-06-27', 0, 0, 'choi2', '2015-03-12', 'choiliksun2', '2010-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS378232587866', '吳詩君', 1, '+81 70-0169-3494', 0, '013476453571560632', '日本ならし学園南三丁目9番18号38号室', '1986-08-13', 0, 0, 'ng123', '2007-02-28', 'szekwan2', '2007-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS642221964279', '許國明', 0, '+44 (116) 058 4348', 3, '502196674560662432', 'No.34 Main building, 401 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1990-03-07', 0, 0, 'kwokminghui', '2015-05-31', 'kmhui59', '2016-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS093366992251', '竹内陽太', 0, '+81 90-3849-7089', 3, '790831979785658625', '日本ならし大和郡山市本庄町一丁目1番3号6階', '1989-09-10', 0, 0, 'yota9', '2017-04-08', 'takeuyot', '2017-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS124644302639', '江璐', 0, '+1 614-745-7221', 3, '712389031956970849', '312 East Alley Suite 31, Columbus, GA 43201, United States', '1991-01-24', 0, 0, 'ljiang', '2009-03-07', 'jianglu', '2001-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS279581781876', '劉慧琳', 1, '+86 162-0196-8287', 3, '684828019754649249', 'No.6 building, 945 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1994-04-17', 0, 0, 'lawailam', '2014-08-26', 'lau5', '2007-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS032480265485', '斉藤聖子', 1, '+81 70-8980-9484', 3, '673404940071202169', '20-kai, 2-5-20 Chitose, Atsuta Ward, Nagoya, Japan', '1991-05-30', 0, 0, 'seikosait', '2013-12-17', 'saito1951', '2003-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS085921285133', '方朝偉', 1, '+44 7269 300737', 4, '430237122297161402', 'Unit 6, Oxford Eco Centre, 628 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1988-01-03', 0, 0, 'cwfong', '2017-10-06', 'cwfong', '2019-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS247635521352', '有村美緒', 0, '+44 (161) 181 2345', 3, '752342500332909952', 'Block 30, 160 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-01-16', 0, 0, 'arimi14', '2006-11-20', 'arimurami', '2003-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS001291879607', '胡晓明', 0, '+81 80-4334-9247', 0, '848679754159005508', '14F, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1998-08-02', 0, 0, 'xiaoming9', '2018-08-10', 'hux', '2012-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS090738353165', '周國明', 0, '+81 52-747-7333', 1, '178745701747295371', 'Rm. 3, 3-19-4 Shimizu, Kita Ward, Nagoya, Japan', '1992-10-27', 0, 0, 'kmchow', '2019-07-15', 'chow64', '2005-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS219531557674', '上野光', 0, '+81 70-2138-2782', 1, '770887459684664459', '日本なごやし守山区瀬古東二丁目171番17号29階', '1998-06-02', 0, 0, 'uenohikaru', '2004-05-09', 'hu47', '2018-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS939184203048', '阎晓明', 1, '+86 151-8320-6354', 1, '826534650748866279', '中国中山天河区大信商圈大信南路29号华润大厦22室', '1992-12-01', 0, 0, 'yanx223', '2018-07-20', 'yaxiaoming', '2000-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS012605414431', '汤子韬', 0, '+81 3-0591-4801', 3, '288416250295672461', '48-kai, 1-5-13, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-08-06', 0, 0, 'tanzi', '2000-12-22', 'zitang', '2007-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS357989819587', '鄭家玲', 0, '+86 28-930-5624', 2, '505350261636236502', 'Room 22, 251 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1989-06-05', 0, 0, 'klcheng', '2017-09-05', 'chekaling', '2012-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS527621757465', '曹國權', 1, '+81 66-878-6816', 1, '938071456611939383', 'Rm. 12, 1-7-16 Omido, Higashiosaka, Osaka, Japan', '1987-03-10', 0, 0, 'cho1', '2012-09-07', 'chokw62', '2006-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS407129379974', '梁子韬', 1, '+1 213-162-1406', 0, '949196865939210596', '527 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1988-01-17', 0, 0, 'liangzitao1125', '2018-11-15', 'zil', '2003-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS081534425818', '罗宇宁', 1, '+81 52-912-7138', 2, '240127094336885039', '日本なごやし北区楠味鋺三丁目80番4号34階', '1990-12-31', 0, 0, 'ly10', '2018-09-07', 'yuningluo1115', '2008-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS850437187012', 'Peggy Aguilar', 0, '+86 178-5309-9143', 1, '865832533125570666', 'Room 38, CR Building, 476 Kengmei 15th Alley, Dongguan, China', '1991-12-10', 0, 0, 'peggyag', '2004-02-14', 'agpeg406', '2006-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS960168532707', 'Lois Jenkins', 1, '+1 330-729-0310', 3, '947979526638082603', '839 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1997-05-07', 0, 0, 'jlois', '2004-09-12', 'loisjenkins1230', '2000-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS694972725641', '桜井七海', 0, '+81 11-486-6256', 3, '297832720489259477', '31F, 6-1-17, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1992-12-05', 0, 0, 'sakunanami', '2016-02-27', 'sakurainanami', '2003-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS458234094395', '高發', 1, '+44 7986 245793', 1, '013149050388977191', 'No.33 Main building, 99 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1985-01-05', 0, 0, 'kaofat', '2002-10-20', 'kaofa3', '2008-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS198781334816', '村田健太', 0, '+81 90-7096-9084', 3, '311639712257677892', 'Rm. 33, 5-2-17 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-05-11', 0, 0, 'kmurata', '2011-08-01', 'muratak9', '2011-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS899172636357', '中山陽菜', 0, '+86 755-4795-4930', 2, '263034993948933594', 'Room 26, CR Building, 865 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1996-10-15', 0, 0, 'hinana', '2001-04-10', 'hina3', '2003-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS246555736771', '小島陽太', 1, '+81 80-2854-5512', 4, '825784148665224808', '3-kai, 5-2-1 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-10-02', 0, 0, 'yotkojima1127', '2014-05-07', 'yk1019', '2001-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS871658024770', '上田光莉', 1, '+86 10-9484-8859', 2, '538708928014188445', 'No.43 building, 991 Dong Zhi Men, Dongcheng District, Beijing, China', '1997-10-26', 0, 0, 'uehikari', '2017-08-18', 'hikaue', '2021-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS452582844778', 'Miguel Bailey', 1, '+86 147-1873-2980', 1, '513375312846270755', '中国成都市成华区玉双路6号454号24栋', '1986-05-19', 0, 0, 'mbailey', '2009-10-03', 'migubailey47', '2013-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS679066237397', '胡麗欣', 0, '+81 11-575-6036', 1, '812185610886775741', '日本札幌豊平区豊平三条十三丁目3番11号22階', '1989-08-27', 0, 0, 'wulaiyan', '2021-01-13', 'laiyanwu1103', '2013-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS872679476549', '橋本光', 1, '+81 52-623-7278', 2, '730941674342399003', '日本なごやし北区楠味鋺三丁目80番1号15階', '1996-05-02', 0, 0, 'hashimotoh221', '2020-01-12', 'hikaruhashimoto', '2020-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS515278569756', 'Rachel Gray', 1, '+86 10-2984-5572', 1, '477196410252459230', 'No.16 building, 489 Sanlitun Road, Chaoyang District, Beijing, China', '1989-12-07', 0, 0, 'grayrachel209', '2003-10-25', 'rgray7', '2018-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS106751933564', 'Edith Black', 1, '+81 66-262-1369', 3, '865274589526465954', '25-kai, 3-27-10 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1997-01-26', 0, 0, 'blaced72', '2015-07-01', 'blackedith', '2001-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS893073823892', '蘇頴思', 1, '+86 769-2166-5860', 2, '851578102803117239', '中国东莞坑美十五巷929号华润大厦4室', '1996-01-02', 0, 0, 'sowi4', '2022-01-24', 'wingszes', '2004-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS022109966490', '石睿', 1, '+81 80-8180-6303', 0, '033209631274678769', '日本なごやし熱田区千年二丁目5番20号17号室', '1986-07-09', 0, 0, 'shiru', '2009-02-19', 'shrui', '2012-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS955022707718', 'Clifford Wood', 1, '+1 614-286-5106', 1, '460663665270463962', '738 East Cooke Road Apartment 8, Columbus, GA 43214, United States', '1988-02-27', 0, 0, 'cliffordwood', '2005-07-16', 'woodc', '2010-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS614234281412', '鄺德華', 0, '+1 213-240-0322', 2, '031361287533429222', '833 Wall Street Suite 43, Los Angeles, CA 90003, United States', '1997-08-22', 0, 0, 'twkwong115', '2011-11-04', 'takkw1944', '2010-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS729424296448', '孫家玲', 1, '+86 769-636-5477', 3, '716786294124130033', '中国东莞东泰五街97号27栋', '1995-06-28', 0, 0, 'hsuan2', '2011-02-20', 'kaling907', '2002-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS044795576678', 'Henry Collins', 0, '+86 21-263-3025', 2, '327485309394940508', 'Room 5, CR Building, 664 Jianxiang Rd, Pudong, Shanghai, China', '1986-03-12', 0, 0, 'henrycollins629', '2006-12-14', 'collins1010', '2021-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS278463537650', '長谷川架純', 1, '+44 5446 201589', 2, '899906691438318497', 'Block 12, 39 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1997-04-01', 0, 0, 'khasegawa', '2020-09-23', 'hasegawa1973', '2002-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS494630575601', '村上陽菜', 1, '+86 10-8587-8139', 2, '835657593169946769', 'Room 38, 732 68 Qinghe Middle St, Haidian District, Beijing, China', '1998-10-19', 0, 0, 'murakamih', '2013-02-14', 'murakamih', '2004-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS860040261304', '金安琪', 0, '+86 165-5200-8551', 0, '125544533476680016', 'No.2 building, 288 Jiangnan West Road, Haizhu District, Guangzhou, China', '1987-08-07', 0, 0, 'aj10', '2006-03-04', 'jinanqi', '2018-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS079573000741', '黄睿', 0, '+81 3-3127-5640', 1, '107463190707913919', '日本東京千代田区丸の内一丁目6番7号13階', '1992-11-24', 0, 0, 'ruihuang5', '2014-04-04', 'huangrui', '2017-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS094421189633', '上野陸', 0, '+86 155-3468-5298', 2, '340902915252336425', '中国深圳罗湖区清水河一路621号42栋', '1992-06-23', 0, 0, 'ueno53', '2019-09-11', 'rikuen', '2011-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS322540745056', 'Janice Sanchez', 0, '+86 21-0807-6471', 2, '051747287089795058', 'Room 27, 624 Middle Huaihai Road, Huangpu District, Shanghai, China', '1990-06-01', 0, 0, 'janicsanchez4', '2001-12-11', 'jas', '2009-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS940276484464', '清水和真', 1, '+81 11-585-3752', 4, '370209077108511113', '45-kai, 13-3-1 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1996-07-02', 0, 0, 'shkazuma', '2006-11-02', 'kazumashimizu509', '2001-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS728732553552', 'Sara Salazar', 0, '+81 3-8536-4619', 0, '275668724747618182', '日本東京品川区東五反田五丁目2番8号34号室', '1992-06-12', 0, 0, 'salazarsara', '2002-03-12', 'sarasala', '2003-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS581420049781', '青木百恵', 1, '+86 178-3061-0623', 2, '072457362605267265', '中国东莞环区南街二巷37号华润大厦21室', '1991-08-13', 0, 0, 'aoki10', '2020-12-15', 'am6', '2020-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS867292977239', '孔詩涵', 1, '+81 70-3803-6985', 4, '768034409208574238', '4F, 3-27-20 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1990-01-03', 0, 0, 'konshihan', '2012-11-05', 'shihkon', '2019-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS329470674373', '向德華', 0, '+81 52-810-0629', 2, '525373591304210933', 'Rm. 20, 14 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-01-23', 0, 0, 'takwahheung', '2015-08-21', 'takwahh', '2007-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS937538373564', 'Gerald Fernandez', 0, '+81 52-880-6412', 0, '839463238761153952', '日本なごやし守山区瀬古東二丁目171番10号20階', '1992-12-06', 0, 0, 'geralfer', '2008-08-25', 'ferngerald01', '2020-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS085865514038', '方發', 0, '+86 28-015-8584', 2, '510256787840128495', '中国成都市成华区双庆路581号7栋', '1989-09-23', 0, 0, 'fongfa', '2012-01-23', 'fatfong', '2005-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS418131717004', 'Shannon Weaver', 0, '+1 212-467-4610', 3, '399041018964314388', '638 Bank Street Apartment 10, New York, NY 10014, United States', '1989-11-18', 0, 0, 'shannonweav', '2017-03-15', 'weavershannon10', '2003-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS942960633516', '宋致远', 1, '+86 20-730-7911', 1, '978933921145912307', '中国广州市越秀区中山二路408号16栋', '1992-01-28', 0, 0, 'zhiyuan55', '2006-02-23', 'zhis3', '2020-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS310702927725', '尹云熙', 0, '+44 5309 079269', 1, '345333930270571134', 'No.24 Main building, 245 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1991-08-12', 0, 0, 'yunxi98', '2011-06-17', 'yunxi08', '2015-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS878458841394', '吕杰宏', 1, '+81 70-1576-7865', 3, '772095562617547671', '8-kai, 18 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-03-30', 0, 0, 'jil10', '2003-01-21', 'jilu1973', '2001-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS418347453357', 'Joyce Sanchez', 1, '+81 90-1473-6284', 1, '629420852732702112', '7F, 1-1-8 Deshiro, Nishinari Ward, Osaka, Japan', '1988-08-27', 0, 0, 'sanchezj', '2014-01-03', 'joycesanchez', '2016-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS526589190335', '江秀英', 1, '+81 70-1642-4266', 2, '196001843374703940', '日本おおさかし平野区加美東四丁目9番17号8階', '1990-01-30', 0, 0, 'xiuying2005', '2008-12-09', 'xiuyingjia85', '2012-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS192388604014', '今井一輝', 0, '+44 (1865) 90 3716', 3, '966429444165835686', 'Unit 19, Oxford Eco Centre, 279 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1996-12-06', 0, 0, 'ikimai9', '2017-08-02', 'imaikki606', '2012-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS302509606480', '小川光莉', 1, '+81 66-942-4189', 4, '761924053859799948', '日本おおさかし西成区出城一丁目1番19号28階', '1986-06-06', 0, 0, 'ogawahikar', '2004-08-29', 'oh1995', '2021-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS493221359715', 'Judy White', 0, '+81 74-862-9240', 3, '267427437022405761', '9F, 3-9-17 Gakuenminami, Nara, Japan', '1996-01-03', 0, 0, 'judy3', '2017-08-14', 'judywhite', '2001-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS976016097908', 'Willie Soto', 0, '+86 160-6823-2740', 2, '627664616030954516', '中国北京市西城区复兴门内大街161号华润大厦5室', '1991-06-15', 0, 0, 'sowil', '2011-12-09', 'swillie', '2002-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS678947198860', 'Norma Carter', 0, '+86 170-9818-6741', 0, '395884416607886898', '中国北京市延庆区028县道353号16楼', '1987-12-23', 0, 0, 'cartnorma52', '2015-07-05', 'carnorma', '2008-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS964966434486', 'Jessica Stevens', 1, '+44 5242 467658', 1, '995774503106666153', 'Flat 7, 991 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1993-10-15', 0, 0, 'jstevens', '2017-07-09', 'sjess', '2017-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS853536013497', '原聖子', 0, '+44 5523 569360', 3, '649048079050222435', 'Flat 31, 757 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1988-02-28', 0, 0, 'harase', '2004-09-16', 'hara1975', '2015-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS882660105021', 'Carmen Taylor', 1, '+44 (151) 783 9818', 3, '428654739026049771', 'Block 38, 200 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1994-04-03', 0, 0, 'tcarmen524', '2002-07-24', 'taylor113', '2013-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS162145318545', '孔杰宏', 1, '+86 20-817-5675', 3, '469351963621991270', '中国广州市越秀区中山二路246号31栋', '1987-09-08', 0, 0, 'kong4', '2021-05-04', 'jiehong428', '2008-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS203386347610', 'Marilyn Chavez', 1, '+81 52-788-2549', 1, '992281393789699350', '日本なごやし北区楠味鋺三丁目80番6号7階', '1989-02-27', 0, 0, 'marilynchav', '2002-12-22', 'marilyn1223', '2003-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS540734076155', 'George White', 0, '+1 213-366-3407', 1, '652747937708365311', '381 Grape Street Apt 22, Los Angeles, CA 90002, United States', '1990-04-18', 0, 0, 'george77', '2005-02-04', 'whitegeorge', '2000-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS982083895802', '呂榮發', 0, '+1 212-737-8951', 0, '058441548315455167', '222 West Houston Street Suite 47, New York, NY 10014, United States', '1991-10-17', 0, 0, 'lwf9', '2007-03-28', 'wflui', '2007-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS266554952841', 'Nathan Holmes', 1, '+81 80-0321-0873', 4, '364429945658993795', '日本なごやし守山区瀬古東二丁目171番13号34号室', '1989-08-07', 0, 0, 'holmn1', '2013-02-19', 'holmesn', '2010-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS011636316186', '李震南', 0, '+1 718-325-2337', 1, '494958337872541023', '282 Columbia St Suite 27, Brooklyn, NY 11231, United States', '1992-07-20', 0, 0, 'lizhennan', '2008-09-04', 'lizh', '2015-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS317510557734', 'Anne Diaz', 0, '+81 80-8210-1185', 3, '605565037021827638', '42-kai, 3-15-16 Ginza, Chuo-ku, Tokyo, Japan', '1990-11-27', 0, 0, 'dia1212', '2012-06-23', 'annediaz', '2004-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS263084384142', 'Lillian Jones', 0, '+86 21-559-9011', 2, '473681253167626784', 'Room 5, 37 Jianxiang Rd, Pudong, Shanghai, China', '1993-06-12', 0, 0, 'jol7', '2005-02-10', 'lillianj', '2005-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS317733151118', '高橋樹', 1, '+81 70-2299-0482', 1, '011857658842734310', '48F, 2-1-3 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1991-08-14', 0, 0, 'takitsuki', '2007-03-07', 'it9', '2022-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS364193298071', '斎藤架純', 1, '+86 139-0561-0967', 3, '771181517086485336', '中国中山天河区大信商圈大信南路256号46室', '1994-05-28', 0, 0, 'kasumi8', '2000-12-11', 'kasumis', '2016-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS073215254620', '魏杰宏', 1, '+81 70-8083-4541', 0, '346594917137892044', '日本札幌豊平区豊平三条十三丁目3番18号7号室', '1998-07-17', 0, 0, 'wjiehong2008', '2016-09-06', 'weiji20', '2015-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS247686198112', '吴子韬', 0, '+81 52-514-0807', 0, '875474015492257944', '日本なごやし北区楠味鋺三丁目80番9号43階', '1992-02-18', 0, 0, 'wuz205', '2020-04-29', 'zwu', '2007-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS110837240314', '方惠妹', 0, '+44 5346 566915', 1, '440465022301585884', 'Block 19, 222 Maddox Street, London, W1S 1PU, United Kingdom', '1985-05-05', 0, 0, 'fong208', '2005-07-19', 'huimeifong6', '2007-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS148382159552', '董璐', 0, '+86 755-785-7581', 2, '095728470190673835', 'No.28 building, 665 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1988-03-15', 0, 0, 'dong2', '2019-02-09', 'dlu6', '2019-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS142065953311', '黎秀英', 0, '+44 (151) 150 1844', 1, '313459972667925963', 'Unit 30, Oxford Eco Centre, 435 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1985-09-12', 0, 0, 'xiuyingli', '2011-03-18', 'lx10', '2010-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS144174320833', 'Anthony Harrison', 1, '+81 70-8703-5629', 1, '372137063145817468', '日本なごやし守山区瀬古東二丁目171番2号22号室', '1993-09-16', 0, 0, 'harrisonanthony7', '2014-05-28', 'harrisona', '2020-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS186128912113', '赵子异', 1, '+86 755-7452-2161', 3, '949765680482774682', 'Room 36, CR Building, 474 Jingtian East 1st St, Futian District, Shenzhen, China', '1998-03-10', 0, 0, 'ziyi9', '2012-08-30', 'zziy', '2018-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS294523138297', '邓璐', 1, '+86 132-8683-4462', 4, '118315000222577368', '23F, 857 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1990-12-27', 0, 0, 'denglu', '2001-09-19', 'deng708', '2002-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS230076475636', '宮本花', 1, '+81 3-1606-5583', 3, '025228004266674373', '日本東京千代田区丸の内一丁目6番11号39階', '1998-07-05', 0, 0, 'miyamotohan91', '2006-05-07', 'hana93', '2019-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS651711590838', 'Dennis Crawford', 1, '+81 90-0647-8076', 2, '391366113865643815', 'Rm. 44, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-03-21', 0, 0, 'crd', '2022-02-12', 'dennc4', '2013-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS943582382501', '顧惠妹', 0, '+1 212-585-8349', 1, '666573412220122767', '701 West Houston Street Suite 29, New York, NY 10014, United States', '1998-02-24', 0, 0, 'hmk', '2020-08-30', 'ku3', '2011-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS689636337026', '崔家輝', 0, '+44 7634 077068', 3, '635396951674858728', 'No.44 Main building, 699 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1997-08-26', 0, 0, 'choikafai', '2005-09-15', 'kafaichoi', '2005-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS112896203682', '程云熙', 1, '+86 21-4097-2421', 3, '361300602823982823', '中国上海市浦东新区橄榄路643号48楼', '1988-02-14', 0, 0, 'chyun', '2010-03-05', 'yunxi1944', '2009-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS728510233982', 'Joel Gonzalez', 0, '+86 755-498-6487', 3, '772654410527941774', '中国深圳福田区深南大道629号10号楼', '1991-05-19', 0, 0, 'joel77', '2016-09-19', 'joegonz', '2007-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS059474893897', '钟子异', 0, '+86 139-9458-9777', 2, '698137898629947880', '中国上海市闵行区宾川路653号华润大厦37室', '1998-08-26', 0, 0, 'ziz1020', '2014-06-08', 'zhongziyi4', '2016-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS603326164840', '福田彩乃', 0, '+86 10-487-6083', 2, '403180353031276868', '中国北京市延庆区028县道773号8室', '1997-07-16', 0, 0, 'ayafukuda40', '2010-03-10', 'ayano5', '2002-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS363391455264', '遠藤葵', 0, '+44 5928 737280', 1, '784856093534698059', 'Unit 16, Oxford Eco Centre, 377 Portland St, Manchester, M1 3LA, United Kingdom', '1988-09-13', 0, 0, 'endoaoi', '2012-05-26', 'endoaoi', '2001-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS539037958502', '岡田拓哉', 1, '+1 718-717-2785', 0, '662587390031394597', '534 Columbia St Apartment 9, Brooklyn, NY 11231, United States', '1990-07-13', 0, 0, 'takuyaokada13', '2016-01-10', 'tokada503', '2009-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS048845748368', '李詩涵', 1, '+1 213-845-7377', 2, '535266545761006418', '455 Figueroa Street Apartment 44, Los Angeles, CA 90037, United States', '1994-11-12', 0, 0, 'lishihan', '2007-07-19', 'lishi', '2004-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS581356997455', '菅原美咲', 1, '+86 20-6195-8440', 1, '750150010832610491', '中国广州市越秀区中山二路640号40楼', '1991-08-19', 0, 0, 'sugami2', '2021-01-30', 'missugawara', '2007-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS510291850539', '曾岚', 0, '+86 175-8218-8425', 3, '469369694640624540', '中国上海市浦东新区橄榄路51号45楼', '1989-02-27', 0, 0, 'lanz', '2012-11-26', 'zl8', '2016-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS175600003389', '邹震南', 0, '+81 3-4960-5172', 4, '331253604488845420', '日本東京千代田区丸の内一丁目6番1号13階', '1993-08-27', 0, 0, 'zhennan9', '2003-12-23', 'zouz', '2001-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS617473884673', '郭杰宏', 1, '+1 213-471-4676', 1, '953700939497771112', '837 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1998-01-11', 0, 0, 'jieg', '2015-10-05', 'guojiehong48', '2012-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS765428620147', '戚明', 1, '+81 52-498-0807', 2, '168660029919070946', '日本なごやし瑞穂区河岸町四丁目20番13号17号室', '1992-07-30', 0, 0, 'mingchic', '2020-08-18', 'ming6', '2009-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS988202105042', 'Pauline Kim', 0, '+1 330-626-2298', 2, '215607325119997753', '783 Ridgewood Road Suite 43, Akron, OH 44321, United States', '1991-02-05', 0, 0, 'kimpau5', '2011-03-16', 'kpa4', '2016-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS378450195904', 'Joshua Rodriguez', 0, '+81 3-0660-7774', 3, '921207336566214966', '日本東京千代田区丸の内一丁目6番6号9階', '1993-11-21', 0, 0, 'joshuarodriguez', '2018-04-02', 'josrodriguez', '2012-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS775873836443', 'Kathleen Cox', 1, '+86 20-342-5968', 0, '533410653640942428', '中国广州市海珠区江南西路643号11栋', '1985-09-25', 0, 0, 'kathcox', '2014-07-23', 'coxkathleen', '2007-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS412959816979', 'Marcus Gardner', 1, '+44 (1223) 64 7027', 0, '084070369377107987', 'Unit 42, Oxford Eco Centre, 638 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1996-08-10', 0, 0, 'marcus1019', '2000-07-13', 'marcusgardner', '2006-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS770956805231', '中野花', 1, '+86 140-3149-5576', 1, '335388787323510443', '中国成都市锦江区红星路三段925号11室', '1985-05-25', 0, 0, 'hnakano', '2007-07-23', 'hanan', '2020-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS553357687541', 'Catherine Hunt', 0, '+86 755-979-8986', 2, '817280687289721108', '中国深圳龙岗区布吉镇西环路274号28楼', '1991-04-16', 0, 0, 'catherine709', '2009-04-25', 'catherine1', '2013-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS595922690494', '林梓軒', 1, '+86 175-6243-8460', 1, '275324440199971895', '中国上海市浦东新区健祥路966号29楼', '1995-06-07', 0, 0, 'lth', '2009-11-18', 'lam74', '2010-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS152219332630', '柴田陽太', 1, '+81 90-0150-3418', 1, '484019097772774898', '日本なごやし北区楠味鋺三丁目80番4号41号室', '1991-08-23', 0, 0, 'yoshibata', '2001-10-23', 'yoshibata7', '2019-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS554085921559', 'Rose Herrera', 0, '+1 614-903-0974', 3, '149419400928294550', '113 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1995-06-01', 0, 0, 'herreraro', '2005-04-05', 'rher414', '2017-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS627170698942', '任梓軒', 0, '+81 11-332-8755', 4, '132288668477401017', '日本札幌豊平区豊平三条十三丁目3番15号33階', '1995-02-06', 0, 0, 'tszhin1', '2007-06-11', 'thyam', '2015-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS416587596470', '薛詩涵', 0, '+81 11-425-2382', 4, '691900664889871775', '41-kai, 13-3-2 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1990-01-06', 0, 0, 'shihx910', '2008-12-03', 'sxue1215', '2017-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS924035290147', '應梓晴', 0, '+81 70-3249-8496', 4, '281221243693031208', 'Rm. 47, 1-1-7 Deshiro, Nishinari Ward, Osaka, Japan', '1992-11-29', 0, 0, 'tszchingying17', '2018-10-08', 'ying4', '2002-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS606548901378', 'Nathan Hall', 1, '+81 70-9170-1245', 3, '835870420870005484', '日本おおさかし東住吉区東田辺三丁目27番6号14階', '1994-09-19', 0, 0, 'nathah2', '2011-10-28', 'hallna1995', '2015-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS989466236401', '羅志明', 0, '+86 10-523-0542', 2, '293698252593515507', '中国北京市东城区东单王府井东街468号5栋', '1985-07-09', 0, 0, 'lo1', '2004-11-07', 'lochiming', '2015-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS265283225111', 'Daniel Owens', 0, '+86 198-8645-7620', 2, '383141717297549569', 'Room 13, 16 Dong Zhi Men, Dongcheng District, Beijing, China', '1989-10-06', 0, 0, 'danieowen82', '2017-05-08', 'owensdaniel5', '2005-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS973102323935', '山下七海', 0, '+86 10-435-4075', 4, '489900720306353474', '中国北京市西城区复兴门内大街405号3楼', '1995-09-22', 0, 0, 'nanamy', '2021-06-22', 'nanamiyamashita', '2001-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS562989408003', '姜晓明', 0, '+86 171-7451-7614', 3, '027240280219158218', '中国上海市浦东新区健祥路355号9楼', '1993-04-27', 0, 0, 'jxiaoming', '2015-05-05', 'jiangx7', '2021-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS403092347202', '龙杰宏', 1, '+1 213-953-2113', 3, '751988498360519442', '400 Sky Way Apartment 43, Los Angeles, CA 90043, United States', '1999-01-22', 0, 0, 'longj', '2001-06-15', 'jilon', '2005-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS082514894930', '陈云熙', 1, '+86 10-818-9660', 1, '516068147008953453', 'Room 10, CR Building, 760 Yueliu Rd, Fangshan District, Beijing, China', '1989-04-01', 0, 0, 'chen2008', '2015-08-01', 'ychen', '2012-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS374205176113', '曾晓明', 1, '+1 213-373-9133', 2, '959737020496949077', '851 Alameda Street Apartment 47, Los Angeles, CA 90002, United States', '1994-10-18', 0, 0, 'zx1', '2013-12-09', 'zenxiaoming45', '2015-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS812839751752', 'Peggy Johnson', 0, '+81 90-7488-2266', 3, '538943019686536697', '日本なごやし熱田区千年二丁目5番19号43階', '1986-05-26', 0, 0, 'johnsp', '2021-06-19', 'johnsonpeg', '2010-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS276351114934', '林蓮', 1, '+86 165-7742-6122', 3, '198024440133112793', 'Room 5, No. 261, Shuangqing Rd, Chenghua District, Chengdu, China', '1994-03-19', 0, 0, 'hayashi1022', '2010-12-24', 'renh', '2003-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS871984143900', '三浦聖子', 1, '+81 52-971-3002', 0, '959963325022915055', '日本なごやし守山区瀬古東二丁目171番2号4階', '1991-12-28', 0, 0, 'seikom', '2006-08-19', 'seiko725', '2002-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS290045643670', '阎子韬', 1, '+44 7289 463727', 3, '458767097767092279', 'Unit 21, Oxford Eco Centre, 78 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1986-04-08', 0, 0, 'yanzita', '2011-09-09', 'zitaoyan1216', '2014-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS515218898722', '鄭思妤', 1, '+81 80-5908-0129', 2, '214730090261199825', '日本東京中央区銀座三丁目12番14号36階', '1998-09-02', 0, 0, 'chengszeyu1', '2019-03-29', 'szeyu68', '2015-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS180893943710', '段岚', 0, '+86 183-6224-5390', 3, '141605410603969470', 'Room 36, CR Building, 278 Hongqiao Rd., Xu Hui District, Shanghai, China', '1987-09-14', 0, 0, 'dlan', '2011-12-04', 'lan12', '2012-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS528767429566', '傅曉彤', 0, '+86 21-7491-5348', 1, '916335074933722402', 'Room 33, 14 Ganlan Rd, Pudong, Shanghai, China', '1990-10-14', 0, 0, 'htfu95', '2001-04-18', 'htf', '2002-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS709740203191', '孔致远', 1, '+81 74-807-3922', 1, '165481282843057655', '43-kai, 1 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1997-09-27', 0, 0, 'zhikong318', '2017-09-04', 'kongzhiyuan61', '2013-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS195566386211', '翁德華', 0, '+44 (121) 833 9979', 1, '571857726940992820', 'Unit 26, Oxford Eco Centre, 27 New Street, Birmingham, B2 4DB, United Kingdom', '1985-05-23', 0, 0, 'takwah1952', '2003-11-11', 'twyu', '2003-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS496317997035', 'Peter Flores', 0, '+1 838-771-9228', 4, '453423467124975628', '584 State Street 3rd Floor, Albany, NY 12203, United States', '1993-08-11', 0, 0, 'peter42', '2022-02-05', 'petflores', '2009-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS622775036682', '范子韬', 1, '+86 20-0968-7548', 3, '768565810517294577', '中国广州市海珠区江南西路335号47楼', '1993-01-14', 0, 0, 'fzitao', '2011-08-23', 'fanzitao', '2001-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS010935672658', '顾嘉伦', 1, '+1 838-126-7916', 0, '027330457628487873', '607 State Street Apartment 42, Albany, NY 12203, United States', '1998-09-29', 0, 0, 'guj', '2002-09-04', 'gujial', '2007-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS857563775351', '佐々木美羽', 1, '+86 134-6105-7945', 0, '851340746960650341', 'No.4 building, 500 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1997-08-23', 0, 0, 'sasaki4', '2005-06-16', 'sasakmiu', '2014-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS398883355317', '萧秀英', 0, '+86 755-2932-7154', 1, '147317184655342751', '中国深圳福田区景田东一街924号16栋', '1988-06-14', 0, 0, 'xiaoxiuying', '2012-05-25', 'xiuyingxiao', '2006-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS625449778390', 'Steve Graham', 1, '+44 5165 713400', 3, '677497646738858954', 'No.14 Main building, 128 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1997-10-27', 0, 0, 'grahas', '2017-10-25', 'grahams48', '2009-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS682470688639', '金子韬', 1, '+81 66-591-2106', 4, '831020562143208935', 'Rm. 49, 1-7-2 Omido, Higashiosaka, Osaka, Japan', '1986-06-08', 0, 0, 'zitjin', '2008-01-24', 'zitaojin', '2019-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS457545804388', '中山和真', 1, '+81 74-083-7949', 3, '769676489265971306', '49-kai, 13 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-01-01', 0, 0, 'kazun', '2015-12-15', 'nkazuma', '2002-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS535947738269', '叶子异', 0, '+86 28-2005-9133', 2, '988028941039257332', '中国成都市成华区双庆路621号27楼', '1986-12-11', 0, 0, 'yziy1989', '2012-05-13', 'yziyi', '2014-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS093710834380', '佘慧敏', 0, '+1 213-606-7897', 3, '387402824900939167', '132 Grape Street Suite 30, Los Angeles, CA 90002, United States', '1992-01-09', 0, 0, 'shehwaiman', '2015-03-26', 'waimans', '2004-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS894980065045', '江宇宁', 0, '+81 52-499-6117', 3, '310882063828933878', '29F, 2-5-7 Chitose, Atsuta Ward, Nagoya, Japan', '1996-11-28', 0, 0, 'yjian', '2016-12-30', 'jy2', '2020-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS466349602881', 'Jeff Hicks', 0, '+86 760-4485-2883', 2, '797854513325120956', 'No.23 building, 586 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1996-03-31', 0, 0, 'jhic', '2006-03-22', 'jeffh46', '2003-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS756122943719', '駱明詩', 1, '+86 20-5461-6586', 2, '582092417885799534', 'No.33 building, 201 Jiangnan West Road, Haizhu District, Guangzhou, China', '1994-01-04', 0, 0, 'mslok', '2014-08-25', 'mslok', '2021-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS956222597141', '黃梓軒', 1, '+86 180-5711-1973', 2, '061522884444821597', 'Room 42, 709 FuXingMenNei Street, XiCheng District, Beijing, China', '1997-09-24', 0, 0, 'thwong', '2017-03-28', 'thwon90', '2017-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS403542526279', '鄭心穎', 1, '+44 5780 637600', 1, '258365959295121698', 'Flat 39, 647 New Street, Birmingham, B2 4DB, United Kingdom', '1988-09-06', 0, 0, 'sumwingcheng1130', '2002-01-23', 'chengsw', '2009-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS059717890675', '蔡思妤', 1, '+86 10-1681-3584', 1, '521824070917148369', '15F, 677 West Chang''an Avenue, Xicheng District, Beijing, China', '1992-05-22', 0, 0, 'chosy', '2010-12-17', 'choi924', '2009-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS589062126243', '關安琪', 1, '+81 3-8916-9663', 1, '524816618138972537', '日本東京中央区銀座三丁目12番16号32号室', '1994-09-26', 0, 0, 'onkayk', '2009-11-12', 'kwanonkay', '2005-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS418800124628', '藤井蒼士', 1, '+86 20-236-7806', 2, '098520829517585633', 'No.40 building, 987 Xiaoping E Rd, Baiyun , Guangzhou, China', '1996-04-15', 0, 0, 'aosfuji', '2000-06-12', 'faoshi', '2017-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS273907951372', '姚安娜', 1, '+81 90-9260-1878', 1, '225182902161124800', '日本なごやし北区楠味鋺三丁目80番12号7階', '1991-11-02', 0, 0, 'yeowon2017', '2017-04-29', 'yeoonna', '2019-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS687803334775', '戴心穎', 1, '+1 212-463-6746', 0, '118205144458434359', '129 Fifth Avenue Apt 32, New York, NY 10017, United States', '1995-10-09', 0, 0, 'swda', '2002-10-14', 'swdai', '2004-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS251992253166', '中村大和', 1, '+81 80-8645-2091', 2, '065368836509467426', '45F, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1990-04-11', 0, 0, 'yamatona', '2020-02-17', 'yamatonak507', '2004-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS973557115599', 'Deborah Adams', 0, '+81 80-8667-4746', 2, '339979536058134051', '日本札幌豊平区豊平三条十三丁目3番13号46階', '1985-12-19', 0, 0, 'dadams', '2018-03-03', 'adamsd59', '2010-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS349974745166', '段嘉伦', 1, '+86 760-6730-5233', 3, '001587881943849390', '中国中山乐丰六路494号39室', '1989-11-04', 0, 0, 'duanjialun', '2020-03-11', 'duanj', '2014-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS231993515548', '赵岚', 1, '+81 80-8008-1687', 4, '805429970155472803', '日本おおさかし西成区天神ノ森二丁目1番5号31号室', '1990-10-22', 0, 0, 'lanz', '2018-11-20', 'zlan', '2013-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS025962823495', 'Christine Jimenez', 1, '+44 5860 338063', 0, '592142377324114330', 'No.42 Main building, 61 Sackville St, Manchester, M1 3BB, United Kingdom', '1993-06-22', 0, 0, 'christinej', '2006-11-25', 'chji314', '2000-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS581323111092', '楊杰倫', 1, '+81 90-3144-1086', 1, '186558625216166847', '41-kai, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-04-08', 0, 0, 'yeung428', '2015-03-02', 'chiehlunyeung108', '2018-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS354479065321', '橋本蒼士', 0, '+86 769-815-8793', 3, '709132329160415039', '中国东莞东泰五街155号48号楼', '1995-07-22', 0, 0, 'hashiaos10', '2008-09-26', 'aoshha', '2006-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS496187253866', 'Bruce Moore', 1, '+81 70-5252-8757', 0, '309963589678974552', '41-kai, 3-9-6 Gakuenminami, Nara, Japan', '1996-05-02', 0, 0, 'moore120', '2014-03-09', 'brumoo', '2011-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS709353426578', '高德華', 0, '+81 80-4063-2426', 1, '891704329926773178', 'Rm. 38, 3-19-20 Shimizu, Kita Ward, Nagoya, Japan', '1990-08-03', 0, 0, 'takwahkao403', '2006-01-22', 'kaotakwah', '2004-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS005215713553', '叶震南', 1, '+81 70-2537-4326', 3, '231703434891817790', '日本東京渋谷区代々木二丁目3番20号26号室', '1994-04-23', 0, 0, 'yezhennan', '2008-07-23', 'ye67', '2015-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS586685313648', '小野悠人', 1, '+1 718-975-8444', 1, '305655200596860286', '465 Nostrand Ave Apt 14, Brooklyn, NY 11216, United States', '1996-12-22', 0, 0, 'yono', '2001-01-13', 'onoyuto47', '2008-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS703939325537', 'Juan Jordan', 0, '+86 755-848-4724', 2, '856546957315285254', '中国深圳福田区深南大道262号27栋', '1993-03-20', 0, 0, 'jj9', '2020-12-12', 'jordanjuan4', '2009-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS504495151202', '房天樂', 0, '+86 755-6531-3482', 2, '572694711928655381', 'Room 2, CR Building, 67 Jingtian East 1st St, Futian District, Shenzhen, China', '1998-08-11', 0, 0, 'fotl719', '2016-06-21', 'ftl', '2009-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS784835041465', '江子韬', 0, '+81 80-6492-9422', 2, '463809734210168503', '日本東京渋谷区代々木二丁目3番11号31階', '1991-01-08', 0, 0, 'jzit', '2019-04-08', 'zjiang', '2004-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS495971593691', '吳朝偉', 0, '+86 755-121-4190', 1, '486174277347992465', '中国深圳罗湖区田贝一路706号华润大厦31室', '1985-01-30', 0, 0, 'ngcw', '2011-11-16', 'chiuwaing', '2006-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS934187582300', 'Justin Ferguson', 1, '+44 (161) 382 3026', 3, '853364740147464037', 'No.3 Main building, 585 Sackville St, Manchester, M1 3BB, United Kingdom', '1987-08-23', 0, 0, 'ferguju5', '2011-03-13', 'justin1207', '2010-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS934676203916', '谷口涼太', 1, '+81 52-923-0348', 1, '545898485394317458', '46-kai, 2-5-16 Chitose, Atsuta Ward, Nagoya, Japan', '1988-11-21', 0, 0, 'ryottaniguchi2', '2021-08-05', 'tanir224', '2010-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS965125964113', '岩崎紗良', 0, '+1 838-171-8233', 1, '852267364067478578', '763 Lark Street Apt 48, Albany, NY 12210, United States', '1990-02-28', 0, 0, 'sarai923', '2016-05-01', 'iwasakisara', '2018-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS699838632455', '赵云熙', 1, '+1 838-681-6673', 0, '781945934826217704', '56 State Street Suite 21, Albany, NY 12203, United States', '1996-04-01', 0, 0, 'yunxizhao6', '2004-01-22', 'zhaoyunxi1031', '2000-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS354604295670', '邵德華', 0, '+81 70-3365-6207', 0, '318523556534794624', '11F, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1997-10-05', 0, 0, 'takwah11', '2015-07-14', 'siutakwah', '2012-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS239568190793', '中島絢斗', 0, '+86 28-058-3783', 2, '490302960666517477', 'No.11 building, 633 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1991-01-29', 0, 0, 'ayatonaka', '2010-07-16', 'nakajima48', '2010-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS371970051754', '林家輝', 1, '+44 (121) 009 5095', 3, '950070194528662737', 'Flat 2, 379 New Street, Birmingham, B2 4DB, United Kingdom', '1993-03-16', 0, 0, 'kfl10', '2007-11-23', 'lakafai', '2020-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS542455847002', '金子桜', 0, '+86 21-2595-5351', 4, '235251274965386146', 'No.24 building, 570 Hongqiao Rd., Xu Hui District, Shanghai, China', '1992-04-18', 0, 0, 'sak', '2013-02-22', 'ksak', '2003-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS094943374071', 'Gregory Garza', 1, '+86 194-5525-8449', 2, '370678199214201377', '46F, 620 Jiangnan West Road, Haizhu District, Guangzhou, China', '1998-06-13', 0, 0, 'garza127', '2018-08-31', 'gregogarza', '2009-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS650988732454', '汪朝偉', 1, '+81 90-0671-9906', 1, '999465171024226978', '日本札幌豊平区豊平三条十三丁目3番10号22階', '1987-06-28', 0, 0, 'wongcw', '2005-05-02', 'chiuwaiwong', '2019-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS122907547402', '馬慧嫻', 1, '+86 164-1763-0614', 2, '625431562746546732', '中国北京市延庆区028县道298号华润大厦44室', '1985-11-29', 0, 0, 'mawh', '2021-05-18', 'mawaihan8', '2019-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS125939160312', 'Cindy Medina', 1, '+44 5657 980830', 1, '791855571822368009', 'Block 4, 452 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1998-04-23', 0, 0, 'medina1121', '2009-02-25', 'mcin', '2010-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS433646013011', '江詩涵', 0, '+86 178-1351-7523', 0, '641087565094754360', 'Room 18, CR Building, 979 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1993-06-14', 0, 0, 'jiang71', '2002-06-03', 'jishihan', '2018-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS527553816141', 'Kevin Weaver', 0, '+1 614-476-7472', 1, '706131170717212216', '782 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1989-11-27', 0, 0, 'weake', '2018-01-02', 'wkev923', '2015-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS002688853177', 'Henry Ellis', 0, '+86 10-569-5600', 1, '794628303071178293', '中国北京市西城区复兴门内大街548号5室', '1992-03-17', 0, 0, 'ellis7', '2011-10-09', 'ellish5', '2015-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS761277164021', 'Julia Gomez', 1, '+1 838-154-5842', 2, '655584688419473912', '292 Central Avenue Apartment 42, Albany, NY 12206, United States', '1989-06-02', 0, 0, 'gomejulia', '2001-10-10', 'julia1019', '2007-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS836259106330', '江浩然', 1, '+44 5458 123367', 0, '436537988427207525', 'Unit 2, Oxford Eco Centre, 967 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1994-07-29', 0, 0, 'hyk', '2006-10-18', 'hyko1971', '2017-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS402959228506', '田村舞', 1, '+1 614-358-4839', 1, '759080960243754408', '181 Wicklow Road Apartment 14, Columbus, GA 43204, United States', '1985-01-15', 0, 0, 'tmai70', '2020-10-27', 'maitam202', '2010-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS570258302145', 'David Schmidt', 0, '+81 3-4791-0602', 1, '092040016197744013', '日本東京港区東新橋一丁目5番18号33階', '1997-06-12', 0, 0, 'schdavi', '2013-05-19', 'ds10', '2007-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS957476935164', 'Jeremy Butler', 0, '+86 134-6005-8747', 3, '665851554876152198', '中国广州市白云区小坪东路857号22楼', '1995-12-28', 0, 0, 'jbut', '2012-09-27', 'jeremybutl', '2004-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS354869737955', 'Ryan Morales', 0, '+86 136-9518-2030', 1, '139077816642812761', '中国北京市海淀区清河中街68号729号6楼', '1987-02-09', 0, 0, 'mryan8', '2006-10-03', 'moraryan', '2005-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS105072993701', 'Annie Mills', 0, '+81 3-6215-9809', 2, '739508918906554003', '日本東京港区東新橋一丁目5番3号44号室', '1989-09-07', 0, 0, 'annimi', '2020-04-25', 'manni9', '2017-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS388237935266', 'Luis Dunn', 1, '+86 160-1507-8868', 3, '935209182272204123', '中国广州市天河区天河路214号华润大厦7室', '1992-03-12', 0, 0, 'ludunn', '2005-07-23', 'luisdunn1121', '2003-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS990426112597', '青木百花', 1, '+86 10-966-4150', 1, '979489645032087259', 'Room 49, 624 Sanlitun Road, Chaoyang District, Beijing, China', '1993-01-06', 0, 0, 'momoaoki', '2003-08-04', 'momoka306', '2012-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS024087947750', 'Terry Morris', 1, '+86 28-4864-5377', 0, '625794916345196376', 'Room 43, No. 586, Shuangqing Rd, Chenghua District, Chengdu, China', '1988-08-27', 0, 0, 'terrymorris110', '2013-08-23', 'morrterry42', '2021-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS819285887594', '佘永發', 0, '+86 195-7159-7704', 0, '448371762443428022', '中国成都市成华区二仙桥东三路119号4栋', '1989-01-27', 0, 0, 'wingfats', '2007-08-15', 'swin1', '2008-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS250073221111', 'Bryan Soto', 1, '+86 166-2228-6890', 2, '575495237612400188', 'No.47 building, No. 253, Shuangqing Rd, Chenghua District, Chengdu, China', '1992-02-19', 0, 0, 'soto3', '2021-07-06', 'bryan18', '2010-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS811886381589', '曾嘉欣', 0, '+1 312-007-4075', 4, '567896869931543743', '554 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1997-05-04', 0, 0, 'tsang95', '2020-12-24', 'tsangky', '2020-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS658858286362', '高家強', 1, '+86 10-359-4039', 1, '400937787151506354', '中国北京市房山区岳琉路366号10号楼', '1990-09-12', 0, 0, 'kakakeung', '2007-06-04', 'kkk', '2016-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS753067231093', '段睿', 0, '+81 11-594-7780', 0, '584819167104988582', '日本札幌中央区宮の森四条六丁目1番6号38号室', '1995-02-16', 0, 0, 'duanr8', '2015-12-15', 'duan5', '2005-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS976786530648', 'Irene Gray', 1, '+86 173-3320-9723', 3, '284803494932023015', '中国成都市成华区双庆路232号华润大厦36室', '1986-04-09', 0, 0, 'irenegray00', '2006-08-05', 'grairene', '2019-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS622658585354', '清水悠人', 1, '+1 718-439-3278', 0, '147545860670717186', '815 Bergen St Apt 9, Brooklyn, NY 11217, United States', '1997-10-17', 0, 0, 'yutos', '2007-04-16', 'shy', '2005-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS669530182209', '藍志明', 1, '+81 52-670-6533', 0, '590073667541759493', '日本なごやし守山区瀬古東二丁目171番4号36号室', '1991-06-23', 0, 0, 'lcm', '2007-02-27', 'cmlam7', '2015-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS138770835644', '駱家輝', 1, '+81 52-496-6117', 4, '717404329891081090', '日本なごやし熱田区千年二丁目5番12号30階', '1988-08-31', 0, 0, 'kafai3', '2019-04-02', 'lok72', '2004-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS861518347021', '應祖兒', 0, '+1 718-342-8019', 3, '427753974657022709', '810 1st Ave Suite 32, Brooklyn, NY 11220, United States', '1987-08-11', 0, 0, 'chying', '2021-08-30', 'choyeeying5', '2019-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS833726538948', '田中一輝', 0, '+81 74-527-5234', 1, '796581416512381603', '39F, 1-7-18 Saidaiji Akodacho, Nara, Japan', '1985-01-21', 0, 0, 'itan10', '2013-05-26', 'ikkitanaka518', '2020-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS352641379149', '孫明詩', 1, '+81 52-760-8991', 2, '290648912080979103', '10F, 20 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-09-11', 0, 0, 'mingszehs', '2013-08-14', 'msh', '2002-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS803901938432', 'Micheal Wells', 1, '+86 755-756-7157', 2, '360188726863370009', 'No.9 building, 21 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1986-01-08', 0, 0, 'micheal83', '2000-09-14', 'wmi5', '2006-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS070426846843', '許頴璇', 1, '+81 90-3113-0110', 4, '144322262320473674', '29-kai, 1-7-6 Saidaiji Akodacho, Nara, Japan', '1990-05-15', 0, 0, 'wingsuen78', '2019-01-30', 'huiws2004', '2015-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS789235548515', 'Sheila Flores', 0, '+44 (1223) 26 1876', 2, '133994965180310875', 'No.38 Main building, 621 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1991-09-08', 0, 0, 'flores1111', '2018-07-04', 'floresheila', '2009-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS286283258798', 'Angela Russell', 0, '+86 21-3714-2104', 4, '703092736671586640', 'Room 24, CR Building, 733 Binchuan Rd, Minhang District, Shanghai, China', '1996-03-31', 0, 0, 'angelrussell816', '2001-12-02', 'russella', '2021-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS818679927508', '呂志遠', 1, '+81 90-3456-7152', 0, '294210826559772492', '日本東京港区東新橋一丁目5番16号45階', '1989-02-27', 0, 0, 'cyl', '2000-06-17', 'cylui', '2002-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS417816748157', '谷青雲', 0, '+81 11-268-4620', 2, '039779251123483403', 'Rm. 13, 13-3-18 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-01-16', 0, 0, 'kcw', '2001-08-26', 'chingwankoo', '2007-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS384864450783', '蔡明', 1, '+86 21-233-3280', 3, '698191529837183183', '9F, 286 Jianxiang Rd, Pudong, Shanghai, China', '1996-07-13', 0, 0, 'mingch1026', '2011-09-22', 'choiming', '2012-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS604664432827', '房杰倫', 0, '+86 20-364-0372', 1, '989847182452168465', '中国广州市白云区小坪东路799号19号楼', '1987-12-10', 0, 0, 'clfo', '2017-11-24', 'focl10', '2006-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS777699453261', '沈杰宏', 0, '+81 66-770-7390', 1, '887025881755109840', '日本おおさかし東住吉区東田辺三丁目27番12号46号室', '1988-08-09', 0, 0, 'jiehong1', '2010-10-28', 'shenjieho', '2020-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS810750176321', '小林大輔', 1, '+86 185-7980-1015', 1, '953825803578592382', 'Room 30, CR Building, 975 68 Qinghe Middle St, Haidian District, Beijing, China', '1996-01-10', 0, 0, 'daisuke4', '2014-01-16', 'kobayashidai', '2007-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS165588650347', '魏睿', 0, '+81 74-024-0468', 1, '359226639941368313', 'Rm. 45, 1-7-3 Saidaiji Akodacho, Nara, Japan', '1996-12-10', 0, 0, 'ruwe703', '2010-09-11', 'rui1968', '2001-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS350461443606', '谷口七海', 0, '+81 52-890-4956', 2, '973330683895073413', '日本なごやし瑞穂区河岸町四丁目20番5号40階', '1997-05-02', 0, 0, 'nanamt', '2006-02-17', 'tananami', '2011-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS238330398557', '莫仲賢', 0, '+81 3-6174-1318', 2, '467202219757837861', '25-kai, 1-6-6, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1989-10-15', 0, 0, 'cymo2', '2017-11-17', 'mokcy', '2009-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS364207775599', '湯詠詩', 0, '+86 21-6597-2917', 2, '452606100113453281', '中国上海市浦东新区健祥路93号26楼', '1993-05-02', 0, 0, 'wingszeton', '2004-08-05', 'tongws', '2011-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS408166481429', '錢思妤', 1, '+86 21-212-1230', 0, '232215210721761857', '中国上海市浦东新区健祥路401号32号楼', '1992-02-06', 0, 0, 'szeyuchin', '2014-05-12', 'chinsy', '2005-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS391293390060', '吳思妤', 1, '+86 160-8610-0872', 3, '286306642740890769', '中国成都市成华区二仙桥东三路220号12号楼', '1996-04-26', 0, 0, 'ngsy', '2004-08-16', 'ngszeyu', '2007-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS415580662263', 'Philip Moore', 1, '+86 769-252-2726', 4, '684230604488640273', 'Room 44, CR Building, 988 Dongtai 5th St, Dongguan, China', '1985-06-28', 0, 0, 'philip3', '2017-10-25', 'moorephilip1977', '2010-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS248918572756', '大塚樹', 1, '+86 20-0675-2783', 2, '910012901551214191', '中国广州市海珠区江南西路56号华润大厦42室', '1995-04-06', 0, 0, 'otsukitsuki', '2020-07-25', 'itsuko730', '2019-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS002099528215', '清水明菜', 1, '+44 (116) 378 3111', 1, '160744243045349078', 'Flat 21, 770 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1989-06-30', 0, 0, 'shimizuakina', '2017-09-05', 'akinashimizu', '2009-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS296903806910', '山本詩乃', 1, '+86 130-7289-6383', 2, '928931535047444379', '20F, 673 Kengmei 15th Alley, Dongguan, China', '1992-03-04', 0, 0, 'yamamotoshin529', '2004-01-06', 'yamamotoshino1207', '2009-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS094931951484', '文朝偉', 1, '+81 52-325-2384', 3, '556052042158310967', '19-kai, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1994-01-01', 0, 0, 'chiuwaiman4', '2005-08-11', 'cwman', '2001-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS064706099430', '岡田光', 1, '+81 70-5181-8266', 3, '928922666145009134', '13F, 2-5-20 Chitose, Atsuta Ward, Nagoya, Japan', '1986-03-01', 0, 0, 'okadahik', '2014-01-30', 'ho830', '2013-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS472750552386', '房梓軒', 1, '+86 21-1687-2626', 4, '734276528811629263', '中国上海市黄浦区淮海中路299号2室', '1994-12-08', 0, 0, 'fongth', '2008-01-26', 'tszhinfong', '2020-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS371518738344', '陆睿', 0, '+81 74-033-9021', 3, '986951434006495673', '日本ならし西大寺赤田町一丁目7番13号10号室', '1993-12-21', 0, 0, 'lu5', '2001-06-07', 'lu8', '2000-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS585675124133', '郭浩然', 1, '+86 28-845-8787', 2, '121565097890417859', 'Room 11, CR Building, No.769, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1989-09-24', 0, 0, 'kwokhoyin', '2009-07-01', 'hoyinkwo', '2005-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS702681789775', '谢安琪', 0, '+44 5936 962389', 4, '731405871141287032', 'No.23 Main building, 73 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1994-10-12', 0, 0, 'xieanq', '2017-04-10', 'xieanqi', '2006-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS580364070712', '村上蒼士', 1, '+81 52-102-3808', 3, '189663142249241934', '日本なごやし北区清水三丁目19番5号19階', '1987-07-12', 0, 0, 'muraa', '2020-11-10', 'murakaoshi', '2005-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS934753128863', '吳家強', 0, '+44 (1223) 93 3117', 0, '399860450783531846', 'Block 27, 128 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1992-04-02', 0, 0, 'ngkk', '2006-12-03', 'ngkk1974', '2020-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS598056343471', '酒井凛', 0, '+1 614-652-2723', 1, '394817886923190411', '824 East Alley Apt 4, Columbus, GA 43201, United States', '1987-12-18', 0, 0, 'sakairin', '2021-06-29', 'rinsak', '2004-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS201368485152', 'Tony Walker', 0, '+81 74-044-1464', 2, '902263262537566056', '11F, 1-7-11 Saidaiji Akodacho, Nara, Japan', '1993-04-16', 0, 0, 'watony', '2014-12-16', 'tonywalker', '2013-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS627569247986', '山本七海', 0, '+86 170-8489-9652', 4, '832688812602143035', '中国深圳罗湖区清水河一路257号19号楼', '1999-02-10', 0, 0, 'nanyamam', '2003-05-12', 'yamnan', '2016-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS976175947910', 'Ann Gutierrez', 1, '+86 20-869-8394', 2, '892583049751060837', 'No.22 building, 61 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1990-05-20', 0, 0, 'gutierrez57', '2009-03-18', 'gutierrez7', '2002-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS400172520747', '葉志明', 1, '+1 212-462-6327', 2, '836915398121579374', '125 West Houston Street Suite 48, New York, NY 10014, United States', '1998-09-29', 0, 0, 'chimingyip', '2008-02-29', 'chiming7', '2016-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS493891812631', '毛宇宁', 0, '+1 212-197-2561', 1, '197292065190100804', '22 West Houston Street Apartment 42, New York, NY 10014, United States', '1991-09-21', 0, 0, 'yunim', '2011-02-27', 'maoyuni114', '2009-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS516938730875', '太田翼', 0, '+44 (20) 9762 0977', 1, '393637155391083616', 'Block 45, 334 Maddox Street, London, W1S 1PU, United Kingdom', '1992-01-04', 0, 0, 'ota9', '2014-04-10', 'tsubasaota', '2004-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS709706522280', '蔡安琪', 1, '+1 212-465-7937', 2, '635360808720023197', '754 Wooster Street Apt 8, New York, NY 10012, United States', '1989-10-28', 0, 0, 'anqicai602', '2020-08-24', 'canqi', '2005-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS238349762105', '村上凛', 1, '+86 193-2172-6882', 2, '930920506078351166', 'No.32 building, 450 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1995-01-22', 0, 0, 'murin2', '2007-04-09', 'murakamiri00', '2016-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS180024239807', '山崎海斗', 1, '+86 28-559-9571', 2, '090745733372951444', '中国成都市成华区二仙桥东三路570号12号楼', '1988-03-02', 0, 0, 'yamazakikaito', '2002-01-27', 'yakai', '2006-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS352076605323', '顾岚', 0, '+1 312-376-4991', 4, '196648679962122727', '797 Rush Street Apt 36, Chicago, IL 60611, United States', '1998-01-24', 0, 0, 'gu98', '2019-10-05', 'lan2', '2021-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS138898465805', '阎致远', 0, '+86 160-3137-9713', 3, '915805331470780908', 'No.48 building, 734 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1999-02-16', 0, 0, 'yazhiyuan', '2002-09-09', 'zy54', '2000-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS236645626547', '刘詩涵', 0, '+86 28-0171-6818', 3, '310694416505514676', 'No.26 building, 629 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1996-06-27', 0, 0, 'shihan14', '2000-04-21', 'lish06', '2003-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS990766630552', '石子异', 1, '+81 66-995-8907', 0, '306476329389969065', '日本おおさかし西成区出城一丁目1番4号26階', '1992-11-10', 0, 0, 'ziyishi', '2013-10-05', 'shziy', '2015-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS414296731316', '黎浩然', 1, '+44 (1223) 88 1525', 2, '218582352550647823', 'Block 49, 764 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1998-05-31', 0, 0, 'lai127', '2000-12-14', 'hoyinl', '2004-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS026734248337', 'Karen Howard', 0, '+44 (121) 353 7946', 3, '545908178784497770', 'No.1 Main building, 831 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1985-07-11', 0, 0, 'howard619', '2014-11-17', 'howardk97', '2011-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS666252086835', 'Danielle Smith', 1, '+44 (151) 783 8254', 2, '632238331799388097', 'Flat 12, 985 Redfern St, Liverpool, L20 8JB, United Kingdom', '1985-02-04', 0, 0, 'smithdanielle', '2007-12-25', 'smitdani', '2009-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS945858034003', '阎詩涵', 0, '+81 80-7740-1944', 3, '417354936832970060', '40-kai, 3-15-17 Ginza, Chuo-ku, Tokyo, Japan', '1995-07-14', 0, 0, 'yashihan7', '2021-10-10', 'shihany', '2005-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS648390323838', '山下百恵', 0, '+1 330-007-3569', 1, '372796652753324024', '383 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1985-08-29', 0, 0, 'momoeyamashita6', '2004-02-22', 'momyamashita', '2009-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS487620595084', '伍曉彤', 0, '+86 192-6969-6896', 3, '664804982433716293', '中国北京市房山区岳琉路303号8楼', '1997-12-27', 0, 0, 'hiutungng', '2001-07-21', 'nhiutung', '2009-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS019503083721', '曾慧珊', 1, '+81 70-9343-9139', 2, '252854150302174301', '日本おおさかし西成区天神ノ森二丁目1番17号46階', '1992-03-23', 0, 0, 'twaisan', '2010-07-22', 'waisantsa', '2010-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS576606708761', '河野涼太', 1, '+1 330-960-2435', 2, '160372358370599734', '494 Riverview Road Apt 43, Akron, OH 44313, United States', '1990-03-09', 0, 0, 'ryotak', '2019-10-19', 'ryotakono', '2004-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS906666974883', '苏睿', 0, '+44 (1865) 48 3543', 3, '328111296645296452', 'No.39 Main building, 632 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-12-22', 0, 0, 'ruis83', '2015-01-10', 'ruisu', '2017-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS640877631022', 'Francis Cook', 0, '+86 10-9288-5517', 1, '224354670706278057', '中国北京市西城区复兴门内大街315号32栋', '1998-05-25', 0, 0, 'frcoo709', '2009-05-18', 'francis5', '2021-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS402672638253', '小山拓哉', 1, '+81 66-053-6825', 3, '789670198419565945', '日本おおさかし西成区天神ノ森二丁目1番19号41階', '1994-09-29', 0, 0, 'takuyko', '2002-06-09', 'koyamat3', '2002-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS190613321145', 'Amber Murphy', 1, '+44 7715 316273', 2, '734032201182737661', 'Flat 10, 441 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1988-06-24', 0, 0, 'ambermurphy', '2016-07-17', 'ambemurph66', '2021-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS792224336558', '田宇宁', 0, '+86 10-9760-5143', 1, '541500860776888935', 'Room 1, CR Building, 349 East Wangfujing Street, Dongcheng District , Beijing, China', '1991-12-23', 0, 0, 'yuningtia4', '2020-06-14', 'yunint', '2016-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS252098096124', '林睿', 1, '+44 (1865) 39 4140', 2, '700832612182828544', 'Flat 1, 128 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1986-04-27', 0, 0, 'ruilin', '2004-09-24', 'linrui2018', '2006-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS616901821077', 'Diane Anderson', 1, '+1 614-913-5262', 2, '238351504309345565', '513 Wicklow Road Suite 24, Columbus, GA 43204, United States', '1991-06-05', 0, 0, 'diane928', '2011-02-04', 'diane4', '2019-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS717765492216', '何國明', 1, '+81 66-993-7907', 1, '945513152662069609', '日本おおさかし東住吉区東田辺三丁目27番12号28階', '1998-05-10', 0, 0, 'kmho', '2007-02-18', 'kwokmingho8', '2018-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS305387509434', 'Marvin Herrera', 0, '+81 90-0088-2650', 1, '559698524945861234', '日本東京品川区東五反田五丁目2番4号26階', '1986-06-06', 0, 0, 'marvin1', '2004-02-04', 'herrera423', '2000-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS709943924359', '任杰宏', 1, '+1 213-044-1763', 3, '381024371075775261', '263 Sky Way Apt 3, Los Angeles, CA 90043, United States', '1997-03-05', 0, 0, 'jren6', '2012-07-31', 'rjiehong55', '2016-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS770674136943', '尹永發', 1, '+81 66-590-7037', 2, '500306682847082215', '36F, 3-27-17 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1990-01-14', 0, 0, 'yiwingfat123', '2017-12-07', 'wingfatyin5', '2017-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS282606517471', '伊藤葉月', 0, '+1 312-222-4392', 1, '015841344367098178', '195 Rush Street Apt 13, Chicago, IL 60611, United States', '1997-12-30', 0, 0, 'itohaz', '2003-07-24', 'ihaz', '2010-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS158568514578', '佘詩君', 1, '+81 74-555-3809', 3, '884140757249339177', '3-kai, 5 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-03-23', 0, 0, 'szesheh94', '2007-10-21', 'sksheh', '2006-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS720302838315', '何富城', 0, '+1 718-011-4589', 3, '619345339583611501', '431 1st Ave Apt 32, Brooklyn, NY 11220, United States', '1994-07-17', 0, 0, 'hofs423', '2017-01-29', 'hofushing', '2016-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS734460363741', 'Gregory Nichols', 0, '+86 21-0786-7451', 1, '202426086096887507', '22F, 972 Hongqiao Rd., Xu Hui District, Shanghai, China', '1986-06-18', 0, 0, 'gregory502', '2002-06-29', 'nicholsgregory', '2018-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS516807850764', '楊慧珊', 0, '+81 80-7425-0066', 3, '341349552728522673', '日本なごやし北区清水三丁目19番1号17階', '1993-01-10', 0, 0, 'waisanyeun62', '2008-01-01', 'yeunws', '2006-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS566792935945', '三浦和真', 1, '+81 66-173-1923', 3, '830459272254857069', '49-kai, 1-1-2 Deshiro, Nishinari Ward, Osaka, Japan', '1985-07-31', 0, 0, 'kazuma06', '2009-07-25', 'kazumamiur', '2019-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS935469126965', '陶睿', 1, '+81 70-5719-2058', 3, '965184756989126851', '日本おおさかし平野区加美東四丁目9番20号40階', '1995-01-17', 0, 0, 'taor', '2006-01-22', 'taor', '2010-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS017244227839', '邱宇宁', 0, '+81 11-672-3001', 3, '265634985033808877', '日本札幌豊平区豊平三条十三丁目3番1号27号室', '1995-12-09', 0, 0, 'yuning2', '2005-04-22', 'yuqiu511', '2018-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS734294823061', '冯睿', 1, '+44 (20) 9658 4432', 3, '796275357071812377', 'Unit 20, Oxford Eco Centre, 645 Hanover Street, London, W1S 1YD, United Kingdom', '1993-04-19', 0, 0, 'fengru', '2007-05-06', 'ruifeng', '2021-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS738719110362', '梁杰宏', 1, '+81 52-169-6911', 3, '659816956402256211', '日本なごやし北区清水三丁目19番18号15号室', '1990-08-15', 0, 0, 'lianjieho10', '2003-05-19', 'jiehonglian', '2013-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS941926841764', 'Susan Myers', 1, '+81 90-9941-5135', 3, '565203491561734407', '42-kai, 7 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-10-24', 0, 0, 'smyers', '2016-07-12', 'susan817', '2000-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS182364185874', '和田翼', 0, '+44 (1865) 90 9367', 0, '322014012369655256', 'Block 20, 484 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1987-05-27', 0, 0, 'tswada1024', '2012-05-16', 'wadat', '2013-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS986102415166', '工藤涼太', 1, '+81 52-510-1082', 2, '609533410978347338', '日本なごやし北区清水三丁目19番14号29階', '1987-12-20', 0, 0, 'kudryo7', '2019-09-06', 'ryota6', '2007-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS286951455991', '金子异', 0, '+81 70-5167-7430', 2, '632762044547778214', 'Rm. 40, 2-1-18 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-09-30', 0, 0, 'ziyiji1983', '2016-11-28', 'jzi', '2012-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS953290695395', 'Grace Aguilar', 1, '+81 80-1083-0964', 0, '758099831024686598', '50F, 3-15-1 Ginza, Chuo-ku, Tokyo, Japan', '1998-10-22', 0, 0, 'aguilgrace', '2000-11-15', 'aguilar224', '2019-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS125982090521', 'Rose Cooper', 0, '+1 330-397-7211', 2, '648746752006375205', '915 West Market Street Suite 46, Akron, OH 44333, United States', '1992-10-25', 0, 0, 'cooperr410', '2010-09-10', 'rosecooper', '2013-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS520976200907', '杉山大地', 1, '+86 153-7328-0703', 3, '017286434178275016', '中国成都市成华区玉双路6号719号华润大厦30室', '1999-02-14', 0, 0, 'sugd', '2019-04-16', 'sdaic', '2002-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS957931247860', '汪秀英', 1, '+44 (116) 155 7532', 3, '438684594641906438', 'Unit 31, Oxford Eco Centre, 746 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1993-01-14', 0, 0, 'xiuyiwang9', '2017-03-11', 'wangxiuying', '2011-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS296183366277', 'Bryan Bell', 1, '+44 5094 990041', 1, '059950456917731896', 'Flat 15, 500 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-03-18', 0, 0, 'bryan65', '2001-03-20', 'bell4', '2017-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS342068448873', '萧致远', 0, '+86 10-6004-1859', 4, '869357713428572995', 'No.49 building, 126 Dong Zhi Men, Dongcheng District, Beijing, China', '1993-01-15', 0, 0, 'zhixiao9', '2004-07-04', 'xiaoz714', '2005-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS756813290947', '金子明菜', 0, '+44 5795 074652', 2, '865376920997969283', 'No.25 Main building, 394 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1991-09-25', 0, 0, 'akinakaneko', '2000-04-11', 'kanekoakina', '2009-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS324935360107', '河野美羽', 0, '+86 197-8195-3932', 3, '028768361234618960', '中国深圳福田区景田东一街710号华润大厦48室', '1996-03-14', 0, 0, 'kono10', '2007-11-26', 'miuk41', '2015-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS823167645102', '餘發', 1, '+44 (151) 642 7793', 1, '014516024772855586', 'Block 18, 199 Hanover St, Liverpool, L1 4AF, United Kingdom', '1990-08-12', 0, 0, 'fyue1', '2006-05-20', 'fayue518', '2021-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS839813124613', 'Tracy Ford', 1, '+81 70-6774-8274', 0, '434798794514317982', '日本札幌白石区菊水三条五丁目2番6号35階', '1987-04-13', 0, 0, 'tracy7', '2013-05-22', 'fotracy', '2018-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS508975652973', '雷安琪', 0, '+1 330-692-8084', 4, '852741506465529466', '232 Collier Road 3rd Floor, Akron, OH 44320, United States', '1987-07-11', 0, 0, 'anqile8', '2000-04-28', 'anqilei', '2020-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS489968655366', '松本美羽', 0, '+81 11-161-3843', 0, '306183547554443870', '23F, 5-2-15 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-07-29', 0, 0, 'miumatsu', '2020-11-04', 'matsumotomi', '2014-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS640170307956', '翁國權', 1, '+81 80-7156-6128', 1, '908286592095638032', '日本札幌豊平区豊平三条十三丁目3番13号32階', '1996-07-10', 0, 0, 'yunkwo812', '2008-05-24', 'yungkwokk', '2011-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS754093171596', '孫家文', 1, '+44 5718 786535', 2, '213214636369556374', 'Block 9, 288 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1986-02-25', 0, 0, 'hsuakm92', '2021-01-08', 'kamanh1', '2019-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS425135411419', '袁安琪', 1, '+86 186-5293-0400', 1, '799507067364124258', '中国北京市西城区复兴门内大街357号35室', '1994-08-27', 0, 0, 'anqiy', '2019-07-19', 'yuan5', '2020-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS981083585039', '郭秀文', 1, '+86 755-240-2612', 1, '431525945512943727', 'No.26 building, 31 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1986-09-04', 0, 0, 'kwok1114', '2005-05-31', 'sauman6', '2015-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS764264902215', 'Jean Porter', 1, '+44 (151) 837 5948', 0, '763470922783862328', 'Unit 3, Oxford Eco Centre, 925 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1993-02-28', 0, 0, 'pje', '2014-06-17', 'pjean121', '2015-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS871841477161', '中川美月', 1, '+86 755-044-2562', 2, '224182853124618352', 'Room 45, 492 Shennan Ave, Futian District, Shenzhen, China', '1995-11-26', 0, 0, 'nakagmits', '2017-01-12', 'nakamitsuki41', '2014-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS005185634077', '許慧嫻', 0, '+86 20-9606-5104', 0, '422674847280485177', 'Room 29, CR Building, 919 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1987-11-11', 0, 0, 'waihanhui2005', '2010-11-21', 'huwh', '2001-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS478281391971', '陶子异', 0, '+86 186-3747-0831', 0, '888792070142469812', 'Room 39, 747 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1994-01-06', 0, 0, 'taoz', '2001-09-05', 'ziyitao', '2016-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS413702462864', '常岚', 0, '+1 614-324-4240', 3, '633210734438777420', '776 East Alley Apartment 19, Columbus, GA 43201, United States', '1997-09-20', 0, 0, 'lan1001', '2006-12-24', 'chal', '2020-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS683248225850', '蒋睿', 1, '+1 212-976-9880', 0, '708285254672857616', '809 Bank Street Suite 25, New York, NY 10014, United States', '1992-12-18', 0, 0, 'rui79', '2002-05-23', 'rj9', '2017-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS028649900712', '傅晓明', 0, '+1 718-306-1122', 3, '822969907230278661', '349 Flatbush Ave Suite 43, Brooklyn, NY 11225, United States', '1986-09-11', 0, 0, 'fuxiaoming', '2011-04-10', 'xiaomingfu2', '2017-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS186115883850', '韩子异', 1, '+81 3-5082-0192', 3, '054179366658078585', '日本東京品川区東五反田五丁目2番2号25号室', '1990-08-25', 0, 0, 'hanziyi', '2002-05-24', 'ziyi1122', '2008-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS833144262410', '斎藤一輝', 1, '+81 66-025-0935', 2, '455746993699469488', '37-kai, 2-1-18 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1986-08-04', 0, 0, 'isaito', '2020-12-30', 'ikksaito', '2015-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS019191005086', '渡部愛梨', 1, '+81 80-0291-4766', 2, '545086734855797012', '日本おおさかし東住吉区東田辺三丁目27番18号35階', '1994-02-14', 0, 0, 'wairi2000', '2020-09-30', 'watanairi1999', '2005-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS467076650340', 'Timothy Torres', 0, '+1 212-343-0856', 3, '899589891156696760', '413 Fifth Avenue Suite 14, New York, NY 10017, United States', '1988-09-02', 0, 0, 'timottorre', '2021-08-23', 'timothyt', '2004-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS497465453092', '宮崎優奈', 0, '+1 614-214-4405', 1, '356710505701510181', '381 Diplomacy Drive Apartment 2, Columbus, GA 43228, United States', '1996-03-23', 0, 0, 'miyazakiyun', '2020-12-04', 'miyazakiyu', '2022-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS257186007623', '梁子异', 0, '+81 11-782-2830', 2, '214728976811868367', '日本札幌白石区菊水三条五丁目2番2号39階', '1987-11-28', 0, 0, 'ziyi1', '2004-04-30', 'liangziyi', '2019-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS754201204945', '汤秀英', 0, '+44 (1865) 52 0182', 3, '489833220091184667', 'No.14 Main building, 442 Park End St, Oxford, OX1 1JD, United Kingdom', '1992-05-11', 0, 0, 'xiuyta', '2000-12-21', 'xiuyingta', '2011-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS605820190176', '汪子异', 0, '+44 5203 676537', 1, '935804483237476998', 'Flat 16, 752 Hanover St, Liverpool, L1 4AF, United Kingdom', '1989-05-02', 0, 0, 'ziywang', '2008-04-03', 'wanziyi', '2018-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS190603311134', 'Frank Reynolds', 0, '+86 176-4250-1076', 0, '687682307786727655', '中国成都市锦江区人民南路四段769号华润大厦9室', '1990-07-06', 0, 0, 'frankreynolds2', '2014-10-04', 'frankr', '2004-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS632074864209', '方致远', 1, '+1 614-231-4768', 2, '639409813239044366', '383 East Cooke Road Suite 17, Columbus, GA 43214, United States', '1998-06-04', 0, 0, 'zhiyuan104', '2019-12-02', 'fanzhiy3', '2012-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS223716845197', '高木海斗', 0, '+81 11-567-7958', 2, '340262261428488764', '日本札幌厚別区上野幌一条二丁目1番6号10階', '1996-01-14', 0, 0, 'takagik', '2003-03-17', 'takagikait4', '2018-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS477851281290', '松本海斗', 0, '+44 (116) 894 4469', 1, '978475317146678374', 'No.48 Main building, 707 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1989-06-19', 0, 0, 'matsumotokaito81', '2020-01-22', 'matsumotokaito506', '2008-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS156209319235', '向震南', 1, '+81 70-7600-8473', 1, '476770409858758007', '21F, 6-1-2, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1997-12-07', 0, 0, 'xianzhenn', '2015-10-10', 'zxia', '2021-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS840715713828', 'Laura Brown', 1, '+81 70-8736-6487', 2, '897145274614802553', '日本なごやし北区清水三丁目19番14号22階', '1992-08-20', 0, 0, 'bla', '2009-09-19', 'brownl', '2004-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS978372997512', '菊地舞', 1, '+81 52-172-4552', 2, '901506672843143478', '日本なごやし瑞穂区河岸町四丁目20番13号48階', '1985-12-24', 0, 0, 'makiku105', '2002-08-03', 'maiki', '2012-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS944043536926', 'Dorothy Hicks', 0, '+81 52-273-8642', 0, '139488558147014281', '日本なごやし瑞穂区河岸町四丁目20番2号22階', '1992-02-04', 0, 0, 'hdor', '2018-12-08', 'hicks17', '2019-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS632272247252', '吴璐', 0, '+1 212-195-6915', 4, '000758277438298804', '518 West Houston Street Apartment 39, New York, NY 10014, United States', '1991-10-21', 0, 0, 'wlu00', '2005-12-05', 'luwu', '2020-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS453446280014', '胡慧敏', 1, '+1 614-708-1376', 3, '247421730955053864', '400 Tremont Road Suite 3, Columbus, GA 43212, United States', '1988-04-08', 0, 0, 'waiman720', '2013-08-05', 'wuwaiman', '2012-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS807828713594', '清水紗良', 0, '+81 66-038-8796', 2, '462018145606975487', '27-kai, 3-27-9 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1993-08-05', 0, 0, 'saras1', '2021-10-19', 'ss2', '2007-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS494914445863', 'Lawrence Diaz', 0, '+86 28-6854-2320', 3, '996064771341413285', 'Room 50, 118 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1996-03-26', 0, 0, 'diaz1992', '2003-08-15', 'diazlawrence', '2011-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS064733641076', '戚國賢', 1, '+81 3-2902-2130', 1, '645014514726982513', '4-kai, 2-3-9 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-07-27', 0, 0, 'chky1996', '2020-02-25', 'kwokyinc', '2007-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS139702719335', '李子韬', 1, '+81 11-028-7211', 2, '607592447711669113', '日本札幌豊平区豊平三条十三丁目3番20号11階', '1987-06-29', 0, 0, 'zital', '2004-05-01', 'li45', '2008-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS826109435293', 'Andrew Bell', 0, '+44 (151) 674 1321', 3, '235072216469245886', 'No.36 Main building, 152 Redfern St, Liverpool, L20 8JB, United Kingdom', '1991-08-05', 0, 0, 'andrew10', '2012-11-04', 'abe', '2021-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS159938935057', '徐家玲', 0, '+44 (151) 799 9193', 3, '543844444723123043', 'Block 37, 260 Redfern St, Liverpool, L20 8JB, United Kingdom', '1995-05-02', 0, 0, 'kaling1220', '2003-10-19', 'tsui2', '2016-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS364953226365', '松田花', 0, '+81 74-483-2382', 2, '981529773625059052', 'Rm. 38, 3-9-10 Gakuenminami, Nara, Japan', '1993-07-21', 0, 0, 'hana315', '2020-07-18', 'hanamatsuda48', '2005-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS506593070510', '程璐', 0, '+1 838-779-7397', 2, '675232448296528209', '908 Central Avenue Apartment 2, Albany, NY 12206, United States', '1991-05-15', 0, 0, 'clu6', '2020-04-27', 'chengl', '2001-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS112334336729', 'Melvin Wood', 0, '+86 132-8089-4634', 3, '677933262133503993', 'No.21 building, 636 028 County Rd, Yanqing District, Beijing, China', '1986-05-12', 0, 0, 'melvinwood1987', '2017-05-14', 'wm8', '2011-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS378396758954', 'Leroy Robinson', 1, '+86 163-7208-6010', 3, '708168259238799840', '中国中山乐丰六路383号2栋', '1991-07-06', 0, 0, 'robinsonleroy', '2015-03-19', 'rler', '2007-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS663903117464', '谢宇宁', 1, '+81 11-278-0438', 2, '948570607747513200', 'Rm. 24, 5-4-9 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-03-13', 0, 0, 'yuninx4', '2000-04-25', 'xie1', '2015-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS540945832966', '程子韬', 1, '+1 838-774-3039', 3, '457683274826156456', '512 Lark Street Apartment 21, Albany, NY 12210, United States', '1997-08-03', 0, 0, 'chzi205', '2015-01-16', 'zitachen', '2010-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS504966212928', '袁致远', 0, '+81 3-6820-3491', 4, '456848047841143114', 'Rm. 3, 1-6-14, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1994-05-08', 0, 0, 'yuan9', '2019-04-30', 'yzhiyu', '2013-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS480926650965', '傅致远', 1, '+81 52-054-8548', 2, '795775430843480475', '日本なごやし北区清水三丁目19番2号12階', '1991-08-23', 0, 0, 'zhiyuanf', '2022-01-10', 'fuz', '2009-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS059884728111', '邵秀文', 1, '+1 614-952-3583', 3, '206869444001527135', '211 Wicklow Road Apartment 37, Columbus, GA 43204, United States', '1993-07-24', 0, 0, 'sism', '2001-10-10', 'smsiu2016', '2021-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS257021837588', '傅子异', 1, '+44 7324 763896', 1, '238267942253446485', 'Unit 13, Oxford Eco Centre, 705 Portland St, Manchester, M1 3LA, United Kingdom', '1988-03-01', 0, 0, 'fziyi', '2008-12-29', 'ziyifu', '2001-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS037303585536', '曹心穎', 0, '+1 212-390-0635', 1, '820960839358867861', '988 Bank Street 3rd Floor, New York, NY 10014, United States', '1988-01-23', 0, 0, 'cho9', '2019-05-18', 'chosumwing49', '2012-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS824979984176', '田村大和', 1, '+44 (1223) 70 1514', 0, '697193715138930843', 'Unit 9, Oxford Eco Centre, 540 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1985-08-24', 0, 0, 'tyamato', '2004-01-08', 'yamato3', '2001-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS891755497763', '向俊宇', 1, '+1 718-871-8901', 1, '171285087394009745', '330 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1990-08-29', 0, 0, 'chunyu223', '2000-02-25', 'cyheu', '2010-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS832534530065', '廖明詩', 0, '+81 80-4005-3715', 4, '515524172673340186', 'Rm. 3, 5-4-19 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1987-06-19', 0, 0, 'mingszeliao', '2012-02-01', 'liao1', '2009-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS881425371977', 'Fred Murphy', 0, '+44 7438 467003', 2, '309217528947805677', 'Unit 24, Oxford Eco Centre, 429 Redfern St, Liverpool, L20 8JB, United Kingdom', '1985-08-14', 0, 0, 'murphyfred', '2006-12-13', 'murphyfred2004', '2006-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS320378477380', '近藤翼', 0, '+86 169-4038-6965', 2, '457090729226828576', 'Room 27, CR Building, 554 Dongtai 5th St, Dongguan, China', '1996-07-18', 0, 0, 'tk9', '2009-01-26', 'kondot', '2010-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS390026857389', 'Marie Rose', 0, '+44 7072 269090', 4, '599992165294239148', 'Unit 48, Oxford Eco Centre, 327 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1994-09-19', 0, 0, 'marie8', '2013-01-21', 'rosemarie318', '2003-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS468776006495', '徐慧儀', 1, '+81 11-165-7016', 3, '554797834001269705', '10F, 2-1-1 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1985-04-24', 0, 0, 'waiyee806', '2014-08-23', 'tsuiwaiyee', '2018-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS876324726691', '吉田涼太', 1, '+1 213-683-7427', 1, '415478308587917010', '725 Grape Street Apt 49, Los Angeles, CA 90002, United States', '1990-07-09', 0, 0, 'ryota530', '2021-09-06', 'yoshidar727', '2000-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS555813752333', '秦致远', 0, '+86 142-7376-6970', 3, '473687920438145598', 'No.36 building, 974 Xiaoping E Rd, Baiyun , Guangzhou, China', '1997-01-20', 0, 0, 'zhiyuanq56', '2016-04-15', 'zhiyuanqin', '2006-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS122786461769', '房國明', 1, '+81 3-4322-7488', 0, '077475020071224544', '18F, 1-6-14, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1990-02-28', 0, 0, 'kmfong56', '2010-09-29', 'kmfong1025', '2013-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS315445068714', '松本美咲', 1, '+81 52-000-0907', 3, '288506510316257338', '13F, 2-5-17 Chitose, Atsuta Ward, Nagoya, Japan', '1996-07-31', 0, 0, 'matsumoto1', '2002-03-07', 'matsumoto1014', '2016-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS697325112201', '姚秀英', 0, '+86 147-1661-7245', 1, '459299063028575055', '中国北京市海淀区清河中街68号660号46栋', '1986-08-09', 0, 0, 'yaoxi', '2019-03-09', 'yaox7', '2017-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS875619467660', '方晓明', 1, '+81 70-7676-8421', 1, '455717952589143472', '9-kai, 3-9-15 Gakuenminami, Nara, Japan', '1995-12-20', 0, 0, 'fanxiao', '2014-02-18', 'fang10', '2007-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS254295920062', 'Mark Stone', 1, '+86 139-6198-0069', 3, '916931541499576128', 'No.16 building, 635 Kengmei 15th Alley, Dongguan, China', '1997-05-29', 0, 0, 'maston', '2021-04-27', 'mark89', '2020-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS881544692040', '邹岚', 1, '+81 80-1115-9932', 2, '007519111625184075', 'Rm. 11, 3-9-14 Gakuenminami, Nara, Japan', '1990-12-06', 0, 0, 'zoulan', '2011-02-19', 'lanzou', '2008-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS211197753781', '高橋陽太', 0, '+1 838-389-4031', 1, '539258677664242940', '353 Broadway 3rd Floor, Albany, NY 12207, United States', '1987-10-30', 0, 0, 'yota3', '2015-03-22', 'takahashiyo407', '2020-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS469348039878', '贺子韬', 1, '+81 70-4014-4059', 3, '159706121331698303', '19F, 12 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1994-05-16', 0, 0, 'hez', '2001-07-24', 'hezitao', '2020-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS242214427294', 'Rita Tucker', 0, '+81 52-624-0341', 3, '086856493220432660', '日本なごやし熱田区千年二丁目5番3号41階', '1985-05-14', 0, 0, 'rtucker', '2021-12-17', 'tuckerrit', '2010-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS492941202257', 'Catherine Jones', 1, '+1 213-880-8214', 1, '421246290190871107', '884 S Broadway Apt 40, Los Angeles, CA 90015, United States', '1995-11-11', 0, 0, 'cathjones', '2020-12-06', 'jones411', '2016-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS605733671483', 'Dennis Cruz', 0, '+86 167-1231-3863', 1, '381442171722785834', '中国成都市成华区玉双路6号53号华润大厦14室', '1987-01-01', 0, 0, 'cruzdennis', '2017-01-04', 'dennis7', '2000-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS882403793923', '汪裕玲', 0, '+81 66-073-9530', 2, '229602609426452136', '日本おおさかし東住吉区東田辺三丁目27番18号28階', '1991-11-07', 0, 0, 'wonyl', '2014-09-03', 'wongyl', '2006-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS448584198945', '黎頴思', 1, '+81 74-033-3776', 1, '421558406830912743', '28-kai, 3-9-6 Gakuenminami, Nara, Japan', '1996-08-13', 0, 0, 'laiwingsze62', '2005-06-05', 'wingsze1', '2005-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS724361358239', '苗頴思', 0, '+81 80-1426-1639', 0, '673535385036530987', '3-kai, 2-3-20 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-05-04', 0, 0, 'miuws', '2019-02-23', 'wsmiu63', '2015-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS864293256297', '駱杰倫', 0, '+86 142-7247-9137', 0, '606777251114432210', '中国上海市浦东新区健祥路368号3楼', '1991-02-22', 0, 0, 'chiehlun2006', '2007-04-29', 'lchiehlun', '2005-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS917377806720', 'Lori Wagner', 1, '+86 769-0848-9521', 3, '734550967045778729', '中国东莞环区南街二巷305号43楼', '1995-12-19', 0, 0, 'loriwagner9', '2013-07-04', 'loriwagner311', '2012-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS689092674627', '杨晓明', 0, '+86 28-9793-5619', 1, '082667204342972507', '中国成都市成华区玉双路6号79号华润大厦12室', '1985-12-05', 0, 0, 'yx818', '2021-03-08', 'yxi20', '2004-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS225491142103', '平野彩乃', 0, '+81 74-383-0338', 2, '061103723108532547', '日本ならし大和郡山市本庄町一丁目1番15号1号室', '1992-05-14', 0, 0, 'hiranoayano', '2018-09-21', 'hiranoayano', '2014-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS753037016202', '村田花', 1, '+81 90-0403-4209', 1, '642248887861249887', '日本ならし西大寺赤田町一丁目7番6号11階', '1988-09-13', 0, 0, 'muratah12', '2001-10-18', 'murahana', '2006-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS656615194763', 'Miguel Watson', 1, '+86 176-8929-4367', 1, '619483266044894953', '中国深圳福田区深南大道115号45号楼', '1989-10-12', 0, 0, 'miguel4', '2006-05-28', 'mwatso3', '2016-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS360142914692', 'Michael Chen', 0, '+81 66-218-5145', 2, '242423329285066031', '日本おおさかし西成区天神ノ森二丁目1番2号1階', '1989-08-22', 0, 0, 'chen2006', '2004-09-14', 'chenm', '2013-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS580655539515', '藤家明', 0, '+86 187-6106-7854', 4, '169543495103695626', 'No.20 building, 182 028 County Rd, Yanqing District, Beijing, China', '1987-02-16', 0, 0, 'kmt', '2005-11-27', 'tangkm6', '2012-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS560865956331', '段岚', 1, '+86 198-2313-2568', 0, '719558918257156224', '中国上海市浦东新区健祥路868号华润大厦14室', '1991-04-12', 0, 0, 'landua330', '2017-11-25', 'ldua1230', '2009-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS511376419070', '房詠詩', 1, '+44 (1865) 17 3780', 4, '866302747579076885', 'Flat 29, 138 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-03-23', 0, 0, 'fongwingsze4', '2001-10-02', 'wingszefong1219', '2008-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS958059565130', '松本蒼士', 0, '+44 (116) 881 1337', 2, '434586085245246497', 'Block 27, 468 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1988-09-16', 0, 0, 'maoshi', '2008-03-27', 'maos', '2005-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS319945816737', '郑睿', 1, '+81 3-7019-4019', 3, '633665930716917949', '日本東京中央区銀座三丁目12番5号49階', '1992-05-15', 0, 0, 'rui922', '2013-12-11', 'zheng86', '2009-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS310875857091', '原大和', 0, '+1 213-989-0201', 2, '729913359717192031', '527 Figueroa Street Apt 19, Los Angeles, CA 90037, United States', '1994-01-07', 0, 0, 'harayama', '2018-12-02', 'yamathara', '2003-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS974171060727', 'Sara Martinez', 1, '+81 80-9985-0920', 3, '509800832989072854', '50F, 5-2-9 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1994-06-02', 0, 0, 'saramartinez6', '2000-11-17', 'mars', '2016-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS644499264994', '夏晓明', 0, '+44 7942 041944', 1, '306955076488330877', 'Unit 33, Oxford Eco Centre, 278 Park End St, Oxford, OX1 1JD, United Kingdom', '1992-07-22', 0, 0, 'xix', '2001-01-06', 'xxiaom9', '2002-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS296914474566', 'Roger Mendoza', 0, '+1 718-480-2533', 2, '033826703652551907', '544 Bergen St Suite 45, Brooklyn, NY 11217, United States', '1994-09-25', 0, 0, 'mer', '2011-05-31', 'mendoza1', '2017-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS461134333372', '藤田明菜', 1, '+1 330-495-5024', 1, '380932483666052592', '240 Riverview Road Apartment 4, Akron, OH 44313, United States', '1998-06-19', 0, 0, 'fujitakina', '2004-04-16', 'fakina1961', '2012-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS516304900093', '田中大地', 1, '+44 (161) 931 1155', 2, '348668265698764331', 'No.1 Main building, 568 Sackville St, Manchester, M1 3BB, United Kingdom', '1986-07-13', 0, 0, 'tdaichi', '2006-01-22', 'daichit', '2008-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS241752115568', '武安琪', 0, '+81 11-815-9801', 2, '992337972011851986', '日本札幌厚別区上野幌一条二丁目1番13号7号室', '1990-03-09', 0, 0, 'anqi131', '2000-10-03', 'anqiwu', '2020-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS121311275954', '鈴木聖子', 1, '+1 838-125-0715', 3, '385710864163518803', '501 Broadway Apartment 46, Albany, NY 12207, United States', '1996-02-15', 0, 0, 'suzukisei2', '2008-02-12', 'seiks', '2017-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS152532586493', 'Rhonda Ellis', 1, '+86 760-508-7873', 2, '483789249017996815', 'No.6 building, 981 Lefeng 6th Rd, Zhongshan, China', '1994-04-24', 0, 0, 'rhonellis4', '2003-09-08', 'ellisrhonda73', '2015-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS193307989954', 'Nicholas Nguyen', 0, '+86 20-9510-6497', 1, '219561469708203107', 'No.45 building, 580 Jiangnan West Road, Haizhu District, Guangzhou, China', '1985-01-24', 0, 0, 'nn301', '2014-06-13', 'nguyni97', '2017-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS973745215188', '贺詩涵', 1, '+86 760-426-8853', 3, '055121516255615175', '37F, 956 Lefeng 6th Rd, Zhongshan, China', '1985-04-20', 0, 0, 'shihanhe', '2014-04-04', 'shihe', '2011-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS169741395613', '小野百花', 1, '+81 90-6001-2185', 3, '195420577985509829', '35-kai, 4-9-3 Kamihigashi, Hirano Ward, Osaka, Japan', '1992-06-12', 0, 0, 'momoka629', '2011-06-12', 'momokono', '2015-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS243420980958', '古天樂', 1, '+86 755-329-8191', 1, '200333808746197270', 'Room 30, CR Building, 492 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1996-04-17', 0, 0, 'tinlokk', '2014-02-03', 'tlku', '2014-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS105807285100', 'Aaron Wood', 1, '+86 10-041-3703', 4, '147416317266957507', '中国北京市朝阳区三里屯路448号43室', '1991-08-18', 0, 0, 'aaronwood6', '2017-12-08', 'aaronwo501', '2019-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS935202390496', '袁子异', 0, '+81 90-2102-4415', 3, '293371082758522210', 'Rm. 49, 6-1-12, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1998-11-09', 0, 0, 'yuziy', '2004-08-06', 'yuanzi', '2006-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS214157941789', '高木美羽', 1, '+86 28-5209-7572', 0, '727334209622062316', '中国成都市成华区玉双路6号460号18栋', '1985-11-15', 0, 0, 'miu6', '2010-08-06', 'miu1012', '2017-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS482491058629', '佐々木紗良', 1, '+86 194-0594-4443', 3, '503990665726486332', 'No.25 building, 119 Middle Huaihai Road, Huangpu District, Shanghai, China', '1986-03-12', 0, 0, 'sasara708', '2002-11-23', 'ssa6', '2000-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS440141253970', '孟秀英', 0, '+81 80-0602-4782', 0, '231740689728173910', 'Rm. 50, 5-4-13 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1985-06-27', 0, 0, 'xiuyingmeng1007', '2001-01-26', 'meng326', '2016-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS353764847446', '姜祖兒', 1, '+86 10-7034-0739', 3, '782865465484776821', 'No.40 building, 553 028 County Rd, Yanqing District, Beijing, China', '1996-10-22', 0, 0, 'changcy', '2013-05-25', 'chch', '2000-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS686261590889', 'Leslie Griffin', 1, '+81 70-6430-1990', 1, '510752537878988624', '23F, 3-19-11 Shimizu, Kita Ward, Nagoya, Japan', '1988-05-16', 0, 0, 'lg5', '2011-03-25', 'griffinleslie', '2014-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS874473935366', '苑麗欣', 1, '+86 755-7440-2272', 3, '024755118085518866', '中国深圳罗湖区田贝一路456号31号楼', '1997-11-04', 0, 0, 'laiyanyuen16', '2017-04-12', 'yuenlaiyan', '2009-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS638063114057', 'Phillip Gutierrez', 0, '+86 160-7496-5591', 2, '711504930929291704', 'No.9 building, 491 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1996-02-25', 0, 0, 'gutiphillip', '2011-05-08', 'philgu10', '2006-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS486956887961', '严睿', 0, '+1 213-174-8993', 0, '606603437331095771', '782 Grape Street Apt 36, Los Angeles, CA 90002, United States', '1988-11-14', 0, 0, 'ruiya1', '2011-07-17', 'ryan204', '2003-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS227272642998', 'Manuel Kelly', 0, '+81 70-3168-8940', 3, '061674901507170646', 'Rm. 43, 1-5-8, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1991-03-03', 0, 0, 'manuk1', '2011-08-12', 'kellm6', '2020-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS063226725502', '林家文', 0, '+81 90-6364-8626', 4, '482057050073834331', '19F, 5-19-20 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1996-01-10', 0, 0, 'kmla', '2020-01-27', 'kmlam312', '2006-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS104433937284', '王祖兒', 0, '+86 165-7268-7888', 2, '949690582566606475', '中国广州市天河区天河路526号8栋', '1994-05-10', 0, 0, 'woncy', '2000-08-21', 'choyeewong', '2011-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS337225434694', '工藤瑛太', 1, '+81 80-8981-5206', 2, '611166581123284482', 'Rm. 39, 4 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-08-09', 0, 0, 'kudeita516', '2012-02-27', 'eita9', '2008-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS208914623840', 'Anne Turner', 1, '+86 143-8102-6985', 1, '234134446116167818', '中国北京市東城区東直門內大街772号25室', '1987-12-05', 0, 0, 'antu', '2002-11-22', 'anne3', '2006-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS616679412256', 'Frederick Cole', 1, '+44 7223 722054', 2, '100151667785037113', 'No.29 Main building, 613 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1986-09-10', 0, 0, 'fco', '2010-11-25', 'fc706', '2001-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS616008505073', 'Jonathan Garza', 1, '+86 21-9503-5876', 4, '775430098859638217', '中国上海市徐汇区虹桥路452号26号楼', '1986-06-14', 0, 0, 'garzajonathan', '2009-07-30', 'jonatgarz813', '2014-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS588230988228', '文慧嫻', 1, '+81 80-8428-6448', 2, '401488577124437106', '40F, 3-27-5 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1991-10-19', 0, 0, 'whman', '2006-03-15', 'manwh527', '2019-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS509230709930', 'Randall Kelley', 1, '+81 11-362-2792', 3, '386017317459964654', 'Rm. 32, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-10-04', 0, 0, 'kellrand', '2010-10-05', 'kr4', '2004-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS087605615793', '狄永發', 1, '+81 3-1315-1510', 2, '181893780307331800', '日本東京港区東新橋一丁目5番20号29階', '1990-02-07', 0, 0, 'wingfat805', '2006-11-23', 'tiwingfat84', '2010-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS053630244707', 'Troy Graham', 1, '+1 212-680-7478', 0, '584492265409065170', '711 Wooster Street Suite 9, New York, NY 10012, United States', '1989-10-07', 0, 0, 'graham803', '2019-04-17', 'troyg13', '2007-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS140493064377', '原大地', 1, '+86 769-5858-2187', 1, '131896366075612540', 'Room 16, 988 Huanqu South Street 2nd Alley, Dongguan, China', '1993-10-12', 0, 0, 'daichi6', '2007-04-19', 'daichih', '2005-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS518261844199', '佘頴璇', 0, '+44 7527 336458', 2, '840617685253974310', 'Flat 19, 322 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1998-03-30', 0, 0, 'wsshe', '2021-04-01', 'wssheh3', '2013-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS457292475200', '谭子异', 1, '+81 11-584-8444', 0, '527989919893543101', '日本札幌豊平区豊平三条十三丁目3番7号38号室', '1986-08-02', 0, 0, 'tan713', '2007-07-08', 'ziyita', '2015-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS764160199655', '唐致远', 0, '+81 52-533-7831', 2, '830529126288602171', '日本なごやし北区楠味鋺三丁目80番17号10階', '1997-05-27', 0, 0, 'tangz', '2013-03-19', 'tangzhiyu', '2017-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS454847843170', '姜安娜', 0, '+86 146-6146-0248', 1, '401826824898266849', 'Room 1, CR Building, 960 028 County Rd, Yanqing District, Beijing, China', '1993-02-25', 0, 0, 'changon', '2013-06-25', 'conna8', '2009-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS206293283958', '有村和真', 1, '+81 70-0051-9948', 1, '437798906835956627', '4-kai, 2-1-2 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1989-07-15', 0, 0, 'kazumaarimu', '2008-12-21', 'kazumaar', '2010-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS078393214052', '史岚', 0, '+1 614-968-9636', 3, '745810108839504550', '265 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1986-03-21', 0, 0, 'lshi', '2008-09-03', 'shi127', '2019-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS814131393566', '古霆鋒', 1, '+44 5720 278220', 1, '173173630886297367', 'No.3 Main building, 370 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1996-11-16', 0, 0, 'tingfungku', '2012-12-02', 'tingfungku', '2003-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS477213918154', '陶子韬', 1, '+44 (1223) 07 7452', 2, '350995741551580851', 'Unit 35, Oxford Eco Centre, 374 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1997-05-02', 0, 0, 'zitaot', '2008-04-25', 'tazitao', '2019-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS823819540522', '馬慧敏', 0, '+81 80-5967-6026', 3, '262160246292530919', '日本なごやし守山区瀬古東二丁目171番6号41号室', '1990-07-09', 0, 0, 'wmma7', '2016-03-20', 'mawm', '2013-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS067791888357', '梅心穎', 0, '+1 838-667-4610', 0, '554554026236803439', '820 Broadway Suite 49, Albany, NY 12207, United States', '1995-03-07', 0, 0, 'swmui', '2003-12-11', 'muisw3', '2003-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS954514395861', '廖詩涵', 1, '+1 330-826-1555', 2, '661481964474644011', '5 Fern Street Suite 24, Akron, OH 44307, United States', '1990-01-11', 0, 0, 'shihan5', '2014-03-12', 'shihanliao', '2009-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS856166006767', '河野光', 0, '+86 20-778-0025', 2, '163736391608879157', 'No.4 building, 356 Jiangnan West Road, Haizhu District, Guangzhou, China', '1991-08-21', 0, 0, 'konohikaru82', '2014-11-26', 'konohi9', '2008-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS312309097192', 'Mildred Wallace', 1, '+81 74-170-1451', 3, '060018236988846919', '日本ならし学園南三丁目9番8号41号室', '1992-05-04', 0, 0, 'walm', '2007-08-04', 'wallacemildred5', '2019-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS021562533908', '徐致远', 1, '+1 312-771-8935', 3, '949881678926882327', '256 Pedway Apartment 32, Chicago, IL 60601, United States', '1992-08-16', 0, 0, 'xz525', '2004-06-15', 'xuzhiyuan', '2021-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS685341451428', 'Dale Griffin', 1, '+81 70-5213-8915', 1, '955067127588143072', '日本東京渋谷区代々木二丁目3番5号19階', '1986-03-02', 0, 0, 'griffin3', '2017-08-16', 'griffinda93', '2004-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS287121830955', '石川光', 0, '+81 3-6879-3357', 2, '100491229918022524', '日本東京渋谷区代々木二丁目3番16号23階', '1998-11-02', 0, 0, 'ishikawa4', '2012-04-26', 'ishikawahikaru', '2009-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS100267659694', '大野大輔', 1, '+86 155-4287-0904', 3, '131463790263934079', '中国中山天河区大信商圈大信南路513号37栋', '1985-12-26', 0, 0, 'onod5', '2003-11-09', 'daisukeono', '2012-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS307445530936', '阮志明', 1, '+44 (20) 7285 7176', 1, '859137112131857942', 'Flat 38, 945 Maddox Street, London, W1S 1PU, United Kingdom', '1996-11-28', 0, 0, 'yuencm', '2019-09-14', 'ychiming', '2002-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS038169402193', 'Martha Roberts', 1, '+81 3-3058-9036', 4, '726316883798089519', '日本東京中央区銀座三丁目12番3号46号室', '1986-04-08', 0, 0, 'martrobe', '2015-02-05', 'martha9', '2008-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS710597593125', '樊朝偉', 1, '+86 168-1013-2799', 1, '786593028081446376', '中国北京市東城区東直門內大街518号9栋', '1993-09-14', 0, 0, 'fancw', '2013-04-20', 'chiuwaif', '2008-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS465048983556', '于子韬', 1, '+1 614-730-1504', 3, '396773428214078832', '223 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1998-06-24', 0, 0, 'zitaoyu', '2016-09-29', 'zitaoyu6', '2019-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS803482236493', '薛睿', 1, '+81 70-7007-0972', 1, '262651379365031313', '48-kai, 19 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1992-10-21', 0, 0, 'rxue7', '2008-07-09', 'ruix', '2005-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS788032328586', '黃慧嫻', 0, '+81 74-508-6939', 1, '814413455043341540', '3F, 5 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1991-02-19', 0, 0, 'wonwh', '2016-06-16', 'waihan1942', '2009-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS578614801548', 'Ellen Snyder', 0, '+81 3-1852-5560', 2, '001698780797809279', '日本東京中央区銀座三丁目12番3号49階', '1990-08-17', 0, 0, 'els15', '2010-07-29', 'ellensnyd1218', '2017-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS963812491861', '文裕玲', 0, '+1 838-539-0537', 2, '030307788377783091', '169 Central Avenue Apt 33, Albany, NY 12206, United States', '1985-03-01', 0, 0, 'manyuling', '2009-02-16', 'manyuling', '2000-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS157394885530', '木下瑛太', 1, '+81 90-1827-9948', 0, '669942569730822075', '日本札幌中央区宮の森四条六丁目1番4号6階', '1989-06-20', 0, 0, 'kinoshita414', '2001-08-23', 'kinoshitae809', '2002-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS577007108981', '田中健太', 0, '+86 171-5565-6942', 3, '896347479699283467', 'Room 26, CR Building, 886 Dong Zhi Men, Dongcheng District, Beijing, China', '1988-10-12', 0, 0, 'tanaka3', '2006-03-31', 'kentatana421', '2009-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS290895312977', 'Craig Campbell', 0, '+81 66-220-0870', 0, '069407526459200306', '日本おおさかし西成区出城一丁目1番2号2号室', '1993-03-23', 0, 0, 'cacraig42', '2007-05-01', 'campbellcra', '2006-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS301938978756', '蔡秀英', 0, '+86 10-049-8520', 2, '980529085335124334', '中国北京市延庆区028县道87号7号楼', '1997-06-18', 0, 0, 'caxiuying8', '2005-10-11', 'xicai', '2003-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS019211237051', '戴宇宁', 0, '+81 3-4824-0262', 0, '375718793533290490', '17F, 1-6-16, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1985-08-04', 0, 0, 'dayuning', '2018-10-25', 'yuning97', '2016-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS778516483915', 'Daniel Dunn', 1, '+81 3-3709-4178', 2, '361580527376861719', '4F, 5-2-15 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-12-05', 0, 0, 'dunn05', '2005-03-11', 'duda', '2006-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS503796432760', 'Emma Dixon', 1, '+81 80-4634-0915', 2, '424513298605857722', '40-kai, 1-5-7, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-09-21', 0, 0, 'dixon1993', '2021-06-05', 'dem', '2019-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS228776109589', '薛天榮', 0, '+86 188-1716-9730', 2, '280596560104089121', 'Room 43, CR Building, 614 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1990-01-16', 0, 0, 'tinwings', '2006-12-27', 'twsit', '2020-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS744568628560', 'Linda Wells', 1, '+81 70-4804-9048', 2, '693433996253872064', '15F, 1-7-17 Saidaiji Akodacho, Nara, Japan', '1989-12-17', 0, 0, 'lindawell', '2014-12-23', 'wells1989', '2020-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS169668708793', '贺云熙', 0, '+81 52-967-6770', 3, '923121226224864056', 'Rm. 20, 2-5-4 Chitose, Atsuta Ward, Nagoya, Japan', '1985-01-28', 0, 0, 'yunxi1', '2018-09-21', 'heyunxi', '2006-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS192715922898', '吕璐', 0, '+81 70-9338-5974', 4, '310043928883453811', '日本東京渋谷区代々木二丁目3番16号18階', '1998-12-24', 0, 0, 'lulu', '2000-07-19', 'lu407', '2006-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS961792935296', '龙璐', 1, '+81 74-103-6787', 3, '685312890226719599', '日本ならし西大寺赤田町一丁目7番12号13号室', '1996-05-16', 0, 0, 'lonlu', '2009-11-02', 'longlu', '2011-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS380227572092', 'Wayne Sullivan', 0, '+81 3-1850-1025', 4, '966690468295294478', '21-kai, 2-3-8 Yoyogi, Shibuya-ku, Tokyo, Japan', '1990-04-10', 0, 0, 'wayne1', '2009-08-27', 'sullivanwayne118', '2014-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS163957883358', '池田瑛太', 0, '+44 5235 853235', 3, '290393004798241863', 'Flat 28, 738 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1988-04-08', 0, 0, 'ikeda1', '2006-12-29', 'ikedaei', '2012-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS347419464638', 'Amber Holmes', 1, '+81 3-3345-0544', 1, '387821284268101336', '日本東京港区東新橋一丁目5番14号33階', '1992-03-23', 0, 0, 'amber2013', '2014-10-03', 'holmesamber621', '2011-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS125730358385', '唐詩涵', 0, '+1 312-181-4767', 2, '270381671471543918', '36 Pedway Apartment 19, Chicago, IL 60601, United States', '1985-02-22', 0, 0, 'tshi53', '2013-06-13', 'shihan818', '2016-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS590847569755', '罗宇宁', 0, '+81 90-0688-3389', 3, '646407276747326028', '12F, 2-3-13 Yoyogi, Shibuya-ku, Tokyo, Japan', '1994-10-14', 0, 0, 'yuninglu', '2019-05-16', 'ly5', '2001-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS805520640216', '方家強', 0, '+81 70-3533-6584', 1, '953144418601856318', '39F, 1-6-16, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-11-24', 0, 0, 'kakeuf612', '2007-07-06', 'fong7', '2013-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS661923335799', '傅宇宁', 0, '+86 160-2723-6743', 2, '140547413294540520', 'Room 10, 830 Lefeng 6th Rd, Zhongshan, China', '1998-03-26', 0, 0, 'fu2', '2002-10-06', 'fyuning', '2008-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS851105960106', 'Andrea Ortiz', 0, '+86 755-143-1957', 0, '288036519670947786', 'No.28 building, 532 Jingtian East 1st St, Futian District, Shenzhen, China', '1997-07-28', 0, 0, 'ortandrea10', '2005-03-14', 'ortizandrea3', '2008-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS105272809852', '蘇永權', 0, '+86 176-4263-5825', 1, '703570055463633648', 'No.13 building, 386 028 County Rd, Yanqing District, Beijing, China', '1996-06-21', 0, 0, 'sowingkuen1014', '2007-11-15', 'sowk', '2013-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS022151959848', 'Shirley Hernandez', 0, '+1 213-306-5124', 2, '379709236106705164', '663 Grape Street Suite 41, Los Angeles, CA 90002, United States', '1989-11-29', 0, 0, 'shirleyhernandez131', '2021-09-27', 'shirleyhern619', '2000-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS127510418872', '林惠妹', 1, '+81 52-667-2185', 2, '879436649656294908', '日本なごやし熱田区千年二丁目5番9号42階', '1988-01-21', 0, 0, 'huimei93', '2011-07-29', 'lahuimei', '2020-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS134220291883', '野口美羽', 1, '+1 212-307-5932', 3, '387023471706268262', '639 Wooster Street 3rd Floor, New York, NY 10012, United States', '1985-11-29', 0, 0, 'nogucmiu3', '2006-12-05', 'miunoguchi3', '2017-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS984874592128', '李秀英', 1, '+86 755-102-9818', 1, '224341593157574502', 'Room 39, 820 Jingtian East 1st St, Futian District, Shenzhen, China', '1990-12-15', 0, 0, 'xiuying7', '2017-03-27', 'lixiuying', '2005-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS110744717067', '徐國賢', 1, '+86 755-981-1830', 2, '585071692318410537', '中国深圳龙岗区布吉镇西环路457号24楼', '1994-08-16', 0, 0, 'kwokyin2002', '2001-04-02', 'tskwokyin', '2018-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS674772214120', 'Lee Perez', 1, '+1 838-192-5663', 2, '438516171842102769', '554 State Street Apt 2, Albany, NY 12203, United States', '1999-02-16', 0, 0, 'lee8', '2017-08-01', 'perelee', '2000-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS393030227963', 'Bobby West', 0, '+1 330-593-8334', 0, '169861411876807194', '762 Riverview Road Apartment 6, Akron, OH 44313, United States', '1998-02-18', 0, 0, 'web', '2002-04-21', 'webobby2011', '2014-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS839291016345', '曹仲賢', 0, '+86 755-493-1700', 2, '089942831222414300', '中国深圳龙岗区布吉镇西环路101号9号楼', '1987-05-26', 0, 0, 'chungyinc', '2020-04-21', 'ccy', '2017-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS249684948228', 'Patricia Stewart', 1, '+81 90-4472-4530', 1, '495386192958141628', '42F, 1-5-1, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-07-19', 0, 0, 'patricia1995', '2020-04-30', 'patricia203', '2012-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS522168431760', 'Victor Sullivan', 0, '+81 11-536-8920', 4, '591372927540851461', '35F, 6-1-17, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1996-11-28', 0, 0, 'victorsullivan9', '2021-02-08', 'sullivic', '2014-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS156506503435', '贾致远', 0, '+81 74-168-7722', 2, '401798583047971473', '日本ならし西大寺赤田町一丁目7番9号37号室', '1988-11-02', 0, 0, 'zhiyujia611', '2009-07-09', 'jiazhiyuan1', '2001-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS641950060929', 'Jeffery Wilson', 0, '+81 11-920-7800', 3, '363144817533711457', '日本札幌白石区菊水三条五丁目2番2号20階', '1990-09-15', 0, 0, 'wilj', '2017-09-08', 'wilsonjeffery', '2005-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS604326643308', '孫家輝', 1, '+1 718-517-3128', 1, '807001036446648342', '766 Columbia St Suite 50, Brooklyn, NY 11231, United States', '1995-11-09', 0, 0, 'hsuan73', '2006-01-05', 'hkafai', '2007-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS096812907642', '唐天榮', 0, '+81 70-0378-7992', 3, '039381880413109744', '日本なごやし瑞穂区河岸町四丁目20番19号18階', '1991-11-23', 0, 0, 'twtong63', '2007-12-16', 'tongtinwing', '2002-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS037440747866', '黎俊宇', 1, '+81 11-353-2951', 1, '154754793827196072', '49F, 5-2-11 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1998-07-30', 0, 0, 'lchunyu', '2017-11-14', 'lachunyu', '2002-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS687446768944', '朱霆鋒', 1, '+44 (151) 451 8573', 2, '417764918138826780', 'No.42 Main building, 509 Hanover St, Liverpool, L1 4AF, United Kingdom', '1992-08-24', 0, 0, 'tingfchu54', '2014-02-17', 'ctf', '2010-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS454254641202', 'Jane Phillips', 1, '+81 70-8375-2027', 2, '170383888202892222', '27F, 4-9-20 Kamihigashi, Hirano Ward, Osaka, Japan', '1992-11-11', 0, 0, 'janephill1960', '2021-05-24', 'janephillips', '2017-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS898431735530', '钱子韬', 1, '+86 188-8833-5276', 2, '565069240669209527', '中国深圳罗湖区清水河一路866号45室', '1999-02-20', 0, 0, 'zq1990', '2005-04-13', 'qzitao10', '2013-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS890605049957', '苑安琪', 0, '+86 28-9092-2266', 2, '762820875673406830', '6F, 563 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1996-01-15', 0, 0, 'onkayyuen', '2010-04-02', 'okyuen', '2010-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS764632823367', '汪杰倫', 1, '+81 70-6781-7062', 2, '514781068727876389', '27F, 2-5-2 Chitose, Atsuta Ward, Nagoya, Japan', '1990-09-14', 0, 0, 'clwong', '2009-03-09', 'chiehwong47', '2019-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS822271191439', '三浦絢斗', 1, '+81 74-784-8319', 0, '689859578237953098', '日本ならし大和郡山市本庄町一丁目1番9号39階', '1997-10-11', 0, 0, 'aymiura2', '2015-08-07', 'ayatom', '2008-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS557555534301', '梁子异', 1, '+81 74-989-3614', 1, '371343018134584469', 'Rm. 30, 3-9-8 Gakuenminami, Nara, Japan', '1987-08-10', 0, 0, 'ziyiliang', '2007-04-29', 'ziyiliang2', '2021-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS601643666047', 'Anita Bell', 0, '+86 10-118-8012', 0, '042669710059631336', '中国北京市西城区西長安街964号22栋', '1992-04-19', 0, 0, 'beanita', '2019-10-14', 'bellan', '2006-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS970926134946', 'Thelma Chen', 0, '+86 20-2162-9822', 1, '614359228359985720', '中国广州市白云区小坪东路736号35栋', '1985-12-22', 0, 0, 'chethelm219', '2009-12-26', 'tc78', '2019-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS461153781320', '山下美咲', 1, '+86 184-6087-8778', 4, '604409419458276282', 'No.3 building, 76 Yueliu Rd, Fangshan District, Beijing, China', '1992-07-15', 0, 0, 'misakiyam', '2017-03-12', 'yamisaki', '2017-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS525628564974', 'Jacob Munoz', 0, '+81 80-8535-9971', 1, '018168250920644343', '日本札幌白石区菊水三条五丁目4番16号22階', '1999-02-17', 0, 0, 'munozjacob', '2015-12-19', 'jacob1128', '2010-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS606384188786', 'Diana Garcia', 1, '+81 52-466-2315', 1, '417288347940425948', '28F, 3-19-1 Shimizu, Kita Ward, Nagoya, Japan', '1991-07-15', 0, 0, 'dianagar2', '2018-02-18', 'gdiana', '2014-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS987541857438', '黄子异', 1, '+86 10-326-0714', 3, '310600926794309784', '中国北京市東城区東直門內大街228号23栋', '1995-04-12', 0, 0, 'ziyihuang', '2001-07-03', 'ziyihuang', '2018-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS169802888974', 'Jose Thomas', 1, '+1 718-769-0151', 1, '825718765823690954', '481 Columbia St Apartment 11, Brooklyn, NY 11231, United States', '1991-01-15', 0, 0, 'thomaj315', '2019-04-28', 'thomajose321', '2007-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS098939694662', '曹青雲', 1, '+81 11-221-1257', 0, '867252081036267414', '日本札幌中央区宮の森四条六丁目1番6号36階', '1985-07-25', 0, 0, 'cwc18', '2000-11-07', 'chochingwan316', '2005-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS594813413395', '藤家輝', 0, '+1 312-596-0887', 0, '846859273054801597', '187 Rush Street Apt 33, Chicago, IL 60611, United States', '1985-04-10', 0, 0, 'tangkaf', '2002-11-27', 'takafai', '2009-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS176215119177', '鄧頴璇', 1, '+1 330-234-2190', 3, '127507344616713207', '950 Collier Road Apartment 47, Akron, OH 44320, United States', '1996-09-18', 0, 0, 'tang1012', '2017-07-02', 'tangws4', '2003-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS841443391879', '應慧敏', 1, '+44 5206 020810', 3, '255255481393497292', 'Flat 40, 977 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1989-02-21', 0, 0, 'ywm2009', '2012-12-12', 'yingwm', '2019-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS387910730195', '毛云熙', 1, '+1 213-788-1750', 3, '020950622181394749', '66 Grape Street Apartment 47, Los Angeles, CA 90002, United States', '1995-03-06', 0, 0, 'mao07', '2003-09-03', 'maoy03', '2013-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS515915862398', '蕭慧儀', 1, '+81 80-3623-4034', 4, '555344975191941196', '日本おおさかし東住吉区東田辺三丁目27番11号33号室', '1989-06-16', 0, 0, 'waiyeesiu64', '2003-08-27', 'waiyee78', '2009-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS792339456460', '三浦架純', 1, '+86 755-2233-3645', 1, '333279824888672474', '中国深圳龙岗区布吉镇西环路387号8栋', '1998-10-19', 0, 0, 'kasumimiur', '2019-08-15', 'mika1950', '2021-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS568907482181', '毛嘉伦', 0, '+1 213-530-9467', 4, '731531127980970364', '188 S Broadway Apartment 50, Los Angeles, CA 90015, United States', '1988-12-01', 0, 0, 'mao1008', '2010-07-13', 'jialun41', '2012-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS370735670312', '呂明', 1, '+44 5990 703336', 2, '150288819376314434', 'Flat 25, 323 Maddox Street, London, W1S 1PU, United Kingdom', '1991-02-13', 0, 0, 'luim623', '2013-04-05', 'mlui17', '2022-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS183237196598', '毛詩涵', 1, '+86 150-8270-1847', 3, '283446682238759215', '中国广州市白云区机场路棠苑街五巷940号43栋', '1989-07-30', 0, 0, 'shihanm', '2017-08-17', 'maosh', '2012-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS377988295191', '樂天榮', 0, '+81 74-475-8029', 1, '016660217666864795', '日本ならし学園南三丁目9番11号33階', '1993-10-05', 0, 0, 'lok629', '2008-12-31', 'twlo66', '2017-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS102863739892', '夏詩涵', 0, '+1 330-146-5819', 2, '080921100253214555', '62 Collier Road Suite 36, Akron, OH 44320, United States', '1995-04-15', 0, 0, 'xias', '2014-06-01', 'shihaxi2', '2020-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS898730022420', '高木陸', 0, '+81 80-3182-2254', 3, '136866353434764250', '日本おおさかし平野区加美東四丁目9番12号13号室', '1996-05-18', 0, 0, 'riku50', '2012-03-13', 'takagiriku9', '2009-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS190593801626', '贾子异', 1, '+81 11-686-5750', 2, '928199798940449976', '10-kai, 5-4-14 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1993-02-09', 0, 0, 'jia8', '2002-02-22', 'ziyi62', '2011-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS835431672611', '雷梓晴', 0, '+81 80-9940-6975', 2, '927682982446291378', '18-kai, 15 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1990-09-18', 0, 0, 'tcl', '2015-12-05', 'ltszching325', '2017-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS892743032625', '今井美咲', 0, '+81 11-937-0761', 3, '844837439303506782', '日本札幌厚別区上野幌一条二丁目1番17号16号室', '1985-05-26', 0, 0, 'misim', '2004-11-19', 'imisaki9', '2021-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS630739210175', '曹詠詩', 1, '+81 3-7778-3643', 1, '579167314745944129', 'Rm. 20, 3-15-1 Ginza, Chuo-ku, Tokyo, Japan', '1994-08-27', 0, 0, 'wingszecho1220', '2021-07-04', 'chows4', '2004-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS142421365268', '马嘉伦', 0, '+44 5657 487223', 1, '445554826310494469', 'No.10 Main building, 366 Maddox Street, London, W1S 1PU, United Kingdom', '1998-09-05', 0, 0, 'maji', '2006-08-14', 'jialunma715', '2014-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS888369274083', '冯云熙', 0, '+86 769-9958-3365', 1, '508944861716947642', '中国东莞坑美十五巷355号48号楼', '1997-03-25', 0, 0, 'yunxif66', '2005-09-18', 'fengy', '2014-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS946236593139', '錢家玲', 0, '+86 21-324-4941', 3, '215213093859730555', 'Room 21, 251 Jianxiang Rd, Pudong, Shanghai, China', '1988-10-23', 0, 0, 'chkl', '2003-10-13', 'ckl', '2019-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS880255835822', '橋本美月', 1, '+1 330-732-9950', 2, '516384738107655616', '612 Fern Street Apt 11, Akron, OH 44307, United States', '1991-05-24', 0, 0, 'hashimoto20', '2007-10-02', 'hashimotom', '2013-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS552544328315', '任梓軒', 1, '+44 (1865) 58 0751', 2, '826582396815281172', 'No.50 Main building, 234 Park End St, Oxford, OX1 1JD, United Kingdom', '1986-09-28', 0, 0, 'yamth90', '2000-07-12', 'tszhin1957', '2005-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS984583504635', '孟宇宁', 1, '+86 130-8175-5448', 3, '613143862227107709', '中国北京市海淀区清河中街68号508号32楼', '1997-04-07', 0, 0, 'meyunin', '2006-07-01', 'yunimeng626', '2017-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS089894876437', 'Eleanor Rice', 0, '+44 5798 845745', 2, '116086211652045270', 'Block 34, 57 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1990-04-26', 0, 0, 'eleanrice110', '2004-10-15', 'eleanorrice721', '2009-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS754286133143', 'Jonathan Murray', 0, '+1 312-768-8826', 1, '319603053856939929', '28 Rush Street Apt 2, Chicago, IL 60611, United States', '1995-12-15', 0, 0, 'jonamurray', '2014-01-20', 'jmurray', '2011-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS492214480425', '關詠詩', 0, '+81 70-3466-1105', 1, '034984237228648358', '日本札幌清田区真栄四条五丁目19番12号15階', '1985-09-14', 0, 0, 'wingkwan', '2020-08-01', 'kwan5', '2013-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS389349688009', '萬詩君', 0, '+44 (121) 830 4334', 0, '447861340836594414', 'Flat 48, 360 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1987-04-07', 0, 0, 'skmeng', '2001-11-08', 'mengszekwan', '2002-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS626111497800', '胡晓明', 0, '+86 10-2157-5593', 0, '010233188964705723', '中国北京市房山区岳琉路526号4室', '1996-01-23', 0, 0, 'xiaominghu606', '2006-01-02', 'huxia', '2016-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS797761840411', 'Helen Reynolds', 1, '+86 191-6929-7299', 3, '639246771455904158', '中国北京市東城区東直門內大街749号31栋', '1989-03-07', 0, 0, 'rhele8', '2021-03-16', 'helenreynolds', '2012-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS128560311957', '金安琪', 0, '+81 90-2118-0395', 3, '211000941387905107', '8-kai, 3-27-11 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-11-14', 0, 0, 'jinanqi6', '2020-10-19', 'jianqi', '2007-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS806356788385', '崔岚', 1, '+86 28-4175-9822', 2, '249988431797526001', '33F, 47 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1987-02-06', 0, 0, 'cuilan', '2014-08-21', 'lancu1999', '2011-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS076447682958', 'Billy Cruz', 1, '+1 838-784-5963', 1, '592082820610625621', '295 State Street Suite 10, Albany, NY 12203, United States', '1998-01-30', 0, 0, 'bcru', '2000-05-30', 'bilcr', '2008-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS381180778475', '郝宇宁', 1, '+81 66-578-7222', 3, '778640151101796269', '日本おおさかし近江堂一丁目7番12号23号室', '1996-04-11', 0, 0, 'hao91', '2018-12-10', 'yuning423', '2020-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS067467250111', '蔣發', 0, '+86 755-7000-8546', 4, '685210714756844762', '中国深圳罗湖区田贝一路670号43室', '1986-05-10', 0, 0, 'chf1946', '2021-03-27', 'fatchia88', '2015-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS144281371262', '小島美咲', 0, '+81 70-3568-0020', 1, '962315580440161728', 'Rm. 40, 5-2-7 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-09-18', 0, 0, 'kojimamisaki', '2019-08-19', 'kojima2', '2013-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS389204371749', '房慧珊', 1, '+86 185-9149-9177', 3, '187922190464029681', '中国成都市锦江区红星路三段17号29栋', '1994-02-06', 0, 0, 'wsfo59', '2006-02-04', 'waisanfong', '2000-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS284870758196', '區明詩', 1, '+86 132-1678-1774', 1, '195131113127621320', 'Room 7, CR Building, 944 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1986-07-14', 0, 0, 'au301', '2008-06-07', 'msau', '2016-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS481279156792', 'Todd Garza', 0, '+86 760-513-4274', 0, '327814296493016677', '中国中山天河区大信商圈大信南路114号华润大厦38室', '1987-07-01', 0, 0, 'gtodd', '2007-08-16', 'todd925', '2000-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS678891341474', '田璐', 0, '+1 614-660-1110', 3, '106089149759851524', '869 Wicklow Road Apartment 49, Columbus, GA 43204, United States', '1994-04-21', 0, 0, 'lu91', '2001-11-11', 'tialu', '2016-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS069367428104', '魏子异', 0, '+44 (1865) 68 6455', 2, '108081400861602775', 'Block 9, 224 Park End St, Oxford, OX1 1JD, United Kingdom', '1986-10-15', 0, 0, 'ziwe', '2001-09-10', 'ziywei09', '2005-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS543954711261', '毛詩涵', 1, '+86 28-974-3597', 1, '252512159294433290', '中国成都市锦江区红星路三段416号4室', '1992-10-06', 0, 0, 'shihma', '2015-05-01', 'shihanmao', '2017-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS674106751831', '上田陽菜', 0, '+1 213-773-1186', 4, '859823088623306857', '611 Wall Street Apt 5, Los Angeles, CA 90003, United States', '1998-09-17', 0, 0, 'hina04', '2003-03-17', 'uhina', '2007-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS960088024667', 'Janet Bryant', 0, '+81 66-165-7500', 2, '962987494492176723', 'Rm. 46, 2-1-16 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1988-06-02', 0, 0, 'janbryant2', '2001-09-07', 'bryant516', '2018-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS088167988618', '姚國賢', 0, '+81 3-8478-3945', 4, '531820218611558781', '26-kai, 3-15-12 Ginza, Chuo-ku, Tokyo, Japan', '1985-03-13', 0, 0, 'yeowky1986', '2003-06-12', 'yeky', '2019-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS904445060026', 'Diana Snyder', 1, '+86 192-4496-6338', 1, '320316175606439645', '3F, 707 Yueliu Rd, Fangshan District, Beijing, China', '1988-03-06', 0, 0, 'snyder6', '2012-02-12', 'snyderdiana', '2005-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS189878389424', 'Brenda Wilson', 1, '+86 10-0628-4203', 3, '436323736790271112', '22F, 517 West Chang''an Avenue, Xicheng District, Beijing, China', '1986-10-29', 0, 0, 'bwilson', '2009-11-13', 'brenda513', '2007-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS350620078153', '邓杰宏', 0, '+81 66-952-7492', 4, '385641706804114228', '日本おおさかし平野区加美東四丁目9番5号11階', '1988-11-17', 0, 0, 'denj', '2015-11-14', 'dengjiehong', '2012-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS313285071283', 'Tiffany Murray', 0, '+1 213-978-8326', 0, '918097502503531980', '364 Wall Street Suite 46, Los Angeles, CA 90003, United States', '1996-01-07', 0, 0, 'tmurray', '2004-10-29', 'tmurray722', '2020-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS494295396864', '陆震南', 0, '+86 28-155-1423', 0, '181906157687293971', '中国成都市成华区玉双路6号52号38室', '1990-02-09', 0, 0, 'luz224', '2016-05-27', 'zhennan2002', '2018-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS958615009772', '蔡震南', 0, '+86 152-3389-2288', 3, '039138790909511806', '中国广州市海珠区江南西路656号19楼', '1991-06-10', 0, 0, 'caizhen1206', '2005-04-28', 'cazhe', '2002-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS936360954041', 'Frank Sullivan', 0, '+86 145-6947-9074', 0, '807411167454043355', 'Room 36, CR Building, 610 Binchuan Rd, Minhang District, Shanghai, China', '1992-12-21', 0, 0, 'sullivanfran88', '2010-03-23', 'frsullivan5', '2003-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS923114036120', '郭致远', 1, '+81 70-5887-7328', 0, '555818188521226534', '日本東京渋谷区代々木二丁目3番5号24階', '1999-02-20', 0, 0, 'guzhiyuan726', '2014-11-09', 'zhiyuan1124', '2008-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS377389578803', 'Leslie Foster', 0, '+86 10-325-0999', 3, '765913374288759168', 'Room 36, 267 FuXingMenNei Street, XiCheng District, Beijing, China', '1986-08-31', 0, 0, 'foster4', '2002-01-01', 'foster130', '2016-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS544481652317', '丸山大輔', 1, '+44 7284 638719', 1, '775758853785975190', 'Block 22, 38 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1986-12-08', 0, 0, 'damaruyama65', '2000-02-06', 'daisuke413', '2009-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS667125109838', '金子紗良', 0, '+86 28-185-1501', 2, '407617780359904470', '中国成都市成华区双庆路580号39号楼', '1997-08-14', 0, 0, 'skan', '2008-12-11', 'kasara509', '2020-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS349989178709', '加藤彩乃', 1, '+1 838-465-1748', 1, '823602491824021900', '376 State Street Suite 32, Albany, NY 12203, United States', '1994-10-11', 0, 0, 'ayanokat', '2017-05-26', 'katoa', '2012-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS325014252841', '井上愛梨', 0, '+44 7195 713982', 3, '279051815230521800', 'No.33 Main building, 643 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1992-08-01', 0, 0, 'inoueairi8', '2016-04-23', 'airiino5', '2002-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS922390476136', 'Margaret Kelley', 1, '+86 160-6884-3295', 2, '646652352151188315', '中国广州市天河区天河路421号20栋', '1992-02-08', 0, 0, 'kelleymar', '2007-01-03', 'margaretkelley', '2008-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS942442335714', '尹志遠', 0, '+81 80-3775-2301', 4, '153226823250925426', 'Rm. 29, 6 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1995-04-30', 0, 0, 'chiyuen9', '2017-05-09', 'ycy', '2011-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS915881213988', '毛惠妹', 0, '+44 (116) 023 7271', 2, '906411026414644828', 'Flat 19, 448 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-10-24', 0, 0, 'mhm', '2019-10-16', 'mohm', '2011-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS179143028579', '崔睿', 1, '+1 718-599-1684', 1, '130301540569777966', '64 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1997-01-22', 0, 0, 'ruicu6', '2002-07-04', 'ruicu17', '2004-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS997325419440', '鐘明', 1, '+86 161-2918-6886', 1, '765095369715015530', '中国中山京华商圈华夏街187号10室', '1995-05-12', 0, 0, 'mingchung', '2013-03-12', 'minchung', '2021-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS598873696116', '韦子韬', 0, '+81 90-1314-2489', 2, '405275213712278701', '日本ならし大和郡山市本庄町一丁目1番19号12号室', '1993-04-19', 0, 0, 'zitwei7', '2012-07-11', 'zitaowei8', '2006-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS116280864489', '彭宇宁', 0, '+44 7288 073087', 3, '655452385978682260', 'No.4 Main building, 127 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1996-03-11', 0, 0, 'peyunin', '2000-10-09', 'yunipeng311', '2010-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS883225448848', 'Judith Bailey', 0, '+86 769-072-8390', 0, '013343763525627981', '中国东莞坑美十五巷924号36号楼', '1997-05-04', 0, 0, 'bailey9', '2018-08-14', 'judithbailey', '2019-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS946256007000', '江麗欣', 0, '+81 11-507-5685', 3, '544622932383806887', '25-kai, 5-4-15 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-07-20', 0, 0, 'lykon', '2012-06-29', 'konlaiyan', '2016-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS498834645771', 'John Barnes', 1, '+44 (1223) 44 2210', 3, '151045733656406581', 'Unit 30, Oxford Eco Centre, 632 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1993-03-15', 0, 0, 'bjohn', '2005-03-29', 'bjohn1205', '2014-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS827928051556', '戴安娜', 1, '+86 190-1854-3837', 1, '566568695226120184', '中国成都市锦江区人民南路四段597号7号楼', '1994-08-23', 0, 0, 'daon08', '2000-02-01', 'daionna724', '2013-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS483343410800', 'Jeffrey Burns', 1, '+1 614-915-2311', 1, '668281913098545935', '682 East Cooke Road Suite 23, Columbus, GA 43214, United States', '1997-01-04', 0, 0, 'jefb', '2015-02-13', 'buj', '2007-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS295392190655', '向嘉伦', 1, '+81 80-5671-0754', 2, '882697151257694055', '日本札幌厚別区上野幌一条二丁目1番7号35階', '1988-02-15', 0, 0, 'xiang8', '2006-06-15', 'xiangjialun1', '2021-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS940870221488', 'Curtis Taylor', 1, '+86 193-4779-7148', 1, '069546948088606719', 'Room 50, CR Building, 64 West Chang''an Avenue, Xicheng District, Beijing, China', '1998-12-23', 0, 0, 'tc1', '2007-03-04', 'taylorcurti', '2021-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS483540330011', 'Anthony Woods', 1, '+81 80-9815-5580', 1, '050057139541873749', '日本なごやし北区楠味鋺三丁目80番17号49号室', '1986-02-20', 0, 0, 'anthowoods', '2011-10-16', 'wooanthony1209', '2011-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS762726519131', '山下聖子', 1, '+86 755-960-9397', 1, '155829614995226992', '中国深圳龙岗区布吉镇西环路259号42室', '1998-11-09', 0, 0, 'yamashitaseiko', '2011-06-06', 'yseik218', '2008-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS047793403923', '魏云熙', 1, '+81 11-024-4922', 3, '053029316528253187', 'Rm. 16, 5-4-16 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1994-10-24', 0, 0, 'wyun5', '2002-09-30', 'yunwei', '2021-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS826156462565', '餘天榮', 0, '+1 838-219-7498', 0, '906939031320209626', '336 Lark Street Apartment 25, Albany, NY 12210, United States', '1992-09-27', 0, 0, 'twyu', '2014-03-14', 'yuetinwing', '2001-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS909968493916', 'Josephine Gonzales', 1, '+44 5386 016906', 4, '160951591663785953', 'No.2 Main building, 476 Redfern St, Liverpool, L20 8JB, United Kingdom', '1998-10-01', 0, 0, 'josephinegonza', '2001-08-08', 'gonjos', '2009-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS907838380957', '宮崎彩乃', 0, '+44 (20) 1863 7336', 2, '105755941634291675', 'No.19 Main building, 361 Pollen Street, London, W1S 1NG, United Kingdom', '1994-04-20', 0, 0, 'ayamiyazaki', '2014-04-25', 'miyazakiayano', '2008-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS961169385414', '竹内舞', 0, '+81 3-7368-1918', 3, '702482850057829809', '日本東京渋谷区代々木二丁目3番4号33階', '1993-06-30', 0, 0, 'takeuchimai9', '2006-07-09', 'tma', '2011-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS977147943280', '黎詩君', 1, '+81 11-116-7693', 4, '803939663077559711', '14-kai, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1993-02-11', 0, 0, 'lai217', '2020-06-05', 'laisze', '2014-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS319952323807', '池田桜', 1, '+81 52-401-3323', 0, '694536075696548713', 'Rm. 38, 11 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1989-06-24', 0, 0, 'sakuikeda', '2001-11-25', 'sakui2', '2018-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS844034154111', '竹内蓮', 1, '+86 10-7423-4007', 3, '643167507321784948', 'No.41 building, 93 FuXingMenNei Street, XiCheng District, Beijing, China', '1985-02-26', 0, 0, 'rentakeu202', '2004-10-09', 'ret209', '2003-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS332028919430', '樊慧琳', 0, '+81 3-5862-0397', 0, '840807471175935495', '23F, 1-6-16, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1985-01-20', 0, 0, 'wlf', '2008-12-02', 'fanwl', '2000-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS897685148091', '福田彩乃', 1, '+81 70-2268-1972', 0, '243604442873953912', '日本ならし学園南三丁目9番13号44号室', '1987-01-27', 0, 0, 'ayanof', '2013-12-09', 'fukuda61', '2002-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS461202752720', '张晓明', 0, '+44 7009 570367', 1, '310051035752828043', 'No.19 Main building, 334 New Street, Birmingham, B2 4DB, United Kingdom', '1986-02-15', 0, 0, 'xiaomingzhang51', '2013-12-15', 'xiaomz624', '2006-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS319770802232', 'Elaine Mendoza', 0, '+81 11-385-7764', 2, '243259403953555102', '48F, 5-19-8 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1989-08-25', 0, 0, 'elainem19', '2019-07-25', 'mendoela', '2007-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS500253440860', '内田玲奈', 1, '+86 156-8249-0387', 2, '918705522098397816', '49F, 820 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1999-01-03', 0, 0, 'renauchida', '2000-06-15', 'reuchida', '2020-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS022687413579', '應家強', 0, '+81 80-2287-7606', 1, '190489115528648942', '日本札幌白石区菊水三条五丁目2番5号27階', '1999-01-19', 0, 0, 'kakeungying', '2000-07-24', 'ykk9', '2010-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS626052463753', '田中美緒', 0, '+86 760-5001-8756', 4, '117900010634827067', '4F, 10 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1991-10-25', 0, 0, 'tmio1998', '2021-08-19', 'mita720', '2002-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS402888922785', '高國權', 0, '+81 11-516-2055', 3, '264772630659406515', '37-kai, 2-1-5 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1995-12-07', 0, 0, 'kakk620', '2009-06-13', 'kwokkkao', '2017-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS524924874962', '松本愛梨', 1, '+81 66-524-1475', 1, '525513413418763489', '13F, 1-7-19 Omido, Higashiosaka, Osaka, Japan', '1993-03-02', 0, 0, 'matsumoto406', '2012-10-19', 'matsumotoair', '2000-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS445988915442', '石田大和', 0, '+86 769-979-7397', 3, '173293789895659368', '中国东莞环区南街二巷402号43室', '1997-11-20', 0, 0, 'yamish3', '2017-02-28', 'yamatoishida4', '2003-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS599596623454', 'Catherine Mendoza', 1, '+86 769-2553-5176', 3, '548259687749768502', 'Room 48, CR Building, 189 Shanhu Rd, Dongguan, China', '1991-06-29', 0, 0, 'cmendoza', '2020-09-12', 'cathemend208', '2018-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS590456750799', 'Rose Carter', 0, '+81 90-3615-9306', 2, '694503305612920899', '日本札幌白石区菊水三条五丁目4番20号50階', '1994-01-07', 0, 0, 'crose', '2018-12-10', 'carterro2', '2007-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS063276573059', 'Christopher Mills', 0, '+86 134-9737-7142', 0, '535766811368956633', 'Room 29, 626 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1991-08-21', 0, 0, 'christopher1', '2018-06-18', 'mills5', '2018-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS107267411399', '武田光', 0, '+1 312-181-6575', 4, '795192199519135507', '822 Rush Street Apt 37, Chicago, IL 60611, United States', '1997-05-10', 0, 0, 'hikaru41', '2015-02-22', 'takeda118', '2009-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS105403919181', '中島彩乃', 0, '+44 5220 760091', 3, '127202303414585837', 'No.49 Main building, 363 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1996-09-23', 0, 0, 'anakaj', '2008-04-07', 'ayanon', '2006-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS002936696932', '何子韬', 0, '+81 70-7816-8318', 3, '379686536494448971', '20-kai, 1-1-5 Deshiro, Nishinari Ward, Osaka, Japan', '1985-12-12', 0, 0, 'zitahe2004', '2007-10-27', 'hzitao2', '2017-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS027839123799', '盧淑怡', 0, '+86 132-0329-4971', 4, '414110302324047925', 'Room 22, 503 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1992-02-10', 0, 0, 'sukyeel', '2006-05-29', 'lsukyee', '2006-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS627504331484', '苏云熙', 0, '+1 213-063-2481', 3, '494145081727215025', '507 Sky Way Apt 21, Los Angeles, CA 90043, United States', '1985-03-14', 0, 0, 'yunxis1974', '2015-04-26', 'suyunx', '2003-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS388942513009', 'Edward Mason', 1, '+44 (1223) 62 5698', 3, '451419432736750740', 'Unit 18, Oxford Eco Centre, 431 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1996-03-28', 0, 0, 'masonedward', '2005-03-19', 'masoned', '2001-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS814623436085', '周國賢', 0, '+86 755-471-0866', 4, '433532175921442948', 'Room 32, 457 Jingtian East 1st St, Futian District, Shenzhen, China', '1992-03-06', 0, 0, 'chowkwo98', '2009-10-10', 'kychow', '2000-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS600865336412', '石田蒼士', 0, '+44 7680 739595', 0, '387340406021877981', 'Flat 34, 591 New Street, Birmingham, B2 4DB, United Kingdom', '1994-03-04', 0, 0, 'isaoshi7', '2012-06-26', 'ishidaao', '2003-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS405830305003', '刘安琪', 1, '+44 (1223) 52 4485', 2, '086186347883706704', 'No.49 Main building, 602 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1987-10-20', 0, 0, 'al2016', '2005-01-26', 'liuan725', '2016-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS139883646161', 'Mary Myers', 1, '+1 212-645-5915', 1, '300635496226230522', '942 Fifth Avenue Apartment 32, New York, NY 10017, United States', '1986-05-04', 0, 0, 'marymy', '2010-07-29', 'marymyer', '2007-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS507517656314', '韦嘉伦', 1, '+44 5152 539821', 0, '663790439721048420', 'Unit 3, Oxford Eco Centre, 502 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1990-08-27', 0, 0, 'jwei', '2009-10-16', 'weijial', '2003-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS516753557473', 'Leonard Weaver', 0, '+44 5454 712151', 3, '106543642331417698', 'Block 21, 514 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1993-05-07', 0, 0, 'leoweave', '2020-12-03', 'lw3', '2003-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS207044330210', '任俊宇', 1, '+44 5500 633024', 4, '013557111696492394', 'Block 9, 416 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1994-10-22', 0, 0, 'chunyuya', '2009-03-22', 'cyy', '2009-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS415358453643', '韓梓晴', 0, '+81 80-9347-3535', 3, '964409471037107833', '日本ならし学園南三丁目9番3号22号室', '1998-09-08', 0, 0, 'hantszching', '2019-07-22', 'tszching7', '2013-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS353883034811', '史嘉伦', 0, '+86 176-1984-0979', 1, '398380135810485421', '中国广州市白云区机场路棠苑街五巷175号43楼', '1993-11-21', 0, 0, 'shijia1', '2001-12-16', 'jialuns', '2009-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS900414870025', '菅原蓮', 1, '+1 213-071-1851', 3, '136530316750894293', '857 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1993-10-18', 0, 0, 'rensug9', '2000-01-12', 'sugawara520', '2020-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS736452641365', '中島優奈', 1, '+1 213-030-0648', 3, '200078628457059926', '374 Alameda Street Apt 41, Los Angeles, CA 90002, United States', '1988-10-16', 0, 0, 'nyuna', '2012-03-06', 'nyuna', '2003-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS198552863386', '谭秀英', 1, '+86 10-8144-1428', 4, '675028842023196664', '中国北京市延庆区028县道733号8栋', '1987-01-13', 0, 0, 'xiuyingtan', '2016-07-27', 'xiuying6', '2010-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS472781877683', 'Sheila Gordon', 1, '+1 330-307-5566', 1, '909119466235011972', '380 Fern Street 3rd Floor, Akron, OH 44307, United States', '1987-07-27', 0, 0, 'sheigo', '2008-07-11', 'sheig00', '2002-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS557942969638', '尹永發', 1, '+81 66-117-1402', 2, '917602008826390466', '日本おおさかし西成区出城一丁目1番11号2階', '1998-10-25', 0, 0, 'wfyin98', '2020-12-12', 'wingfatyin', '2015-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS152308365217', '杜嘉伦', 0, '+81 74-644-1651', 4, '165550451795408877', '日本ならし学園南三丁目9番20号48号室', '1997-09-10', 0, 0, 'dujial', '2001-04-18', 'jidu401', '2014-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS825570754239', 'Bradley Hall', 1, '+81 3-0775-2762', 3, '980570448010506558', 'Rm. 16, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1988-10-07', 0, 0, 'halbradl', '2006-06-28', 'hallbradl', '2001-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS540509582177', '菊地花', 1, '+86 199-8705-2917', 0, '363161933764527536', '11F, 94 Shennan Ave, Futian District, Shenzhen, China', '1993-03-31', 0, 0, 'hanak', '2013-09-18', 'hana1117', '2009-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS219475381864', '井上光', 1, '+44 (1865) 08 3976', 0, '646828545957262245', 'Unit 43, Oxford Eco Centre, 555 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1997-06-28', 0, 0, 'hinoue78', '2018-10-21', 'inoue608', '2020-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS746859930292', '樊朝偉', 0, '+86 28-083-0973', 3, '364049145683544956', '中国成都市成华区二仙桥东三路448号4楼', '1997-12-28', 0, 0, 'fan623', '2002-07-23', 'chiuwaifa', '2016-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS774719555912', '王子异', 1, '+81 80-6638-0046', 1, '635697548748803797', '48-kai, 2 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1996-06-14', 0, 0, 'wang67', '2015-05-11', 'ziyiwang', '2006-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS259720176019', '市川美月', 0, '+86 195-3577-1905', 0, '020619199363013900', 'Room 12, CR Building, 755 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1993-05-09', 0, 0, 'miichi407', '2019-04-12', 'im10', '2019-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS847942139072', '中山大和', 1, '+81 66-269-2513', 2, '811645171299187512', '33-kai, 2-1-14 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1988-09-26', 0, 0, 'nakayamay210', '2001-12-10', 'yamatonakayama4', '2002-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS718399972021', '宣志明', 1, '+44 (151) 394 6560', 0, '158825020975854055', 'Flat 21, 309 Hanover St, Liverpool, L1 4AF, United Kingdom', '1996-05-11', 0, 0, 'hsuancm410', '2001-01-04', 'chiminghsua704', '2017-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS865505757000', '段璐', 1, '+81 70-6986-1697', 3, '644105001866011853', '33F, 6-1-7, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1995-01-20', 0, 0, 'luduan', '2010-12-11', 'duan121', '2017-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS318981205175', '黃慧儀', 0, '+81 90-3405-6734', 2, '810756442195573897', '日本おおさかし西成区天神ノ森二丁目1番11号14階', '1989-04-05', 0, 0, 'waiyeewon226', '2005-05-28', 'wongwy5', '2013-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS801310669138', '李子异', 1, '+81 66-570-8061', 2, '431576862178523997', '日本おおさかし東住吉区東田辺三丁目27番8号16階', '1996-08-30', 0, 0, 'ziyili', '2018-10-17', 'ziyli1206', '2003-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS005499137177', '原葵', 1, '+86 10-5677-9705', 0, '987366726527379625', 'No.9 building, 947 East Wangfujing Street, Dongcheng District , Beijing, China', '1991-04-04', 0, 0, 'aoihar904', '2002-06-21', 'harao', '2002-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS965421749278', '汪慧敏', 1, '+44 (20) 2080 9069', 0, '818094294587751578', 'No.4 Main building, 120 Hanover Street, London, W1S 1YD, United Kingdom', '1988-12-21', 0, 0, 'waiman2', '2006-05-05', 'wmwong111', '2010-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS950827552258', '余子异', 1, '+81 90-1631-8838', 4, '961307170469220656', '日本おおさかし西成区出城一丁目1番16号2階', '1996-06-03', 0, 0, 'ziyi830', '2018-10-11', 'yziyi620', '2001-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS774349637967', '斎藤七海', 1, '+86 10-6325-4084', 3, '377869620502773973', '中国北京市东城区东单王府井东街850号7号楼', '1989-12-09', 0, 0, 'nanasaito', '2005-02-15', 'ns86', '2009-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS097825399679', '姜宇宁', 1, '+81 11-537-2672', 1, '405215695226366975', '38-kai, 2-1-7 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1988-09-08', 0, 0, 'yuningjiang', '2003-09-18', 'yuninj6', '2005-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS631906636124', '樊淑怡', 0, '+1 330-475-7556', 1, '666170455017172574', '863 Collier Road Apt 4, Akron, OH 44320, United States', '1987-11-04', 0, 0, 'syfan1971', '2003-06-30', 'sukyeefan', '2000-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS887631171891', 'Julia Gomez', 1, '+81 52-438-5067', 4, '562453685212091158', '日本なごやし北区清水三丁目19番15号11階', '1987-03-25', 0, 0, 'jugomez1', '2012-02-29', 'gojulia', '2003-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS363244971233', '樊浩然', 1, '+81 90-0342-0261', 4, '665043230953951288', '日本なごやし北区楠味鋺三丁目80番4号18階', '1985-06-14', 0, 0, 'hoyinfan', '2012-06-02', 'fan03', '2017-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS826532764592', '陶安琪', 1, '+44 (121) 093 2648', 3, '918402733200730957', 'Block 20, 606 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1988-10-21', 0, 0, 'taoa', '2014-01-18', 'anqitao', '2000-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS552694292708', 'Edna Moore', 1, '+86 769-4692-2701', 2, '310931775893711651', '中国东莞东泰五街338号华润大厦3室', '1989-09-18', 0, 0, 'emo512', '2010-11-06', 'mooreedn128', '2000-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS419433933677', '有村明菜', 0, '+81 11-529-2885', 1, '424039239899422990', 'Rm. 45, 13-3-16 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-12-11', 0, 0, 'akinaarimu', '2010-08-20', 'arimuakina6', '2015-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS753213954846', '佐藤拓哉', 1, '+1 718-161-5921', 3, '033112615360368972', '770 1st Ave Apartment 46, Brooklyn, NY 11220, United States', '1991-03-06', 0, 0, 'takuyasa', '2007-05-14', 'sattakuy', '2003-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS632010267478', '杨宇宁', 1, '+81 80-6128-8655', 1, '671366888237527459', '日本札幌白石区菊水三条五丁目2番9号11階', '1987-05-17', 0, 0, 'yuning7', '2016-06-29', 'yy8', '2013-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS442887204366', 'Linda Martin', 1, '+1 718-595-2133', 3, '913368921558898783', '329 1st Ave Apt 46, Brooklyn, NY 11220, United States', '1993-09-30', 0, 0, 'martinlind', '2016-07-30', 'mli', '2003-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS473636096736', '有村陽太', 0, '+44 5266 302450', 2, '225129444907972682', 'Unit 42, Oxford Eco Centre, 998 Pollen Street, London, W1S 1NG, United Kingdom', '1993-08-01', 0, 0, 'yoarim4', '2012-12-19', 'arimurayota3', '2006-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS994554924511', '岡本葵', 1, '+81 70-1042-6409', 1, '831097890827267506', '8F, 1-7-1 Saidaiji Akodacho, Nara, Japan', '1990-02-13', 0, 0, 'okaoi1106', '2014-08-11', 'okamotoaoi', '2018-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS039464151912', '石田優奈', 1, '+1 213-706-8895', 3, '359092420951986185', '938 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1985-12-31', 0, 0, 'isyu', '2016-08-07', 'ishiyuna', '2010-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS327290476844', '横山拓哉', 0, '+81 52-883-1088', 2, '211617169747308450', '日本なごやし瑞穂区河岸町四丁目20番3号11階', '1988-06-25', 0, 0, 'yokoyamatakuya422', '2015-07-27', 'yota213', '2002-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS401561380270', 'Shirley Alvarez', 0, '+86 769-925-3468', 1, '288467447925308875', '中国东莞东泰五街29号14号楼', '1994-04-10', 0, 0, 'alvars', '2011-05-28', 'shalvar', '2005-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS840453945806', '麥嘉欣', 1, '+86 755-0329-7596', 3, '744381951877538571', 'Room 21, 523 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1985-01-07', 0, 0, 'makkaryan2012', '2003-03-15', 'kym109', '2010-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS144538914150', '毛嘉伦', 0, '+86 158-2858-4197', 3, '529804601428974434', 'Room 31, 528 Shennan Ave, Futian District, Shenzhen, China', '1998-10-14', 0, 0, 'jialun2', '2009-01-05', 'maojialun7', '2014-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS011481608257', '古安娜', 1, '+44 7930 258377', 0, '752822277466212499', 'Flat 47, 173 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1997-10-07', 0, 0, 'konna9', '2015-03-21', 'kuon', '2000-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS862971702336', '小島結翔', 0, '+81 11-654-7352', 3, '156034317684413319', '日本札幌白石区菊水三条五丁目4番19号16号室', '1990-01-18', 0, 0, 'yuito1996', '2006-06-18', 'kojiyuito', '2005-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS591138888115', '區家文', 0, '+1 614-569-4240', 3, '216464854012182941', '817 East Alley Apt 26, Columbus, GA 43201, United States', '1986-04-14', 0, 0, 'kma1215', '2014-01-31', 'aukaman', '2016-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS464877039234', '岡田桜', 0, '+81 11-654-2944', 1, '112220661729755339', '日本札幌中央区宮の森四条六丁目1番16号16号室', '1991-03-02', 0, 0, 'okadasakura704', '2009-07-17', 'okadasakur', '2017-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS496106244895', '高木明菜', 1, '+81 3-6756-9773', 4, '465367500635224882', '日本東京中央区銀座三丁目12番7号18階', '1990-02-07', 0, 0, 'takina98', '2018-07-02', 'akinataka', '2018-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS667569239164', '小野百花', 1, '+86 181-4183-0258', 0, '864022765571643993', '中国上海市徐汇区虹桥路567号32楼', '1993-12-21', 0, 0, 'momoka107', '2013-11-08', 'momokaon', '2009-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS166212276003', '谭睿', 1, '+86 21-698-6572', 2, '874626581089480762', '中国上海市浦东新区健祥路535号40室', '1998-07-29', 0, 0, 'rtan', '2015-10-21', 'rui428', '2009-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS464691892472', '宣祖兒', 1, '+44 (116) 458 6089', 3, '658697506293874088', 'Flat 21, 908 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1993-02-19', 0, 0, 'hsuan7', '2004-03-18', 'hsuan813', '2014-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS593564907579', '丁璐', 1, '+44 7506 635206', 4, '089742713722585474', 'No.27 Main building, 544 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1990-10-20', 0, 0, 'luding', '2013-10-15', 'ding1996', '2016-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS261483699443', '陶家明', 1, '+81 66-272-2838', 1, '713889901458425449', '日本おおさかし近江堂一丁目7番1号43階', '1994-04-02', 0, 0, 'taokm', '2015-04-27', 'kaming45', '2022-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS146441302531', '後藤拓哉', 0, '+44 7749 378484', 4, '966630398856192298', 'Unit 15, Oxford Eco Centre, 243 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1996-10-09', 0, 0, 'takugoto7', '2021-07-08', 'goto2', '2007-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS328883138128', 'Stephanie Jimenez', 0, '+86 10-559-9110', 4, '308955498934224125', 'Room 25, 900 Sanlitun Road, Chaoyang District, Beijing, China', '1998-12-14', 0, 0, 'stephanie6', '2011-01-11', 'sjimenez', '2019-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS945112440943', '任嘉伦', 1, '+86 139-3130-4186', 1, '281511683645355611', 'Room 43, 71 68 Qinghe Middle St, Haidian District, Beijing, China', '1990-10-25', 0, 0, 'renjialun619', '2006-05-06', 'rjial9', '2008-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS986796922217', 'Thomas Diaz', 1, '+86 21-1350-8174', 4, '293665052536100981', '中国上海市浦东新区健祥路463号8楼', '1992-08-01', 0, 0, 'thomas9', '2011-06-21', 'diat', '2009-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS698216203487', 'Bobby Kennedy', 0, '+86 755-091-9973', 3, '955123760225112485', '中国深圳罗湖区清水河一路791号16栋', '1991-09-30', 0, 0, 'bobby1973', '2007-02-24', 'bobbykenne', '2001-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS539558142614', 'David Russell', 0, '+44 5339 662241', 2, '490722846053282227', 'Flat 32, 122 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1991-03-28', 0, 0, 'rdav720', '2014-01-05', 'davidru822', '2008-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS156099286064', '常震南', 0, '+86 755-360-1191', 2, '107068451681453503', 'Room 35, 37 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1993-01-28', 0, 0, 'zchang', '2016-09-17', 'chanzhennan', '2001-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS847536825139', '何睿', 1, '+86 135-9316-0516', 2, '192557455374077002', 'Room 13, CR Building, 639 68 Qinghe Middle St, Haidian District, Beijing, China', '1993-09-29', 0, 0, 'ruhe', '2001-02-13', 'rui7', '2007-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS384460242903', 'Victor Edwards', 0, '+44 (151) 651 7037', 2, '437815385397467023', 'Unit 38, Oxford Eco Centre, 288 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1990-02-11', 0, 0, 'edvictor', '2004-06-08', 'edvictor49', '2007-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS054004692084', '蔡安琪', 1, '+81 70-4847-4922', 1, '576030804951458573', '日本おおさかし西成区出城一丁目1番9号11階', '1987-02-26', 0, 0, 'anqicai326', '2003-01-19', 'anqic86', '2003-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS775380926606', '原田蒼士', 0, '+1 718-900-8738', 4, '929068904831402319', '721 Nostrand Ave Apartment 36, Brooklyn, NY 11216, United States', '1991-07-15', 0, 0, 'aohara', '2012-06-09', 'aoshiharada', '2002-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS257650465845', 'Ann Hicks', 1, '+81 70-7375-4381', 3, '452439014009760871', '日本なごやし北区楠味鋺三丁目80番7号28階', '1989-06-12', 0, 0, 'hicksann', '2009-01-25', 'hicks88', '2011-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS207054100520', '严云熙', 0, '+1 212-574-6294', 2, '283982239018508415', '73 West Houston Street Apartment 35, New York, NY 10014, United States', '1995-07-31', 0, 0, 'yuyan', '2000-11-26', 'yyunxi', '2020-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS320797688453', '原田樹', 1, '+86 170-0779-6242', 3, '561187842990638687', '中国成都市成华区双庆路670号华润大厦47室', '1992-07-18', 0, 0, 'iharada', '2002-09-12', 'itsuh602', '2000-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS587430299720', 'Sara Taylor', 0, '+44 (161) 597 1802', 1, '515888573414873578', 'Flat 39, 107 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1986-10-30', 0, 0, 'tsara5', '2017-05-24', 'sarat', '2017-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS020031664140', 'Andrew Marshall', 1, '+86 163-3036-9261', 2, '295207908549013679', '中国广州市白云区小坪东路92号25室', '1985-02-27', 0, 0, 'amar', '2003-06-22', 'andrmarshall', '2010-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS275719381007', 'Jose Simpson', 1, '+44 (116) 688 6924', 3, '964632600904402983', 'Flat 9, 693 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1985-06-26', 0, 0, 'sjose318', '2018-10-26', 'joss', '2019-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS256482573654', '彭致远', 0, '+44 7222 128863', 3, '109207128638148759', 'Unit 32, Oxford Eco Centre, 187 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1986-06-15', 0, 0, 'pengzhiyu', '2008-08-28', 'zhipeng', '2003-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS516735686249', '山口聖子', 1, '+81 66-424-6240', 1, '609264263857420645', '22-kai, 2-1-16 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1990-04-15', 0, 0, 'yamaguchis', '2014-11-10', 'syamaguchi10', '2016-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS544535325962', '段致远', 0, '+1 614-672-8008', 1, '022967658796205346', '124 Tremont Road Apt 18, Columbus, GA 43212, United States', '1995-06-16', 0, 0, 'zhd3', '2009-01-03', 'zhdua', '2011-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS776849283350', '伊藤陸', 0, '+1 838-395-0277', 1, '540649679644077946', '119 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1991-01-09', 0, 0, 'rikui2', '2006-03-13', 'riku53', '2005-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS311571626535', '江家明', 1, '+86 21-869-6450', 1, '987888962816089871', '中国上海市浦东新区橄榄路447号33号楼', '1997-03-18', 0, 0, 'kmk', '2018-04-04', 'kongkm', '2014-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS689691844132', '王致远', 1, '+44 5029 456701', 1, '280828064492090520', 'Block 2, 127 Portland St, Manchester, M1 3LA, United Kingdom', '1995-05-12', 0, 0, 'zhiw', '2008-05-05', 'wang5', '2021-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS554687270676', '陳惠妹', 0, '+1 213-785-8406', 0, '001490472684792787', '720 Sky Way Suite 47, Los Angeles, CA 90043, United States', '1993-01-13', 0, 0, 'chan212', '2010-03-04', 'chanhm', '2013-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS637953365100', '侯杰宏', 1, '+86 131-4595-1932', 1, '630752494135433393', '中国中山紫马岭商圈中山五路75号9楼', '1987-05-08', 0, 0, 'jiehonghou122', '2012-11-08', 'houjiehong', '2011-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS224504944102', 'Susan Thompson', 0, '+86 176-4196-8063', 1, '887563386586644510', 'Room 50, 873 Shennan Ave, Futian District, Shenzhen, China', '1991-04-22', 0, 0, 'thsusan', '2009-11-27', 'thompsonsusan', '2000-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS765767712147', '西村陽菜', 1, '+86 177-7359-7183', 2, '834894024099103786', 'No.13 building, 900 FuXingMenNei Street, XiCheng District, Beijing, China', '1989-07-26', 0, 0, 'hinanishimura', '2021-02-11', 'nihina', '2009-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS430805900124', '木村花', 1, '+44 (161) 341 9881', 2, '165998491077062578', 'Unit 1, Oxford Eco Centre, 423 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-11-06', 0, 0, 'hana10', '2006-04-11', 'kh2', '2008-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS316446892995', '羅曉彤', 1, '+44 7117 983518', 1, '748403926843584143', 'No.39 Main building, 870 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1989-07-06', 0, 0, 'hiutunglo930', '2008-04-06', 'hiutung3', '2013-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS349946971883', '向杰宏', 0, '+44 5942 831930', 3, '344909809084622009', 'No.26 Main building, 967 Sackville St, Manchester, M1 3BB, United Kingdom', '1985-03-10', 0, 0, 'jiehongxia5', '2001-07-22', 'xjiehong2', '2011-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS134145636498', '鈴木葉月', 0, '+86 760-654-9326', 3, '881488785584734903', 'No.10 building, 257 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1993-07-01', 0, 0, 'shazuki', '2012-03-15', 'hazuki97', '2013-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS526829684991', 'Kyle Myers', 0, '+44 7428 542841', 1, '351721863210991195', 'Block 17, 630 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1998-05-27', 0, 0, 'myerskyle', '2010-10-30', 'kyle9', '2021-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS043925516739', '王朝偉', 0, '+1 212-641-9443', 1, '676778571381452538', '376 Bank Street Apartment 37, New York, NY 10014, United States', '1988-02-13', 0, 0, 'cwwong', '2021-02-05', 'wcw', '2012-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS099433041048', '新井葉月', 0, '+81 3-7689-4595', 3, '640944508388295869', '43F, 1-5-13, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-05-02', 0, 0, 'araihaz', '2004-09-15', 'araihazuki', '2009-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS482197946986', 'Marvin Bell', 0, '+81 52-985-0451', 0, '986652871225987296', '日本なごやし北区清水三丁目19番17号10号室', '1987-06-28', 0, 0, 'marvin902', '2006-01-29', 'marvinbel', '2003-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS778716320245', '杉山美羽', 0, '+81 52-525-6653', 2, '294295948895247249', 'Rm. 17, 3 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1985-07-13', 0, 0, 'smi', '2000-04-04', 'miusugiyama427', '2015-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS754747993187', '汤詩涵', 0, '+86 173-8545-4243', 1, '390903066051464156', 'Room 12, 517 Jingtian East 1st St, Futian District, Shenzhen, China', '1989-05-27', 0, 0, 'shitang', '2001-07-17', 'shihatang', '2016-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS072744114729', '桜井葉月', 0, '+81 90-0455-6129', 2, '381616713013510784', '日本ならし大和郡山市本庄町一丁目1番17号12階', '1989-02-04', 0, 0, 'sakuraiha', '2011-01-10', 'hazs', '2018-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS252469265525', '钱詩涵', 1, '+86 760-6422-1540', 0, '541816347115796014', 'Room 42, CR Building, 62 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1996-08-08', 0, 0, 'qian1', '2007-08-28', 'qs529', '2013-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS948570799149', '王安娜', 0, '+81 52-433-5536', 2, '293773426774863323', '日本なごやし熱田区千年二丁目5番9号17号室', '1991-10-18', 0, 0, 'wonon', '2006-04-07', 'wonna8', '2018-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS354047050485', 'Steven Ruiz', 1, '+1 718-841-2922', 3, '838988277769167486', '216 Nostrand Ave Apt 11, Brooklyn, NY 11216, United States', '1987-02-05', 0, 0, 'str', '2001-11-25', 'ruizs', '2014-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS040677899443', '尹宇宁', 1, '+1 213-348-4743', 3, '277349371242394418', '920 S Broadway Apartment 50, Los Angeles, CA 90015, United States', '1995-09-10', 0, 0, 'yuny1951', '2015-10-22', 'yyin', '2016-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS720196194080', '清水花', 1, '+44 (121) 749 8884', 1, '072676122776960654', 'No.45 Main building, 158 New Street, Birmingham, B2 4DB, United Kingdom', '1997-08-18', 0, 0, 'shimizuha', '2003-08-20', 'has', '2012-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS653664699414', '關安琪', 0, '+81 11-500-4572', 3, '382678067735414111', '1F, 5-4-13 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-07-21', 0, 0, 'onkay10', '2007-08-10', 'okkwan', '2008-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS506219224708', '森光莉', 0, '+44 (116) 913 8520', 4, '571993807545948888', 'Flat 7, 111 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1991-07-26', 0, 0, 'mori121', '2007-03-04', 'morihikar', '2009-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS358194602928', '小山舞', 0, '+81 80-2030-1151', 3, '173378354600311768', '日本札幌白石区菊水三条五丁目4番4号30階', '1993-04-24', 0, 0, 'koyamamai', '2005-01-28', 'maikoya911', '2005-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS433132266144', '中川樹', 0, '+44 5918 492961', 2, '897437166775802784', 'Flat 19, 477 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1996-08-06', 0, 0, 'nakagawaitsuki', '2003-12-20', 'nai', '2009-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS091795993377', 'Wendy Perez', 0, '+86 10-7290-0658', 4, '065024592333199373', '中国北京市东城区东单王府井东街866号34楼', '1994-10-28', 0, 0, 'pewend110', '2011-08-12', 'perewendy', '2013-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS168401031016', '贾嘉伦', 1, '+86 28-188-9701', 3, '382742868260347147', '中国成都市成华区双庆路629号17号楼', '1997-10-28', 0, 0, 'jjia', '2016-03-26', 'jj2020', '2018-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS982945528844', '長谷川海斗', 1, '+81 70-5330-0434', 1, '239595063579029076', 'Rm. 33, 5-2-11 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1992-01-20', 0, 0, 'hasegawa411', '2020-04-27', 'kaitohasegawa', '2004-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS952050283836', '伍玲玲', 0, '+1 614-551-8588', 3, '860290455216713255', '374 East Alley Apartment 33, Columbus, GA 43201, United States', '1995-12-28', 0, 0, 'ling8', '2018-07-09', 'ngll', '2016-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS291265701687', '阎岚', 1, '+81 80-9363-1676', 2, '619189247162748438', '45F, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-02-05', 0, 0, 'yalan', '2004-03-31', 'yanlan', '2003-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS362815282277', '黄子异', 0, '+86 146-2461-9002', 4, '966222778661868151', 'No.24 building, 999 68 Qinghe Middle St, Haidian District, Beijing, China', '1992-11-19', 0, 0, 'huangzi', '2006-04-08', 'huangziyi202', '2013-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS543592689869', 'Heather Baker', 1, '+86 10-397-7999', 3, '164053550592604387', 'Room 36, CR Building, 794 Yueliu Rd, Fangshan District, Beijing, China', '1995-07-18', 0, 0, 'baker2004', '2019-03-19', 'heather1127', '2015-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS541581149197', '樂玲玲', 1, '+86 197-7762-2922', 4, '405537746148172784', '中国北京市西城区复兴门内大街356号华润大厦1室', '1990-12-15', 0, 0, 'linglinglok91', '2016-10-07', 'lingling10', '2011-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS343650492490', 'Ryan Cook', 0, '+86 174-1616-5614', 1, '854269217768440686', '中国广州市白云区小坪东路963号1栋', '1988-06-30', 0, 0, 'cryan', '2011-12-02', 'cook9', '2000-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS254706074553', '李秀英', 0, '+1 838-010-8083', 2, '824930274887744480', '936 Broadway Apt 2, Albany, NY 12207, United States', '1988-12-06', 0, 0, 'xiuyingli8', '2000-08-17', 'li7', '2014-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS042790765935', 'Allen Moreno', 1, '+86 28-9462-7462', 2, '113144838817023979', 'Room 42, CR Building, No.104, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1990-12-01', 0, 0, 'morenoalle1122', '2011-07-14', 'allmo', '2005-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS969244418254', '吳裕玲', 1, '+44 (1223) 28 4161', 1, '573244948852005379', 'Flat 5, 257 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1990-07-27', 0, 0, 'yuling93', '2020-05-14', 'yln', '2004-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS450639734799', '蕭慧珊', 0, '+1 838-353-0622', 0, '198761834111607515', '792 Central Avenue Apartment 11, Albany, NY 12205, United States', '1991-09-22', 0, 0, 'swaisan', '2016-12-18', 'waisan41', '2008-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS224507524198', '汪岚', 0, '+1 614-861-9352', 3, '256125822022893584', '438 East Cooke Road Apt 29, Columbus, GA 43214, United States', '1997-10-30', 0, 0, 'lanwang', '2018-12-07', 'wangl', '2017-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS649755572798', '孙晓明', 1, '+86 197-7790-8599', 3, '090242284371306701', 'No.5 building, 398 West Chang''an Avenue, Xicheng District, Beijing, China', '1989-11-04', 0, 0, 'sunxiao66', '2008-03-02', 'sunxiao', '2009-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS819117768432', '渡部凛', 0, '+81 80-5223-7830', 4, '158248309012053288', 'Rm. 37, 3-27-3 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-07-14', 0, 0, 'rinwat', '2019-09-30', 'rin8', '2001-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS833441461197', 'Bonnie Robertson', 0, '+1 614-995-7361', 0, '968152309844588405', '596 East Cooke Road Suite 27, Columbus, GA 43214, United States', '1986-05-13', 0, 0, 'brober', '2015-07-05', 'br5', '2020-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS839431600919', '甘志明', 0, '+81 3-4451-8817', 3, '724038770750246888', '日本東京品川区東五反田五丁目2番16号42号室', '1989-07-15', 0, 0, 'chimingkam', '2019-04-16', 'chiming87', '2001-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS793309826396', '雷嘉伦', 1, '+81 11-440-4304', 1, '685007680566611868', '29-kai, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1996-07-05', 0, 0, 'jialunlei1016', '2020-03-02', 'jialul207', '2002-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS693406939229', '梁明詩', 1, '+86 157-7501-6298', 1, '812967468548004911', 'Room 49, 829 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1989-01-16', 0, 0, 'mingszel', '2019-07-04', 'leung2003', '2019-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS792406649840', '孟云熙', 0, '+86 10-544-5457', 4, '380380468661146982', 'No.30 building, 619 West Chang''an Avenue, Xicheng District, Beijing, China', '1986-11-18', 0, 0, 'yunxi8', '2021-10-12', 'yunxi6', '2019-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS936118291514', '藤井舞', 0, '+81 90-1640-6874', 1, '357236867024812627', '38-kai, 2-3-16 Yoyogi, Shibuya-ku, Tokyo, Japan', '1987-09-03', 0, 0, 'maifujii3', '2012-02-06', 'fujiima722', '2014-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS981266444759', '村田桜', 0, '+81 80-3134-8231', 1, '041600343048280600', '41F, 5-2-5 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1989-01-13', 0, 0, 'sakuramurata', '2002-04-05', 'sakmurata308', '2019-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS720201900305', 'Eric Weaver', 0, '+86 195-2352-0998', 0, '729502058936464621', '中国北京市東城区東直門內大街786号4室', '1992-06-01', 0, 0, 'weavere2', '2012-01-04', 'erweaver', '2009-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS097325953231', '毛秀英', 0, '+86 159-5220-4154', 2, '073333755581608961', '中国中山乐丰六路302号42栋', '1995-03-03', 0, 0, 'maox', '2003-07-27', 'xim', '2020-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS294086037504', '阎璐', 0, '+81 90-4026-2461', 1, '799491624678699500', '日本東京千代田区丸の内一丁目6番13号16階', '1994-08-10', 0, 0, 'yanl', '2011-06-09', 'lu1116', '2003-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS286021549004', '顧力申', 1, '+44 5972 079839', 3, '995814168578780412', 'Unit 7, Oxford Eco Centre, 264 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1987-07-04', 0, 0, 'liksun7', '2002-10-12', 'kuls612', '2021-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS332402773576', 'Harold Mendoza', 0, '+86 10-3759-8044', 1, '895477493098830885', '中国北京市西城区复兴门内大街569号11号楼', '1994-04-27', 0, 0, 'haroldmendoza2', '2013-07-18', 'mendozaharold', '2005-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS767016987266', '于子异', 0, '+81 90-5526-7802', 3, '925524194433834192', '39F, 2-5-11 Chitose, Atsuta Ward, Nagoya, Japan', '1998-02-08', 0, 0, 'ziyiyu', '2008-02-28', 'zyu10', '2003-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS346721852361', '白國明', 0, '+44 7272 465973', 2, '727093654396302095', 'Block 34, 446 Hanover St, Liverpool, L1 4AF, United Kingdom', '1987-07-22', 0, 0, 'pakkwokming', '2019-11-06', 'kmpak', '2012-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS039090569189', '小川涼太', 1, '+86 146-6602-7615', 1, '043621552474441926', '30F, 408 Jiangnan West Road, Haizhu District, Guangzhou, China', '1992-07-16', 0, 0, 'ryota402', '2019-07-14', 'ryotaogawa10', '2013-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS231126870064', '樊慧嫻', 1, '+81 11-892-2929', 0, '679000272895590543', '日本札幌白石区菊水三条五丁目4番20号24号室', '1993-08-20', 0, 0, 'waihanfan', '2008-12-19', 'fawaihan', '2021-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS141200149100', '中森一輝', 0, '+81 3-0858-2726', 3, '862518199812958609', '日本東京千代田区丸の内一丁目6番14号15階', '1994-01-05', 0, 0, 'nakamik', '2000-11-22', 'nakamori05', '2018-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS313438970519', 'Mary Tran', 1, '+44 (20) 6586 5468', 3, '424399830508743985', 'Unit 1, Oxford Eco Centre, 960 Pollen Street, London, W1S 1NG, United Kingdom', '1990-03-05', 0, 0, 'tmary', '2014-08-28', 'marytran', '2012-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS350331310716', 'Julia Castillo', 1, '+1 614-570-0235', 2, '882376613915027848', '550 East Cooke Road Apt 50, Columbus, GA 43214, United States', '1988-09-05', 0, 0, 'jca1946', '2016-05-26', 'castilloj', '2000-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS051299914709', 'Richard Dunn', 0, '+1 212-829-0397', 4, '682658937725129780', '22 Wooster Street Apt 44, New York, NY 10012, United States', '1997-07-05', 0, 0, 'ricdunn730', '2004-10-19', 'dunnrichard', '2019-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS528800974767', '何岚', 1, '+44 7002 603116', 2, '904371280110926737', 'Block 42, 551 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1986-05-30', 0, 0, 'hl9', '2002-08-20', 'he8', '2011-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS558369030373', 'Leslie Vasquez', 1, '+81 90-2480-3435', 3, '363028668101210195', '日本おおさかし西成区天神ノ森二丁目1番5号42号室', '1987-10-12', 0, 0, 'vleslie624', '2021-02-17', 'vasqul', '2004-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS950631996493', '工藤桜', 0, '+1 838-772-0711', 3, '782698047072418469', '908 Broadway Suite 34, Albany, NY 12207, United States', '1990-01-02', 0, 0, 'sakurakudo1118', '2021-08-17', 'sakurakudo', '2007-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS293573392877', '蔡惠妹', 1, '+81 3-9598-3376', 0, '362053358650040590', '日本東京港区東新橋一丁目5番4号40号室', '1985-10-07', 0, 0, 'chuimei3', '2001-05-28', 'chm1126', '2003-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS749386024080', 'Diane Guzman', 0, '+81 74-542-3152', 1, '386574008292217755', '41-kai, 3-9-6 Gakuenminami, Nara, Japan', '1987-09-18', 0, 0, 'diane6', '2017-05-02', 'guzd', '2021-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS933052001515', '陈璐', 1, '+86 141-1494-9680', 4, '460001803584383755', '40F, 631 Middle Huaihai Road, Huangpu District, Shanghai, China', '1996-08-15', 0, 0, 'luche', '2003-10-31', 'luchen', '2006-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS556014836045', '邱慧敏', 0, '+86 20-691-1689', 4, '949082972893695475', 'Room 38, CR Building, 512 Xiaoping E Rd, Baiyun , Guangzhou, China', '1986-07-16', 0, 0, 'ywaiman808', '2010-06-19', 'wmyau', '2012-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS129805332851', '古慧琳', 0, '+44 7792 778101', 2, '725841325264031626', 'Block 17, 179 Mosley St, Manchester, M2 3AQ, United Kingdom', '1985-07-08', 0, 0, 'wailamku81', '2014-07-08', 'wlku', '2012-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS107277894934', '潘子异', 0, '+44 (1865) 01 7050', 3, '183225628657842368', 'Unit 23, Oxford Eco Centre, 571 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1990-04-08', 0, 0, 'panziyi', '2020-02-01', 'zpan', '2000-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS404978633859', '野村陽太', 1, '+86 196-4581-4859', 3, '889693968492170102', '中国深圳龙岗区布吉镇西环路603号43号楼', '1992-12-27', 0, 0, 'yonomura', '2019-01-11', 'nomyo', '2012-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS255245242211', '姜杰宏', 0, '+44 5678 806525', 2, '955857932621936787', 'Unit 15, Oxford Eco Centre, 22 Pollen Street, London, W1S 1NG, United Kingdom', '1995-11-08', 0, 0, 'jiangjiehong325', '2019-11-18', 'jiehong121', '2020-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS814973103949', '谷秀文', 0, '+44 7967 375862', 2, '199339069968623274', 'Flat 30, 520 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1985-12-26', 0, 0, 'ksauma', '2001-12-27', 'koosm9', '2006-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS439119492894', '木村美緒', 1, '+1 718-261-6300', 1, '317159020708406474', '927 1st Ave Apartment 39, Brooklyn, NY 11220, United States', '1991-07-12', 0, 0, 'mki', '2011-08-07', 'kimurmi', '2001-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS211015355609', '杜志遠', 1, '+81 80-5489-0609', 1, '592539471960921155', '日本東京千代田区丸の内一丁目6番9号50階', '1989-05-02', 0, 0, 'cht', '2005-05-07', 'tocy', '2003-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS390807436915', '中村和真', 1, '+81 90-3697-6525', 3, '189869543571097845', '日本なごやし守山区瀬古東二丁目171番16号5階', '1989-08-12', 0, 0, 'nakamura10', '2003-01-17', 'nka7', '2011-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS887230422514', '福田凛', 1, '+86 755-154-2751', 0, '638547894754264245', '中国深圳龙岗区学园一巷251号华润大厦30室', '1998-11-22', 0, 0, 'rinfuk8', '2001-08-12', 'rinf', '2013-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS475556802339', '董子异', 0, '+81 80-7164-5420', 0, '057566981784508535', 'Rm. 4, 9 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-06-28', 0, 0, 'dongziyi', '2004-02-05', 'ziydong65', '2000-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS601006644036', '罗致远', 0, '+86 134-2940-2590', 4, '626545502362804261', '中国东莞环区南街二巷814号43栋', '1986-06-29', 0, 0, 'luozh', '2019-08-11', 'zlu', '2011-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS129536796936', '小川美咲', 1, '+1 614-199-5025', 4, '920942043086875234', '79 East Cooke Road Apt 50, Columbus, GA 43214, United States', '1989-12-02', 0, 0, 'misakio729', '2008-10-05', 'misakio14', '2019-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS506259060978', 'Randy Richardson', 1, '+86 755-260-1688', 4, '977153383615241442', 'Room 9, CR Building, 634 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-01-31', 0, 0, 'rr6', '2018-10-20', 'randyrich902', '2002-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS770487654145', '竹内桜', 1, '+81 80-2707-0174', 0, '258875321490730084', 'Rm. 4, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1989-12-26', 0, 0, 'takeuchisakura', '2002-06-16', 'sakutakeu10', '2015-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS537093861450', '太田美羽', 1, '+86 190-0319-7305', 3, '973844100017623285', 'Room 39, 364 Middle Huaihai Road, Huangpu District, Shanghai, China', '1992-06-20', 0, 0, 'miuota', '2009-12-26', 'otamiu2', '2010-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS285417603233', '张詩涵', 1, '+86 10-540-3339', 1, '433034381881327670', 'No.17 building, 343 Yueliu Rd, Fangshan District, Beijing, China', '1991-08-06', 0, 0, 'shihanzhang', '2003-08-04', 'szhang1', '2013-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS336234034553', '成榮發', 1, '+81 90-9416-5279', 2, '815522807228602830', '15F, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1988-01-09', 0, 0, 'shinwingfat', '2006-06-28', 'wfs701', '2001-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS699503422850', '木村美月', 0, '+1 718-709-8567', 2, '596853740882547382', '982 Bergen St Apt 44, Brooklyn, NY 11217, United States', '1993-11-08', 0, 0, 'mitskimura713', '2015-08-29', 'kmitsu622', '2014-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS673559895735', '严嘉伦', 0, '+44 (151) 637 2603', 2, '007797562542561522', 'No.29 Main building, 526 Hanover St, Liverpool, L1 4AF, United Kingdom', '1985-07-05', 0, 0, 'jialun9', '2005-03-24', 'yajia', '2019-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS899078349113', '羅志明', 1, '+44 7370 867734', 3, '536653535130819120', 'Block 22, 327 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1991-09-19', 0, 0, 'lo16', '2006-06-27', 'locm', '2013-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS506396268841', '湯天榮', 0, '+44 5891 844142', 2, '733873934320960474', 'Block 1, 65 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1998-01-12', 0, 0, 'twto', '2006-04-27', 'tong828', '2000-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS341208366079', '劉心穎', 1, '+44 (161) 935 3278', 2, '665580397141286311', 'Flat 30, 345 Portland St, Manchester, M1 3LA, United Kingdom', '1996-06-17', 0, 0, 'swl', '2014-08-21', 'swlau', '2002-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS203246242335', '和田樹', 1, '+1 330-498-0709', 3, '407303931967782153', '432 Collier Road Apartment 14, Akron, OH 44320, United States', '1986-06-05', 0, 0, 'itswad3', '2007-08-08', 'iwada1999', '2021-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS642497963089', '石田愛梨', 0, '+1 614-229-6965', 4, '775704097388837946', '400 East Cooke Road Apartment 44, Columbus, GA 43214, United States', '1986-11-19', 0, 0, 'aiishida', '2005-02-15', 'aiishida20', '2018-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS861923427099', 'Robert Shaw', 1, '+81 11-686-9929', 1, '895923348354441281', '9-kai, 13-3-9 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1996-04-29', 0, 0, 'rshaw330', '2020-04-18', 'sr1230', '2014-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS875918494203', 'Anna James', 0, '+81 80-6237-4763', 1, '588561901455091983', '11F, 3-27-12 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1988-04-10', 0, 0, 'anna2', '2003-04-25', 'annajame', '2004-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS276949153898', '戴德華', 0, '+44 (121) 684 7754', 3, '059493718723721433', 'No.40 Main building, 772 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1994-03-08', 0, 0, 'dtakwah', '2003-11-27', 'dta', '2000-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS106572188126', '藤田舞', 1, '+86 10-4630-0505', 4, '861382632537683208', '2F, 415 West Chang''an Avenue, Xicheng District, Beijing, China', '1997-05-09', 0, 0, 'mai430', '2007-10-16', 'mfujita78', '2014-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS462838471298', '上野七海', 0, '+1 838-899-5206', 0, '875412319834597287', '939 Central Avenue Apt 9, Albany, NY 12205, United States', '1990-04-13', 0, 0, 'uenonanam', '2011-01-08', 'nanau', '2009-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS790212474748', 'Lillian Garcia', 1, '+86 10-472-6585', 4, '741436535647425316', '中国北京市西城区复兴门内大街582号19栋', '1996-11-09', 0, 0, 'lilliangarci', '2008-02-20', 'garcilillian', '2005-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS169102631418', '青木百恵', 0, '+81 52-703-9613', 4, '498512851463571705', '日本なごやし北区清水三丁目19番16号36階', '1991-03-02', 0, 0, 'momoe6', '2012-12-11', 'aokmom76', '2013-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS662523521282', '洪惠妹', 1, '+81 90-4484-5104', 0, '605410426151821572', '日本ならし学園南三丁目9番10号19号室', '1986-08-31', 0, 0, 'huimei03', '2011-09-02', 'hunghm2002', '2003-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS490097873650', 'Betty Diaz', 1, '+81 70-4491-2983', 1, '311002302176346003', '日本おおさかし西成区出城一丁目1番1号23号室', '1991-08-01', 0, 0, 'bdiaz', '2011-09-11', 'bettydi', '2001-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS246507884043', 'Earl Gibson', 0, '+1 213-297-2211', 3, '725638038748228818', '970 Grape Street Suite 14, Los Angeles, CA 90002, United States', '1988-02-23', 0, 0, 'earlg4', '2015-07-10', 'gibsone', '2002-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS489093085292', 'Miguel Reynolds', 1, '+86 28-1728-0274', 1, '381657571893619733', 'Room 8, No.449, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1998-04-13', 0, 0, 'migureynolds', '2004-02-10', 'miguelreynolds403', '2013-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS837215216689', 'Kevin Reed', 0, '+81 11-631-0792', 3, '309238206070203208', '25-kai, 13-3-10 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1995-06-27', 0, 0, 'kevin9', '2009-06-11', 'reedkevin', '2018-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS416916093032', '薛子异', 0, '+44 5229 823094', 2, '135136675669284415', 'Block 3, 824 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1990-10-11', 0, 0, 'xuezi1996', '2004-12-24', 'xue215', '2004-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS165563664205', '龙睿', 1, '+86 755-2531-1081', 3, '961232886822519246', '23F, 332 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1989-02-10', 0, 0, 'rui114', '2016-12-28', 'loru', '2015-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS152573034286', '廖曉彤', 1, '+86 143-7143-8624', 2, '439496351039328465', '20F, 611 Kengmei 15th Alley, Dongguan, China', '1990-08-19', 0, 0, 'hiutungl', '2011-03-12', 'htliao', '2012-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS752972473565', '赵秀英', 1, '+86 21-316-0285', 0, '782029964466709193', '中国上海市浦东新区橄榄路435号31楼', '1993-07-12', 0, 0, 'xiz', '2001-06-08', 'xzhao', '2010-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS508625743818', '有村舞', 1, '+81 80-5368-9692', 1, '028159250572027420', '日本なごやし瑞穂区河岸町四丁目20番12号45号室', '1988-08-30', 0, 0, 'arim1947', '2004-02-24', 'maa', '2012-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS560293072431', '严安琪', 1, '+81 11-481-9990', 2, '642871216697963580', '日本札幌中央区宮の森四条六丁目1番11号19階', '1995-09-16', 0, 0, 'anqiyan', '2009-02-02', 'yan2004', '2017-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS046107150295', 'Lois Gomez', 1, '+81 74-290-0436', 3, '136849423613684281', '日本ならし大和郡山市本庄町一丁目1番1号7階', '1996-05-10', 0, 0, 'lois1013', '2014-04-01', 'logomez', '2005-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS505735949645', 'Terry Webb', 0, '+1 213-027-3635', 1, '114718811169983201', '954 Figueroa Street Apt 39, Los Angeles, CA 90037, United States', '1991-06-03', 0, 0, 'terry1103', '2007-03-10', 'webterry', '2007-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS887486326548', 'Rhonda Howard', 0, '+86 10-998-6119', 4, '319865616100435465', '中国北京市东城区东单王府井东街130号20栋', '1990-10-24', 0, 0, 'rhondahoward', '2009-04-11', 'rhohoward', '2012-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS740256744725', '林美羽', 1, '+44 7398 130835', 1, '872567198796493471', 'Unit 22, Oxford Eco Centre, 191 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1991-11-11', 0, 0, 'miuhayashi18', '2009-08-18', 'hayashimi', '2002-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS464725275859', '余杰宏', 1, '+86 176-3586-3975', 1, '921227720752361780', '中国中山乐丰六路298号华润大厦1室', '1991-05-22', 0, 0, 'yjiehong', '2014-09-07', 'yujiehong', '2016-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS934388937563', 'Thelma Nichols', 1, '+81 11-092-4788', 2, '328461410764589147', 'Rm. 40, 6-1-5, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-05-04', 0, 0, 'nicthel', '2008-12-06', 'nth', '2001-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS530742552222', '袁云熙', 0, '+81 66-885-9076', 3, '523649316554075553', '日本おおさかし近江堂一丁目7番3号2階', '1995-10-11', 0, 0, 'yuan3', '2010-06-06', 'yunxi6', '2014-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS362179776080', '官志遠', 1, '+86 20-4180-4678', 1, '960278395220362097', '中国广州市白云区机场路棠苑街五巷246号华润大厦26室', '1988-12-13', 0, 0, 'chiyuenkoon', '2011-02-16', 'cykoon', '2004-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS933753726068', '杜子韬', 1, '+81 90-7896-1186', 1, '218184070771779094', '11-kai, 4-9-20 Kamihigashi, Hirano Ward, Osaka, Japan', '1994-03-25', 0, 0, 'duzitao924', '2006-09-15', 'duzitao', '2010-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS164170392139', '張天榮', 1, '+81 3-7211-8943', 4, '912765277459411762', '日本東京渋谷区代々木二丁目3番10号1号室', '1988-11-07', 0, 0, 'chetw', '2015-06-15', 'cheung45', '2012-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS680429802197', '應國明', 0, '+86 198-2417-7994', 1, '518717636007185918', 'No.24 building, 183 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1997-12-19', 0, 0, 'kwokming229', '2003-12-21', 'yingkm1213', '2004-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS926033832823', 'Sylvia Cooper', 0, '+86 28-745-7067', 4, '232183241073927316', 'Room 40, No.232, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1989-09-20', 0, 0, 'coopersylvia', '2010-05-09', 'sylviacooper', '2001-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS804039270314', '杨杰宏', 1, '+81 66-688-4154', 1, '436410018241211952', '日本おおさかし平野区加美東四丁目9番19号45階', '1994-05-24', 0, 0, 'yangj', '2020-12-11', 'jiehongyang', '2008-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS670088056560', 'Frances Simpson', 0, '+1 213-462-6752', 2, '745276770630062165', '371 S Broadway Suite 18, Los Angeles, CA 90015, United States', '1994-06-08', 0, 0, 'francessimps917', '2006-02-19', 'simpsonfr', '2000-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS473732931754', '钱詩涵', 1, '+1 838-094-3690', 3, '654228724561916574', '674 Central Avenue Suite 48, Albany, NY 12206, United States', '1989-10-07', 0, 0, 'qian3', '2016-06-21', 'shiqian07', '2009-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS266670304935', 'Judy Brown', 1, '+81 70-9822-1892', 2, '531450001267330672', '日本札幌白石区菊水三条五丁目4番14号1階', '1998-04-18', 0, 0, 'judyb', '2018-12-23', 'brownjudy', '2019-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS178599490235', '贺晓明', 0, '+86 171-8950-3157', 4, '484161774990432322', '1F, 792 Binchuan Rd, Minhang District, Shanghai, China', '1988-04-09', 0, 0, 'xiaomhe', '2002-10-16', 'hexiaoming7', '2018-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS771968834065', 'Richard Patel', 0, '+44 (116) 547 2889', 2, '661890174810210922', 'No.13 Main building, 662 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1996-12-14', 0, 0, 'rp2011', '2006-05-08', 'richpate', '2018-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS735537483058', '横山美咲', 0, '+86 28-2100-3694', 1, '838027009143269298', 'No.26 building, No. 856, Shuangqing Rd, Chenghua District, Chengdu, China', '1996-10-05', 0, 0, 'misakyokoyama4', '2010-03-20', 'miyokoyama', '2020-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS638744063943', '許國明', 0, '+1 212-697-7716', 3, '979683491188365863', '201 Fifth Avenue Suite 31, New York, NY 10017, United States', '1992-11-02', 0, 0, 'kmhui', '2012-02-12', 'kwokmingh5', '2018-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS522744933795', '高橋百花', 0, '+86 755-983-9204', 1, '843748893018336792', '中国深圳龙岗区布吉镇西环路821号1号楼', '1993-08-13', 0, 0, 'takahashim', '2009-12-20', 'momotaka502', '2004-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS285284802800', '夏子异', 0, '+81 52-084-9679', 0, '751432007602966583', '日本なごやし北区楠味鋺三丁目80番11号11階', '1989-02-27', 0, 0, 'xiziy', '2011-03-16', 'ziyixi', '2013-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS539753827675', '田裕玲', 1, '+86 10-512-4934', 2, '949187257655277332', 'Room 15, CR Building, 341 Sanlitun Road, Chaoyang District, Beijing, China', '1993-01-12', 0, 0, 'yulingtin', '2020-04-22', 'tinyl', '2005-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS604092524697', '今井結翔', 1, '+86 163-8977-1026', 3, '999371574509798579', '中国北京市朝阳区三里屯路580号34栋', '1986-02-15', 0, 0, 'imaiyuito', '2015-12-11', 'imaiyuito723', '2018-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS351548342883', '杜祖兒', 1, '+44 7192 064747', 1, '882636983626307460', 'No.42 Main building, 752 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1989-11-28', 0, 0, 'tochoyee612', '2004-01-17', 'to14', '2020-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS572727660840', '鈴木聖子', 0, '+81 11-131-7105', 3, '755489113300930300', '日本札幌白石区菊水三条五丁目2番9号12号室', '1992-12-15', 0, 0, 'suzukiseiko', '2018-10-01', 'seiksuzuki', '2020-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS878028078961', '太田陸', 0, '+1 213-112-7524', 2, '328940229520002693', '92 Sky Way Suite 46, Los Angeles, CA 90043, United States', '1985-09-15', 0, 0, 'riku1106', '2011-03-09', 'otar', '2018-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS991772247658', '古家明', 1, '+81 66-086-3896', 2, '155031638525240028', '日本おおさかし西成区出城一丁目1番13号50階', '1989-06-21', 0, 0, 'kmku', '2015-03-24', 'ku2', '2000-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS107679824521', 'Travis Hall', 1, '+86 28-0444-3207', 0, '122847513948991054', 'Room 17, 116 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1986-12-12', 0, 0, 'travishall', '2004-09-11', 'halltr', '2002-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS116795821584', '木村大和', 0, '+1 614-433-8891', 2, '091326626960799645', '209 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1997-10-05', 0, 0, 'yamatokimur2005', '2009-04-04', 'kiyamato6', '2008-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS481518802716', '徐宇宁', 0, '+81 80-5851-9250', 2, '533302328498192456', '日本おおさかし東住吉区東田辺三丁目27番19号26階', '1994-07-26', 0, 0, 'yuning10', '2019-02-08', 'yuxu', '2006-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS245613084364', 'Norman Young', 0, '+81 90-7156-7294', 2, '256540529979792296', '日本札幌白石区菊水三条五丁目4番11号7階', '1987-04-29', 0, 0, 'yonorman', '2006-08-05', 'norman1974', '2006-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS158825607865', 'Ricky Gonzales', 0, '+81 70-7989-3293', 4, '850646300343788975', '48-kai, 18 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1991-09-28', 0, 0, 'ricgonza', '2008-01-09', 'rg10', '2003-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS359675463418', '小野花', 1, '+86 755-3485-6660', 1, '499341206893468527', '中国深圳罗湖区蔡屋围深南东路330号14室', '1993-06-23', 0, 0, 'hanaono', '2000-05-25', 'hana3', '2008-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS279553571528', '徐子异', 1, '+86 145-4896-9897', 2, '850922322003267430', '中国成都市成华区双庆路744号华润大厦10室', '1992-12-23', 0, 0, 'zxu', '2012-03-03', 'ziyixu10', '2021-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS623490279421', 'Victoria Hayes', 0, '+1 213-395-4127', 1, '248188145818090509', '438 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1991-01-05', 0, 0, 'vich', '2013-06-22', 'victohayes', '2001-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS185486592997', '中島花', 1, '+81 66-845-1336', 0, '958958113301465171', 'Rm. 11, 1-1-10 Deshiro, Nishinari Ward, Osaka, Japan', '1998-05-22', 0, 0, 'hana4', '2017-01-15', 'hnakajima', '2004-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS260621366486', '王國明', 0, '+86 769-991-0183', 1, '518747536761207880', '中国东莞环区南街二巷143号48栋', '1998-12-13', 0, 0, 'wokwokming7', '2003-05-16', 'wonkm', '2000-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS369688160960', '呂詠詩', 1, '+86 769-600-8010', 0, '239445111867319149', 'Room 41, CR Building, 60 Dongtai 5th St, Dongguan, China', '1996-05-30', 0, 0, 'luiws', '2008-12-09', 'luiws1964', '2015-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS274245660689', '黃梓軒', 1, '+1 718-750-9680', 3, '231479932913987855', '11 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1986-11-30', 0, 0, 'wtszhin', '2010-01-02', 'wongth', '2007-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS895509963501', '陶子异', 1, '+44 (1865) 56 1483', 3, '433307523289126708', 'Unit 42, Oxford Eco Centre, 345 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1997-01-06', 0, 0, 'zitao', '2020-12-05', 'taoziyi5', '2020-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS870345156966', '郭惠敏', 0, '+86 162-2374-1907', 4, '107648571415449915', 'No.30 building, 241 Sanlitun Road, Chaoyang District, Beijing, China', '1992-09-01', 0, 0, 'waik', '2002-03-02', 'kwokwm', '2010-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS491266334954', '薛子韬', 1, '+86 20-006-5161', 3, '949758423010077378', '中国广州市越秀区中山二路757号28栋', '1985-09-18', 0, 0, 'xzitao', '2018-09-05', 'xuezitao', '2007-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS307483303107', '楊家輝', 0, '+1 213-920-8359', 4, '046069498883500748', '528 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1995-09-10', 0, 0, 'kafaiyeung', '2012-04-21', 'yeung4', '2019-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS042958529761', 'Tony Salazar', 1, '+86 769-716-4182', 2, '378980671648543349', 'Room 37, CR Building, 349 Shanhu Rd, Dongguan, China', '1998-05-14', 0, 0, 'salazar407', '2018-09-07', 'salazar12', '2006-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS212925088907', '傅璐', 0, '+86 144-5186-7485', 1, '786719952208265846', '中国北京市房山区岳琉路935号华润大厦16室', '1985-12-27', 0, 0, 'lufu', '2002-10-22', 'lufu', '2008-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS490632364283', 'James Stone', 0, '+44 5372 790960', 2, '879367660197949825', 'No.43 Main building, 342 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1987-11-23', 0, 0, 'sj1982', '2007-02-11', 'stone7', '2015-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS582138301682', 'Glenn Ferguson', 1, '+86 161-2631-2892', 2, '847082094429291482', '中国广州市白云区机场路棠苑街五巷305号华润大厦24室', '1987-11-30', 0, 0, 'gleferguson', '2021-12-22', 'fg406', '2007-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS205170743757', '石岚', 0, '+86 21-3117-3226', 1, '314374060106293076', 'No.50 building, 387 Binchuan Rd, Minhang District, Shanghai, China', '1997-06-07', 0, 0, 'shilan', '2019-10-18', 'shilan5', '2005-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS182684639749', '龚詩涵', 1, '+81 70-1364-0680', 1, '014081598029263326', '8-kai, 9 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1988-03-01', 0, 0, 'shihan6', '2010-02-17', 'gong07', '2021-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS649090755376', 'Timothy Hernandez', 1, '+44 5873 457703', 2, '126495028436004507', 'No.47 Main building, 273 Park End St, Oxford, OX1 1JD, United Kingdom', '1987-05-27', 0, 0, 'hernandez10', '2006-01-15', 'hernandezt', '2009-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS834188090654', 'Amanda Fernandez', 0, '+1 212-503-7515', 3, '441360057298955181', '195 Fifth Avenue Suite 39, New York, NY 10017, United States', '1986-06-01', 0, 0, 'feramanda', '2001-12-15', 'fernandezamand', '2020-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS349612782165', '郑子韬', 0, '+86 180-2959-7317', 2, '119223041066816998', '中国北京市海淀区清河中街68号384号14楼', '1988-10-31', 0, 0, 'zzitao', '2013-11-24', 'zitaozheng419', '2015-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS573304365411', '池田大輔', 1, '+86 168-7822-7924', 3, '656293203482658813', 'Room 47, CR Building, 483 Huanqu South Street 2nd Alley, Dongguan, China', '1995-11-20', 0, 0, 'ikedd', '2004-02-29', 'daisikeda4', '2015-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS528505484276', '斎藤悠人', 1, '+1 213-822-7402', 1, '884082347921907711', '136 S Broadway Suite 36, Los Angeles, CA 90015, United States', '1997-12-13', 0, 0, 'yutsait76', '2013-02-03', 'yutos', '2003-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS001701022027', 'Bradley Wilson', 1, '+1 212-778-8161', 3, '719196787218997636', '147 Wooster Street Apartment 22, New York, NY 10012, United States', '1990-01-24', 0, 0, 'wilson822', '2014-04-08', 'wilsonbradley', '2020-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS540920045760', '邱子异', 0, '+86 755-665-8258', 0, '693905938370206998', '中国深圳福田区景田东一街687号27号楼', '1988-04-21', 0, 0, 'ziyi79', '2002-08-13', 'qiuzi', '2000-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS634981801619', 'Joshua Ryan', 0, '+81 80-9597-9265', 1, '704060192615970945', '15F, 4-9-14 Kamihigashi, Hirano Ward, Osaka, Japan', '1989-09-10', 0, 0, 'joshry65', '2014-06-13', 'ryan1971', '2011-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS423602082418', '高橋聖子', 1, '+86 153-3170-1185', 3, '310989686216533307', '中国北京市西城区西長安街199号华润大厦37室', '1991-11-14', 0, 0, 'seikotak602', '2016-09-20', 'seikotakahashi', '2014-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS797034566511', '周子异', 0, '+86 157-3948-0221', 1, '296236033994830902', '中国上海市浦东新区健祥路707号50号楼', '1988-01-25', 0, 0, 'ziyizhou5', '2009-08-08', 'ziyzhou9', '2017-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS547705532974', '桜井愛梨', 1, '+86 28-125-5545', 2, '471847939686493936', '中国成都市成华区双庆路149号26楼', '1990-11-13', 0, 0, 'airisak', '2010-10-04', 'sakua', '2010-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS605063796695', '卢云熙', 0, '+1 213-336-6810', 2, '951314834298658142', '974 Sky Way Apt 27, Los Angeles, CA 90043, United States', '1990-11-24', 0, 0, 'lu1942', '2020-10-20', 'lu1216', '2003-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS568645631413', '彭志遠', 0, '+86 136-4220-1075', 4, '851395901254311107', 'No.31 building, 137 Middle Huaihai Road, Huangpu District, Shanghai, China', '1988-02-17', 0, 0, 'pang522', '2015-09-25', 'pang228', '2001-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS547640787333', 'Beverly Fernandez', 0, '+81 90-9341-8656', 2, '915521484832698169', '9-kai, 1-5-15, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-02-25', 0, 0, 'fernab2000', '2006-02-14', 'beverf', '2014-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS380945421560', '曾嘉伦', 0, '+81 3-0637-4243', 0, '389059611312449488', '日本東京千代田区丸の内一丁目6番20号22階', '1986-01-30', 0, 0, 'jiz', '2011-08-21', 'jzeng', '2018-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS857584426001', '林惠敏', 1, '+1 330-386-1962', 1, '018930168161025942', '359 Riverview Road Apt 46, Akron, OH 44313, United States', '1990-11-07', 0, 0, 'lamwaiman', '2001-12-03', 'lwaiman', '2015-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS832240538084', '葉詩君', 0, '+86 21-906-6865', 2, '380980428557879399', '14F, 132 Binchuan Rd, Minhang District, Shanghai, China', '1997-01-18', 0, 0, 'yipszekwan50', '2001-11-09', 'szekwan95', '2018-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS018205285896', '内田瑛太', 0, '+1 213-821-1570', 3, '060921745415565228', '141 Sky Way Suite 49, Los Angeles, CA 90043, United States', '1997-10-05', 0, 0, 'ueita8', '2017-09-18', 'ucheita', '2021-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS078988239937', 'Philip Patel', 1, '+1 614-044-7162', 2, '479765460116683673', '377 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1986-04-25', 0, 0, 'patelphilip1975', '2010-10-28', 'philippate', '2011-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS167206020594', '上野悠人', 1, '+44 5942 794330', 2, '561982849024942856', 'Block 5, 467 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1998-01-21', 0, 0, 'ueyuto', '2006-01-13', 'yutou1124', '2021-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS414156679327', '孫慧敏', 0, '+86 755-4301-6761', 1, '024594950881489899', 'No.21 building, 836 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1986-09-19', 0, 0, 'waimanhsuan', '2002-05-25', 'wmhsuan929', '2005-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS776332595476', '樊家明', 0, '+44 7295 684005', 3, '643361445179242109', 'Unit 2, Oxford Eco Centre, 159 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1999-02-26', 0, 0, 'kafan', '2008-03-14', 'kamingfa', '2005-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS737239389806', '韦子韬', 1, '+86 197-6761-1602', 1, '066723736970216772', 'Room 46, CR Building, 463 Dongtai 5th St, Dongguan, China', '1988-04-20', 0, 0, 'weizitao84', '2007-09-09', 'wzi', '2009-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS194056675004', '山口涼太', 0, '+86 134-1124-2285', 0, '718365299082318561', 'Room 24, CR Building, 974 68 Qinghe Middle St, Haidian District, Beijing, China', '1995-02-14', 0, 0, 'yamaguchiryota', '2002-11-20', 'ryotayamag7', '2015-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS173362584208', 'Edith Lewis', 1, '+44 7590 981886', 2, '672202119382852442', 'Flat 12, 423 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1993-06-24', 0, 0, 'lewiedi', '2000-02-26', 'edithlewis1944', '2002-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS934924511680', 'Arthur Myers', 0, '+44 (121) 348 1877', 1, '638081070838656336', 'Unit 23, Oxford Eco Centre, 156 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1987-10-03', 0, 0, 'myersarth', '2009-02-06', 'mya00', '2005-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS732205179461', '應青雲', 1, '+44 (121) 252 8322', 1, '369463108205730414', 'Flat 40, 516 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1995-08-26', 0, 0, 'yingcw5', '2008-01-29', 'chy', '2007-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS365341962540', '山下架純', 1, '+81 52-218-4216', 0, '227836839066346779', '日本なごやし熱田区千年二丁目5番6号50階', '1986-01-25', 0, 0, 'kasuy1', '2005-10-08', 'yamashitaka', '2018-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS333775709962', '莫睿', 0, '+81 11-211-1340', 4, '997383122993620429', '日本札幌豊平区豊平三条十三丁目3番3号41階', '1986-03-21', 0, 0, 'rumo6', '2002-12-31', 'rumo01', '2005-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS303325886803', '贾晓明', 1, '+86 769-0724-2942', 2, '671537156216909281', '中国东莞珊瑚路461号6号楼', '1998-03-08', 0, 0, 'jiaxiaoming', '2004-04-06', 'xiaomingjia', '2019-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS171638199050', '清水明菜', 1, '+81 70-3675-4111', 3, '437866671452748544', '47-kai, 3-19-13 Shimizu, Kita Ward, Nagoya, Japan', '1996-07-07', 0, 0, 'shimizuakina', '2017-10-27', 'shimizua', '2008-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS086536433702', '江睿', 1, '+81 66-464-2361', 0, '134981642030912314', '17F, 1-7-9 Omido, Higashiosaka, Osaka, Japan', '1986-05-24', 0, 0, 'ruij', '2006-04-29', 'jiang1003', '2001-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS583327562720', '區家玲', 1, '+86 138-1559-2226', 3, '244550812058643643', 'No.12 building, 682 Sanlitun Road, Chaoyang District, Beijing, China', '1989-05-20', 0, 0, 'kalinga', '2008-11-14', 'akl527', '2015-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS413913937666', 'Rodney Morales', 0, '+86 161-5781-7492', 2, '172543758349294244', '中国北京市海淀区清河中街68号964号16号楼', '1991-08-28', 0, 0, 'moralesrodn65', '2005-08-26', 'moralesrodney', '2002-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS859840828182', '狄秀文', 0, '+86 186-8018-6187', 4, '757832265433449492', '中国成都市成华区二仙桥东三路945号49栋', '1989-09-11', 0, 0, 'tisauman330', '2000-10-03', 'ti17', '2001-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS825899933395', '李詩涵', 1, '+1 838-897-9862', 3, '418652671262570751', '132 Central Avenue Apartment 21, Albany, NY 12205, United States', '1986-04-20', 0, 0, 'shihli', '2018-05-16', 'shihan1118', '2008-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS876299604301', 'Leslie Rice', 1, '+86 173-0772-3227', 2, '748149400238671881', '中国中山京华商圈华夏街318号2楼', '1985-07-15', 0, 0, 'ricel', '2008-07-30', 'rilesl', '2019-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS120180438394', '陈云熙', 1, '+1 838-678-7951', 2, '510578434568295727', '202 Central Avenue Apt 10, Albany, NY 12206, United States', '1989-09-02', 0, 0, 'yunxi52', '2019-09-05', 'chyu', '2001-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS038082644110', '楊潤發', 0, '+81 66-031-6615', 3, '065310835997179671', '日本おおさかし西成区出城一丁目1番3号27階', '1996-03-13', 0, 0, 'yeungyu424', '2001-10-18', 'yeungyunfat102', '2013-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS807846789668', 'Ruby Robertson', 1, '+1 213-091-4416', 3, '756705006772638546', '86 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1993-05-23', 0, 0, 'robertsonrub1012', '2017-12-11', 'rubyrobertson', '2021-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS412766369428', '郑致远', 0, '+81 74-937-3646', 1, '946170581875822660', '日本ならし大和郡山市本庄町一丁目1番14号8階', '1991-04-25', 0, 0, 'zhizh1950', '2019-12-19', 'zhezhiyuan', '2006-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS848716265973', '杨杰宏', 0, '+86 769-5901-4576', 0, '023180725563627407', 'Room 31, 447 Huanqu South Street 2nd Alley, Dongguan, China', '1993-01-09', 0, 0, 'jiey1225', '2012-08-15', 'jiehongyan', '2017-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS814649809896', 'Ruth Jordan', 1, '+44 7225 568903', 1, '587030498054983419', 'Unit 19, Oxford Eco Centre, 187 Regent Street, London, W1B 2LX, United Kingdom', '1988-07-03', 0, 0, 'jor9', '2021-07-06', 'jruth', '2000-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS324678153091', 'David Richardson', 0, '+81 70-7144-7418', 1, '151524339867455135', '日本東京渋谷区代々木二丁目3番3号5階', '1998-05-18', 0, 0, 'richardsondavid', '2000-08-22', 'richardsondavid113', '2014-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS809106783869', '姚頴思', 0, '+86 175-4820-1191', 1, '088352006096704680', '中国中山京华商圈华夏街912号32楼', '1985-05-21', 0, 0, 'yeowwingsze', '2018-11-06', 'wingsze4', '2017-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS254498391868', '蔣永權', 1, '+81 70-7867-0291', 2, '257928465124786941', '日本ならし西大寺赤田町一丁目7番6号10階', '1997-03-04', 0, 0, 'wingkuenchiang3', '2020-05-12', 'cwk', '2021-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS186819740392', '白慧敏', 1, '+86 10-7196-0231', 2, '258559331340830336', 'Room 30, CR Building, 495 FuXingMenNei Street, XiCheng District, Beijing, China', '1993-04-17', 0, 0, 'pawm', '2019-08-25', 'wmp', '2021-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS902204826177', '山下聖子', 0, '+44 (116) 219 2009', 0, '979608547585020429', 'No.48 Main building, 721 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1996-05-25', 0, 0, 'yamashitase', '2021-12-02', 'yseiko9', '2006-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS656904915788', '酒井架純', 0, '+81 90-2032-6882', 3, '699410917247749723', '28-kai, 8 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-01-11', 0, 0, 'sakai10', '2002-10-11', 'sakai77', '2000-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS070064707398', '向潤發', 0, '+81 80-4416-7122', 4, '462525998468059134', 'Rm. 22, 5-2-17 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-07-06', 0, 0, 'yunfat10', '2010-03-31', 'heungyunfat', '2015-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS818721510094', 'Gloria Dixon', 1, '+81 52-050-9068', 2, '245548279435244393', 'Rm. 10, 10 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1997-03-15', 0, 0, 'gloriadi16', '2021-01-15', 'dglo', '2010-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS927424660915', '方慧琳', 1, '+86 149-1129-3440', 3, '459110643322437840', '中国东莞环区南街二巷374号25栋', '1992-10-22', 0, 0, 'wailamfong1985', '2010-02-17', 'fong3', '2007-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS470871328555', '桜井葉月', 1, '+81 80-1569-7286', 2, '673914387664624341', '日本札幌清田区真栄四条五丁目19番16号44階', '1991-04-14', 0, 0, 'hazukisakurai109', '2000-11-06', 'sakuh', '2013-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS260341604624', '渡部凛', 0, '+81 66-902-5065', 2, '050323380835421559', '日本おおさかし東住吉区東田辺三丁目27番10号3階', '1993-10-07', 0, 0, 'watanaberin', '2015-06-05', 'watanaber', '2010-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS067234975571', '林青雲', 1, '+81 90-8338-1762', 0, '839802563433634464', '日本東京港区東新橋一丁目5番1号29階', '1995-12-09', 0, 0, 'lamchingwan', '2003-04-05', 'lamchingwan91', '2019-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS763055906940', '橋本大和', 0, '+81 80-1376-8408', 1, '608431624440430774', '26-kai, 3-27-13 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1998-04-11', 0, 0, 'yamatohash', '2005-07-05', 'hyamat1105', '2010-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS947077868768', '钟秀英', 1, '+86 197-9533-4216', 0, '395994139938576715', '8F, 195 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-08-23', 0, 0, 'xiuying9', '2017-12-04', 'xiuyingz', '2014-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS262923772199', 'Joyce Edwards', 0, '+81 70-5381-9891', 1, '668140940738114589', 'Rm. 46, 3-15-3 Ginza, Chuo-ku, Tokyo, Japan', '1993-06-05', 0, 0, 'jedwa', '2015-10-07', 'joyce10', '2002-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS453132323952', '龚嘉伦', 1, '+1 213-356-8970', 3, '895807227054669174', '941 Wall Street Apt 15, Los Angeles, CA 90003, United States', '1985-02-08', 0, 0, 'jialungong', '2017-02-15', 'jialun608', '2012-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS407496851561', '何杰宏', 1, '+44 5132 717605', 0, '308702418358681719', 'No.29 Main building, 190 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1996-04-15', 0, 0, 'he925', '2011-02-20', 'jiehe', '2007-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS339912152841', '陶詩涵', 0, '+81 70-4186-4381', 1, '834766073650886247', '日本東京品川区東五反田五丁目2番1号36階', '1985-09-23', 0, 0, 'stao1989', '2020-07-13', 'shihant93', '2006-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS487836987026', '大野美緒', 0, '+81 74-917-8020', 4, '559689878067160809', '30-kai, 4 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1988-05-27', 0, 0, 'onmio1953', '2007-03-10', 'mioono', '2009-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS825297037729', '呂霆鋒', 0, '+1 838-823-9381', 2, '573247136396492828', '417 Broadway 3rd Floor, Albany, NY 12207, United States', '1997-06-12', 0, 0, 'ltingfung45', '2001-01-15', 'tingfungl', '2005-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS524811214704', '钱致远', 1, '+81 80-3671-7815', 1, '725051133270691067', '9-kai, 1-1-11 Deshiro, Nishinari Ward, Osaka, Japan', '1990-06-03', 0, 0, 'qianz9', '2009-01-05', 'zhiyuan9', '2002-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS805545711722', '冯安琪', 0, '+81 90-1965-8423', 3, '255188150740248959', '日本おおさかし西成区天神ノ森二丁目1番13号11号室', '1995-08-01', 0, 0, 'fenganqi', '2020-10-22', 'fenganq1117', '2007-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS856854351338', '方永發', 0, '+81 80-0937-1853', 3, '460978556147938717', 'Rm. 33, 1-6-3, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-02-19', 0, 0, 'wingfatfong10', '2016-12-02', 'wffong', '2019-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS050033434146', 'Robin Nelson', 0, '+86 165-9787-7350', 2, '177818171630424555', 'No.23 building, 48 Huanqu South Street 2nd Alley, Dongguan, China', '1987-01-26', 0, 0, 'robinn', '2009-05-17', 'robinnelson4', '2000-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS412930146656', 'Judy Ryan', 0, '+81 90-9090-8294', 3, '657160534262735986', '41-kai, 1-6-2, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-07-21', 0, 0, 'ryanjudy', '2014-11-05', 'ryanj', '2008-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS897937570274', '伊藤聖子', 1, '+86 755-5670-7900', 0, '776052131940807004', 'Room 9, CR Building, 649 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1998-01-10', 0, 0, 'iseik64', '2004-06-01', 'ito4', '2006-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS582205584536', '姜宇宁', 0, '+1 312-218-9462', 0, '442171585193403353', '552 North Michigan Ave Apt 37, Chicago, IL 60611, United States', '1995-07-08', 0, 0, 'jiang13', '2018-05-01', 'yuningjiang1024', '2015-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS579543427093', '坂本桜', 1, '+1 213-880-5055', 3, '754951263692338242', '232 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1997-02-08', 0, 0, 'sakamoto7', '2001-05-09', 'sas', '2009-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS035064142326', '黃淑怡', 1, '+86 144-1651-0336', 4, '604648361580859422', '中国广州市海珠区江南西路416号华润大厦47室', '1995-07-27', 0, 0, 'sukyeewong1208', '2001-05-19', 'wongsukyee', '2013-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS353465473018', '應永發', 0, '+44 7265 855769', 2, '190164167481174221', 'Flat 17, 660 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-06-14', 0, 0, 'wingfaty', '2003-06-10', 'wfying7', '2007-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS460552835900', '池田七海', 0, '+81 52-440-1339', 2, '395177204186830278', 'Rm. 32, 3-19-3 Shimizu, Kita Ward, Nagoya, Japan', '1986-01-05', 0, 0, 'ikeda63', '2003-09-22', 'nani', '2017-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS961637992687', '容浩然', 0, '+44 (121) 299 1126', 1, '716144523982146891', 'Unit 14, Oxford Eco Centre, 352 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1989-03-18', 0, 0, 'yhy', '2002-06-01', 'hyyun', '2021-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS053623211343', '田中明菜', 1, '+86 172-4077-7745', 3, '551247780318053548', '中国北京市西城区西長安街188号35室', '1990-07-05', 0, 0, 'akina10', '2014-07-25', 'akintanaka', '2016-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS394737345500', '岡本架純', 1, '+81 90-2479-9125', 1, '432377697794375800', 'Rm. 50, 18 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-08-28', 0, 0, 'kasumi5', '2001-01-22', 'kasumiokam5', '2015-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS828012322623', '傅詩君', 0, '+81 52-923-9598', 3, '256096221255052552', '44-kai, 19 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-08-10', 0, 0, 'fusk', '2010-03-03', 'szekwan07', '2002-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS906647968660', '市川舞', 1, '+86 21-1398-0187', 0, '475368634657552707', 'Room 44, 948 Ganlan Rd, Pudong, Shanghai, China', '1991-05-23', 0, 0, 'icm', '2000-02-19', 'ichmai', '2003-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS640519298171', '許浩然', 1, '+44 (1865) 35 6018', 2, '939628460262024511', 'No.18 Main building, 718 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1997-05-14', 0, 0, 'huhy4', '2011-08-24', 'hoyinhu7', '2010-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS981765584750', '秦杰宏', 1, '+1 213-355-2368', 3, '435541175904919021', '875 Grape Street Apt 8, Los Angeles, CA 90002, United States', '1990-11-17', 0, 0, 'jiehongqin', '2005-02-26', 'qin6', '2013-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS978291190748', '钟晓明', 0, '+81 70-2740-4514', 1, '137823018664804110', 'Rm. 46, 5-2-6 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1994-05-29', 0, 0, 'zhong5', '2018-02-20', 'zxiaoming', '2004-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS571596153201', '石井美咲', 1, '+86 755-4882-9032', 3, '667887654223351541', 'Room 17, 858 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1989-04-03', 0, 0, 'misakiishii', '2009-10-07', 'misakiishi514', '2016-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS407286470880', '和田陽菜', 1, '+44 7255 070798', 3, '275760135787091637', 'Block 42, 714 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1997-10-29', 0, 0, 'wadah', '2011-08-06', 'wadhin516', '2017-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS896043411963', '尹杰宏', 1, '+44 (1223) 14 7914', 2, '321444356521316499', 'Block 47, 91 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1996-10-30', 0, 0, 'jiehoyin', '2012-05-17', 'yinjiehong', '2009-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS311903107073', '方頴思', 1, '+44 (151) 209 2765', 0, '546665608055844471', 'Flat 1, 120 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1995-11-05', 0, 0, 'fonwings4', '2003-01-07', 'wsfong', '2002-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS242002452509', 'Gloria Stone', 0, '+86 188-4751-7024', 4, '330101197149904344', 'Room 40, CR Building, 682 Shennan Ave, Futian District, Shenzhen, China', '1997-07-13', 0, 0, 'stonegloria02', '2013-05-14', 'stonegloria', '2019-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS217284451508', '顾宇宁', 0, '+86 197-8083-7010', 2, '721627137255374849', 'Room 19, 695 Dong Zhi Men, Dongcheng District, Beijing, China', '1995-11-25', 0, 0, 'gu705', '2005-04-14', 'guyunin', '2017-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS891898037756', '今井詩乃', 0, '+86 10-9100-5216', 2, '384999055160103253', '中国北京市延庆区028县道342号华润大厦45室', '1986-03-05', 0, 0, 'shinoi1111', '2011-07-20', 'shinoimai4', '2016-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS056081864067', '森健太', 1, '+86 138-8616-3190', 4, '665806146357151114', 'No.23 building, 93 West Chang''an Avenue, Xicheng District, Beijing, China', '1998-09-01', 0, 0, 'morike', '2006-03-04', 'morikenta', '2006-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS435281191302', '尹岚', 1, '+81 52-947-7197', 2, '203408924772486320', 'Rm. 36, 19 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1985-11-17', 0, 0, 'lan1', '2016-09-17', 'yinlan', '2004-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS089397021981', '宮崎陸', 0, '+81 70-8774-9478', 1, '901497672257043322', 'Rm. 19, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1995-01-01', 0, 0, 'rikmi', '2018-06-11', 'miyazakirik', '2021-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS889058464189', '金子美羽', 0, '+1 838-321-1807', 3, '731679893061644147', '508 State Street Suite 11, Albany, NY 12203, United States', '1996-09-03', 0, 0, 'km1946', '2007-12-29', 'kanekomiu', '2021-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS549576021605', '叶云熙', 0, '+81 11-016-2444', 0, '245945433768977347', '日本札幌中央区宮の森四条六丁目1番14号47階', '1985-04-10', 0, 0, 'yeyunxi824', '2005-11-21', 'yeyun', '2015-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS811807673789', '河野明菜', 0, '+44 7256 872756', 0, '041947763682828714', 'Unit 7, Oxford Eco Centre, 899 Park End St, Oxford, OX1 1JD, United Kingdom', '1989-10-28', 0, 0, 'kakina', '2003-01-15', 'konoakina', '2009-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS637944215968', 'Albert Fernandez', 0, '+81 80-6125-0520', 1, '666672047206973220', '日本なごやし守山区瀬古東二丁目171番19号26号室', '1996-04-16', 0, 0, 'alfern', '2018-10-03', 'fealbert122', '2000-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS709166710528', 'Jeff Peterson', 0, '+1 330-720-1900', 3, '971559850215142798', '442 Collier Road Suite 16, Akron, OH 44320, United States', '1993-03-01', 0, 0, 'peterson731', '2019-05-14', 'jpeterson', '2012-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS910270561476', '薛安琪', 0, '+86 184-5429-3702', 3, '260273517816017268', 'Room 14, CR Building, 138 East Wangfujing Street, Dongcheng District , Beijing, China', '1996-12-13', 0, 0, 'anqi19', '2003-01-02', 'xua', '2003-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS487975356581', '林光', 1, '+81 90-2284-1490', 2, '102905243705104287', '16-kai, 1-7-18 Omido, Higashiosaka, Osaka, Japan', '1989-02-05', 0, 0, 'hayashi921', '2020-06-02', 'hayashih', '2014-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS807219905479', 'Anne Mendez', 0, '+81 74-127-1180', 4, '126389066987714308', '日本ならし西大寺赤田町一丁目7番15号7号室', '1995-03-03', 0, 0, 'am6', '2002-03-05', 'annemendez1987', '2018-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS367341192983', '麥祖兒', 1, '+81 11-856-1047', 2, '636899500464727706', 'Rm. 10, 5-2-18 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-04-23', 0, 0, 'choyee94', '2010-12-11', 'cym', '2017-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS731223483910', 'Billy Sanchez', 0, '+44 5760 059791', 4, '559809842674085932', 'Block 32, 921 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1986-01-28', 0, 0, 'sanchbilly', '2007-01-03', 'billysanchez', '2020-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS936194996222', 'Patrick Murray', 1, '+44 (151) 686 5351', 3, '764524697447282680', 'No.4 Main building, 346 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1992-01-18', 0, 0, 'patrick76', '2014-02-22', 'patrickmu', '2010-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS173095098161', 'Amanda Williams', 0, '+81 80-5001-7772', 0, '538832441106263477', '日本札幌豊平区豊平三条十三丁目3番14号24号室', '1998-06-07', 0, 0, 'amanda419', '2020-03-10', 'williamsaman', '2016-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS714956741678', '楊詠詩', 1, '+81 90-8221-7371', 1, '123896221397851053', 'Rm. 26, 5-19-18 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1993-04-11', 0, 0, 'yeuwing1129', '2018-04-28', 'yeungws', '2008-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS413984363976', '蔡子韬', 0, '+44 (20) 6672 0431', 1, '075116614356514522', 'No.34 Main building, 915 Regent Street, London, W1B 2LX, United Kingdom', '1986-01-20', 0, 0, 'zitao715', '2013-03-03', 'zitaoca82', '2007-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS592219897758', '夏杰宏', 1, '+81 90-7123-7423', 1, '451734463389235917', '32F, 13 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1988-05-31', 0, 0, 'jxia', '2000-12-03', 'xiajiehong', '2010-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS082133162533', 'Grace Gonzales', 0, '+81 11-564-0273', 0, '148554984743040284', '50F, 5-19-17 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1986-06-30', 0, 0, 'gracegonz', '2015-07-29', 'gonzalesg', '2007-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS890884487752', '苗祖兒', 0, '+1 213-014-6878', 3, '999681920246856029', '120 Wall Street Apt 18, Los Angeles, CA 90003, United States', '1986-08-24', 0, 0, 'mchoyee', '2015-02-19', 'cymiu', '2013-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS384388004845', '山田花', 1, '+1 212-443-7370', 0, '469399544361493747', '813 Wooster Street Apt 33, New York, NY 10012, United States', '1985-06-15', 0, 0, 'yh212', '2007-02-14', 'hana96', '2001-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS696525993525', '馬永權', 0, '+81 52-111-9392', 2, '606413422461272770', '44F, 7 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1995-06-07', 0, 0, 'ma1113', '2003-03-01', 'wingkuen10', '2014-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS519697721289', '松本拓哉', 1, '+44 5944 676852', 2, '881518277619625583', 'No.45 Main building, 472 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1994-08-25', 0, 0, 'matsumototakuya1029', '2013-01-31', 'takuyamatsumoto', '2020-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS742554496092', 'Annie Holmes', 0, '+81 3-2116-1071', 1, '543598167433790733', '日本東京中央区銀座三丁目12番3号47階', '1988-12-15', 0, 0, 'aholmes', '2016-03-16', 'annieholmes511', '2012-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS882850609943', 'Matthew Turner', 0, '+44 (151) 410 1199', 0, '681344890525221737', 'No.46 Main building, 412 Redfern St, Liverpool, L20 8JB, United Kingdom', '1988-07-28', 0, 0, 'turnemat515', '2012-07-10', 'turner6', '2000-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS243841347384', 'Sherry Woods', 0, '+86 755-221-1653', 1, '125442498522384271', '中国深圳龙岗区布吉镇西环路419号47栋', '1995-08-07', 0, 0, 'woodssherry', '2008-02-16', 'sherry1988', '2005-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS026982616517', '孟璐', 1, '+86 189-7909-2212', 1, '263058227029565295', '中国深圳龙岗区布吉镇西环路285号10室', '1989-03-23', 0, 0, 'meng7', '2009-05-25', 'lumeng', '2000-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS558258672435', '戴宇宁', 0, '+81 74-598-6575', 3, '657438609803374582', '日本ならし大和郡山市本庄町一丁目1番17号27号室', '1991-08-03', 0, 0, 'yuning4', '2001-11-22', 'ydai1996', '2021-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS849061004592', '鄧淑怡', 1, '+86 139-9730-5894', 2, '104438467796734637', '中国上海市浦东新区橄榄路116号华润大厦36室', '1986-05-07', 0, 0, 'sukyeetang', '2003-03-17', 'sytang', '2021-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS894509017856', '吳永發', 0, '+44 7687 180215', 4, '535942810678515877', 'Block 36, 162 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-11-02', 0, 0, 'wingfatng', '2005-03-11', 'ngwf614', '2004-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS214620889375', '關力申', 1, '+1 213-889-0897', 4, '296437624892511691', '416 Alameda Street Apartment 43, Los Angeles, CA 90002, United States', '1988-02-18', 0, 0, 'liksunkwan806', '2000-04-14', 'lskwan', '2006-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS120970792285', 'Craig Wallace', 1, '+81 90-9710-1349', 1, '152005076513799769', 'Rm. 13, 5-4-12 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-04-27', 0, 0, 'craigwall', '2003-03-17', 'wallcraig', '2010-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS872761535856', '侯震南', 1, '+86 194-0377-3694', 1, '891792448401451952', 'No.16 building, 885 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1993-08-27', 0, 0, 'zhho2015', '2021-02-10', 'zhennanho7', '2011-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS941350243527', '石晓明', 0, '+81 3-6141-1882', 1, '610942357052165962', '日本東京渋谷区代々木二丁目3番1号43号室', '1995-01-27', 0, 0, 'xiaoming48', '2013-12-24', 'xis', '2015-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS945747200831', '戴睿', 0, '+86 10-2427-8146', 2, '290841444980306334', '中国北京市西城区西長安街725号4号楼', '1990-09-20', 0, 0, 'dru', '2009-10-17', 'dar', '2018-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS393621144756', '吴宇宁', 1, '+86 141-5069-7076', 2, '623907984459907852', 'Room 3, 641 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1993-07-22', 0, 0, 'wyuning', '2002-05-21', 'yuninwu', '2007-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS538840317183', '菊地葵', 1, '+86 175-7084-1349', 0, '988001016460713412', '中国北京市東城区東直門內大街850号26室', '1987-07-22', 0, 0, 'aoi4', '2016-07-21', 'aokikuchi5', '2021-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS080960926477', '井上瑛太', 0, '+44 (161) 136 6163', 3, '184970848310182420', 'Unit 27, Oxford Eco Centre, 637 Sackville St, Manchester, M1 3BB, United Kingdom', '1986-12-30', 0, 0, 'inoue80', '2013-10-07', 'inoue1', '2021-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS803176132500', '洪慧嫻', 0, '+1 312-469-5319', 1, '099777930363646653', '775 Pedway Apt 17, Chicago, IL 60601, United States', '1997-05-28', 0, 0, 'waihan15', '2020-09-04', 'whhun', '2019-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS131470766486', '薛安琪', 0, '+81 66-989-2862', 0, '057443657826301717', '37-kai, 4-9-6 Kamihigashi, Hirano Ward, Osaka, Japan', '1995-11-11', 0, 0, 'xueanqi1948', '2002-04-15', 'anqixue', '2012-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS599965435370', '王心穎', 0, '+86 21-0893-0498', 3, '002061523249497743', '46F, 84 Ganlan Rd, Pudong, Shanghai, China', '1988-09-22', 0, 0, 'sumwingw9', '2005-09-19', 'wosw76', '2004-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS636074949844', 'Alice Flores', 0, '+1 213-653-3369', 3, '076317158117761527', '796 Grape Street Apt 13, Los Angeles, CA 90002, United States', '1990-12-24', 0, 0, 'alicefl82', '2016-01-19', 'floresalice129', '2013-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS788902159028', '魏秀英', 0, '+81 90-4703-8395', 1, '881564276634024047', '日本おおさかし近江堂一丁目7番4号40号室', '1995-07-10', 0, 0, 'weixiuying7', '2020-03-08', 'weix4', '2013-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS072027076704', '太田陸', 0, '+1 838-424-6414', 3, '820383508164297789', '429 Broadway Suite 39, Albany, NY 12207, United States', '1985-04-05', 0, 0, 'riku1963', '2001-11-13', 'rikuota', '2020-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS215967761565', '許慧敏', 0, '+86 161-0009-4307', 0, '897882387567143914', '中国北京市朝阳区三里屯路520号23栋', '1988-02-03', 0, 0, 'huiwaima', '2005-12-21', 'wmhui', '2013-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS062238915336', 'Tracy Nichols', 0, '+81 80-2071-3774', 3, '254647091729600399', 'Rm. 20, 5-2-10 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-12-23', 0, 0, 'nicholstracy1', '2014-01-22', 'tracynichols5', '2019-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS275006231511', 'Patrick Olson', 1, '+86 158-6245-4341', 4, '176899531015124434', 'Room 39, CR Building, 345 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1992-06-09', 0, 0, 'olsonpatrick', '2017-12-13', 'olson108', '2003-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS780740996638', '蔡志明', 0, '+81 90-1762-8081', 2, '464607213511885177', 'Rm. 32, 3-9-19 Gakuenminami, Nara, Japan', '1986-02-11', 0, 0, 'chiming10', '2000-10-20', 'choicm48', '2014-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS381317775353', '蕭詠詩', 0, '+1 718-338-4311', 3, '094517298260783392', '566 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1993-06-01', 0, 0, 'wssiu', '2001-04-19', 'wssiu', '2007-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS884748870450', '岩崎明菜', 0, '+81 3-7832-6177', 3, '261866569577387572', 'Rm. 13, 2-3-4 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-12-14', 0, 0, 'iwasaki2', '2017-02-02', 'akina2', '2013-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS598180276586', '顾晓明', 1, '+86 769-3797-0763', 2, '814514873440685403', 'No.2 building, 626 Shanhu Rd, Dongguan, China', '1998-11-01', 0, 0, 'xgu5', '2017-09-28', 'guxiaoming47', '2000-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS441166035777', '斎藤舞', 0, '+86 21-2437-2352', 2, '567546129816238519', '中国上海市闵行区宾川路478号华润大厦15室', '1989-04-06', 0, 0, 'saitoma', '2002-02-25', 'maisai', '2002-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS852462151126', 'Douglas Hicks', 0, '+86 10-957-7335', 2, '564470314071261520', '中国北京市西城区西長安街156号31号楼', '1993-07-03', 0, 0, 'douglashick', '2020-10-17', 'hdoug', '2015-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS037334711195', '山田結翔', 0, '+1 213-087-7026', 4, '951610288128186249', '68 Sky Way Apt 45, Los Angeles, CA 90043, United States', '1985-12-17', 0, 0, 'yamada58', '2011-02-05', 'yamadyu14', '2009-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS310044046141', 'Joshua Wells', 0, '+81 70-7310-0099', 1, '276295063505547078', '14F, 3-15-2 Ginza, Chuo-ku, Tokyo, Japan', '1998-09-05', 0, 0, 'wells08', '2005-07-28', 'wells1970', '2010-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS331316125778', '中森優奈', 0, '+81 66-103-9982', 3, '835142210304010090', '日本おおさかし東住吉区東田辺三丁目27番2号36階', '1994-12-25', 0, 0, 'yun1220', '2016-05-28', 'yunna', '2015-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS791202420367', '阮永權', 0, '+81 74-576-0891', 2, '533497485501511788', 'Rm. 5, 3-9-9 Gakuenminami, Nara, Japan', '1987-02-01', 0, 0, 'wingkuen321', '2015-01-12', 'wkyuen', '2005-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS215812403664', 'Rosa Mendoza', 1, '+81 52-508-1224', 1, '961676563010474070', '48F, 3-19-14 Shimizu, Kita Ward, Nagoya, Japan', '1999-02-18', 0, 0, 'rosam5', '2001-06-19', 'mendoros8', '2016-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS249593142369', 'Tracy Sullivan', 0, '+81 90-5664-6851', 1, '078588461289968660', '28-kai, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-08-09', 0, 0, 'tracysu107', '2001-01-16', 'tsullivan', '2013-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS774791832022', '佘學友', 0, '+44 5759 897326', 0, '927939810712668891', 'Block 11, 42 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1999-01-14', 0, 0, 'hysheh', '2002-06-09', 'hokyau1972', '2018-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS196647418211', 'Sherry Tran', 0, '+81 90-8704-6572', 1, '656646236799230767', '日本なごやし瑞穂区河岸町四丁目20番3号15階', '1989-08-18', 0, 0, 'transher5', '2014-09-20', 'tran511', '2008-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS320039112979', 'Phyllis Anderson', 0, '+86 135-6381-8153', 3, '253853883954206289', '中国中山天河区大信商圈大信南路229号华润大厦43室', '1989-06-02', 0, 0, 'phanderson', '2007-11-15', 'phyllisande', '2008-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS482312937657', '徐杰宏', 0, '+81 90-2826-6278', 1, '325755070068057537', '35F, 16 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-02-04', 0, 0, 'jiehongxu', '2021-09-08', 'jiehong4', '2014-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS156477847036', 'Herbert Daniels', 0, '+44 7247 674888', 2, '518733120523167116', 'Unit 10, Oxford Eco Centre, 651 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1998-05-11', 0, 0, 'danherbert', '2021-06-28', 'herbertdaniels6', '2014-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS837169402160', '萧秀英', 1, '+1 212-212-7367', 2, '372294533235185276', '809 Canal Street 3rd Floor, New York, NY 10013, United States', '1998-06-26', 0, 0, 'xiuyingxiao1118', '2013-03-24', 'xiuyingxiao', '2016-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS665982834324', '钱璐', 1, '+81 74-033-7093', 1, '657317181679465999', '日本ならし大和郡山市本庄町一丁目1番16号2階', '1996-04-03', 0, 0, 'qialu', '2006-11-11', 'lu8', '2003-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS820078402693', '尹嘉伦', 0, '+81 70-3783-4333', 4, '195129892320966890', '日本ならし西大寺赤田町一丁目7番7号4階', '1998-10-28', 0, 0, 'jiay', '2021-04-14', 'jialunyi6', '2005-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS577483752390', '曾嘉伦', 1, '+81 74-643-0176', 1, '739619326977304461', '41F, 1-7-4 Saidaiji Akodacho, Nara, Japan', '1994-05-30', 0, 0, 'zeng606', '2009-06-13', 'zenjialun601', '2009-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS213944790721', '菊地拓哉', 0, '+81 80-9161-1525', 3, '797908685556181053', '日本なごやし瑞穂区河岸町四丁目20番5号3号室', '1990-10-20', 0, 0, 'takuyakiku', '2009-11-26', 'kikuchi10', '2000-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS171817228932', '廖家輝', 0, '+44 (116) 385 2186', 0, '889760195123755185', 'Unit 13, Oxford Eco Centre, 480 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1998-08-11', 0, 0, 'liaokafai', '2008-04-24', 'liao1979', '2005-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS204099320617', '高田拓哉', 1, '+1 330-123-9614', 2, '261829671136840228', '199 Fern Street Apartment 12, Akron, OH 44307, United States', '1995-07-04', 0, 0, 'takadatakuya', '2014-12-03', 'takadatakuy73', '2016-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS141417133703', '李致远', 1, '+86 152-0692-6084', 2, '518328826024069862', '中国成都市锦江区人民南路四段429号1楼', '1985-10-09', 0, 0, 'zhiyuanli54', '2011-07-06', 'zhiyli9', '2000-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS969818759925', '島田蓮', 0, '+44 (116) 358 9449', 2, '977403384179361948', 'Block 33, 449 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1993-09-09', 0, 0, 'renshimada', '2020-06-07', 'renshima', '2004-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS806865541473', '薛力申', 1, '+44 (161) 791 4792', 3, '232047099731758800', 'Block 27, 997 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-04-20', 0, 0, 'liksun823', '2000-12-13', 'liksunsit', '2018-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS307237827813', '翁安琪', 0, '+1 614-348-6540', 3, '163068635992927809', '849 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1993-12-24', 0, 0, 'yonkay', '2020-12-14', 'yok', '2017-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS872700225424', '徐璐', 0, '+86 155-2287-2743', 1, '358866161680868361', 'No.35 building, 520 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1992-05-20', 0, 0, 'lux', '2010-01-03', 'xlu', '2010-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS868366513247', '雷杰倫', 0, '+86 20-6147-6126', 3, '846806965588056052', 'Room 31, CR Building, 970 Jiangnan West Road, Haizhu District, Guangzhou, China', '1993-02-26', 0, 0, 'chiehlun11', '2000-06-15', 'clloui', '2021-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS997194124881', '程云熙', 0, '+1 330-582-6952', 1, '007512282103856993', '837 Collier Road Apartment 14, Akron, OH 44320, United States', '1995-01-02', 0, 0, 'yuncheng', '2000-07-29', 'yuch', '2010-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS102740983880', '山田光莉', 0, '+86 154-1120-7222', 4, '274328048584083312', '中国上海市浦东新区健祥路560号22室', '1987-03-15', 0, 0, 'hikyamad', '2011-08-29', 'hikayam', '2002-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS722808394813', '许嘉伦', 1, '+81 70-4812-8013', 2, '756348238598886046', '日本ならし学園南三丁目9番15号14階', '1997-04-01', 0, 0, 'xji824', '2013-03-21', 'jialuxu', '2018-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS637627312712', '邵力申', 0, '+81 70-1518-9715', 1, '462376655826347666', '43F, 3-19-19 Shimizu, Kita Ward, Nagoya, Japan', '1985-12-20', 0, 0, 'sliksun', '2008-11-25', 'siuliksun310', '2007-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS690783725206', '潘子韬', 0, '+81 3-5441-7708', 4, '897441206555311301', '49-kai, 1-6-10, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1987-03-26', 0, 0, 'zitao10', '2003-06-30', 'zipan', '2010-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS592776493333', '王璐', 1, '+86 147-8881-7768', 1, '543874922105021469', 'Room 22, CR Building, 872 Dong Zhi Men, Dongcheng District, Beijing, China', '1993-11-09', 0, 0, 'wanglu', '2003-08-27', 'luwan', '2006-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS122106415643', '岩崎玲奈', 1, '+44 (161) 751 8272', 4, '355250409707380732', 'No.45 Main building, 987 Portland St, Manchester, M1 3LA, United Kingdom', '1985-08-23', 0, 0, 'iwasakire', '2013-01-15', 'iwasakirena2003', '2008-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS553365201464', '高天樂', 0, '+86 10-8274-0524', 1, '797352412089873587', '中国北京市房山区岳琉路53号华润大厦14室', '1991-06-25', 0, 0, 'kaotl', '2015-04-22', 'tinlok10', '2010-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS925681264669', 'Kevin Hall', 0, '+86 163-8624-5391', 3, '242702585744798373', 'Room 36, CR Building, 774 Jiangnan West Road, Haizhu District, Guangzhou, China', '1990-03-30', 0, 0, 'hak47', '2005-01-20', 'hallkevin9', '2004-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS144080825789', 'Jeffery Alvarez', 0, '+1 212-256-6002', 3, '429700092564827170', '912 Canal Street Apartment 38, New York, NY 10013, United States', '1993-06-25', 0, 0, 'jefferyalva2', '2015-08-05', 'alvarezj', '2016-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS920061191154', 'Emily Morales', 1, '+86 134-7716-5175', 2, '188139474120138564', '中国深圳龙岗区学园一巷932号华润大厦19室', '1997-09-29', 0, 0, 'emilymorales3', '2014-11-06', 'emilmora', '2017-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS998656271190', '小川明菜', 0, '+81 90-8661-7110', 2, '510213566587287590', 'Rm. 5, 1-5-4, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-11-15', 0, 0, 'akinogawa', '2018-07-22', 'ogaakina89', '2016-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS307418201430', '贺嘉伦', 1, '+86 140-2028-6130', 1, '415518498390476478', '中国成都市成华区玉双路6号423号21号楼', '1990-03-28', 0, 0, 'heji', '2021-12-28', 'jialun807', '2018-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS961104917727', '遠藤拓哉', 1, '+81 52-147-6122', 0, '719185715190715963', '44F, 2 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1990-03-06', 0, 0, 'takuya204', '2012-09-13', 'taendo10', '2007-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS043535465778', 'Edward Murphy', 1, '+86 184-5746-7206', 3, '301470865284645399', '中国中山天河区大信商圈大信南路413号7楼', '1995-06-26', 0, 0, 'edwardmu', '2021-11-06', 'mued', '2010-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS522432451851', '白家玲', 1, '+86 760-4464-3514', 4, '833599658041531156', 'Room 17, 960 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1989-05-16', 0, 0, 'pakali', '2001-03-18', 'pakaling', '2021-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS725973858701', '刘宇宁', 0, '+81 70-3413-1082', 4, '952607678692453320', '48F, 1-7-2 Omido, Higashiosaka, Osaka, Japan', '1996-09-01', 0, 0, 'yuliu', '2013-03-25', 'yunliu', '2002-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS674401278553', 'Jesse Flores', 1, '+86 20-725-3581', 3, '625653324540959289', '中国广州市天河区天河路111号华润大厦50室', '1998-02-08', 0, 0, 'jef413', '2003-04-16', 'fjesse205', '2003-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS513712400319', '薛子异', 1, '+81 70-3304-4350', 3, '740446072627750164', '46-kai, 2-3-8 Yoyogi, Shibuya-ku, Tokyo, Japan', '1988-10-22', 0, 0, 'xziyi', '2010-01-07', 'ziyixu', '2009-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS084837764862', '任嘉伦', 0, '+86 21-1482-3850', 1, '871900440956241659', '中国上海市浦东新区健祥路644号40号楼', '1996-04-28', 0, 0, 'renjialun74', '2019-09-18', 'jr04', '2015-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS910424943803', '千葉光莉', 0, '+1 212-779-0173', 2, '213447120910578127', '839 Fifth Avenue Apartment 34, New York, NY 10017, United States', '1988-11-28', 0, 0, 'hikari227', '2012-06-30', 'chihikari', '2007-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS669517260235', '戚慧敏', 0, '+81 11-643-4340', 4, '954538549283677097', '36-kai, 5-4-1 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1994-03-05', 0, 0, 'waimanchic63', '2013-06-17', 'wmchic85', '2018-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS699286088914', '莫子韬', 0, '+44 (121) 980 3789', 0, '755232097149565291', 'Flat 18, 487 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1992-08-07', 0, 0, 'zmo', '2006-08-04', 'mozita', '2016-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS996715883786', '黎詩涵', 0, '+86 769-4378-1614', 3, '742797327401713062', '22F, 677 Dongtai 5th St, Dongguan, China', '1998-02-11', 0, 0, 'lis', '2003-10-15', 'ls2020', '2010-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS436975435006', '孫頴思', 1, '+81 90-8745-8242', 1, '243460655892481970', '日本東京中央区銀座三丁目12番18号10号室', '1998-04-28', 0, 0, 'wshsuan', '2008-11-16', 'hsuanwingsze', '2022-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS194236246298', '遠藤翼', 0, '+1 312-774-4346', 3, '682643088308676571', '526 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1985-04-28', 0, 0, 'endts', '2014-08-09', 'tsubasa9', '2008-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS133239842248', 'Douglas Carter', 1, '+81 80-0076-3299', 2, '158294127914663732', '31-kai, 5-4-18 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1996-06-20', 0, 0, 'douglas7', '2018-10-30', 'doc', '2016-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS758016120656', 'Richard Lopez', 0, '+81 80-4340-7962', 3, '660979831248246227', '日本ならし学園南三丁目9番8号47号室', '1989-12-10', 0, 0, 'lopricha', '2008-01-04', 'richardlopez', '2013-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS750253374054', '谷口大輔', 1, '+44 7880 533698', 3, '564124385746668727', 'Unit 36, Oxford Eco Centre, 477 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1987-08-14', 0, 0, 'taniguchidaisuke511', '2021-03-05', 'taniguchi8', '2000-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS734369043820', 'Cynthia Burns', 1, '+86 769-5176-3090', 1, '154814384493111273', '中国东莞东泰五街593号2楼', '1995-01-19', 0, 0, 'cynthiaburns95', '2010-10-29', 'cynthiaburns', '2014-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS174221478818', '山田大地', 1, '+86 769-8175-4047', 1, '334352204727546706', '中国东莞珊瑚路939号39楼', '1995-05-27', 0, 0, 'yamada1121', '2004-03-20', 'daicyamada1216', '2007-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS093121960468', '岡本葉月', 0, '+86 148-8721-8062', 3, '170445542595194558', 'No.49 building, 712 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1992-10-19', 0, 0, 'ohazuk7', '2022-02-19', 'okamotohazu', '2011-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS902834495619', '遠藤湊', 0, '+86 140-6935-3158', 3, '112298881262711128', '中国上海市闵行区宾川路997号3栋', '1994-01-01', 0, 0, 'miendo1991', '2004-02-08', 'endominato', '2020-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS767309136446', '孫惠敏', 1, '+86 196-7727-7236', 2, '686553419368271395', '中国广州市越秀区中山二路452号华润大厦17室', '1989-01-15', 0, 0, 'hwm8', '2005-06-27', 'wmhsuan', '2010-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS038765484173', '村上結翔', 0, '+1 212-335-0083', 0, '278823096093533725', '678 West Houston Street Apt 34, New York, NY 10014, United States', '1994-01-02', 0, 0, 'yuitomurakami', '2003-03-28', 'yuitom', '2014-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS012574128270', 'Sheila Warren', 1, '+81 80-7592-6888', 1, '756784421621449196', 'Rm. 40, 2-5-12 Chitose, Atsuta Ward, Nagoya, Japan', '1990-03-08', 0, 0, 'sw4', '2010-12-04', 'sheilawar', '2010-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS389155266277', '许子异', 0, '+81 74-902-4613', 3, '391149476222267912', '日本ならし学園南三丁目9番1号36階', '1996-07-17', 0, 0, 'xuziyi', '2017-09-27', 'ziyixu', '2002-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS176637949123', '姚安琪', 0, '+81 52-692-8145', 4, '473569299473425307', '日本なごやし守山区瀬古東二丁目171番5号14階', '1996-05-16', 0, 0, 'anqiyao', '2009-08-16', 'anqiyao', '2010-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS902481403285', 'Pauline Ruiz', 0, '+44 (116) 057 8430', 3, '864717209929748657', 'Block 46, 391 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1992-09-12', 0, 0, 'paulinerui', '2001-01-09', 'paulineruiz', '2002-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS156999747763', '高田愛梨', 0, '+81 52-001-7155', 3, '007055589576663823', '46-kai, 3-19-4 Shimizu, Kita Ward, Nagoya, Japan', '1991-07-24', 0, 0, 'airit', '2000-03-05', 'airitakada223', '2001-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS564891554241', '金子异', 1, '+44 (161) 185 5057', 1, '907920144748860766', 'No.4 Main building, 451 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1988-01-23', 0, 0, 'jinziyi', '2015-02-11', 'ziyi73', '2013-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS177318848099', '近藤愛梨', 0, '+1 213-635-1458', 2, '662619024246968563', '846 S Broadway Apartment 36, Los Angeles, CA 90015, United States', '1992-11-22', 0, 0, 'kondoairi', '2013-06-05', 'kairi', '2001-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS125833152360', '莫慧珊', 0, '+44 (161) 078 7597', 1, '306617961415101422', 'Flat 19, 303 Portland St, Manchester, M1 3LA, United Kingdom', '1990-09-14', 0, 0, 'waisanmo1210', '2006-02-28', 'waisan9', '2009-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS353297346798', '杨宇宁', 1, '+1 212-760-1777', 1, '016109526506536076', '109 Bank Street Apt 7, New York, NY 10014, United States', '1991-05-26', 0, 0, 'yuninyan', '2016-02-20', 'yangy402', '2008-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS494532404300', '顧仲賢', 0, '+81 3-1970-8924', 3, '225268182283401254', '日本東京渋谷区代々木二丁目3番10号49号室', '1995-05-25', 0, 0, 'cyku', '2015-08-02', 'ku3', '2017-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS414703942083', '胡子韬', 1, '+1 614-070-1620', 2, '471455836713015856', '811 East Alley Apartment 33, Columbus, GA 43201, United States', '1990-06-17', 0, 0, 'hzitao', '2006-07-31', 'hu18', '2010-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS736206055127', '向家強', 1, '+81 70-5155-2572', 2, '960337886641214180', 'Rm. 42, 1-5-12, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1991-06-17', 0, 0, 'kaheung', '2012-12-06', 'kkh3', '2018-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS370479400444', '村上陽太', 0, '+44 (1865) 75 1656', 1, '537661219887643060', 'Unit 47, Oxford Eco Centre, 521 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1986-09-01', 0, 0, 'yotmur51', '2009-04-06', 'murakami94', '2010-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS933072268614', '吕子异', 0, '+86 174-9011-0738', 3, '104197437821105145', 'No.23 building, 816 Kengmei 15th Alley, Dongguan, China', '1985-05-21', 0, 0, 'ziylu', '2016-05-03', 'zilu5', '2006-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS131365272532', '錢家強', 1, '+81 66-564-9538', 1, '887002400025347160', '日本おおさかし西成区天神ノ森二丁目1番8号41号室', '1988-04-23', 0, 0, 'kakeungchin7', '2011-10-07', 'chin07', '2017-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS778512905975', '葉家明', 0, '+86 197-7043-5381', 0, '660015617000326780', '中国东莞坑美十五巷241号华润大厦25室', '1990-07-19', 0, 0, 'kamingyip73', '2021-05-20', 'yka', '2001-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS933111613682', '毛家輝', 0, '+81 74-356-6202', 3, '674200772383578060', '日本ならし西大寺赤田町一丁目7番5号48階', '1992-09-04', 0, 0, 'kafaim', '2017-02-17', 'kafai86', '2014-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS261497918941', 'Alexander Reyes', 1, '+44 (151) 923 2812', 3, '778244674797162813', 'Block 6, 557 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1985-12-29', 0, 0, 'ralexander6', '2006-05-03', 'alexanderreyes', '2021-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS875048855753', 'Hazel Jones', 1, '+81 11-012-2944', 4, '210381948654016609', 'Rm. 37, 5-2-16 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1987-04-01', 0, 0, 'jonesh20', '2001-11-26', 'johazel', '2020-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS114029397412', '橋本陽菜', 1, '+81 66-947-5472', 1, '531310895762311662', '41F, 1-7-5 Omido, Higashiosaka, Osaka, Japan', '1985-11-18', 0, 0, 'hinahas', '2015-08-16', 'hashhina64', '2011-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS582314656980', 'Debra Sullivan', 0, '+81 11-078-0144', 3, '804978015195747860', 'Rm. 42, 6-1-6, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1985-04-19', 0, 0, 'debsullivan97', '2018-01-03', 'dsullivan', '2006-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS677269438409', '阮家強', 1, '+1 212-299-1432', 1, '577202457745980245', '128 Canal Street 3rd Floor, New York, NY 10013, United States', '1995-12-26', 0, 0, 'kkyuen', '2019-12-09', 'ykakeung', '2016-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS693517340896', '葉詠詩', 1, '+86 21-128-0256', 2, '055972280103618949', '42F, 466 Hongqiao Rd., Xu Hui District, Shanghai, China', '1985-05-28', 0, 0, 'yipwings827', '2007-11-16', 'yipws', '2001-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS685254462779', '麥家輝', 1, '+81 3-6370-9078', 2, '547160542992608879', '日本東京中央区銀座三丁目12番18号19階', '1996-12-06', 0, 0, 'makkf', '2012-06-04', 'mak7', '2000-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS179586120914', 'Josephine Mcdonald', 1, '+81 3-9345-5011', 2, '152678982989348400', 'Rm. 19, 2-3-6 Yoyogi, Shibuya-ku, Tokyo, Japan', '1996-06-09', 0, 0, 'josephine9', '2019-10-05', 'josephine48', '2013-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS360916474003', 'Clara Graham', 0, '+86 28-942-0338', 2, '938484540690197293', '中国成都市成华区玉双路6号335号华润大厦30室', '1995-10-23', 0, 0, 'graham99', '2017-08-25', 'clarag', '2019-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS837318111238', '島田美月', 1, '+86 20-412-2610', 1, '391438573783547293', '中国广州市越秀区中山二路598号13室', '1992-11-12', 0, 0, 'smitsuki', '2007-05-27', 'shimamitsu', '2003-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS454517590954', '菅原花', 0, '+86 157-1735-3144', 3, '055679191999259677', '中国深圳罗湖区清水河一路6号3栋', '1994-08-22', 0, 0, 'sugahana', '2017-09-10', 'hana7', '2014-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS554711046284', '邱岚', 1, '+86 196-9025-9239', 2, '823029260370637407', '26F, 619 FuXingMenNei Street, XiCheng District, Beijing, China', '1998-05-15', 0, 0, 'qiulan', '2001-03-07', 'lanq912', '2016-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS583892902222', 'Sandra Nguyen', 1, '+1 213-820-5102', 3, '229002192262742060', '890 Wall Street Apt 50, Los Angeles, CA 90003, United States', '1985-09-14', 0, 0, 'sandnguyen', '2008-09-19', 'sandrang', '2018-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS516191785016', '汪震南', 1, '+86 10-3234-0729', 4, '709409002998656196', 'Room 44, CR Building, 201 West Chang''an Avenue, Xicheng District, Beijing, China', '1993-02-05', 0, 0, 'zhennan622', '2021-06-10', 'zwan', '2007-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS608210167930', '邵云熙', 1, '+44 5899 907930', 2, '124665644243545460', 'No.3 Main building, 268 Sackville St, Manchester, M1 3BB, United Kingdom', '1987-04-08', 0, 0, 'shaoyunx', '2013-09-05', 'syunxi', '2017-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS419959980723', '方慧珊', 0, '+1 838-996-5106', 2, '212322617659680144', '19 Lark Street Suite 24, Albany, NY 12210, United States', '1990-11-08', 0, 0, 'fongwaisa1229', '2013-04-23', 'fonwaisan525', '2002-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS929494539951', '钟璐', 0, '+86 190-0963-3561', 2, '427013879821137845', '中国上海市闵行区宾川路185号华润大厦42室', '1995-02-09', 0, 0, 'lu1995', '2012-02-17', 'zhonglu', '2008-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS398956460541', 'Sheila Ryan', 1, '+86 161-1018-4606', 4, '310830060213487051', '中国深圳罗湖区蔡屋围深南东路689号15室', '1985-03-31', 0, 0, 'sheilarya', '2009-06-04', 'ryansheila83', '2013-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS549550211553', 'Ray Stephens', 1, '+81 80-9565-0389', 0, '394682992218597600', '34-kai, 1-7-4 Omido, Higashiosaka, Osaka, Japan', '1988-08-14', 0, 0, 'stephensra', '2021-10-10', 'rays', '2006-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS497139408978', 'Julie Stephens', 1, '+86 196-1359-8994', 3, '975011518450589607', '中国北京市海淀区清河中街68号405号4室', '1993-02-07', 0, 0, 'jstephens1', '2002-02-16', 'stephensjulie1', '2002-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS178666690569', '小林百花', 0, '+86 166-2288-7736', 2, '434103992569953073', 'No.18 building, 157 Dong Zhi Men, Dongcheng District, Beijing, China', '1997-07-03', 0, 0, 'kobayashimomok', '2018-12-08', 'momok3', '2016-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS538057068057', 'Michelle Lopez', 0, '+86 145-7379-2092', 2, '340597107573631282', 'Room 50, CR Building, 438 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1987-02-13', 0, 0, 'lopez4', '2019-08-26', 'michelle4', '2017-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS030555064396', 'Jerry Collins', 1, '+86 760-3808-5356', 4, '376224394686622366', '中国中山乐丰六路644号32号楼', '1990-01-07', 0, 0, 'coljerr1117', '2009-08-14', 'jerry801', '2010-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS494564477014', '山本百恵', 0, '+81 90-3318-8398', 1, '906303536264000104', 'Rm. 10, 5-4-19 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1995-12-08', 0, 0, 'yamamotomomoe', '2011-05-07', 'yamamotomomo', '2007-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS560028769378', 'Jessica Clark', 1, '+86 199-9086-1171', 2, '774590256190825074', '中国深圳龙岗区布吉镇西环路653号华润大厦40室', '1996-11-15', 0, 0, 'clajessica', '2009-08-16', 'clarkjessica', '2004-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS775222534967', '上田優奈', 1, '+44 7110 548335', 3, '755808651186051583', 'Block 4, 130 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1986-10-24', 0, 0, 'yunu7', '2000-11-01', 'ueyu', '2006-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS292171303723', '崔慧敏', 1, '+86 755-8141-2064', 0, '527420201743978552', '中国深圳罗湖区蔡屋围深南东路731号21楼', '1988-01-29', 0, 0, 'wmchoi4', '2003-03-01', 'wmchoi6', '2005-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS276739454638', '長谷川美咲', 1, '+81 70-9081-6571', 1, '078222958555103518', '日本東京渋谷区代々木二丁目3番16号4階', '1994-05-05', 0, 0, 'hami', '2000-09-02', 'mihase', '2008-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS147547267830', 'Keith Ellis', 1, '+86 132-1309-1533', 0, '113367407021791370', '12F, 784 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1986-03-19', 0, 0, 'keithellis51', '2008-01-12', 'keith6', '2005-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS476815624812', '尹子异', 0, '+81 11-701-5836', 3, '203636736861958566', '日本札幌中央区宮の森四条六丁目1番18号35号室', '1990-12-07', 0, 0, 'yiziy', '2018-05-07', 'yin1', '2005-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS397902906410', '石川蒼士', 0, '+81 90-6775-4931', 2, '156707147170402944', 'Rm. 20, 5-2-1 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1992-11-03', 0, 0, 'aoshiishi10', '2005-11-01', 'iaoshi', '2008-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS156493127183', '西村陽菜', 1, '+44 5990 337729', 0, '387934528965120682', 'Unit 20, Oxford Eco Centre, 852 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1989-10-04', 0, 0, 'hinishimura', '2016-10-03', 'hnis', '2003-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS099740542067', 'Mario Tucker', 1, '+81 90-9014-6693', 2, '784448453100467767', '日本東京千代田区丸の内一丁目6番11号5階', '1998-07-10', 0, 0, 'tucm', '2004-12-23', 'matuc', '2003-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS572285918167', '段安琪', 1, '+1 614-323-3408', 1, '712739843453683052', '295 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1993-07-10', 0, 0, 'anqi1', '2002-10-24', 'anqi616', '2003-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS558662280794', '许詩涵', 1, '+81 3-0209-3219', 1, '135361997297631528', '日本東京品川区東五反田五丁目2番1号39階', '1993-03-13', 0, 0, 'shihxu', '2020-03-30', 'shihxu415', '2018-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS021403007080', '斉藤明菜', 0, '+81 11-986-2311', 3, '724847460673568292', '日本札幌白石区菊水三条五丁目4番13号26階', '1986-04-12', 0, 0, 'sa210', '2017-06-26', 'saiakina1983', '2003-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS447780742287', '谷口優奈', 0, '+86 151-3327-3051', 1, '627482881563055962', '中国广州市白云区机场路棠苑街五巷750号41号楼', '1987-06-09', 0, 0, 'tyuna53', '2005-12-05', 'yunta55', '2016-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS187644994476', '上田結翔', 1, '+81 90-8800-5396', 3, '452851203028643031', '42F, 13-3-11 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1989-04-04', 0, 0, 'uedyuito09', '2017-11-26', 'ueday904', '2016-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS955591022663', '袁岚', 0, '+44 (20) 2034 5905', 2, '200970529211956776', 'Block 39, 551 Pollen Street, London, W1S 1NG, United Kingdom', '1997-07-25', 0, 0, 'yulan', '2004-07-04', 'lanyuan', '2012-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS394864317368', 'Julie Howard', 0, '+86 755-8442-1943', 3, '740227954560058208', '19F, 301 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1998-08-08', 0, 0, 'hojulie', '2014-07-13', 'julh', '2001-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS302518218700', '黎仲賢', 0, '+44 5722 467158', 3, '754620857737592395', 'No.13 Main building, 39 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1988-03-08', 0, 0, 'chungyinlai', '2010-04-29', 'laicy', '2008-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS532611350182', '江嘉伦', 1, '+86 170-8623-8463', 2, '774202500391334239', 'Room 25, 111 Dong Zhi Men, Dongcheng District, Beijing, China', '1987-03-04', 0, 0, 'jialunji', '2002-12-18', 'jiang7', '2018-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS415819234373', '上野桜', 1, '+44 5653 337403', 2, '894636056780536382', 'Unit 14, Oxford Eco Centre, 628 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1991-03-18', 0, 0, 'us1', '2020-11-07', 'sakuraueno7', '2012-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS581606474471', '有村拓哉', 0, '+86 10-9144-8943', 2, '157161425980485896', '中国北京市西城区西長安街27号43室', '1990-07-21', 0, 0, 'arimurata', '2001-12-30', 'arimura85', '2005-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS675708840830', 'Ethel Lee', 0, '+86 133-8254-6312', 3, '319612364709551721', '5F, No. 256, Shuangqing Rd, Chenghua District, Chengdu, China', '1986-09-25', 0, 0, 'ethellee329', '2000-08-27', 'ethelee1', '2015-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS552008974749', '潘致远', 0, '+86 769-1285-7513', 4, '250711144219902834', '中国东莞坑美十五巷39号14室', '1989-02-07', 0, 0, 'panzhiyuan3', '2019-07-23', 'zhiyuanp', '2015-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS497035978910', 'Willie Hernandez', 1, '+44 (151) 646 2554', 4, '961560134249389949', 'No.29 Main building, 753 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1995-11-04', 0, 0, 'hewil8', '2001-05-03', 'hernandezwi512', '2016-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS832716887921', 'Lee Adams', 0, '+86 160-8527-1773', 3, '007546287096657019', '中国广州市越秀区中山二路980号25号楼', '1994-03-31', 0, 0, 'leeadams1009', '2020-12-24', 'leeadams07', '2007-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS597528622262', '坂本大輔', 1, '+1 212-032-6735', 4, '758864767935311347', '381 Wooster Street Suite 28, New York, NY 10012, United States', '1989-05-21', 0, 0, 'daisuke4', '2004-03-18', 'sakda', '2003-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS037933197854', '郑子韬', 1, '+86 769-529-6446', 2, '998571749943785516', '中国东莞珊瑚路933号华润大厦42室', '1994-02-03', 0, 0, 'zz6', '2020-09-23', 'zhengzita', '2015-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS191371406871', 'Nicole Owens', 0, '+1 330-616-9595', 1, '685371134735757734', '289 West Market Street 3rd Floor, Akron, OH 44333, United States', '1985-02-10', 0, 0, 'nicolowens', '2017-07-28', 'onicole75', '2013-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS738045249533', '容詩君', 0, '+86 139-6065-9534', 2, '591193643420913287', '47F, 63 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1997-12-17', 0, 0, 'szekwanyung', '2015-05-10', 'sky7', '2017-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS520163790785', '和田花', 1, '+86 10-9711-6257', 3, '779420817352242592', 'No.10 building, 892 East Wangfujing Street, Dongcheng District , Beijing, China', '1993-06-23', 0, 0, 'hanawada419', '2001-05-07', 'wadahana', '2020-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS703975942935', '戴世榮', 1, '+1 312-382-1139', 2, '459547307108722550', '36 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1994-05-10', 0, 0, 'daisaiw79', '2019-02-06', 'dai4', '2000-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS683796151684', '严云熙', 1, '+81 52-590-4435', 0, '812267019376739775', '7F, 12 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-07-06', 0, 0, 'yan1205', '2010-11-23', 'yyu9', '2008-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS150189316683', '苗朝偉', 0, '+44 (116) 571 9712', 0, '326066652134819436', 'Unit 34, Oxford Eco Centre, 767 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1991-05-16', 0, 0, 'miu2016', '2012-05-17', 'miu19', '2016-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS339330483737', '中野大和', 1, '+44 5865 475620', 3, '817624145617825471', 'Unit 19, Oxford Eco Centre, 272 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1997-03-12', 0, 0, 'nakanoy216', '2014-06-26', 'nakanyamato10', '2015-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS221941208473', 'Bernard Rodriguez', 1, '+1 213-152-0922', 1, '665253805774357390', '628 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1989-03-01', 0, 0, 'rbe4', '2007-09-27', 'bernardrodriguez9', '2004-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS543949208859', 'Vincent Ward', 0, '+86 10-0848-7273', 0, '023507242969370772', '中国北京市海淀区清河中街68号825号29号楼', '1994-08-14', 0, 0, 'ward6', '2003-08-19', 'vincent309', '2004-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS843057649853', 'Lawrence Daniels', 1, '+86 181-2517-1243', 1, '045778840566357963', 'Room 3, 838 Ganlan Rd, Pudong, Shanghai, China', '1996-06-07', 0, 0, 'daniels1974', '2019-12-09', 'lawrence3', '2018-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS736812446083', '藤家明', 1, '+1 212-340-7904', 3, '175535091662003550', '187 Bank Street Apt 6, New York, NY 10014, United States', '1986-07-23', 0, 0, 'kamintang', '2000-03-28', 'kamtang', '2018-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS392748506487', '余璐', 0, '+81 90-3399-2920', 0, '490984637754549651', '29-kai, 14 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1999-01-10', 0, 0, 'yulu', '2011-04-11', 'yulu', '2011-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS237853619070', '沈嘉伦', 0, '+81 11-416-6080', 3, '753312440292627312', '日本札幌清田区真栄四条五丁目19番18号5号室', '1985-02-22', 0, 0, 'jshen', '2020-05-21', 'shen10', '2020-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS574042312972', '佐藤百花', 1, '+1 838-685-8115', 3, '669688661796415018', '630 Central Avenue Apartment 24, Albany, NY 12205, United States', '1986-05-01', 0, 0, 'momoka69', '2001-07-01', 'satom78', '2010-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS742637582817', '萧嘉伦', 0, '+1 213-695-2192', 3, '301673064333197317', '442 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1994-07-25', 0, 0, 'xiaojialun', '2014-09-10', 'xiao56', '2017-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS913717841037', 'Rachel Morales', 0, '+81 66-511-2432', 2, '983646478668045146', '日本おおさかし近江堂一丁目7番4号15号室', '1997-05-27', 0, 0, 'morrachel', '2002-10-25', 'moralesrachel', '2014-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS665715188560', '郭子韬', 0, '+86 769-5503-0037', 1, '520724055080403386', '18F, 907 Huanqu South Street 2nd Alley, Dongguan, China', '1988-10-26', 0, 0, 'gzitao9', '2003-04-15', 'guo92', '2008-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS767045727991', '松本花', 1, '+81 66-989-0389', 1, '251361847821399853', '25-kai, 2-1-10 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1995-03-21', 0, 0, 'hanamatsumoto', '2004-06-30', 'hana9', '2006-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS067460231893', '唐天榮', 1, '+81 70-9369-1185', 1, '820996769146950585', '日本ならし西大寺赤田町一丁目7番14号23階', '1997-08-06', 0, 0, 'tontw', '2018-04-02', 'tinwingtong', '2003-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS236206871007', '官思妤', 0, '+81 80-7696-4952', 3, '348845618204807413', '日本札幌豊平区豊平三条十三丁目3番12号30階', '1997-11-09', 0, 0, 'sykoo315', '2008-08-10', 'kszeyu', '2020-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS830797463921', '蕭力申', 1, '+81 90-5943-9877', 2, '656737733739522920', 'Rm. 3, 3-9-6 Gakuenminami, Nara, Japan', '1986-08-11', 0, 0, 'liksun9', '2016-06-30', 'liksunsiu1958', '2007-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS850070894844', 'Carolyn Gutierrez', 0, '+81 66-605-5161', 1, '508958346277619335', '日本おおさかし西成区出城一丁目1番17号24階', '1998-03-19', 0, 0, 'carolyn3', '2010-04-24', 'carolgutierrez', '2008-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS582709823685', '馬玲玲', 0, '+44 7856 047800', 3, '145696705455036976', 'Flat 45, 433 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1997-10-12', 0, 0, 'lingling1011', '2011-12-20', 'linglingma2', '2016-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS927374508777', 'Julia Cox', 1, '+81 90-3020-9054', 2, '632276740782346847', '6-kai, 6-1-10, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1985-02-08', 0, 0, 'juliacox', '2018-06-20', 'cox428', '2012-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS810713180913', '中村美緒', 1, '+86 138-2548-3145', 2, '825783618403708260', '中国深圳罗湖区田贝一路192号8楼', '1986-10-13', 0, 0, 'namio', '2005-08-12', 'nm4', '2020-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS813445000202', '甘頴思', 1, '+81 11-272-5311', 3, '216136789445423587', '44F, 5-19-19 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1999-01-07', 0, 0, 'wskam62', '2001-12-30', 'wingszekam', '2006-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS924701439498', 'Ruth Salazar', 0, '+81 66-795-3938', 1, '742132287132959865', '日本おおさかし西成区出城一丁目1番18号18階', '1995-02-21', 0, 0, 'rutsalazar', '2022-03-03', 'ruthsalaz', '2010-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS445381612897', '邵秀文', 0, '+86 21-4615-6249', 3, '001859634310752389', '中国上海市浦东新区健祥路92号25楼', '1997-02-13', 0, 0, 'ssauman', '2016-06-02', 'sisauman', '2020-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS920310278902', '程璐', 0, '+86 28-999-2917', 4, '892286447344825955', '中国成都市成华区玉双路6号900号43室', '1985-04-23', 0, 0, 'lucheng15', '2015-07-09', 'lu1007', '2020-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS632453865484', '向德華', 0, '+81 11-990-9848', 1, '483296686950420040', '日本札幌白石区菊水三条五丁目2番14号27階', '1997-04-13', 0, 0, 'takwahheung', '2004-04-21', 'heungtakwah', '2003-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS699649684072', '宣家強', 1, '+86 130-8523-3040', 0, '030840737430838328', 'No.28 building, 608 Shanhu Rd, Dongguan, China', '1991-12-03', 0, 0, 'hsuan829', '2017-08-25', 'kkhs', '2016-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS066458602632', 'Kathleen Ross', 1, '+86 755-836-3331', 3, '815502975539531818', '11F, 997 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1997-08-09', 0, 0, 'kathleenr', '2004-07-11', 'rosskath', '2000-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS743135333247', '江致远', 0, '+81 52-803-8463', 3, '449425343813189339', '日本なごやし北区清水三丁目19番2号31号室', '1993-01-16', 0, 0, 'jiaz', '2019-05-04', 'zhiyuanjia825', '2015-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS658174289840', '西村紗良', 0, '+86 755-3985-8332', 1, '497869458091081422', '28F, 811 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1986-10-14', 0, 0, 'nsara', '2013-02-25', 'nishsara', '2020-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS142829307916', '曾云熙', 0, '+1 330-222-5516', 0, '098667817799910445', '689 West Market Street 3rd Floor, Akron, OH 44333, United States', '1991-04-18', 0, 0, 'zenyun6', '2007-02-15', 'zeng103', '2019-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS173415691359', '張曉彤', 1, '+86 183-7773-1548', 3, '556261406114485131', '中国东莞珊瑚路174号46栋', '1993-06-13', 0, 0, 'cheung05', '2011-05-06', 'htcheung', '2013-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS391485309614', '陆云熙', 0, '+81 66-248-6556', 3, '840734739559205632', 'Rm. 48, 3-27-11 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1995-06-29', 0, 0, 'yunxi923', '2008-09-18', 'luyunxi94', '2019-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS132331433764', '郭子异', 0, '+86 21-5908-5305', 1, '377740224920927152', '中国上海市徐汇区虹桥路675号3楼', '1998-06-19', 0, 0, 'zguo', '2008-12-18', 'guozi', '2010-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS257237577253', '宮崎美羽', 1, '+44 5284 947887', 0, '362571025072009250', 'Block 50, 974 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1986-02-01', 0, 0, 'miyamiu', '2021-05-24', 'miumiyazaki', '2012-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS592584665422', '井上陽太', 0, '+1 212-139-2456', 1, '618746279898029843', '991 Fifth Avenue Apt 30, New York, NY 10017, United States', '1993-01-15', 0, 0, 'inoueyot', '2002-05-06', 'yotai', '2005-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS389573540791', '駱嘉欣', 0, '+81 3-9153-2773', 1, '522658362748582152', '日本東京千代田区丸の内一丁目6番7号5階', '1993-06-25', 0, 0, 'lkaryan212', '2010-04-23', 'loky', '2010-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS834688611461', '盧慧珊', 0, '+81 11-441-0139', 3, '526831636907237917', '28F, 13-3-20 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1992-09-22', 0, 0, 'lo16', '2021-03-08', 'lo10', '2018-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS900677804770', 'Chris Sullivan', 0, '+1 213-120-2690', 0, '503205409714469763', '413 Figueroa Street Apt 14, Los Angeles, CA 90037, United States', '1991-02-06', 0, 0, 'sullivan1130', '2002-01-25', 'chrsul5', '2007-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS318350594931', '任潤發', 0, '+86 131-8125-6377', 2, '091162940876510544', '中国北京市东城区东单王府井东街702号18楼', '1986-03-31', 0, 0, 'yuyam8', '2018-01-06', 'yunfaty1', '2011-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS847641332686', '任頴思', 0, '+81 70-1235-4086', 0, '336880280476201568', '6F, 4-9-14 Kamihigashi, Hirano Ward, Osaka, Japan', '1995-03-05', 0, 0, 'wingsze3', '2002-05-29', 'wsya', '2001-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS927852764144', 'Kelly Morgan', 0, '+86 160-5985-6567', 1, '295487892883439486', '中国深圳罗湖区清水河一路439号华润大厦2室', '1997-10-30', 0, 0, 'morgankelly6', '2013-06-17', 'kelly722', '2015-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS039625402835', 'Scott Myers', 1, '+86 28-4748-8948', 2, '483592329684392593', 'No.28 building, 660 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1999-02-19', 0, 0, 'myersscot', '2007-01-22', 'myerscott', '2016-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS755149358722', 'Sandra Henry', 0, '+86 769-466-5064', 3, '917869665795916085', '25F, 201 Kengmei 15th Alley, Dongguan, China', '1991-12-13', 0, 0, 'hsandra88', '2017-11-16', 'hsandr', '2015-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS748267788864', '崔青雲', 1, '+81 11-228-6114', 0, '207491111662278976', '31F, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-06-12', 0, 0, 'choichingwan', '2006-06-28', 'cwchoi', '2015-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS213108009664', '劉杰倫', 1, '+44 7580 676266', 3, '755715629486236059', 'Block 23, 310 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1988-01-13', 0, 0, 'chielau', '2012-01-09', 'chiehlunlau', '2010-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS682876203956', '王子韬', 1, '+86 161-4660-8306', 0, '130938815865109689', '28F, 414 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1995-09-22', 0, 0, 'wangzi8', '2008-02-01', 'zitaowang', '2004-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS728807231365', 'Martin Rice', 0, '+44 5606 079570', 3, '967774737091793925', 'Flat 22, 33 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1997-11-04', 0, 0, 'rmartin', '2004-10-07', 'rm63', '2000-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS827103170515', '麥志明', 0, '+86 769-715-0475', 1, '488929597340282936', 'Room 21, CR Building, 4 Huanqu South Street 2nd Alley, Dongguan, China', '1993-10-22', 0, 0, 'makcm', '2019-06-16', 'cmmak83', '2012-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS788386430938', '田村結翔', 1, '+44 7646 684541', 0, '842233890886594749', 'Flat 42, 57 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1991-01-19', 0, 0, 'tamurayuito', '2012-11-30', 'ytamu', '2003-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS149765592901', '柴田葵', 1, '+81 11-451-5503', 0, '305902901619532537', 'Rm. 44, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-02-23', 0, 0, 'shibata2012', '2001-12-15', 'aoishiba', '2007-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS737278927973', '苗梓軒', 0, '+1 838-740-9258', 1, '814976158376938527', '86 Central Avenue Apartment 18, Albany, NY 12206, United States', '1997-01-05', 0, 0, 'tszhin610', '2020-12-10', 'miuth927', '2004-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS529152346537', '翁天樂', 1, '+81 11-085-7506', 3, '195822726889046720', 'Rm. 39, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1987-04-19', 0, 0, 'yuntl', '2006-04-20', 'tlyung', '2006-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS571321643540', '雷青雲', 1, '+81 90-3411-1516', 1, '288676130295844629', '18-kai, 5-4-19 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-12-24', 0, 0, 'chingwanloui', '2004-08-31', 'louiching1025', '2012-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS415815306818', '萬嘉欣', 0, '+86 157-6073-5259', 2, '160339240687460652', '中国上海市浦东新区健祥路236号11栋', '1993-06-08', 0, 0, 'kymeng', '2011-11-10', 'karyanmeng', '2002-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS312013642461', '中森聖子', 1, '+86 177-9646-0356', 1, '926840256832704721', 'No.16 building, 995 East Wangfujing Street, Dongcheng District , Beijing, China', '1993-04-07', 0, 0, 'sn2008', '2020-12-31', 'snakamori109', '2006-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS769004796193', '武田陽菜', 1, '+44 5815 999085', 4, '397207725114825179', 'No.8 Main building, 943 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1991-02-02', 0, 0, 'hinatakeda', '2004-10-30', 'takeda2006', '2005-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS001465123508', '野村大地', 0, '+1 838-496-3485', 2, '941355233286384022', '408 Broadway 3rd Floor, Albany, NY 12207, United States', '1994-12-16', 0, 0, 'nomuradai10', '2015-03-20', 'daichi1015', '2014-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS492885610084', '黎睿', 0, '+86 197-9831-2575', 2, '948172431181729524', 'No.37 building, 235 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1993-11-23', 0, 0, 'liru9', '2000-08-06', 'ruili', '2006-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS720488932041', '鈴木湊', 0, '+1 838-332-7745', 1, '036016171191536952', '307 Lark Street Apartment 9, Albany, NY 12210, United States', '1990-11-25', 0, 0, 'minato2', '2014-04-16', 'minatosuzuki', '2008-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS812441312755', '餘家輝', 0, '+81 90-3468-4941', 2, '537230161527210154', '25F, 1-1-16 Deshiro, Nishinari Ward, Osaka, Japan', '1996-01-03', 0, 0, 'kafai713', '2005-05-28', 'kafaiyu', '2021-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS425304629164', '工藤凛', 0, '+86 132-0241-9295', 1, '739674432837669890', '中国深圳龙岗区学园一巷246号41号楼', '1986-11-19', 0, 0, 'rink', '2010-07-10', 'rink', '2006-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS324693240075', '中山聖子', 0, '+81 80-9893-9250', 0, '467122971535059118', '日本おおさかし西成区出城一丁目1番4号46階', '1996-09-23', 0, 0, 'nakayamas', '2018-09-10', 'nakaseik', '2000-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS732486867708', '柴田光', 1, '+86 160-9894-6874', 0, '968437972600019830', 'Room 46, 223 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1997-09-10', 0, 0, 'hikarushiba', '2004-01-30', 'hikash', '2012-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS398968887340', 'Dawn Wagner', 0, '+86 10-116-5942', 3, '693063793610655015', 'Room 14, CR Building, 3 68 Qinghe Middle St, Haidian District, Beijing, China', '1986-12-22', 0, 0, 'wagnedawn', '2001-12-22', 'wagnerdawn', '2011-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS457664938474', '呂慧珊', 0, '+1 213-483-8009', 4, '909749417677844047', '170 Grape Street Apt 12, Los Angeles, CA 90002, United States', '1989-04-18', 0, 0, 'wslui', '2015-04-23', 'waisan19', '2000-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS773130869991', '後藤架純', 1, '+81 70-1316-0704', 2, '538727807657371968', '42-kai, 1-1-12 Deshiro, Nishinari Ward, Osaka, Japan', '1991-12-30', 0, 0, 'gotok', '2009-01-15', 'gotoka', '2016-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS001491512135', '房志明', 0, '+86 10-312-9558', 1, '757997082308795736', '中国北京市延庆区028县道626号23号楼', '1985-04-30', 0, 0, 'fcm', '2020-06-05', 'fongchiming', '2001-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS943690773445', '崔力申', 0, '+1 614-383-4131', 3, '025946010193018570', '670 Tremont Road Apt 35, Columbus, GA 43212, United States', '1992-12-25', 0, 0, 'choiliksu1953', '2003-08-11', 'lschoi', '2020-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS979788477227', '蔡璐', 1, '+81 90-6702-3099', 3, '611812707639837487', '9-kai, 4-9-20 Kamihigashi, Hirano Ward, Osaka, Japan', '1992-04-20', 0, 0, 'cailu', '2017-12-10', 'cai122', '2009-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS211000589433', 'Danny Moore', 1, '+81 70-0472-4046', 4, '104408117410132091', '2F, 5-2-14 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1989-05-15', 0, 0, 'damoo1959', '2005-05-31', 'moored6', '2006-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS905408675535', '佐々木美緒', 0, '+81 66-231-3469', 3, '657421021692639255', '27F, 2-1-18 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1990-05-23', 0, 0, 'misasa', '2000-08-17', 'sasakmio', '2012-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS385265753063', '石川詩乃', 1, '+81 90-8038-0240', 4, '088456333586811128', '日本おおさかし平野区加美東四丁目9番15号2階', '1996-12-20', 0, 0, 'shino4', '2003-04-20', 'ishikawas1955', '2000-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS998698354461', 'Joshua Soto', 1, '+86 28-571-6304', 2, '656412241143342473', 'Room 38, 418 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1989-01-05', 0, 0, 'jossot', '2004-09-21', 'soto1118', '2005-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS732014015723', '山下舞', 1, '+86 168-2647-3729', 1, '233557519681718789', '20F, 105 Xiaoping E Rd, Baiyun , Guangzhou, China', '1985-03-13', 0, 0, 'myam', '2012-07-20', 'yamashitama', '2000-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS955787608577', '後藤百花', 1, '+86 760-8330-6602', 3, '615357777942549966', '4F, 932 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1988-04-26', 0, 0, 'momokag', '2002-04-07', 'goto72', '2006-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS372560479019', '島田瑛太', 1, '+81 70-2905-2283', 0, '122935020325004646', '40-kai, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1990-12-29', 0, 0, 'es604', '2016-06-15', 'se1996', '2018-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS564284259552', 'Aaron Gardner', 1, '+81 66-597-4014', 3, '202456259820389477', '日本おおさかし平野区加美東四丁目9番12号44号室', '1993-09-29', 0, 0, 'aarongardner', '2000-06-15', 'gardner58', '2008-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS417733398583', '山口大地', 1, '+44 5419 932456', 2, '618504903834610536', 'No.3 Main building, 577 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1995-12-23', 0, 0, 'yamaguchidaichi', '2015-03-02', 'daichiyama', '2020-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS893260578414', 'Herbert Hunt', 1, '+86 153-5110-3822', 2, '885067318972247054', 'No.49 building, 406 Dongtai 5th St, Dongguan, China', '1997-08-03', 0, 0, 'herbhunt', '2022-01-07', 'herberthunt9', '2013-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS439893245132', '市川光莉', 0, '+81 70-1866-2609', 0, '854188734539622960', 'Rm. 7, 3-19-5 Shimizu, Kita Ward, Nagoya, Japan', '1992-08-27', 0, 0, 'hikichi', '2012-03-20', 'ichikawahikar609', '2001-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS824288426998', 'Bruce Holmes', 1, '+86 769-1938-7897', 4, '422943542160928779', 'Room 3, 765 Dongtai 5th St, Dongguan, China', '1985-10-17', 0, 0, 'brhol17', '2012-04-24', 'bruceho', '2019-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS567561364304', '郭明', 0, '+81 66-254-4367', 3, '447130107425404931', '日本おおさかし平野区加美東四丁目9番4号49階', '1995-08-23', 0, 0, 'kmi5', '2019-03-22', 'mkwok', '2017-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS428935256343', '遠藤陽太', 1, '+1 614-998-6099', 1, '375842366407261361', '527 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1987-11-24', 0, 0, 'endyota', '2015-10-07', 'yota41', '2018-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS716782933342', '大野美羽', 0, '+1 614-212-9876', 1, '660690898284060456', '730 Tremont Road Suite 25, Columbus, GA 43212, United States', '1995-11-06', 0, 0, 'miuono', '2020-07-04', 'onmiu', '2020-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS811485327454', '向曉彤', 1, '+86 152-6868-2132', 2, '884247626824149631', '中国成都市成华区双庆路898号13室', '1989-01-23', 0, 0, 'heunghiutung', '2020-08-15', 'heung1120', '2012-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS209898777297', 'Tony Kennedy', 0, '+86 20-2141-6184', 2, '364346271346258960', '20F, 366 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1996-05-31', 0, 0, 'kennedyto2', '2000-04-12', 'tokennedy9', '2001-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS426078641027', '陳秀文', 0, '+1 718-003-2536', 3, '298658303901339248', '887 Bergen St Apt 2, Brooklyn, NY 11217, United States', '1996-04-01', 0, 0, 'saumanchan10', '2017-12-10', 'chansauman', '2006-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS767283869296', '黄岚', 1, '+44 7824 656069', 1, '274927608239498337', 'No.40 Main building, 4 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1992-08-02', 0, 0, 'hul86', '2009-12-11', 'lh711', '2012-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS492972523730', 'Crystal Grant', 1, '+44 (161) 996 6368', 3, '914565709919941714', 'Block 16, 192 Portland St, Manchester, M1 3LA, United Kingdom', '1997-04-12', 0, 0, 'cgr', '2011-08-19', 'cgrant', '2007-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS645132470522', '松井陽太', 1, '+86 10-7572-5308', 4, '143792974476124473', '中国北京市西城区复兴门内大街315号40楼', '1994-12-21', 0, 0, 'matsuiyota', '2002-07-09', 'matsyota1991', '2012-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS202175531177', '戴心穎', 1, '+81 66-641-9754', 2, '987831347458467223', '日本おおさかし東住吉区東田辺三丁目27番8号7階', '1995-10-19', 0, 0, 'sumwing3', '2012-02-28', 'daisw8', '2004-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS363364973550', '應安娜', 1, '+1 213-458-5271', 3, '808993345370235872', '511 S Broadway Apartment 1, Los Angeles, CA 90015, United States', '1997-12-18', 0, 0, 'ony', '2004-12-16', 'onnaying', '2012-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS785041048108', '胡岚', 1, '+81 66-629-8559', 3, '602572984772646024', '日本おおさかし東住吉区東田辺三丁目27番2号40階', '1988-07-19', 0, 0, 'lahu418', '2004-12-02', 'hu904', '2003-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS416706065405', '薛璐', 0, '+86 174-9269-6549', 3, '684058980684461110', '24F, 345 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1995-03-07', 0, 0, 'lxu', '2018-08-26', 'xue2', '2014-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS972534833387', '雷詩涵', 0, '+44 7426 353048', 4, '700032282286587665', 'Block 23, 156 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1997-04-22', 0, 0, 'leishi91', '2001-07-13', 'lei430', '2020-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS973049230374', '唐安琪', 0, '+81 3-1192-7258', 3, '452674383083111651', '40F, 2-3-14 Yoyogi, Shibuya-ku, Tokyo, Japan', '1995-12-10', 0, 0, 'tanganqi', '2020-08-01', 'anqit6', '2015-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS952638756338', '尹子韬', 0, '+81 3-3442-9853', 1, '956913782414616934', '日本東京港区東新橋一丁目5番18号13号室', '1994-07-30', 0, 0, 'yizit', '2019-06-07', 'yinzita1940', '2002-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS996226503117', 'Norman Stevens', 1, '+44 7702 505690', 2, '045800627253064413', 'Unit 20, Oxford Eco Centre, 376 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-04-03', 0, 0, 'stevens77', '2007-02-18', 'stevenorm319', '2010-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS080391971134', 'Gary Daniels', 0, '+1 838-517-3369', 2, '821347589067719845', '436 Lark Street Apartment 7, Albany, NY 12210, United States', '1997-01-02', 0, 0, 'gary57', '2007-12-23', 'gary1015', '2009-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS425766068039', '周頴思', 1, '+81 80-9634-0931', 1, '624539842988240014', '日本東京中央区銀座三丁目12番7号31階', '1989-09-27', 0, 0, 'chowwingsze', '2004-07-22', 'wingchow2', '2009-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS658368177831', '侯秀英', 0, '+81 80-5855-5933', 2, '587693183124702959', '日本札幌白石区菊水三条五丁目2番6号10階', '1995-02-10', 0, 0, 'xiuyinghou', '2012-04-26', 'xihou', '2003-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS532010083835', 'Christina Cooper', 1, '+44 5164 979931', 1, '618581631205543263', 'No.44 Main building, 705 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1988-04-27', 0, 0, 'cchristina', '2017-12-15', 'christinacoope4', '2004-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS457081656670', '餘詩君', 0, '+86 144-7828-6381', 2, '809449932778637972', 'No.9 building, 356 Jiangnan West Road, Haizhu District, Guangzhou, China', '1992-04-10', 0, 0, 'yusk', '2017-10-13', 'sky', '2012-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS369757128206', '鈴木大地', 0, '+1 212-989-6856', 1, '854443589633631118', '323 Fifth Avenue Suite 10, New York, NY 10017, United States', '1991-10-26', 0, 0, 'daichisuzu', '2018-05-29', 'suzuki5', '2007-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS411601961743', '張頴璇', 1, '+44 (1223) 07 1138', 2, '468606215914261766', 'No.16 Main building, 851 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1988-12-17', 0, 0, 'cheungws512', '2004-08-26', 'wsche84', '2020-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS777033599178', 'Edwin Gonzales', 1, '+86 10-0393-4859', 4, '010224734019368208', 'No.15 building, 567 Sanlitun Road, Chaoyang District, Beijing, China', '1997-04-30', 0, 0, 'gonzalesedw9', '2004-03-30', 'edwgonzales', '2012-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS596135389934', 'Donna Grant', 0, '+86 20-652-3055', 2, '629724170922624287', '中国广州市天河区天河路355号49楼', '1988-12-13', 0, 0, 'donng', '2011-08-13', 'donnag', '2006-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS859501634842', 'Frederick Davis', 1, '+44 5921 207560', 2, '845215275548377589', 'No.16 Main building, 160 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1998-09-12', 0, 0, 'davfrederick5', '2006-01-08', 'frederickdavis', '2012-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS318570054156', '梁璐', 0, '+81 90-6982-6743', 3, '075986391578427917', '日本ならし大和郡山市本庄町一丁目1番14号25階', '1990-01-21', 0, 0, 'liang7', '2002-11-01', 'lu91', '2014-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS479331074636', '張明', 1, '+81 70-6127-1750', 1, '577740845925777375', 'Rm. 17, 3-15-9 Ginza, Chuo-ku, Tokyo, Japan', '1995-11-02', 0, 0, 'cheuming', '2022-01-30', 'cming330', '2013-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS914486065735', '錢家明', 1, '+86 183-7618-0251', 2, '620165848357312994', '中国北京市西城区西長安街828号18室', '1991-06-25', 0, 0, 'chkaming', '2015-08-17', 'kmchi', '2000-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS145893957437', '陆詩涵', 0, '+1 838-852-5334', 3, '069395309865072517', '371 Central Avenue Apt 8, Albany, NY 12206, United States', '1988-05-29', 0, 0, 'lus8', '2019-10-06', 'lu6', '2012-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS127388830810', 'Elaine Diaz', 0, '+1 614-317-0419', 1, '265589475886630470', '923 Tremont Road Apt 5, Columbus, GA 43212, United States', '1994-06-13', 0, 0, 'diaelaine', '2010-12-05', 'diaz724', '2009-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS612537285750', '伍心穎', 0, '+44 5135 131649', 2, '159042183486519972', 'No.12 Main building, 738 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1987-10-14', 0, 0, 'sumwingng', '2012-01-17', 'ngsw', '2017-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS377716519168', '鐘慧嫻', 1, '+44 7513 025452', 3, '343508933029799358', 'Block 40, 578 Sackville St, Manchester, M1 3BB, United Kingdom', '1994-01-03', 0, 0, 'waihanc', '2003-05-08', 'waichung1991', '2001-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS562141342393', 'Rita Ferguson', 0, '+44 7814 553931', 2, '044920559417228935', 'Unit 37, Oxford Eco Centre, 197 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1996-09-18', 0, 0, 'rita1983', '2020-11-27', 'ritafe8', '2016-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS870421179407', '原田涼太', 0, '+86 21-8740-1307', 3, '715845951187141503', 'No.49 building, 884 Middle Huaihai Road, Huangpu District, Shanghai, China', '1986-08-16', 0, 0, 'ryoh', '2013-01-05', 'ryota12', '2003-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS049743385049', '赵安琪', 1, '+86 153-0182-8800', 4, '532891137828498681', '中国北京市西城区复兴门内大街692号10号楼', '1993-08-17', 0, 0, 'anqi1123', '2005-04-23', 'azh', '2008-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS195800340472', 'Willie Torres', 1, '+1 718-104-3894', 2, '958752275276862382', '568 Columbia St Apartment 45, Brooklyn, NY 11231, United States', '1996-12-24', 0, 0, 'willietorr', '2015-10-13', 'wtorres', '2007-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS477306469006', '江子异', 0, '+44 (151) 470 2602', 0, '870231842935933147', 'No.36 Main building, 671 Hanover St, Liverpool, L1 4AF, United Kingdom', '1987-12-27', 0, 0, 'ziyi76', '2016-06-10', 'ziyijiang', '2015-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS578479210174', '李睿', 1, '+1 213-551-5416', 1, '679578769678170454', '348 S Broadway Suite 22, Los Angeles, CA 90015, United States', '1993-09-30', 0, 0, 'lir1989', '2006-11-01', 'rl74', '2017-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS965995474918', '石川優奈', 1, '+86 28-566-5346', 2, '254573048552312814', 'Room 14, 532 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1988-08-30', 0, 0, 'iy716', '2001-11-14', 'ishikaway', '2017-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS019768605407', '梁永權', 1, '+81 11-900-2497', 4, '506865523593918374', '日本札幌豊平区豊平三条十三丁目3番16号18階', '1992-04-24', 0, 0, 'wkleu8', '2014-05-02', 'wkleu', '2018-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS534580518108', '马震南', 0, '+44 7874 101452', 3, '967926201467601390', 'Flat 27, 681 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1993-09-10', 0, 0, 'ma10', '2002-04-04', 'mazhennan', '2016-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS895435566435', '麥梓晴', 0, '+86 167-8024-4723', 1, '533717732991685112', 'Room 13, No.929, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-09-26', 0, 0, 'tszchingmak1209', '2006-07-23', 'tcm1982', '2019-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS177222642208', 'Virginia Jones', 1, '+81 90-7663-5811', 3, '764913301819669842', '日本なごやし熱田区千年二丁目5番5号14号室', '1998-05-27', 0, 0, 'virjones', '2011-06-12', 'jovirginia', '2002-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS664152495222', '傅震南', 1, '+86 769-554-6438', 3, '184208894082199586', '中国东莞东泰五街539号2号楼', '1986-08-20', 0, 0, 'zhf1972', '2021-04-17', 'zhennanfu', '2006-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS601272072001', 'Dennis Parker', 1, '+44 5670 003139', 4, '758408378724964423', 'Unit 1, Oxford Eco Centre, 814 Hanover St, Liverpool, L1 4AF, United Kingdom', '1993-07-28', 0, 0, 'dennisparker', '2007-08-21', 'parker1959', '2003-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS059824649705', '余子异', 0, '+86 21-743-3262', 2, '028278562649268722', 'No.42 building, 424 Middle Huaihai Road, Huangpu District, Shanghai, China', '1985-06-04', 0, 0, 'yu8', '2002-01-07', 'yuzi1213', '2019-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS105249710389', '邵天樂', 1, '+81 90-7282-2748', 2, '145214242363180679', '日本なごやし北区清水三丁目19番12号41階', '1995-12-10', 0, 0, 'siutl', '2002-02-13', 'siutinlok', '2020-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS298643407083', '岡田美咲', 1, '+1 213-120-3033', 4, '378150504163803873', '862 Sky Way Apt 41, Los Angeles, CA 90043, United States', '1994-01-05', 0, 0, 'misaok', '2004-04-04', 'mokada108', '2017-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS240745684992', '姜杰倫', 1, '+81 11-955-2387', 4, '103287743769102166', '日本札幌厚別区上野幌一条二丁目1番7号47階', '1990-03-23', 0, 0, 'chang9', '2002-04-04', 'changchiehlun6', '2007-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS845546859914', 'Mark Harrison', 1, '+81 80-5162-2459', 2, '316323041155981387', '18-kai, 1-7-3 Saidaiji Akodacho, Nara, Japan', '1990-02-19', 0, 0, 'mh4', '2012-10-27', 'markharrison1965', '2018-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS056541762960', '曾仲賢', 1, '+86 21-6846-6646', 4, '919590107349814883', 'No.16 building, 893 Binchuan Rd, Minhang District, Shanghai, China', '1991-01-02', 0, 0, 'cytsang', '2012-06-16', 'tsch', '2021-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS493670027142', 'Alan Jackson', 1, '+44 7466 654772', 1, '614402083177107535', 'No.9 Main building, 210 Pollen Street, London, W1S 1NG, United Kingdom', '1993-04-14', 0, 0, 'jacksonal', '2015-04-20', 'alanjackson', '2012-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS555377241603', '孙璐', 0, '+86 20-104-5814', 0, '031977951214549370', '中国广州市白云区小坪东路57号华润大厦10室', '1998-02-19', 0, 0, 'sun1209', '2021-07-21', 'lus', '2000-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS726134114423', '龚嘉伦', 1, '+81 80-2309-9499', 4, '501411614308145193', '日本東京港区東新橋一丁目5番15号6号室', '1991-06-26', 0, 0, 'gong97', '2007-06-19', 'gongjialun', '2011-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS691897302375', '毛璐', 1, '+1 312-182-5858', 1, '719734450292655440', '518 Pedway Apartment 27, Chicago, IL 60601, United States', '1998-03-27', 0, 0, 'lu7', '2007-07-08', 'lu47', '2008-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS963038226051', 'Willie Freeman', 0, '+1 838-669-0918', 1, '005246162625191632', '585 State Street Suite 15, Albany, NY 12203, United States', '1990-05-17', 0, 0, 'freemanwillie', '2016-06-27', 'freeman1128', '2019-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS646741084737', '桜井架純', 0, '+81 90-0125-6865', 2, '999021041314638735', '日本東京渋谷区代々木二丁目3番2号27階', '1995-03-18', 0, 0, 'kasakurai7', '2010-03-06', 'saka', '2002-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS814557939060', 'Jose Adams', 0, '+44 (116) 599 7800', 2, '390641069674314293', 'No.45 Main building, 772 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1986-01-30', 0, 0, 'ajo726', '2009-07-30', 'adamsjose5', '2006-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS295578429997', 'Joel Munoz', 0, '+1 213-970-0080', 1, '573307569340981371', '27 Sky Way Apartment 7, Los Angeles, CA 90043, United States', '1989-04-04', 0, 0, 'jm7', '2000-09-22', 'joelmun', '2015-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS735403570955', '佘慧嫻', 1, '+81 52-138-1157', 3, '332207530951505636', 'Rm. 28, 2-5-18 Chitose, Atsuta Ward, Nagoya, Japan', '1998-06-11', 0, 0, 'shewh', '2014-04-20', 'shehwaihan', '2005-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS941763761340', 'Josephine Ruiz', 1, '+81 74-374-4965', 3, '220217943011580834', 'Rm. 19, 1-7-20 Saidaiji Akodacho, Nara, Japan', '1988-12-17', 0, 0, 'ruizjosephine3', '2003-06-29', 'rujosephine', '2019-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS719737077555', '楊永權', 0, '+86 28-589-4618', 3, '833463417635699254', 'No.30 building, 198 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1986-07-01', 0, 0, 'wky7', '2013-06-27', 'yewingkuen', '2021-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS889526085672', '阿部陸', 1, '+81 70-2754-1309', 2, '449352944941291608', '3-kai, 2 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1990-05-26', 0, 0, 'ariku', '2004-08-28', 'aberiku', '2014-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS338044287474', 'Henry Stephens', 1, '+86 21-1410-7937', 2, '691121146318448784', 'No.22 building, 85 Binchuan Rd, Minhang District, Shanghai, China', '1994-03-12', 0, 0, 'sh414', '2011-11-14', 'stephens9', '2005-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS037708975963', 'Nicholas Ortiz', 0, '+81 74-432-1029', 0, '384239995665337213', '22-kai, 1-7-18 Saidaiji Akodacho, Nara, Japan', '1998-10-03', 0, 0, 'nicholasort', '2020-12-03', 'ortiz8', '2020-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS373474079017', '井上紗良', 1, '+1 838-216-7326', 1, '196990765406773745', '772 Lark Street Suite 8, Albany, NY 12210, United States', '1996-06-19', 0, 0, 'sara115', '2000-12-18', 'is1955', '2012-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS626600453674', '斉藤百花', 0, '+44 (121) 446 5864', 3, '335758868009474713', 'Flat 1, 859 New Street, Birmingham, B2 4DB, United Kingdom', '1986-05-11', 0, 0, 'momokasait', '2015-07-22', 'smomoka73', '2014-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS919481572710', '尹晓明', 0, '+86 132-0822-9824', 1, '504432643376653674', '中国中山紫马岭商圈中山五路486号华润大厦4室', '1985-04-15', 0, 0, 'yinxiaoming13', '2020-03-01', 'yix', '2002-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS899317316937', '袁震南', 1, '+81 3-9088-4893', 2, '925991692753709008', '日本東京中央区銀座三丁目12番14号39階', '1993-07-29', 0, 0, 'zhennyua8', '2001-10-20', 'zhenyua', '2005-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS474101520966', '林翼', 1, '+86 187-0398-5306', 2, '375727497614959143', 'Room 43, 206 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1986-05-28', 0, 0, 'hayashi1208', '2006-01-11', 'hayashits', '2003-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS483329021793', '千葉瑛太', 1, '+1 614-971-2308', 4, '018148255309498873', '318 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1996-08-21', 0, 0, 'eitachi4', '2003-05-20', 'eitach1026', '2003-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS419089038984', 'Luis Barnes', 0, '+86 175-6723-9059', 1, '887563283030795353', '中国中山天河区大信商圈大信南路874号38号楼', '1997-01-13', 0, 0, 'barneluis2', '2015-09-01', 'luisb', '2013-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS130369651712', 'Amber Scott', 1, '+81 66-112-5986', 3, '596240717438918809', '45F, 3-27-13 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1991-08-01', 0, 0, 'amberscott', '2012-11-23', 'ascott', '2007-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS381990463654', '河野和真', 1, '+81 52-405-0427', 3, '768481562525576914', '日本なごやし瑞穂区河岸町四丁目20番2号25階', '1991-03-05', 0, 0, 'kk8', '2012-02-18', 'kono719', '2004-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS870250594679', '遠藤百花', 1, '+44 (151) 155 1536', 2, '489627453847873822', 'Unit 40, Oxford Eco Centre, 918 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1989-06-08', 0, 0, 'endomo', '2006-02-10', 'momoke515', '2000-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS819354864575', '孫梓軒', 0, '+44 (116) 415 3530', 1, '901819143133502548', 'Flat 17, 40 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1986-02-16', 0, 0, 'thhsua', '2001-11-08', 'tszhinhs', '2011-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS077293760447', '姚國賢', 1, '+1 330-986-4109', 1, '109510457669132556', '497 Ridgewood Road Apartment 4, Akron, OH 44321, United States', '1992-09-23', 0, 0, 'kwokyinyeow9', '2006-11-20', 'kwokyinyeow', '2002-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS794898541980', '田中詩乃', 1, '+81 80-1245-7524', 1, '257053603743743145', '日本ならし西大寺赤田町一丁目7番5号8階', '1996-04-10', 0, 0, 'tshino2', '2016-06-09', 'tashino', '2010-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS115512813252', '野村桜', 0, '+1 838-885-5547', 2, '268184404385328515', '884 Central Avenue Apartment 42, Albany, NY 12205, United States', '1993-03-04', 0, 0, 'nomuras4', '2012-06-06', 'nsa', '2018-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS106146454761', '新井美月', 1, '+44 (151) 786 0053', 1, '728301100462211516', 'No.48 Main building, 796 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1997-06-30', 0, 0, 'mitsuki99', '2020-04-19', 'mitsa', '2012-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS396442021283', 'Kyle Mendez', 1, '+86 20-156-4859', 1, '503351198678608600', '32F, 712 Xiaoping E Rd, Baiyun , Guangzhou, China', '1995-03-19', 0, 0, 'mendez2007', '2019-11-20', 'kylemen2', '2007-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS085082661550', '蔡祖兒', 0, '+81 3-8627-5346', 1, '018649210860035548', '21-kai, 3-15-18 Ginza, Chuo-ku, Tokyo, Japan', '1997-01-22', 0, 0, 'choichoyee', '2004-10-26', 'choichoyee', '2013-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS210232775804', '溫學友', 1, '+81 90-7237-1272', 1, '042556056204404948', '日本ならし西大寺赤田町一丁目7番9号8階', '1998-06-20', 0, 0, 'wanhy525', '2018-08-02', 'hokyauwan', '2001-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS563875011574', '阿部結翔', 0, '+86 769-1163-8894', 2, '673272571520595708', 'No.18 building, 420 Kengmei 15th Alley, Dongguan, China', '1990-06-01', 0, 0, 'ay708', '2018-09-17', 'yuitoabe', '2012-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS424114040193', '田心穎', 1, '+86 21-202-1334', 0, '646820791926212114', 'No.19 building, 788 Middle Huaihai Road, Huangpu District, Shanghai, China', '1988-05-06', 0, 0, 'tin92', '2000-03-12', 'sumwing711', '2015-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS998171163972', 'Diana Guzman', 0, '+44 7268 671056', 2, '590379535620294696', 'No.41 Main building, 774 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1989-10-01', 0, 0, 'dianguzman77', '2011-07-06', 'diag', '2016-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS265305803626', 'Cynthia King', 0, '+1 614-131-5424', 2, '878496133454212733', '965 Diplomacy Drive Apartment 34, Columbus, GA 43228, United States', '1987-08-13', 0, 0, 'kingc88', '2003-10-07', 'kingcynth', '2009-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS984625293663', '袁曉彤', 1, '+86 10-4645-5117', 4, '288884218112208537', '中国北京市东城区东单王府井东街201号39室', '1998-11-19', 0, 0, 'htyuen', '2007-04-24', 'yuehiutung128', '2004-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS001344013384', 'Jesus Kim', 1, '+86 10-2012-8089', 4, '057862369052651933', '43F, 650 028 County Rd, Yanqing District, Beijing, China', '1989-06-22', 0, 0, 'kj2012', '2003-08-11', 'jesuskim10', '2017-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS387427209546', '斉藤葵', 1, '+44 7971 148378', 3, '016311995515853103', 'No.41 Main building, 234 Redfern St, Liverpool, L20 8JB, United Kingdom', '1994-02-20', 0, 0, 'aos', '2005-09-29', 'asa', '2018-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS068565979060', '曹嘉伦', 1, '+86 10-743-2460', 2, '312908328929444324', 'Room 42, CR Building, 760 FuXingMenNei Street, XiCheng District, Beijing, China', '1996-04-15', 0, 0, 'jialunca7', '2003-03-11', 'caojialun', '2018-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS423282915557', '向梓晴', 1, '+86 755-5773-4405', 4, '674541338361292322', '中国深圳罗湖区田贝一路878号华润大厦23室', '1995-04-01', 0, 0, 'tch', '2006-06-20', 'heungtszching', '2007-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS140981180835', 'Brian Rodriguez', 0, '+86 21-5728-5463', 1, '580630337936332949', '中国上海市闵行区宾川路891号39栋', '1996-06-23', 0, 0, 'brianrod1', '2020-07-16', 'rodriguezbrian', '2020-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS315090552987', '藤原絢斗', 1, '+1 614-153-5733', 3, '007984223194721448', '936 Tremont Road Suite 10, Columbus, GA 43212, United States', '1986-09-24', 0, 0, 'fujiwaraaya705', '2001-02-08', 'afuji819', '2010-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS736691581540', '严晓明', 0, '+1 838-720-5606', 1, '705381271521699511', '832 Broadway 3rd Floor, Albany, NY 12207, United States', '1990-09-24', 0, 0, 'yxiao603', '2019-02-15', 'yanxiaoming', '2000-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS574161206131', 'Chris Sanders', 0, '+86 20-1808-2155', 0, '027966256267520336', 'Room 44, 437 Tianhe Road, Tianhe District, Guangzhou, China', '1993-06-07', 0, 0, 'chsan', '2010-06-27', 'sandec', '2021-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS534115736597', 'Anna Webb', 1, '+44 7398 010074', 0, '766991360759658689', 'Unit 3, Oxford Eco Centre, 609 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-04-19', 0, 0, 'wanna', '2017-01-20', 'webbanna', '2015-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS821050874211', 'Amy Hawkins', 0, '+44 (1223) 51 2404', 3, '471283057491568468', 'Block 35, 54 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1986-12-02', 0, 0, 'hamy', '2011-06-22', 'amhawkins66', '2000-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS956636073763', '程安琪', 1, '+44 (1865) 48 5475', 3, '445937778596755442', 'Unit 26, Oxford Eco Centre, 877 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1985-04-09', 0, 0, 'anqic', '2002-11-07', 'cheng711', '2020-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS528236574872', 'Pamela Lopez', 1, '+44 (1223) 22 0549', 1, '187942762766018349', 'Block 7, 858 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1988-08-11', 0, 0, 'lopezpam9', '2020-11-16', 'lop', '2013-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS076233037432', '毛惠妹', 0, '+44 5948 289808', 0, '920585608804649211', 'Flat 34, 778 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1989-02-16', 0, 0, 'mohm', '2010-08-09', 'huimei56', '2012-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS895597562509', '唐云熙', 0, '+86 20-5021-9877', 1, '994147248145925941', 'No.46 building, 745 Xiaoping E Rd, Baiyun , Guangzhou, China', '1992-06-22', 0, 0, 'tangyunxi', '2020-11-22', 'yunxitang127', '2017-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS247965682063', '龚詩涵', 0, '+86 10-259-4968', 2, '153683285594286739', 'Room 23, 221 Yueliu Rd, Fangshan District, Beijing, China', '1992-01-27', 0, 0, 'gs4', '2001-11-17', 'gonshihan', '2007-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS542377550248', '钟杰宏', 1, '+81 11-112-8137', 2, '393463999920839130', '29F, 13-3-7 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1990-12-12', 0, 0, 'zhjieho7', '2018-10-29', 'zhonjieho1971', '2008-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS541449773343', 'Michelle Carter', 1, '+81 11-041-9716', 4, '963740791491888399', '日本札幌白石区菊水三条五丁目2番3号46階', '1995-09-14', 0, 0, 'cartemic', '2008-03-07', 'mcarter816', '2012-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS123467435677', '小島百恵', 0, '+86 197-3904-9333', 3, '164061185685892647', '中国成都市成华区二仙桥东三路122号32号楼', '1999-02-08', 0, 0, 'momok208', '2000-05-20', 'momkojim', '2011-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS504234386972', '安藤彩乃', 1, '+86 760-0671-5126', 3, '818007829199702460', 'No.33 building, 118 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1988-01-27', 0, 0, 'andayano1993', '2001-07-26', 'ando10', '2020-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS177116431049', '赵云熙', 1, '+86 191-9251-7495', 0, '878097152536206332', '19F, 197 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1992-12-13', 0, 0, 'yzhao', '2005-12-16', 'yuzha329', '2021-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS099291349136', '鄺俊宇', 0, '+1 838-847-7925', 0, '451363779709085684', '363 Lark Street Suite 32, Albany, NY 12210, United States', '1994-10-11', 0, 0, 'kwong1976', '2007-12-28', 'kwoncy', '2001-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS060625258005', '黎詩涵', 0, '+81 3-3814-1418', 3, '220632326950428146', '日本東京千代田区丸の内一丁目6番11号40号室', '1996-11-14', 0, 0, 'shihanli108', '2018-09-29', 'lishiha', '2018-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS291285937069', '徐嘉欣', 1, '+81 80-2770-3291', 3, '641494543572409491', '39F, 2-1-9 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1988-12-13', 0, 0, 'tsuikaryan', '2010-05-27', 'kytsui4', '2009-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS607193615593', '韩宇宁', 0, '+86 133-5071-5853', 4, '624878427528648865', '中国北京市房山区岳琉路108号44栋', '1986-10-24', 0, 0, 'hanyuning129', '2004-12-08', 'hanyunin', '2001-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS454880756485', 'Carol Marshall', 1, '+81 11-493-0960', 3, '006385214731879558', '日本札幌清田区真栄四条五丁目19番10号15号室', '1991-03-23', 0, 0, 'marshall1979', '2016-03-26', 'marshcarol9', '2013-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS998920467805', '鈴木優奈', 0, '+81 52-289-9683', 1, '821017672177519043', '日本なごやし熱田区千年二丁目5番1号25号室', '1985-12-02', 0, 0, 'suzukiyu', '2007-04-25', 'suzuki4', '2018-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS557960078408', 'Harold Barnes', 0, '+81 52-483-8814', 3, '447610856384863974', '日本なごやし北区楠味鋺三丁目80番1号10階', '1992-12-01', 0, 0, 'haroldbarnes', '2006-06-02', 'bharold8', '2010-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS552395171365', 'Annie Hughes', 0, '+81 90-9071-1266', 1, '168123843490271293', '日本東京品川区東五反田五丁目2番13号28号室', '1995-05-11', 0, 0, 'annie2020', '2016-08-20', 'anniehughes', '2016-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS772640909309', '張家文', 0, '+81 66-814-0734', 1, '019429163690786293', '日本おおさかし西成区出城一丁目1番17号50号室', '1998-03-26', 0, 0, 'kmche', '2018-02-24', 'kmcheung', '2011-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS030932900997', 'Brenda Mills', 0, '+86 10-1445-6223', 3, '049349171128363189', '中国北京市延庆区028县道903号9号楼', '1992-07-29', 0, 0, 'brmill', '2007-07-03', 'millsbrenda', '2011-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS757283907519', 'Mildred Evans', 0, '+44 (161) 668 5329', 3, '647758030432862219', 'No.13 Main building, 446 Sackville St, Manchester, M1 3BB, United Kingdom', '1995-09-14', 0, 0, 'mildred211', '2011-11-23', 'evam', '2015-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS632334014398', '呂青雲', 1, '+81 66-850-4472', 2, '874786863649841786', 'Rm. 6, 2-1-7 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1987-11-20', 0, 0, 'cwlui06', '2021-08-14', 'luicw202', '2002-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS884035848090', 'Kathryn Coleman', 0, '+44 5843 392836', 2, '423851443790380384', 'Unit 17, Oxford Eco Centre, 785 Park End St, Oxford, OX1 1JD, United Kingdom', '1986-06-26', 0, 0, 'kathryn4', '2020-03-27', 'colemankath17', '2005-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS180635679581', '江宇宁', 1, '+1 614-807-6736', 2, '148752018500809552', '33 East Cooke Road Apartment 23, Columbus, GA 43214, United States', '1986-07-02', 0, 0, 'jyun', '2005-05-23', 'yjiang', '2022-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS909456359637', '邓宇宁', 1, '+44 (20) 7795 4899', 4, '081694749964359870', 'Flat 6, 886 Regent Street, London, W1B 2LX, United Kingdom', '1992-11-21', 0, 0, 'yunind', '2009-03-30', 'yundeng', '2006-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS195214394264', 'Anita Moore', 0, '+81 74-161-4563', 1, '624547911351374194', '日本ならし西大寺赤田町一丁目7番4号28階', '1994-07-19', 0, 0, 'moanita228', '2002-04-16', 'moore5', '2019-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS122635587200', 'Brandon Washington', 0, '+1 718-568-4951', 0, '800855491118057366', '639 Nostrand Ave Apt 24, Brooklyn, NY 11216, United States', '1989-12-03', 0, 0, 'bwashi', '2007-08-08', 'brandonw', '2003-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS920554918217', '邵嘉伦', 1, '+44 7073 473493', 2, '279152348140584464', 'Block 17, 645 Regent Street, London, W1B 2LX, United Kingdom', '1990-10-26', 0, 0, 'shaojialun', '2000-12-05', 'shao7', '2015-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS400610788593', '野村樹', 0, '+1 718-321-1625', 2, '140253887344578098', '275 Flatbush Ave Apartment 41, Brooklyn, NY 11225, United States', '1996-05-17', 0, 0, 'itsukinomura', '2010-02-11', 'nitsuki', '2010-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS594467770726', '叶秀英', 0, '+86 140-6250-6356', 3, '786267769559123903', '中国深圳龙岗区布吉镇西环路547号3楼', '1994-05-24', 0, 0, 'xiuying224', '2012-03-22', 'xiuying16', '2000-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS528329839727', '藤田拓哉', 1, '+81 80-0614-4759', 1, '213312883300663330', '日本東京品川区東五反田五丁目2番20号26階', '1986-09-15', 0, 0, 'takuyafu77', '2008-01-07', 'takuyaf109', '2011-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS948439257204', 'Rhonda Flores', 0, '+86 198-4369-0542', 2, '857165425006716166', '中国中山京华商圈华夏街866号28室', '1995-11-28', 0, 0, 'rhondaflor2000', '2014-04-09', 'flores82', '2011-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS979829817244', '鐘慧嫻', 1, '+86 28-8879-2544', 4, '980869092787725033', '中国成都市锦江区红星路三段972号华润大厦26室', '1990-03-13', 0, 0, 'wachung', '2002-06-09', 'waihanc831', '2013-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS864108491188', 'Allen Stewart', 1, '+81 52-994-0788', 2, '333877854542525945', 'Rm. 4, 18 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1997-02-24', 0, 0, 'sallen501', '2014-04-25', 'allen9', '2008-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS016992891085', '柴田涼太', 0, '+86 191-4485-8401', 1, '788704310163521867', '中国东莞东泰五街185号45室', '1989-07-03', 0, 0, 'shibataryota', '2000-05-01', 'ryotshibata', '2012-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS452745162368', '藤田玲奈', 1, '+81 90-9634-6221', 1, '767080554577014196', '日本ならし大和郡山市本庄町一丁目1番7号20階', '1989-06-25', 0, 0, 'rena4', '2019-08-15', 'fujitarena', '2000-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS132715492744', 'Mike Mendoza', 1, '+44 7113 242054', 4, '729371789088539144', 'Unit 39, Oxford Eco Centre, 562 Regent Street, London, W1B 2LX, United Kingdom', '1995-09-30', 0, 0, 'mikem', '2014-09-14', 'mendoza1211', '2015-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS678647084901', '麥思妤', 0, '+44 7134 137050', 3, '872744566754575541', 'Block 10, 338 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1997-03-24', 0, 0, 'szeyum', '2012-12-19', 'symak06', '2015-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS502231696207', '狄國明', 0, '+86 156-1576-7029', 3, '743657409274476088', '中国北京市西城区复兴门内大街315号5号楼', '1985-05-28', 0, 0, 'ti2', '2016-11-28', 'tikm10', '2002-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS038809329312', '森田架純', 0, '+44 5918 064573', 2, '081146689712060320', 'Block 36, 318 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1995-08-08', 0, 0, 'kmorita', '2011-06-07', 'kasumimo', '2005-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS607941836002', '武子异', 1, '+86 162-2797-1459', 1, '311088743998647879', '中国上海市浦东新区橄榄路921号18室', '1990-06-11', 0, 0, 'wuz9', '2017-10-19', 'wuzi', '2002-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS359594326172', '青木大輔', 0, '+1 718-829-2439', 0, '289931701887928763', '806 Nostrand Ave Apt 32, Brooklyn, NY 11216, United States', '1985-01-03', 0, 0, 'aodaisuke', '2014-12-21', 'aoki9', '2000-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS466096323947', '陆安琪', 1, '+86 10-4358-9310', 0, '879215792680718364', 'No.19 building, 421 FuXingMenNei Street, XiCheng District, Beijing, China', '1988-08-07', 0, 0, 'luanqi', '2010-03-25', 'anqilu', '2006-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS557080082801', '吕杰宏', 0, '+81 90-9311-6179', 2, '613601592432712101', '日本札幌清田区真栄四条五丁目19番7号24階', '1986-01-25', 0, 0, 'ljiehong', '2007-07-21', 'jiehong2', '2002-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS911866413870', 'Julie Murray', 0, '+86 181-4808-8024', 3, '754976078949238513', '中国北京市西城区复兴门内大街440号49号楼', '1985-08-06', 0, 0, 'julie2003', '2003-11-29', 'murray20', '2017-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS180059598517', '傅慧琳', 1, '+1 212-537-3660', 3, '348679810305210624', '299 Fifth Avenue Apt 35, New York, NY 10017, United States', '1986-10-08', 0, 0, 'waifu5', '2011-02-02', 'wlfu', '2020-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS580400876959', '廖頴思', 1, '+1 212-756-5782', 0, '273382887606295479', '614 Canal Street Apartment 45, New York, NY 10013, United States', '1990-02-13', 0, 0, 'liaowingsze', '2021-11-29', 'liaows', '2003-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS136973631952', 'Kyle Moore', 0, '+81 11-660-7240', 2, '582709801800496459', '日本札幌清田区真栄四条五丁目19番15号3号室', '1992-02-25', 0, 0, 'km203', '2000-04-01', 'mook1030', '2004-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS177539463747', '馮小慧', 0, '+44 (20) 3071 6948', 1, '835795381627208897', 'Flat 23, 351 Maddox Street, London, W1S 1PU, United Kingdom', '1988-07-20', 0, 0, 'fungsiuwai', '2018-10-10', 'fung1109', '2015-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS826381780916', '蒋杰宏', 0, '+86 147-2199-3948', 1, '210252180004149004', '中国广州市海珠区江南西路134号13号楼', '1995-08-17', 0, 0, 'jiehongjia', '2014-01-19', 'jijiang13', '2018-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS971260132678', '伍德華', 0, '+44 5454 298335', 3, '499745031586831421', 'No.2 Main building, 917 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1993-10-07', 0, 0, 'twng6', '2016-03-21', 'ngtakwah82', '2008-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS374841176697', '元慧嫻', 0, '+1 838-249-1834', 2, '601281303828236575', '159 State Street Suite 27, Albany, NY 12203, United States', '1995-12-10', 0, 0, 'waihan1978', '2009-10-17', 'whyu', '2016-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS315654444284', 'Marie Cole', 1, '+81 3-4037-6697', 0, '552125891857548530', '日本東京千代田区丸の内一丁目6番6号26階', '1986-02-13', 0, 0, 'colema', '2011-02-03', 'cole6', '2021-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS998516674370', 'Sandra Spencer', 0, '+86 28-8688-0767', 3, '118839958993248033', '中国成都市成华区双庆路948号48栋', '1988-11-24', 0, 0, 'spencers', '2014-09-06', 'spencersan', '2007-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS714970781385', 'Aaron Simpson', 1, '+86 10-091-5089', 0, '779630333670315253', '中国北京市東城区東直門內大街229号36室', '1995-04-07', 0, 0, 'aarosimpson405', '2021-02-18', 'saaron9', '2012-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS845500676468', '馮心穎', 0, '+1 838-038-1578', 1, '665556223688989839', '326 Lark Street Apartment 37, Albany, NY 12210, United States', '1992-09-02', 0, 0, 'swfung428', '2014-09-02', 'swfung', '2012-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS016754950608', '汪云熙', 1, '+81 11-038-6874', 3, '976764571980917836', '49F, 5-2-10 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1989-09-13', 0, 0, 'wangyunxi417', '2003-09-07', 'yunxiwang', '2018-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS300035614460', '千葉瑛太', 0, '+86 769-7924-9159', 2, '925834584759037591', 'Room 48, CR Building, 779 Shanhu Rd, Dongguan, China', '1996-09-29', 0, 0, 'eita6', '2015-09-23', 'echib5', '2006-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS190961063704', '岡田結翔', 0, '+44 (151) 019 6424', 1, '293406645683189430', 'Block 13, 466 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1985-02-11', 0, 0, 'yuito715', '2017-01-19', 'yuitookad', '2000-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS601985814532', '姚嘉伦', 1, '+86 28-877-7940', 3, '871723647730141478', '中国成都市锦江区红星路三段736号24号楼', '1997-11-16', 0, 0, 'yjialun', '2008-02-14', 'jyao311', '2010-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS820004710609', '邹子异', 1, '+86 156-9072-3682', 0, '796341939277808310', '中国上海市浦东新区健祥路4号6楼', '1997-04-19', 0, 0, 'ziyi807', '2021-09-20', 'zouziyi', '2016-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS010645857337', '任秀英', 0, '+86 769-309-7056', 3, '649946991171352870', '中国东莞珊瑚路138号39栋', '1993-04-04', 0, 0, 'rxiuying', '2021-11-26', 'ren86', '2007-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS176427852875', 'Victoria Butler', 0, '+1 614-921-2475', 2, '200813448564037381', '817 East Alley Apt 39, Columbus, GA 43201, United States', '1987-01-27', 0, 0, 'butlevictoria', '2019-01-28', 'victoriabutler204', '2012-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS610928875733', '蘇裕玲', 0, '+44 5320 685683', 3, '947247106332104695', 'Flat 31, 191 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1998-10-09', 0, 0, 'syl5', '2004-06-15', 'syl', '2005-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS554481706752', '長谷川健太', 1, '+86 28-8074-9609', 4, '455600897067889496', '中国成都市成华区双庆路948号19室', '1988-06-18', 0, 0, 'hasegawa2', '2017-10-13', 'kentahaseg94', '2015-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS937344654568', '馬麗欣', 1, '+81 66-271-3275', 2, '587617005105194813', 'Rm. 2, 1-1-9 Deshiro, Nishinari Ward, Osaka, Japan', '1991-03-06', 0, 0, 'maly', '2008-12-08', 'laiyan9', '2016-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS773505909440', '山口美羽', 0, '+86 755-0833-6574', 3, '165011846812132033', '中国深圳罗湖区蔡屋围深南东路79号华润大厦30室', '1997-11-26', 0, 0, 'miyamaguchi1960', '2019-02-01', 'yamaguchi86', '2020-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS678136889997', '鄭梓晴', 0, '+81 74-556-7841', 3, '393731680049588879', 'Rm. 17, 3-9-10 Gakuenminami, Nara, Japan', '1997-10-31', 0, 0, 'tszchingc91', '2003-06-21', 'cheng10', '2019-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS266370122702', '呂家明', 0, '+81 70-1602-6113', 2, '707208765133788919', '日本東京渋谷区代々木二丁目3番20号7階', '1988-11-17', 0, 0, 'lui10', '2013-02-13', 'luikm', '2020-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS714902134738', '毛岚', 0, '+44 (151) 429 2409', 2, '248925368246269867', 'Block 36, 511 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1988-04-23', 0, 0, 'lma', '2005-08-16', 'maolan', '2004-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS851905064779', '阿部一輝', 0, '+81 74-706-6022', 2, '688665194893921810', '27F, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1988-03-12', 0, 0, 'ikkiabe', '2008-10-18', 'ikkabe', '2008-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS339695744240', '汤云熙', 1, '+86 28-3891-5189', 4, '493412641579388448', 'No.49 building, 770 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1987-07-18', 0, 0, 'yunxitang1006', '2000-08-17', 'yutang', '2006-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS713489246041', 'Cheryl Meyer', 1, '+81 3-8910-8051', 0, '649529232475166817', '日本東京渋谷区代々木二丁目3番5号33階', '1986-02-23', 0, 0, 'meyer1120', '2020-07-03', 'meyerc623', '2001-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS464969726947', '卢宇宁', 1, '+44 7640 321855', 1, '276134921903335948', 'No.50 Main building, 84 Park End St, Oxford, OX1 1JD, United Kingdom', '1998-09-24', 0, 0, 'yuning420', '2005-04-20', 'luyun12', '2012-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS227170429684', '伊藤拓哉', 1, '+81 52-394-8768', 2, '580035159043208967', '日本なごやし北区清水三丁目19番15号18階', '1998-12-11', 0, 0, 'itot56', '2003-10-24', 'itotaku730', '2008-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS691493115516', '曹惠妹', 1, '+44 (151) 955 0363', 3, '479878275631455620', 'Flat 45, 691 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1986-06-24', 0, 0, 'chohm1981', '2004-04-01', 'huimeicho', '2007-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS795290128812', '吳天榮', 1, '+86 141-0292-5724', 0, '218383309893379968', '中国广州市越秀区中山二路974号华润大厦1室', '1996-10-09', 0, 0, 'ng917', '2014-08-06', 'ngtinwing6', '2016-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS017740215589', '江嘉伦', 1, '+44 (116) 338 1442', 3, '992239524094505000', 'Flat 24, 354 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1997-12-04', 0, 0, 'jiangj503', '2010-12-15', 'jialunj', '2007-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS340129518867', '房天榮', 1, '+44 (1223) 91 5012', 1, '187075439028142652', 'No.27 Main building, 938 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1989-05-10', 0, 0, 'fongtinwing', '2012-05-25', 'fongtinwi1214', '2013-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS109853089324', '郭玲玲', 1, '+81 52-887-9261', 2, '773849442462738693', '日本なごやし瑞穂区河岸町四丁目20番3号3階', '1998-09-13', 0, 0, 'kwokll7', '2008-11-15', 'kwok4', '2017-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS921223757300', 'Esther Hernandez', 1, '+86 769-805-0089', 3, '669109159649780004', '中国东莞东泰五街987号9号楼', '1992-09-02', 0, 0, 'hernaes02', '2000-03-09', 'hernandezesther', '2017-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS920565726312', 'Lori Wilson', 0, '+86 142-3921-4517', 2, '176024087673286580', 'No.24 building, 910 Xiaoping E Rd, Baiyun , Guangzhou, China', '1998-09-18', 0, 0, 'wilsolor', '2021-01-16', 'wilson2', '2008-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS782294698665', '坂本愛梨', 1, '+86 10-7203-9392', 3, '607259056182819181', 'No.21 building, 542 68 Qinghe Middle St, Haidian District, Beijing, China', '1987-12-15', 0, 0, 'sairi', '2019-04-05', 'sakamotoai', '2000-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS483175744816', '雷杰宏', 1, '+81 66-342-2642', 3, '465573327634914621', '21-kai, 1-7-2 Omido, Higashiosaka, Osaka, Japan', '1991-03-12', 0, 0, 'jlei', '2015-11-20', 'lei4', '2007-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS224607986825', '長谷川愛梨', 1, '+1 330-929-0872', 3, '192291079624449047', '54 Collier Road Apt 13, Akron, OH 44320, United States', '1991-04-07', 0, 0, 'hairi8', '2020-11-22', 'hairi2', '2019-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS906342248098', 'Melvin Phillips', 0, '+44 (161) 488 7166', 2, '250966336360534388', 'Unit 24, Oxford Eco Centre, 480 Mosley St, Manchester, M2 3AQ, United Kingdom', '1993-02-22', 0, 0, 'phillipsmelvin', '2019-01-18', 'phillips11', '2015-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS384581280343', '何睿', 1, '+81 66-646-1706', 2, '132198823926261441', '28-kai, 1-7-20 Omido, Higashiosaka, Osaka, Japan', '1988-09-28', 0, 0, 'rhe81', '2000-04-28', 'he10', '2021-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS844033866617', 'Gregory Hill', 1, '+44 (161) 795 8861', 2, '176914191856832241', 'Block 47, 261 Sackville St, Manchester, M1 3BB, United Kingdom', '1993-12-13', 0, 0, 'hill16', '2018-07-13', 'hgrego', '2019-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS511917544750', 'Annie Weaver', 0, '+86 21-650-6647', 2, '261900198770824548', 'Room 22, 630 Hongqiao Rd., Xu Hui District, Shanghai, China', '1994-01-22', 0, 0, 'weaverann4', '2020-04-01', 'anniewe', '2018-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS707997968340', '今井瑛太', 1, '+86 769-041-1276', 1, '047905552882334168', '22F, 941 Kengmei 15th Alley, Dongguan, China', '1992-12-14', 0, 0, 'imaieita721', '2007-10-10', 'imaieit', '2001-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS837381656713', '池田聖子', 0, '+86 28-1512-5680', 4, '114854170123830967', '中国成都市成华区玉双路6号674号3号楼', '1990-10-22', 0, 0, 'seiko02', '2002-08-05', 'ikedaseiko', '2013-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS730707559591', '坂本絢斗', 1, '+81 90-5366-4018', 2, '273422470643771647', '日本札幌豊平区豊平三条十三丁目3番6号21階', '1986-04-03', 0, 0, 'saayato', '2021-03-11', 'ayatosa1009', '2019-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS369689654190', 'Nathan Garcia', 1, '+86 760-160-1973', 3, '031030412832917528', '中国中山紫马岭商圈中山五路177号7栋', '1989-04-08', 0, 0, 'garcia9', '2003-07-08', 'nag', '2011-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS404062345306', '房國榮', 0, '+86 760-0159-8766', 1, '338844862186977516', '中国中山京华商圈华夏街424号48室', '1993-06-26', 0, 0, 'kwfon', '2013-12-05', 'fongkw', '2021-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS457121649260', '岩崎架純', 0, '+44 (161) 000 1667', 3, '731986447865655518', 'Unit 38, Oxford Eco Centre, 301 Mosley St, Manchester, M2 3AQ, United Kingdom', '1996-03-07', 0, 0, 'iwasakikasumi911', '2012-01-10', 'kiwasaki', '2001-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS779017312365', '高嘉伦', 0, '+81 90-1666-7684', 3, '366583924459723180', '日本札幌厚別区上野幌一条二丁目1番20号46号室', '1988-02-29', 0, 0, 'jialugao8', '2012-11-09', 'gaoj7', '2020-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS221550041172', 'Josephine Barnes', 0, '+81 52-891-4760', 2, '542360023204345020', '9-kai, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1989-03-15', 0, 0, 'barnesjosephine', '2001-09-16', 'jbarnes', '2005-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS764700622817', 'Phillip Perry', 0, '+86 184-7530-1717', 1, '586479493501777606', 'No.29 building, 898 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1994-10-13', 0, 0, 'perrph', '2014-10-01', 'phillipperr302', '2003-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS482597733164', '黎發', 0, '+81 80-9720-5093', 4, '266449927904533863', '10-kai, 3-9-2 Gakuenminami, Nara, Japan', '1985-03-30', 0, 0, 'laif415', '2022-02-24', 'laf2', '2004-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS593687099927', '佐々木美咲', 0, '+86 760-2690-9403', 2, '829594995556793830', 'Room 4, 881 Lefeng 6th Rd, Zhongshan, China', '1985-01-05', 0, 0, 'msasak1949', '2010-11-27', 'misasaki722', '2020-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS999861868226', '杜岚', 0, '+81 52-243-7131', 2, '153332288878052906', '日本なごやし熱田区千年二丁目5番6号35階', '1991-05-28', 0, 0, 'dulan', '2010-12-13', 'lan1119', '2010-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS930267399366', '松本花', 0, '+81 80-7689-2067', 0, '048380737760628087', '1-kai, 1-5-10, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1990-03-26', 0, 0, 'hanmatsumoto', '2002-10-23', 'matsumoto729', '2018-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS548010325561', '上野大地', 1, '+86 10-3836-6627', 1, '410949162501223172', '8F, 948 East Wangfujing Street, Dongcheng District , Beijing, China', '1989-06-24', 0, 0, 'dueno', '2005-06-16', 'daichiuen', '2016-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS256746489672', '鄺世榮', 1, '+44 7626 920080', 3, '272376070035753626', 'Unit 37, Oxford Eco Centre, 260 Hanover Street, London, W1S 1YD, United Kingdom', '1989-03-15', 0, 0, 'kwonsw9', '2004-03-26', 'saiwingkwong12', '2009-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS308903937295', '韦杰宏', 1, '+86 170-3487-8505', 0, '218819527093723752', '中国中山天河区大信商圈大信南路372号华润大厦44室', '1990-07-18', 0, 0, 'jiwe4', '2005-05-17', 'jiehong1979', '2008-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS411099573588', '佘曉彤', 0, '+86 150-7854-5945', 0, '361615776117536575', '中国东莞环区南街二巷985号华润大厦23室', '1986-11-09', 0, 0, 'hiutungsheh1975', '2006-02-25', 'hts', '2003-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS797576572299', '廖子异', 0, '+86 10-989-0225', 4, '987033040394267516', '中国北京市朝阳区三里屯路951号41号楼', '1992-10-23', 0, 0, 'liaoziyi626', '2012-07-28', 'ziyili', '2019-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS178262815731', '邵慧嫻', 0, '+86 28-4336-5544', 3, '327824845055116901', '17F, No. 256, Shuangqing Rd, Chenghua District, Chengdu, China', '1994-10-10', 0, 0, 'siu2007', '2019-02-08', 'whsiu428', '2001-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS977277867807', '傅淑怡', 1, '+81 80-0799-4453', 1, '054274971255485358', '5-kai, 5-2-4 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-03-29', 0, 0, 'fsy207', '2018-10-05', 'fu41', '2018-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS452833678779', '韓天榮', 0, '+86 755-287-8345', 3, '560710117920351444', '中国深圳龙岗区布吉镇西环路853号12楼', '1991-06-01', 0, 0, 'tinwing2', '2021-12-27', 'tinwing308', '2004-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS936448647904', '文詠詩', 1, '+1 718-606-6281', 2, '270784676561303545', '36 Bergen St Apt 10, Brooklyn, NY 11217, United States', '1998-08-31', 0, 0, 'wsman', '2018-09-13', 'wingsze311', '2001-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS286526453024', '雷永權', 1, '+86 20-486-5456', 1, '674714625667846498', '中国广州市天河区天河路22号25栋', '1988-09-03', 0, 0, 'wingkuenloui4', '2020-09-30', 'lowingkuen5', '2006-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS417663908925', '尹梓軒', 1, '+86 182-5577-1909', 3, '904856017750637324', 'Room 23, CR Building, 328 028 County Rd, Yanqing District, Beijing, China', '1988-01-24', 0, 0, 'thy', '2008-01-01', 'tszhinyin', '2000-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS133456150746', '汪岚', 1, '+86 760-541-4113', 4, '133420705891097206', 'No.14 building, 738 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1987-11-24', 0, 0, 'lanwa65', '2022-03-05', 'wanlan', '2007-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS380837346122', 'Lawrence Allen', 0, '+44 5456 022201', 3, '315740854188275189', 'Unit 24, Oxford Eco Centre, 480 Redfern St, Liverpool, L20 8JB, United Kingdom', '1994-09-24', 0, 0, 'lawrenceallen', '2008-02-29', 'lawrence326', '2011-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS827998956826', '姚詠詩', 1, '+86 168-2287-1103', 3, '394436324536689631', '中国成都市成华区玉双路6号581号42楼', '1990-07-22', 0, 0, 'wsy', '2003-05-02', 'yws', '2000-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS457298459926', '高家強', 1, '+44 5511 766485', 3, '436587038186256274', 'Block 27, 141 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1997-11-27', 0, 0, 'kakeungkao', '2000-06-28', 'kakeung326', '2007-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS700391092892', 'Ethel Patel', 0, '+86 755-3461-1311', 2, '216667416826090849', 'No.21 building, 721 Shennan Ave, Futian District, Shenzhen, China', '1997-01-31', 0, 0, 'ethelp', '2013-04-20', 'ethelpatel', '2018-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS189994835326', '苏安琪', 1, '+81 52-858-9105', 3, '158557102257842822', 'Rm. 39, 2-5-1 Chitose, Atsuta Ward, Nagoya, Japan', '1995-07-21', 0, 0, 'anqis', '2016-10-06', 'anqis6', '2019-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS755170796363', '傅志遠', 1, '+1 213-078-8756', 1, '126120957627113456', '297 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1993-03-28', 0, 0, 'chiyfu414', '2003-12-12', 'fu3', '2004-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS152830602720', '余子韬', 0, '+86 20-8336-0967', 0, '221716509315537160', '中国广州市白云区小坪东路388号17室', '1997-07-07', 0, 0, 'zityu', '2015-05-16', 'zitaoyu', '2006-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS662362322895', '袁秀文', 1, '+81 80-4913-6987', 2, '232498541809685929', '日本東京港区東新橋一丁目5番16号31階', '1996-09-03', 0, 0, 'ysauman87', '2001-07-07', 'sauman1004', '2012-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS255945832277', '廖梓晴', 0, '+44 5979 512810', 0, '380554382062630675', 'No.12 Main building, 393 New Street, Birmingham, B2 4DB, United Kingdom', '1993-04-30', 0, 0, 'tcl', '2005-07-13', 'liatszching', '2002-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS361847716228', '任志遠', 1, '+86 178-1523-0931', 3, '279802036049583265', '中国上海市浦东新区健祥路51号46号楼', '1991-06-23', 0, 0, 'chiyuenyam10', '2007-01-31', 'cyyam', '2005-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS339406966964', '田詠詩', 1, '+44 (151) 593 6476', 4, '451593532623730160', 'No.44 Main building, 318 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1990-05-04', 0, 0, 'wingszetin905', '2001-08-20', 'tinws8', '2013-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS198486040061', 'Phyllis Romero', 1, '+81 80-3970-3727', 1, '126525883169633219', '日本札幌白石区菊水三条五丁目4番8号27階', '1992-05-30', 0, 0, 'phyllis5', '2009-03-03', 'romerop50', '2004-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS613172648308', '木村凛', 0, '+44 (161) 955 3136', 4, '127957991907135380', 'Flat 47, 246 Portland St, Manchester, M1 3LA, United Kingdom', '1994-08-20', 0, 0, 'kimura6', '2004-04-07', 'rin7', '2007-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS493391850778', '劉永發', 0, '+44 (1865) 35 4259', 4, '740335830584807214', 'Flat 48, 666 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1988-01-01', 0, 0, 'lwf', '2010-07-18', 'wingfatla', '2001-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS998600677023', '樂曉彤', 1, '+81 3-7107-7637', 1, '051914468291191061', '1-kai, 2-3-11 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-10-04', 0, 0, 'lok7', '2003-10-03', 'hiutlok9', '2003-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS450314588196', '邱俊宇', 1, '+44 (20) 0688 4795', 2, '672303017294709582', 'Flat 13, 964 Regent Street, London, W1B 2LX, United Kingdom', '1994-03-23', 0, 0, 'cyya9', '2009-04-16', 'chunyuyau2', '2012-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS183881465398', '坂本美月', 0, '+86 28-3815-8090', 2, '617088283561635480', 'No.20 building, No.671, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1998-12-22', 0, 0, 'mitsukisaka1014', '2017-06-15', 'smi8', '2005-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS294227670441', '狄志明', 0, '+86 167-4465-9971', 3, '350642376141637552', '中国深圳福田区景田东一街615号25栋', '1989-11-01', 0, 0, 'ticm', '2016-04-23', 'ticm56', '2007-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS599401073677', '野口光', 1, '+81 80-5268-0592', 4, '865810777773851174', '29-kai, 3-19-8 Shimizu, Kita Ward, Nagoya, Japan', '1986-05-07', 0, 0, 'noh', '2021-05-24', 'noguchih42', '2021-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS316540509523', 'Robin Nelson', 1, '+81 3-7697-7712', 3, '101108749296033814', '日本東京千代田区丸の内一丁目6番5号13階', '1996-05-31', 0, 0, 'nrobin', '2001-10-07', 'rnels', '2021-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS540634501175', '黎宇宁', 1, '+44 (161) 483 7216', 2, '256134058356495270', 'No.25 Main building, 301 Mosley St, Manchester, M2 3AQ, United Kingdom', '1998-04-21', 0, 0, 'liy1945', '2002-06-04', 'liyuning10', '2006-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS969554203386', 'Theresa Wilson', 0, '+81 80-2766-3370', 2, '795839993921055931', '33-kai, 1-6-15, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1994-08-28', 0, 0, 'theresawils', '2008-05-31', 'theresawilson', '2003-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS173421392598', '罗震南', 1, '+81 52-262-1225', 2, '944256893473737221', '20-kai, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-10-19', 0, 0, 'zhennan2', '2015-01-19', 'zhenl', '2016-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS746927659274', '山崎湊', 1, '+86 199-9968-9019', 2, '554392138477289138', 'Room 10, CR Building, 569 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1995-11-23', 0, 0, 'yamami', '2002-12-20', 'yamazmi', '2004-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS760280937163', '蒋晓明', 1, '+44 5233 600743', 3, '223439861853668507', 'Unit 10, Oxford Eco Centre, 625 Pollen Street, London, W1S 1NG, United Kingdom', '1988-11-02', 0, 0, 'jiang3', '2002-01-26', 'xiaomingj6', '2016-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS816291559888', '蕭詩君', 0, '+1 838-820-3219', 2, '787308900629824759', '580 Broadway Suite 45, Albany, NY 12207, United States', '1998-01-17', 0, 0, 'siu87', '2017-05-24', 'szekwansiu', '2017-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS598714522857', 'Rhonda Coleman', 1, '+81 80-5423-6880', 1, '170997013028731226', '19F, 2-1-2 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1998-01-26', 0, 0, 'coleman49', '2000-11-23', 'rhondacoleman', '2010-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS769831113844', '千葉美緒', 0, '+81 3-1151-1757', 2, '635340167189931125', '日本東京港区東新橋一丁目5番14号39階', '1987-10-30', 0, 0, 'mc3', '2013-07-08', 'chiba1220', '2002-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS666705533829', '應玲玲', 1, '+81 70-1986-3798', 4, '155882374943255921', '44F, 6-1-7, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1996-07-22', 0, 0, 'yinglingling8', '2011-03-02', 'yingll', '2015-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS752831961245', '袁力申', 0, '+81 80-3572-0552', 1, '402916984026089107', '21F, 6 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1999-02-20', 0, 0, 'lsyue05', '2008-03-08', 'yuenliksun', '2006-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS960562111914', '石川一輝', 1, '+81 3-6587-2808', 1, '142025123790331092', 'Rm. 9, 1-6-4, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1989-03-01', 0, 0, 'iikk', '2018-06-17', 'ikishik', '2019-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS673167301179', '萬潤發', 1, '+81 70-3847-8999', 2, '003999316738239391', '12F, 2-3-12 Yoyogi, Shibuya-ku, Tokyo, Japan', '1987-07-16', 0, 0, 'yunfatmeng', '2003-06-12', 'myf', '2020-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS974537700209', '冯璐', 0, '+81 11-243-6311', 2, '116257063564596950', '日本札幌白石区菊水三条五丁目2番10号17階', '1992-06-15', 0, 0, 'feng525', '2019-07-31', 'fenl', '2012-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS005793612197', '菊地葉月', 0, '+86 178-2720-0452', 0, '714571122709697685', '中国中山京华商圈华夏街715号华润大厦3室', '1992-12-11', 0, 0, 'hazuki820', '2019-02-08', 'kikuchihaz', '2006-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS426772176665', 'Bradley Peterson', 1, '+81 70-3369-6247', 3, '418855577953624088', 'Rm. 50, 3-15-1 Ginza, Chuo-ku, Tokyo, Japan', '1985-02-27', 0, 0, 'petersonbrad2', '2019-11-19', 'peterson4', '2019-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS174233245527', '伊藤悠人', 0, '+81 90-9267-8431', 1, '749449141936855315', '日本東京渋谷区代々木二丁目3番7号23階', '1994-11-02', 0, 0, 'itoy', '2006-11-25', 'yutito', '2021-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS298392672654', '潘睿', 1, '+1 718-333-4798', 3, '460938593647088276', '947 Bergen St Apt 19, Brooklyn, NY 11217, United States', '1992-06-24', 0, 0, 'panr42', '2010-11-08', 'rup', '2019-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS733290771296', '鄭永發', 1, '+86 20-569-5813', 0, '539855229263662649', '中国广州市白云区小坪东路933号华润大厦6室', '1985-07-31', 0, 0, 'wfch68', '2012-10-13', 'wingfatcheng6', '2018-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS552647771864', '唐云熙', 1, '+44 (1865) 00 2895', 2, '256287860783092721', 'Flat 21, 657 Park End St, Oxford, OX1 1JD, United Kingdom', '1994-01-27', 0, 0, 'tayun96', '2014-08-15', 'tangyu1230', '2010-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS173806627333', '郭永發', 1, '+86 190-1972-2669', 1, '697016319382303305', '27F, 390 Hongqiao Rd., Xu Hui District, Shanghai, China', '1987-01-19', 0, 0, 'kwokwf', '2002-02-23', 'wingfatkwok', '2005-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS258219650521', '曹梓晴', 0, '+86 10-781-7139', 2, '474957951417122700', '中国北京市西城区复兴门内大街158号28室', '1993-06-27', 0, 0, 'tszchingc', '2016-12-01', 'tccho', '2020-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS184604849383', '加藤大和', 1, '+81 66-640-2465', 1, '135218028622962067', '日本おおさかし東住吉区東田辺三丁目27番7号28階', '1987-05-20', 0, 0, 'yamkato412', '2018-01-08', 'yamatkato9', '2000-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS845399348904', '向嘉欣', 0, '+1 838-732-9312', 3, '889831813278712115', '220 State Street 3rd Floor, Albany, NY 12203, United States', '1985-03-18', 0, 0, 'heung3', '2018-08-30', 'hky', '2010-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS454446180283', '彭慧琳', 0, '+44 (1223) 13 5842', 2, '334205865025193503', 'Unit 13, Oxford Eco Centre, 671 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1992-04-11', 0, 0, 'wailampang', '2015-04-07', 'wlpan48', '2001-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS644134927915', '原田明菜', 1, '+86 28-594-6705', 1, '181368648286640952', '中国成都市成华区二仙桥东三路633号4栋', '1998-11-16', 0, 0, 'haradaakina', '2020-06-11', 'haradakina', '2014-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS954023192560', '毛家玲', 1, '+1 614-489-2526', 1, '014503143387539624', '58 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1986-10-11', 0, 0, 'kaling603', '2019-04-15', 'kalingmo907', '2019-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS117619576073', 'Ashley Davis', 1, '+81 3-5373-2625', 3, '090271235942764710', '日本東京品川区東五反田五丁目2番8号46階', '1993-12-13', 0, 0, 'ashley52', '2008-09-21', 'ashley5', '2008-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS798034788937', '原和真', 1, '+1 330-026-4316', 2, '311866737219031023', '55 West Market Street Apartment 5, Akron, OH 44333, United States', '1988-01-19', 0, 0, 'hara5', '2001-08-10', 'harak', '2018-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS218769550086', 'Randy Gray', 0, '+81 70-0896-2515', 3, '516066086584641977', '47-kai, 1-1-18 Deshiro, Nishinari Ward, Osaka, Japan', '1996-06-28', 0, 0, 'grayrandy', '2019-12-24', 'grayran', '2021-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS446578849814', '宣明', 0, '+86 28-4875-0052', 1, '923990749504575172', '中国成都市成华区双庆路715号40室', '1986-07-27', 0, 0, 'hsuanming4', '2004-11-08', 'minghsua', '2015-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS447271566638', '徐潤發', 0, '+81 90-5288-5426', 3, '611903221041140207', '13F, 1-6-1, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-10-02', 0, 0, 'yunfat06', '2017-02-21', 'tsuiyunfa119', '2017-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS521164235680', '盧慧敏', 1, '+86 760-770-1632', 0, '295798991663832759', '中国中山天河区大信商圈大信南路194号41栋', '1995-08-26', 0, 0, 'lowaim9', '2012-01-12', 'lwm', '2008-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS843253289470', 'Joe Webb', 1, '+1 614-151-9521', 1, '796090608027356718', '357 Wicklow Road Apartment 3, Columbus, GA 43204, United States', '1997-01-08', 0, 0, 'joe12', '2019-10-06', 'joewebb', '2017-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS032333404334', '藤原光莉', 1, '+81 70-1479-7104', 1, '611436422280656132', '23F, 4-9-9 Kamihigashi, Hirano Ward, Osaka, Japan', '1985-05-23', 0, 0, 'fujhi', '2013-02-08', 'fujiwarah11', '2004-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS528656988813', '佐々木舞', 0, '+81 52-979-2007', 3, '647706629336450493', 'Rm. 5, 2-5-7 Chitose, Atsuta Ward, Nagoya, Japan', '1996-03-31', 0, 0, 'smai', '2010-01-06', 'sama3', '2006-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS453701018941', 'Diana Patel', 0, '+1 614-792-5128', 3, '797574258573255698', '660 East Cooke Road Suite 13, Columbus, GA 43214, United States', '1987-01-19', 0, 0, 'patel727', '2012-03-23', 'patel7', '2012-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS155812189310', '渡辺大和', 0, '+81 90-0105-6148', 2, '471477936364186670', '日本おおさかし西成区出城一丁目1番8号38号室', '1997-06-09', 0, 0, 'sayamato', '2004-10-25', 'yamasato', '2019-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS725819561840', '苑發', 0, '+44 (161) 336 1757', 4, '646833148643246732', 'Unit 18, Oxford Eco Centre, 284 Mosley St, Manchester, M2 3AQ, United Kingdom', '1989-02-07', 0, 0, 'yuenfat', '2008-06-12', 'fat6', '2015-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS422855812622', 'Eddie Hill', 1, '+86 198-7001-2782', 3, '717881741998302908', 'No.5 building, 589 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1988-08-15', 0, 0, 'ehil10', '2006-06-29', 'eddiehill2', '2002-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS486550797346', '小野玲奈', 0, '+1 838-591-7010', 2, '820849824378926144', '449 Lark Street Apt 49, Albany, NY 12210, United States', '1986-02-21', 0, 0, 'rena61', '2012-03-30', 'ono97', '2005-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS175558540172', 'Tammy Meyer', 0, '+86 760-4788-9156', 1, '906082497744518860', 'No.33 building, 529 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1992-10-07', 0, 0, 'tammy625', '2007-04-08', 'tm15', '2013-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS719390887865', '朱玲玲', 1, '+86 182-4345-7073', 0, '253650258217507905', '15F, 83 028 County Rd, Yanqing District, Beijing, China', '1996-01-17', 0, 0, 'chull97', '2019-12-31', 'linglingchu', '2015-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS452484199320', '曾天樂', 1, '+81 90-6457-1549', 3, '725337188541178127', '日本なごやし北区清水三丁目19番17号13階', '1992-08-31', 0, 0, 'tstinl506', '2000-01-06', 'tlt', '2005-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS221803188644', '傅永權', 0, '+44 7973 901875', 2, '460390465388570821', 'No.37 Main building, 381 Sackville St, Manchester, M1 3BB, United Kingdom', '1995-09-15', 0, 0, 'fuwk', '2019-04-08', 'wkf', '2020-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS663276492517', '吳明詩', 1, '+86 173-2563-6963', 1, '018459528976491246', '中国北京市延庆区028县道937号1号楼', '1989-07-10', 0, 0, 'msng406', '2016-09-06', 'mingszen', '2002-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS744917969582', '叶杰宏', 0, '+86 156-8610-2240', 1, '724845352736270712', 'No.24 building, 890 Sanlitun Road, Chaoyang District, Beijing, China', '1992-06-09', 0, 0, 'jieye', '2002-09-01', 'jiehong4', '2019-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS836934003254', '崔子异', 1, '+81 11-116-3190', 3, '269969944284481291', '日本札幌厚別区上野幌一条二丁目1番6号41階', '1991-12-30', 0, 0, 'cuiziy', '2005-01-28', 'cuziyi', '2004-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS835795026328', '盧家文', 1, '+44 (1865) 53 7088', 1, '234792746484507082', 'Block 50, 375 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1993-04-12', 0, 0, 'kaman5', '2018-09-18', 'kamanlo', '2008-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS469423098712', '周慧珊', 0, '+86 150-8206-9003', 2, '449051381300214904', '中国广州市越秀区中山二路450号5楼', '1995-06-27', 0, 0, 'chowaisa', '2010-11-01', 'wschow', '2010-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS114724978382', '増田湊', 0, '+86 755-6533-1975', 4, '753565354330690802', '中国深圳罗湖区蔡屋围深南东路604号8号楼', '1987-05-23', 0, 0, 'masudaminat4', '2007-05-06', 'minatmasuda', '2013-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS954864047322', 'Mary Tran', 0, '+86 155-3022-4962', 3, '428022526361208692', 'No.23 building, 253 Lefeng 6th Rd, Zhongshan, China', '1986-05-31', 0, 0, 'tmary', '2009-01-04', 'tran1959', '2009-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS896952752816', '郑杰宏', 0, '+86 147-7695-4621', 4, '370270266507033116', '31F, 612 Middle Huaihai Road, Huangpu District, Shanghai, China', '1999-03-03', 0, 0, 'jiehongzh', '2019-04-06', 'zhjiehong109', '2015-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS962717554873', 'Frederick Schmidt', 0, '+44 (20) 5879 2759', 2, '579730995071425941', 'No.3 Main building, 838 Pollen Street, London, W1S 1NG, United Kingdom', '1986-01-05', 0, 0, 'sfrederick', '2017-08-17', 'schmidtf', '2004-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS960212601121', '小林海斗', 0, '+81 80-9193-6533', 0, '555019550448436410', '19-kai, 3-19-19 Shimizu, Kita Ward, Nagoya, Japan', '1986-04-29', 0, 0, 'kaitokobayashi', '2019-04-08', 'kkaito', '2014-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS569545339394', '朱力申', 0, '+81 3-7048-3966', 4, '675125112442285314', '17-kai, 2-3-1 Yoyogi, Shibuya-ku, Tokyo, Japan', '1998-10-07', 0, 0, 'liksunch', '2019-05-12', 'chu1', '2010-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS576312611802', '金子陽菜', 0, '+86 133-6864-4396', 2, '538307474988158056', '中国深圳福田区景田东一街771号30栋', '1994-04-15', 0, 0, 'hikan', '2019-11-27', 'kanekohi', '2020-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS448480379728', 'Leroy Bell', 1, '+86 176-2297-8812', 2, '964517119098878478', '中国成都市成华区玉双路6号679号1栋', '1995-01-01', 0, 0, 'bellle8', '2012-08-17', 'belll', '2000-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS365550095153', '蔡梓晴', 1, '+81 70-9819-2704', 0, '699870752296014321', '日本札幌清田区真栄四条五丁目19番15号49号室', '1995-12-21', 0, 0, 'choitc', '2021-08-06', 'ctc', '2012-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS112679846872', '高云熙', 1, '+81 70-3742-6333', 3, '095968485164725757', '日本なごやし瑞穂区河岸町四丁目20番11号12階', '1995-02-08', 0, 0, 'gaoyunxi1003', '2015-03-02', 'gaoy', '2017-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS450623946500', 'Curtis Hill', 1, '+86 155-1540-7058', 4, '524287810283305072', 'Room 48, 799 Dong Zhi Men, Dongcheng District, Beijing, China', '1987-05-30', 0, 0, 'curtihill721', '2014-02-22', 'ch8', '2012-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS902765647554', 'Carlos Shaw', 0, '+86 10-6671-5944', 3, '646966547491210296', 'No.40 building, 347 West Chang''an Avenue, Xicheng District, Beijing, China', '1992-10-09', 0, 0, 'shawcarlos', '2003-06-17', 'carlossha', '2008-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS217744316838', '杜致远', 0, '+81 3-3512-2046', 1, '013761604284969306', '37-kai, 1-6-2, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1985-06-20', 0, 0, 'duzhiy', '2016-09-10', 'zhiydu1972', '2022-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS033586844502', '大塚結翔', 1, '+86 21-819-8004', 0, '953358289884612027', '中国上海市闵行区宾川路731号32楼', '1996-03-10', 0, 0, 'yuitoot', '2011-10-13', 'yotsuka', '2002-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS158388379715', '萧睿', 0, '+81 11-710-4476', 3, '505172752605033181', '日本札幌厚別区上野幌一条二丁目1番1号46階', '1986-03-06', 0, 0, 'ruxiao', '2005-02-14', 'ruix10', '2010-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS460840824271', '龙嘉伦', 1, '+44 7790 510124', 4, '553284859094141513', 'No.20 Main building, 241 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1994-07-03', 0, 0, 'longji', '2001-06-19', 'long6', '2017-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS481980564916', 'Edward Gardner', 0, '+86 769-550-0763', 3, '860431815218912590', 'Room 22, 287 Dongtai 5th St, Dongguan, China', '1994-01-19', 0, 0, 'edwardgardner', '2009-08-17', 'gardneredwar', '2006-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS639608593095', '平野光', 1, '+1 718-707-6740', 3, '314007884388286940', '948 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1997-04-06', 0, 0, 'hhikaru5', '2002-07-24', 'hirano5', '2008-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS062598053891', 'Hazel Barnes', 1, '+44 (161) 569 6866', 1, '965781177067871960', 'No.23 Main building, 233 Mosley St, Manchester, M2 3AQ, United Kingdom', '1986-04-16', 0, 0, 'barnesh', '2009-12-27', 'habar', '2007-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS108455791952', '顧頴璇', 1, '+86 178-4058-0962', 4, '369426741032427625', '中国上海市浦东新区健祥路254号34号楼', '1986-08-02', 0, 0, 'kuwingsuen', '2006-11-06', 'wingsuenku', '2021-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS275189503599', '佘天榮', 0, '+81 70-0873-4780', 3, '215406737356769460', '日本おおさかし東住吉区東田辺三丁目27番14号37号室', '1985-01-01', 0, 0, 'shehtin2', '2003-04-25', 'stw', '2007-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS927869670470', '孔震南', 1, '+81 80-6002-0272', 3, '004190757928651187', 'Rm. 48, 7 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-09-09', 0, 0, 'zhennk1979', '2005-02-08', 'kzh', '2020-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS153717760722', '謝頴思', 1, '+1 330-212-9193', 1, '553377315157593743', '150 Riverview Road Suite 5, Akron, OH 44313, United States', '1991-06-13', 0, 0, 'tsws', '2002-04-11', 'tse426', '2007-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS137915212432', '丁云熙', 0, '+44 (1223) 44 1114', 0, '624355400147720228', 'Unit 14, Oxford Eco Centre, 618 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1997-04-20', 0, 0, 'yunxidi9', '2017-02-08', 'yunxi1128', '2017-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS242966128523', '常嘉伦', 0, '+86 10-2744-8747', 1, '320185593105800505', 'No.22 building, 835 68 Qinghe Middle St, Haidian District, Beijing, China', '1987-02-21', 0, 0, 'changjial1', '2003-10-12', 'jc1940', '2008-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS124227110409', '黃玲玲', 0, '+86 143-4235-3209', 1, '162389369695807047', 'Room 5, 807 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1997-12-25', 0, 0, 'linglingwong', '2012-01-02', 'llwong9', '2015-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS363981854537', '廖宇宁', 0, '+44 5778 749650', 2, '628166237342692587', 'Flat 3, 58 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1988-05-03', 0, 0, 'yuninl1122', '2017-11-30', 'yliao1', '2004-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS735084964871', '龚杰宏', 1, '+1 312-862-6965', 2, '466660962120387389', '110 North Michigan Ave Suite 50, Chicago, IL 60611, United States', '1995-11-28', 0, 0, 'jiehonggo', '2004-03-14', 'jg1201', '2013-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS486657454843', '杨嘉伦', 0, '+86 187-1993-0722', 2, '741445693010800618', 'Room 37, CR Building, 833 Hongqiao Rd., Xu Hui District, Shanghai, China', '1987-12-28', 0, 0, 'jiayang', '2014-07-17', 'jy205', '2017-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS067827073321', '西村凛', 1, '+86 755-5597-2116', 1, '719459599342275674', '9F, 531 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1988-09-11', 0, 0, 'rinnishi', '2018-04-12', 'nishimura1023', '2005-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS940552323971', 'Arthur Gibson', 1, '+1 312-457-9959', 3, '788580823903700650', '998 North Michigan Ave Apt 36, Chicago, IL 60611, United States', '1994-12-09', 0, 0, 'gibsar', '2015-09-25', 'giarthur', '2012-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS422957925634', 'Esther Rodriguez', 1, '+44 5127 391677', 1, '584143998827126609', 'Unit 3, Oxford Eco Centre, 22 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1991-04-22', 0, 0, 'rodresther', '2022-01-03', 'resther', '2012-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS604918506145', '森光', 1, '+44 7621 240845', 3, '284051098456607749', 'No.2 Main building, 771 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1988-02-16', 0, 0, 'morihik', '2006-06-27', 'hmori', '2005-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS550833584171', 'Joshua Gonzalez', 0, '+1 718-150-7074', 3, '754433851831372363', '855 Columbia St Apt 21, Brooklyn, NY 11231, United States', '1994-02-21', 0, 0, 'jog', '2005-02-27', 'gonzalez2', '2007-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS295666618030', '佘家玲', 0, '+81 66-269-4698', 1, '834516305474401728', '22-kai, 1-1-3 Deshiro, Nishinari Ward, Osaka, Japan', '1991-04-01', 0, 0, 'klsheh', '2004-01-18', 'shehka504', '2007-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS672431604782', '藤田大輔', 0, '+86 153-1031-2396', 3, '317828636893686065', '2F, 752 Jianxiang Rd, Pudong, Shanghai, China', '1990-12-04', 0, 0, 'daifujita10', '2008-09-24', 'fujitada', '2007-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS232758022034', 'Jonathan Jones', 0, '+86 21-541-3886', 2, '776841289372692234', 'No.32 building, 819 Ganlan Rd, Pudong, Shanghai, China', '1986-10-11', 0, 0, 'joj9', '2014-07-18', 'jojones50', '2020-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS575337095221', '長谷川涼太', 0, '+81 70-9384-2595', 4, '621563535560088182', '17F, 2-5-18 Chitose, Atsuta Ward, Nagoya, Japan', '1989-03-21', 0, 0, 'rhase02', '2002-06-11', 'ryotahaseg', '2018-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS564860220336', '西村美月', 0, '+86 171-1168-9230', 3, '652703292305127723', '12F, 861 Xiaoping E Rd, Baiyun , Guangzhou, China', '1989-07-25', 0, 0, 'nishimits', '2013-06-26', 'mitsuki3', '2012-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS724599910294', '菊地紗良', 1, '+81 70-1712-6132', 3, '185916878385410926', 'Rm. 17, 3 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-12-03', 0, 0, 'ksara56', '2014-09-05', 'skikuchi11', '2002-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS824101200715', '马云熙', 1, '+81 74-056-2028', 2, '737084279401376351', '46F, 5 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1991-08-29', 0, 0, 'mayunxi', '2001-08-20', 'mayunxi5', '2017-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS686747924849', '熊震南', 0, '+86 189-6336-5633', 3, '953731027095045478', 'Room 27, CR Building, 626 Jianxiang Rd, Pudong, Shanghai, China', '1986-02-11', 0, 0, 'zhexiong', '2018-07-20', 'xiongz9', '2013-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS165737444678', '森美咲', 0, '+1 213-140-4551', 1, '345247415173940821', '763 Wall Street Apt 49, Los Angeles, CA 90003, United States', '1994-11-28', 0, 0, 'misamori', '2004-06-11', 'morimi', '2008-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS468160690967', '林湊', 1, '+81 11-084-7367', 1, '076257573278355290', 'Rm. 46, 13-3-13 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1996-02-05', 0, 0, 'minato70', '2006-01-16', 'hayashiminato', '2014-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS505732741735', 'Louise Sanchez', 1, '+44 (1223) 22 9358', 3, '340561899684629158', 'Block 1, 227 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1990-08-31', 0, 0, 'sanchlouise', '2021-05-31', 'lsanch', '2008-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS849096952622', '方秀英', 1, '+81 11-411-0021', 4, '948490059400855504', '20-kai, 5-19-12 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1985-12-17', 0, 0, 'fangxi709', '2001-09-09', 'fxiuying7', '2019-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS695162803258', '橋本百恵', 0, '+81 80-3805-1742', 0, '659889235032423895', '日本なごやし守山区瀬古東二丁目171番7号14階', '1987-08-31', 0, 0, 'momoehashi5', '2011-09-28', 'hashimotomomo606', '2019-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS435275741799', 'Thelma Cook', 1, '+81 90-5747-4309', 2, '320873866183262157', '2F, 5-19-8 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1987-07-10', 0, 0, 'cookthel', '2017-03-02', 'thelc6', '2014-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS182372282889', '渡辺樹', 0, '+1 312-683-3421', 1, '270788126323875545', '132 Rush Street Apartment 36, Chicago, IL 60611, United States', '1997-02-02', 0, 0, 'sato1966', '2012-04-30', 'itsuki73', '2000-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS015547847865', '刘杰宏', 1, '+81 70-0541-9242', 2, '538185443368846924', 'Rm. 28, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-01-20', 0, 0, 'jiehong6', '2017-06-10', 'jiehongl', '2016-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS149018571592', '段璐', 0, '+1 838-335-9154', 0, '861496826686385483', '442 Lark Street Suite 34, Albany, NY 12210, United States', '1991-09-04', 0, 0, 'dulu6', '2009-02-08', 'duan1', '2014-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS082489596513', 'Dennis Flores', 0, '+86 20-063-7271', 2, '050605057558041282', 'Room 12, 30 Tianhe Road, Tianhe District, Guangzhou, China', '1989-12-08', 0, 0, 'denniflo', '2000-03-20', 'flordennis', '2000-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS544950982935', '戴永發', 0, '+1 614-685-0648', 2, '033626706204891996', '510 East Cooke Road Suite 21, Columbus, GA 43214, United States', '1993-03-09', 0, 0, 'daiwingfat', '2001-05-31', 'daiwingfat', '2014-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS014461231185', '村上涼太', 0, '+81 90-9885-6150', 3, '912682771753586320', '49F, 5-2-10 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-02-06', 0, 0, 'ryotamurak', '2020-08-27', 'ryotamurakami', '2017-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS697169244252', '王晓明', 0, '+1 213-629-9879', 3, '055608962745321583', '606 Grape Street Apartment 40, Los Angeles, CA 90002, United States', '1994-10-20', 0, 0, 'wang709', '2011-07-16', 'wanx', '2008-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS590489047482', '楊發', 0, '+86 28-219-1104', 1, '075849196807348678', '中国成都市锦江区人民南路四段930号4室', '1989-10-29', 0, 0, 'yeungf', '2000-01-17', 'fatyeun', '2015-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS750111326127', '杉山海斗', 0, '+81 52-332-9970', 2, '781249388760309085', '日本なごやし守山区瀬古東二丁目171番11号48階', '1996-10-17', 0, 0, 'sugiyamakaito9', '2017-02-28', 'sugka5', '2006-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS745737831652', '村田玲奈', 1, '+44 7013 525104', 2, '567795573806003923', 'Flat 43, 18 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1995-03-14', 0, 0, 'renamurata9', '2019-03-22', 'renamurata8', '2019-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS689117202863', '袁子异', 0, '+1 212-314-8957', 3, '235759757153399560', '256 Canal Street Apartment 16, New York, NY 10013, United States', '1986-10-27', 0, 0, 'yuaz54', '2011-02-10', 'zyuan10', '2008-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS111824385245', '廖璐', 1, '+86 134-3888-6683', 3, '959168243576055323', 'Room 2, 659 Lefeng 6th Rd, Zhongshan, China', '1995-02-24', 0, 0, 'lilu', '2016-07-20', 'liaolu3', '2006-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS805191546762', 'Angela Cole', 1, '+81 74-959-6217', 1, '289012775829447924', 'Rm. 19, 17 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-10-12', 0, 0, 'angec89', '2011-04-04', 'angela123', '2016-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS670505043172', 'Louise Webb', 1, '+81 80-2074-8464', 4, '398292364617588574', '日本東京千代田区丸の内一丁目6番15号40階', '1990-02-16', 0, 0, 'weblouise', '2006-07-04', 'louise17', '2019-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS665212733199', '斉藤百恵', 1, '+86 28-594-8306', 0, '419093608342218297', '23F, 79 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1997-07-03', 0, 0, 'mosa', '2003-12-03', 'momosa', '2011-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS445931280461', '姚仲賢', 1, '+86 175-8711-8390', 2, '965278984218416130', '28F, 878 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1989-09-14', 0, 0, 'chungyinyeow605', '2000-07-26', 'yeowchungyin', '2015-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS436009568561', '廖杰宏', 1, '+81 80-5354-9950', 0, '025906354518699198', '2-kai, 2-1-15 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1997-09-01', 0, 0, 'liaj', '2016-04-03', 'liao2', '2016-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS107234930177', '韩晓明', 0, '+44 (1223) 40 1928', 3, '861306630720720851', 'Flat 2, 755 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1991-07-20', 0, 0, 'hanxiao', '2015-01-21', 'han3', '2017-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS892699946691', 'Chad Allen', 0, '+81 11-793-0677', 3, '723192403297290400', '日本札幌清田区真栄四条五丁目19番5号35階', '1995-01-21', 0, 0, 'allen7', '2016-03-13', 'allench', '2007-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS702969508870', '丁宇宁', 0, '+1 312-967-9635', 0, '017494934642492078', '669 Rush Street Suite 40, Chicago, IL 60611, United States', '1992-07-26', 0, 0, 'yuning421', '2019-09-15', 'dingyuning', '2019-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS695259945052', '张璐', 0, '+86 168-3012-8645', 2, '369457960878788611', '中国成都市成华区玉双路6号475号44号楼', '1987-09-19', 0, 0, 'luzhang7', '2021-10-19', 'luzhan47', '2000-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS836717221375', '元仲賢', 0, '+44 5490 684016', 1, '306171176600929296', 'Block 20, 110 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1985-04-02', 0, 0, 'cyy607', '2004-09-08', 'yucy71', '2000-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS241289941462', '和田一輝', 0, '+86 760-361-9119', 0, '674446351993320450', '中国中山紫马岭商圈中山五路735号42号楼', '1998-04-11', 0, 0, 'wada6', '2006-06-20', 'wada1', '2015-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS742894838359', '鄺裕玲', 1, '+86 161-5801-5547', 3, '644874862325222442', 'Room 10, 428 Yueliu Rd, Fangshan District, Beijing, China', '1996-08-20', 0, 0, 'kwoyl1221', '2005-07-09', 'yulingkwon', '2004-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS286233004695', '盧慧嫻', 1, '+44 (151) 966 8498', 2, '098379113108493261', 'Flat 30, 749 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1998-04-24', 0, 0, 'lowh6', '2005-04-19', 'lwaihan62', '2013-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS086593550043', '村上光莉', 0, '+81 11-280-9396', 2, '715746501060073760', '日本札幌厚別区上野幌一条二丁目1番4号46階', '1989-01-01', 0, 0, 'hikarimurakami', '2021-06-24', 'hikarm', '2007-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS069309038460', '吕晓明', 0, '+86 755-165-4369', 2, '389346389566727105', 'Room 38, 512 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1986-07-03', 0, 0, 'xiaomingl716', '2018-07-03', 'xiaoml', '2006-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS841623540675', '柴田架純', 1, '+81 66-650-9374', 4, '708730864164717880', '49-kai, 1-7-7 Omido, Higashiosaka, Osaka, Japan', '1988-11-05', 0, 0, 'kashiba', '2001-04-12', 'skasumi', '2017-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS855883534664', '陶杰宏', 1, '+44 (116) 991 8776', 3, '901112345754372476', 'Flat 12, 525 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1991-07-14', 0, 0, 'jit10', '2002-07-25', 'jiehong731', '2019-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS903509196584', '江子异', 0, '+86 10-631-3233', 1, '622109293336476534', 'Room 39, CR Building, 441 Yueliu Rd, Fangshan District, Beijing, China', '1987-04-22', 0, 0, 'jiangziyi', '2011-05-28', 'jianziyi', '2012-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS771866512809', '萬詩君', 1, '+81 66-850-7824', 2, '281146815640921318', '10-kai, 3-27-11 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1994-06-29', 0, 0, 'skmeng', '2001-10-16', 'szekwanmeng', '2005-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS522918736446', '吳朝偉', 0, '+86 177-8368-2350', 2, '184984840549388438', '中国北京市西城区西長安街832号18号楼', '1991-03-04', 0, 0, 'cwng', '2018-11-19', 'ng306', '2006-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS243674001239', '傅國明', 0, '+86 20-761-2162', 1, '735607837322371105', 'Room 22, CR Building, 133 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1992-03-01', 0, 0, 'kwokmingfu', '2005-05-03', 'kwokming5', '2007-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS239058233572', '吴岚', 1, '+44 (161) 724 2859', 2, '847466308631665650', 'No.38 Main building, 340 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-05-11', 0, 0, 'lanwu', '2009-05-26', 'lanwu1', '2004-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS989465046414', 'Virginia Mills', 0, '+44 5022 426700', 3, '871220261308356132', 'Flat 44, 115 Redfern St, Liverpool, L20 8JB, United Kingdom', '1985-10-11', 0, 0, 'virginiamills828', '2002-10-28', 'virginia10', '2013-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS381154449023', '王惠妹', 0, '+44 (20) 1147 3698', 3, '015746761335605158', 'Flat 22, 326 Maddox Street, London, W1S 1PU, United Kingdom', '1991-08-17', 0, 0, 'wonhuimei', '2002-09-09', 'hmwong', '2009-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS575064097860', 'Sharon Lopez', 0, '+86 183-4151-4062', 2, '499016688729495347', '中国成都市成华区双庆路88号32室', '1996-08-28', 0, 0, 'los', '2017-03-31', 'sharon929', '2003-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS814992382117', '狄國權', 1, '+86 141-1302-6828', 0, '187569066676333136', 'Room 45, 125 Dongtai 5th St, Dongguan, China', '1987-10-25', 0, 0, 'tikwok', '2012-03-22', 'tikwokkuen', '2021-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS862269734160', 'Rhonda Warren', 1, '+86 196-2794-6605', 4, '759397526275966875', '中国成都市成华区二仙桥东三路807号1号楼', '1997-06-11', 0, 0, 'rhonda514', '2016-10-17', 'rwarren', '2018-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS192724865271', '尹杰宏', 0, '+1 330-780-9149', 4, '278283644355301930', '929 Ridgewood Road Apartment 1, Akron, OH 44321, United States', '1987-01-17', 0, 0, 'jyin221', '2017-11-04', 'jy511', '2002-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS433730497504', '大野百花', 0, '+86 21-763-9052', 2, '877613446732206085', '中国上海市浦东新区健祥路547号19室', '1993-10-17', 0, 0, 'onomomo2', '2002-09-03', 'onomomoka47', '2016-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS718844023511', 'Mary Salazar', 0, '+86 190-0369-5956', 2, '071078949547174734', '中国深圳福田区景田东一街784号23室', '1997-09-09', 0, 0, 'marysalazar', '2017-08-03', 'marysalaz1007', '2020-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS956892492091', '萬慧珊', 1, '+81 90-3961-6943', 0, '584844767826437653', '22F, 5-4-9 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-10-30', 0, 0, 'mengws', '2006-09-09', 'mengws119', '2005-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS419480517778', '坂本拓哉', 0, '+81 70-7852-1894', 2, '860278042483520995', '23-kai, 1-6-1, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1993-06-01', 0, 0, 'takuyasa', '2013-08-16', 'sakamototak823', '2020-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS809461943943', '汪震南', 1, '+86 172-6474-7346', 1, '720248886060591060', '中国广州市天河区天河路146号34楼', '1987-08-11', 0, 0, 'wang6', '2005-01-01', 'zhennan901', '2008-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS139210781396', '羅玲玲', 1, '+86 134-3053-0751', 0, '243003218390693860', '中国北京市西城区西長安街165号华润大厦37室', '1988-02-16', 0, 0, 'lolingling', '2002-12-19', 'lolingling', '2010-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS685533066562', '原田詩乃', 1, '+1 213-447-2246', 3, '099193015886612210', '102 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1994-12-11', 0, 0, 'shino1230', '2007-08-12', 'hashin', '2009-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS468536978619', 'Julie Johnson', 1, '+86 755-2702-3729', 1, '095057097724789552', '中国深圳罗湖区蔡屋围深南东路896号华润大厦13室', '1999-01-03', 0, 0, 'johnsjuli9', '2003-02-12', 'juliejohnson', '2016-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS180636816812', '高青雲', 1, '+81 80-7697-0422', 3, '000010837954332535', '37F, 2-1-4 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1987-12-27', 0, 0, 'chingwankao1020', '2018-11-24', 'cwk', '2018-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS799632771447', '叶子韬', 0, '+86 755-813-8880', 2, '724487197199924234', 'Room 23, 472 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1989-05-03', 0, 0, 'yezitao6', '2000-04-13', 'ye1995', '2012-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS832823731853', '傅志遠', 0, '+86 174-0471-0245', 2, '431644907148327696', '中国北京市东城区东单王府井东街423号41楼', '1996-05-06', 0, 0, 'fuchiyuen', '2000-11-20', 'chiyuenfu', '2003-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS807794940732', '林俊宇', 0, '+1 838-052-5608', 4, '061988872037853563', '903 State Street Apt 16, Albany, NY 12203, United States', '1998-11-02', 0, 0, 'cylam', '2018-09-02', 'lacy', '2019-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS956198840755', 'Robert Myers', 1, '+86 176-9830-4441', 3, '273678507191645351', '49F, 518 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1998-05-04', 0, 0, 'robmyer', '2003-03-23', 'robert6', '2002-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS593841170678', '朱宇宁', 1, '+86 150-3763-4534', 4, '253591626931355651', '中国成都市锦江区红星路三段576号27栋', '1993-10-04', 0, 0, 'zhuyuni', '2003-09-30', 'yuningzhu90', '2018-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS405590604209', '有村樹', 1, '+86 148-1663-2028', 3, '325172468546255076', '中国深圳福田区景田东一街386号28室', '1995-03-28', 0, 0, 'itsukiarim', '2014-11-17', 'itsukia', '2016-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS763207842930', '應國賢', 0, '+81 52-665-5881', 4, '571592023425095732', '日本なごやし北区楠味鋺三丁目80番15号13階', '1985-04-01', 0, 0, 'yingkwokyin7', '2012-06-28', 'kyyin2', '2015-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS462474222669', 'Norma Warren', 0, '+1 838-317-7606', 2, '961750926536489096', '429 Central Avenue Apt 39, Albany, NY 12205, United States', '1990-01-31', 0, 0, 'warren315', '2018-02-08', 'norwar', '2012-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS863715399558', '戴致远', 1, '+86 755-087-1670', 4, '468894845473576303', '中国深圳龙岗区布吉镇西环路409号29号楼', '1996-08-11', 0, 0, 'dazhiyu', '2000-03-27', 'zhid4', '2008-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS201386322508', '市川花', 1, '+44 (1223) 28 5990', 4, '134383147077814402', 'Flat 20, 958 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1991-11-07', 0, 0, 'ichikawahana509', '2020-12-23', 'hanaichikawa', '2004-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS898070582892', '小山美月', 1, '+86 136-3186-3125', 2, '995021913659453361', 'Room 38, CR Building, 905 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1998-03-05', 0, 0, 'mitsukoyam4', '2016-01-05', 'mitsuk', '2020-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS980082286295', '曹榮發', 0, '+86 137-5664-7668', 1, '138352737024469893', '中国成都市锦江区红星路三段390号华润大厦29室', '1989-08-25', 0, 0, 'chowf', '2019-06-04', 'wingfat616', '2005-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS177966458613', 'Scott Scott', 0, '+81 90-7600-6122', 4, '529289709855719698', '日本札幌厚別区上野幌一条二丁目1番7号25階', '1995-12-22', 0, 0, 'scott1', '2007-11-18', 'scottscott', '2016-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS564128127888', '鐘嘉欣', 1, '+81 80-3168-7780', 2, '189162433645569975', '43-kai, 5-19-12 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1986-12-02', 0, 0, 'chungky1110', '2007-06-02', 'kychu04', '2008-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS468971262089', '程嘉伦', 1, '+1 718-123-9058', 2, '453668077681700698', '613 Flatbush Ave Apartment 37, Brooklyn, NY 11225, United States', '1995-08-05', 0, 0, 'chengjialun', '2005-01-26', 'jialun1971', '2010-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS295205222162', 'Kathy Cruz', 0, '+1 212-728-2194', 2, '648881006010185241', '322 West Houston Street 3rd Floor, New York, NY 10014, United States', '1996-02-27', 0, 0, 'cruzkat', '2000-04-13', 'kc614', '2002-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS901631999485', '沈睿', 0, '+81 74-647-5913', 4, '550408090528626435', '32-kai, 1-7-11 Saidaiji Akodacho, Nara, Japan', '1989-11-20', 0, 0, 'shenrui', '2019-03-05', 'shenru', '2002-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS012965557228', '沈宇宁', 1, '+44 5164 172762', 0, '598602122048249641', 'No.23 Main building, 384 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1987-01-23', 0, 0, 'sheyuning', '2009-07-18', 'shyuning12', '2004-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS469170853523', '張慧琳', 0, '+86 28-331-3160', 2, '067089754097691616', '中国成都市成华区双庆路250号10室', '1985-12-31', 0, 0, 'cheung616', '2004-10-17', 'wailamc1204', '2007-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS482121017961', '蒋岚', 0, '+44 (161) 921 5541', 1, '239328914517981309', 'Block 10, 637 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1991-08-01', 0, 0, 'jiangla7', '2008-10-11', 'lanjian', '2006-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS551507206784', 'Phyllis Taylor', 1, '+86 20-281-4074', 4, '649118062078579749', 'No.26 building, 542 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1988-01-05', 0, 0, 'phyllt', '2019-04-19', 'taphyll', '2016-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS912723101049', '朱家明', 1, '+86 10-6007-7347', 1, '098129245979419501', '21F, 904 West Chang''an Avenue, Xicheng District, Beijing, China', '1995-07-20', 0, 0, 'kamingchu00', '2019-10-06', 'chukm', '2003-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS309537075376', 'Amber West', 0, '+1 838-054-9168', 0, '910043496743375590', '394 State Street Apartment 21, Albany, NY 12203, United States', '1990-03-06', 0, 0, 'wamber1109', '2004-09-30', 'west825', '2016-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS431750997645', '孟致远', 1, '+1 213-598-8793', 0, '320380283176387944', '744 Alameda Street Suite 5, Los Angeles, CA 90002, United States', '1986-06-29', 0, 0, 'zhiymeng', '2011-11-29', 'mzhiyuan', '2018-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS171130970563', '馬永發', 0, '+86 20-641-7860', 1, '099287152990833024', '中国广州市天河区天河路490号35楼', '1990-01-06', 0, 0, 'mawingfat1221', '2004-01-01', 'wingfat1', '2012-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS562918184086', '青木舞', 0, '+44 5548 716988', 1, '908286316948128238', 'Flat 3, 535 Sackville St, Manchester, M1 3BB, United Kingdom', '1990-03-09', 0, 0, 'maiao211', '2012-09-22', 'maiao', '2013-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS724382581208', '翁安娜', 0, '+86 138-2112-1443', 4, '492066464205421160', '中国北京市東城区東直門內大街90号8栋', '1994-08-07', 0, 0, 'yung128', '2005-07-03', 'onnay', '2001-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS002805327382', '菅原翼', 1, '+81 52-436-9822', 2, '009555188860777558', '日本なごやし守山区瀬古東二丁目171番10号28階', '1988-07-11', 0, 0, 'sugtsubasa', '2012-03-07', 'sugawaratsu40', '2021-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS230776145422', '藤秀文', 1, '+86 21-5757-0979', 0, '231877133731229912', '中国上海市浦东新区健祥路493号38楼', '1996-09-25', 0, 0, 'tangsm', '2009-10-13', 'tasm211', '2013-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS255782468644', 'Russell Griffin', 0, '+86 180-0488-0430', 2, '451101433064573919', 'No.26 building, 670 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1994-06-14', 0, 0, 'russellgriffin1976', '2017-01-07', 'russgri4', '2003-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS795263862776', 'Leslie Mitchell', 1, '+86 160-2274-5239', 4, '113531347450360417', 'Room 47, 267 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1992-03-22', 0, 0, 'leslmi1942', '2021-09-02', 'mitchellleslie1955', '2009-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS861732859283', '邹子韬', 0, '+81 66-007-0694', 1, '289133835739544437', '日本おおさかし近江堂一丁目7番10号23号室', '1997-01-08', 0, 0, 'zouzitao60', '2021-02-07', 'zizou', '2005-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS857684092050', '斉藤架純', 0, '+86 162-2120-4283', 1, '174365360557745442', '20F, 55 Middle Huaihai Road, Huangpu District, Shanghai, China', '1990-09-01', 0, 0, 'saika1979', '2015-05-11', 'saikasumi63', '2017-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS201663986868', '和田彩乃', 0, '+44 (116) 922 2341', 2, '628984910172168391', 'Block 44, 471 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1997-09-13', 0, 0, 'ayanowad', '2007-06-12', 'waayano5', '2005-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS854040616239', '酒井海斗', 0, '+1 838-194-5233', 1, '654435075261170573', '448 Broadway Apartment 32, Albany, NY 12207, United States', '1990-12-28', 0, 0, 'kaitos', '2014-10-17', 'sakaikaito', '2019-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS580391321847', '汤子异', 1, '+86 191-7203-3613', 4, '262101805415932993', '中国东莞坑美十五巷455号16楼', '1992-04-30', 0, 0, 'tangzi', '2016-11-23', 'zitang', '2007-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS388366833983', '中森陽菜', 0, '+81 52-063-8147', 1, '150979124150553781', '日本なごやし熱田区千年二丁目5番19号46階', '1985-11-01', 0, 0, 'hinanakamori3', '2002-03-04', 'hinakamori', '2004-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS376325327679', 'Kimberly Richardson', 0, '+81 66-981-8445', 4, '022247378214483831', '日本おおさかし西成区天神ノ森二丁目1番16号20階', '1989-12-02', 0, 0, 'rickimbe', '2019-08-18', 'krich', '2011-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS383707526938', '邱志遠', 1, '+1 718-353-7469', 3, '774863466169327249', '260 1st Ave Apartment 23, Brooklyn, NY 11220, United States', '1992-09-22', 0, 0, 'yau711', '2001-03-30', 'yauchiyuen57', '2019-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS586902021436', '前田悠人', 0, '+44 7933 451533', 4, '226988145016866159', 'Unit 35, Oxford Eco Centre, 519 New Street, Birmingham, B2 4DB, United Kingdom', '1989-02-23', 0, 0, 'ymaed', '2005-10-07', 'maeyuto', '2017-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS371131521293', '斎藤優奈', 0, '+86 175-1577-2769', 4, '024301085250822465', '中国上海市浦东新区橄榄路233号41栋', '1991-11-04', 0, 0, 'saitoyuna', '2008-03-16', 'ysaito', '2007-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS676303157310', '姜嘉伦', 0, '+44 7181 299416', 4, '563304835544703678', 'Flat 25, 183 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1997-03-10', 0, 0, 'jj7', '2020-05-12', 'jiangjialun', '2012-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS601461056390', '谭宇宁', 1, '+86 181-3385-2491', 3, '527892531822988654', '中国东莞东泰五街744号33室', '1989-02-03', 0, 0, 'yuningtan', '2009-09-06', 'yuningt', '2006-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS512195501983', '車發', 1, '+81 66-796-3950', 3, '315207262503597733', '日本おおさかし西成区天神ノ森二丁目1番10号3階', '1995-09-14', 0, 0, 'cfat3', '2011-05-09', 'chefat503', '2007-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS553801531699', 'Kathryn Rice', 1, '+1 330-382-9807', 3, '127958498073035773', '649 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1985-01-01', 0, 0, 'ricekathryn1023', '2007-03-31', 'kathrice83', '2002-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS886847423478', '小島陽太', 0, '+86 28-153-9667', 2, '348159525091521807', 'Room 23, CR Building, 756 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1993-10-04', 0, 0, 'kojima204', '2003-02-12', 'yotakojima', '2016-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS757568385455', '湯嘉欣', 0, '+44 (151) 047 8303', 4, '986767500403075333', 'Block 30, 460 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1990-02-13', 0, 0, 'kyton7', '2000-03-02', 'tongkaryan229', '2008-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS372913084492', '野村愛梨', 0, '+1 213-530-0765', 2, '388074860739804860', '556 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1990-07-30', 0, 0, 'nomuraair', '2011-11-25', 'airin', '2005-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS390376417641', '金子愛梨', 0, '+81 74-380-7818', 1, '106206788843735861', 'Rm. 40, 3-9-13 Gakuenminami, Nara, Japan', '1986-08-05', 0, 0, 'airka5', '2008-10-31', 'airikaneko1112', '2004-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS412128521658', '戚青雲', 0, '+86 146-3933-0344', 3, '777840372977495261', '44F, 505 Ganlan Rd, Pudong, Shanghai, China', '1992-01-17', 0, 0, 'cwchic', '2014-05-01', 'chicchingwan', '2005-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS972732511519', '竹内湊', 1, '+1 212-378-5804', 3, '876618450057832237', '361 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1994-01-05', 0, 0, 'tmina2', '2014-10-08', 'takeuchi217', '2018-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS808765150020', 'Miguel Marshall', 0, '+86 769-1921-6241', 1, '220274034810269621', '10F, 560 Shanhu Rd, Dongguan, China', '1995-10-25', 0, 0, 'migumarshall', '2013-10-12', 'miguelmars', '2011-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS515454638867', '蔣明詩', 0, '+81 3-0903-9902', 1, '783845656728273900', 'Rm. 11, 2-3-8 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-06-23', 0, 0, 'mschiang1', '2006-05-12', 'mingszech401', '2005-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS002045062632', 'Virginia Edwards', 1, '+86 165-1832-1168', 0, '475318061498772202', '中国中山京华商圈华夏街470号12室', '1989-09-28', 0, 0, 'virgiedwards', '2019-11-21', 'virginiaedwards05', '2001-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS504180669886', 'Rita Wilson', 1, '+86 10-599-1470', 4, '979471832006058627', '中国北京市朝阳区三里屯路455号2楼', '1993-12-06', 0, 0, 'wilsorit', '2018-08-10', 'wirita', '2020-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS114525486678', '雷天榮', 0, '+1 312-952-7261', 1, '502628891257433405', '501 Pedway Suite 23, Chicago, IL 60601, United States', '1991-03-22', 0, 0, 'twloui1107', '2020-03-04', 'twlo', '2009-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS235492618841', '郭秀英', 0, '+1 718-400-1187', 2, '363745874748414442', '992 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1991-03-08', 0, 0, 'xiuyingg101', '2019-01-31', 'gxiu1', '2019-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS663408717369', '前田蓮', 1, '+86 189-4659-4063', 3, '995397463405206450', '中国北京市延庆区028县道493号25楼', '1987-09-18', 0, 0, 'rmaeda508', '2008-12-29', 'maeren', '2016-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS699360813049', '元安娜', 0, '+86 755-9167-6350', 2, '632918002160462671', 'No.30 building, 973 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1988-04-13', 0, 0, 'onyu', '2021-09-25', 'onna720', '2016-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS460060170757', '陶思妤', 1, '+86 195-1991-5831', 1, '851656864245423161', 'Room 12, CR Building, 691 Lefeng 6th Rd, Zhongshan, China', '1990-01-08', 0, 0, 'syt', '2003-04-11', 'syt', '2003-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS815189788265', '梁震南', 1, '+1 213-852-2810', 2, '237988962606491631', '793 Figueroa Street Apartment 42, Los Angeles, CA 90037, United States', '1998-04-18', 0, 0, 'zhennan1941', '2015-05-28', 'zhennanliang95', '2005-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS536241953620', '田村大和', 0, '+81 70-9442-4810', 3, '016553920962475834', '33-kai, 1-6-9, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1993-04-14', 0, 0, 'yamatota', '2003-12-18', 'tamuray', '2006-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS231938610780', '毛子异', 1, '+86 153-1523-7679', 2, '244797474166879421', 'Room 2, 456 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1989-05-21', 0, 0, 'ziyi1968', '2004-05-07', 'mao7', '2008-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS916657981235', 'Patricia Salazar', 0, '+81 90-1237-1860', 3, '982290858208104400', 'Rm. 7, 3-9-18 Gakuenminami, Nara, Japan', '1994-06-20', 0, 0, 'patricia1', '2005-07-17', 'patrsala', '2012-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS464045268402', '薛秀文', 0, '+86 760-3769-4785', 1, '405826353705257756', 'No.34 building, 560 Lefeng 6th Rd, Zhongshan, China', '1997-10-05', 0, 0, 'sit3', '2010-03-17', 'ssm', '2019-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS058608771151', 'Helen Hawkins', 1, '+86 21-7180-4799', 1, '942906501283710864', 'Room 8, 896 Hongqiao Rd., Xu Hui District, Shanghai, China', '1987-09-01', 0, 0, 'hawkih', '2008-09-18', 'helenhaw', '2017-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS835093309781', '陶心穎', 1, '+86 192-0319-4498', 0, '227217450557236512', 'No.15 building, 875 Huanqu South Street 2nd Alley, Dongguan, China', '1994-02-15', 0, 0, 'taosw', '2007-01-12', 'taosw2', '2005-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS839844060382', '段杰宏', 0, '+86 186-1449-6152', 1, '011998994735884904', 'Room 1, CR Building, 137 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1993-11-13', 0, 0, 'jied', '2014-09-17', 'duanji', '2012-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS014784221101', '汪岚', 0, '+86 10-0296-2193', 0, '248929497416187544', '中国北京市朝阳区三里屯路144号23室', '1992-10-01', 0, 0, 'lawan85', '2016-09-17', 'wangl', '2001-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS058812640718', '高世榮', 0, '+86 760-5759-9135', 2, '156770309318560628', '中国中山京华商圈华夏街690号20号楼', '1996-05-31', 0, 0, 'kaosw1966', '2018-07-21', 'saiwingkao630', '2003-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS480056129173', 'Harry Munoz', 1, '+44 5844 901791', 1, '403656830709736771', 'Unit 16, Oxford Eco Centre, 525 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1986-12-08', 0, 0, 'mha', '2017-04-12', 'harry915', '2018-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS942059867839', 'Clifford Martinez', 0, '+81 11-890-0073', 3, '710963339013173376', '33F, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1993-09-10', 0, 0, 'martinezc', '2011-02-19', 'mclifford', '2007-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS782724017306', '斉藤陸', 0, '+44 7380 355046', 3, '616133965030487765', 'Block 2, 69 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1989-06-17', 0, 0, 'sr1952', '2006-04-30', 'saito1015', '2013-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS074517658244', '尹慧嫻', 1, '+81 70-1413-2186', 1, '282600229447836280', 'Rm. 9, 5-4-19 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1990-05-15', 0, 0, 'whyin201', '2015-05-22', 'waihanyin', '2004-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS958224980507', '森美羽', 1, '+86 170-3951-1090', 4, '432073344527609503', '中国上海市闵行区宾川路180号华润大厦1室', '1990-10-10', 0, 0, 'morimiu628', '2002-10-12', 'miu112', '2003-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS921394718193', '段晓明', 0, '+81 90-1940-6046', 2, '764913009233157642', '36F, 4-9-12 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-05-07', 0, 0, 'xiaoming1988', '2014-08-21', 'xiaod11', '2011-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS191614822164', '島田陽菜', 1, '+86 199-4006-4041', 1, '559059975780689093', 'No.17 building, 947 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1993-06-20', 0, 0, 'shimada3', '2002-11-25', 'shimhina16', '2011-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS086787536952', '王安娜', 1, '+86 21-374-0151', 3, '283675773194553258', '中国上海市黄浦区淮海中路272号42楼', '1993-03-05', 0, 0, 'onwong', '2004-10-30', 'onwong313', '2021-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS468106189095', '前田結翔', 0, '+86 180-1984-9290', 3, '185475444761189120', '中国北京市海淀区清河中街68号424号6楼', '1998-04-28', 0, 0, 'maedayuito', '2008-02-18', 'maeda7', '2019-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS342720147780', 'Josephine Nguyen', 1, '+81 52-376-0266', 1, '280018461908559210', '日本なごやし瑞穂区河岸町四丁目20番5号20階', '1991-10-06', 0, 0, 'josephine8', '2003-10-24', 'njosephine9', '2005-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS917755890181', '陶震南', 1, '+81 90-1201-0832', 3, '767269425741793309', '5F, 5-2-18 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1988-05-23', 0, 0, 'zhenta', '2018-09-09', 'ztao927', '2008-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS766295857204', '姚發', 1, '+1 838-565-9562', 2, '765631874311682726', '341 Central Avenue Apartment 29, Albany, NY 12206, United States', '1991-12-15', 0, 0, 'yefat', '2004-02-17', 'faty', '2001-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS536390848471', '酒井百恵', 0, '+1 213-133-9880', 1, '955826071448154349', '180 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1998-04-24', 0, 0, 'sakamom', '2013-07-04', 'sakamomoe', '2007-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS053651065682', '吕云熙', 1, '+81 74-155-6402', 3, '492698949713249938', '5F, 18 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-10-11', 0, 0, 'luyunxi', '2020-02-20', 'ylu06', '2017-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS981241318088', '廖國權', 1, '+44 5054 086766', 2, '781889685198016816', 'Block 28, 956 Regent Street, London, W1B 2LX, United Kingdom', '1998-08-05', 0, 0, 'kkliao1963', '2012-06-06', 'kkliao', '2010-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS652506188262', 'Herbert Robertson', 1, '+86 20-158-7508', 4, '521157907113469740', 'No.7 building, 600 Tianhe Road, Tianhe District, Guangzhou, China', '1997-11-04', 0, 0, 'robertsonhe', '2005-03-11', 'herbertrobe', '2000-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS131416466362', 'Evelyn Herrera', 0, '+44 7297 226164', 4, '857215120964326033', 'No.12 Main building, 942 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1987-06-22', 0, 0, 'herreraevelyn225', '2018-12-29', 'evelyherre9', '2008-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS652304138380', '李睿', 0, '+86 190-5233-1562', 2, '538634436183754325', 'Room 29, CR Building, 568 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1992-12-23', 0, 0, 'lir', '2008-05-23', 'rui510', '2005-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS190492707666', '和田陽太', 1, '+1 838-983-0227', 2, '795962250344493869', '446 Broadway 3rd Floor, Albany, NY 12207, United States', '1990-04-14', 0, 0, 'yotawada2013', '2014-08-17', 'waday', '2019-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS983929058666', '中山大和', 1, '+81 90-3161-9925', 1, '734178750150661248', '日本おおさかし西成区出城一丁目1番3号31号室', '1993-03-22', 0, 0, 'ynakayama97', '2004-07-01', 'yamatonakayama', '2012-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS676356723665', 'Terry Myers', 1, '+81 66-938-7923', 2, '315009450707076214', '日本おおさかし西成区天神ノ森二丁目1番2号48階', '1997-12-05', 0, 0, 'myers69', '2002-06-02', 'terry3', '2007-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS116861592052', '市川健太', 0, '+86 143-0751-4555', 2, '646421160421794144', 'No.34 building, 446 Shanhu Rd, Dongguan, China', '1986-12-03', 0, 0, 'ichikawak', '2012-01-31', 'kenta10', '2001-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS236820514026', '樂梓軒', 0, '+86 28-2871-4663', 0, '044277716279695655', 'No.36 building, 635 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1998-01-24', 0, 0, 'thlo', '2007-03-04', 'thlok', '2004-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS436949020003', '成家文', 1, '+81 80-6730-3012', 4, '397394655428570154', '30-kai, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1994-04-25', 0, 0, 'kmshing', '2021-02-12', 'kamas', '2000-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS231590937661', 'Melvin Torres', 0, '+44 (116) 855 9764', 1, '597986749348522753', 'Unit 2, Oxford Eco Centre, 878 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1997-01-08', 0, 0, 'metor', '2006-07-06', 'melvin1228', '2000-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS912990568104', '田明', 1, '+1 718-646-6198', 3, '511933693913636372', '539 Bergen St Apartment 30, Brooklyn, NY 11217, United States', '1985-01-29', 0, 0, 'ming719', '2005-09-15', 'tinm802', '2014-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS683269588573', '韓青雲', 0, '+81 80-3812-6018', 1, '373493535423732316', '日本おおさかし平野区加美東四丁目9番7号43号室', '1995-07-01', 0, 0, 'chingwan721', '2012-10-19', 'cwhan8', '2009-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS955711632980', 'Raymond Russell', 1, '+81 74-557-0605', 2, '536339701735267051', 'Rm. 3, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1999-01-29', 0, 0, 'russeraymond', '2006-06-08', 'rayruss', '2009-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS607485626947', '杨岚', 0, '+44 (1865) 44 1645', 2, '624589138147355815', 'Unit 37, Oxford Eco Centre, 72 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1998-11-28', 0, 0, 'yanglan827', '2005-09-22', 'lanyang', '2018-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS185228719091', '戴宇宁', 1, '+44 7038 980249', 0, '656839627480665652', 'No.42 Main building, 801 Maddox Street, London, W1S 1PU, United Kingdom', '1996-09-12', 0, 0, 'dyuning710', '2003-05-12', 'dai1978', '2021-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS537583030303', 'Raymond Thompson', 1, '+86 20-200-8742', 0, '936003810642680764', 'No.33 building, 562 Tianhe Road, Tianhe District, Guangzhou, China', '1986-12-21', 0, 0, 'rathompson', '2012-03-02', 'raymt', '2006-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS173824377161', '黎晓明', 0, '+44 (161) 866 5738', 2, '510919995558445186', 'Flat 12, 232 Mosley St, Manchester, M2 3AQ, United Kingdom', '1992-06-06', 0, 0, 'lixiaoming1015', '2011-05-06', 'xiaomingli', '2008-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS687856501089', '何安琪', 0, '+81 80-7324-6329', 1, '801122919597594384', '21-kai, 2-5-3 Chitose, Atsuta Ward, Nagoya, Japan', '1994-02-14', 0, 0, 'ahe', '2002-11-30', 'heanqi', '2008-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS652878407281', '野村大地', 0, '+86 137-3134-9802', 1, '177172521103179181', '中国北京市东城区东单王府井东街280号47室', '1995-12-10', 0, 0, 'dan', '2020-09-13', 'daichinomura', '2021-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS669919375922', '杜杰宏', 0, '+86 181-5371-2089', 2, '828798137463231210', '中国中山京华商圈华夏街680号47号楼', '1998-04-02', 0, 0, 'duji', '2017-04-02', 'dujiehong', '2009-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS773416761397', '吕嘉伦', 0, '+44 5246 315045', 3, '401135673964876975', 'Block 39, 325 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1994-01-18', 0, 0, 'luj', '2000-12-10', 'lj80', '2008-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS488784049403', '柴田大地', 0, '+86 10-2048-7395', 2, '383178946880639319', '中国北京市東城区東直門內大街573号21室', '1989-01-13', 0, 0, 'daichishi', '2018-11-30', 'sdaichi94', '2002-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS407748172002', '苗小慧', 1, '+86 755-272-6586', 1, '046637994871582918', '26F, 351 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1990-02-24', 0, 0, 'miu3', '2002-10-12', 'misiuwai', '2009-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS664729145587', '余宇宁', 1, '+81 80-4043-6726', 1, '057924563592488205', '日本ならし学園南三丁目9番8号32階', '1991-01-25', 0, 0, 'yuningyu', '2021-05-21', 'yuy', '2003-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS723731534533', 'Stanley Robertson', 1, '+81 74-697-1337', 2, '057698343426974604', '日本ならし西大寺赤田町一丁目7番19号6階', '1988-05-16', 0, 0, 'robertson8', '2014-04-17', 'stanleyro923', '2013-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS916196066146', 'Barbara Stevens', 0, '+81 74-283-1554', 0, '207615795348963121', 'Rm. 35, 15 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-11-21', 0, 0, 'barbara6', '2000-09-24', 'stevensbarbara', '2009-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS357129132559', '白志遠', 0, '+44 (20) 0211 9905', 4, '869910647779466186', 'Unit 21, Oxford Eco Centre, 209 Pollen Street, London, W1S 1NG, United Kingdom', '1992-08-15', 0, 0, 'pak607', '2013-12-28', 'pakchiy925', '2014-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS935125687834', '木村葉月', 1, '+81 11-326-7153', 3, '767642969398503076', '42F, 13-3-20 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1995-06-12', 0, 0, 'kimura4', '2011-08-20', 'kimuraha', '2005-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS927871398515', '中森愛梨', 0, '+81 80-3082-2306', 3, '380603573960122944', '5F, 11 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1991-12-02', 0, 0, 'airin228', '2007-07-24', 'nakairi', '2020-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS136538228352', '方家強', 0, '+86 159-9776-2160', 2, '711097963888453753', 'Room 11, CR Building, 208 Xiaoping E Rd, Baiyun , Guangzhou, China', '1998-10-24', 0, 0, 'kakeungf7', '2004-03-07', 'kakeungfo', '2020-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS009612662465', '河野桜', 1, '+44 (116) 518 2941', 2, '567935595123541463', 'Unit 1, Oxford Eco Centre, 50 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1986-09-03', 0, 0, 'konosakura', '2020-03-19', 'sakura4', '2008-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS998558483590', '龚璐', 0, '+44 5844 551802', 3, '735444200276663446', 'No.2 Main building, 635 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1993-10-03', 0, 0, 'lugong', '2017-11-09', 'glu', '2016-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS412719605617', 'Judy Gibson', 1, '+44 7323 564685', 1, '889820283018042006', 'Block 4, 226 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1986-09-04', 0, 0, 'judygibs908', '2017-03-01', 'judygib', '2020-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS646837059442', '何致远', 0, '+1 614-920-9545', 2, '622926631135288271', '392 East Cooke Road Suite 48, Columbus, GA 43214, United States', '1987-10-16', 0, 0, 'he96', '2010-08-09', 'zhiyuh', '2006-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS588520851710', '孙安琪', 1, '+1 718-282-6353', 2, '117677405781599162', '949 Bergen St Suite 39, Brooklyn, NY 11217, United States', '1987-07-03', 0, 0, 'anqi1964', '2011-02-15', 'suanqi112', '2019-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS712234989234', '松井玲奈', 0, '+81 80-1875-2846', 4, '436080652735331387', 'Rm. 12, 2-5-19 Chitose, Atsuta Ward, Nagoya, Japan', '1992-09-04', 0, 0, 'rmatsu5', '2017-12-06', 'matsurena', '2015-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS690547299596', '武宇宁', 1, '+81 70-6579-4868', 1, '898261182770930099', '日本札幌厚別区上野幌一条二丁目1番14号48号室', '1996-11-21', 0, 0, 'wu127', '2016-12-22', 'yuning1981', '2012-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS678192108357', '湯國權', 1, '+86 175-1250-5872', 4, '847875655244560954', '中国深圳福田区景田东一街37号15室', '1995-08-21', 0, 0, 'tong85', '2008-03-09', 'tonkk1009', '2021-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS078312106932', '孫學友', 0, '+86 28-7792-0057', 4, '931229126804835082', '中国成都市成华区双庆路933号7栋', '1986-08-17', 0, 0, 'hsuan83', '2014-10-23', 'hsuanhy4', '2012-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS309260205021', '福田詩乃', 1, '+81 70-0267-1325', 2, '946704463229551591', '日本ならし西大寺赤田町一丁目7番6号35階', '1987-05-03', 0, 0, 'fukshin', '2013-10-31', 'fuksh', '2009-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS136846715844', '小野拓哉', 1, '+81 80-2387-4898', 0, '392330917548388049', '日本おおさかし近江堂一丁目7番15号42階', '1987-05-08', 0, 0, 'takuya4', '2010-12-14', 'takuyao', '2004-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS930517818957', 'Katherine Carter', 1, '+1 212-558-7940', 1, '073624819276968521', '131 West Houston Street Suite 4, New York, NY 10014, United States', '1992-03-18', 0, 0, 'katherine1954', '2000-07-05', 'carter8', '2001-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS808516642192', '許力申', 1, '+86 760-205-0164', 1, '616823114334512526', '中国中山京华商圈华夏街111号3号楼', '1997-03-06', 0, 0, 'lshu', '2011-11-08', 'hui10', '2006-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS375009520853', '陳淑怡', 0, '+81 3-6824-1663', 2, '352435356513397478', '47-kai, 1-6-1, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1988-08-24', 0, 0, 'sycha1116', '2006-08-14', 'csukyee', '2021-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS139030583864', 'Jamie Fox', 0, '+81 11-842-8423', 4, '269407283508848373', '日本札幌厚別区上野幌一条二丁目1番18号38号室', '1998-02-11', 0, 0, 'fox828', '2020-10-26', 'jamie702', '2015-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS352442419956', '鄺詠詩', 0, '+86 185-5076-7615', 4, '227716746729824613', 'No.6 building, 50 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1991-01-19', 0, 0, 'wskwong', '2021-05-04', 'kwongws811', '2019-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS375588760015', 'Ethel Wright', 1, '+44 7665 224117', 1, '484853566000771374', 'Flat 46, 84 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1995-01-16', 0, 0, 'wriethel', '2014-03-17', 'ethew', '2002-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS269394424127', '张致远', 0, '+44 7403 715806', 2, '485156521195367982', 'Block 12, 459 Park End St, Oxford, OX1 1JD, United Kingdom', '1996-09-21', 0, 0, 'zhz', '2007-06-23', 'zzhang1212', '2010-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS107591507251', 'Willie Henderson', 1, '+81 74-200-3535', 0, '942083177963381624', '日本ならし大和郡山市本庄町一丁目1番13号12階', '1989-02-05', 0, 0, 'hendew', '2002-03-29', 'willieh9', '2019-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS415193782858', '高慧儀', 0, '+81 52-864-6847', 3, '319752078397640721', '日本なごやし北区清水三丁目19番11号25号室', '1996-11-04', 0, 0, 'kao8', '2002-08-16', 'wykao', '2007-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS094216583705', 'Diane Nichols', 1, '+81 66-486-1238', 1, '803209476734065277', '日本おおさかし近江堂一丁目7番8号36階', '1997-03-21', 0, 0, 'dianichols', '2020-06-08', 'nd86', '2008-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS770473065073', '向發', 1, '+44 7674 248716', 4, '582131942810968179', 'No.4 Main building, 708 Hanover St, Liverpool, L1 4AF, United Kingdom', '1996-08-09', 0, 0, 'faheung', '2018-09-17', 'fath', '2017-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS463339087727', '方子异', 1, '+86 755-2672-1125', 4, '650146476286748606', '中国深圳龙岗区学园一巷895号11号楼', '1990-10-04', 0, 0, 'ziyif65', '2000-12-24', 'zifang1', '2007-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS844486510440', '森美咲', 0, '+81 70-8106-0863', 4, '846379068721824628', '日本札幌厚別区上野幌一条二丁目1番8号31号室', '1996-03-13', 0, 0, 'morimisaki', '2015-04-08', 'mormisa', '2009-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS835305913677', 'Jason Olson', 0, '+1 838-707-6525', 1, '506854795944224566', '290 Broadway Apartment 29, Albany, NY 12207, United States', '1989-08-11', 0, 0, 'olsonjason4', '2010-01-07', 'jolson', '2021-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS852435510896', '雷岚', 1, '+44 (116) 886 5547', 2, '952072172621013175', 'Block 35, 841 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1998-04-18', 0, 0, 'lalei', '2021-02-25', 'lanlei10', '2020-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS407866285442', '中島葵', 1, '+86 150-5384-0485', 3, '625287019456446240', 'Room 12, 617 028 County Rd, Yanqing District, Beijing, China', '1996-02-24', 0, 0, 'aoinakajima', '2019-02-21', 'nakajima126', '2004-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS519098991065', 'Clifford Kelly', 1, '+86 21-985-6181', 2, '659364327761428840', 'No.29 building, 956 Hongqiao Rd., Xu Hui District, Shanghai, China', '1992-06-25', 0, 0, 'cliffordkelly1983', '2019-07-03', 'clifford620', '2019-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS565429183019', '酒井蓮', 1, '+1 213-161-7741', 3, '142626982130130849', '371 S Broadway Apartment 21, Los Angeles, CA 90015, United States', '1993-11-24', 0, 0, 'rens', '2012-08-01', 'sakai810', '2016-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS066467885820', '桜井桜', 1, '+86 131-3110-7988', 0, '054939450304131542', '中国广州市海珠区江南西路855号46室', '1990-03-18', 0, 0, 'sakura10', '2010-09-11', 'saksakura', '2013-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS026582595776', '岡田陸', 1, '+81 11-441-5614', 3, '208304603472485694', '日本札幌中央区宮の森四条六丁目1番15号24階', '1989-05-19', 0, 0, 'riku2005', '2016-11-13', 'oriku1961', '2019-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS214182150222', 'Kim Washington', 0, '+44 (151) 270 7258', 3, '374179889968977085', 'Block 44, 800 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1992-01-16', 0, 0, 'kim10', '2008-06-20', 'kwashington', '2003-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS540251715555', 'Albert Hill', 0, '+81 74-980-9087', 0, '032448581287693922', '日本ならし西大寺赤田町一丁目7番6号10号室', '1998-10-10', 0, 0, 'hill45', '2003-12-25', 'hill1987', '2006-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS597424227955', 'Esther Lee', 1, '+86 175-5593-0128', 3, '622317126423278086', '中国广州市越秀区中山二路109号30栋', '1994-08-11', 0, 0, 'le1948', '2009-09-14', 'leeesthe', '2017-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS795287572581', 'Pauline Simpson', 0, '+81 70-0552-0333', 4, '454127985419585629', 'Rm. 6, 6-1-9, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1998-08-21', 0, 0, 'simpson10', '2010-01-22', 'sipauline', '2006-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS241872081140', '蔡麗欣', 1, '+86 130-6755-8293', 3, '703893457604470422', 'Room 29, 168 Shanhu Rd, Dongguan, China', '1985-11-22', 0, 0, 'choilaiyan', '2012-11-26', 'choilaiyan1985', '2003-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS642652423335', 'Linda Sanchez', 0, '+81 80-7491-3846', 0, '108048713650111997', 'Rm. 41, 6-1-3, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-07-19', 0, 0, 'lindas61', '2000-10-30', 'lindas2013', '2009-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS249934744924', '狄家文', 1, '+81 66-247-4334', 2, '105178909974709127', 'Rm. 20, 1-7-12 Omido, Higashiosaka, Osaka, Japan', '1989-01-23', 0, 0, 'tikm1940', '2013-12-01', 'tkaman101', '2003-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS449648028893', '文德華', 1, '+44 (161) 908 1347', 4, '860698133572998090', 'Block 6, 496 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1990-12-06', 0, 0, 'matakwah', '2010-11-15', 'man3', '2017-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS714120886939', '江發', 1, '+81 11-696-2203', 3, '134290568424604399', '日本札幌厚別区上野幌一条二丁目1番7号5階', '1988-02-16', 0, 0, 'konfat', '2005-04-27', 'kongfat', '2007-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS126126052871', '馮梓晴', 1, '+44 (1223) 99 6084', 4, '882035545639174044', 'Unit 10, Oxford Eco Centre, 263 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1988-08-29', 0, 0, 'tszchingfung', '2000-03-10', 'tszchfung', '2010-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS102451606882', 'Marvin Gutierrez', 0, '+81 66-813-5015', 1, '319811049377754171', '日本おおさかし西成区天神ノ森二丁目1番16号49階', '1993-02-25', 0, 0, 'mgutierrez50', '2013-03-20', 'gumar', '2010-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS323833951676', 'Monica Burns', 1, '+81 52-422-5885', 0, '805237174168390392', '日本なごやし瑞穂区河岸町四丁目20番12号41階', '1989-04-15', 0, 0, 'burnsmoni1969', '2018-09-25', 'mb217', '2016-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS767895689219', '韩子异', 1, '+81 11-846-3307', 3, '912671771702337983', '日本札幌白石区菊水三条五丁目2番14号46階', '1989-12-31', 0, 0, 'hanzi', '2006-01-12', 'hanziyi3', '2004-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS248681576698', 'Amy Reyes', 1, '+86 177-2266-0018', 1, '917683545362608387', '中国深圳罗湖区清水河一路819号28号楼', '1991-06-09', 0, 0, 'reyeamy1116', '2002-11-07', 'amreyes8', '2010-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS014622449260', '廖秀文', 0, '+86 194-7846-2910', 4, '766054673473642234', '32F, 952 Shanhu Rd, Dongguan, China', '1994-01-18', 0, 0, 'liasm52', '2014-05-01', 'saumanli', '2001-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS205970012200', '袁潤發', 1, '+81 70-7328-1208', 2, '190234400544434284', '30-kai, 4-9-8 Kamihigashi, Hirano Ward, Osaka, Japan', '1992-02-10', 0, 0, 'yfyuen7', '2011-03-23', 'yunfaty', '2014-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS159689290582', '魏杰宏', 1, '+86 10-129-9503', 3, '937603757867013113', '中国北京市朝阳区三里屯路214号15室', '1995-08-02', 0, 0, 'jwei', '2016-08-28', 'jiehwei4', '2021-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS728348914479', '斎藤架純', 1, '+44 (116) 360 1360', 4, '082352645929024591', 'Flat 31, 430 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1997-09-07', 0, 0, 'saitok', '2018-06-28', 'saito1959', '2015-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS147283744469', '谷裕玲', 0, '+81 70-1367-5494', 4, '162313306064068969', '日本東京港区東新橋一丁目5番19号27階', '1993-12-04', 0, 0, 'yulingkoo7', '2004-01-21', 'yulikoo6', '2009-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS157597952634', '吉田海斗', 1, '+44 7304 692241', 1, '512890849509615750', 'Unit 8, Oxford Eco Centre, 581 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1995-04-30', 0, 0, 'kay', '2017-02-19', 'kaitoyoshida', '2003-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS449449642772', '毛家玲', 1, '+86 769-2067-3610', 3, '935831986330958002', '中国东莞珊瑚路501号50楼', '1997-10-17', 0, 0, 'klmo1219', '2003-04-21', 'mkl', '2005-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS734008708139', '姜詠詩', 0, '+44 7715 649167', 3, '526732197072015124', 'Flat 4, 164 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1998-06-22', 0, 0, 'wingsze99', '2021-07-19', 'wsc4', '2001-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS041015810603', '横山葉月', 0, '+44 7315 775146', 4, '756822897625979947', 'Flat 22, 698 Portland St, Manchester, M1 3LA, United Kingdom', '1998-09-22', 0, 0, 'yokoyhazuki', '2009-01-23', 'yhaz', '2011-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS346897775825', '河野美羽', 1, '+1 614-557-8063', 1, '913730577847392784', '94 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1997-10-11', 0, 0, 'miukono', '2003-11-15', 'miukono904', '2010-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS320736138767', '李嘉伦', 1, '+81 80-0734-7032', 3, '073208528527080114', '日本おおさかし西成区天神ノ森二丁目1番12号16階', '1985-04-30', 0, 0, 'lijialu1', '2005-08-04', 'jialli413', '2012-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS400583074415', 'Frederick Hernandez', 1, '+86 149-5629-4590', 1, '217322001311563377', '中国深圳罗湖区田贝一路583号24楼', '1995-07-04', 0, 0, 'frederick930', '2009-01-04', 'frederick1015', '2001-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS367175858981', '福田光', 0, '+86 760-827-1757', 1, '915929401299329814', '中国中山紫马岭商圈中山五路586号19楼', '1986-09-30', 0, 0, 'hikarfuku', '2021-04-17', 'hikarufukuda', '2005-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS434941703137', '關淑怡', 0, '+44 5143 649781', 0, '772572946014952944', 'No.25 Main building, 573 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1987-02-07', 0, 0, 'sykwan3', '2009-08-14', 'sukyeekw', '2017-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS571771906473', '長谷川美咲', 0, '+86 158-3553-7187', 2, '403579502236886550', 'Room 41, CR Building, 181 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1989-07-17', 0, 0, 'hasegawa7', '2010-10-07', 'mish1', '2008-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS272268998827', '石田葵', 0, '+86 152-8499-3377', 2, '834467024216000963', '中国广州市海珠区江南西路441号21楼', '1990-12-24', 0, 0, 'aoiishid', '2004-11-27', 'aoi82', '2011-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS106514956619', '江發', 1, '+1 312-279-4845', 2, '729772566590786352', '989 Pedway Apt 50, Chicago, IL 60601, United States', '1990-01-23', 0, 0, 'kong1953', '2014-06-21', 'fatkong1217', '2002-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS028348779836', '岩崎愛梨', 1, '+86 20-9302-7534', 4, '674653593770486855', '中国广州市越秀区中山二路744号5栋', '1995-08-07', 0, 0, 'iwasakiai', '2003-04-29', 'iairi', '2000-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS211842060324', 'Gerald West', 0, '+86 20-660-9224', 3, '655849421995569654', '中国广州市越秀区中山二路907号6栋', '1990-11-08', 0, 0, 'geraldwest', '2009-02-10', 'westg1995', '2003-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS716287338908', '鄧秀文', 0, '+44 7794 914268', 2, '704883836161000814', 'Block 13, 720 Maddox Street, London, W1S 1PU, United Kingdom', '1993-03-23', 0, 0, 'saumantan', '2008-05-03', 'saumantang', '2010-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS276954173864', 'Nicole Watson', 0, '+81 74-265-1589', 2, '160626020584732503', '日本ならし学園南三丁目9番19号21号室', '1998-02-06', 0, 0, 'nicolewatson8', '2003-10-24', 'nicole727', '2009-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS247148807544', 'Christina Long', 0, '+1 312-601-5828', 0, '146844085508826721', '752 North Michigan Ave Suite 17, Chicago, IL 60611, United States', '1996-11-12', 0, 0, 'chrilong', '2001-08-26', 'longchri04', '2004-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS700387651945', '常嘉伦', 1, '+86 148-1070-7356', 2, '540840525298550806', '6F, 274 East Wangfujing Street, Dongcheng District , Beijing, China', '1997-09-24', 0, 0, 'changjialun', '2004-08-04', 'chajialun', '2016-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS589561805932', 'Lisa Crawford', 0, '+86 174-8914-3308', 0, '992378088248353097', '中国上海市浦东新区橄榄路302号37楼', '1991-07-13', 0, 0, 'lc5', '2012-05-26', 'lisa618', '2015-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS377428372872', '菅原凛', 1, '+1 614-461-0294', 1, '541312314111454147', '228 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1991-07-18', 0, 0, 'sugawarari816', '2015-08-10', 'sur311', '2010-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS285283474839', 'Adam Collins', 1, '+81 90-5755-1100', 1, '869243827346044784', '日本東京品川区東五反田五丁目2番17号41階', '1993-09-22', 0, 0, 'cadam8', '2006-12-29', 'coladam', '2014-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS089506521920', '崔嘉欣', 0, '+81 80-2983-1240', 0, '953798696377461512', '日本ならし大和郡山市本庄町一丁目1番11号1階', '1992-06-22', 0, 0, 'choi926', '2010-04-23', 'choi03', '2016-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS975585675913', '高木絢斗', 1, '+1 213-871-4422', 3, '284637431331106594', '143 Alameda Street Apartment 6, Los Angeles, CA 90002, United States', '1998-07-09', 0, 0, 'takagiayato1972', '2020-06-04', 'tay', '2003-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS100229729129', '安藤凛', 1, '+86 152-7999-2698', 3, '743032426610441892', '中国北京市朝阳区三里屯路495号50栋', '1997-07-27', 0, 0, 'ando6', '2003-02-16', 'rina', '2003-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS775613411169', '謝志明', 1, '+81 80-1571-3149', 2, '667457914919880072', 'Rm. 48, 1-7-9 Saidaiji Akodacho, Nara, Japan', '1994-04-09', 0, 0, 'chiming3', '2000-10-09', 'tscm9', '2000-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS123629177880', '杜明', 0, '+44 (1865) 45 6118', 2, '202926394247215252', 'No.23 Main building, 147 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1988-08-21', 0, 0, 'ming56', '2021-01-25', 'mingto', '2000-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS589592828719', '小川大地', 1, '+1 330-264-4351', 1, '949347170951386393', '768 West Market Street Apartment 41, Akron, OH 44333, United States', '1992-01-01', 0, 0, 'ogawadaichi', '2000-09-06', 'oda1', '2005-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS367773894051', 'Debbie Wood', 0, '+44 7861 796278', 3, '763976018650205949', 'No.41 Main building, 750 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1986-06-20', 0, 0, 'woodebbie', '2006-07-06', 'debbie7', '2004-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS980058511595', 'Keith Flores', 0, '+86 185-6625-6143', 3, '822673880314941805', 'Room 43, CR Building, 904 028 County Rd, Yanqing District, Beijing, China', '1996-06-14', 0, 0, 'florekeith711', '2016-03-21', 'kflores', '2020-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS599861313735', '杜惠敏', 1, '+44 5927 330245', 2, '475440083269628297', 'Unit 33, Oxford Eco Centre, 521 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1996-07-15', 0, 0, 'wmto', '2019-10-17', 'towm', '2007-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS576500804649', '金致远', 0, '+1 330-604-8566', 3, '716684943756970911', '809 Ridgewood Road Apt 12, Akron, OH 44321, United States', '1992-08-06', 0, 0, 'zj1991', '2014-11-23', 'zhiyuanjin', '2015-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS533900257417', '馮家強', 0, '+1 330-089-1711', 3, '293347148542473148', '357 Riverview Road Apt 6, Akron, OH 44313, United States', '1986-09-18', 0, 0, 'fung2', '2018-04-03', 'kakeung3', '2020-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS970295413445', '方睿', 1, '+1 330-099-5214', 0, '546516904148163385', '809 Collier Road Apt 45, Akron, OH 44320, United States', '1991-10-05', 0, 0, 'rfan10', '2005-01-21', 'fang1985', '2009-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS152963942860', 'Ronald Chavez', 1, '+86 21-3305-3725', 1, '463852893980335087', 'Room 44, 924 Hongqiao Rd., Xu Hui District, Shanghai, China', '1986-04-15', 0, 0, 'cron', '2015-10-07', 'ronald5', '2015-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS246666213008', '横山架純', 1, '+81 3-6303-1177', 3, '048615173327314049', '日本東京千代田区丸の内一丁目6番20号41階', '1991-09-06', 0, 0, 'ykas', '2009-09-28', 'yokkas79', '2010-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS110624129595', 'Kathleen Hill', 0, '+81 70-7060-4589', 0, '241408625743744283', '日本なごやし瑞穂区河岸町四丁目20番10号16階', '1988-10-10', 0, 0, 'hilk17', '2021-09-01', 'hkathleen', '2018-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS556808124291', '黄秀英', 1, '+86 147-6466-6115', 2, '112706974896978157', '37F, 524 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1988-10-08', 0, 0, 'xiuying6', '2007-09-12', 'xiuh', '2005-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS420479517667', '新井明菜', 0, '+81 80-2840-8973', 3, '183935403944950995', '1-kai, 6-1-6, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1996-07-24', 0, 0, 'akinar', '2011-11-24', 'aakina', '2021-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS095901434702', '杜嘉伦', 1, '+81 52-509-8546', 3, '442752883445998623', '23F, 8 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1994-08-23', 0, 0, 'dujialun1', '2004-04-27', 'jialud', '2004-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS183873690923', '卢杰宏', 0, '+1 718-108-1753', 2, '967475867638004108', '199 Nostrand Ave Apt 1, Brooklyn, NY 11216, United States', '1989-04-28', 0, 0, 'jielu', '2012-08-29', 'ljiehong', '2000-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS170865388452', '方宇宁', 1, '+81 80-9661-8058', 1, '716231417153819084', 'Rm. 6, 1-7-10 Saidaiji Akodacho, Nara, Japan', '1990-03-06', 0, 0, 'yufang56', '2006-06-12', 'yuningfan7', '2017-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS800819353996', 'Joshua Mason', 1, '+86 760-7693-5672', 2, '218877332300154567', 'No.20 building, 554 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1986-01-07', 0, 0, 'joshuamason', '2017-02-23', 'mason9', '2021-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS194804609135', '郝嘉伦', 0, '+81 90-4106-9088', 3, '773115129078587424', '46-kai, 1-7-2 Saidaiji Akodacho, Nara, Japan', '1997-03-09', 0, 0, 'jiha89', '2011-08-20', 'jihao1976', '2008-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS242779922778', 'Virginia Hughes', 1, '+86 145-3407-6496', 4, '236433708422675111', 'No.9 building, 135 028 County Rd, Yanqing District, Beijing, China', '1991-05-04', 0, 0, 'hvirginia', '2016-08-19', 'virginiahughe', '2003-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS272958684349', '向世榮', 0, '+86 142-9170-1120', 3, '742575083874294038', '27F, 387 Binchuan Rd, Minhang District, Shanghai, China', '1995-06-09', 0, 0, 'saiwingh', '2007-06-01', 'saiwing90', '2010-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS435688219804', '任安琪', 0, '+81 3-0278-5237', 1, '607494998511210343', '23F, 5-2-1 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1994-10-09', 0, 0, 'anqir', '2016-09-13', 'aren', '2019-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS972808581044', 'Kim Wilson', 0, '+86 149-4707-4416', 3, '146940527723080055', '中国上海市闵行区宾川路439号38栋', '1995-09-21', 0, 0, 'kimwilson6', '2013-11-10', 'wilsonkim', '2018-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS564905744094', '市川大和', 1, '+81 3-4596-9516', 2, '177675730978171483', '日本東京品川区東五反田五丁目2番17号19号室', '1999-01-25', 0, 0, 'ichikawayamato95', '2021-10-29', 'yamatoic', '2010-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS739173862427', 'Diane Shaw', 1, '+1 213-948-7513', 1, '723266252275140153', '805 Wall Street Suite 28, Los Angeles, CA 90003, United States', '1995-06-11', 0, 0, 'shawdiane3', '2018-04-23', 'dianeshaw', '2007-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS982039612984', 'Sarah Wood', 0, '+81 90-2092-6401', 0, '983355617509299496', 'Rm. 6, 5-19-17 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-06-10', 0, 0, 'swo', '2013-05-07', 'wood708', '2006-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS746534719064', 'Stephen Morris', 0, '+1 212-477-6155', 1, '901404481332673483', '368 Fifth Avenue Apt 20, New York, NY 10017, United States', '1985-04-13', 0, 0, 'stepmor909', '2009-10-11', 'most9', '2009-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS297679649877', 'Kyle Gomez', 0, '+86 28-3569-1400', 3, '432578379249968430', '中国成都市锦江区红星路三段786号17栋', '1994-01-30', 0, 0, 'kgomez', '2005-02-09', 'kygomez9', '2011-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS349632904308', '遠藤健太', 0, '+44 7837 570033', 3, '943456444244968104', 'Block 35, 62 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1986-12-03', 0, 0, 'kente', '2021-11-22', 'kenend', '2010-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS744900757772', '後藤明菜', 0, '+86 20-5263-5635', 1, '046073566747364096', '中国广州市天河区天河路277号华润大厦38室', '1994-12-21', 0, 0, 'akig10', '2009-07-03', 'gotoakin', '2003-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS369989619883', '钟嘉伦', 0, '+81 70-0300-5542', 1, '176772146532627719', '日本おおさかし西成区天神ノ森二丁目1番6号11階', '1993-04-21', 0, 0, 'jialuzhong304', '2006-10-05', 'jialuz10', '2006-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS141438658927', '鐘志遠', 0, '+81 52-219-1054', 1, '395133995179290211', '日本なごやし熱田区千年二丁目5番10号33階', '1987-01-05', 0, 0, 'chiyuenchung1102', '2016-11-02', 'chiyuen04', '2002-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS195503544147', '馮詩君', 0, '+86 193-5264-8182', 0, '251166037127809330', '中国上海市浦东新区橄榄路493号46号楼', '1998-05-13', 0, 0, 'szekwanfu223', '2018-06-28', 'fung4', '2003-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS171580150861', '佘天樂', 1, '+44 (116) 006 3676', 2, '402015175784740538', 'Unit 46, Oxford Eco Centre, 438 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1987-05-05', 0, 0, 'shehtl', '2012-02-27', 'shtl223', '2006-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS061836532407', '錢國權', 1, '+81 90-2630-8790', 1, '990841141170889496', '日本おおさかし西成区出城一丁目1番7号2号室', '1995-10-04', 0, 0, 'chin7', '2018-08-18', 'chinkwokkuen', '2017-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS673152151194', '曾璐', 1, '+81 11-375-0209', 3, '360382622907583054', '日本札幌白石区菊水三条五丁目2番2号42階', '1990-10-22', 0, 0, 'zenglu', '2012-05-04', 'luzeng509', '2007-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS872885312904', '甘永發', 0, '+81 70-7085-2227', 3, '613105576879710750', '32-kai, 5-19-9 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1990-12-15', 0, 0, 'kawf3', '2021-09-20', 'kamwingfat', '2007-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS534331644138', '甘慧敏', 1, '+44 (161) 279 9843', 1, '104226158292735391', 'Unit 47, Oxford Eco Centre, 897 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-02-24', 0, 0, 'kam86', '2021-10-07', 'kamwaiman', '2001-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS491994085075', 'Shirley Kelley', 0, '+86 190-9985-4841', 2, '218113819817870534', '中国广州市白云区机场路棠苑街五巷730号25号楼', '1993-04-20', 0, 0, 'kelshirl5', '2015-02-01', 'shirley108', '2000-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS029097007880', '谭宇宁', 1, '+44 5569 152096', 4, '745455427304198075', 'Unit 23, Oxford Eco Centre, 565 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1994-04-08', 0, 0, 'ytan59', '2017-05-23', 'yunitan2', '2018-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS671106169074', '郝睿', 0, '+81 70-5700-3787', 3, '525554587248708375', '日本東京港区東新橋一丁目5番10号8階', '1992-10-09', 0, 0, 'ruiha', '2000-06-19', 'ruihao', '2000-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS349754354896', '刘子异', 0, '+81 70-8844-9847', 2, '061857748403875900', '19F, 4-9-11 Kamihigashi, Hirano Ward, Osaka, Japan', '1998-10-05', 0, 0, 'ziyili69', '2014-01-21', 'liuzi220', '2003-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS856880931814', 'Joyce Hamilton', 1, '+81 90-8901-7614', 0, '489180205289483521', '日本東京品川区東五反田五丁目2番13号28階', '1995-11-28', 0, 0, 'joycehami', '2020-06-25', 'joycehamilton', '2020-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS453900510074', '毛安琪', 1, '+81 11-084-2018', 0, '706849492041525472', '日本札幌清田区真栄四条五丁目19番7号27号室', '1989-04-30', 0, 0, 'anqi4', '2012-05-31', 'am14', '2015-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS959208486068', '宣永發', 0, '+1 614-600-9066', 3, '333666718374368146', '431 Tremont Road Apartment 24, Columbus, GA 43212, United States', '1995-07-15', 0, 0, 'hsuawf', '2014-12-23', 'wingfathsuan3', '2016-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS230043700707', '袁曉彤', 0, '+81 70-2276-4379', 3, '399829780492109327', '18F, 11 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1988-10-03', 0, 0, 'yuen1', '2007-02-21', 'hiutungyue14', '2001-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS207493160768', '曹天榮', 0, '+81 70-3255-4898', 4, '698394112498866930', '21-kai, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1994-07-07', 0, 0, 'ctw7', '2004-01-05', 'cho1961', '2018-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS048340141755', 'Carlos Bryant', 0, '+86 21-788-1237', 2, '393994656126914342', '中国上海市黄浦区淮海中路452号15号楼', '1985-04-11', 0, 0, 'bryantcarlo', '2003-10-14', 'cabr506', '2020-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS662733634383', '狄秀文', 1, '+86 10-7368-9995', 2, '020937628925165511', '中国北京市東城区東直門內大街971号华润大厦17室', '1990-09-01', 0, 0, 'sati58', '2020-01-16', 'smti', '2021-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS820734086931', '孟宇宁', 1, '+86 760-562-0634', 4, '417122518954847259', 'No.25 building, 844 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1987-03-27', 0, 0, 'mengy5', '2018-07-28', 'ymeng', '2008-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS179475143146', '任晓明', 1, '+86 140-0980-9048', 0, '589918456296264642', 'Room 18, 353 Jianxiang Rd, Pudong, Shanghai, China', '1994-09-24', 0, 0, 'xren', '2017-10-11', 'rxiaoming210', '2009-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS752000909133', '内田美緒', 0, '+81 52-440-9961', 1, '539206184753882319', 'Rm. 35, 20 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-03-17', 0, 0, 'miouchi8', '2006-07-06', 'miouchid1956', '2012-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS018577723608', '金子明菜', 1, '+44 (1223) 33 8517', 0, '045909080397355182', 'Flat 9, 710 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1995-11-19', 0, 0, 'akinakanek1231', '2019-01-11', 'akina51', '2014-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS579657861046', '黄宇宁', 1, '+86 21-679-2853', 2, '670970528425573205', 'No.18 building, 315 Hongqiao Rd., Xu Hui District, Shanghai, China', '1996-04-12', 0, 0, 'yuning1002', '2016-12-30', 'huangyu', '2016-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS122460765469', '中森舞', 0, '+81 70-4552-5419', 2, '482429374566719011', '2-kai, 3-9-13 Gakuenminami, Nara, Japan', '1985-08-09', 0, 0, 'mainaka', '2009-04-19', 'mai824', '2005-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS054490299130', '中島葉月', 0, '+86 174-1311-7294', 2, '229749169490421941', '中国中山天河区大信商圈大信南路624号5室', '1988-06-12', 0, 0, 'hazunaka', '2002-06-12', 'hazuki807', '2010-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS100430863616', '西村美咲', 0, '+86 20-9045-4506', 2, '981925593335887304', 'Room 4, CR Building, 170 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1986-10-04', 0, 0, 'mnishimura', '2016-03-05', 'nishimuram', '2007-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS952681714573', 'Victoria Edwards', 1, '+86 10-295-8901', 1, '125076565723524057', '中国北京市西城区西長安街772号华润大厦15室', '1995-01-22', 0, 0, 'edwards10', '2008-07-23', 'victoria00', '2019-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS137962258123', '胡玲玲', 0, '+1 614-691-1163', 3, '751515696532245002', '391 Wicklow Road Apartment 12, Columbus, GA 43204, United States', '1988-12-26', 0, 0, 'linglingwu', '2019-07-20', 'linglingwu', '2005-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS684024797118', '叶子韬', 1, '+44 (1865) 83 6870', 2, '699512171270176975', 'Block 17, 892 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1997-04-30', 0, 0, 'zity', '2004-10-26', 'ziye', '2013-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS898008920261', '萬祖兒', 1, '+81 52-506-3996', 0, '720132789780531756', '6-kai, 2-5-12 Chitose, Atsuta Ward, Nagoya, Japan', '1992-07-18', 0, 0, 'meng43', '2004-02-04', 'mengchoyee', '2021-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS710335938199', '吉田瑛太', 0, '+81 66-831-1662', 4, '023881877743155779', '日本おおさかし西成区天神ノ森二丁目1番16号27号室', '1993-01-05', 0, 0, 'yoshidae', '2006-06-09', 'yoshida5', '2000-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS924879007910', '卢岚', 0, '+81 90-4300-7572', 4, '847133505521262141', '日本東京品川区東五反田五丁目2番6号50階', '1994-01-31', 0, 0, 'lulan', '2005-01-20', 'lu10', '2017-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS387189562919', '崔國賢', 1, '+86 182-0814-5899', 3, '550693749118425839', 'No.3 building, 173 Sanlitun Road, Chaoyang District, Beijing, China', '1994-04-10', 0, 0, 'kwokyincho', '2005-12-05', 'kwokyinchoi1', '2016-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS349782172087', '孫浩然', 1, '+86 143-4977-7667', 3, '574975816927064165', 'Room 34, 414 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1998-12-18', 0, 0, 'hsuanhoyin59', '2009-07-17', 'hhoyin', '2000-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS253738740854', '渡部明菜', 0, '+81 70-0171-6081', 3, '286390126238525937', '23F, 5-19-13 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1990-12-16', 0, 0, 'akina5', '2001-09-17', 'akinw', '2011-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS136252351297', 'William West', 1, '+1 213-529-9185', 3, '177661588055049047', '186 Wall Street Suite 23, Los Angeles, CA 90003, United States', '1995-09-20', 0, 0, 'wilwes', '2020-05-03', 'wewilliam03', '2000-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS524281520163', '顧秀文', 1, '+1 614-972-5925', 1, '544516059759355395', '165 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1996-06-21', 0, 0, 'kusauman', '2002-12-23', 'saumank', '2013-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS354022683180', 'Aaron Moore', 1, '+86 21-1213-8760', 3, '650475338295332275', 'Room 16, CR Building, 677 Jianxiang Rd, Pudong, Shanghai, China', '1997-12-06', 0, 0, 'aaronm', '2001-09-04', 'aaronmoore', '2000-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS972965225705', '雷仲賢', 0, '+1 614-363-7157', 2, '861853460797670395', '137 East Alley Suite 45, Columbus, GA 43201, United States', '1990-07-28', 0, 0, 'lchungyin', '2009-12-30', 'cyloui09', '2019-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS283526468836', 'Jacqueline Alvarez', 0, '+86 146-2496-5583', 2, '658706177443586752', 'Room 14, CR Building, 140 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1996-05-23', 0, 0, 'jacqualvarez2', '2002-12-10', 'jacquelineal', '2012-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS060395442574', '山田健太', 0, '+86 10-024-1091', 0, '391111618414330099', '30F, 368 Dong Zhi Men, Dongcheng District, Beijing, China', '1992-04-11', 0, 0, 'yamadakenta6', '2005-11-20', 'kyamada', '2007-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS515077825073', '傅天榮', 1, '+1 213-624-2299', 1, '208206569865659508', '87 Wall Street Apartment 43, Los Angeles, CA 90003, United States', '1985-09-07', 0, 0, 'tinwingfu814', '2019-04-10', 'fu2012', '2012-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS806522238994', 'Clarence Ryan', 1, '+86 755-1228-0884', 0, '247797615284512277', '中国深圳龙岗区学园一巷789号35室', '1994-01-09', 0, 0, 'ryanclar1958', '2008-12-19', 'ryanclar', '2002-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS218501774153', '邹睿', 1, '+81 90-1484-5625', 2, '837232326062612483', '22F, 5-2-6 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-10-03', 0, 0, 'zoru', '2017-08-01', 'zourui89', '2007-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS429673792604', '楊富城', 1, '+81 74-802-6286', 1, '293098596481192126', '日本ならし西大寺赤田町一丁目7番15号12号室', '1994-08-20', 0, 0, 'yeungfus', '2019-06-21', 'fsyeung85', '2001-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS843326685481', '野村優奈', 1, '+1 330-123-5621', 1, '756578005763800499', '325 Fern Street Suite 39, Akron, OH 44307, United States', '1996-11-19', 0, 0, 'yunanomura', '2017-01-23', 'nomurayun1024', '2013-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS271361814296', '蘇朝偉', 1, '+81 3-7455-2937', 2, '934760668796327055', '29-kai, 1-6-14, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1994-04-08', 0, 0, 'schiuwai2', '2002-06-15', 'cwso', '2021-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS741415493636', 'Luis Mason', 1, '+81 70-8676-8104', 2, '018399252003227861', 'Rm. 7, 1-7-16 Saidaiji Akodacho, Nara, Japan', '1988-04-20', 0, 0, 'luismas', '2008-03-29', 'masonlui', '2017-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS667855755632', '尹致远', 0, '+81 52-827-2284', 1, '706368249033200417', '日本なごやし熱田区千年二丁目5番10号29階', '1985-08-22', 0, 0, 'yin801', '2019-08-11', 'zhyin', '2018-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS589675148732', '陶家明', 0, '+86 163-9550-6542', 1, '744310805465312896', 'Room 41, 271 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1997-06-18', 0, 0, 'tao89', '2016-06-29', 'takm', '2010-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS471034615180', '佐々木美羽', 1, '+81 70-2169-7062', 2, '316477921989276326', 'Rm. 14, 13-3-18 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1992-12-11', 0, 0, 'sasakm', '2008-12-27', 'sasami', '2005-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS041027445504', 'Virginia Webb', 0, '+86 10-881-1138', 3, '728993862316057620', 'No.48 building, 8 Yueliu Rd, Fangshan District, Beijing, China', '1991-07-27', 0, 0, 'webb6', '2002-11-15', 'virgwebb1017', '2016-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS265221481722', '任璐', 0, '+81 70-7595-4796', 4, '185282957988005846', '38-kai, 5-19-11 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1997-09-15', 0, 0, 'renlu', '2011-04-25', 'renlu10', '2019-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS331725823183', '野村海斗', 0, '+86 197-0081-9593', 3, '212367697505839839', 'Room 16, CR Building, 268 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1989-11-26', 0, 0, 'nomurkaito3', '2014-02-06', 'nomk', '2013-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS357178946193', '高田和真', 1, '+44 (1865) 72 2108', 0, '302636204668500173', 'No.5 Main building, 991 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1994-10-21', 0, 0, 'kazutakada9', '2013-07-23', 'tk1951', '2015-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS963737046179', '木下美羽', 0, '+81 70-4319-6840', 1, '261587809521491085', '日本なごやし守山区瀬古東二丁目171番19号11号室', '1997-07-29', 0, 0, 'kinosmi', '2007-05-09', 'kinomi3', '2007-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS544741472772', '上野詩乃', 1, '+81 90-3283-0330', 4, '685137591355861224', 'Rm. 48, 19 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1988-10-11', 0, 0, 'ueno9', '2010-12-27', 'ueno1973', '2018-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS767994409540', '石川蒼士', 1, '+44 5818 842399', 4, '601219371765850409', 'Unit 41, Oxford Eco Centre, 799 Park End St, Oxford, OX1 1JD, United Kingdom', '1991-07-22', 0, 0, 'aoshiishik', '2009-09-29', 'ishikawa505', '2015-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS688584817307', 'Monica Gomez', 0, '+1 330-926-9450', 0, '678974130554966999', '327 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1996-02-23', 0, 0, 'gomezmonica', '2001-01-18', 'monicag', '2002-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS379421909936', '宮崎翼', 0, '+44 5401 827019', 2, '758023610668287614', 'Block 48, 572 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1989-06-02', 0, 0, 'tsubami', '2010-02-07', 'miyazakits7', '2005-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS319901889548', 'Judy Sanders', 1, '+1 614-081-3488', 3, '191512054623654558', '663 Wicklow Road Apt 4, Columbus, GA 43204, United States', '1994-05-17', 0, 0, 'sjudy', '2015-12-09', 'sanders69', '2014-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS247879078953', '官朝偉', 0, '+44 5028 025160', 1, '123627485897276070', 'Flat 50, 165 Portland St, Manchester, M1 3LA, United Kingdom', '1992-07-05', 0, 0, 'cwkoo', '2002-01-22', 'cwkoon526', '2006-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS130510044544', '渡辺玲奈', 0, '+1 330-586-3870', 0, '493969963889341772', '851 Riverview Road Suite 50, Akron, OH 44313, United States', '1991-08-27', 0, 0, 'rena6', '2007-10-31', 'rena6', '2021-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS016586308748', '徐慧儀', 0, '+86 760-6139-7958', 1, '330447553842117800', '中国中山乐丰六路127号21室', '1993-01-24', 0, 0, 'tsui44', '2021-09-18', 'waiyet', '2015-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS129203055616', 'Lee Owens', 0, '+81 3-4272-6399', 4, '604663585341131313', '日本東京渋谷区代々木二丁目3番15号42号室', '1996-11-14', 0, 0, 'leeowen', '2011-08-11', 'owlee', '2014-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS443816137777', 'Michelle Harris', 1, '+86 186-3713-7642', 1, '830289604000263994', '中国北京市东城区东单王府井东街285号20室', '1985-08-25', 0, 0, 'michelle113', '2005-04-24', 'micheharris1978', '2012-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS796089705288', '萬安琪', 1, '+1 718-158-6367', 3, '234672464498008474', '772 Bergen St Suite 21, Brooklyn, NY 11217, United States', '1995-01-22', 0, 0, 'onkayme', '2005-04-16', 'mengonkay83', '2006-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS669776741696', 'Miguel Coleman', 1, '+81 80-4242-2256', 1, '486835019362781884', 'Rm. 15, 3-9-10 Gakuenminami, Nara, Japan', '1990-06-17', 0, 0, 'colemanm', '2010-08-11', 'miguelcoleman', '2010-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS192846102523', '渡辺美羽', 1, '+1 718-907-4619', 3, '023387571598324163', '676 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1996-07-27', 0, 0, 'miu9', '2019-11-24', 'satm', '2008-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS088050586087', '田村百恵', 0, '+81 80-0077-4022', 2, '905291881171543621', '日本札幌中央区宮の森四条六丁目1番9号17号室', '1996-06-23', 0, 0, 'momoet1031', '2016-08-15', 'tamurm', '2020-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS314592948806', 'Lillian Mason', 1, '+81 80-0185-0053', 1, '263099722544285058', '日本東京港区東新橋一丁目5番10号40階', '1986-03-19', 0, 0, 'malilli', '2008-04-27', 'masolillian1009', '2014-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS277183289855', '吳學友', 1, '+86 144-8017-9613', 2, '092232916537218984', 'No.46 building, 226 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1994-09-10', 0, 0, 'nghokyau', '2005-11-05', 'hyng7', '2019-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS595577542165', 'Anne Long', 0, '+81 70-4973-5173', 2, '992298799762083236', '日本東京港区東新橋一丁目5番7号37階', '1989-05-05', 0, 0, 'annelong', '2000-12-20', 'annel630', '2018-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS418778838114', '武宇宁', 0, '+86 755-7870-5920', 4, '388115969550389624', 'Room 37, CR Building, 147 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1997-06-17', 0, 0, 'wuyuning', '2010-07-08', 'yuwu225', '2005-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS572034001047', '坂本明菜', 1, '+44 7543 656957', 3, '814690011630557318', 'Block 7, 237 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1990-05-29', 0, 0, 'akisa', '2010-05-05', 'sakamoto6', '2002-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS477931890595', 'Henry Patterson', 0, '+81 70-6848-6716', 2, '328997790589693686', '日本東京品川区東五反田五丁目2番6号40階', '1991-12-27', 0, 0, 'hep', '2009-03-06', 'pattersonh', '2003-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS161909742125', '段宇宁', 0, '+1 614-776-8161', 3, '967731355400116593', '379 Wicklow Road Apt 19, Columbus, GA 43204, United States', '1991-07-25', 0, 0, 'yuning121', '2009-04-20', 'duanyu8', '2002-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS923622515096', 'George Rodriguez', 1, '+86 20-691-5705', 4, '575038395132177399', '32F, 55 Xiaoping E Rd, Baiyun , Guangzhou, China', '1997-03-08', 0, 0, 'grodriguez', '2003-03-03', 'rodriguezgeorg17', '2006-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS132556386553', '孔嘉伦', 0, '+81 74-628-1455', 1, '968576274589210876', '日本ならし学園南三丁目9番19号45階', '1985-05-25', 0, 0, 'jialukong308', '2002-05-18', 'jiakon5', '2014-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS391321359030', '顾嘉伦', 0, '+1 213-942-6875', 4, '407111072622814621', '122 S Broadway Suite 7, Los Angeles, CA 90015, United States', '1995-11-22', 0, 0, 'jiag', '2009-01-09', 'gu122', '2021-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS265202834978', '王璐', 1, '+81 11-289-5747', 3, '712460003287910709', '2F, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-04-23', 0, 0, 'wang58', '2011-10-21', 'luwang', '2009-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS021315397880', '工藤健太', 1, '+81 70-0120-1892', 2, '611513591994919695', '10-kai, 1-7-13 Omido, Higashiosaka, Osaka, Japan', '1986-02-27', 0, 0, 'kuk3', '2007-06-16', 'kudok', '2018-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS140112066764', '梁子韬', 0, '+81 70-6771-8229', 0, '476305602149775824', '日本おおさかし平野区加美東四丁目9番10号9号室', '1988-10-07', 0, 0, 'lizit5', '2010-12-27', 'zliang', '2019-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS929967569702', 'Mildred Harris', 0, '+86 169-2806-4470', 1, '510916493473464703', '中国成都市成华区双庆路902号17楼', '1997-05-19', 0, 0, 'mildrha', '2010-10-22', 'mildredha2000', '2009-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS694541755236', '蔣梓軒', 0, '+1 213-459-1467', 4, '045587182860059743', '363 Figueroa Street Apt 1, Los Angeles, CA 90037, United States', '1988-10-21', 0, 0, 'chiatszhin813', '2000-07-16', 'tszhinchiang3', '2020-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS584145863389', '杜祖兒', 1, '+86 20-2552-2124', 3, '704170471263823017', '中国广州市白云区机场路棠苑街五巷260号31栋', '1987-03-08', 0, 0, 'choyee1222', '2001-05-01', 'choyeeto822', '2009-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS537958643320', '森田陸', 1, '+81 66-397-9907', 2, '698767523624599688', '日本おおさかし東住吉区東田辺三丁目27番14号7号室', '1991-06-27', 0, 0, 'moritariku3', '2009-09-19', 'riku8', '2016-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS991476638351', '杉山翼', 1, '+44 7611 146387', 1, '426154991431022494', 'Unit 13, Oxford Eco Centre, 793 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1993-08-24', 0, 0, 'sugitsubasa1', '2006-01-25', 'stsubasa', '2015-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS284761129948', '大塚蓮', 0, '+44 (161) 899 5102', 4, '500107047106403616', 'No.37 Main building, 475 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1986-01-13', 0, 0, 'reno4', '2001-01-17', 'ren1201', '2006-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS388456757743', 'Irene Morales', 1, '+81 90-0838-4667', 0, '249562968523424785', '42F, 2-1-11 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1997-09-26', 0, 0, 'irenemorales', '2015-07-07', 'mirene1204', '2018-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS080788686887', '董云熙', 0, '+81 70-5067-6019', 3, '248240208680822939', '日本なごやし北区清水三丁目19番16号45階', '1997-12-05', 0, 0, 'yunxdong83', '2005-06-30', 'yundo513', '2012-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS457958179400', 'Joan Evans', 0, '+86 173-9687-7029', 2, '753352627752132596', 'No.36 building, 198 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1998-12-06', 0, 0, 'ejoa', '2007-11-21', 'joe', '2014-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS499470970004', '洪霆鋒', 1, '+86 192-9705-1415', 4, '500514120323543164', '中国北京市西城区复兴门内大街221号42栋', '1996-03-12', 0, 0, 'tingfunghung', '2020-10-08', 'hungtingfung7', '2005-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS082351152568', '黃玲玲', 0, '+81 52-961-2715', 2, '658357353342302411', '日本なごやし北区楠味鋺三丁目80番12号19号室', '1993-01-22', 0, 0, 'linglingwong3', '2016-03-01', 'wong49', '2002-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS642175414221', '馬麗欣', 1, '+86 137-7919-0162', 4, '823136170640205465', '中国深圳福田区景田东一街427号37室', '1998-12-18', 0, 0, 'laiyanma', '2013-10-28', 'lym', '2001-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS587409105056', '岡本美緒', 0, '+44 5159 488675', 3, '702784899789135810', 'No.13 Main building, 508 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1997-02-09', 0, 0, 'mioo', '2006-10-28', 'okamotomio', '2021-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS159650379704', '杨致远', 0, '+1 838-302-4424', 3, '207077698960927044', '724 Central Avenue Suite 13, Albany, NY 12206, United States', '1988-06-19', 0, 0, 'yang2', '2014-12-26', 'yanz', '2003-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS899892443898', '武子韬', 1, '+86 10-9690-3812', 1, '014621112469055696', '39F, 640 68 Qinghe Middle St, Haidian District, Beijing, China', '1989-11-28', 0, 0, 'wu7', '2007-09-15', 'zitwu', '2003-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS202552622353', '胡岚', 1, '+44 7195 209244', 2, '083308586474872919', 'Flat 28, 844 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1988-12-08', 0, 0, 'hlan', '2009-10-12', 'hl1010', '2014-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS945571669474', '熊睿', 1, '+86 755-6184-1155', 0, '256876330989463015', '中国深圳福田区深南大道274号华润大厦23室', '1994-07-03', 0, 0, 'ruixiong329', '2011-07-30', 'xiorui', '2021-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS447874488703', '加藤光莉', 1, '+1 312-889-8836', 3, '552230293219737012', '324 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1998-10-25', 0, 0, 'hikka', '2013-02-25', 'khikari', '2006-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS425664858529', '尹嘉伦', 1, '+1 213-910-6262', 0, '019393669981559677', '540 S Broadway Apt 42, Los Angeles, CA 90015, United States', '1991-12-06', 0, 0, 'yin1124', '2012-04-12', 'yjial', '2014-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS090555201966', '黄睿', 1, '+81 70-1311-6097', 2, '311965922702130247', '28F, 2-3-6 Yoyogi, Shibuya-ku, Tokyo, Japan', '1996-02-05', 0, 0, 'hru', '2020-01-30', 'rui16', '2008-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS613446993299', '容麗欣', 1, '+86 760-3691-1253', 2, '444495015885186087', '中国中山天河区大信商圈大信南路469号华润大厦36室', '1994-04-19', 0, 0, 'yungly5', '2006-08-24', 'yunglaiyan3', '2005-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS209143523978', '鄭杰倫', 1, '+86 755-6434-8979', 1, '551073623556354068', 'No.16 building, 95 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-06-30', 0, 0, 'cheng1127', '2019-03-13', 'chchiehlun', '2009-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS363690321465', 'Julia Stone', 0, '+81 70-2695-4763', 0, '507959768591098684', '日本ならし西大寺赤田町一丁目7番10号9階', '1986-12-07', 0, 0, 'stonjul', '2015-11-01', 'stonej4', '2014-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS862544176284', '莫志明', 0, '+86 760-119-3967', 3, '043948059995803538', '中国中山紫马岭商圈中山五路531号27楼', '1993-05-25', 0, 0, 'mokcm', '2005-11-27', 'chiming10', '2002-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS428300739929', '藤國明', 0, '+1 213-475-4587', 2, '598822808739326467', '943 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1985-05-19', 0, 0, 'tangkm', '2011-01-12', 'kmtang1983', '2020-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS583871553122', '严子异', 0, '+81 11-660-1222', 1, '902975927970404901', 'Rm. 35, 6-1-3, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1992-04-05', 0, 0, 'yziy3', '2005-09-06', 'yanzi411', '2014-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS487597927884', '増田結翔', 0, '+86 21-5500-8898', 2, '978544228769407069', 'No.45 building, 108 Jianxiang Rd, Pudong, Shanghai, China', '1992-07-13', 0, 0, 'masudayui425', '2003-02-21', 'yuitomasuda112', '2011-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS159205734977', '任秀英', 0, '+1 330-250-0783', 0, '240732210968080212', '613 Collier Road Apartment 10, Akron, OH 44320, United States', '1995-01-01', 0, 0, 'xiuyingren', '2016-09-10', 'renxiuying', '2004-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS721514198754', '加藤優奈', 1, '+44 7638 566157', 0, '461686902097995968', 'Flat 43, 478 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1990-04-10', 0, 0, 'kato816', '2006-01-08', 'yunkat', '2001-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS664466573591', 'Earl Lopez', 1, '+86 159-3062-0613', 2, '970480776157915895', 'Room 18, CR Building, 779 Shennan Ave, Futian District, Shenzhen, China', '1992-08-03', 0, 0, 'earllopez', '2018-06-27', 'lopez2000', '2016-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS747426512405', '石田大和', 1, '+86 769-8092-1262', 1, '954743841034877474', 'Room 36, 327 Kengmei 15th Alley, Dongguan, China', '1994-11-29', 0, 0, 'yamishida', '2020-09-17', 'yamatoish', '2004-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS370616752373', 'Benjamin Lewis', 0, '+1 330-287-4369', 0, '036550644780429811', '542 Fern Street 3rd Floor, Akron, OH 44307, United States', '1986-11-19', 0, 0, 'benjamin1966', '2011-07-01', 'lewisbenjamin', '2008-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS794939808858', '苑祖兒', 0, '+86 176-6318-2943', 1, '363563171586823994', '中国广州市天河区天河路894号2号楼', '1985-03-14', 0, 0, 'cyyuen', '2019-04-16', 'yuency', '2006-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS276117096620', '餘頴思', 0, '+1 330-442-5996', 1, '436156680880001147', '123 Riverview Road Apartment 33, Akron, OH 44313, United States', '1990-03-25', 0, 0, 'yuews', '2017-06-07', 'wingsze5', '2016-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS638533225245', '譚榮發', 0, '+44 7632 994600', 2, '518044966000068068', 'Flat 23, 435 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1996-02-05', 0, 0, 'tamwf401', '2017-06-17', 'tam1989', '2001-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS075448023818', '小野愛梨', 0, '+81 70-7504-8504', 3, '832940271797330312', '16-kai, 16 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1985-07-17', 0, 0, 'aono05', '2007-04-12', 'airi3', '2010-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS927930344539', '鄭潤發', 1, '+1 718-763-8911', 1, '371137794897320564', '158 Columbia St Apt 24, Brooklyn, NY 11231, United States', '1993-02-27', 0, 0, 'chengyunfat', '2014-02-12', 'yunfatche', '2017-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS797024501700', 'Alice Ryan', 1, '+44 5013 294450', 4, '627049423749005343', 'No.9 Main building, 459 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1990-12-31', 0, 0, 'rya', '2004-02-07', 'alicryan', '2009-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS375483330998', '戴云熙', 0, '+44 5621 470675', 2, '061468450070461237', 'Unit 45, Oxford Eco Centre, 985 Mosley St, Manchester, M2 3AQ, United Kingdom', '1989-09-09', 0, 0, 'daiyunxi', '2016-03-01', 'daiy53', '2001-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS544904765451', '阿部美羽', 1, '+86 28-7171-8912', 1, '845652105127370753', '中国成都市成华区玉双路6号749号38栋', '1991-05-19', 0, 0, 'miua', '2011-01-03', 'miua', '2021-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS819312202820', '井上瑛太', 0, '+81 3-2047-2461', 1, '749864624439467309', '日本東京品川区東五反田五丁目2番3号36階', '1994-03-25', 0, 0, 'inoueita', '2011-09-03', 'inoueei', '2008-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS602343132605', '周發', 1, '+86 158-4692-3339', 2, '999713503507965011', '中国中山乐丰六路339号21栋', '1993-06-26', 0, 0, 'fachow', '2008-12-15', 'chowfat', '2020-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS401696332868', 'Brian Smith', 0, '+1 312-966-0454', 3, '959049623260984562', '750 Pedway Apartment 6, Chicago, IL 60601, United States', '1995-05-12', 0, 0, 'brian9', '2002-08-27', 'sb1229', '2005-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS396766563854', '董岚', 0, '+86 21-4511-1980', 3, '359796742960569314', '18F, 156 Middle Huaihai Road, Huangpu District, Shanghai, China', '1986-05-08', 0, 0, 'lando10', '2003-05-14', 'dla', '2015-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS399627117380', '薛曉彤', 0, '+81 66-203-9229', 2, '572346645037449013', '日本おおさかし東住吉区東田辺三丁目27番7号5階', '1993-02-08', 0, 0, 'siht8', '2020-09-20', 'sithiutung10', '2018-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS295814129296', '阮心穎', 1, '+86 150-3097-2327', 4, '769486867079471317', 'No.49 building, 629 68 Qinghe Middle St, Haidian District, Beijing, China', '1988-12-29', 0, 0, 'yuen2', '2004-01-30', 'sumwing2', '2015-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS281395444947', '元浩然', 1, '+86 20-0327-4783', 3, '866525154363699635', '中国广州市海珠区江南西路869号4室', '1993-03-29', 0, 0, 'hoyin515', '2002-07-04', 'yuen10', '2010-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS987947814707', '李家輝', 1, '+86 186-2266-4820', 1, '497839410890568638', '中国上海市闵行区宾川路428号7栋', '1987-03-28', 0, 0, 'lee2', '2013-11-06', 'lee1962', '2019-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS596289072330', '方璐', 1, '+44 (161) 181 8607', 2, '390591702443425935', 'Flat 8, 301 Mosley St, Manchester, M2 3AQ, United Kingdom', '1990-04-07', 0, 0, 'lufang', '2006-08-23', 'lufan', '2015-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS420317904632', 'Danielle Price', 0, '+81 66-062-4716', 4, '697875905476147434', 'Rm. 13, 3-27-3 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1995-07-31', 0, 0, 'danieprice1023', '2018-11-04', 'danprice1230', '2013-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS834298107646', '叶子异', 1, '+1 312-615-4232', 4, '402940729874941672', '426 Pedway Suite 28, Chicago, IL 60601, United States', '1988-11-14', 0, 0, 'ziyi60', '2005-02-16', 'ziyiye', '2012-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS239268078936', 'Cynthia Perez', 1, '+86 189-0033-3387', 1, '696865557423701938', '中国广州市天河区天河路278号5号楼', '1988-06-03', 0, 0, 'cyper', '2011-09-25', 'perecynt3', '2000-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS532362706521', '陆岚', 0, '+81 80-3075-7102', 3, '768864305215262195', '15-kai, 2 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-10-10', 0, 0, 'lulan', '2022-02-28', 'lan9', '2012-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS970768183075', '侯致远', 0, '+86 137-7961-6248', 2, '169319714142283640', 'No.47 building, 700 Jianxiang Rd, Pudong, Shanghai, China', '1988-05-29', 0, 0, 'zhiyuhou1003', '2004-04-30', 'zhiyuan5', '2010-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS524928541772', '藤潤發', 0, '+86 162-1504-0704', 4, '257079800250236714', '中国深圳福田区景田东一街637号42栋', '1985-12-22', 0, 0, 'yunfat711', '2017-06-23', 'yunfat72', '2000-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS703240312602', '橋本大輔', 0, '+86 196-1627-7451', 4, '287157065025702117', 'Room 40, 160 Dongtai 5th St, Dongguan, China', '1998-06-29', 0, 0, 'daisuhashi', '2007-12-19', 'hasdaisuke1942', '2005-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS520990582729', '松田美緒', 1, '+86 20-0306-7005', 3, '522471190826936308', 'Room 45, CR Building, 227 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1992-09-30', 0, 0, 'miom45', '2013-01-01', 'matsudamio1202', '2017-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS695491745654', '山崎愛梨', 1, '+81 11-542-3366', 1, '795375690591902240', '日本札幌白石区菊水三条五丁目2番20号41階', '1991-06-09', 0, 0, 'airiy', '2000-03-10', 'airiyamazaki', '2014-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS650933036118', 'Troy Harris', 1, '+81 80-6126-0394', 1, '054063342203207012', '45-kai, 2-1-13 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1989-09-20', 0, 0, 'troy1115', '2004-03-20', 'troyha', '2008-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS671191770709', '阿部翼', 1, '+44 5043 023118', 1, '604087764802331754', 'Unit 4, Oxford Eco Centre, 415 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1993-11-14', 0, 0, 'at306', '2014-04-06', 'abe42', '2012-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS715425806603', 'Brenda Castillo', 0, '+81 70-2463-1861', 1, '895782924899696465', '9-kai, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1987-03-24', 0, 0, 'castillo9', '2000-02-28', 'brenda80', '2021-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS559382581828', '伍梓軒', 0, '+86 769-792-9584', 3, '452514350318619023', '中国东莞坑美十五巷83号17号楼', '1993-05-03', 0, 0, 'thng', '2007-09-12', 'thng', '2012-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS288238065458', '千葉蓮', 1, '+86 138-8810-6696', 3, '800727976417123437', 'Room 39, CR Building, 577 Lefeng 6th Rd, Zhongshan, China', '1991-05-02', 0, 0, 'renchi703', '2005-10-28', 'ren70', '2002-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS471763636426', 'Joe Jordan', 1, '+81 70-0767-6917', 3, '039148866032341477', '日本札幌中央区宮の森四条六丁目1番13号43階', '1987-04-29', 0, 0, 'jordanjoe', '2021-03-21', 'joe9', '2021-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS773248927948', '秦晓明', 1, '+86 28-2255-1340', 1, '309503498931451198', '中国成都市锦江区红星路三段752号华润大厦28室', '1992-02-09', 0, 0, 'xiaoming1', '2006-02-23', 'qinx', '2015-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS584705693986', '任子韬', 0, '+81 90-3992-1710', 3, '627091055170393042', '日本なごやし北区清水三丁目19番10号22階', '1999-01-28', 0, 0, 'ren9', '2008-08-25', 'renzita', '2021-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS657168148091', 'Louise Smith', 0, '+81 70-4070-7484', 1, '025866797794080950', '日本なごやし熱田区千年二丁目5番3号26階', '1989-04-29', 0, 0, 'lous604', '2011-08-18', 'smithl10', '2000-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS680686742343', '藤井悠人', 0, '+1 614-385-0245', 4, '009122672579389590', '150 East Alley Apartment 33, Columbus, GA 43201, United States', '1995-01-07', 0, 0, 'fujy66', '2007-04-12', 'yuto7', '2002-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS778369856166', '吉田結翔', 0, '+44 (121) 622 9821', 1, '534092445215576628', 'Flat 12, 443 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1994-11-28', 0, 0, 'yoyuito', '2007-07-09', 'yoshyuito', '2006-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS138512514524', 'Earl Boyd', 1, '+86 21-336-3289', 3, '073117186871337298', 'Room 27, CR Building, 244 Ganlan Rd, Pudong, Shanghai, China', '1986-01-24', 0, 0, 'eb5', '2020-03-18', 'earlb', '2005-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS982172053660', '野口翼', 0, '+81 90-7530-3323', 1, '193317077992595607', '日本東京渋谷区代々木二丁目3番11号43階', '1987-04-07', 0, 0, 'tsubasanoguchi', '2003-08-18', 'tsnog819', '2012-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS764735896281', '黄宇宁', 0, '+44 (121) 090 6272', 4, '693155942691746963', 'Block 4, 372 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1995-05-03', 0, 0, 'yunihuang8', '2014-09-02', 'huangyuning4', '2010-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS821268337458', '薛宇宁', 0, '+1 330-505-2043', 4, '923941512446256388', '623 West Market Street Suite 10, Akron, OH 44333, United States', '1997-03-10', 0, 0, 'yuning10', '2019-07-30', 'yuningxue', '2002-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS425484950483', '錢頴思', 1, '+44 (1223) 70 1744', 0, '096253814610210392', 'No.15 Main building, 477 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1987-06-30', 0, 0, 'wingsze10', '2019-06-16', 'cwingsze', '2000-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS233469384578', 'Joan Wallace', 0, '+81 70-2462-9200', 4, '815188697376489549', '日本なごやし北区楠味鋺三丁目80番12号50階', '1990-10-08', 0, 0, 'waljo9', '2013-06-07', 'joanwallace', '2008-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS294339056955', '山下美月', 0, '+86 20-416-3566', 3, '426136108183551897', 'No.22 building, 70 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1992-01-23', 0, 0, 'yamashitamits', '2017-12-26', 'mitsukiyamashita', '2019-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS788605417103', 'Chris Crawford', 0, '+86 167-8682-2695', 2, '107043950686696901', '中国深圳龙岗区布吉镇西环路867号29号楼', '1994-09-27', 0, 0, 'crawford11', '2003-12-15', 'chris707', '2007-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS590643404722', 'Dorothy Scott', 1, '+86 755-078-2681', 2, '430332832584286546', '中国深圳龙岗区布吉镇西环路679号华润大厦6室', '1998-09-11', 0, 0, 'dorothy1210', '2004-05-13', 'dscott10', '2009-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS155504967202', 'Diane Fox', 0, '+44 (116) 400 3905', 1, '233387395644486747', 'No.4 Main building, 885 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1997-03-06', 0, 0, 'diane54', '2013-04-03', 'fod', '2013-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS593266651266', '蔣德華', 1, '+1 838-085-0135', 4, '363029781056769612', '255 Lark Street Apartment 3, Albany, NY 12210, United States', '1997-08-15', 0, 0, 'takwahc', '2019-11-09', 'takwah20', '2002-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS463032163147', '谭晓明', 0, '+86 10-5878-1456', 3, '940087817504216588', '中国北京市朝阳区三里屯路394号40楼', '1994-03-27', 0, 0, 'xiaomt', '2014-08-17', 'tanxi1962', '2016-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS605557170412', '有村葵', 0, '+1 213-512-3661', 1, '716743392218480381', '227 Sky Way Suite 7, Los Angeles, CA 90043, United States', '1999-01-03', 0, 0, 'aoiarim', '2020-08-27', 'ara18', '2005-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS568016744636', 'Paul Soto', 0, '+81 66-623-2331', 3, '928547244819022090', '13-kai, 2-1-12 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1995-03-10', 0, 0, 'ps47', '2014-09-25', 'sopaul8', '2021-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS596954273350', 'Alan Howard', 1, '+81 70-1177-4796', 0, '042880472902167206', '日本おおさかし西成区出城一丁目1番14号50階', '1994-10-26', 0, 0, 'alahoward', '2006-12-07', 'ahoward', '2020-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS295042532353', '關梓晴', 1, '+86 769-4095-8871', 3, '757830946784898383', 'No.30 building, 986 Kengmei 15th Alley, Dongguan, China', '1988-06-12', 0, 0, 'tszching56', '2006-10-12', 'tckwan', '2014-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS494756276488', '邵睿', 1, '+1 330-184-2257', 4, '201273801107223572', '346 West Market Street Suite 28, Akron, OH 44333, United States', '1990-05-18', 0, 0, 'shaor', '2018-05-21', 'srui', '2016-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS750818726769', '谭睿', 1, '+44 (1865) 11 8005', 0, '749195267075976731', 'Flat 15, 454 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1987-10-03', 0, 0, 'tar', '2011-07-17', 'tan1989', '2002-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS243068603561', '前田光', 1, '+86 28-497-0024', 3, '200388912581094956', '中国成都市成华区玉双路6号676号7室', '1986-08-05', 0, 0, 'maedahikar', '2008-09-23', 'hikarumaed', '2000-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS316194250607', 'Nathan Chavez', 1, '+1 213-983-6553', 3, '796457750433015857', '640 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1991-03-04', 0, 0, 'natchavez4', '2004-09-11', 'nac', '2014-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS776722612158', '孫家明', 0, '+81 70-8949-1374', 4, '644665245906354178', '31F, 1-7-18 Omido, Higashiosaka, Osaka, Japan', '1993-01-14', 0, 0, 'kamingh', '2017-04-09', 'kamingh10', '2010-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS235172976085', 'Sharon Myers', 1, '+44 (116) 690 0588', 3, '074291177153448109', 'Unit 45, Oxford Eco Centre, 89 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1991-12-04', 0, 0, 'sharon9', '2002-04-07', 'sharon8', '2007-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS453066630481', '岩崎葵', 0, '+81 90-1939-8289', 2, '698071485690043474', '日本なごやし熱田区千年二丁目5番4号19階', '1985-10-06', 0, 0, 'aoi513', '2017-09-27', 'aiwa', '2021-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS257902035952', '黎富城', 1, '+44 7287 751270', 3, '093289483834239864', 'Flat 14, 411 New Street, Birmingham, B2 4DB, United Kingdom', '1996-03-29', 0, 0, 'fushingla', '2001-11-28', 'lfu', '2011-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS832080380848', '坂本陸', 1, '+1 718-556-1543', 2, '479743908974737756', '125 Nostrand Ave Apartment 40, Brooklyn, NY 11216, United States', '1988-02-08', 0, 0, 'sakamri', '2015-10-26', 'sriku', '2001-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS047925562324', '常嘉伦', 0, '+86 179-8011-2868', 1, '558565499386083961', 'Room 8, 326 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1998-04-12', 0, 0, 'chang605', '2004-12-13', 'chjialu52', '2021-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS416637826293', '宮崎蓮', 1, '+44 5481 490248', 1, '178045432380966604', 'Flat 49, 591 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1996-02-13', 0, 0, 'miyren7', '2010-09-11', 'renmiyazaki93', '2000-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS458385659233', '原蒼士', 1, '+44 5163 511259', 4, '604249718199917555', 'Block 33, 624 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1986-06-11', 0, 0, 'hara1', '2004-12-11', 'aoshi5', '2020-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS168557480603', '駱祖兒', 1, '+1 838-783-7845', 2, '688784035855822656', '896 State Street Apt 17, Albany, NY 12203, United States', '1997-06-26', 0, 0, 'locy8', '2011-05-17', 'choyee7', '2003-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS835961359220', 'Wayne Nguyen', 1, '+44 (116) 907 7793', 4, '444570620155435812', 'Block 43, 401 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1996-07-30', 0, 0, 'nwayne14', '2009-04-20', 'nguyen903', '2001-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS129447125255', '洪學友', 0, '+44 (1865) 96 0702', 3, '547197512449330352', 'Block 30, 864 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1987-06-08', 0, 0, 'hokyau5', '2019-02-07', 'hokyau2006', '2010-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS574622602827', 'Alice Powell', 1, '+81 80-0815-1469', 1, '731769836046750331', '日本札幌豊平区豊平三条十三丁目3番18号16号室', '1993-02-19', 0, 0, 'apowell', '2002-08-16', 'alicepowell', '2018-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS519838521374', '今井大輔', 1, '+86 135-3624-3447', 1, '989470399985390216', '中国上海市闵行区宾川路526号27室', '1993-11-09', 0, 0, 'imaidaisuke15', '2013-03-25', 'imaidaisuke1', '2009-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS777516913887', '谷口樹', 1, '+44 (116) 576 4554', 2, '508282602162586629', 'Unit 14, Oxford Eco Centre, 851 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-08-04', 0, 0, 'taniitsuki921', '2019-07-18', 'itsuktaniguchi', '2011-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS067671612608', 'Louis King', 0, '+81 66-359-8133', 2, '306348372224461311', '日本おおさかし平野区加美東四丁目9番13号15号室', '1993-10-03', 0, 0, 'kl68', '2003-09-14', 'louis907', '2003-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS395017253209', '清水湊', 1, '+81 11-366-9550', 2, '886017535495339449', '日本札幌白石区菊水三条五丁目2番19号41階', '1997-11-19', 0, 0, 'shimizumin65', '2003-02-08', 'smina3', '2013-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS506947257578', 'Carmen Jackson', 1, '+44 (20) 8627 2679', 3, '352279730896919216', 'No.29 Main building, 678 Hanover Street, London, W1S 1YD, United Kingdom', '1997-01-09', 0, 0, 'jcarmen', '2021-12-23', 'jcarmen10', '2010-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS639265540978', '斎藤架純', 0, '+81 80-4004-4531', 2, '287723510125330734', '23F, 4 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-12-24', 0, 0, 'saitkasumi', '2020-07-20', 'saito530', '2021-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS366046346252', '長谷川葵', 0, '+44 (151) 199 9076', 3, '111834140128501998', 'Unit 1, Oxford Eco Centre, 511 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1995-10-15', 0, 0, 'hasegawaao', '2012-04-30', 'hasegawaaoi4', '2001-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS658238193073', '有村紗良', 0, '+44 (151) 486 7290', 0, '134195498257850259', 'Block 40, 503 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1998-07-06', 0, 0, 'arimura4', '2001-07-31', 'sara55', '2014-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS989704584143', 'Matthew Jones', 0, '+86 21-337-0740', 1, '051676114167650629', '34F, 183 Hongqiao Rd., Xu Hui District, Shanghai, China', '1992-04-26', 0, 0, 'matthewjones', '2003-04-06', 'jmatthew2012', '2007-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS589801774706', '袁秀文', 1, '+81 80-4244-1774', 2, '348998731789928874', '33-kai, 1-5-5, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1986-07-28', 0, 0, 'yuensm90', '2001-12-19', 'yuen1', '2000-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS013355682564', '阿部湊', 0, '+1 838-624-5146', 4, '117940042560772374', '67 Central Avenue Apt 32, Albany, NY 12206, United States', '1992-03-20', 0, 0, 'abemin309', '2019-11-22', 'minabe', '2002-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS152753369625', '毛子韬', 1, '+44 5084 566273', 0, '282829780293565776', 'Unit 17, Oxford Eco Centre, 932 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1991-09-24', 0, 0, 'zitm2007', '2007-09-30', 'zitamao4', '2005-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS371050162712', '小野愛梨', 0, '+1 614-471-6230', 0, '775354988328940254', '575 East Alley Apartment 27, Columbus, GA 43201, United States', '1991-09-30', 0, 0, 'ono52', '2004-02-15', 'airion', '2006-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS291848573438', '罗宇宁', 0, '+44 5559 352126', 3, '023356882002792470', 'Unit 38, Oxford Eco Centre, 947 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1995-05-22', 0, 0, 'yuningluo', '2003-10-22', 'yuningl', '2007-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS867979803380', 'Eleanor Woods', 0, '+86 28-053-5743', 1, '784830121333771411', 'Room 35, No. 528, Shuangqing Rd, Chenghua District, Chengdu, China', '1990-12-11', 0, 0, 'woodselea', '2005-10-13', 'woodse', '2013-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS461876627891', '姚國榮', 1, '+86 28-688-5855', 3, '487911867713898842', '中国成都市锦江区红星路三段613号华润大厦29室', '1986-10-06', 0, 0, 'yeowkw', '2009-09-01', 'ykw', '2011-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS423554102802', '森田結翔', 1, '+86 136-6827-4688', 1, '060756532471297741', 'Room 48, CR Building, No.166, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-11-22', 0, 0, 'moryui', '2006-01-16', 'moyuit117', '2013-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS462606044403', '韩秀英', 0, '+81 74-587-0988', 3, '434908854111359952', '日本ならし西大寺赤田町一丁目7番6号16階', '1999-01-11', 0, 0, 'haxiu5', '2019-05-14', 'xiuying912', '2015-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS599093633266', 'Victoria Bennett', 1, '+44 5217 770146', 2, '961208644202572536', 'Flat 22, 568 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1990-03-15', 0, 0, 'victoriabenne', '2019-03-20', 'victoriab', '2021-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS002078529169', '關家輝', 1, '+81 80-2860-6820', 4, '549629640425325860', '31-kai, 2-1-15 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1985-12-28', 0, 0, 'kfkwan423', '2009-09-18', 'kkafai7', '2004-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS032168944142', 'Pauline Robertson', 1, '+1 614-512-2367', 1, '285680935444997290', '966 Diplomacy Drive Apt 17, Columbus, GA 43228, United States', '1989-02-23', 0, 0, 'prober', '2012-04-28', 'paulrober331', '2007-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS472059588511', '小林蒼士', 0, '+81 66-101-9763', 0, '473280137189600712', '日本おおさかし近江堂一丁目7番6号13号室', '1985-11-16', 0, 0, 'aoshi1988', '2005-04-27', 'akobayashi', '2015-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS183786303296', 'Craig Johnson', 1, '+86 190-2193-4516', 1, '634871740439568203', '中国上海市徐汇区虹桥路304号28室', '1995-09-09', 0, 0, 'johnsoncraig', '2015-05-23', 'craigjohnson', '2000-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS533113745745', '溫嘉欣', 0, '+1 718-242-2049', 1, '579104704120219330', '479 Nostrand Ave Apt 45, Brooklyn, NY 11216, United States', '1994-04-08', 0, 0, 'waky5', '2005-01-23', 'wankarya2', '2006-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS861295503109', '周梓晴', 1, '+86 180-2626-9864', 1, '507272223775442096', 'No.7 building, 164 Tianhe Road, Tianhe District, Guangzhou, China', '1987-06-17', 0, 0, 'tszchingch', '2005-10-18', 'tszchingcho', '2006-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS279298019987', '贺晓明', 1, '+86 180-9436-7944', 3, '782009404857461655', 'No.41 building, 418 Binchuan Rd, Minhang District, Shanghai, China', '1988-06-04', 0, 0, 'xiaominghe', '2014-04-10', 'hxi808', '2019-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS955942308018', 'Luis Rose', 1, '+86 755-088-6372', 4, '824963326247069628', '中国深圳福田区景田东一街985号11号楼', '1994-11-07', 0, 0, 'luisro', '2004-06-26', 'roselui4', '2006-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS393967953700', '梅學友', 1, '+44 (151) 814 2060', 3, '647588453900168794', 'No.35 Main building, 748 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1986-05-15', 0, 0, 'hymui', '2016-10-02', 'hokyaumui8', '2014-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS589574756733', '福田樹', 0, '+86 755-3903-6948', 1, '524719729942671906', '中国深圳罗湖区田贝一路782号50栋', '1996-12-27', 0, 0, 'itsuki7', '2000-01-04', 'fitsuk60', '2013-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS610461732497', '叶詩涵', 0, '+81 74-756-9259', 1, '984035752230885407', '日本ならし西大寺赤田町一丁目7番10号22階', '1985-02-20', 0, 0, 'yes', '2001-11-14', 'ye327', '2016-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS107403894640', '范云熙', 0, '+86 21-226-4606', 1, '153297770615996354', 'Room 19, 783 Ganlan Rd, Pudong, Shanghai, China', '1998-02-20', 0, 0, 'yunxifan', '2003-01-31', 'yfan', '2003-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS096857438048', '邵家輝', 0, '+86 151-2353-4839', 0, '248348312881948483', 'Room 4, 890 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1991-07-22', 0, 0, 'skf8', '2004-10-09', 'kfsiu4', '2010-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS253728379058', '田詩君', 1, '+81 11-484-7681', 3, '945977663669287727', '日本札幌中央区宮の森四条六丁目1番5号5号室', '1992-09-06', 0, 0, 'szekwan907', '2020-10-06', 'tinsk1956', '2020-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS716792237303', 'Pamela Grant', 1, '+1 312-097-6806', 1, '864546885462830540', '813 Rush Street Apt 13, Chicago, IL 60611, United States', '1998-03-15', 0, 0, 'grant83', '2019-07-17', 'pamelgrant4', '2020-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS665530054281', '渡辺光莉', 1, '+81 70-6672-9384', 3, '487986596733063647', '18F, 1-1-14 Deshiro, Nishinari Ward, Osaka, Japan', '1988-02-15', 0, 0, 'hikarsa', '2018-08-25', 'hikasato', '2022-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS484931151227', 'Jose Ferguson', 0, '+86 10-5379-6587', 4, '483053433859626559', 'Room 7, CR Building, 874 028 County Rd, Yanqing District, Beijing, China', '1989-03-26', 0, 0, 'jose3', '2003-06-15', 'jfer', '2000-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS891683922147', '田村大和', 1, '+1 312-081-7861', 4, '364239218727885344', '738 Pedway Apartment 10, Chicago, IL 60601, United States', '1996-05-19', 0, 0, 'tyamato87', '2015-07-31', 'tyamato5', '2010-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS757527695544', '盧家強', 0, '+81 66-679-1956', 4, '253018022725420929', 'Rm. 2, 3-27-8 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1985-02-20', 0, 0, 'kakeung4', '2018-01-15', 'lkk', '2015-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS230212837820', 'William Daniels', 0, '+1 838-402-1234', 3, '491864659094230393', '44 Broadway Suite 22, Albany, NY 12207, United States', '1997-02-23', 0, 0, 'daniels6', '2014-04-02', 'wdanie', '2009-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS242648518470', '中川涼太', 0, '+44 5223 658254', 4, '469457414910434853', 'Flat 38, 442 Maddox Street, London, W1S 1PU, United Kingdom', '1990-11-27', 0, 0, 'ryotanakagawa1948', '2019-08-28', 'ryn', '2014-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS354255593740', '萧睿', 0, '+81 90-3220-3696', 3, '482234344039300635', '日本東京千代田区丸の内一丁目6番6号23階', '1985-12-04', 0, 0, 'ruixiao', '2014-02-22', 'rxiao54', '2001-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS399113165124', '邓嘉伦', 1, '+81 11-230-4684', 1, '301109307835516782', '日本札幌清田区真栄四条五丁目19番15号30号室', '1985-07-02', 0, 0, 'dengjialun', '2013-06-08', 'jid', '2011-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS931807249261', 'Eva Castillo', 1, '+81 80-8408-5484', 3, '778320980512445223', '日本札幌厚別区上野幌一条二丁目1番9号13号室', '1988-08-30', 0, 0, 'evac', '2018-02-03', 'ec67', '2017-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS237104022156', '松田光', 0, '+86 755-117-9869', 3, '322606380872179316', '中国深圳罗湖区清水河一路109号27栋', '1997-01-23', 0, 0, 'himatsuda', '2005-06-26', 'hikarumatsuda', '2021-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS961289075320', '丁子韬', 0, '+44 (161) 120 3415', 2, '241905193818085624', 'Unit 12, Oxford Eco Centre, 798 Mosley St, Manchester, M2 3AQ, United Kingdom', '1997-05-17', 0, 0, 'dingz', '2012-08-19', 'dzitao113', '2010-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS532014055523', '萬發', 1, '+86 20-7792-2473', 0, '739582399670806255', 'No.47 building, 928 Xiaoping E Rd, Baiyun , Guangzhou, China', '1991-05-24', 0, 0, 'fatme91', '2020-08-04', 'mefat', '2016-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS216524403258', '萧嘉伦', 0, '+81 3-8195-8025', 4, '363059064828989099', '29F, 1-6-20, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1998-05-29', 0, 0, 'jialuxiao414', '2016-12-17', 'jialunxiao', '2019-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS605479690520', '姚震南', 0, '+81 74-785-3799', 2, '267235645315018155', '13-kai, 3-9-15 Gakuenminami, Nara, Japan', '1998-09-13', 0, 0, 'zhennany', '2005-03-08', 'yaoz1', '2002-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS122370656934', 'Christina Jackson', 1, '+81 90-8832-5890', 1, '853788757309709320', '日本札幌白石区菊水三条五丁目2番16号39号室', '1987-12-30', 0, 0, 'christinajackson', '2017-10-17', 'christinajacks', '2012-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS125700600215', '元慧珊', 1, '+44 7423 141260', 4, '190281182728857766', 'No.19 Main building, 487 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1999-01-26', 0, 0, 'waisan1990', '2012-11-23', 'yuenws1946', '2021-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS305524881452', 'Bruce Stone', 1, '+86 138-6202-1697', 1, '983342039773019793', '中国北京市房山区岳琉路691号47号楼', '1987-05-16', 0, 0, 'stonebruce', '2013-06-12', 'brucstone', '2010-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS761485392288', '龚云熙', 0, '+86 138-5172-6436', 2, '855187716035073044', '中国中山京华商圈华夏街35号36号楼', '1985-12-02', 0, 0, 'gong903', '2006-02-28', 'yunxigo', '2008-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS130667629080', 'Henry Gonzalez', 0, '+86 136-4390-4855', 3, '425572637836209347', 'No.28 building, 225 Yueliu Rd, Fangshan District, Beijing, China', '1987-04-15', 0, 0, 'gonzalez2', '2020-08-29', 'gonhenr', '2008-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS721850575557', 'Kathryn Ruiz', 0, '+1 213-518-4022', 4, '946416877844831678', '541 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1991-08-01', 0, 0, 'kathrruiz', '2018-10-29', 'ruizkathryn', '2004-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS702565868385', '馬俊宇', 1, '+86 191-6541-7212', 2, '330304281425637110', 'Room 17, CR Building, 677 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1990-08-02', 0, 0, 'ma915', '2012-10-27', 'macy1967', '2017-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS200548373147', 'Carol Snyder', 1, '+81 74-655-6511', 0, '089250217771208964', '日本ならし西大寺赤田町一丁目7番3号10階', '1986-10-04', 0, 0, 'snydercaro', '2015-11-09', 'casn', '2020-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS128379189213', '菊地愛梨', 1, '+81 90-9263-6803', 3, '800627584266559550', '日本ならし大和郡山市本庄町一丁目1番16号48階', '1998-05-30', 0, 0, 'kikair', '2010-12-04', 'kikuairi7', '2016-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS887104595329', 'Nathan Hernandez', 1, '+1 212-523-4926', 0, '348977934425921277', '51 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1986-03-11', 0, 0, 'hnatha5', '2008-04-30', 'hna67', '2003-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS524295732792', 'Brandon Turner', 1, '+81 80-0206-6517', 1, '332732868120462633', 'Rm. 16, 9 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-04-18', 0, 0, 'bturn19', '2016-09-18', 'turnerbrandon', '2007-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS580950499694', '谢睿', 0, '+1 213-114-9956', 1, '446478187524699503', '981 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1985-03-29', 0, 0, 'xr620', '2016-03-04', 'rxie', '2019-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS850438249161', '原田七海', 0, '+1 838-888-3313', 1, '607129983783162273', '739 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1995-10-11', 0, 0, 'hn6', '2017-04-28', 'haradanan', '2008-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS182598717891', '余秀英', 0, '+1 614-813-2540', 2, '625337495934716772', '976 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1991-06-03', 0, 0, 'xy3', '2014-06-19', 'xiuy', '2013-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS156031352710', 'Marie Wells', 0, '+81 90-8861-6247', 2, '253058305869001701', '48F, 5-2-11 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1986-05-11', 0, 0, 'marie53', '2017-01-28', 'mawells', '2001-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS135771163864', '有村詩乃', 1, '+86 140-0973-6829', 0, '626687917825598474', 'Room 13, 46 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1998-10-03', 0, 0, 'arishi', '2021-03-02', 'ashino', '2000-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS697116435367', '于晓明', 1, '+86 173-2795-2562', 0, '192691298545129256', 'No.48 building, 585 Xiaoping E Rd, Baiyun , Guangzhou, China', '1987-11-09', 0, 0, 'yux', '2008-05-20', 'yxiaoming', '2004-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS432534597215', '邵慧儀', 1, '+44 5035 610506', 2, '075816899139009565', 'Flat 40, 269 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1986-08-20', 0, 0, 'siwy', '2007-06-01', 'swaiyee1218', '2019-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS534609644735', '宣祖兒', 0, '+81 11-399-6961', 2, '744170439026498822', '46F, 5-19-20 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1992-09-19', 0, 0, 'choyee1975', '2004-02-16', 'hsuancy10', '2006-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS932056133538', 'Thomas Russell', 0, '+1 718-154-2841', 2, '451612705160904553', '337 Bergen St Apartment 17, Brooklyn, NY 11217, United States', '1992-01-19', 0, 0, 'thomaru317', '2002-04-22', 'thomasr', '2013-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS555567292212', 'Donna Simmons', 0, '+86 172-0516-8982', 2, '634757640140307358', 'Room 42, No. 104, Shuangqing Rd, Chenghua District, Chengdu, China', '1985-07-04', 0, 0, 'donnasimmo', '2010-09-15', 'dons79', '2008-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS892509347692', 'Phyllis Tucker', 1, '+44 (1223) 23 9154', 0, '173758617476135120', 'Unit 14, Oxford Eco Centre, 145 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1988-02-03', 0, 0, 'tuckerph5', '2019-09-25', 'tuckephy1024', '2001-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS916679300577', '罗璐', 1, '+86 28-122-3139', 4, '373427223754080910', '中国成都市锦江区人民南路四段13号29号楼', '1993-11-12', 0, 0, 'luolu529', '2009-01-23', 'luo1008', '2005-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS537122493813', '彭家明', 1, '+81 52-245-3838', 1, '215991988595643107', '日本なごやし守山区瀬古東二丁目171番14号50階', '1990-04-20', 0, 0, 'pkm10', '2001-07-08', 'kamingpang84', '2002-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS646375704959', 'Gladys Moore', 0, '+86 28-486-8583', 0, '196467251809805777', '中国成都市成华区玉双路6号110号28楼', '1986-02-09', 0, 0, 'gladysmoore', '2011-08-25', 'mooreg', '2016-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS875864927618', '太田玲奈', 0, '+81 11-833-0038', 3, '881094917078229969', '42F, 2-1-13 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-04-19', 0, 0, 'renao', '2012-10-26', 'rena508', '2012-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS981229963663', '谭云熙', 0, '+81 90-7110-1223', 3, '712488051618399080', '日本おおさかし東住吉区東田辺三丁目27番18号26階', '1987-05-23', 0, 0, 'tan1006', '2006-10-11', 'tanyunx4', '2000-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS704582811285', '柴田花', 1, '+81 70-6732-1455', 1, '711185760069036152', '36-kai, 3-27-15 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-06-01', 0, 0, 'hanas1', '2008-08-10', 'hanashi', '2002-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS806802471886', '方淑怡', 0, '+1 330-073-7555', 3, '829006391750218063', '118 Ridgewood Road Apt 46, Akron, OH 44321, United States', '1990-09-18', 0, 0, 'fongsy9', '2007-03-07', 'sukyee51', '2002-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS199149091653', '鄺淑怡', 1, '+86 132-5793-8230', 4, '303094356128765168', 'Room 36, 273 FuXingMenNei Street, XiCheng District, Beijing, China', '1995-09-13', 0, 0, 'syk', '2011-04-15', 'syk', '2003-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS855994794871', '吕宇宁', 1, '+44 7187 650287', 1, '988782502908900049', 'Unit 47, Oxford Eco Centre, 594 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1996-03-18', 0, 0, 'lu1130', '2018-02-26', 'lyunin', '2010-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS697085559981', '上田湊', 1, '+81 3-5621-6466', 1, '496153629324040868', '日本東京港区東新橋一丁目5番14号32号室', '1995-05-14', 0, 0, 'uemina', '2021-09-03', 'minatou', '2015-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS796920737912', '宮崎優奈', 1, '+1 213-609-7832', 0, '405203327657426551', '525 S Broadway Suite 37, Los Angeles, CA 90015, United States', '1990-06-18', 0, 0, 'ym44', '2012-12-06', 'miyazaki10', '2017-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS321642492088', 'Shannon Nelson', 1, '+86 769-5656-4283', 1, '408515650833168768', 'No.18 building, 795 Huanqu South Street 2nd Alley, Dongguan, China', '1992-05-31', 0, 0, 'nelshannon', '2003-06-13', 'shannon76', '2020-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS065962587153', '村上百花', 0, '+81 11-948-1560', 2, '624236108224306088', '6-kai, 5-4-2 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1992-10-11', 0, 0, 'momokam3', '2003-04-22', 'murakamimo', '2017-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS865898611888', '刘子韬', 1, '+81 66-780-6561', 1, '905790759622211587', '日本おおさかし近江堂一丁目7番2号45階', '1987-06-26', 0, 0, 'liuzitao', '2000-02-09', 'liuzit4', '2003-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS393017337405', '谷口一輝', 0, '+81 3-8964-3810', 0, '454592505182313120', '日本東京中央区銀座三丁目12番8号14階', '1991-01-13', 0, 0, 'ikki611', '2012-03-13', 'ikkitani', '2002-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS565353672181', '杜秀英', 1, '+81 80-0898-1802', 2, '808980114995647830', '日本なごやし北区清水三丁目19番7号16階', '1992-02-25', 0, 0, 'dux', '2016-08-22', 'xdu3', '2018-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS028456004813', '薛子异', 1, '+86 21-952-7848', 3, '958793342539139617', 'Room 43, 786 Binchuan Rd, Minhang District, Shanghai, China', '1994-03-20', 0, 0, 'zxu2', '2017-03-04', 'xueziyi', '2019-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS152777140107', '内田陸', 1, '+86 28-3947-6386', 2, '016626040902353834', 'No.45 building, No. 701, Shuangqing Rd, Chenghua District, Chengdu, China', '1994-09-08', 0, 0, 'uchidr', '2013-10-22', 'riuch84', '2008-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS945060409767', '岡田陽太', 1, '+81 66-210-1919', 0, '700523391413778593', '34-kai, 1-7-20 Omido, Higashiosaka, Osaka, Japan', '1991-05-31', 0, 0, 'okada72', '2005-01-01', 'okada6', '2017-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS025111154251', '島田葵', 1, '+1 614-608-5797', 4, '440694148219712282', '632 Wicklow Road Suite 31, Columbus, GA 43204, United States', '1992-02-09', 0, 0, 'shimadaaoi', '2003-05-18', 'aos1225', '2016-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS670494399695', '吕杰宏', 1, '+86 21-6305-8309', 3, '577084537226403862', '中国上海市徐汇区虹桥路197号11室', '1991-03-10', 0, 0, 'ljiehong7', '2011-12-29', 'lj329', '2005-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS745926956392', 'Phillip Bailey', 1, '+86 10-3822-5683', 0, '014978647008713040', '中国北京市东城区东单王府井东街293号26室', '1995-10-20', 0, 0, 'bailep', '2002-11-12', 'phillip7', '2011-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS676638429286', '潘嘉伦', 0, '+86 137-1735-0351', 1, '959783029787541182', '中国成都市成华区双庆路407号41号楼', '1990-07-05', 0, 0, 'jpan89', '2014-07-03', 'paj', '2000-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS404547107203', '崔震南', 0, '+86 769-9785-0236', 4, '496921540770021403', '中国东莞东泰五街767号39号楼', '1995-01-26', 0, 0, 'cuizhennan', '2010-04-03', 'zhenncui', '2020-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS789898064084', '石田美羽', 1, '+1 213-154-2542', 1, '828143607186253730', '924 Alameda Street Apartment 23, Los Angeles, CA 90002, United States', '1988-07-06', 0, 0, 'miuish1029', '2007-07-27', 'ishidam', '2002-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS697397944774', 'Sara Miller', 1, '+44 5626 937558', 4, '373182515417971482', 'Flat 10, 682 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1995-09-17', 0, 0, 'saramiller2', '2022-01-28', 'saramiller', '2020-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS155602528522', '谢璐', 1, '+81 90-7509-9709', 1, '429963627484989496', '日本なごやし北区楠味鋺三丁目80番1号48号室', '1991-04-30', 0, 0, 'lux', '2005-11-10', 'luxie', '2008-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS412187881830', '韓頴思', 0, '+1 213-155-5820', 2, '747996802960639381', '240 Grape Street Apartment 10, Los Angeles, CA 90002, United States', '1999-02-14', 0, 0, 'wingszehan', '2001-02-20', 'han75', '2016-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS203765309192', 'Joyce Hawkins', 0, '+86 10-246-0380', 3, '586172932407595390', 'No.24 building, 312 028 County Rd, Yanqing District, Beijing, China', '1987-04-09', 0, 0, 'joycehawkins12', '2001-09-11', 'joycha118', '2017-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS440248634995', '王曉彤', 0, '+44 7292 150604', 3, '284263616305757495', 'Flat 31, 27 Park End St, Oxford, OX1 1JD, United Kingdom', '1992-05-09', 0, 0, 'hiutungwo', '2014-06-19', 'htwong1968', '2018-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS402192108858', '邱宇宁', 0, '+86 164-2178-6982', 3, '502391095491797797', '中国深圳罗湖区清水河一路590号40楼', '1993-06-28', 0, 0, 'yuningqiu2014', '2015-09-19', 'yuning7', '2001-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS357311875180', '竹内涼太', 1, '+81 66-086-2177', 3, '157676489391646955', '日本おおさかし西成区出城一丁目1番9号3号室', '1994-05-01', 0, 0, 'takeuchi209', '2013-04-18', 'ryottak', '2010-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS290343091649', '鄺力申', 0, '+81 70-9146-9041', 1, '686967290335095384', '10F, 3-19-3 Shimizu, Kita Ward, Nagoya, Japan', '1986-03-03', 0, 0, 'lskwong75', '2016-04-19', 'kwongls3', '2005-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS855209255911', '莫宇宁', 1, '+86 755-0513-6416', 3, '575171314865327322', '中国深圳龙岗区布吉镇西环路436号14号楼', '1987-07-16', 0, 0, 'myuning1006', '2019-08-03', 'yuningmo', '2012-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS125787466743', '劉學友', 1, '+86 769-379-7858', 4, '991897990942541480', 'No.11 building, 939 Shanhu Rd, Dongguan, China', '1998-06-20', 0, 0, 'lau712', '2014-04-10', 'lauhy602', '2010-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS308754707132', 'Leroy Morgan', 0, '+86 169-8340-6022', 4, '619722520157816605', 'No.11 building, 588 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1995-08-08', 0, 0, 'leroymorgan1104', '2006-04-01', 'lemorgan117', '2013-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS184460890528', '徐璐', 0, '+81 70-8061-7062', 3, '588985507559420679', '40F, 5-19-5 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1995-02-10', 0, 0, 'luxu', '2001-08-06', 'luxu1007', '2011-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS073505664738', '羅天榮', 0, '+81 90-5311-9487', 1, '245797901819820677', '日本なごやし北区楠味鋺三丁目80番4号34号室', '1989-02-01', 0, 0, 'lotw', '2010-06-27', 'lo1107', '2014-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS807519089263', '苏震南', 0, '+86 130-7424-4563', 0, '263331927353084238', '中国深圳福田区深南大道200号12号楼', '1990-05-03', 0, 0, 'suzhennan', '2007-09-26', 'szhennan', '2020-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS499308246525', '宮崎美咲', 0, '+81 11-730-8788', 1, '612874622996744840', '日本札幌白石区菊水三条五丁目4番12号31階', '1987-06-09', 0, 0, 'miyazm', '2007-09-19', 'misakmiyazaki', '2008-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS498348449754', '中森聖子', 1, '+81 11-033-1300', 3, '772617299136309068', 'Rm. 5, 13-3-2 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1986-04-11', 0, 0, 'snaka', '2008-11-16', 'ns103', '2001-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS566091973742', 'Douglas Mason', 1, '+86 755-8384-5254', 3, '439546068995135044', '15F, 170 Jingtian East 1st St, Futian District, Shenzhen, China', '1996-06-14', 0, 0, 'masdougl', '2009-12-04', 'masondouglas', '2017-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS802787603862', '吉田光', 1, '+86 165-7230-4215', 1, '927883221532116801', 'No.12 building, 726 Ganlan Rd, Pudong, Shanghai, China', '1989-04-17', 0, 0, 'hyosh', '2014-12-18', 'hikaruyoshida', '2000-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS723902785468', '中川玲奈', 1, '+86 10-196-4364', 4, '805655785245569657', 'No.17 building, 371 FuXingMenNei Street, XiCheng District, Beijing, China', '1992-04-10', 0, 0, 'rena', '2019-10-13', 'rena831', '2012-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS151598629322', '徐杰宏', 1, '+86 194-1307-6314', 1, '634652391633804843', 'No.46 building, 332 Tianhe Road, Tianhe District, Guangzhou, China', '1991-01-09', 0, 0, 'jiehongxu', '2014-12-31', 'jiehongxu1965', '2020-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS235447702859', '邱安琪', 1, '+86 760-365-6915', 0, '025424892845114686', '中国中山紫马岭商圈中山五路223号38号楼', '1989-12-29', 0, 0, 'anq', '2005-07-01', 'qian', '2020-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS996447728218', '潘云熙', 0, '+86 160-5313-8344', 2, '657568544797507503', 'Room 7, CR Building, 552 Jianxiang Rd, Pudong, Shanghai, China', '1991-06-16', 0, 0, 'pyunxi01', '2016-10-02', 'pyu10', '2004-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS500009691581', '木下聖子', 1, '+1 330-418-9958', 0, '489866243228465159', '918 Ridgewood Road Apartment 30, Akron, OH 44321, United States', '1997-04-03', 0, 0, 'seiko9', '2011-03-20', 'kinoshitaseiko801', '2021-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS900346424707', '工藤美緒', 0, '+86 760-7698-2112', 3, '546174138745537644', '中国中山乐丰六路903号华润大厦37室', '1986-11-21', 0, 0, 'kudo45', '2007-09-05', 'kmi', '2008-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS195056736995', '佐野光莉', 0, '+81 11-333-8004', 0, '478987540785124026', '26-kai, 2-1-11 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1991-09-21', 0, 0, 'sanohikari', '2019-03-20', 'sano7', '2020-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS772667970426', '工藤美咲', 0, '+44 5127 022420', 3, '224536308768398050', 'No.50 Main building, 597 Pollen Street, London, W1S 1NG, United Kingdom', '1986-09-07', 0, 0, 'misakikud', '2018-08-20', 'miskudo', '2009-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS480543754080', '李學友', 1, '+1 330-577-3362', 2, '895110522236403636', '481 Collier Road Suite 11, Akron, OH 44320, United States', '1985-02-23', 0, 0, 'hylee1', '2017-11-30', 'lehy', '2013-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS042064719296', '森玲奈', 1, '+81 80-8294-6771', 1, '940002441146302658', '日本なごやし北区清水三丁目19番13号12階', '1985-08-15', 0, 0, 'morre', '2018-03-07', 'morir09', '2000-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS563488032631', '曹詩涵', 1, '+44 5172 485985', 2, '951378040156393756', 'Flat 8, 976 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1985-11-30', 0, 0, 'cshi48', '2002-04-30', 'shihancao811', '2010-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS517428574680', 'Gregory Castro', 0, '+86 760-5486-0513', 3, '540100259448723400', '中国中山紫马岭商圈中山五路368号35室', '1985-11-16', 0, 0, 'castro202', '2014-09-13', 'gregorycas57', '2009-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS348150769452', 'Deborah Wells', 1, '+81 80-6848-7659', 4, '891312666670798150', 'Rm. 29, 1-1-8 Deshiro, Nishinari Ward, Osaka, Japan', '1992-03-01', 0, 0, 'wellsdebo', '2005-03-23', 'deborwells', '2020-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS387185712177', 'Marjorie Diaz', 0, '+44 5892 298918', 3, '934084168819181968', 'Unit 48, Oxford Eco Centre, 570 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1987-06-22', 0, 0, 'diaz1109', '2016-05-11', 'dmarjo', '2002-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS164113205499', '河野詩乃', 0, '+86 187-8305-2788', 3, '245445985178315757', 'Room 7, 323 Shennan Ave, Futian District, Shenzhen, China', '1986-09-14', 0, 0, 'shinoko6', '2007-06-22', 'konoshin2', '2004-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS352959408864', '钟詩涵', 1, '+1 718-281-5168', 1, '550234101983147061', '596 Bergen St Apt 7, Brooklyn, NY 11217, United States', '1987-11-24', 0, 0, 'shihzhong', '2016-02-05', 'zhongs', '2004-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS455436282815', '魏岚', 1, '+1 330-877-2789', 2, '358810007119411696', '269 Ridgewood Road Apt 27, Akron, OH 44321, United States', '1995-07-15', 0, 0, 'lw127', '2011-04-22', 'lwei', '2016-02-29'); +INSERT INTO "public"."userinfo" VALUES ('TS566858003836', '羅玲玲', 1, '+1 212-606-4733', 0, '027523214485528152', '644 Wooster Street Suite 16, New York, NY 10012, United States', '1988-03-21', 0, 0, 'loll1001', '2006-09-23', 'lilo7', '2016-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS689404493880', 'Cynthia Green', 0, '+86 134-0267-2213', 1, '567087896216523165', 'Room 50, CR Building, 627 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1987-02-09', 0, 0, 'cynthgreen', '2010-07-14', 'cynthiagreen9', '2001-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS023382180753', 'Russell Nguyen', 0, '+86 163-7435-7091', 3, '827504432022877327', 'Room 35, CR Building, 510 Shanhu Rd, Dongguan, China', '1990-03-28', 0, 0, 'ngurussell', '2000-09-26', 'nrussell', '2004-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS771004966359', '中川蓮', 0, '+81 90-0511-5396', 3, '625287676582850844', '日本ならし西大寺赤田町一丁目7番18号20号室', '1995-09-25', 0, 0, 'renn8', '2005-12-14', 'rnak5', '2018-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS042743689888', '太田百花', 1, '+44 (151) 931 8235', 4, '289218057908203873', 'Block 7, 240 Redfern St, Liverpool, L20 8JB, United Kingdom', '1995-12-22', 0, 0, 'otamomoka10', '2012-02-27', 'omomoka', '2017-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS174898553021', '木村結翔', 0, '+1 330-849-4653', 2, '309628696419812538', '138 Ridgewood Road Apartment 40, Akron, OH 44321, United States', '1986-01-10', 0, 0, 'kimura95', '2020-08-31', 'kimuray', '2005-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS017978423783', '山下百花', 0, '+44 (161) 420 9593', 2, '319926056336317602', 'Block 44, 648 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-08-01', 0, 0, 'yamashitamomoka', '2006-06-28', 'momoka93', '2007-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS771044729577', 'Nathan Marshall', 1, '+44 7138 003227', 3, '128088427213345187', 'Block 47, 639 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1995-01-22', 0, 0, 'nathamarshall', '2018-03-21', 'marshallnatha8', '2021-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS332543661990', 'Deborah Mendez', 1, '+81 90-4625-0166', 4, '371846621913051831', 'Rm. 20, 1-6-6, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1988-09-06', 0, 0, 'deborahm', '2010-01-22', 'mendde', '2020-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS753124462611', '蔡璐', 1, '+86 196-9889-6489', 3, '848977449461174191', '中国中山京华商圈华夏街905号30栋', '1992-03-17', 0, 0, 'clu306', '2000-05-20', 'cailu310', '2014-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS632420640258', '唐朝偉', 1, '+81 52-900-1216', 2, '236834614536902456', '20F, 5 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1987-01-13', 0, 0, 'tochiuwai15', '2010-02-21', 'toncw7', '2002-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS954429290477', '廖仲賢', 1, '+86 148-9663-2018', 4, '066496058220177300', 'No.27 building, 606 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1993-11-02', 0, 0, 'chungyinli', '2005-03-13', 'liaocy1106', '2020-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS702383735853', '胡子韬', 0, '+1 213-294-9173', 4, '748256855801711651', '215 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1988-02-19', 0, 0, 'zitaohu', '2013-02-03', 'zitaohu', '2013-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS798346069849', '工藤大地', 1, '+81 11-674-4937', 2, '924805094856219221', '7-kai, 13-3-12 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1998-02-16', 0, 0, 'kdaichi', '2015-03-23', 'daichikudo62', '2003-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS757981619747', 'Adam White', 0, '+86 10-175-0466', 2, '034731990029177257', 'Room 28, 546 East Wangfujing Street, Dongcheng District , Beijing, China', '1996-03-23', 0, 0, 'adamw', '2000-10-25', 'whiteadam8', '2001-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS032346530300', '江杰宏', 0, '+86 755-729-5661', 1, '314166829375634990', '中国深圳福田区景田东一街617号14栋', '1986-09-04', 0, 0, 'jiehoji1001', '2004-03-18', 'jiehong329', '2006-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS004486754241', '田致远', 1, '+1 614-126-9143', 0, '160918752473148514', '55 Diplomacy Drive Apt 10, Columbus, GA 43228, United States', '1989-11-30', 0, 0, 'zhiyuan1994', '2007-05-01', 'tiazhi1944', '2020-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS774094116447', '酒井瑛太', 1, '+86 20-964-3078', 2, '187397354816544423', 'No.24 building, 726 Tianhe Road, Tianhe District, Guangzhou, China', '1991-05-01', 0, 0, 'esak', '2002-12-24', 'eita2006', '2008-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS845436928242', '武璐', 0, '+1 718-390-7518', 0, '357932442049264395', '733 Flatbush Ave Apartment 12, Brooklyn, NY 11225, United States', '1993-11-27', 0, 0, 'wulu', '2017-02-17', 'wul1', '2009-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS615449298713', 'Micheal Robinson', 0, '+44 (151) 371 4342', 2, '281958231371766233', 'No.11 Main building, 747 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1997-09-26', 0, 0, 'robinsonm1230', '2015-12-14', 'robinson1006', '2002-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS441565929532', '卢睿', 0, '+86 755-1610-0833', 1, '528064142127192917', '中国深圳罗湖区蔡屋围深南东路824号30楼', '1994-09-13', 0, 0, 'lurui', '2014-09-01', 'lu502', '2012-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS788809205470', '松田悠人', 1, '+86 755-165-6986', 0, '338676361165073770', '中国深圳罗湖区蔡屋围深南东路233号10号楼', '1996-10-11', 0, 0, 'ym2011', '2004-02-25', 'matsudayu2', '2001-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS621533007739', '孔子韬', 0, '+86 28-0397-4739', 3, '449292711370775608', 'No.1 building, 490 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1995-05-09', 0, 0, 'zitaoko', '2004-12-25', 'zkong', '2018-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS785143139560', '崔杰宏', 1, '+86 755-7792-7665', 3, '466764026255219289', 'No.11 building, 287 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1996-09-05', 0, 0, 'cuij', '2009-07-08', 'cuijiehong08', '2014-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS675661306328', 'Jeffery Jones', 0, '+1 330-561-6243', 2, '484102559860107996', '656 Collier Road Suite 11, Akron, OH 44320, United States', '1996-03-07', 0, 0, 'jefferyjones', '2011-12-23', 'jonesj10', '2004-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS042054090890', '青木大地', 0, '+1 838-485-3249', 1, '357284897793196740', '705 Central Avenue Apt 29, Albany, NY 12205, United States', '1996-06-14', 0, 0, 'aodaichi6', '2001-05-05', 'daichi69', '2007-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS154974026539', 'Deborah Nelson', 1, '+86 769-0444-5765', 3, '061942850041536192', '中国东莞坑美十五巷182号34号楼', '1986-08-25', 0, 0, 'dnelson', '2016-05-06', 'debne', '2008-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS094952181503', '村田凛', 0, '+44 5798 620299', 3, '417386027645833248', 'Unit 2, Oxford Eco Centre, 406 Hanover Street, London, W1S 1YD, United Kingdom', '1993-04-06', 0, 0, 'mri69', '2020-11-17', 'rinmurata', '2017-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS649097969089', '村上彩乃', 0, '+81 90-7893-6225', 1, '542573613245951411', '日本札幌白石区菊水三条五丁目4番8号33階', '1996-09-26', 0, 0, 'murakami3', '2000-04-14', 'mayan', '2010-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS332633242829', '石井樹', 0, '+86 760-004-1676', 3, '529901010032821935', 'No.35 building, 429 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1985-01-15', 0, 0, 'ishiits', '2005-05-25', 'iish1106', '2014-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS596432727205', 'Ellen Salazar', 0, '+44 5465 305053', 1, '835638443537821932', 'Flat 2, 227 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1991-06-02', 0, 0, 'salazar1202', '2015-05-25', 'ellensalazar', '2005-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS126615337969', 'Carmen Robertson', 0, '+86 10-850-9751', 1, '801491667110586329', '中国北京市西城区西長安街203号48室', '1998-06-05', 0, 0, 'carr', '2003-03-23', 'robertsoncarmen', '2012-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS815326214248', '内田明菜', 1, '+81 90-0768-3821', 4, '185213230797613845', '日本おおさかし近江堂一丁目7番17号4階', '1996-03-29', 0, 0, 'uchidakina', '2001-02-08', 'uchida827', '2003-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS974826408668', '苗慧儀', 0, '+81 66-973-3395', 3, '376199886793320252', '日本おおさかし東住吉区東田辺三丁目27番19号26階', '1987-02-06', 0, 0, 'miuwaiyee', '2018-04-21', 'miuwaiyee1', '2009-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS547380603964', 'Louise Mason', 0, '+81 52-271-8579', 3, '746847254291243808', 'Rm. 29, 10 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1995-10-07', 0, 0, 'mlouise02', '2003-07-03', 'mlouise', '2021-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS223158980819', '阿部湊', 0, '+1 213-348-3341', 2, '237125353518090294', '767 Sky Way Apt 13, Los Angeles, CA 90043, United States', '1986-08-18', 0, 0, 'abeminato', '2002-10-02', 'minatoab', '2007-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS042828085376', '石井美咲', 0, '+81 11-701-9980', 2, '426091670345595177', '日本札幌豊平区豊平三条十三丁目3番13号37階', '1988-07-22', 0, 0, 'misishii', '2007-01-15', 'misakishii83', '2002-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS470807768437', 'Matthew Stewart', 0, '+81 11-620-8205', 4, '335989528375679595', '日本札幌白石区菊水三条五丁目2番2号1階', '1995-10-20', 0, 0, 'matthewstewart', '2021-01-30', 'stewamatthew', '2020-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS045942846967', '邱朝偉', 0, '+44 (116) 865 4166', 4, '986982181390437927', 'No.34 Main building, 941 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1987-06-10', 0, 0, 'chiuwai7', '2002-02-19', 'ycw1', '2010-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS080763254270', '蔡慧琳', 0, '+1 614-136-4837', 2, '863060042244668840', '353 East Alley 3rd Floor, Columbus, GA 43201, United States', '1998-06-21', 0, 0, 'choi2', '2012-06-30', 'choiwl926', '2020-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS593697685567', '樊心穎', 1, '+86 28-4798-3726', 3, '438338350599565754', '中国成都市成华区二仙桥东三路736号华润大厦11室', '1994-06-15', 0, 0, 'fsu', '2014-11-01', 'fan7', '2010-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS960619597785', '黎曉彤', 1, '+86 769-2943-3050', 2, '986366286939493179', '中国东莞珊瑚路702号45号楼', '1995-03-09', 0, 0, 'hiutunglai', '2008-04-24', 'htl', '2015-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS844188971124', 'Wayne Graham', 0, '+86 21-411-1677', 0, '335559486674437456', 'No.3 building, 913 Jianxiang Rd, Pudong, Shanghai, China', '1988-01-05', 0, 0, 'grahw', '2018-10-01', 'grw8', '2000-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS404370306539', '吳天樂', 1, '+44 (116) 166 7966', 3, '245670714508283003', 'Block 14, 331 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1989-10-23', 0, 0, 'tinlokn', '2002-03-16', 'tinlok405', '2011-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS061845030256', '關明', 0, '+86 179-3318-3440', 2, '880397804359542077', 'No.3 building, 343 Shennan Ave, Futian District, Shenzhen, China', '1987-04-13', 0, 0, 'kwanmi', '2000-06-23', 'mingkwan', '2000-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS241409253527', '中森舞', 1, '+81 66-564-8814', 2, '834068422959747752', '日本おおさかし平野区加美東四丁目9番6号24号室', '1986-04-05', 0, 0, 'nakamorima5', '2003-09-15', 'nmai', '2002-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS285303730624', '馮慧珊', 0, '+86 145-1845-0507', 1, '327156589499856907', '中国上海市闵行区宾川路507号17号楼', '1996-01-23', 0, 0, 'fws', '2011-09-23', 'wsfung', '2002-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS376051934171', '黃惠妹', 1, '+81 80-7380-4090', 3, '218244439910925096', '日本おおさかし西成区出城一丁目1番9号33号室', '1997-10-20', 0, 0, 'huw', '2015-09-12', 'hmwon', '2013-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS710894499013', '宣國榮', 1, '+86 21-9229-7730', 3, '258602865486886350', '中国上海市闵行区宾川路756号36室', '1996-02-23', 0, 0, 'kwhsuan523', '2004-09-28', 'kwh', '2017-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS508160786395', '杜慧琳', 0, '+44 (151) 186 5207', 2, '109082423956327623', 'Flat 2, 294 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1994-12-11', 0, 0, 'wlto', '2021-10-29', 'towl812', '2017-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS182597858623', '邱杰宏', 1, '+44 5588 346679', 4, '668705607412417708', 'No.3 Main building, 20 Hanover St, Liverpool, L1 4AF, United Kingdom', '1997-02-15', 0, 0, 'jieqiu', '2014-09-25', 'qiujieh', '2018-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS131010560542', 'Amanda Graham', 0, '+1 718-835-1505', 2, '101469032793331883', '343 Flatbush Ave Suite 42, Brooklyn, NY 11225, United States', '1999-01-08', 0, 0, 'graham2003', '2006-04-03', 'amandagraham', '2016-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS557743620624', 'Luis Murphy', 1, '+86 755-0339-7226', 3, '719435219984217586', 'Room 37, CR Building, 736 Shennan Ave, Futian District, Shenzhen, China', '1998-07-29', 0, 0, 'luismurphy', '2015-08-01', 'murphl2018', '2007-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS639489882446', '吕嘉伦', 0, '+86 21-4622-8774', 2, '931553840862673614', '37F, 892 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-12-31', 0, 0, 'lu129', '2004-03-12', 'lj1', '2020-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS514770346591', '韓慧嫻', 1, '+81 90-0031-8546', 3, '497083071838389726', '日本札幌中央区宮の森四条六丁目1番5号26階', '1990-02-24', 0, 0, 'hawh2', '2011-05-22', 'hanwh9', '2019-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS300796758982', '萬家強', 1, '+81 11-314-1766', 4, '997655497592113865', 'Rm. 13, 5-4-14 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1987-05-04', 0, 0, 'mengkk', '2009-03-05', 'meng627', '2000-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS285711434209', 'Christopher Nelson', 0, '+44 (1865) 94 1474', 0, '076203463435520999', 'No.28 Main building, 863 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1998-05-21', 0, 0, 'chrne', '2006-11-04', 'nelson408', '2003-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS727653088364', '秦璐', 1, '+81 3-5844-5494', 1, '411974340809123799', '日本東京千代田区丸の内一丁目6番6号37階', '1990-04-14', 0, 0, 'qilu', '2002-06-16', 'qinlu', '2014-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS222704104300', 'Antonio Martin', 1, '+86 147-5316-9898', 3, '973914369604413239', 'No.2 building, 63 68 Qinghe Middle St, Haidian District, Beijing, China', '1986-02-18', 0, 0, 'martinantonio', '2018-12-02', 'antomartin', '2011-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS921779923677', '江頴思', 1, '+81 52-062-0664', 3, '238268299989144283', '日本なごやし北区清水三丁目19番13号42階', '1994-07-02', 0, 0, 'wingszekong', '2010-11-27', 'wskong', '2017-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS148257942174', '贺子异', 1, '+81 80-0450-6360', 3, '891836574173395295', '43F, 15 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1989-05-04', 0, 0, 'he220', '2010-05-10', 'zhe', '2005-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS833302069764', '陆岚', 0, '+44 (1865) 22 3554', 3, '360416123467341563', 'Flat 30, 267 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1987-06-16', 0, 0, 'llu', '2019-12-08', 'lal', '2003-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS852185125193', '曾杰宏', 0, '+86 146-1095-2250', 2, '847286923375380821', 'No.34 building, 648 Shanhu Rd, Dongguan, China', '1989-10-19', 0, 0, 'jiehong211', '2010-02-24', 'jzeng', '2020-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS196449177962', 'Ellen Morgan', 1, '+81 70-1465-8305', 1, '515565603693356101', '日本ならし大和郡山市本庄町一丁目1番5号37階', '1993-07-03', 0, 0, 'morgellen', '2018-02-04', 'morel7', '2009-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS360233244798', '杨岚', 1, '+44 (116) 909 8334', 3, '172250788291014054', 'Block 43, 294 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1995-06-03', 0, 0, 'yanlan328', '2021-11-17', 'laya', '2009-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS874854901327', 'Carrie Washington', 1, '+86 21-196-6142', 2, '875074641970515705', '中国上海市黄浦区淮海中路490号华润大厦29室', '1990-12-16', 0, 0, 'carriwash', '2020-08-08', 'carwashi4', '2013-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS707422443367', '梁秀文', 0, '+86 187-6669-3362', 3, '429188841983572501', 'No.16 building, 371 Tianhe Road, Tianhe District, Guangzhou, China', '1993-04-15', 0, 0, 'leung3', '2005-02-24', 'smleung2', '2006-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS365456147073', '藤原百花', 0, '+81 11-940-0669', 3, '364024262589519464', 'Rm. 25, 5-4-20 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1988-07-03', 0, 0, 'momokaf', '2022-01-30', 'momofu', '2006-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS373834643103', '莫云熙', 0, '+1 213-452-7710', 1, '385878357737214381', '780 Sky Way Apt 11, Los Angeles, CA 90043, United States', '1987-07-13', 0, 0, 'moyunx46', '2002-04-01', 'yumo', '2021-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS984837722414', '小野美羽', 1, '+86 156-3601-2862', 1, '375006587680305801', '16F, 463 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1994-02-02', 0, 0, 'miuon605', '2018-02-12', 'ono1', '2002-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS588492532186', '苗明詩', 0, '+1 718-888-8346', 4, '222254361593888311', '738 Columbia St Apartment 39, Brooklyn, NY 11231, United States', '1995-06-13', 0, 0, 'mingszemi', '2015-12-23', 'mingszemi2', '2018-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS876904219192', '甘心穎', 0, '+81 70-0767-8116', 1, '987156695366656735', '17F, 15 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1992-06-05', 0, 0, 'sumkam66', '2020-09-14', 'sumwingkam3', '2016-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS728104753846', 'Joseph Nguyen', 0, '+86 28-267-9055', 1, '538082164215823764', 'No.40 building, No.60, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1996-01-18', 0, 0, 'josen2', '2015-05-26', 'jonguyen', '2018-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS070085847636', 'Jack Diaz', 1, '+86 130-2741-9162', 0, '672376619118870066', '中国成都市锦江区人民南路四段440号华润大厦47室', '1995-09-12', 0, 0, 'jackdia', '2017-03-30', 'dijack911', '2013-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS431328787227', '井上美月', 0, '+44 5926 525402', 2, '577181695693743286', 'Block 22, 696 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1987-02-22', 0, 0, 'mitsukiin', '2011-07-29', 'imitsuki', '2012-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS130667980094', '西村百花', 1, '+44 7195 716449', 0, '387705847407560515', 'Unit 3, Oxford Eco Centre, 534 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1992-05-26', 0, 0, 'nishimomoka', '2004-06-26', 'nim', '2004-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS009120833718', 'Walter Rodriguez', 0, '+44 (1223) 36 1051', 3, '098819085508114018', 'Unit 35, Oxford Eco Centre, 184 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1985-01-07', 0, 0, 'walrodr57', '2016-12-27', 'rodriguez5', '2015-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS703173184445', 'April Aguilar', 1, '+86 131-8881-4930', 0, '559645132494912578', 'Room 16, CR Building, 126 Hongqiao Rd., Xu Hui District, Shanghai, China', '1988-11-20', 0, 0, 'aprilagu10', '2009-07-05', 'aprilagu', '2020-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS421611015379', '木村瑛太', 0, '+81 80-7689-3089', 3, '955735769840145020', '日本おおさかし近江堂一丁目7番16号7号室', '1988-12-02', 0, 0, 'eitakimura', '2015-10-23', 'kimueit92', '2009-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS796648571359', '竹内葵', 0, '+1 330-124-8873', 3, '673742600971711831', '48 Collier Road Apt 24, Akron, OH 44320, United States', '1991-02-05', 0, 0, 'takeuchi07', '2020-01-12', 'takeuchi6', '2015-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS669129627751', '張天樂', 0, '+81 3-8056-7478', 1, '154666458899574063', '日本東京千代田区丸の内一丁目6番1号46号室', '1995-06-11', 0, 0, 'chetl', '2002-11-20', 'cheungtinlok', '2001-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS040154627127', '森陸', 0, '+86 153-1815-7686', 3, '987010897688163993', '中国成都市锦江区人民南路四段442号19号楼', '1992-04-04', 0, 0, 'mori49', '2016-05-12', 'rm79', '2016-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS055025218951', '近藤一輝', 0, '+86 10-9103-1227', 1, '858855111534296792', '中国北京市海淀区清河中街68号774号25号楼', '1994-12-17', 0, 0, 'ikkikondo323', '2000-10-09', 'ikkondo', '2019-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS416991389347', 'Sharon Soto', 1, '+44 (1223) 41 5651', 4, '874192849111552811', 'No.41 Main building, 713 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1991-06-03', 0, 0, 'sharon42', '2003-08-26', 'sharso919', '2020-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS262465440661', '高浩然', 0, '+1 213-129-1156', 2, '045080337772519994', '213 Figueroa Street Apt 40, Los Angeles, CA 90037, United States', '1995-02-08', 0, 0, 'kaohy', '2005-01-11', 'hoyin4', '2020-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS922332013539', 'Katherine Ryan', 1, '+86 162-1605-4281', 4, '499796661413430361', '中国深圳罗湖区蔡屋围深南东路4号32室', '1996-03-08', 0, 0, 'kathryan513', '2001-07-30', 'katherinerya', '2012-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS418414748332', '袁子异', 0, '+86 755-4697-0995', 1, '453729343520608629', '21F, 139 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1993-12-17', 0, 0, 'ziyiyuan620', '2014-06-19', 'yuan1988', '2020-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS164382934266', '汪睿', 0, '+81 80-2525-2738', 2, '053415493141816504', '日本おおさかし平野区加美東四丁目9番19号13階', '1986-12-29', 0, 0, 'wangrui2000', '2005-02-26', 'ruiwang99', '2002-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS379735246061', '原田健太', 0, '+44 (151) 605 1006', 2, '098214623567436740', 'Unit 9, Oxford Eco Centre, 75 Hanover St, Liverpool, L1 4AF, United Kingdom', '1986-02-01', 0, 0, 'keharada', '2015-06-29', 'kentaharada405', '2002-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS265330296022', '韦震南', 0, '+81 90-3848-8855', 3, '972644699736422383', '日本東京港区東新橋一丁目5番5号34階', '1996-06-15', 0, 0, 'weizh17', '2006-03-13', 'wei914', '2007-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS957548109411', '工藤葵', 1, '+86 189-3609-9637', 0, '541046309296920951', '中国北京市东城区东单王府井东街494号39室', '1987-04-10', 0, 0, 'kudo8', '2010-08-14', 'kudo7', '2020-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS327399767269', '中島七海', 1, '+81 70-1586-7408', 1, '249880191676480924', '日本なごやし瑞穂区河岸町四丁目20番18号44階', '1992-08-15', 0, 0, 'nakajiman1218', '2003-03-25', 'nakajimananami9', '2000-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS733292519149', '杜世榮', 0, '+81 3-9357-8049', 4, '869079691789581118', '日本東京港区東新橋一丁目5番13号35階', '1998-04-09', 0, 0, 'swt', '2002-02-09', 'tosw', '2018-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS525133489053', 'Mario Vasquez', 0, '+44 7495 921322', 4, '646433153749062129', 'No.37 Main building, 921 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1991-10-28', 0, 0, 'mariovasquez', '2007-06-24', 'vamario119', '2010-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS773388958098', 'Amber Murray', 0, '+81 80-9114-3865', 1, '073724213181199303', '47-kai, 5-2-16 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1995-01-29', 0, 0, 'muramb', '2011-07-20', 'ambmurray', '2017-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS458407226490', '余子韬', 0, '+81 52-348-5489', 1, '096293414233339230', '15F, 2-5-2 Chitose, Atsuta Ward, Nagoya, Japan', '1994-09-23', 0, 0, 'yuzitao3', '2000-08-21', 'yuz6', '2020-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS214850362164', '卢杰宏', 0, '+86 20-1040-1479', 3, '122453342157565483', '中国广州市越秀区中山二路585号华润大厦26室', '1987-06-25', 0, 0, 'jieholu', '2003-10-14', 'lujiehong', '2001-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS025919873427', '酒井瑛太', 1, '+1 213-487-0588', 3, '691638075534722907', '748 Alameda Street Apt 25, Los Angeles, CA 90002, United States', '1989-05-27', 0, 0, 'eitasakai1227', '2019-12-24', 'eita1943', '2015-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS434792780682', 'April Morgan', 1, '+86 159-4484-4980', 3, '605966227827021304', '中国深圳龙岗区学园一巷690号17栋', '1988-07-15', 0, 0, 'aprilmor47', '2004-08-29', 'morga5', '2005-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS260281074384', 'Barbara Soto', 0, '+86 174-8698-8717', 2, '146512588395568745', '中国深圳罗湖区清水河一路880号20号楼', '1997-07-29', 0, 0, 'bso', '2019-09-27', 'barbarasoto', '2015-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS631509921817', '雷淑怡', 1, '+86 10-3690-5518', 0, '058264204538677268', 'No.40 building, 537 East Wangfujing Street, Dongcheng District , Beijing, China', '1989-11-23', 0, 0, 'lousy', '2014-09-02', 'lsy99', '2021-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS800925910668', '苑頴思', 1, '+81 90-4810-1686', 0, '742542228435215381', '日本札幌白石区菊水三条五丁目4番17号8号室', '1995-05-13', 0, 0, 'yuen212', '2009-09-29', 'yuews', '2018-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS523454086852', '罗子韬', 1, '+81 3-1193-3449', 3, '372037857158856528', '日本東京品川区東五反田五丁目2番3号36号室', '1989-06-26', 0, 0, 'ziluo', '2016-12-05', 'zitaoluo', '2007-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS749617197371', 'Cheryl Long', 0, '+81 66-880-5621', 3, '639541490248778308', '日本おおさかし東住吉区東田辺三丁目27番19号40階', '1993-10-01', 0, 0, 'long911', '2011-04-22', 'cheryl918', '2002-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS964349967860', '許曉彤', 0, '+81 90-7728-2005', 0, '825112250083729787', '日本ならし西大寺赤田町一丁目7番9号13階', '1989-08-01', 0, 0, 'hiutunghui', '2006-04-28', 'huiht', '2000-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS766450792097', '餘祖兒', 0, '+1 212-834-8240', 3, '439159392250871688', '461 Canal Street Suite 40, New York, NY 10013, United States', '1985-07-11', 0, 0, 'choyeeyu5', '2021-04-12', 'cyyue', '2021-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS730740804426', 'Rose Martinez', 1, '+1 212-878-7246', 3, '451669230353836266', '409 West Houston Street Apartment 3, New York, NY 10014, United States', '1992-03-21', 0, 0, 'mr76', '2021-12-01', 'mar', '2005-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS649428325424', 'Monica Allen', 0, '+1 330-198-1697', 1, '625727760333624127', '17 Fern Street Apartment 44, Akron, OH 44307, United States', '1993-01-15', 0, 0, 'am701', '2014-11-07', 'monicaallen', '2014-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS912785544054', 'Bobby Sullivan', 1, '+86 142-6518-2736', 2, '718290288542624472', '中国成都市成华区双庆路766号华润大厦20室', '1996-10-07', 0, 0, 'sullbobby', '2021-09-08', 'bobbysull', '2000-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS678030144094', '上田凛', 1, '+1 312-863-4331', 4, '985835276179578653', '519 Rush Street Apt 33, Chicago, IL 60611, United States', '1987-04-27', 0, 0, 'ueda924', '2000-07-31', 'uedrin', '2018-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS751919533998', 'Alfred Evans', 1, '+86 10-3790-5368', 1, '637230574218141862', 'No.45 building, 45 West Chang''an Avenue, Xicheng District, Beijing, China', '1994-01-23', 0, 0, 'evansa4', '2005-06-19', 'evans520', '2019-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS365207976518', 'Andrew Murphy', 0, '+81 3-4765-6407', 3, '653887458556214611', '34F, 2-3-10 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-02-13', 0, 0, 'murphy1988', '2009-12-12', 'murandrew', '2005-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS826600738821', 'Walter Morales', 0, '+86 138-3101-0421', 3, '778301724304014531', '中国上海市浦东新区橄榄路501号27室', '1995-08-26', 0, 0, 'wm531', '2010-12-23', 'walter713', '2001-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS758828007127', '夏秀英', 0, '+44 (1865) 96 0407', 2, '609587861410485151', 'Unit 28, Oxford Eco Centre, 590 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1992-04-26', 0, 0, 'xiaxiuy1976', '2006-05-14', 'xiaxiu', '2005-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS659732904536', '駱曉彤', 0, '+1 718-556-0212', 4, '018289347579473262', '21 Bergen St Apartment 24, Brooklyn, NY 11217, United States', '1989-03-09', 0, 0, 'htlok76', '2013-03-19', 'htlok', '2011-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS723423264985', 'Arthur Vasquez', 1, '+86 21-1206-0065', 3, '664948958456085359', '中国上海市徐汇区虹桥路374号46楼', '1996-05-13', 0, 0, 'vaarthu', '2017-04-02', 'vaarthur11', '2020-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS009484412613', '孙秀英', 0, '+86 28-780-7832', 1, '418053108722003593', '中国成都市成华区玉双路6号34号华润大厦38室', '1988-10-12', 0, 0, 'xisun', '2012-05-02', 'xisun', '2000-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS827093603663', 'Jacqueline Gibson', 1, '+81 70-9815-5094', 2, '148052214384334217', '日本ならし学園南三丁目9番13号41階', '1996-09-25', 0, 0, 'jacgibson', '2011-09-11', 'gibsj', '2007-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS504296616472', '蘇慧珊', 1, '+81 3-8426-5946', 2, '085960022944365533', '日本東京千代田区丸の内一丁目6番2号6階', '1997-09-07', 0, 0, 'sows1122', '2018-09-30', 'wsso702', '2013-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS509250273923', 'Gregory Bennett', 0, '+81 66-821-0215', 3, '613686296105502004', '日本おおさかし平野区加美東四丁目9番18号19号室', '1987-03-10', 0, 0, 'benngregory1998', '2021-10-04', 'bengregory02', '2011-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS168555457562', 'Grace Powell', 0, '+1 213-186-3772', 1, '047332859218939456', '403 Wall Street Apt 14, Los Angeles, CA 90003, United States', '1992-03-26', 0, 0, 'powegrace', '2010-02-19', 'gpowell', '2021-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS673124874467', '宮本一輝', 0, '+81 90-4030-1978', 0, '124894592514082451', '日本なごやし北区楠味鋺三丁目80番15号17階', '1993-06-06', 0, 0, 'miyamoto45', '2022-01-19', 'miyamoto1968', '2004-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS108856955843', '容嘉欣', 1, '+1 213-895-2286', 2, '986692484582393573', '687 Wall Street Apartment 7, Los Angeles, CA 90003, United States', '1991-10-16', 0, 0, 'yunkaryan4', '2005-09-19', 'karyan906', '2003-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS389283611355', '邱安琪', 1, '+44 (1223) 41 4486', 0, '212952643074065388', 'Flat 40, 752 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1989-08-22', 0, 0, 'okyau', '2007-01-18', 'okya', '2001-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS768588253192', 'David Perry', 1, '+86 145-2959-8595', 1, '933932612055405683', '中国上海市黄浦区淮海中路314号50号楼', '1987-03-15', 0, 0, 'david1940', '2012-07-31', 'perrydavid', '2004-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS469389759109', '丸山結翔', 0, '+81 70-4022-2293', 1, '536557627074497687', '31F, 6-1-3, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-07-13', 0, 0, 'myuito', '2020-10-27', 'maruyamayuit', '2015-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS163973416140', '清水悠人', 0, '+1 212-918-5294', 3, '194730573473962001', '502 West Houston Street Apt 42, New York, NY 10014, United States', '1995-05-22', 0, 0, 'shimizu1986', '2014-03-20', 'shiyuto1942', '2004-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS982975053392', '盧玲玲', 0, '+44 5481 568467', 3, '761657365526261588', 'Flat 5, 138 New Street, Birmingham, B2 4DB, United Kingdom', '1994-11-15', 0, 0, 'lllo2', '2012-08-02', 'linglingl', '2010-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS343531109450', '森田彩乃', 1, '+1 718-047-6435', 2, '611778262581918677', '197 Columbia St Apt 44, Brooklyn, NY 11231, United States', '1992-05-03', 0, 0, 'aym88', '2012-11-21', 'morita93', '2005-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS145674013198', 'Tracy Diaz', 0, '+81 66-531-4894', 4, '997827268750373247', '日本おおさかし近江堂一丁目7番3号24階', '1990-07-24', 0, 0, 'diaztracy', '2006-08-01', 'tracy716', '2012-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS281272405809', 'Edna Simmons', 0, '+81 11-249-3943', 2, '320703891232238375', '日本札幌豊平区豊平三条十三丁目3番1号2階', '1995-04-30', 0, 0, 'simmoed', '2006-08-31', 'edna206', '2017-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS482166103292', '盧慧嫻', 1, '+81 90-7534-1482', 4, '641771569154197339', '日本なごやし熱田区千年二丁目5番16号26階', '1996-04-13', 0, 0, 'lowh220', '2020-01-03', 'lowh5', '2019-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS593958808834', '羅家文', 1, '+86 10-589-8938', 2, '635139071877031731', '中国北京市东城区东单王府井东街321号11栋', '1998-02-19', 0, 0, 'kaman116', '2007-01-14', 'kamanl', '2012-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS980745118421', 'Esther White', 1, '+81 80-3947-4921', 2, '127657674628541263', '日本ならし学園南三丁目9番18号44階', '1986-09-19', 0, 0, 'esther724', '2000-04-01', 'estherwhite', '2006-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS311209057915', '藍浩然', 1, '+86 170-8407-1440', 2, '871376409217768937', 'No.9 building, 882 East Wangfujing Street, Dongcheng District , Beijing, China', '1998-05-25', 0, 0, 'hyl7', '2009-05-16', 'hoyin5', '2016-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS704155730583', '成頴璇', 0, '+86 167-0742-9719', 0, '699720540355435036', '中国广州市越秀区中山二路827号8室', '1993-05-25', 0, 0, 'wssh', '2008-06-30', 'shing629', '2010-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS964999331044', '魏子异', 0, '+86 192-6516-5919', 1, '033803361719353760', '中国广州市海珠区江南西路509号5楼', '1991-05-03', 0, 0, 'weiz', '2017-03-02', 'ziyi302', '2019-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS167000392080', '譚學友', 1, '+81 3-0097-9740', 0, '345423456364299869', '20F, 2-3-4 Yoyogi, Shibuya-ku, Tokyo, Japan', '1987-12-29', 0, 0, 'hokytam75', '2000-04-25', 'tam8', '2000-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS587926105581', 'Benjamin Nguyen', 1, '+86 755-120-5040', 3, '241286402904423877', '19F, 558 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1987-02-23', 0, 0, 'benguyen', '2013-10-25', 'nguyen17', '2001-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS429418556093', '坂本陽菜', 0, '+44 (1865) 49 7736', 3, '983281868175710680', 'No.47 Main building, 696 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1998-04-09', 0, 0, 'sakahina324', '2016-04-24', 'sahina', '2018-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS111150586277', '曾永發', 0, '+44 7708 958714', 3, '612480702814567372', 'Unit 14, Oxford Eco Centre, 446 Regent Street, London, W1B 2LX, United Kingdom', '1992-03-19', 0, 0, 'tsangwingfat', '2000-05-12', 'tsangwf', '2006-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS926822235677', '湯詩君', 1, '+81 70-4262-0417', 3, '439193731050329538', '日本なごやし熱田区千年二丁目5番18号25階', '1986-05-18', 0, 0, 'skto', '2020-10-05', 'szekwanto', '2004-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS761098241471', '尹璐', 0, '+81 52-302-8280', 1, '431124459427275960', '日本なごやし瑞穂区河岸町四丁目20番19号35階', '1998-03-08', 0, 0, 'yl9', '2014-08-08', 'luy', '2012-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS804797002823', '薛詩涵', 1, '+44 7327 080562', 3, '164837171111190181', 'No.16 Main building, 475 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1986-05-06', 0, 0, 'shihanxue', '2008-03-26', 'shihanxue8', '2014-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS804013940317', 'Jeremy White', 1, '+86 28-2560-9473', 1, '777088165249263685', '中国成都市成华区双庆路20号41楼', '1987-12-04', 0, 0, 'whitejeremy1952', '2015-11-14', 'white75', '2015-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS434854349683', '韦云熙', 1, '+44 (116) 436 2497', 2, '053576330490115171', 'Flat 22, 927 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1996-05-27', 0, 0, 'yunxi1107', '2007-03-23', 'yunxi216', '2018-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS938116378761', '韩云熙', 0, '+1 330-254-2884', 1, '057467669322831474', '739 West Market Street 3rd Floor, Akron, OH 44333, United States', '1992-06-02', 0, 0, 'yunxihan', '2020-03-08', 'hany923', '2007-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS882480359601', '馮富城', 1, '+1 312-129-9085', 2, '535270100127224972', '890 Pedway Apartment 32, Chicago, IL 60601, United States', '1988-09-17', 0, 0, 'fsfu', '2016-11-18', 'fungfushing', '2020-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS936629157946', '夏詩涵', 1, '+86 28-337-7649', 3, '327404892115512664', '中国成都市成华区二仙桥东三路831号7号楼', '1994-07-19', 0, 0, 'xiashi904', '2018-07-06', 'xiashi', '2013-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS334653810321', '史晓明', 1, '+81 90-3185-4612', 0, '327916813831963780', '日本札幌豊平区豊平三条十三丁目3番7号26階', '1987-10-03', 0, 0, 'shix', '2016-09-05', 'xiaomingshi5', '2019-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS194409035718', '遠藤和真', 1, '+1 213-660-0133', 2, '711008757620256802', '742 S Broadway Apartment 46, Los Angeles, CA 90015, United States', '1993-07-30', 0, 0, 'kazumae2', '2002-10-23', 'kazumaen', '2011-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS997091987431', '福田海斗', 0, '+86 10-8653-1076', 0, '888545486674274388', '中国北京市海淀区清河中街68号615号华润大厦39室', '1993-08-20', 0, 0, 'kaf1990', '2015-03-10', 'kaitof', '2013-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS166342868140', 'Melissa Russell', 0, '+44 5471 733523', 3, '228947708612074970', 'Flat 35, 832 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1987-11-17', 0, 0, 'melissa40', '2005-08-29', 'russellme03', '2004-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS354038704960', '毛睿', 0, '+1 838-406-4257', 2, '599494337932129161', '655 State Street Apartment 25, Albany, NY 12203, United States', '1986-03-06', 0, 0, 'maorui1', '2007-06-08', 'rm217', '2005-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS272281246271', '孔璐', 0, '+44 7352 951919', 4, '903636450461434075', 'No.47 Main building, 440 Regent Street, London, W1B 2LX, United Kingdom', '1994-04-04', 0, 0, 'lukong701', '2020-09-20', 'konglu', '2019-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS148632059377', 'Carolyn Carter', 0, '+86 10-3258-0157', 4, '792989943602091175', '中国北京市东城区东单王府井东街999号40楼', '1991-05-21', 0, 0, 'carolyncarte', '2006-08-29', 'carolyn8', '2005-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS271788223025', '甘小慧', 0, '+1 330-229-1109', 2, '504376544480312645', '259 Riverview Road Apartment 4, Akron, OH 44313, United States', '1990-05-22', 0, 0, 'kamsw2019', '2008-09-30', 'kamsi', '2009-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS533684477723', '陆睿', 0, '+86 159-4170-9082', 3, '218021428086035353', 'Room 24, CR Building, 853 Sanlitun Road, Chaoyang District, Beijing, China', '1987-08-03', 0, 0, 'lu9', '2014-12-25', 'rui410', '2010-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS399077975897', '上野瑛太', 0, '+86 28-488-3661', 1, '921578820510207900', '中国成都市锦江区红星路三段789号4楼', '1990-01-20', 0, 0, 'ueita9', '2011-02-26', 'ueita1941', '2012-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS286093605061', '關德華', 1, '+86 755-101-4341', 1, '011172067472149988', 'No.1 building, 544 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1994-12-19', 0, 0, 'kwan526', '2018-02-15', 'kwan1963', '2021-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS386259588370', 'Beverly Rose', 1, '+86 180-7421-6187', 3, '580698464155459664', 'No.29 building, 498 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1997-02-07', 0, 0, 'beverlyros41', '2016-03-11', 'beverlyr620', '2004-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS386096400513', '遠藤聖子', 1, '+1 312-135-1299', 3, '298868379464046239', '572 Rush Street Suite 50, Chicago, IL 60611, United States', '1990-10-16', 0, 0, 'sendo', '2020-07-09', 'seikoendo', '2009-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS156578155311', '近藤桜', 1, '+86 10-248-6771', 3, '696306593740055292', 'Room 5, 985 Yueliu Rd, Fangshan District, Beijing, China', '1988-03-14', 0, 0, 'kondosakur', '2010-09-23', 'kondosakura', '2019-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS480011706790', '顧永發', 1, '+44 7375 897254', 2, '130491203679476212', 'No.35 Main building, 206 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1987-09-18', 0, 0, 'kuwf9', '2011-11-08', 'kuwf', '2009-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS432069144698', 'Martha Gibson', 0, '+44 (116) 806 8980', 4, '604842887819901901', 'Flat 24, 645 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1996-11-14', 0, 0, 'gibsonm', '2022-02-06', 'marthg', '2007-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS345509318209', '戚惠敏', 1, '+86 136-6787-3279', 2, '354973523876597242', 'No.11 building, 818 Jiangnan West Road, Haizhu District, Guangzhou, China', '1996-11-27', 0, 0, 'waiman318', '2012-04-08', 'waiman920', '2019-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS468074844344', '關慧儀', 1, '+81 70-9196-7140', 2, '851610052461238628', '日本なごやし北区清水三丁目19番3号15号室', '1995-06-25', 0, 0, 'kwanwaiyee42', '2014-12-22', 'kwwy', '2003-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS909836468279', '溫俊宇', 1, '+86 28-4459-2884', 2, '121307241586754360', '9F, No. 196, Shuangqing Rd, Chenghua District, Chengdu, China', '1993-06-30', 0, 0, 'chunyuwan84', '2009-01-14', 'chunyuwa82', '2011-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS399385622448', '伊藤海斗', 1, '+81 70-7131-7400', 1, '003427132468295926', '30F, 4-9-7 Kamihigashi, Hirano Ward, Osaka, Japan', '1992-07-17', 0, 0, 'kaito85', '2004-10-26', 'ito609', '2005-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS298085406126', '曹睿', 1, '+81 90-8118-7215', 3, '513585459706180931', '日本おおさかし西成区出城一丁目1番8号12階', '1996-09-30', 0, 0, 'crui', '2001-06-30', 'rucao1993', '2006-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS274829332272', '陳詠詩', 1, '+81 3-5589-3803', 2, '357543742741465099', '42-kai, 3-15-17 Ginza, Chuo-ku, Tokyo, Japan', '1993-06-09', 0, 0, 'cws', '2019-08-24', 'wingszechan51', '2007-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS717557526953', '池田樹', 0, '+86 130-1374-9505', 0, '818635956828910988', '中国深圳龙岗区布吉镇西环路63号45栋', '1993-09-21', 0, 0, 'ii7', '2017-12-30', 'itsukikeda402', '2010-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS046533791112', 'Willie Hamilton', 1, '+81 11-746-5469', 3, '116132145198725329', '日本札幌豊平区豊平三条十三丁目3番16号31階', '1991-09-14', 0, 0, 'hamiw', '2010-02-24', 'willieham', '2000-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS515848161534', '大塚樹', 0, '+1 614-698-6999', 4, '685208870477497343', '943 Tremont Road Apartment 6, Columbus, GA 43212, United States', '1989-02-01', 0, 0, 'oitsuk', '2012-06-30', 'otsuka3', '2005-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS933910866970', '傅慧珊', 0, '+86 21-8424-4755', 4, '366031498941673887', '中国上海市浦东新区橄榄路583号华润大厦49室', '1996-06-08', 0, 0, 'waisan404', '2000-03-20', 'fwaisan', '2021-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS622346795891', '鄧志遠', 1, '+81 80-3461-7053', 0, '532535381305481200', 'Rm. 12, 4-9-7 Kamihigashi, Hirano Ward, Osaka, Japan', '1995-03-17', 0, 0, 'tangcy531', '2010-02-21', 'cyt518', '2019-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS574352877068', '韩宇宁', 1, '+81 70-3738-9231', 3, '640745476906925875', '17F, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-11-20', 0, 0, 'hanyuning1', '2015-05-04', 'hany1206', '2019-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS553148860880', '後藤大和', 0, '+1 212-712-6961', 2, '728809978942629835', '973 West Houston Street 3rd Floor, New York, NY 10014, United States', '1992-02-15', 0, 0, 'gotoy', '2006-03-02', 'gotoyamato9', '2007-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS945938088555', '田家輝', 0, '+1 614-122-7967', 3, '736648633729676964', '571 East Alley Apt 15, Columbus, GA 43201, United States', '1993-01-29', 0, 0, 'tinkafai', '2021-06-29', 'tikafai', '2015-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS788330743775', 'Martin Gordon', 0, '+1 718-136-7037', 2, '943691481679466682', '361 Columbia St Suite 33, Brooklyn, NY 11231, United States', '1993-03-05', 0, 0, 'martingor3', '2021-09-18', 'gordon2014', '2001-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS351287684821', '史云熙', 0, '+44 5704 262970', 1, '495156974158283236', 'No.20 Main building, 643 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1993-08-06', 0, 0, 'yshi94', '2014-03-17', 'yunxshi120', '2006-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS501978549300', '林明', 0, '+86 10-8227-5616', 3, '838704221632604440', '中国北京市東城区東直門內大街833号35室', '1990-03-17', 0, 0, 'lami805', '2001-10-13', 'minglam', '2012-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS447114672909', '谢致远', 0, '+86 192-5733-3206', 3, '296696751332104095', '中国北京市朝阳区三里屯路584号39室', '1998-03-18', 0, 0, 'zhxie', '2016-12-10', 'xie03', '2012-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS598818430024', '阮梓軒', 0, '+1 718-633-2100', 3, '899218362483332319', '260 1st Ave Apartment 15, Brooklyn, NY 11220, United States', '1994-05-23', 0, 0, 'yuentszhin', '2006-08-28', 'thyuen705', '2014-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS165479366511', '叶睿', 1, '+81 11-407-3734', 3, '911971848661731692', 'Rm. 41, 5-19-6 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1992-11-18', 0, 0, 'yerui1009', '2008-06-14', 'ye516', '2002-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS539058457541', '中川光', 0, '+81 90-9545-6976', 3, '999765494347543610', '50F, 3-19-15 Shimizu, Kita Ward, Nagoya, Japan', '1998-03-20', 0, 0, 'nakagawa424', '2002-11-11', 'nakagawah', '2019-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS052043805230', 'Benjamin Schmidt', 0, '+44 7019 274747', 2, '540382160036220711', 'Unit 17, Oxford Eco Centre, 484 Portland St, Manchester, M1 3LA, United Kingdom', '1987-11-15', 0, 0, 'benjamin1950', '2013-01-02', 'bes', '2021-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS393215310289', 'Steven Bell', 1, '+86 164-1157-4371', 0, '887787919949946679', '中国深圳龙岗区学园一巷108号14号楼', '1989-10-02', 0, 0, 'stevbe', '2014-02-26', 'besteven715', '2015-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS101389552492', '區明詩', 1, '+86 755-208-2699', 2, '651329178996740188', '30F, 309 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1986-05-08', 0, 0, 'mingszea', '2000-09-05', 'mingsze92', '2000-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS752912335489', 'Ricky Richardson', 1, '+81 80-8981-1049', 4, '750467114745636968', '27-kai, 2-1-6 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1988-10-21', 0, 0, 'richardsonri', '2020-01-20', 'ricky6', '2002-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS048242199490', '桜井彩乃', 1, '+81 90-8808-4260', 2, '889179887347679514', 'Rm. 11, 1-7-11 Saidaiji Akodacho, Nara, Japan', '1989-01-12', 0, 0, 'sakurayano', '2014-02-05', 'sakurai715', '2016-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS486529159895', 'Debbie Dunn', 0, '+81 90-5543-0518', 3, '572620110581963227', '35F, 1-6-17, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1994-12-24', 0, 0, 'debbiedu', '2000-09-20', 'dedu', '2008-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS373641050442', 'Kyle Kennedy', 0, '+81 52-766-6894', 4, '054352929799328000', '19F, 7 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-07-12', 0, 0, 'kenkyle1023', '2019-08-21', 'kenk10', '2007-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS902404073568', 'Sean Wood', 1, '+81 90-6296-5140', 3, '409707832108804356', '日本おおさかし西成区出城一丁目1番3号32階', '1997-09-01', 0, 0, 'sean806', '2009-04-05', 'seanw15', '2002-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS160017088528', '林子韬', 1, '+81 66-648-2099', 1, '580572063285912297', '日本おおさかし西成区天神ノ森二丁目1番4号19階', '1995-06-08', 0, 0, 'lizi', '2003-12-22', 'zlin', '2007-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS551434435133', '于云熙', 1, '+81 70-4219-6974', 3, '200870724065259564', '日本おおさかし平野区加美東四丁目9番7号20号室', '1988-12-22', 0, 0, 'yunxiyu1983', '2019-05-06', 'yy210', '2009-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS675212163821', '藍國明', 0, '+81 70-6498-2969', 2, '122881741246729893', '20-kai, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-12-18', 0, 0, 'kmla', '2004-01-31', 'lamkwokming86', '2003-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS435881584899', '阎秀英', 0, '+86 21-9596-7297', 1, '400925168908788242', '中国上海市黄浦区淮海中路858号34栋', '1995-07-07', 0, 0, 'yxiuyi', '2005-12-02', 'yanxiuyi1', '2021-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS599967407096', '松井和真', 1, '+86 10-237-0146', 0, '617165316502525218', '中国北京市房山区岳琉路784号华润大厦46室', '1995-12-29', 0, 0, 'mkazu', '2008-09-11', 'mkazuma40', '2002-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS908961559994', '谢秀英', 0, '+86 195-2042-5433', 2, '962612738632417961', 'Room 29, 262 Sanlitun Road, Chaoyang District, Beijing, China', '1998-02-09', 0, 0, 'xie820', '2021-06-04', 'xxiuying4', '2012-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS430809845208', '宮崎湊', 0, '+81 52-919-5587', 3, '492183049704518133', '日本なごやし守山区瀬古東二丁目171番10号20階', '1988-11-26', 0, 0, 'minamiyazaki', '2005-12-07', 'minato60', '2001-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS024500569607', '谭宇宁', 0, '+86 21-4912-5856', 2, '221004716366410905', '22F, 394 Hongqiao Rd., Xu Hui District, Shanghai, China', '1990-04-05', 0, 0, 'yuningta', '2006-06-11', 'tayuning', '2005-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS303548048913', '鄺榮發', 0, '+81 70-2694-0487', 0, '556651967556327959', 'Rm. 15, 2-1-1 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1991-10-28', 0, 0, 'wingfatkw', '2018-03-03', 'wingfatk1988', '2020-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS752898446377', '朱志遠', 0, '+81 74-481-2863', 3, '435430131333545648', '日本ならし西大寺赤田町一丁目7番17号20階', '1993-11-04', 0, 0, 'chiyuenchu2', '2020-07-01', 'chiyuenchu', '2005-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS394471628087', 'Brenda Snyder', 1, '+81 74-351-0081', 2, '865988770848712503', 'Rm. 31, 3-9-16 Gakuenminami, Nara, Japan', '1998-11-10', 0, 0, 'snyder18', '2009-10-21', 'brenda113', '2002-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS976362358658', 'Lois Hicks', 0, '+1 212-000-9600', 2, '354127912160950536', '176 Canal Street Suite 16, New York, NY 10013, United States', '1991-04-14', 0, 0, 'lh331', '2020-10-22', 'hicks12', '2009-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS186428937906', '有村愛梨', 1, '+81 66-196-6024', 0, '213592290513549070', '日本おおさかし西成区出城一丁目1番16号21階', '1998-05-01', 0, 0, 'arimuraairi4', '2008-08-24', 'airarimura', '2011-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS487946365387', '山本樹', 0, '+81 3-4638-3853', 1, '382971380690282829', 'Rm. 34, 3-15-16 Ginza, Chuo-ku, Tokyo, Japan', '1998-03-16', 0, 0, 'itsuki10', '2012-03-23', 'yamamotoit', '2005-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS451700800981', '马震南', 0, '+81 70-7843-7615', 3, '232567887361026441', '日本なごやし北区清水三丁目19番4号6階', '1992-02-06', 0, 0, 'zhennan9', '2017-04-29', 'zhennan2', '2018-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS156301457447', '常云熙', 1, '+86 190-4823-3056', 0, '487241022099874916', 'No.24 building, 322 Middle Huaihai Road, Huangpu District, Shanghai, China', '1986-09-08', 0, 0, 'yunxichang03', '2010-05-11', 'chayunxi', '2018-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS536473038931', '張俊宇', 0, '+1 213-289-7053', 3, '345580629841821193', '699 Wall Street Apt 45, Los Angeles, CA 90003, United States', '1986-05-11', 0, 0, 'chunyucheung1012', '2015-08-04', 'chunyucheung', '2013-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS675407157605', 'Evelyn Torres', 0, '+86 10-4991-9674', 3, '240905678306147337', 'No.37 building, 563 028 County Rd, Yanqing District, Beijing, China', '1996-01-13', 0, 0, 'torres105', '2010-11-29', 'torreve1', '2009-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS132991256200', '袁思妤', 0, '+86 28-3771-8679', 4, '532605827855199642', 'Room 21, CR Building, 65 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1985-06-09', 0, 0, 'yuensy9', '2021-10-11', 'yuensy5', '2003-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS827884822040', '戴云熙', 1, '+44 (161) 758 3690', 0, '999512623906712004', 'Block 3, 592 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1985-02-20', 0, 0, 'yud4', '2008-11-08', 'daiyu', '2015-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS097473096995', '鄭浩然', 1, '+44 7838 407052', 1, '780342574414767948', 'Block 24, 876 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1996-11-03', 0, 0, 'chenghoyin', '2006-02-12', 'hoyinchen', '2015-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS108276791903', '福田美羽', 0, '+86 151-8021-5557', 0, '811709008625370604', '中国深圳罗湖区清水河一路555号25号楼', '1996-06-24', 0, 0, 'fukmiu', '2021-02-12', 'fukumiu', '2004-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS203747798976', '盧青雲', 1, '+86 188-1475-8344', 2, '907344889801540384', 'Room 47, 500 Shennan Ave, Futian District, Shenzhen, China', '1986-04-11', 0, 0, 'lo1116', '2017-04-23', 'chingwanlo', '2010-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS957125188656', '柴田美月', 0, '+86 21-547-3234', 2, '532521753718873702', 'Room 45, CR Building, 601 Ganlan Rd, Pudong, Shanghai, China', '1990-05-31', 0, 0, 'mitsuki2', '2002-02-17', 'mishi7', '2009-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS757431110401', '崔云熙', 0, '+86 165-9542-0911', 3, '384318030305943610', 'Room 18, CR Building, 863 Shennan Ave, Futian District, Shenzhen, China', '1995-07-26', 0, 0, 'cuiyunxi408', '2007-11-03', 'yunxi65', '2016-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS988312311343', '侯宇宁', 0, '+81 3-4250-2992', 1, '672010969107018242', '日本東京品川区東五反田五丁目2番15号21号室', '1986-11-25', 0, 0, 'yhou', '2016-04-04', 'yunhou', '2013-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS288020259419', '梅心穎', 0, '+81 80-4145-6603', 3, '887923629552230616', '日本札幌豊平区豊平三条十三丁目3番5号43号室', '1986-04-12', 0, 0, 'muisumwing1', '2004-01-03', 'swm', '2002-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS076847501462', 'Joseph Kelley', 0, '+86 189-9350-2182', 1, '857074137728986411', '46F, 350 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-07-13', 0, 0, 'kelley5', '2004-11-28', 'kelleyjoseph', '2011-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS783057519254', '林震南', 0, '+44 (20) 5704 6440', 1, '723886429287594421', 'Unit 46, Oxford Eco Centre, 909 Regent Street, London, W1B 2LX, United Kingdom', '1996-12-03', 0, 0, 'zlin', '2019-12-31', 'zhenl', '2007-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS029001532919', 'Tiffany Ramirez', 0, '+44 (1223) 38 6953', 3, '035911496084725543', 'Unit 5, Oxford Eco Centre, 124 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1986-08-27', 0, 0, 'tiffanyr', '2013-03-12', 'tiffanyramirez', '2021-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS045165218417', '黎致远', 0, '+44 (1223) 52 3845', 2, '841440954533445787', 'Flat 14, 369 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1991-10-17', 0, 0, 'zhiyuan1203', '2018-09-07', 'lizhiyuan', '2019-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS655013815303', '柴田舞', 1, '+1 213-091-5523', 4, '463083064946568810', '218 S Broadway Suite 21, Los Angeles, CA 90015, United States', '1995-04-11', 0, 0, 'shibatama', '2017-07-19', 'shmai8', '2004-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS255054963679', '刘致远', 0, '+44 (1865) 47 7471', 1, '154848842666444747', 'No.14 Main building, 168 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1993-12-03', 0, 0, 'zhiyuanliu', '2007-10-28', 'zliu', '2011-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS798259643308', '馬杰倫', 0, '+81 80-0569-3258', 1, '955409779323089219', 'Rm. 23, 3-27-2 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-10-27', 0, 0, 'clma40', '2012-09-29', 'chiehlunma', '2012-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS677585625876', '白思妤', 0, '+86 10-9502-8848', 1, '284621422647098777', 'Room 32, CR Building, 709 Yueliu Rd, Fangshan District, Beijing, China', '1996-09-28', 0, 0, 'sypak', '2001-02-15', 'sypak', '2021-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS628405783259', '段璐', 1, '+81 74-123-7896', 2, '313039077701698189', '15-kai, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-03-06', 0, 0, 'lud45', '2010-10-14', 'ludu95', '2004-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS123668906931', '有村涼太', 0, '+44 (161) 571 0434', 0, '605864829694987669', 'Flat 17, 427 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1986-04-01', 0, 0, 'ryota6', '2022-01-30', 'ryotarimu6', '2006-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS329516923135', '柴田凛', 1, '+86 149-7177-2864', 2, '697701321855261008', '中国上海市闵行区宾川路161号1号楼', '1986-03-23', 0, 0, 'shibatarin', '2004-01-25', 'rinshibata', '2019-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS193042797672', 'Pauline Wilson', 1, '+86 769-884-1369', 0, '916324550154506131', 'Room 50, 327 Huanqu South Street 2nd Alley, Dongguan, China', '1991-11-28', 0, 0, 'wilson921', '2002-05-22', 'wilsopauline1114', '2012-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS583440544769', '小島彩乃', 0, '+81 52-893-1883', 2, '401143443267588320', '日本なごやし北区楠味鋺三丁目80番20号49階', '1998-12-03', 0, 0, 'kojayano', '2013-04-01', 'aykojima1986', '2003-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS099822397806', '福田紗良', 1, '+86 20-7724-8767', 3, '747002181553231713', '中国广州市越秀区中山二路492号27楼', '1985-11-21', 0, 0, 'fukuda321', '2019-11-05', 'sarafukuda', '2001-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS858349185900', 'Eva Harrison', 1, '+86 28-709-0142', 0, '065965379080124091', 'No.19 building, No. 185, Shuangqing Rd, Chenghua District, Chengdu, China', '1991-11-14', 0, 0, 'eva1946', '2004-07-24', 'hareva821', '2012-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS941957765035', '蒋睿', 0, '+44 (116) 889 9749', 3, '039608985458630091', 'No.48 Main building, 354 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1987-01-09', 0, 0, 'ruijia403', '2008-12-24', 'jiang3', '2019-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS348132661507', 'Mark Grant', 1, '+44 7600 731456', 2, '320863079935647186', 'No.18 Main building, 699 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1993-04-05', 0, 0, 'grmark', '2003-11-06', 'mark118', '2019-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS583693815189', '梁安琪', 1, '+81 70-1430-6294', 2, '183542009278569948', '日本東京渋谷区代々木二丁目3番6号26階', '1989-06-21', 0, 0, 'leungonk7', '2019-03-16', 'okleu', '2007-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS433723655423', '鄧朝偉', 0, '+86 10-429-2372', 4, '065929599954552001', '中国北京市西城区西長安街569号华润大厦28室', '1997-02-11', 0, 0, 'chiuwaitan3', '2001-01-11', 'chiuwaitan', '2008-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS713904774755', '曹家輝', 1, '+1 614-091-8128', 2, '429757544456492161', '927 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1990-10-17', 0, 0, 'kfcho71', '2010-09-11', 'kafai9', '2011-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS395933094559', 'Sheila Ortiz', 0, '+81 74-742-7473', 3, '158838368323301824', '29F, 10 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-11-29', 0, 0, 'sort5', '2018-06-22', 'ortiz1207', '2001-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS529327841822', '邵嘉伦', 0, '+86 20-6695-7513', 1, '125257672063856317', 'Room 46, CR Building, 795 Tianhe Road, Tianhe District, Guangzhou, China', '1996-10-08', 0, 0, 'jialunsh', '2012-08-04', 'jshao', '2020-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS212363034561', 'Chris Nichols', 0, '+81 70-6917-8777', 2, '230475995139269657', 'Rm. 49, 5-19-13 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1991-10-15', 0, 0, 'chrisnich', '2002-12-23', 'chris605', '2005-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS359212122207', '高晓明', 1, '+81 66-971-9776', 2, '216884047054700994', '46F, 1-1-11 Deshiro, Nishinari Ward, Osaka, Japan', '1997-08-02', 0, 0, 'xiaominggao1116', '2013-05-11', 'xiaga1230', '2016-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS894894422308', '邱安琪', 0, '+81 52-602-8307', 3, '359325333606060227', '2-kai, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1990-07-02', 0, 0, 'qa8', '2017-12-11', 'anqiqiu1', '2004-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS520171727404', '高霆鋒', 1, '+81 80-6584-0950', 1, '687309768115971907', '日本東京中央区銀座三丁目12番13号11階', '1988-04-17', 0, 0, 'kaotingfung', '2014-03-17', 'tingfung6', '2012-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS433088432373', '後藤百花', 1, '+44 7267 411560', 1, '263319738173921613', 'Flat 47, 270 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1988-04-15', 0, 0, 'gotomomoka', '2022-02-15', 'gotomom', '2020-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS093584489034', '江璐', 1, '+86 20-5659-9086', 2, '853638504110805437', '中国广州市越秀区中山二路409号19栋', '1990-09-17', 0, 0, 'jianglu', '2021-09-07', 'jlu6', '2015-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS652687969134', '森田悠人', 1, '+81 74-759-3576', 4, '321046903414849853', '日本ならし学園南三丁目9番10号50階', '1996-07-13', 0, 0, 'myuto', '2019-02-28', 'moriyut', '2002-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS266836122944', '馮世榮', 1, '+86 20-228-2862', 3, '186740698884018392', '中国广州市白云区机场路棠苑街五巷361号12室', '1986-01-09', 0, 0, 'funsw01', '2003-03-20', 'saiwingfung', '2016-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS132284769978', '刘宇宁', 0, '+86 135-6394-9502', 3, '465979238888107877', '中国北京市東城区東直門內大街592号华润大厦42室', '1987-04-07', 0, 0, 'liu66', '2020-01-12', 'yuningl115', '2018-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS822504396884', 'Ernest Smith', 0, '+86 139-8648-6044', 1, '380835627661338983', 'Room 12, No. 5, Shuangqing Rd, Chenghua District, Chengdu, China', '1985-06-02', 0, 0, 'esmith', '2007-08-28', 'ernestsmith9', '2012-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS083817346575', '駱裕玲', 0, '+1 614-696-3060', 2, '894560273417434920', '208 Wicklow Road Suite 39, Columbus, GA 43204, United States', '1995-09-30', 0, 0, 'lok1106', '2022-02-14', 'loyl', '2002-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS324074793921', '横山瑛太', 1, '+1 312-862-2396', 3, '993120572403445197', '532 North Michigan Ave Apt 26, Chicago, IL 60611, United States', '1996-07-22', 0, 0, 'eitay', '2019-08-02', 'yokoyama1', '2006-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS197164170685', 'Phyllis Crawford', 0, '+44 7709 850725', 2, '406298025031593752', 'Flat 16, 50 Hanover Street, London, W1S 1YD, United Kingdom', '1991-07-15', 0, 0, 'phylliscraw', '2005-12-29', 'crawford403', '2002-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS425359893631', 'Mario Bennett', 0, '+1 614-769-6934', 3, '731615367246332095', '621 East Alley 3rd Floor, Columbus, GA 43201, United States', '1987-01-26', 0, 0, 'bm4', '2018-04-21', 'bennema40', '2015-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS957523385184', '姜璐', 1, '+81 3-1406-2707', 1, '487652513089040617', '13F, 1-5-5, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-10-24', 0, 0, 'jlu', '2012-12-10', 'jianlu', '2006-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS404827901315', '任發', 0, '+81 90-8787-6184', 1, '212464693153033471', 'Rm. 2, 3-15-15 Ginza, Chuo-ku, Tokyo, Japan', '1996-09-18', 0, 0, 'yafat4', '2010-05-21', 'fatyam2004', '2009-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS181511431129', '官德華', 1, '+86 192-9904-0685', 1, '147331324447967187', 'Room 21, 334 FuXingMenNei Street, XiCheng District, Beijing, China', '1988-02-08', 0, 0, 'takwah75', '2016-07-29', 'kootw5', '2014-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS059527609132', 'Jack Ross', 1, '+44 (116) 180 7266', 2, '717537672916508118', 'Flat 25, 329 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1997-06-01', 0, 0, 'rjac603', '2015-06-09', 'jackross123', '2006-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS598383611639', 'Robin Nguyen', 1, '+86 161-5374-1056', 3, '845021729331991313', '中国深圳龙岗区学园一巷233号华润大厦6室', '1990-02-20', 0, 0, 'nguyenro', '2021-08-19', 'robng2', '2017-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS082779631533', 'Irene Williams', 0, '+86 755-045-0612', 4, '715356869994392551', '34F, 567 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1991-08-18', 0, 0, 'wilirene62', '2002-03-18', 'irenewilliams', '2009-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS747254938537', '工藤結翔', 0, '+81 70-1945-6065', 3, '943839933903367043', '日本東京品川区東五反田五丁目2番17号19階', '1993-02-15', 0, 0, 'yuitoku', '2017-02-25', 'kudoyui407', '2011-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS627431423487', '上田桜', 0, '+81 90-8192-3286', 1, '849634078928086661', '日本なごやし北区清水三丁目19番2号6階', '1992-06-06', 0, 0, 'ueda05', '2019-12-09', 'sakura64', '2015-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS928237044995', '杨嘉伦', 0, '+86 21-2137-2272', 1, '194376651540974946', '45F, 177 Jianxiang Rd, Pudong, Shanghai, China', '1991-03-06', 0, 0, 'jialunyang', '2001-02-07', 'yangjia', '2009-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS139353256733', '萧致远', 0, '+81 11-172-6904', 3, '664941684898035008', 'Rm. 46, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1993-02-26', 0, 0, 'xiao220', '2005-08-21', 'xiz', '2020-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS855152408545', '袁惠妹', 0, '+44 7862 930343', 3, '769201409717704421', 'Block 25, 117 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1988-11-01', 0, 0, 'yuehuimei418', '2001-09-04', 'huimeiy', '2014-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS781972681241', 'Tiffany Flores', 0, '+81 3-0933-4047', 1, '495269827794187729', '日本東京中央区銀座三丁目12番2号33階', '1998-12-17', 0, 0, 'tiffaflores74', '2008-04-01', 'tiffaflore2', '2015-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS726941046616', '马璐', 1, '+44 7571 670328', 3, '931286864413019237', 'Block 3, 891 Portland St, Manchester, M1 3LA, United Kingdom', '1990-11-19', 0, 0, 'malu', '2000-02-14', 'luma', '2014-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS539022053466', '斎藤優奈', 1, '+81 74-769-9669', 2, '901403880656749182', '日本ならし大和郡山市本庄町一丁目1番10号35階', '1992-04-23', 0, 0, 'saito5', '2011-06-04', 'yunsaito', '2000-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS060065069612', '楊慧珊', 1, '+81 90-3784-9341', 2, '376904672177335857', '48F, 8 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-11-22', 0, 0, 'waisan3', '2012-05-15', 'wsyeung', '2011-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS405727659370', '雷嘉伦', 0, '+44 5747 132597', 2, '871852602134377670', 'Block 11, 804 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1994-12-22', 0, 0, 'leij', '2007-04-03', 'jil', '2002-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS423564033962', '蒋嘉伦', 0, '+86 21-4369-6066', 3, '684050088064986559', 'Room 23, 223 Binchuan Rd, Minhang District, Shanghai, China', '1988-08-08', 0, 0, 'jjialun9', '2016-05-20', 'jialunjia', '2009-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS687678325468', '卢晓明', 1, '+86 755-062-7305', 2, '376650814972267136', 'Room 40, CR Building, 741 Jingtian East 1st St, Futian District, Shenzhen, China', '1987-03-08', 0, 0, 'xiaomlu', '2003-11-09', 'xiaoming4', '2002-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS063803102659', 'Victor Williams', 1, '+81 70-1335-0161', 3, '503353471077890506', '日本札幌白石区菊水三条五丁目2番10号15階', '1986-10-11', 0, 0, 'victor4', '2004-06-30', 'victor03', '2009-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS428215657346', '金震南', 0, '+81 11-599-7893', 2, '355393306490562067', 'Rm. 4, 2-1-16 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1987-06-10', 0, 0, 'zhjin914', '2012-06-15', 'zhennanjin', '2013-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS783523809824', '湯家玲', 0, '+1 838-332-9561', 4, '743588771671651676', '26 Central Avenue Suite 18, Albany, NY 12205, United States', '1986-05-07', 0, 0, 'kalington5', '2007-05-10', 'tongkaling', '2017-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS030401675580', '莫岚', 1, '+81 66-348-5093', 0, '312966100831431354', '日本おおさかし東住吉区東田辺三丁目27番16号50階', '1997-01-09', 0, 0, 'lamo', '2013-08-18', 'molan53', '2012-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS729127856209', '平野蓮', 0, '+1 330-476-3792', 2, '047459243329132859', '394 Riverview Road Apartment 31, Akron, OH 44313, United States', '1989-12-27', 0, 0, 'ren2017', '2005-02-05', 'renhirano67', '2016-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS309528886253', '武田優奈', 1, '+44 (20) 3243 2623', 4, '196144964251838783', 'Unit 30, Oxford Eco Centre, 867 Maddox Street, London, W1S 1PU, United Kingdom', '1999-02-08', 0, 0, 'yut', '2009-03-04', 'yuntakeda', '2002-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS887690909680', '竹内優奈', 0, '+86 195-4486-3738', 3, '065673038731078172', '中国上海市浦东新区健祥路512号2楼', '1986-06-13', 0, 0, 'yuna6', '2015-06-04', 'takeuchi1975', '2001-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS053039422696', '松本詩乃', 0, '+81 80-5469-4873', 4, '257012297851306959', '33F, 3 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-02-08', 0, 0, 'matshino', '2006-02-08', 'matsumotoshino', '2003-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS515538341386', '汪朝偉', 0, '+81 3-2542-9680', 0, '632746191998205923', '日本東京港区東新橋一丁目5番9号6階', '1998-05-01', 0, 0, 'cwwo', '2010-10-05', 'wong97', '2013-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS038685078064', '汪秀文', 0, '+86 10-6568-3027', 2, '129705569947472077', '中国北京市朝阳区三里屯路76号22楼', '1998-05-02', 0, 0, 'smwong', '2008-09-21', 'wongsm', '2001-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS360606484661', '内田彩乃', 1, '+86 153-0311-9882', 3, '309308850899110651', '中国上海市黄浦区淮海中路465号23室', '1990-05-03', 0, 0, 'ayanouchida', '2007-10-01', 'uchidaayano328', '2022-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS073678543899', '阎致远', 1, '+44 5450 760251', 3, '170656907827645391', 'No.32 Main building, 494 Hanover St, Liverpool, L1 4AF, United Kingdom', '1989-08-28', 0, 0, 'yaz', '2008-04-17', 'zhiyuan17', '2021-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS299528901691', '中森和真', 1, '+81 90-2550-5948', 4, '624168365881234427', '10F, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1998-11-25', 0, 0, 'nakamori3', '2007-04-05', 'kazuma4', '2017-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS451402702955', '莫慧嫻', 0, '+81 90-6162-0634', 3, '308490904698028718', '日本なごやし瑞穂区河岸町四丁目20番9号39号室', '1998-03-19', 0, 0, 'mwaihan9', '2007-09-02', 'wamok1', '2008-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS672293721973', '甘永發', 1, '+81 70-5440-1521', 3, '638473589840522251', 'Rm. 47, 4-9-4 Kamihigashi, Hirano Ward, Osaka, Japan', '1993-07-16', 0, 0, 'kwf92', '2008-02-02', 'kamwf2', '2006-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS192927356169', 'Sherry Perez', 1, '+86 199-3795-1357', 1, '352541640130582011', 'Room 16, 875 Binchuan Rd, Minhang District, Shanghai, China', '1993-04-14', 0, 0, 'perezsherr9', '2018-08-31', 'sherryperez216', '2007-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS429684132064', 'Brenda Kelley', 0, '+86 155-8315-2993', 4, '805493447911260332', 'No.30 building, 556 Huanqu South Street 2nd Alley, Dongguan, China', '1993-12-21', 0, 0, 'brendak', '2003-08-04', 'brenda6', '2021-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS678526237712', '呂慧嫻', 1, '+81 80-3750-7208', 0, '532303168123044967', '21F, 6-1-1, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1987-10-05', 0, 0, 'lwa9', '2017-01-09', 'waihan86', '2018-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS519667515654', '高橋舞', 1, '+81 70-0634-1727', 1, '421984020709373134', 'Rm. 41, 5-2-17 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-05-18', 0, 0, 'takahashi03', '2020-10-23', 'tmai', '2004-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS838556527160', '工藤明菜', 1, '+86 181-4106-3037', 1, '573342863790510674', '6F, 454 Huanqu South Street 2nd Alley, Dongguan, China', '1988-04-13', 0, 0, 'akinakudo', '2021-06-20', 'ak9', '2002-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS462810693594', '成力申', 0, '+86 28-8192-9124', 4, '002548171148604200', '中国成都市成华区二仙桥东三路165号47栋', '1990-01-02', 0, 0, 'sls604', '2001-05-04', 'liksunshin', '2008-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS543274039376', '菅原悠人', 0, '+86 755-2444-8150', 1, '970935417374913161', '中国深圳福田区景田东一街302号42号楼', '1994-01-30', 0, 0, 'sugawaray', '2015-11-26', 'sugawara3', '2009-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS028614323437', '黃裕玲', 0, '+86 755-861-4982', 2, '280555267284848162', 'Room 45, CR Building, 22 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1987-04-16', 0, 0, 'yuling9', '2002-08-06', 'ylwo', '2010-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS643116501240', '石田紗良', 1, '+81 70-4443-2080', 2, '842977170650300995', '日本おおさかし西成区出城一丁目1番16号12階', '1990-11-07', 0, 0, 'isara', '2016-08-27', 'saraishida', '2009-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS178152850542', 'Anne Martinez', 1, '+86 10-371-0993', 3, '446070159969985081', 'Room 2, 597 West Chang''an Avenue, Xicheng District, Beijing, China', '1990-03-09', 0, 0, 'maran', '2014-01-29', 'martinez909', '2015-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS730382088061', '邱惠敏', 0, '+44 7380 360127', 3, '729952225926212809', 'No.35 Main building, 640 Regent Street, London, W1B 2LX, United Kingdom', '1990-11-12', 0, 0, 'yauwm', '2014-01-21', 'waimyau2', '2005-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS193102936180', '車朝偉', 1, '+81 70-9602-9513', 4, '569441723180755789', '30-kai, 2-1-11 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1985-01-26', 0, 0, 'cwche', '2014-07-07', 'chiuwai2020', '2016-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS526026886024', '苏晓明', 1, '+44 7876 063001', 2, '871045730746744050', 'Flat 28, 781 Mosley St, Manchester, M2 3AQ, United Kingdom', '1986-12-27', 0, 0, 'xiaomingsu', '2014-01-21', 'xiaoming71', '2004-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS022329090123', '野村陽菜', 1, '+1 614-285-0924', 2, '370558737725254722', '199 East Cooke Road Apt 1, Columbus, GA 43214, United States', '1996-09-09', 0, 0, 'nomura95', '2015-06-21', 'hino', '2002-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS581701346607', '雷璐', 1, '+81 3-0554-6263', 0, '536933824263384623', '日本東京渋谷区代々木二丁目3番8号37階', '1991-10-17', 0, 0, 'leilu', '2015-12-19', 'lule', '2001-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS934762959432', '加藤蒼士', 0, '+81 66-185-2440', 2, '338177374913608110', '日本おおさかし近江堂一丁目7番20号23号室', '1989-03-25', 0, 0, 'aoshikato', '2003-12-07', 'aoshikato', '2010-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS276812578416', '潘致远', 0, '+86 143-8483-9933', 2, '333190562413021441', 'No.34 building, 436 Middle Huaihai Road, Huangpu District, Shanghai, China', '1991-03-08', 0, 0, 'panzhiyu2', '2020-05-05', 'zhiyupa', '2003-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS758929711349', 'Eleanor Myers', 0, '+1 838-221-4235', 2, '552230140913709286', '560 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1990-01-31', 0, 0, 'eleanormyers', '2016-11-24', 'eleanormyer', '2017-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS303214417587', '彭岚', 1, '+86 194-4333-7465', 4, '592574618149782553', '中国东莞珊瑚路685号9楼', '1998-04-17', 0, 0, 'pelan', '2018-02-10', 'pela9', '2015-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS974607729365', '太田美月', 1, '+86 156-6379-4826', 1, '390703281436994596', '中国广州市白云区小坪东路369号3室', '1993-09-28', 0, 0, 'mo2013', '2003-03-12', 'otamitsuki', '2013-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS999958050468', 'Kevin Anderson', 0, '+81 74-337-6657', 2, '023380118943893644', '日本ならし学園南三丁目9番1号33階', '1995-02-15', 0, 0, 'anderke', '2014-04-26', 'ak01', '2006-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS002466319882', '萧杰宏', 0, '+86 28-405-5542', 4, '735700143488494406', '中国成都市锦江区红星路三段556号12栋', '1990-11-08', 0, 0, 'xiaojie504', '2004-08-22', 'xiaojieh610', '2000-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS602402225886', 'Thomas Allen', 0, '+81 11-822-6095', 3, '658811266603209196', '日本札幌清田区真栄四条五丁目19番19号1階', '1994-02-09', 0, 0, 'allenthomas', '2019-05-31', 'allen517', '2003-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS673228812826', 'Joel Sanchez', 1, '+81 70-8455-5438', 1, '890545714207075028', '日本ならし学園南三丁目9番11号23階', '1990-11-23', 0, 0, 'josanchez9', '2008-12-28', 'sanchezjo', '2008-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS919706398051', '谷力申', 0, '+1 213-442-3202', 3, '981010754640301259', '825 Wall Street Apartment 44, Los Angeles, CA 90003, United States', '1998-08-07', 0, 0, 'liksunkoo', '2006-01-15', 'lsk804', '2012-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS683202249381', '坂本架純', 0, '+86 755-224-2860', 2, '839008983041122836', '22F, 519 Jingtian East 1st St, Futian District, Shenzhen, China', '1997-06-07', 0, 0, 'sak', '2008-02-19', 'sakamoto3', '2009-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS630711184097', '丁震南', 0, '+44 (116) 465 9074', 3, '173576285614036288', 'Flat 32, 897 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1997-09-22', 0, 0, 'dingzhennan', '2014-07-22', 'ding4', '2001-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS206474590396', '前田大和', 0, '+86 176-7376-4288', 3, '330358881217987196', '中国广州市海珠区江南西路229号13楼', '1986-07-19', 0, 0, 'maeday', '2019-05-29', 'yamatomaed112', '2015-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS330566834476', '小野樹', 1, '+86 193-3377-1970', 4, '175418133135378972', 'Room 11, 151 Jingtian East 1st St, Futian District, Shenzhen, China', '1997-04-30', 0, 0, 'onoit1', '2021-08-09', 'itono', '2010-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS004950190325', '唐浩然', 1, '+81 70-2556-8918', 3, '269447959274025407', '日本なごやし北区楠味鋺三丁目80番8号6階', '1992-07-02', 0, 0, 'tonghoyin', '2008-03-30', 'hoyin1959', '2010-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS773362982817', '邵小慧', 0, '+44 (1223) 95 7041', 3, '287787029764266131', 'No.4 Main building, 665 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1995-02-19', 0, 0, 'siusw', '2005-07-25', 'siusiuwai', '2008-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS442976874764', '邱明詩', 1, '+86 20-8087-0957', 3, '822794845824210463', 'No.2 building, 388 Jiangnan West Road, Haizhu District, Guangzhou, China', '1987-05-04', 0, 0, 'ymingsze1943', '2008-12-10', 'mingsze627', '2008-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS998023095977', 'Leslie Gray', 1, '+86 755-492-8750', 4, '478757011021696409', '中国深圳福田区景田东一街863号28楼', '1994-10-26', 0, 0, 'lesliegra214', '2015-06-23', 'lgr', '2004-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS048902925384', '山本聖子', 0, '+81 80-0537-1590', 1, '348095337945369133', 'Rm. 5, 1-1-6 Deshiro, Nishinari Ward, Osaka, Japan', '1994-02-01', 0, 0, 'seikoy', '2005-10-22', 'yseiko', '2015-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS932839075068', 'Eugene Reed', 0, '+86 28-0379-4358', 3, '964907033475887444', 'Room 10, CR Building, 926 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1987-07-27', 0, 0, 'reedeug', '2021-01-01', 'reedeu8', '2007-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS836554219043', 'Jamie Nguyen', 0, '+1 330-013-9651', 4, '259593859730724744', '388 Collier Road 3rd Floor, Akron, OH 44320, United States', '1987-10-05', 0, 0, 'jnguy', '2010-12-23', 'njamie', '2008-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS902003873333', '黎永發', 1, '+44 (121) 276 4239', 2, '114043696647359274', 'Block 17, 839 New Street, Birmingham, B2 4DB, United Kingdom', '1987-06-25', 0, 0, 'wingfat4', '2003-04-23', 'lwingfat603', '2003-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS249994736091', '工藤美月', 1, '+44 7079 662096', 2, '871099467151180337', 'Block 14, 491 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1988-03-23', 0, 0, 'mitk', '2009-02-13', 'kudomits5', '2006-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS237435964994', 'Joseph Fox', 0, '+81 70-4912-0240', 0, '715941193354670753', '7-kai, 4-9-18 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-12-18', 0, 0, 'joseph325', '2018-03-28', 'fojose220', '2011-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS054053239838', '韦震南', 1, '+86 21-9717-0534', 0, '317072763421708098', 'Room 31, 676 Ganlan Rd, Pudong, Shanghai, China', '1987-02-22', 0, 0, 'zhennanwei1951', '2002-08-08', 'zhennan2', '2004-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS949741086593', '蘇國權', 0, '+81 74-921-3851', 1, '813253259340785575', '日本ならし西大寺赤田町一丁目7番1号7階', '1989-08-27', 0, 0, 'sokwokkuen3', '2018-05-17', 'kwokkuen10', '2014-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS100882429440', '田中光', 1, '+81 74-614-1136', 3, '073910137463322724', '49F, 3-9-18 Gakuenminami, Nara, Japan', '1994-12-18', 0, 0, 'th3', '2000-06-29', 'hikaruta', '2021-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS044490310463', '森陸', 0, '+81 80-4428-8893', 1, '740318458396158859', '日本札幌厚別区上野幌一条二丁目1番13号38号室', '1992-09-30', 0, 0, 'rikum1', '2006-12-05', 'moririku', '2017-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS684640229750', 'Carol Fernandez', 1, '+81 70-3571-9717', 2, '748780933780124441', '33-kai, 9 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1990-03-10', 0, 0, 'fcarol3', '2021-01-05', 'carol8', '2002-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS777856004553', '廖天樂', 1, '+81 52-494-6914', 1, '816543767958660428', 'Rm. 46, 16 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1985-07-14', 0, 0, 'ltinlok', '2000-08-19', 'tinlokliao6', '2008-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS799771692390', 'Katherine Alexander', 1, '+86 167-5484-1346', 1, '745015709672114623', '9F, 57 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1997-09-14', 0, 0, 'alexakatherine909', '2002-01-22', 'alekath1998', '2002-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS933029004966', '杉山陸', 1, '+86 10-9896-9831', 1, '686612321472646151', 'Room 15, 772 028 County Rd, Yanqing District, Beijing, China', '1995-06-11', 0, 0, 'sugiyama45', '2011-09-12', 'sriku7', '2013-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS959144937898', '元明', 1, '+1 330-248-3955', 1, '308088692409206080', '755 Fern Street Suite 12, Akron, OH 44307, United States', '1999-01-28', 0, 0, 'yuen07', '2016-03-06', 'ming1207', '2022-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS651799753475', '錢永權', 0, '+1 718-734-2216', 2, '422458616353971047', '910 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1987-05-16', 0, 0, 'chinwk', '2002-07-15', 'chinwingkuen74', '2006-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS008674795180', '鄺祖兒', 1, '+44 (151) 960 5739', 1, '258416274062927167', 'Unit 34, Oxford Eco Centre, 923 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1986-06-20', 0, 0, 'choyeekwong97', '2010-12-23', 'choyeekwong6', '2002-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS236121770156', '伊藤彩乃', 0, '+81 66-519-2821', 1, '598206319946415500', '日本おおさかし西成区出城一丁目1番3号19号室', '1988-01-12', 0, 0, 'itayano', '2005-03-30', 'ayanoito514', '2015-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS276980509005', 'Matthew Olson', 1, '+1 838-236-7936', 0, '792816742762277819', '859 Lark Street 3rd Floor, Albany, NY 12210, United States', '1995-02-03', 0, 0, 'olson1029', '2011-03-19', 'olsomatthew', '2005-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS997469915418', 'Eva Stevens', 0, '+44 5889 430154', 2, '606297026990163612', 'No.28 Main building, 491 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1995-03-30', 0, 0, 'stevense', '2019-06-21', 'steveva01', '2000-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS186596397511', 'Laura Ross', 1, '+81 66-040-7946', 4, '511495395879831064', '日本おおさかし東住吉区東田辺三丁目27番20号11階', '1988-04-19', 0, 0, 'laur', '2020-04-09', 'rosslaur', '2005-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS837169428179', '蔣浩然', 0, '+44 (116) 649 9193', 1, '580015190094848357', 'Unit 28, Oxford Eco Centre, 505 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1995-02-17', 0, 0, 'chianhy10', '2004-06-02', 'chianhy', '2014-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS183001517071', '上野悠人', 0, '+1 212-401-7729', 3, '415358802602187913', '213 Fifth Avenue Apt 2, New York, NY 10017, United States', '1992-02-15', 0, 0, 'yutou', '2005-01-05', 'uenoyut', '2006-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS744578124523', '石云熙', 1, '+44 5136 109032', 3, '650013960267403293', 'Flat 2, 534 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1994-11-26', 0, 0, 'shi610', '2015-08-08', 'shi7', '2001-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS409191066816', '龚子异', 0, '+86 194-0281-1099', 1, '487369525981157164', 'Room 24, CR Building, 783 West Chang''an Avenue, Xicheng District, Beijing, China', '1994-03-30', 0, 0, 'ziygong60', '2008-05-14', 'gziyi8', '2010-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS853914363244', '许震南', 1, '+86 10-1588-5600', 4, '002612820150942032', 'No.48 building, 706 028 County Rd, Yanqing District, Beijing, China', '1985-02-21', 0, 0, 'xzhenn1112', '2006-06-25', 'zhennan1104', '2009-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS144511388397', '石田一輝', 1, '+86 159-2439-4786', 0, '782277546220448225', '中国深圳龙岗区学园一巷988号华润大厦13室', '1990-06-20', 0, 0, 'ishida9', '2015-06-02', 'ishida922', '2002-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS674089679414', '上田大輔', 0, '+86 151-2844-4645', 0, '568853780525121775', 'No.18 building, 58 Huanqu South Street 2nd Alley, Dongguan, China', '1988-10-01', 0, 0, 'daisukeueda', '2009-12-18', 'uedaisuke1', '2014-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS701292482771', '沈子异', 1, '+81 90-3206-5133', 1, '020989274275730218', '日本ならし大和郡山市本庄町一丁目1番20号34階', '1989-01-22', 0, 0, 'ziyish', '2015-11-18', 'sziyi', '2019-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS380306718118', '谢子异', 0, '+86 20-1309-4975', 3, '325449407481054913', '中国广州市越秀区中山二路426号8楼', '1996-03-12', 0, 0, 'xziyi507', '2005-11-30', 'xizi', '2009-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS492093754195', 'Tracy Mendez', 0, '+1 212-786-5652', 4, '043761288583198801', '912 West Houston Street Suite 22, New York, NY 10014, United States', '1994-11-11', 0, 0, 'mendezt12', '2009-07-18', 'tracyme', '2019-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS398275784295', '宣志明', 0, '+81 90-2317-1302', 3, '730353222065824641', '日本ならし学園南三丁目9番11号15階', '1986-10-26', 0, 0, 'chiming83', '2011-03-28', 'hsuacm', '2013-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS904313360592', 'Carlos Graham', 1, '+86 131-7433-5939', 2, '532654085380942640', 'No.48 building, 50 028 County Rd, Yanqing District, Beijing, China', '1997-11-17', 0, 0, 'carlograham512', '2005-01-03', 'carlosgra1986', '2015-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS326801397903', '加藤翼', 1, '+1 213-663-5985', 3, '751051946773270835', '63 Sky Way Apt 29, Los Angeles, CA 90043, United States', '1989-11-04', 0, 0, 'tsubasakato420', '2014-04-12', 'kattsubasa', '2019-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS989117856275', 'Louis Ortiz', 0, '+86 755-182-0539', 2, '994990300692846132', '中国深圳罗湖区清水河一路468号15栋', '1995-02-11', 0, 0, 'louisort', '2008-03-22', 'ortizlouis', '2002-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS999327192087', '村上悠人', 1, '+1 212-998-1814', 0, '062934602229981380', '771 Fifth Avenue Suite 46, New York, NY 10017, United States', '1991-05-29', 0, 0, 'yutomurakami', '2005-09-04', 'murakami71', '2002-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS227541589379', '朱致远', 0, '+86 174-4470-1822', 3, '816761881135992620', 'No.2 building, 885 Dongtai 5th St, Dongguan, China', '1998-08-16', 0, 0, 'zhiyuanzhu', '2009-02-12', 'zzhu4', '2018-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS860839939362', '向詩涵', 1, '+81 52-029-6290', 2, '578747911074648271', '33F, 2-5-6 Chitose, Atsuta Ward, Nagoya, Japan', '1991-04-08', 0, 0, 'xiangshihan', '2011-03-05', 'xiang95', '2000-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS325158564266', '江裕玲', 1, '+86 760-7847-1328', 4, '564447661521618591', 'Room 16, 38 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1993-06-22', 0, 0, 'ylkong4', '2007-12-21', 'kyuling10', '2021-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS797575456006', '潘杰宏', 0, '+81 11-347-2948', 3, '283622212922941387', '日本札幌豊平区豊平三条十三丁目3番9号13号室', '1995-06-11', 0, 0, 'panji202', '2005-08-25', 'pan11', '2012-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS039969993849', '毛家玲', 1, '+86 10-2250-7280', 3, '706774269203418739', '中国北京市東城区東直門內大街401号华润大厦35室', '1994-05-03', 0, 0, 'kalmo', '2018-02-05', 'kalingmo42', '2021-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS180765548608', '太田百花', 1, '+81 80-9044-0312', 1, '166587150799935190', '1F, 8 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1987-04-22', 0, 0, 'moot6', '2015-10-04', 'mota', '2004-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS076595461905', '彭云熙', 0, '+81 70-8462-2659', 2, '229899434367601526', '日本おおさかし近江堂一丁目7番1号2号室', '1986-10-06', 0, 0, 'pengyunxi', '2021-07-28', 'peng1', '2004-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS931798452195', '菅原葵', 1, '+81 66-940-7229', 3, '860641871871380989', '11F, 1-7-20 Omido, Higashiosaka, Osaka, Japan', '1992-06-28', 0, 0, 'aoi506', '2007-11-30', 'sugawaraaoi', '2001-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS720409854121', '鐘世榮', 0, '+81 74-171-7487', 4, '199374733784289961', '日本ならし大和郡山市本庄町一丁目1番3号9階', '1995-06-14', 0, 0, 'saiwingch1996', '2003-05-08', 'saiwing10', '2005-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS218538307321', '侯云熙', 1, '+1 213-538-5635', 4, '812467399808501260', '177 Wall Street Suite 15, Los Angeles, CA 90003, United States', '1998-12-18', 0, 0, 'yuho10', '2007-05-13', 'hou1110', '2014-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS804438427622', '刘秀英', 1, '+1 330-241-6315', 3, '064246100962066291', '15 Ridgewood Road Apt 31, Akron, OH 44321, United States', '1994-11-02', 0, 0, 'xiuying6', '2012-06-14', 'liu9', '2004-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS660528463547', 'Clara Murphy', 0, '+81 52-573-5455', 3, '066376866634464300', '日本なごやし瑞穂区河岸町四丁目20番7号9階', '1989-02-26', 0, 0, 'murcl', '2005-05-30', 'murpclara5', '2019-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS784162353190', '范云熙', 0, '+44 7600 686201', 1, '564125145131793386', 'Block 33, 532 New Street, Birmingham, B2 4DB, United Kingdom', '1986-04-03', 0, 0, 'yunxfa', '2006-05-17', 'fanyunxi', '2000-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS849618025064', '林結翔', 1, '+1 212-038-1837', 2, '442432146077686833', '230 Canal Street Apt 44, New York, NY 10013, United States', '1992-08-01', 0, 0, 'yuitoh', '2000-03-22', 'yuito10', '2010-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS356954657409', '渡辺大和', 1, '+81 80-8767-2935', 0, '093910373993639340', '日本ならし西大寺赤田町一丁目7番19号9階', '1989-07-02', 0, 0, 'yamato313', '2006-06-23', 'yamatosa', '2001-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS399796470689', '向岚', 0, '+81 3-8028-0549', 2, '804802469724348532', '42-kai, 5-2-15 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1987-02-26', 0, 0, 'lx5', '2014-03-17', 'lanxian513', '2006-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS425466948961', '狄裕玲', 1, '+44 (151) 488 8719', 2, '964700181552950408', 'Unit 46, Oxford Eco Centre, 532 Hanover St, Liverpool, L1 4AF, United Kingdom', '1998-01-27', 0, 0, 'tyul', '2000-08-26', 'ti328', '2008-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS445235564434', '孫思妤', 1, '+1 718-367-5533', 0, '151919417225439070', '687 Bergen St Suite 15, Brooklyn, NY 11217, United States', '1989-08-29', 0, 0, 'hsuansy49', '2010-08-03', 'hsuan7', '2005-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS274861574684', 'Christina Scott', 1, '+44 (116) 572 1777', 0, '185083906297787378', 'Unit 2, Oxford Eco Centre, 984 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1990-10-31', 0, 0, 'scchris', '2011-04-26', 'scottchri2015', '2006-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS171390055267', '古慧琳', 0, '+86 132-0704-2815', 4, '904136570008179248', 'No.2 building, 423 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1986-03-03', 0, 0, 'wailamku2', '2014-02-10', 'kwailam75', '2015-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS919946744259', 'Randy Foster', 1, '+86 150-3225-1994', 3, '679379318344521917', 'Room 39, 548 Jiangnan West Road, Haizhu District, Guangzhou, China', '1987-05-05', 0, 0, 'randyfoster', '2007-01-21', 'randy4', '2004-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS049454709282', 'Randy Williams', 0, '+86 162-7647-1802', 1, '054410264134325222', 'No.14 building, 62 Yueliu Rd, Fangshan District, Beijing, China', '1988-12-16', 0, 0, 'williams126', '2013-09-27', 'willr', '2002-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS677392281497', '廖青雲', 0, '+81 3-9318-7314', 4, '141107309353704216', '31-kai, 1-6-3, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1988-02-06', 0, 0, 'liaochingwan2', '2014-10-03', 'liao10', '2017-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS163267860293', '贺杰宏', 0, '+81 80-6708-3344', 4, '826178651733386809', '3-kai, 3-27-12 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1995-02-25', 0, 0, 'jiehhe', '2017-12-27', 'jiehong922', '2017-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS654722582283', 'Albert Reynolds', 1, '+86 142-2378-7624', 0, '541897227594418941', 'No.20 building, No. 270, Shuangqing Rd, Chenghua District, Chengdu, China', '1995-04-22', 0, 0, 'alberreynolds', '2001-10-21', 'realber', '2013-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS075186226852', '曾永權', 0, '+86 168-1925-6793', 3, '668060152178965294', 'No.24 building, 283 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1992-05-05', 0, 0, 'twingkuen', '2006-08-01', 'witsan3', '2014-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS598747120081', '中山陸', 1, '+86 20-976-8126', 4, '735693923499447116', 'No.15 building, 870 Tianhe Road, Tianhe District, Guangzhou, China', '1997-11-11', 0, 0, 'riku1', '2009-09-21', 'rnak1963', '2003-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS557970582159', 'Paul Holmes', 1, '+1 838-639-9111', 2, '689665763252226904', '609 Lark Street 3rd Floor, Albany, NY 12210, United States', '1998-11-29', 0, 0, 'holmpa4', '2008-10-17', 'paul79', '2021-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS896728158659', '山崎健太', 1, '+81 66-902-9202', 1, '812447743534510825', '日本おおさかし東住吉区東田辺三丁目27番4号15号室', '1996-07-12', 0, 0, 'kya', '2021-06-29', 'kentayamazaki514', '2005-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS437315230963', 'Kimberly Gibson', 1, '+86 755-292-4778', 3, '224127877757273186', '中国深圳罗湖区田贝一路149号36号楼', '1998-08-14', 0, 0, 'kimberlyg702', '2000-05-27', 'kimberlyg', '2001-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS967244110634', 'Jeffery Peterson', 1, '+86 760-4875-7563', 1, '446435463220661307', '中国中山京华商圈华夏街512号13室', '1990-12-25', 0, 0, 'pjeffery', '2010-04-06', 'jefferypeter', '2003-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS314826717400', '青木美羽', 0, '+81 80-5402-1099', 4, '897060018118807062', '日本なごやし北区清水三丁目19番2号23階', '1994-12-21', 0, 0, 'aokimi', '2002-06-07', 'am3', '2009-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS858902899376', '田中大地', 0, '+86 769-329-7018', 1, '567497210639210276', '中国东莞珊瑚路685号39栋', '1998-02-16', 0, 0, 'daichitanaka', '2016-12-27', 'daict93', '2018-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS182739813511', '小川海斗', 1, '+86 146-1211-4020', 1, '186998461516264339', '17F, 218 Ganlan Rd, Pudong, Shanghai, China', '1997-11-28', 0, 0, 'okai', '2000-05-12', 'ogakaito', '2019-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS980190424329', '馮浩然', 1, '+81 80-9326-5161', 0, '052741247274923435', '43-kai, 1-7-8 Omido, Higashiosaka, Osaka, Japan', '1988-11-19', 0, 0, 'fung1955', '2008-01-08', 'hyf2', '2013-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS055808090526', '马秀英', 1, '+86 760-3991-8051', 2, '804457588607512087', '中国中山乐丰六路68号4号楼', '1996-04-15', 0, 0, 'xma19', '2013-08-23', 'maxiuy', '2015-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS089771196516', '羅家文', 0, '+44 5005 751835', 2, '708448534087938605', 'Block 28, 759 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-01-05', 0, 0, 'kamanl', '2002-11-13', 'kmlo6', '2019-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS511340036341', 'Ricky Gray', 1, '+81 70-2398-2704', 1, '597433501879344952', 'Rm. 35, 1-5-13, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-07-11', 0, 0, 'grayrick', '2007-08-08', 'gray6', '2004-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS447256505201', '王詩涵', 1, '+44 7352 063404', 4, '416380819355495924', 'No.40 Main building, 467 Maddox Street, London, W1S 1PU, United Kingdom', '1987-06-19', 0, 0, 'shihanwang7', '2019-01-21', 'wanshih', '2013-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS635636015615', '邵惠敏', 1, '+81 11-853-2677', 0, '506823826739422525', '27F, 13-3-4 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1988-06-17', 0, 0, 'siuwm', '2000-12-10', 'siwaiman', '2007-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS898609752420', '鄧心穎', 0, '+44 (1865) 13 3587', 3, '892226298620370869', 'Block 49, 464 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-04-02', 0, 0, 'tangsw', '2002-01-08', 'swtang', '2018-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS799668373718', '青木陸', 1, '+81 70-5223-8174', 1, '929553978580572091', '35-kai, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1989-07-25', 0, 0, 'rikuao', '2016-07-14', 'rikua', '2009-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS339244005878', '秦璐', 1, '+1 614-440-6814', 0, '820882589404512766', '378 East Cooke Road Apt 36, Columbus, GA 43214, United States', '1998-02-23', 0, 0, 'qinl', '2000-12-03', 'luqin', '2004-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS374063887628', 'Bonnie Scott', 0, '+86 755-6483-2680', 1, '936072323243147836', '中国深圳福田区深南大道945号18栋', '1994-09-05', 0, 0, 'scottbonnie', '2012-06-16', 'scott6', '2015-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS882413056593', '李詩涵', 0, '+44 7735 728631', 0, '635851208627518360', 'No.2 Main building, 473 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1990-05-08', 0, 0, 'lshi3', '2004-12-20', 'shihli', '2006-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS805335258890', 'Victor Morgan', 0, '+86 769-5406-8726', 1, '171415490035590627', '中国东莞坑美十五巷279号17栋', '1989-10-11', 0, 0, 'morganvicto', '2012-11-26', 'victormorga', '2006-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS371464639695', 'Jacqueline Hicks', 1, '+81 70-2822-4429', 0, '871143860848292197', '日本おおさかし近江堂一丁目7番17号7階', '1989-04-02', 0, 0, 'hicks2014', '2006-04-22', 'hicksjacqu', '2006-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS801315378133', '高橋凛', 0, '+81 90-3292-1741', 1, '283377752629781035', '17F, 3 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1988-06-02', 0, 0, 'tr422', '2014-11-28', 'takri', '2003-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS174497641519', '井上美羽', 1, '+81 70-5508-1805', 4, '475717580940758760', '日本札幌白石区菊水三条五丁目2番13号48階', '1998-02-03', 0, 0, 'inouemiu', '2001-03-13', 'miuinoue', '2013-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS667261906435', 'Phillip Gonzales', 0, '+81 66-870-9171', 1, '642818674211142097', '日本おおさかし西成区出城一丁目1番6号10階', '1996-05-05', 0, 0, 'philg', '2017-03-20', 'gonzalesphil63', '2015-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS033137060413', '河野美月', 0, '+81 80-8187-6859', 3, '659118690505686716', '日本おおさかし東住吉区東田辺三丁目27番13号5号室', '1997-08-13', 0, 0, 'komi', '2012-09-26', 'komitsuki', '2017-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS263328970255', 'Patrick Jones', 1, '+81 80-7564-8233', 2, '476343072448527294', '日本なごやし北区楠味鋺三丁目80番10号21号室', '1986-12-30', 0, 0, 'pajo', '2016-06-03', 'jonespat', '2000-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS060432825836', '高安琪', 0, '+81 80-0158-5195', 0, '334209169553969056', '日本ならし大和郡山市本庄町一丁目1番20号27階', '1989-03-27', 0, 0, 'angao', '2018-05-21', 'gao617', '2018-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS722932281104', 'Willie Garcia', 0, '+1 838-706-5657', 0, '727344808542925631', '445 Lark Street Apartment 31, Albany, NY 12210, United States', '1995-08-01', 0, 0, 'wgarc', '2019-07-18', 'willie18', '2015-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS811079448976', 'Leroy Gonzales', 0, '+86 185-1567-4594', 3, '884474265375528027', '中国成都市成华区双庆路726号33室', '1998-03-11', 0, 0, 'leroygonzales', '2019-02-17', 'gonzlero', '2012-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS193035066332', '柴田結翔', 1, '+86 755-336-7137', 1, '771457958912469939', '中国深圳罗湖区清水河一路935号14号楼', '1990-10-16', 0, 0, 'yuito105', '2012-03-17', 'yuitoshib', '2009-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS371703260128', 'Cindy Clark', 0, '+81 80-9472-0257', 4, '341637933685392832', '43F, 1-5-1, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1987-11-19', 0, 0, 'cindy52', '2003-08-09', 'clark1022', '2002-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS665981052661', '何致远', 1, '+86 152-1445-2172', 1, '617606985463366149', '中国东莞东泰五街141号32楼', '1997-11-04', 0, 0, 'zhiyuan9', '2003-09-29', 'zhe', '2019-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS471783732718', '宮崎優奈', 1, '+44 7077 762005', 3, '940071775715434973', 'No.32 Main building, 218 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1997-08-09', 0, 0, 'yuna7', '2013-01-19', 'yunam1', '2021-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS632992187005', '于睿', 0, '+86 197-6566-0341', 2, '062142152930218461', '19F, 210 Sanlitun Road, Chaoyang District, Beijing, China', '1995-10-15', 0, 0, 'ruiyu', '2002-11-09', 'yrui', '2019-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS872858219225', '安藤光莉', 0, '+81 80-3661-8201', 4, '796048644562749750', '36-kai, 3-15-14 Ginza, Chuo-ku, Tokyo, Japan', '1993-06-16', 0, 0, 'andhika', '2002-09-03', 'hikari1', '2004-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS156454772321', '苗詩君', 0, '+1 718-298-5970', 1, '609176676853421917', '546 Nostrand Ave Suite 8, Brooklyn, NY 11216, United States', '1997-11-30', 0, 0, 'skmiu5', '2021-06-05', 'miszekwan', '2007-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS046070360735', '陆子韬', 0, '+81 70-5390-3765', 1, '305602972529819488', '日本東京品川区東五反田五丁目2番14号19号室', '1994-11-15', 0, 0, 'zitaol1130', '2000-03-30', 'zitaolu3', '2016-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS652095351180', '龚睿', 0, '+86 21-808-9331', 2, '560243050271281260', '28F, 921 Binchuan Rd, Minhang District, Shanghai, China', '1997-01-27', 0, 0, 'ruig520', '2006-08-30', 'rgong', '2011-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS029498403915', '石田大地', 0, '+81 11-888-9595', 3, '139102699112450799', '日本札幌中央区宮の森四条六丁目1番9号25階', '1987-02-03', 0, 0, 'ishidadaichi', '2019-02-07', 'daichii', '2010-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS508309418009', 'Harry Wright', 0, '+86 182-5052-5735', 0, '697048915328672646', '中国北京市東城区東直門內大街117号华润大厦40室', '1996-02-22', 0, 0, 'harwright87', '2010-08-16', 'harryw', '2012-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS243501000564', '向發', 1, '+86 192-1981-0568', 0, '938426226952496592', '中国成都市成华区双庆路241号华润大厦7室', '1985-12-22', 0, 0, 'fheung', '2007-01-28', 'fath3', '2011-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS547427659189', '鐘慧琳', 0, '+86 28-9421-1079', 1, '224353650589225449', 'Room 34, No.696, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1996-12-14', 0, 0, 'wlc', '2014-09-08', 'chungwailam', '2007-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS953146373267', '杨子韬', 0, '+81 3-5773-1933', 4, '469451783917275754', 'Rm. 25, 2-3-17 Yoyogi, Shibuya-ku, Tokyo, Japan', '1986-05-19', 0, 0, 'yangzit', '2016-03-02', 'yangzitao2', '2007-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS449331951572', 'Daniel Williams', 0, '+81 11-285-3353', 3, '649804214587304192', '16-kai, 2-1-12 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-05-23', 0, 0, 'wdaniel5', '2016-12-31', 'daniewill', '2020-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS881006819910', '杨秀英', 1, '+86 174-7278-2725', 0, '799728861852006017', '中国深圳福田区景田东一街448号9室', '1988-03-03', 0, 0, 'xiuyang46', '2014-03-25', 'xiuyingyang', '2021-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS288608131897', '菊地蒼士', 0, '+44 (1223) 40 9155', 2, '663411933126718719', 'Flat 8, 1 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1986-08-27', 0, 0, 'aoshikikuchi1', '2004-04-03', 'aoshik1209', '2003-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS770889377855', '島田玲奈', 1, '+44 5122 467564', 1, '408728912562167883', 'No.37 Main building, 205 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1991-02-19', 0, 0, 'rena10', '2008-01-16', 'res508', '2000-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS941777965542', '鈴木優奈', 0, '+81 52-802-5260', 4, '680191111247481115', '日本なごやし守山区瀬古東二丁目171番5号6階', '1985-01-05', 0, 0, 'suzuyuna5', '2011-01-28', 'suzuki3', '2004-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS731440957641', '谷明', 0, '+44 5706 854093', 2, '333388284752898626', 'No.44 Main building, 660 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1996-01-04', 0, 0, 'mikoo', '2017-09-26', 'koom', '2005-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS996930368990', 'Diane Tucker', 0, '+44 (1223) 41 1942', 2, '368368296301425009', 'Block 2, 719 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1994-12-04', 0, 0, 'diane6', '2014-01-28', 'tuckerdiane', '2001-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS098548707778', '鄧慧琳', 0, '+81 80-3417-2677', 2, '015077237488130254', '日本東京品川区東五反田五丁目2番1号23階', '1998-07-28', 0, 0, 'wltan', '2016-01-05', 'twailam61', '2016-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS140117850503', '范致远', 0, '+86 150-6271-8485', 2, '030312687852114138', 'No.6 building, 572 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1996-07-08', 0, 0, 'zhfa', '2001-06-01', 'zhiyfan74', '2009-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS836204989461', '松本聖子', 0, '+86 177-5177-7041', 2, '762674219918679367', 'No.37 building, 109 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1998-05-28', 0, 0, 'seikmatsumoto', '2011-02-17', 'seikmatsumoto', '2002-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS089951068080', '清水光', 1, '+81 80-4581-6017', 2, '366937053281278010', '39-kai, 1-7-13 Omido, Higashiosaka, Osaka, Japan', '1995-07-05', 0, 0, 'hikashimizu8', '2006-08-22', 'hikash78', '2010-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS261742989387', 'Tracy Lewis', 1, '+44 (151) 615 5987', 2, '437543718380196036', 'No.15 Main building, 373 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1991-03-30', 0, 0, 'ltracy', '2001-05-24', 'lewistrac2020', '2008-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS409800863350', '馬仲賢', 0, '+44 (1865) 92 0343', 1, '980894460581723142', 'Flat 3, 738 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1995-03-27', 0, 0, 'chum', '2000-01-12', 'mcy', '2021-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS520755747501', 'Anthony Fernandez', 0, '+44 7710 200866', 0, '845791615989067969', 'Block 6, 937 Park End St, Oxford, OX1 1JD, United Kingdom', '1996-11-04', 0, 0, 'fan531', '2001-02-25', 'anthonyfe', '2001-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS219140963088', '阿部結翔', 0, '+1 838-556-7171', 0, '854407410562590952', '155 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1986-10-19', 0, 0, 'yuitoabe55', '2009-01-16', 'yuitoa', '2010-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS255736186255', '陶致远', 0, '+86 168-1642-7556', 3, '326484462736695250', '中国广州市白云区小坪东路56号华润大厦16室', '1991-12-29', 0, 0, 'zhiyuanta1007', '2011-02-19', 'zhtao', '2017-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS043622641416', 'Wayne Burns', 1, '+86 152-7173-3864', 3, '780868493337511882', 'Room 13, CR Building, 461 Dong Zhi Men, Dongcheng District, Beijing, China', '1987-07-22', 0, 0, 'wayne602', '2004-01-18', 'burnsway', '2014-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS736178831756', '林國賢', 1, '+81 11-556-9497', 1, '427125576610365950', '日本札幌厚別区上野幌一条二丁目1番9号40階', '1989-01-21', 0, 0, 'kwokyin1992', '2004-09-10', 'kwolam67', '2001-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS652842474316', 'Robert Porter', 0, '+81 70-0099-2932', 0, '040005760186476028', '36-kai, 1-5-6, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1987-06-12', 0, 0, 'porter506', '2019-07-07', 'porterr521', '2008-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS515269416768', '史秀英', 1, '+1 213-318-4548', 1, '216034652644381108', '328 Figueroa Street Suite 3, Los Angeles, CA 90037, United States', '1996-04-24', 0, 0, 'xiuyishi', '2019-08-04', 'xis14', '2011-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS613742561883', 'Anita Moreno', 1, '+44 5639 241874', 3, '542455569654125191', 'Unit 12, Oxford Eco Centre, 406 Maddox Street, London, W1S 1PU, United Kingdom', '1994-09-17', 0, 0, 'anitamoreno60', '2016-11-24', 'amore', '2019-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS950211292690', '胡睿', 0, '+86 28-810-5386', 4, '659609834942954110', '中国成都市成华区双庆路639号40室', '1993-06-12', 0, 0, 'ruh619', '2006-09-30', 'hurui', '2014-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS462458638431', '和田聖子', 0, '+1 838-456-6005', 2, '468619936361111827', '449 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1987-07-29', 0, 0, 'seiko18', '2015-07-23', 'seikowada1988', '2004-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS589964922847', '向安琪', 0, '+81 90-6199-6206', 3, '122869325286628868', 'Rm. 22, 1-7-1 Saidaiji Akodacho, Nara, Japan', '1994-05-23', 0, 0, 'anqix1218', '2007-09-29', 'anqixiang', '2020-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS704777072986', '中山玲奈', 0, '+86 151-4113-5579', 3, '856418573426228042', 'Room 28, CR Building, 836 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-01-30', 0, 0, 'rnakayama', '2007-09-27', 'renan1982', '2005-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS404743645896', '邱秀英', 0, '+86 21-5442-8536', 3, '788612658202782605', 'Room 36, 348 Ganlan Rd, Pudong, Shanghai, China', '1988-11-03', 0, 0, 'xqiu', '2002-11-27', 'qiuxiu', '2019-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS923985111822', '渡辺彩乃', 1, '+81 90-3526-6631', 2, '249797287389132347', '日本ならし学園南三丁目9番20号24階', '1991-03-03', 0, 0, 'ays228', '2002-12-23', 'asato05', '2014-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS990575288326', '程杰宏', 0, '+1 212-503-7314', 1, '004777377773180210', '93 Wooster Street Apartment 48, New York, NY 10012, United States', '1991-06-13', 0, 0, 'cheng816', '2018-03-01', 'chj', '2005-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS219461308316', '藤井詩乃', 0, '+1 718-899-4612', 1, '301583455575044424', '974 Columbia St Apt 9, Brooklyn, NY 11231, United States', '1990-10-09', 0, 0, 'fushino', '2000-08-28', 'shinof', '2012-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS548451484576', '孙睿', 0, '+81 80-5488-4680', 0, '018507030906610676', '日本おおさかし近江堂一丁目7番6号16階', '1989-06-06', 0, 0, 'sunr00', '2012-08-15', 'sunrui', '2011-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS833798720459', '佐野瑛太', 0, '+86 168-7006-5631', 0, '516920581563940905', '中国深圳福田区景田东一街326号42楼', '1985-10-12', 0, 0, 'eita106', '2010-05-29', 'eitasano', '2002-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS797905027167', '近藤和真', 0, '+81 90-5821-2641', 1, '282679225280274130', '日本札幌白石区菊水三条五丁目4番7号19階', '1990-01-08', 0, 0, 'kazumakondo2', '2007-04-22', 'kazkondo81', '2014-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS650344031021', 'Marjorie Nguyen', 1, '+86 21-122-9482', 4, '488714866273368590', '中国上海市黄浦区淮海中路101号6栋', '1991-09-14', 0, 0, 'marngu627', '2013-05-07', 'marjong', '2013-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS620843381024', '呂頴璇', 1, '+86 21-9918-1828', 2, '151097010405413758', '中国上海市黄浦区淮海中路320号50号楼', '1992-04-04', 0, 0, 'wingsuenlui', '2002-07-23', 'wingsuen91', '2010-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS440076721956', '内田葵', 0, '+81 70-2616-5843', 1, '385612844242716398', '日本おおさかし近江堂一丁目7番20号47階', '1991-01-25', 0, 0, 'uchidaaoi9', '2005-07-29', 'aouchi', '2014-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS047851858710', '容梓軒', 1, '+44 (121) 100 5659', 1, '408806358695145512', 'Block 14, 258 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1995-06-11', 0, 0, 'tszhin402', '2000-10-09', 'yung5', '2015-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS358697637850', 'Bruce Meyer', 1, '+81 66-782-8622', 1, '234579398377984676', '日本おおさかし平野区加美東四丁目9番20号28階', '1995-01-17', 0, 0, 'brucm222', '2002-05-29', 'brucemeyer1204', '2004-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS595751084968', '熊杰宏', 0, '+81 3-9429-9927', 3, '812259041420476183', '日本東京中央区銀座三丁目12番6号42階', '1996-06-19', 0, 0, 'jiehoxiong3', '2011-12-28', 'xij', '2009-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS832710327576', '橋本翼', 1, '+86 21-0914-5084', 1, '834858815932542092', '中国上海市徐汇区虹桥路579号48楼', '1992-07-17', 0, 0, 'tsubasahashi', '2009-08-08', 'hashimoto54', '2013-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS996550983855', '顧淑怡', 0, '+86 10-790-0579', 3, '284128429591017697', 'No.30 building, 312 028 County Rd, Yanqing District, Beijing, China', '1988-02-06', 0, 0, 'sukyeeku', '2003-09-01', 'sukyeeku8', '2012-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS831697559354', '吕宇宁', 0, '+81 80-3978-1523', 1, '832794140638560510', 'Rm. 6, 6-1-16, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1985-03-30', 0, 0, 'luy', '2009-01-07', 'lu7', '2021-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS381852556217', '任睿', 1, '+81 90-8255-8639', 2, '583224214232831150', '28F, 4 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-11-23', 0, 0, 'rui41', '2005-05-28', 'ruire', '2020-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS079594031304', '胡致远', 1, '+86 755-4222-7667', 1, '888341897564058837', 'No.7 building, 316 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1992-02-18', 0, 0, 'zhu1114', '2010-01-26', 'huzhiyuan', '2017-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS040117234256', '李頴璇', 0, '+81 74-672-2815', 2, '175851185454239007', '日本ならし学園南三丁目9番4号41階', '1985-07-24', 0, 0, 'wingsuenlee10', '2021-12-29', 'leews52', '2015-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS197680213635', '周致远', 0, '+1 330-234-7935', 1, '304703760288116863', '9 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1987-07-09', 0, 0, 'zhiyuan515', '2001-07-27', 'zhou4', '2011-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS213936080397', '佐野涼太', 1, '+86 146-6259-5898', 2, '249462745659158725', '中国成都市成华区双庆路994号44栋', '1994-05-20', 0, 0, 'ryosan', '2009-04-18', 'sanoryo', '2016-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS142150509714', '松井架純', 1, '+81 66-834-3760', 3, '934345211049865522', '日本おおさかし西成区出城一丁目1番13号33階', '1996-02-27', 0, 0, 'kasumi5', '2010-07-21', 'matsui601', '2021-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS159294627516', '郝岚', 0, '+44 (161) 383 5976', 1, '547130535443850879', 'Block 6, 668 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1994-10-02', 0, 0, 'lahao', '2014-01-04', 'lahao', '2013-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS620275554117', '謝淑怡', 1, '+1 330-003-7001', 1, '944372734381840882', '321 West Market Street Apt 5, Akron, OH 44333, United States', '1998-06-19', 0, 0, 'sukyeets63', '2002-07-26', 'tsesukyee1206', '2003-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS148108759337', '曾安琪', 1, '+86 197-7642-8110', 1, '122247434080327905', '中国深圳罗湖区田贝一路856号32室', '1991-11-15', 0, 0, 'anqz8', '2022-01-20', 'zenan226', '2001-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS303130935677', '小島健太', 1, '+86 152-7043-0573', 1, '242591682393091537', '37F, 291 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1990-11-05', 0, 0, 'kentakojima', '2019-10-04', 'kojkenta4', '2018-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS002010507645', 'Amy Ferguson', 0, '+81 74-431-6435', 4, '343279316885886152', 'Rm. 11, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-05-30', 0, 0, 'af316', '2020-10-02', 'fergusonamy', '2000-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS429874496034', '加藤詩乃', 1, '+86 142-7596-7207', 1, '218322497925693888', '中国广州市白云区机场路棠苑街五巷643号华润大厦45室', '1988-08-15', 0, 0, 'katoshino', '2016-12-28', 'kato5', '2020-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS703385231092', '朱安琪', 1, '+86 10-266-8131', 1, '329763149581339587', '23F, 370 Sanlitun Road, Chaoyang District, Beijing, China', '1996-07-13', 0, 0, 'zhua', '2015-03-27', 'anqizhu6', '2004-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS064812721415', '傅岚', 0, '+81 52-566-6815', 2, '835200322430816475', '11F, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1989-11-14', 0, 0, 'lanfu', '2020-08-02', 'lafu59', '2001-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS250114313064', 'Tiffany Grant', 1, '+86 10-3348-9753', 0, '328971012195443623', 'Room 18, CR Building, 627 West Chang''an Avenue, Xicheng District, Beijing, China', '1987-11-19', 0, 0, 'granttiffany908', '2012-09-04', 'granttiffany', '2021-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS806112609203', '萬慧儀', 1, '+1 330-642-0099', 0, '413799434834959162', '732 Ridgewood Road Apartment 45, Akron, OH 44321, United States', '1991-10-25', 0, 0, 'waiyee45', '2014-12-14', 'waiyeem', '2006-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS656685967263', 'Pamela Thompson', 1, '+81 66-710-1681', 3, '280594141699810456', '46F, 3-27-2 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1996-01-04', 0, 0, 'thomppamela816', '2001-08-31', 'thompsonp', '2021-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS526791868381', '曾璐', 1, '+1 212-714-9042', 3, '687607870014720171', '903 Bank Street 3rd Floor, New York, NY 10014, United States', '1990-02-17', 0, 0, 'zenl', '2008-10-24', 'zengl', '2000-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS676388282955', '郑宇宁', 1, '+81 66-685-9591', 0, '804750429929243260', 'Rm. 28, 2-1-10 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1993-05-16', 0, 0, 'zyun826', '2006-01-09', 'zyu', '2004-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS813619988963', '菅原架純', 0, '+81 3-5146-5354', 2, '825809362448446490', 'Rm. 16, 5-2-14 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-06-08', 0, 0, 'kasumisug6', '2009-03-23', 'kasugawara90', '2016-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS524251826582', '任慧嫻', 1, '+44 (116) 789 3509', 1, '616808773002709831', 'No.46 Main building, 885 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-05-04', 0, 0, 'yamwaihan', '2016-09-22', 'yamwaihan4', '2016-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS037395935476', 'Wayne Bennett', 0, '+1 213-936-6461', 1, '171357424140799035', '760 Figueroa Street Apartment 48, Los Angeles, CA 90037, United States', '1987-05-10', 0, 0, 'wayne907', '2018-06-10', 'bennwayn', '2010-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS453007756981', 'Kimberly Lewis', 1, '+86 172-8505-7120', 3, '917448402815389044', 'Room 14, CR Building, 889 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1994-03-18', 0, 0, 'lkimbe', '2006-07-29', 'kimbl', '2021-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS442748532656', '原田花', 1, '+81 90-9875-7985', 3, '415666905550824197', '46-kai, 1-1-15 Deshiro, Nishinari Ward, Osaka, Japan', '1985-06-13', 0, 0, 'hhar', '2020-07-22', 'haha', '2010-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS782920197798', '中村大和', 1, '+81 11-797-7167', 4, '281680741248325935', '16-kai, 2-1-7 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1991-12-01', 0, 0, 'yamato1021', '2006-06-24', 'nyam', '2012-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS281276099914', '山崎玲奈', 1, '+1 330-729-6990', 2, '288182439574780626', '695 Fern Street Apartment 5, Akron, OH 44307, United States', '1996-03-29', 0, 0, 'renayam7', '2016-09-08', 'ryama', '2017-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS583995666669', '石晓明', 0, '+81 90-0917-1231', 2, '789630488437557111', 'Rm. 16, 2-5-8 Chitose, Atsuta Ward, Nagoya, Japan', '1993-11-07', 0, 0, 'shixiaom', '2015-11-14', 'xshi', '2002-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS970898573075', 'Aaron Washington', 0, '+86 28-302-2899', 1, '642049734596243985', '中国成都市锦江区人民南路四段636号23号楼', '1992-11-09', 0, 0, 'aaronw63', '2001-05-11', 'washingtonaa404', '2012-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS906918968159', '林陸', 1, '+1 718-947-7771', 2, '228005404834828890', '494 1st Ave Apt 5, Brooklyn, NY 11220, United States', '1998-07-08', 0, 0, 'har', '2022-01-28', 'hayasrik2', '2005-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS779734966774', '严詩涵', 0, '+81 70-2136-6959', 3, '385750700102518783', '日本ならし大和郡山市本庄町一丁目1番12号6号室', '1991-10-25', 0, 0, 'yanshihan', '2003-11-17', 'shihany917', '2008-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS029756721222', '張學友', 0, '+81 3-2532-4558', 2, '665085601199758723', '10F, 3-15-14 Ginza, Chuo-ku, Tokyo, Japan', '1988-12-26', 0, 0, 'hyc', '2002-01-18', 'hokyau61', '2001-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS698351689714', 'Carlos Mills', 1, '+1 838-256-6912', 2, '140314986195635514', '307 Central Avenue Apartment 28, Albany, NY 12206, United States', '1997-07-09', 0, 0, 'millsc', '2008-10-19', 'cm11', '2014-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS086005363018', '吕致远', 0, '+86 28-663-0065', 3, '545714778362014483', '中国成都市锦江区红星路三段74号48室', '1988-09-21', 0, 0, 'luzhiyu', '2015-11-12', 'luzhiyu', '2000-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS214539947697', '上野美月', 1, '+1 212-780-9453', 2, '170885462347745914', '760 Fifth Avenue Suite 47, New York, NY 10017, United States', '1992-01-24', 0, 0, 'mitsukiueno814', '2005-05-26', 'uem825', '2009-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS310715537734', '韦晓明', 0, '+86 196-9466-2553', 4, '421829811251531107', '中国上海市黄浦区淮海中路895号18号楼', '1995-07-13', 0, 0, 'xiaw1108', '2020-09-23', 'xiaowei06', '2015-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS644003796289', 'Anita Vargas', 0, '+86 755-0626-1463', 2, '608706507019181831', '中国深圳龙岗区布吉镇西环路371号华润大厦16室', '1992-09-02', 0, 0, 'vargasanita8', '2000-01-29', 'vargas54', '2002-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS930343064891', '萧睿', 0, '+81 90-2936-6761', 3, '240113204333363227', '日本札幌中央区宮の森四条六丁目1番20号10階', '1995-02-27', 0, 0, 'ruxia607', '2011-03-01', 'xr2000', '2003-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS365599035900', '侯子异', 1, '+1 614-826-1033', 4, '795920250405075320', '483 East Cooke Road Suite 42, Columbus, GA 43214, United States', '1990-01-27', 0, 0, 'hou1985', '2021-03-31', 'ziyi51', '2008-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS900493942171', '安藤美羽', 1, '+1 838-420-8714', 2, '867282672756095393', '269 State Street Apartment 1, Albany, NY 12203, United States', '1994-02-01', 0, 0, 'ando60', '2004-08-10', 'miuando', '2022-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS893951524665', '岩崎愛梨', 0, '+86 10-7368-3684', 4, '217904087347903643', 'Room 10, 874 Yueliu Rd, Fangshan District, Beijing, China', '1991-03-13', 0, 0, 'iwasakiai', '2003-02-14', 'iairi', '2016-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS362105759736', 'Shannon Rice', 1, '+81 11-404-5563', 1, '157230013718263650', '6-kai, 5-19-20 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1995-06-19', 0, 0, 'riceshannon', '2002-06-03', 'shr6', '2015-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS877463794585', '山崎陸', 1, '+44 5830 291441', 1, '976511360212684503', 'Unit 35, Oxford Eco Centre, 244 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1993-01-27', 0, 0, 'yamazakiriku', '2014-03-30', 'riku51', '2007-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS621895790752', 'Alice Young', 1, '+1 330-063-8051', 3, '161086484948719596', '884 Riverview Road Suite 8, Akron, OH 44313, United States', '1985-08-12', 0, 0, 'ya74', '2007-01-14', 'yalice', '2013-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS555263678773', '金子葵', 0, '+44 (20) 1610 9014', 4, '794031942395220949', 'Block 35, 417 Maddox Street, London, W1S 1PU, United Kingdom', '1987-12-21', 0, 0, 'aoikaneko302', '2004-08-26', 'kaneko1', '2017-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS495383560667', '村上七海', 0, '+86 28-753-1956', 3, '005073974555048142', '中国成都市成华区二仙桥东三路749号14楼', '1991-12-31', 0, 0, 'murakaminanami', '2013-10-20', 'mn717', '2007-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS247700196382', '今井優奈', 0, '+81 3-0975-0435', 2, '203904525900479430', '日本東京千代田区丸の内一丁目6番11号32号室', '1997-01-17', 0, 0, 'yunai', '2018-10-13', 'imai501', '2012-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS193717648097', 'Ann Rice', 1, '+44 5981 623932', 1, '923945527062315912', 'Unit 9, Oxford Eco Centre, 288 New Street, Birmingham, B2 4DB, United Kingdom', '1990-03-05', 0, 0, 'arice', '2012-03-17', 'riceann05', '2003-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS746153856377', '中野詩乃', 1, '+1 718-859-5108', 1, '990587857953650282', '435 Columbia St Apartment 44, Brooklyn, NY 11231, United States', '1989-11-11', 0, 0, 'nakanoshino7', '2018-03-16', 'nakanoshi', '2019-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS083419887418', '馬永權', 0, '+44 (161) 720 3250', 2, '494256300064093408', 'Flat 36, 241 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-03-26', 0, 0, 'ma613', '2003-10-24', 'wingkuen05', '2000-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS625055504202', 'Willie Murphy', 1, '+1 718-973-4071', 2, '467881063742670721', '748 Flatbush Ave Suite 23, Brooklyn, NY 11225, United States', '1998-07-09', 0, 0, 'willie89', '2021-10-14', 'williemurphy', '2015-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS569021882417', '鄭俊宇', 0, '+1 312-276-8594', 3, '359674714976057345', '658 Pedway Suite 30, Chicago, IL 60601, United States', '1994-12-28', 0, 0, 'cyc', '2001-06-14', 'cheng10', '2015-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS577274487221', '杜宇宁', 1, '+86 28-2156-6113', 2, '906116946189575775', '中国成都市成华区玉双路6号719号18栋', '1998-12-19', 0, 0, 'yundu', '2001-09-04', 'duyunin', '2018-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS342660938156', '藤井蒼士', 0, '+1 312-502-1943', 4, '110930313804873681', '30 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1997-04-03', 0, 0, 'aoshi85', '2002-06-16', 'aoshifuji', '2009-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS290414877373', '小林拓哉', 0, '+44 7645 777492', 1, '140852098856970523', 'Block 3, 874 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1998-12-05', 0, 0, 'ktak5', '2010-10-08', 'takuya8', '2006-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS191298080787', 'Nancy Smith', 0, '+1 213-176-0102', 3, '248898615904988515', '402 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1987-06-03', 0, 0, 'smithn6', '2007-06-01', 'nsmith', '2002-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS442675075759', '朱璐', 0, '+86 144-0909-1254', 2, '248521160067494253', '中国北京市延庆区028县道141号26楼', '1995-08-13', 0, 0, 'zhl74', '2011-02-19', 'zhu4', '2003-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS336003797126', 'Crystal Flores', 0, '+81 52-300-1594', 2, '808282210367438077', '25-kai, 3 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1985-11-16', 0, 0, 'crystflore8', '2005-03-21', 'flores113', '2009-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS724142565023', '于杰宏', 0, '+86 760-274-8446', 3, '206269887676290011', 'Room 45, CR Building, 96 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1985-06-30', 0, 0, 'yu1027', '2012-06-10', 'yjie', '2010-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS866015599921', '韩嘉伦', 0, '+86 164-2756-8002', 2, '055235125584999513', '中国成都市成华区玉双路6号743号22号楼', '1992-08-10', 0, 0, 'han15', '2004-10-17', 'jialunha', '2018-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS913831467705', '高橋湊', 0, '+44 5599 208041', 2, '265181222644930353', 'Unit 13, Oxford Eco Centre, 273 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1991-10-07', 0, 0, 'mitakahashi', '2019-03-22', 'takminato', '2004-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS646041964750', '丸山海斗', 1, '+81 70-0397-6941', 3, '686359311204576462', '22F, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1986-04-01', 0, 0, 'maruyamak', '2014-04-20', 'maruyamakaito92', '2006-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS791857555501', 'Sherry Tran', 0, '+86 769-854-8415', 2, '614085584127081713', '21F, 311 Kengmei 15th Alley, Dongguan, China', '1995-09-29', 0, 0, 'sherry10', '2008-04-16', 'shetr9', '2019-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS170912012649', '佐野七海', 1, '+86 755-287-3143', 3, '614951643572262236', '中国深圳福田区景田东一街559号41栋', '1988-08-21', 0, 0, 'nasano68', '2020-04-24', 'sannanami98', '2006-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS929916021995', '甘家文', 1, '+86 190-5152-7262', 1, '220415672697000269', '中国北京市延庆区028县道418号24楼', '1998-03-05', 0, 0, 'kmkam01', '2007-12-27', 'kamankam', '2010-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS887245643526', 'Joshua West', 1, '+1 213-300-5934', 2, '955685865819532189', '342 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1988-03-01', 0, 0, 'wejoshua', '2009-07-17', 'joshuwest', '2016-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS636203447436', '吳明詩', 0, '+81 3-0662-1464', 3, '689227281788538098', '日本東京港区東新橋一丁目5番18号34号室', '1991-12-28', 0, 0, 'msng9', '2007-08-19', 'mingszeng1', '2002-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS470107836019', 'Lucille White', 1, '+1 213-775-3961', 4, '726524751560218552', '420 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1987-06-17', 0, 0, 'whitelucille', '2020-06-25', 'lucillewh', '2018-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS731253429349', '邵宇宁', 1, '+86 10-4305-3619', 1, '599993735677314373', '14F, 58 FuXingMenNei Street, XiCheng District, Beijing, China', '1997-10-25', 0, 0, 'shaoyuning9', '2021-08-07', 'yunins', '2003-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS587479998089', '林架純', 1, '+86 183-9749-5382', 0, '547732407425969818', 'No.32 building, No.637, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1998-05-25', 0, 0, 'hayashi422', '2008-11-03', 'khayas1959', '2003-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS213726695288', '黎惠敏', 0, '+86 192-4205-7916', 4, '723811287067891462', 'No.37 building, 18 Kengmei 15th Alley, Dongguan, China', '1985-01-07', 0, 0, 'laiwaima', '2013-12-09', 'lawm', '2021-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS517731519936', '洪俊宇', 0, '+86 179-4800-4808', 0, '031485754890998071', 'Room 17, CR Building, 918 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1987-11-26', 0, 0, 'hungchunyu8', '2018-11-17', 'hucy818', '2001-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS601069641200', 'Ray Wells', 0, '+81 52-227-5826', 3, '339619810644853058', '日本なごやし北区楠味鋺三丁目80番9号25階', '1991-06-26', 0, 0, 'raw', '2019-08-10', 'raywells10', '2014-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS893873265739', 'Connie Morgan', 1, '+81 52-415-7391', 3, '346522934828534694', 'Rm. 11, 2-5-17 Chitose, Atsuta Ward, Nagoya, Japan', '1993-10-29', 0, 0, 'mc416', '2012-12-28', 'morganconnie2003', '2016-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS581600480119', 'Patricia Burns', 0, '+86 10-0618-6369', 4, '957990088019993110', '中国北京市朝阳区三里屯路251号33栋', '1988-06-03', 0, 0, 'burnspa', '2002-12-21', 'burnspatr614', '2008-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS914645246844', '有村舞', 1, '+1 718-565-4387', 1, '443288849105643862', '967 Columbia St Apartment 31, Brooklyn, NY 11231, United States', '1986-04-05', 0, 0, 'maiarim', '2020-03-08', 'arimura527', '2017-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS132042755820', '鈴木海斗', 0, '+81 52-853-5107', 1, '898148571267571795', '16-kai, 7 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-11-12', 0, 0, 'suzuki18', '2010-04-02', 'ksuzu', '2002-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS126473044967', 'John White', 1, '+81 3-7885-4388', 1, '196791468293598883', '日本東京渋谷区代々木二丁目3番8号21号室', '1992-05-18', 0, 0, 'jwhite', '2007-05-23', 'white48', '2020-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS738463136124', '小島美月', 1, '+81 70-6829-4415', 3, '074864174160327402', '日本札幌中央区宮の森四条六丁目1番7号50号室', '1996-08-20', 0, 0, 'kojima915', '2006-05-03', 'mitsukikoji1940', '2019-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS967842072148', '陶震南', 0, '+81 90-6331-1274', 3, '880443648205343689', '22-kai, 2-3-6 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-08-09', 0, 0, 'tazhennan1123', '2013-02-01', 'zhta', '2015-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS007228502162', '林致远', 1, '+1 213-194-7300', 1, '768843456031122651', '724 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1998-03-18', 0, 0, 'zhiyli50', '2021-11-08', 'zhiyuanlin', '2000-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS711726210986', '阮頴璇', 0, '+86 20-8113-6531', 2, '929827728344066161', 'No.20 building, 802 Xiaoping E Rd, Baiyun , Guangzhou, China', '1994-05-18', 0, 0, 'yuen1', '2005-10-24', 'yuen5', '2014-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS143292012353', '崔永發', 0, '+81 3-6082-1723', 3, '379977709206389959', '日本東京渋谷区代々木二丁目3番13号21階', '1990-02-12', 0, 0, 'chowi514', '2016-07-30', 'choiwf', '2017-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS223943055280', '區安娜', 1, '+44 (151) 345 6051', 4, '075076071336649486', 'Block 35, 941 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1988-05-07', 0, 0, 'onau48', '2010-12-04', 'aonna66', '2002-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS282878466043', '许晓明', 1, '+86 755-3249-6521', 1, '213586262511089966', '中国深圳福田区景田东一街494号34楼', '1990-10-05', 0, 0, 'xuxiaoming', '2013-11-17', 'xiaoming2', '2019-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS039763714987', '千葉湊', 0, '+44 (1865) 19 8855', 3, '801320976407233728', 'Flat 33, 382 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1991-09-07', 0, 0, 'minato3', '2011-11-18', 'minachiba', '2011-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS038240260070', '姜詩涵', 0, '+44 7540 109790', 4, '569447405867579154', 'Unit 16, Oxford Eco Centre, 85 Regent Street, London, W1B 2LX, United Kingdom', '1988-04-07', 0, 0, 'jiangs', '2010-08-20', 'jiashihan', '2016-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS628764442478', '姜杰宏', 0, '+81 52-876-3015', 1, '629524602130161117', '15F, 4 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1987-10-04', 0, 0, 'jiejian', '2001-11-27', 'jiehjiang7', '2014-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS270255284968', 'Peter Long', 0, '+81 70-0911-7245', 1, '846183011809094919', '日本札幌豊平区豊平三条十三丁目3番15号34号室', '1996-10-05', 0, 0, 'peterlong', '2020-04-12', 'pelong', '2001-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS862167748909', '陆子异', 1, '+86 156-2526-0504', 1, '062946345397534446', 'Room 36, 432 Jiangnan West Road, Haizhu District, Guangzhou, China', '1998-10-19', 0, 0, 'luz1029', '2000-07-09', 'lziyi', '2013-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS823231117413', '莫致远', 1, '+81 74-251-4305', 2, '434765871425399640', '11-kai, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1997-10-16', 0, 0, 'zmo', '2000-05-07', 'mozhiy', '2002-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS645645723385', '任心穎', 0, '+81 74-852-2227', 3, '684415437924001770', '日本ならし大和郡山市本庄町一丁目1番6号13階', '1991-09-02', 0, 0, 'sumwing3', '2000-11-17', 'yam9', '2012-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS205848048694', '丸山詩乃', 0, '+81 52-015-8664', 3, '096542851630565149', '日本なごやし北区楠味鋺三丁目80番14号21号室', '1986-04-21', 0, 0, 'marushino', '2003-07-31', 'shm', '2003-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS262788261236', '高思妤', 0, '+81 3-3196-2385', 1, '559752758528306396', '25-kai, 5-2-12 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1989-12-21', 0, 0, 'sykao', '2011-06-30', 'kao10', '2005-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS012746515264', '市川和真', 0, '+81 11-959-6952', 1, '345629007678152026', '39-kai, 5-4-8 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1988-12-17', 0, 0, 'ichikawa8', '2021-04-19', 'kazumaichik', '2017-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS721991838931', '魏晓明', 0, '+44 (20) 2601 7923', 3, '722903502217681018', 'Block 24, 869 Pollen Street, London, W1S 1NG, United Kingdom', '1989-03-06', 0, 0, 'xiaomingw', '2004-07-12', 'wexiaom', '2019-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS477872495650', '梅富城', 0, '+44 7898 640408', 1, '735105392509272188', 'No.42 Main building, 11 Hanover St, Liverpool, L1 4AF, United Kingdom', '1993-11-08', 0, 0, 'fushingmu', '2004-11-16', 'fushingmu814', '2003-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS547819670128', 'Eleanor Castro', 0, '+1 213-965-9314', 0, '608296923215359456', '295 Wall Street Apartment 8, Los Angeles, CA 90003, United States', '1993-03-13', 0, 0, 'castrele1998', '2002-04-03', 'castroeleanor8', '2009-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS880490838991', '原田花', 1, '+86 20-980-4569', 3, '862225879872517573', '中国广州市海珠区江南西路989号华润大厦17室', '1986-09-14', 0, 0, 'hahar', '2009-04-14', 'hana130', '2017-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS512123275266', 'Julia Lopez', 0, '+86 755-2759-3808', 1, '628985416179571074', 'No.27 building, 506 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1998-11-11', 0, 0, 'jullop76', '2014-03-31', 'lopez5', '2012-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS145789516667', '崔家玲', 1, '+81 70-7390-7941', 3, '044293327200334799', '42-kai, 2-3-11 Yoyogi, Shibuya-ku, Tokyo, Japan', '1998-05-20', 0, 0, 'kalingchoi9', '2013-10-23', 'kaling2003', '2017-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS448401180688', 'Walter Wallace', 0, '+1 213-168-7340', 4, '440994726052307933', '311 Sky Way Apt 25, Los Angeles, CA 90043, United States', '1987-05-18', 0, 0, 'wallaw', '2006-09-05', 'wallace9', '2013-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS929197663039', '安藤蒼士', 1, '+81 11-400-8834', 1, '246246151222006923', 'Rm. 29, 5-19-19 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-04-27', 0, 0, 'aoshi9', '2001-12-31', 'andaoshi1222', '2021-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS289716103251', '程秀英', 0, '+81 11-710-5856', 4, '973590614157402755', '33-kai, 5-19-15 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1996-08-01', 0, 0, 'xiuycheng1993', '2004-10-25', 'xcheng518', '2010-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS960481410484', 'Rodney Hunter', 1, '+86 10-860-3049', 3, '723330522614404613', 'Room 45, CR Building, 720 Yueliu Rd, Fangshan District, Beijing, China', '1989-07-15', 0, 0, 'rodh', '2001-09-29', 'hunterrodne', '2000-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS044257394985', '福田陸', 0, '+86 28-261-4098', 2, '390252270662854786', 'Room 34, No. 246, Shuangqing Rd, Chenghua District, Chengdu, China', '1985-03-24', 0, 0, 'riku1', '2013-04-23', 'fukuriku', '2002-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS946064119804', '黃天榮', 1, '+1 614-729-7264', 1, '415218573008572184', '555 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1988-11-30', 0, 0, 'wtinwing1203', '2010-05-18', 'twwong', '2009-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS575337375179', '吴宇宁', 0, '+81 70-8680-0915', 2, '665440981984997373', '日本なごやし北区清水三丁目19番8号2階', '1998-05-11', 0, 0, 'ywu09', '2015-04-20', 'yunwu', '2015-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS296946605989', '唐詠詩', 0, '+81 90-7163-4968', 0, '379690005837630945', '日本なごやし守山区瀬古東二丁目171番5号14階', '1993-07-11', 0, 0, 'tongwingsze1968', '2021-07-02', 'tongwingsze4', '2001-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS434543260126', '岡田大輔', 0, '+44 7493 275567', 1, '850329309929281965', 'Block 24, 306 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1993-11-24', 0, 0, 'daisuke10', '2007-10-20', 'oda', '2021-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS218083649322', 'Kathy Shaw', 1, '+81 70-2989-3650', 0, '086060457010374610', '33-kai, 3-9-5 Gakuenminami, Nara, Japan', '1995-11-06', 0, 0, 'sk411', '2007-01-02', 'katshaw', '2006-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS111614692240', '陶睿', 0, '+1 614-782-5445', 3, '919240345362763176', '135 Wicklow Road Suite 14, Columbus, GA 43204, United States', '1993-11-07', 0, 0, 'ruitao', '2014-03-06', 'taru', '2012-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS634924426927', 'Grace Howard', 0, '+81 66-984-0600', 2, '728958061035263011', '32F, 2-1-17 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1992-05-10', 0, 0, 'hogr404', '2016-11-22', 'howagrace5', '2013-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS354159081777', '孙致远', 1, '+1 838-126-2508', 1, '000981643206581974', '217 Broadway Apartment 31, Albany, NY 12207, United States', '1998-04-16', 0, 0, 'sunzhiyuan1124', '2004-01-30', 'sz1972', '2019-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS515982486517', '于睿', 1, '+86 10-5696-9825', 3, '728670040508297329', '中国北京市东城区东单王府井东街796号华润大厦17室', '1996-09-19', 0, 0, 'yrui', '2007-03-30', 'ryu', '2008-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS172375039243', '夏子异', 0, '+81 90-5987-0197', 4, '254749698425177808', 'Rm. 29, 5 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1989-12-23', 0, 0, 'ziyix219', '2021-12-23', 'xiaziyi', '2013-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS576494470030', 'Maria Smith', 0, '+1 212-788-3236', 2, '959367342405016547', '459 Canal Street Apartment 10, New York, NY 10013, United States', '1992-09-10', 0, 0, 'smithmaria', '2018-11-02', 'smith46', '2010-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS374280634423', 'Debra Patterson', 0, '+1 614-598-0652', 3, '082883220470613722', '417 East Alley Suite 4, Columbus, GA 43201, United States', '1985-11-06', 0, 0, 'depatterson9', '2018-11-22', 'debrapatterson', '2012-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS322849849694', '孙晓明', 0, '+81 66-737-9183', 1, '550706532983041981', '4F, 2-1-3 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-10-13', 0, 0, 'sunx2', '2002-09-10', 'xiaomingsun', '2011-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS619939331315', '高木美咲', 0, '+81 90-1633-4078', 0, '987335829157725641', '日本ならし西大寺赤田町一丁目7番14号35階', '1996-01-05', 0, 0, 'mistakagi', '2012-10-10', 'takagi2', '2001-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS068291668964', '邵詩君', 1, '+44 (116) 768 0264', 2, '979401273088706628', 'Block 7, 734 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1997-07-07', 0, 0, 'siusk', '2001-11-10', 'szekwansiu', '2010-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS479275073374', '清水彩乃', 0, '+81 90-5431-6777', 3, '107969773702326946', 'Rm. 23, 5-2-12 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-06-11', 0, 0, 'shimizuayano', '2014-05-05', 'saya3', '2013-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS692280144342', '尹安琪', 0, '+86 180-6852-9562', 4, '289857662540146839', '中国北京市海淀区清河中街68号268号39号楼', '1987-01-23', 0, 0, 'yina708', '2017-06-14', 'anqiy403', '2020-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS981341933388', '菊地海斗', 1, '+44 7290 981520', 1, '169977296066419754', 'Unit 16, Oxford Eco Centre, 576 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1990-03-13', 0, 0, 'kikuchi3', '2011-09-23', 'kikuchi1', '2001-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS049353896643', '林璐', 0, '+81 90-6933-5036', 2, '220709098705934377', '日本おおさかし西成区天神ノ森二丁目1番19号7階', '1988-02-09', 0, 0, 'linlu', '2004-12-11', 'lulin', '2011-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS218074148383', '今井樹', 0, '+44 (1865) 79 8855', 4, '190207240369412388', 'Flat 50, 613 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1993-12-29', 0, 0, 'imi7', '2013-12-15', 'itimai20', '2000-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS578040740369', 'Eleanor Reynolds', 1, '+81 52-961-9885', 3, '917035399219113420', '15-kai, 4 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-02-07', 0, 0, 'erey80', '2020-08-29', 'reynolds9', '2010-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS061294215551', '佐々木大輔', 1, '+44 (151) 199 8547', 1, '663444402963709418', 'No.46 Main building, 840 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1993-03-22', 0, 0, 'sasakidaisuke', '2012-09-02', 'daisukesasaki18', '2004-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS606506357558', '汪秀文', 1, '+81 11-617-9843', 3, '418854500893637373', '日本札幌中央区宮の森四条六丁目1番11号31階', '1990-06-08', 0, 0, 'wsm', '2009-10-16', 'wong624', '2014-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS872510200247', '許仲賢', 0, '+81 70-6188-0035', 1, '295072822936314337', 'Rm. 5, 1-5-20, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1985-07-05', 0, 0, 'chunhui', '2007-04-20', 'chunghui5', '2014-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS087201204867', 'Barry Powell', 1, '+1 718-866-2947', 2, '618691326404369697', '181 1st Ave Apt 6, Brooklyn, NY 11220, United States', '1993-07-12', 0, 0, 'powellba', '2017-01-25', 'powell1', '2017-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS076549118952', '孔秀英', 0, '+86 192-5329-5142', 0, '177214190762726010', '中国深圳罗湖区田贝一路201号45楼', '1986-10-28', 0, 0, 'xiukong', '2014-07-22', 'kong718', '2018-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS909563740336', '小島花', 0, '+81 52-487-3712', 3, '587768943741987849', '7-kai, 14 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1988-11-04', 0, 0, 'hanakojima', '2012-05-14', 'hanakojima', '2002-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS802737932671', 'Herbert Rice', 1, '+81 90-4487-9213', 1, '987917753554265341', '日本おおさかし東住吉区東田辺三丁目27番14号21号室', '1999-02-23', 0, 0, 'rh62', '2007-06-17', 'herbrice', '2001-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS799345823246', '田國賢', 0, '+86 20-782-7859', 2, '506286893905492172', 'No.23 building, 384 Tianhe Road, Tianhe District, Guangzhou, China', '1995-12-05', 0, 0, 'tin45', '2016-06-13', 'kwokyint', '2010-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS069925160357', '姜秀英', 0, '+81 80-0306-6062', 0, '839454134906109142', '5F, 3 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-04-12', 0, 0, 'jiangxiuying', '2013-09-29', 'jiangxiuy', '2000-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS509687835690', 'Julia Garcia', 0, '+81 11-125-3121', 0, '378795365297061128', '27F, 6-1-18, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1986-03-19', 0, 0, 'jgarcia55', '2000-11-29', 'garcijulia930', '2012-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS134510856502', '文惠敏', 1, '+86 755-101-5237', 2, '448529310843955630', '19F, 886 Jingtian East 1st St, Futian District, Shenzhen, China', '1992-09-16', 0, 0, 'manwm4', '2020-05-22', 'waimanman', '2002-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS441195045015', '卢睿', 0, '+44 (1865) 08 9996', 0, '509017713007698137', 'No.22 Main building, 313 Park End St, Oxford, OX1 1JD, United Kingdom', '1998-06-03', 0, 0, 'rlu6', '2003-08-29', 'lurui', '2018-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS026686072899', '陈杰宏', 1, '+86 176-4374-9490', 1, '722997114786800382', 'No.14 building, 458 Middle Huaihai Road, Huangpu District, Shanghai, China', '1993-05-07', 0, 0, 'cjiehong47', '2000-09-27', 'jiehong2', '2017-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS626944475229', '菅原蓮', 1, '+1 718-738-7184', 2, '574408859395523889', '426 Columbia St Suite 48, Brooklyn, NY 11231, United States', '1993-08-11', 0, 0, 'rsu810', '2015-08-04', 'sugawararen', '2000-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS993255219571', '狄頴璇', 0, '+81 52-299-7095', 3, '230357298511840972', '日本なごやし瑞穂区河岸町四丁目20番16号16階', '1992-07-22', 0, 0, 'wsti', '2015-11-13', 'wst9', '2008-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS335669397267', 'Randy Coleman', 1, '+44 (116) 614 1335', 2, '805632283677177552', 'Block 4, 800 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1993-06-17', 0, 0, 'randycoleman122', '2014-03-17', 'coleman401', '2019-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS928194121997', '羅麗欣', 1, '+1 213-964-6713', 4, '103094331422929048', '49 Sky Way Apt 4, Los Angeles, CA 90043, United States', '1998-09-10', 0, 0, 'laiyan53', '2001-01-04', 'lo908', '2001-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS180996849053', 'Gloria James', 0, '+81 80-9700-9045', 3, '873455033862886707', '日本東京品川区東五反田五丁目2番15号23階', '1987-02-28', 0, 0, 'gjam9', '2021-08-09', 'jagl', '2011-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS560898045515', 'Norman Castro', 1, '+81 90-9181-9574', 1, '814028507305885110', '日本おおさかし平野区加美東四丁目9番5号9階', '1994-08-04', 0, 0, 'normancastro', '2014-10-23', 'castrn', '2011-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS822712682581', '崔安琪', 0, '+81 52-060-1308', 3, '323213013943196523', '5-kai, 2-5-9 Chitose, Atsuta Ward, Nagoya, Japan', '1994-07-12', 0, 0, 'anqicui00', '2010-12-18', 'cuianqi626', '2010-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS992966653852', '遠藤明菜', 0, '+1 213-100-9023', 0, '940938526796130905', '328 Figueroa Street Apt 48, Los Angeles, CA 90037, United States', '1986-07-30', 0, 0, 'akina1984', '2015-03-24', 'enakina914', '2010-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS670588175854', 'Tiffany Simpson', 1, '+44 7585 221257', 3, '430053674939338898', 'Unit 9, Oxford Eco Centre, 604 Mosley St, Manchester, M2 3AQ, United Kingdom', '1985-06-13', 0, 0, 'tiffany3', '2004-05-07', 'sitiffany7', '2016-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS583426388920', 'Esther Kennedy', 1, '+81 80-3227-7153', 1, '153968675058654800', '35F, 3-19-6 Shimizu, Kita Ward, Nagoya, Japan', '1995-03-21', 0, 0, 'kennedyesther', '2016-01-10', 'estheke1226', '2003-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS572128348693', '三浦拓哉', 1, '+44 (116) 633 2894', 1, '195629363583766678', 'Unit 28, Oxford Eco Centre, 523 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1985-03-18', 0, 0, 'miurtak', '2009-08-26', 'takuymiura49', '2009-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS697033446611', '菅原悠人', 0, '+81 11-535-7097', 1, '501691939829726561', '日本札幌清田区真栄四条五丁目19番5号20階', '1992-05-18', 0, 0, 'yutsug1', '2018-06-24', 'yuto306', '2009-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS612482301914', '杜璐', 1, '+1 213-416-1312', 3, '766633480329633173', '918 Figueroa Street Apt 20, Los Angeles, CA 90037, United States', '1993-06-08', 0, 0, 'ldu', '2003-01-06', 'ldu', '2015-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS729624177274', 'Bernard Morgan', 0, '+86 175-0709-0060', 4, '072733105459042635', '中国北京市西城区西長安街995号27号楼', '1998-08-25', 0, 0, 'bernardmorgan1995', '2019-04-28', 'morganbernard', '2008-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS307168315016', '陆嘉伦', 0, '+86 142-8917-4994', 1, '431939267390999650', '中国深圳福田区景田东一街848号18室', '1992-10-08', 0, 0, 'luj', '2017-12-09', 'luj722', '2014-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS640987103604', '龙杰宏', 0, '+1 614-777-3159', 2, '668953495396433502', '792 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1991-07-24', 0, 0, 'jiehongl', '2021-04-13', 'ljieho', '2005-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS345906253733', '苏嘉伦', 0, '+1 213-793-8752', 1, '333351116063722632', '642 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1989-10-04', 0, 0, 'sujialun', '2017-10-28', 'suj', '2021-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS567974083998', 'Brian Cruz', 0, '+86 138-6912-9576', 3, '569397536449506195', '44F, 780 Huanqu South Street 2nd Alley, Dongguan, China', '1991-06-30', 0, 0, 'brian7', '2021-03-31', 'cruzbrian', '2007-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS829505649373', '武璐', 1, '+44 7040 751095', 1, '263913658471571965', 'Unit 2, Oxford Eco Centre, 960 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1995-02-03', 0, 0, 'lw1', '2013-05-16', 'wulu', '2010-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS918053326083', '宮崎蓮', 0, '+1 330-238-1300', 0, '306996754305022874', '869 West Market Street Suite 37, Akron, OH 44333, United States', '1991-10-13', 0, 0, 'miyaren6', '2016-06-14', 'miyazakiren', '2010-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS716613737587', 'Charles White', 1, '+86 21-4201-2224', 3, '521607421616863191', 'No.38 building, 790 Ganlan Rd, Pudong, Shanghai, China', '1996-03-16', 0, 0, 'charles711', '2017-10-18', 'white7', '2010-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS575489485684', '朱梓晴', 0, '+1 212-630-3279', 2, '380355600071610983', '714 Fifth Avenue Suite 46, New York, NY 10017, United States', '1995-03-10', 0, 0, 'tszchingch', '2013-09-28', 'tszchingchu', '2021-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS770303167897', '太田彩乃', 1, '+1 212-287-9425', 3, '631820121594694163', '3 Wooster Street 3rd Floor, New York, NY 10012, United States', '1997-09-17', 0, 0, 'otaayan', '2010-12-20', 'otayano4', '2017-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS149619937469', '苑國明', 0, '+86 20-422-0112', 0, '714781135737529768', '中国广州市天河区天河路789号17室', '1990-05-15', 0, 0, 'ykwokming923', '2019-03-18', 'ykwokming', '2005-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS629716369774', '谢岚', 1, '+44 5637 963468', 2, '943128572975914817', 'Flat 34, 116 Park End St, Oxford, OX1 1JD, United Kingdom', '1994-03-04', 0, 0, 'lan223', '2012-07-10', 'lan7', '2005-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS543495528448', '千葉舞', 1, '+44 (1865) 66 0843', 4, '231516865018145377', 'Block 27, 906 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1998-09-14', 0, 0, 'chibamai', '2013-03-21', 'chibama', '2005-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS783217723106', 'Curtis Garza', 0, '+81 90-5367-3148', 2, '142902028406717762', '4-kai, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-04-16', 0, 0, 'garzcu50', '2005-01-16', 'garza220', '2021-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS885341316477', '郭浩然', 1, '+86 198-8843-0543', 2, '797334521159987713', 'No.10 building, 187 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1985-08-06', 0, 0, 'hykwok', '2011-11-01', 'hykwok', '2014-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS950506214999', '森田樹', 1, '+81 70-6138-3007', 2, '316691856830200631', '日本おおさかし平野区加美東四丁目9番7号6階', '1986-05-03', 0, 0, 'moritai', '2006-02-10', 'itsuki47', '2011-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS069361678262', 'Charlotte Chen', 0, '+86 21-527-9522', 3, '135924750895653774', 'No.9 building, 689 Jianxiang Rd, Pudong, Shanghai, China', '1990-04-18', 0, 0, 'chencharlotte5', '2006-04-16', 'chen8', '2004-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS758653057490', '薛秀英', 0, '+86 196-4530-0576', 1, '617420428523592390', '中国北京市朝阳区三里屯路118号30楼', '1993-06-09', 0, 0, 'xuexiuying7', '2021-10-22', 'xxue1973', '2010-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS397274219699', 'Eleanor Wilson', 1, '+86 165-9899-9212', 3, '526882934897885728', '3F, 956 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1992-03-21', 0, 0, 'welea2', '2019-02-18', 'eleawils7', '2018-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS404122804472', '李國權', 0, '+81 90-1119-8918', 3, '166681400685128908', 'Rm. 21, 2-3-20 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-07-12', 0, 0, 'leekk', '2011-04-04', 'leekwokkuen', '2011-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS071225863270', '罗秀英', 1, '+1 838-469-5432', 3, '996019792113219661', '663 Lark Street Suite 12, Albany, NY 12210, United States', '1985-11-29', 0, 0, 'luo331', '2014-07-22', 'luoxiuying', '2015-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS030752584068', '崔詠詩', 1, '+1 213-033-8951', 3, '607201180538243528', '154 Figueroa Street Apt 31, Los Angeles, CA 90037, United States', '1993-09-26', 0, 0, 'chwingsze10', '2014-10-22', 'wsc', '2015-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS259282308822', '傅杰倫', 0, '+81 70-9088-4472', 2, '807727748972132623', '15F, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1994-08-25', 0, 0, 'fuch', '2006-02-08', 'chiehlun7', '2002-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS944390218244', '高詩君', 1, '+86 755-946-5261', 0, '517117933150815892', 'No.26 building, 973 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1991-06-17', 0, 0, 'szeka', '2008-06-21', 'kaosk927', '2007-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS933970170936', '孟安琪', 0, '+86 165-3071-5500', 1, '216661141855183830', '7F, 956 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1985-12-05', 0, 0, 'anqi9', '2012-04-18', 'menga3', '2013-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS559963120879', '張仲賢', 0, '+44 5218 383854', 2, '517636296369035177', 'Unit 31, Oxford Eco Centre, 556 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1993-11-07', 0, 0, 'chungyinc7', '2013-01-14', 'checy', '2002-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS402139511070', '郝璐', 1, '+86 175-2092-1707', 0, '078282930227203549', '中国广州市海珠区江南西路690号24栋', '1993-08-15', 0, 0, 'lu10', '2008-06-25', 'lu3', '2004-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS514522279106', '樂仲賢', 0, '+1 213-437-1824', 1, '824976276773215885', '824 Alameda Street Apartment 32, Los Angeles, CA 90002, United States', '1993-05-29', 0, 0, 'cylok10', '2003-10-31', 'cylo', '2016-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS026224166185', '加藤桜', 1, '+81 66-001-8721', 4, '981603943262948665', 'Rm. 16, 4-9-5 Kamihigashi, Hirano Ward, Osaka, Japan', '1995-01-31', 0, 0, 'sakura731', '2003-07-27', 'sakukato1957', '2014-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS027663105118', '加藤架純', 0, '+86 136-1200-5259', 0, '140871244483864000', '中国中山紫马岭商圈中山五路365号38栋', '1998-06-19', 0, 0, 'kasumi98', '2009-07-05', 'kato2014', '2007-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS943680237915', '邱永發', 1, '+44 (121) 775 3952', 0, '745433533406854755', 'Flat 22, 267 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1997-11-04', 0, 0, 'wfya', '2018-09-25', 'wingfatyau618', '2004-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS579663465954', '松本海斗', 1, '+44 (1223) 46 9550', 2, '845269890642104514', 'Block 36, 42 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1986-02-20', 0, 0, 'matkaito', '2006-03-12', 'matskai81', '2018-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS383544764840', '廖宇宁', 1, '+1 213-031-7736', 2, '994711524985100756', '299 S Broadway Suite 21, Los Angeles, CA 90015, United States', '1994-07-28', 0, 0, 'yliao', '2012-10-09', 'liao519', '2021-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS293359230526', '卢子韬', 0, '+86 10-5172-6953', 3, '213813221639924585', '中国北京市西城区复兴门内大街531号2室', '1985-08-08', 0, 0, 'zitaolu77', '2021-07-26', 'lzitao205', '2006-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS889213346328', '朱永權', 1, '+86 755-0646-6534', 1, '610448852512205246', 'Room 3, 769 Jingtian East 1st St, Futian District, Shenzhen, China', '1998-10-09', 0, 0, 'cwing', '2017-05-28', 'cwingkuen', '2002-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS998935260361', '小川結翔', 0, '+86 151-3850-6843', 0, '482850341309874889', '中国深圳罗湖区田贝一路97号37楼', '1991-08-13', 0, 0, 'yuito1948', '2015-11-26', 'yuitoogawa731', '2003-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS154494923154', '沈子异', 1, '+86 755-004-8145', 3, '208711204550756116', '中国深圳龙岗区布吉镇西环路341号11室', '1991-12-25', 0, 0, 'ziysh2', '2020-05-26', 'szi507', '2011-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS984823281637', 'Sheila Murray', 1, '+81 90-7308-5670', 2, '819046279720007206', '日本札幌白石区菊水三条五丁目4番12号37階', '1995-03-18', 0, 0, 'musheila', '2013-05-08', 'mus', '2011-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS832963304917', 'Larry Evans', 0, '+44 5841 888874', 4, '498586090114743996', 'Block 10, 918 Redfern St, Liverpool, L20 8JB, United Kingdom', '1985-11-21', 0, 0, 'evanla72', '2004-10-26', 'evanslarr', '2019-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS856871120422', '中森大和', 1, '+86 10-8621-8307', 4, '500264960499361399', 'Room 6, 512 028 County Rd, Yanqing District, Beijing, China', '1990-11-21', 0, 0, 'ynaka8', '2001-09-07', 'yaman', '2021-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS639742036651', '林慧嫻', 0, '+1 718-649-6460', 2, '531570204642495913', '459 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1995-09-21', 0, 0, 'lamwh', '2000-10-27', 'lamwh', '2013-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS072726370142', '黎慧琳', 0, '+44 5785 660693', 1, '629976721274104256', 'No.47 Main building, 615 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1996-02-13', 0, 0, 'wailamlai', '2021-08-24', 'wllai804', '2012-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS477801492892', '薛永權', 1, '+1 213-597-4382', 1, '676028159090449836', '159 Alameda Street Apartment 16, Los Angeles, CA 90002, United States', '1993-11-27', 0, 0, 'winsit', '2008-07-09', 'sitwingkuen312', '2003-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS163650238595', '増田花', 1, '+86 755-853-0015', 3, '655412436325080043', '19F, 773 Jingtian East 1st St, Futian District, Shenzhen, China', '1991-07-20', 0, 0, 'mash', '2019-06-05', 'mash', '2005-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS664919514575', 'Miguel Weaver', 1, '+86 191-8688-8902', 1, '418768198601561176', '中国中山乐丰六路676号50号楼', '1993-03-04', 0, 0, 'weavermig88', '2016-12-30', 'mweaver107', '2007-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS694636599394', 'Andrea Perry', 1, '+86 28-4097-3331', 0, '902510953975995667', 'No.24 building, 184 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1994-08-15', 0, 0, 'andrea621', '2016-05-23', 'andp', '2010-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS676685217716', '朱子异', 1, '+44 (161) 222 4687', 2, '326631916657883599', 'No.5 Main building, 848 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1998-04-16', 0, 0, 'zhuz85', '2000-01-14', 'ziyi16', '2017-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS785148923065', 'Peggy Ruiz', 0, '+44 5534 379862', 4, '625248823717814452', 'Flat 35, 164 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1992-06-25', 0, 0, 'ruizp10', '2002-01-30', 'peggyru218', '2016-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS203204518106', 'Robin Jordan', 1, '+1 213-559-8275', 0, '785929538564552071', '659 Figueroa Street Apt 36, Los Angeles, CA 90037, United States', '1997-02-20', 0, 0, 'robinj', '2005-01-30', 'jordan75', '2012-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS172216516765', '甘永權', 1, '+86 193-2866-4369', 4, '685355145669472254', '中国深圳龙岗区布吉镇西环路136号华润大厦13室', '1991-04-12', 0, 0, 'kamwk4', '2016-08-04', 'kwk', '2021-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS235624400705', '姜嘉伦', 0, '+44 7735 090217', 1, '985385931929941519', 'Flat 9, 686 Redfern St, Liverpool, L20 8JB, United Kingdom', '1996-12-24', 0, 0, 'jiangjialun3', '2012-10-14', 'jialunjia', '2008-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS306663908354', '張家明', 1, '+81 80-4270-2186', 1, '302793203468139225', 'Rm. 12, 1-7-4 Omido, Higashiosaka, Osaka, Japan', '1992-08-06', 0, 0, 'kmc729', '2020-03-02', 'kmche', '2018-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS501204494426', '近藤愛梨', 0, '+81 52-229-5314', 3, '970252541331249911', '日本なごやし守山区瀬古東二丁目171番7号8階', '1985-09-12', 0, 0, 'akondo', '2008-10-27', 'ka08', '2012-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS914569036694', '近藤彩乃', 0, '+44 7695 355391', 0, '268346841428151821', 'Unit 38, Oxford Eco Centre, 813 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1988-05-27', 0, 0, 'ayanoko', '2005-04-30', 'kondoayano', '2013-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS560854151307', '三浦桜', 1, '+81 80-0002-5519', 0, '686681305664275709', '日本札幌清田区真栄四条五丁目19番19号46階', '1990-06-04', 0, 0, 'sakuramiura', '2004-05-19', 'miurasakura', '2017-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS886723883205', '容秀文', 0, '+1 838-140-1714', 1, '437032667955967948', '541 Central Avenue Suite 3, Albany, NY 12205, United States', '1995-01-26', 0, 0, 'saumany', '2010-03-27', 'smyung9', '2003-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS183159575306', '谢宇宁', 0, '+86 145-8218-0576', 4, '254258243459093739', '中国中山京华商圈华夏街47号17室', '1986-12-30', 0, 0, 'yuning4', '2014-06-01', 'xieyu', '2007-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS745597110188', '伍秀文', 0, '+81 66-950-8907', 1, '835441923752030473', '日本おおさかし西成区天神ノ森二丁目1番2号6号室', '1988-12-27', 0, 0, 'smng07', '2008-08-24', 'ngsauman418', '2009-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS431061220758', 'Leonard Dunn', 0, '+81 66-101-8635', 3, '728721637099004395', '日本おおさかし西成区天神ノ森二丁目1番13号13階', '1995-09-12', 0, 0, 'leondunn', '2013-04-29', 'dunnleona1994', '2009-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS189482337135', '西村陽太', 1, '+44 5694 678901', 3, '074634970282985771', 'Block 49, 863 Hanover Street, London, W1S 1YD, United Kingdom', '1992-06-05', 0, 0, 'yotani1963', '2004-06-27', 'yotanishimura', '2004-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS438241882333', '陶杰宏', 0, '+81 66-862-0072', 0, '347791560949099170', '14F, 2-1-18 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1995-10-17', 0, 0, 'taojiehong', '2012-04-25', 'taj', '2012-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS014626671519', '鄧思妤', 0, '+81 11-262-9664', 0, '087978711526691892', 'Rm. 25, 13-3-7 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1987-08-23', 0, 0, 'szeyu41', '2007-12-26', 'tang1', '2018-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS217865580970', '呂頴璇', 0, '+44 (1865) 33 4494', 2, '506377442554177379', 'Block 36, 135 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1992-08-16', 0, 0, 'luiwin1228', '2008-01-03', 'wslui', '2018-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS417743114408', '山本百恵', 1, '+1 212-280-0424', 2, '463983326766861749', '625 West Houston Street Apartment 29, New York, NY 10014, United States', '1985-12-19', 0, 0, 'momoeyamamoto', '2003-11-28', 'mya', '2006-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS580685005309', '汪子异', 1, '+86 170-7928-8946', 3, '591812004207526950', 'Room 21, CR Building, 391 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1987-03-27', 0, 0, 'ziyi1971', '2003-02-05', 'wang64', '2003-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS729813698004', '小林大輔', 1, '+86 166-4759-7121', 4, '727432885176568574', '中国广州市白云区机场路棠苑街五巷253号42栋', '1995-06-05', 0, 0, 'dak', '2020-08-03', 'kobadaisuke', '2003-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS054526770906', '曹頴璇', 1, '+1 838-456-9864', 1, '164401579546520481', '767 Broadway Suite 21, Albany, NY 12207, United States', '1990-02-22', 0, 0, 'wingsuencho', '2016-08-17', 'cho6', '2003-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS666801818922', '佐野和真', 0, '+81 70-1236-4622', 1, '026254636916010557', '日本おおさかし西成区天神ノ森二丁目1番15号32階', '1994-10-21', 0, 0, 'kazumas', '2015-04-01', 'sano12', '2017-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS156875245419', '千葉美月', 1, '+81 80-9449-9303', 2, '734799557241280120', '4-kai, 3-19-5 Shimizu, Kita Ward, Nagoya, Japan', '1988-04-11', 0, 0, 'chibamitsuki', '2016-02-09', 'mitsuki96', '2013-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS485154577007', '常秀英', 0, '+81 11-689-4446', 4, '387268232425922817', '21F, 2-1-13 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1988-05-17', 0, 0, 'xiuyingcha603', '2019-10-26', 'changx8', '2005-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS000990028423', 'Leonard Jimenez', 0, '+86 144-6674-9346', 2, '405593665384450722', '中国上海市浦东新区橄榄路908号2栋', '1985-08-03', 0, 0, 'leojimenez', '2015-07-16', 'leonajimen', '2017-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS142920259790', '石川蓮', 0, '+44 (161) 373 0972', 1, '618002054082206013', 'Unit 18, Oxford Eco Centre, 178 Mosley St, Manchester, M2 3AQ, United Kingdom', '1990-07-25', 0, 0, 'iren1006', '2021-06-12', 'renishi1981', '2018-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS433516066326', '何富城', 0, '+86 755-073-7258', 2, '446490238945960161', '43F, 775 Shennan Ave, Futian District, Shenzhen, China', '1986-04-12', 0, 0, 'fushingho54', '2009-05-09', 'fushing6', '2001-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS551785262622', '黃德華', 0, '+81 90-3288-5175', 3, '238034377242593010', '27F, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-03-19', 0, 0, 'wongtakwah419', '2003-05-21', 'wongtakwah9', '2017-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS035940218483', 'Roy Alvarez', 0, '+44 5719 852909', 2, '717008850525043804', 'Unit 17, Oxford Eco Centre, 81 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-11-21', 0, 0, 'royalvar', '2005-04-17', 'alvarez9', '2021-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS559547969307', 'Martha Jones', 0, '+81 70-1003-2053', 4, '359725654603576796', '39F, 10 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-01-30', 0, 0, 'jonesma601', '2007-11-26', 'marjones1968', '2014-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS861325979171', '青木葉月', 0, '+81 70-6744-3361', 1, '740480490443492266', 'Rm. 15, 13 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1990-12-25', 0, 0, 'hazukiaoki', '2020-08-07', 'aohaz62', '2004-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS458042988457', '許潤發', 1, '+81 70-4025-6219', 4, '966017045290804196', '日本おおさかし近江堂一丁目7番9号47号室', '1996-12-21', 0, 0, 'yuhui', '2019-01-25', 'yfhui1997', '2000-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS011721677405', 'Jamie Kennedy', 1, '+86 195-9667-4481', 1, '006772263341605341', 'No.39 building, 625 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1988-12-10', 0, 0, 'kjami10', '2011-11-05', 'kennedy810', '2004-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS519322773451', '柴田瑛太', 0, '+44 5520 553666', 2, '434657078079110942', 'Block 1, 951 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1990-06-11', 0, 0, 'eitas604', '2021-06-27', 'eita8', '2014-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS638989952873', '杜頴璇', 1, '+81 74-021-9260', 1, '515348626786339526', '1-kai, 1-7-5 Saidaiji Akodacho, Nara, Japan', '1991-08-18', 0, 0, 'wst', '2016-01-22', 'winto69', '2013-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS398434821173', '陶岚', 0, '+86 760-532-4594', 3, '859371254357304870', '中国中山乐丰六路959号华润大厦27室', '1997-08-26', 0, 0, 'taol929', '2015-06-16', 'lantao', '2017-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS013453867571', '姚睿', 0, '+44 (20) 4358 3563', 3, '177817942979771550', 'Flat 6, 417 Maddox Street, London, W1S 1PU, United Kingdom', '1996-08-07', 0, 0, 'ruiya4', '2003-07-10', 'yaorui', '2004-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS417365451346', 'Nicole Castro', 1, '+86 159-3962-8381', 1, '188500571455372434', '中国成都市锦江区红星路三段919号50室', '1988-09-05', 0, 0, 'ncas', '2001-04-30', 'nicoleca4', '2017-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS578858134907', 'Donald Gonzalez', 0, '+1 614-787-4962', 1, '674463682827872530', '339 Tremont Road Suite 36, Columbus, GA 43212, United States', '1988-08-02', 0, 0, 'gdonald6', '2013-02-25', 'gond624', '2016-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS815698895829', '周潤發', 0, '+86 755-055-1632', 0, '412702026267208175', 'Room 1, CR Building, 309 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1992-12-31', 0, 0, 'yunfatcho3', '2006-01-25', 'choyf1026', '2000-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS084552629725', '駱富城', 0, '+44 (161) 848 3649', 3, '046235470098658725', 'Block 3, 458 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1992-06-04', 0, 0, 'lok714', '2004-02-16', 'fushinglok', '2009-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS756430997808', '卢璐', 1, '+86 141-3059-9439', 4, '345487879513826539', 'Room 4, CR Building, 108 Shanhu Rd, Dongguan, China', '1998-05-23', 0, 0, 'llu', '2005-01-21', 'lulu4', '2017-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS966610673407', '段宇宁', 1, '+1 212-957-2909', 2, '786603944443040904', '424 Wooster Street Apartment 17, New York, NY 10012, United States', '1998-03-04', 0, 0, 'yunidu', '2000-11-27', 'yd9', '2019-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS560084272110', '木村桜', 1, '+81 80-7433-8775', 2, '079675094634244466', '30F, 2-3-17 Yoyogi, Shibuya-ku, Tokyo, Japan', '1992-03-27', 0, 0, 'sakurak7', '2001-01-27', 'sakura515', '2004-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS758333964046', '盧俊宇', 0, '+81 52-820-9734', 2, '954693702760782690', 'Rm. 18, 3-19-16 Shimizu, Kita Ward, Nagoya, Japan', '1995-12-30', 0, 0, 'chunyu1004', '2017-07-24', 'chunyu1117', '2001-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS495899100777', 'George Hunt', 0, '+1 212-355-0121', 1, '521168980489924201', '844 West Houston Street Apt 35, New York, NY 10014, United States', '1985-12-02', 0, 0, 'hgeorge', '2006-09-19', 'huntgeo93', '2010-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS958420118285', 'Paul Jimenez', 1, '+81 66-848-4036', 2, '204648367413912649', '50F, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1998-10-26', 0, 0, 'jimenezpau', '2005-03-07', 'jimenezpaul', '2019-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS769238458667', '向明詩', 0, '+44 5706 993181', 4, '990779614895437632', 'Flat 38, 212 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1986-01-09', 0, 0, 'heung10', '2009-12-21', 'mingsze723', '2000-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS439851340599', '工藤瑛太', 1, '+81 70-8978-5653', 2, '893696613703365649', '日本東京渋谷区代々木二丁目3番15号2階', '1995-09-25', 0, 0, 'eitakud2', '2011-12-25', 'eitak', '2006-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS768884968902', '钟晓明', 1, '+44 7904 525100', 3, '594291990629242171', 'Unit 17, Oxford Eco Centre, 974 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1986-08-09', 0, 0, 'xiaomz530', '2008-11-30', 'zhongxiaoming', '2009-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS590259743535', '高橋詩乃', 1, '+44 (121) 323 2663', 3, '803782879796198417', 'Flat 22, 412 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1988-03-05', 0, 0, 'tshino', '2005-04-30', 'shinotakah1225', '2020-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS932320147153', '前田大地', 0, '+86 760-633-2291', 1, '720948799527280536', '中国中山京华商圈华夏街541号华润大厦44室', '1993-01-31', 0, 0, 'daichimaeda', '2004-02-17', 'daichi93', '2014-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS522192649190', '许震南', 0, '+81 80-9918-9484', 1, '752521675922147280', '日本東京品川区東五反田五丁目2番6号29階', '1993-04-16', 0, 0, 'xu1229', '2001-04-20', 'zhxu2', '2021-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS677464654557', '周子韬', 0, '+1 213-146-4668', 3, '066991261998344731', '640 Wall Street Apartment 37, Los Angeles, CA 90003, United States', '1998-03-11', 0, 0, 'zhozitao1114', '2002-06-10', 'zz212', '2004-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS097167912503', '今井花', 0, '+86 151-6455-1429', 2, '311799564282318492', 'Room 17, 940 Shanhu Rd, Dongguan, China', '1998-10-25', 0, 0, 'hanaima123', '2001-07-08', 'hana2', '2008-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS097786074261', 'Frederick Carter', 1, '+1 213-735-5598', 2, '126744280072506618', '267 Grape Street Apt 33, Los Angeles, CA 90002, United States', '1991-12-22', 0, 0, 'carter1115', '2008-07-25', 'frederickcarter2', '2010-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS804068918975', '渡部美咲', 1, '+86 28-293-7103', 1, '115674777999118750', '中国成都市锦江区红星路三段139号37栋', '1994-02-12', 0, 0, 'misawatanabe', '2000-11-24', 'watamisaki', '2003-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS423639791107', '成曉彤', 0, '+86 769-216-8786', 0, '020616089046874179', 'Room 30, CR Building, 355 Dongtai 5th St, Dongguan, China', '1987-01-28', 0, 0, 'htshing91', '2010-12-08', 'shiutu', '2013-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS402701426864', '湯發', 1, '+86 142-1521-2952', 3, '525999184916298946', '中国北京市东城区东单王府井东街999号43室', '1993-06-26', 0, 0, 'tongfat', '2020-03-18', 'tongfat', '2002-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS728658466411', '翁家輝', 1, '+86 175-5414-6465', 1, '132079332719257852', '中国成都市成华区二仙桥东三路832号28栋', '1996-07-03', 0, 0, 'kafaiyung', '2021-08-31', 'kfyung', '2005-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS147683004878', '加藤光莉', 0, '+86 185-7038-0609', 4, '352320084921955775', '中国北京市西城区西長安街451号13楼', '1988-08-28', 0, 0, 'hikat', '2002-08-04', 'katohikari', '2019-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS560035258024', 'Brian Gray', 1, '+1 213-965-6584', 0, '396766175111305232', '769 Alameda Street Apt 28, Los Angeles, CA 90002, United States', '1993-09-17', 0, 0, 'graybrian8', '2011-12-27', 'brg', '2011-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS798517900178', 'Larry Hunt', 1, '+1 838-978-9082', 3, '276158682779291800', '197 Lark Street 3rd Floor, Albany, NY 12210, United States', '1998-04-03', 0, 0, 'huntl', '2006-07-09', 'larry8', '2007-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS951432330947', '赵子异', 0, '+44 7258 468879', 0, '854240497452217023', 'Flat 27, 399 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1991-12-29', 0, 0, 'zhaoziyi1104', '2011-01-15', 'zhaoziyi1124', '2003-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS035528012163', '段致远', 1, '+44 7293 999623', 2, '603656336612411271', 'Block 35, 392 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1991-04-16', 0, 0, 'zhiydua10', '2005-08-10', 'zhiydua', '2002-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS641137379279', 'Juan Castro', 0, '+86 755-436-6108', 3, '573674353773674594', '22F, 605 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1991-08-02', 0, 0, 'castro49', '2010-01-20', 'casju1107', '2000-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS899207445942', 'Shirley Moore', 0, '+81 66-784-4410', 3, '893581996250468891', '5F, 2-1-15 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1991-02-14', 0, 0, 'shirm', '2007-05-28', 'moore7', '2006-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS987563581243', 'Scott Stone', 1, '+86 755-2913-5615', 1, '343489138834211531', '中国深圳罗湖区蔡屋围深南东路60号1栋', '1996-06-03', 0, 0, 'scottsto', '2005-08-13', 'ssco04', '2012-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS466961990715', '和田蒼士', 1, '+81 66-577-1725', 2, '056158758211670740', '日本おおさかし西成区出城一丁目1番10号46号室', '1990-07-23', 0, 0, 'wadaoshi', '2015-08-31', 'aoshiw1221', '2021-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS240685895855', '翁永權', 1, '+86 769-896-5980', 1, '939198276301127306', 'Room 50, CR Building, 605 Huanqu South Street 2nd Alley, Dongguan, China', '1991-01-05', 0, 0, 'wingkuen4', '2007-10-25', 'yungwk3', '2013-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS598629283276', '遠藤陸', 1, '+81 70-7158-6634', 3, '326419947439419878', 'Rm. 14, 5-2-15 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-02-22', 0, 0, 'endoriku17', '2011-11-12', 'riku712', '2009-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS435235658232', '石秀英', 1, '+1 330-271-4782', 4, '190485028121706289', '837 Collier Road 3rd Floor, Akron, OH 44320, United States', '1991-09-27', 0, 0, 'xiuyingshi', '2010-01-31', 'xiuyingshi', '2003-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS594282775165', 'Craig Kelly', 1, '+44 (116) 215 2612', 0, '863840667321803785', 'No.50 Main building, 825 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1996-12-09', 0, 0, 'kelly7', '2019-08-22', 'ckelly', '2021-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS327657571096', '何嘉欣', 1, '+81 80-4182-1981', 1, '031056917835565219', '日本札幌白石区菊水三条五丁目4番15号42階', '1998-06-30', 0, 0, 'hoky7', '2014-08-18', 'kyho', '2021-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS733280412962', '曾子韬', 1, '+44 (121) 550 8138', 0, '710415870662924928', 'Flat 24, 652 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1988-12-16', 0, 0, 'zz2', '2020-08-07', 'zzitao2', '2000-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS267162148805', 'Donald Butler', 0, '+86 10-701-6924', 2, '634585001441548149', '33F, 815 FuXingMenNei Street, XiCheng District, Beijing, China', '1986-03-01', 0, 0, 'butdonald', '2018-07-14', 'butdo2', '2014-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS503164045882', '方震南', 0, '+1 718-746-4949', 1, '092252608456758570', '864 1st Ave 3rd Floor, Brooklyn, NY 11220, United States', '1998-07-02', 0, 0, 'fazhennan83', '2000-07-22', 'fangzhe', '2020-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS740153607188', '汪頴璇', 1, '+86 193-9601-6742', 0, '869190339048889781', '中国北京市延庆区028县道318号48室', '1993-04-05', 0, 0, 'wingsuenwong98', '2007-12-10', 'wingsuenw', '2017-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS834165301308', '錢學友', 1, '+44 (161) 541 5309', 2, '982865456916628613', 'Flat 11, 677 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-08-02', 0, 0, 'chinhokyau', '2004-05-26', 'hychin', '2002-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS590617663467', '邱家玲', 0, '+86 199-5893-2073', 2, '718767613097754111', '中国深圳龙岗区学园一巷899号47号楼', '1989-06-07', 0, 0, 'yau7', '2006-01-29', 'yaukaling', '2016-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS275053318034', '高橋美羽', 1, '+86 188-0553-0775', 3, '959241040339963675', 'Room 6, CR Building, 25 Dong Zhi Men, Dongcheng District, Beijing, China', '1997-10-10', 0, 0, 'takahashimi', '2020-01-12', 'miutak7', '2009-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS774139510180', '杨詩涵', 1, '+44 7218 575889', 4, '160172811678847484', 'Block 39, 328 Hanover St, Liverpool, L1 4AF, United Kingdom', '1995-02-16', 0, 0, 'shihan2006', '2011-10-06', 'yashiha', '2016-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS595395307423', '林安琪', 1, '+81 52-924-5876', 3, '267942618735927882', '日本なごやし守山区瀬古東二丁目171番7号24階', '1991-06-02', 0, 0, 'ali7', '2011-06-22', 'anqi907', '2005-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS716886242160', '高橋優奈', 0, '+81 66-046-5284', 1, '741228554952094206', '41F, 3-27-18 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1991-08-29', 0, 0, 'takahashi72', '2001-05-24', 'yunatakahashi', '2011-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS088981571213', '龙詩涵', 0, '+1 212-080-4974', 1, '225260373213006807', '802 Fifth Avenue Suite 21, New York, NY 10017, United States', '1988-07-13', 0, 0, 'shl', '2007-09-19', 'lons211', '2010-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS448564380511', 'Wendy Jordan', 0, '+81 80-8441-6998', 1, '212696969294596731', '日本東京中央区銀座三丁目12番1号17号室', '1990-10-05', 0, 0, 'wendyjordan', '2019-09-27', 'jordanwendy', '2019-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS439994680817', '汪震南', 1, '+1 330-048-5366', 1, '819211119535428176', '356 Riverview Road Suite 12, Akron, OH 44313, United States', '1993-07-14', 0, 0, 'wangz', '2016-11-25', 'zhennanw', '2014-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS831079175053', '小林光莉', 1, '+1 614-875-4368', 2, '815063543133180842', '495 Diplomacy Drive Apartment 24, Columbus, GA 43228, United States', '1985-02-05', 0, 0, 'kobayashi2', '2011-05-16', 'koh1202', '2021-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS646331213911', '斉藤光', 1, '+86 169-8327-7053', 2, '395902068493076186', '中国深圳龙岗区布吉镇西环路521号11楼', '1990-10-27', 0, 0, 'hisait', '2019-01-02', 'hisa', '2021-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS451280390015', '柴田健太', 1, '+86 10-5318-9393', 1, '377360329702756217', '中国北京市東城区東直門內大街174号华润大厦19室', '1991-07-09', 0, 0, 'shibatake59', '2004-04-25', 'keshibata', '2021-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS301687908784', '石川愛梨', 1, '+81 52-550-8258', 4, '236932678816869866', '日本なごやし熱田区千年二丁目5番12号14階', '1988-12-01', 0, 0, 'airi84', '2018-01-10', 'ishairi01', '2008-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS935610015395', '和田舞', 0, '+44 5412 886104', 1, '007811971413889181', 'No.27 Main building, 771 Hanover St, Liverpool, L1 4AF, United Kingdom', '1993-10-28', 0, 0, 'mai62', '2021-05-17', 'mai98', '2000-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS674205402413', '朱惠妹', 0, '+86 21-973-1720', 1, '453018220658202074', 'Room 21, CR Building, 380 Binchuan Rd, Minhang District, Shanghai, China', '1985-09-13', 0, 0, 'chu1230', '2006-01-29', 'chuhuimei', '2016-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS392814571019', '雷嘉伦', 1, '+81 66-814-2523', 3, '556270307031158573', '日本おおさかし東住吉区東田辺三丁目27番11号43階', '1996-09-29', 0, 0, 'jiallei1960', '2001-04-22', 'jialulei', '2019-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS839108202193', '河野大輔', 0, '+81 90-4438-0852', 0, '441242903790210795', 'Rm. 28, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1994-04-14', 0, 0, 'daiskono', '2016-10-03', 'daisukek', '2007-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS598372695876', '汪仲賢', 0, '+86 164-3630-0671', 0, '781936205940182773', 'No.39 building, 810 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1995-01-30', 0, 0, 'wcy', '2004-11-28', 'wongcy', '2003-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS634377725748', '林蒼士', 0, '+44 (121) 783 0468', 0, '786017744347083608', 'Flat 43, 953 New Street, Birmingham, B2 4DB, United Kingdom', '1993-06-03', 0, 0, 'hayashiaos', '2016-06-25', 'aoshi505', '2010-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS688716888515', 'Diane Cooper', 1, '+1 838-209-9039', 2, '067750005200946689', '60 Lark Street Apt 26, Albany, NY 12210, United States', '1993-04-09', 0, 0, 'diane54', '2009-07-14', 'diancooper99', '2019-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS931274720731', '黎岚', 1, '+44 (1223) 25 8997', 1, '307454806157784757', 'No.39 Main building, 938 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1995-03-12', 0, 0, 'lan5', '2005-04-15', 'll403', '2017-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS373153438201', '毛國賢', 1, '+86 755-725-0265', 1, '066332949724416576', '中国深圳龙岗区学园一巷130号4楼', '1998-12-11', 0, 0, 'mokwokyin', '2006-01-04', 'moky', '2012-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS275564597348', 'Mike Brooks', 1, '+86 189-9090-0886', 1, '924265061297939913', '中国中山紫马岭商圈中山五路444号24栋', '1997-08-09', 0, 0, 'mikebrooks3', '2008-10-29', 'brooks8', '2012-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS047609359851', '袁睿', 0, '+44 7394 123846', 2, '096065211633555262', 'Unit 26, Oxford Eco Centre, 355 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1986-07-24', 0, 0, 'ruyuan6', '2016-12-25', 'ryua', '2018-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS115059868440', '傅璐', 0, '+1 718-477-6686', 2, '635870698757728651', '677 Bergen St Apartment 32, Brooklyn, NY 11217, United States', '1996-07-24', 0, 0, 'lufu', '2017-05-27', 'lfu414', '2000-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS414389831404', '雷安琪', 1, '+81 70-7481-8627', 0, '749806691203596569', '24F, 6-1-14, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1996-04-15', 0, 0, 'anle', '2009-01-05', 'alei', '2018-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS586918549375', 'Elaine Jackson', 0, '+86 144-1162-4184', 0, '756219019447048222', '中国中山乐丰六路757号28室', '1989-09-17', 0, 0, 'elainejackson10', '2000-10-28', 'ejackson8', '2020-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS947957093909', 'Luis Myers', 1, '+81 80-6400-9446', 1, '524681717554040847', '日本なごやし守山区瀬古東二丁目171番6号37号室', '1990-03-31', 0, 0, 'myersluis', '2013-11-23', 'luismye1994', '2006-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS358323283862', '侯嘉伦', 1, '+86 10-0339-5194', 4, '178760217425359918', '中国北京市西城区复兴门内大街414号12栋', '1987-10-05', 0, 0, 'jialun03', '2005-07-14', 'jho3', '2021-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS960370976865', '马詩涵', 0, '+1 213-691-2484', 3, '743275347534963580', '104 Wall Street Apartment 25, Los Angeles, CA 90003, United States', '1989-06-15', 0, 0, 'mas', '2000-04-12', 'mashiha', '2021-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS691311417193', '谷慧嫻', 0, '+81 90-9391-4837', 1, '715911355054082819', 'Rm. 17, 5-19-2 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1997-11-11', 0, 0, 'waihan3', '2017-12-27', 'koowaihan16', '2022-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS520955528687', 'Bradley Owens', 0, '+86 21-1879-7181', 0, '276536436322010464', 'Room 5, CR Building, 698 Jianxiang Rd, Pudong, Shanghai, China', '1987-01-11', 0, 0, 'owensbradl1', '2017-12-12', 'bowens', '2020-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS595325540099', '阿部美羽', 0, '+86 769-8731-7523', 4, '703280683869018123', '中国东莞东泰五街158号17栋', '1995-05-03', 0, 0, 'miu68', '2010-08-27', 'miu2', '2021-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS077927049371', '顾岚', 1, '+86 21-352-9411', 3, '032001470647162579', '中国上海市浦东新区健祥路591号5栋', '1987-12-15', 0, 0, 'lan3', '2013-06-23', 'langu', '2019-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS638876436441', '新井蓮', 0, '+1 614-952-4587', 0, '291965112874019895', '272 Tremont Road Suite 45, Columbus, GA 43212, United States', '1990-10-01', 0, 0, 'araren', '2014-03-19', 'arren1', '2016-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS558669554874', '松田健太', 1, '+86 182-3657-4904', 4, '616047509882372823', '中国成都市锦江区人民南路四段564号25楼', '1985-06-14', 0, 0, 'matsuda49', '2021-07-30', 'mkent', '2001-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS374328414047', '严嘉伦', 1, '+44 7429 245421', 3, '145740332444159201', 'Block 25, 616 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1988-12-12', 0, 0, 'jiyan', '2007-03-21', 'jialuny', '2005-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS021666108629', '孔詩涵', 1, '+1 718-979-3741', 1, '781332196834652851', '6 Flatbush Ave Suite 45, Brooklyn, NY 11225, United States', '1997-04-10', 0, 0, 'shkong', '2021-06-03', 'kong4', '2000-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS991677920293', '今井美月', 1, '+86 755-0698-9472', 2, '273695334153319318', 'Room 39, CR Building, 547 Shennan Ave, Futian District, Shenzhen, China', '1992-02-24', 0, 0, 'imamitsuki70', '2019-06-12', 'imaimitsuki', '2009-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS323582319490', '呂朝偉', 0, '+81 80-6651-9134', 0, '698734512627118705', '日本おおさかし近江堂一丁目7番15号21号室', '1998-02-11', 0, 0, 'chiuwlu10', '2004-09-16', 'lcw1', '2002-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS905327306857', '溫榮發', 0, '+44 7620 320248', 3, '734348357070456571', 'Unit 38, Oxford Eco Centre, 395 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1985-02-09', 0, 0, 'wfw', '2016-08-18', 'wanwingfat420', '2020-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS305514069023', 'Lucille Mendez', 1, '+81 90-4817-4079', 1, '906466070165364962', '日本なごやし瑞穂区河岸町四丁目20番2号47号室', '1997-05-27', 0, 0, 'lucmendez', '2008-12-15', 'lucillemendez41', '2014-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS872745231220', '駱梓晴', 0, '+86 193-7521-2965', 1, '263102144737913704', 'No.48 building, 973 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1990-05-20', 0, 0, 'tclok715', '2005-02-07', 'loktc', '2008-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS916820545951', '有村陽太', 0, '+86 760-2299-1152', 2, '910026646773522950', '中国中山天河区大信商圈大信南路236号华润大厦47室', '1991-12-10', 0, 0, 'yarimura75', '2003-05-19', 'yotari', '2006-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS414257725426', '汪致远', 1, '+44 7310 519879', 4, '735547203572995921', 'Flat 34, 656 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1985-07-23', 0, 0, 'wzhi', '2009-02-17', 'zhiyuan3', '2001-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS181175328088', '中野大和', 1, '+81 90-2273-2565', 2, '228776327426807219', '日本札幌白石区菊水三条五丁目2番15号10号室', '1991-07-24', 0, 0, 'yamnakan318', '2014-12-08', 'nyam102', '2008-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS400352041984', 'Peggy Burns', 1, '+86 171-3001-8244', 4, '748430597726558458', '中国上海市浦东新区健祥路849号34室', '1988-08-14', 0, 0, 'peggyburns4', '2003-12-26', 'bpeggy', '2012-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS467600242928', 'Linda Morris', 1, '+86 28-912-7933', 4, '490504512117816952', '中国成都市成华区玉双路6号919号35楼', '1988-08-12', 0, 0, 'linda86', '2019-02-21', 'morrisl1962', '2009-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS595099157229', '戴天榮', 1, '+81 70-3146-4534', 2, '380360647726687411', '日本札幌豊平区豊平三条十三丁目3番1号31号室', '1985-10-17', 0, 0, 'twdai8', '2021-10-16', 'tinwing10', '2012-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS142712472389', '鈴木優奈', 1, '+86 10-542-6541', 3, '123240834155531984', '中国北京市西城区复兴门内大街32号41号楼', '1989-01-26', 0, 0, 'suyuna406', '2002-07-06', 'suzuki425', '2006-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS171743921321', '曹震南', 1, '+81 66-547-7596', 2, '536090173849027894', '日本おおさかし近江堂一丁目7番6号23号室', '1995-10-05', 0, 0, 'czhennan8', '2018-01-03', 'caoz403', '2003-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS580071392387', '梅發', 0, '+81 3-9648-9195', 3, '027734071837880676', '日本東京品川区東五反田五丁目2番15号11号室', '1995-07-02', 0, 0, 'fatmui', '2010-10-12', 'mfat', '2000-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS396339156159', '石安琪', 1, '+44 7960 964264', 0, '907928214007646629', 'Flat 48, 654 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-09-16', 0, 0, 'sanqi00', '2009-09-12', 'anqshi82', '2014-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS089188121871', '石璐', 0, '+44 (1865) 82 2191', 2, '639196742224649170', 'Unit 29, Oxford Eco Centre, 874 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1998-03-26', 0, 0, 'lus', '2001-08-14', 'slu707', '2011-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS273462020030', '郭詩涵', 0, '+86 10-7740-8839', 3, '029075426794844373', 'Room 32, 750 028 County Rd, Yanqing District, Beijing, China', '1990-09-11', 0, 0, 'gshih6', '2005-10-18', 'sg45', '2015-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS641722359800', '江安娜', 0, '+1 312-274-8290', 1, '399039656392033239', '293 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1991-05-28', 0, 0, 'koonna', '2004-07-22', 'kong10', '2012-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS067296419270', 'Julie Nelson', 0, '+81 70-7511-8014', 3, '729481639724513730', '4F, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-05-19', 0, 0, 'julien4', '2013-02-04', 'nelsonjulie', '2012-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS743227369414', '魏岚', 1, '+81 70-6706-4402', 3, '623857609204872639', '日本おおさかし東住吉区東田辺三丁目27番12号13階', '1992-03-02', 0, 0, 'lanwei1129', '2015-04-06', 'lawei', '2011-05-19'); +INSERT INTO "public"."userinfo" VALUES ('TS210099040933', 'Phyllis Palmer', 0, '+1 614-837-5508', 2, '515638195394210326', '470 East Cooke Road Apt 3, Columbus, GA 43214, United States', '1988-06-05', 0, 0, 'palmphyllis', '2007-07-08', 'palmerphyl', '2002-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS045474789042', '千葉陽太', 1, '+86 190-9117-6772', 3, '999643086559547268', 'No.37 building, 47 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1997-10-03', 0, 0, 'chibay', '2004-03-05', 'chibayota67', '2002-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS722522368190', '房永發', 1, '+1 614-552-8285', 4, '202241451760979935', '377 East Cooke Road Suite 13, Columbus, GA 43214, United States', '1994-02-25', 0, 0, 'fwf', '2013-08-14', 'wingfat1103', '2020-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS589915207946', '三浦七海', 0, '+86 151-3935-8734', 3, '910596374956903756', 'No.40 building, 558 Dong Zhi Men, Dongcheng District, Beijing, China', '1991-08-20', 0, 0, 'miura1976', '2000-09-20', 'nanamimiur2', '2015-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS046694041043', 'Albert Murray', 0, '+86 20-5085-5031', 4, '338249892093967553', 'No.21 building, 911 Jiangnan West Road, Haizhu District, Guangzhou, China', '1996-09-18', 0, 0, 'albertm313', '2003-06-15', 'albertmurr7', '2018-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS946327824313', '范子异', 0, '+86 10-8850-3943', 1, '810636958856029795', 'No.40 building, 56 68 Qinghe Middle St, Haidian District, Beijing, China', '1987-12-14', 0, 0, 'ziyifan', '2018-05-16', 'ziyifa1', '2003-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS111381229948', '田嘉伦', 0, '+86 174-0098-7004', 3, '831030748844284167', '中国东莞环区南街二巷636号33号楼', '1985-01-01', 0, 0, 'tian1018', '2015-01-21', 'jialuntia', '2004-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS285750966340', '江杰宏', 1, '+1 614-860-5630', 2, '440167479915774023', '738 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1985-12-04', 0, 0, 'jjieh2', '2011-10-11', 'jiehong1126', '2007-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS757546574557', 'Sara Dixon', 0, '+1 718-995-7391', 1, '629549895200498158', '444 Bergen St Suite 10, Brooklyn, NY 11217, United States', '1988-01-05', 0, 0, 'sad', '2002-07-20', 'saradixon', '2006-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS627213282448', '宮本悠人', 0, '+1 312-697-9057', 3, '664012618743407168', '849 Pedway Suite 45, Chicago, IL 60601, United States', '1998-07-24', 0, 0, 'miyamoto304', '2004-09-29', 'yumiy', '2015-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS807194518325', '郭震南', 0, '+44 (20) 5868 8488', 3, '080929466375107831', 'Flat 31, 853 Maddox Street, London, W1S 1PU, United Kingdom', '1986-12-02', 0, 0, 'guozhennan2005', '2001-12-21', 'zhennan1', '2013-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS310710059505', 'Mark Scott', 1, '+81 11-636-0923', 1, '198516499428730858', '32-kai, 5-4-11 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1990-11-25', 0, 0, 'scottma9', '2008-04-03', 'scmar8', '2009-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS810105754947', 'Cindy Gordon', 0, '+81 52-351-7418', 3, '953875721426399824', '日本なごやし瑞穂区河岸町四丁目20番1号10号室', '1995-05-07', 0, 0, 'gordoncindy', '2017-08-24', 'cingordon71', '2005-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS207798033995', '邵學友', 1, '+81 52-703-9028', 3, '154437447294769968', '日本なごやし瑞穂区河岸町四丁目20番7号14号室', '1990-08-06', 0, 0, 'siuhy810', '2012-02-20', 'hysi808', '2007-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS894676430297', '中村涼太', 1, '+81 80-2261-6239', 2, '121841261954603133', 'Rm. 16, 2-3-7 Yoyogi, Shibuya-ku, Tokyo, Japan', '1997-11-26', 0, 0, 'ryota4', '2009-11-26', 'nakamurar1945', '2006-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS417426083082', 'Glenn Graham', 0, '+44 7758 108064', 2, '045190882321183358', 'Flat 43, 114 Hanover St, Liverpool, L1 4AF, United Kingdom', '1990-02-14', 0, 0, 'glenn404', '2018-08-03', 'glegrah', '2007-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS739445849859', '田國榮', 0, '+86 755-578-2433', 2, '279575150669813698', '中国深圳龙岗区学园一巷290号21楼', '1989-11-20', 0, 0, 'tin82', '2019-06-19', 'kwokwingti', '2016-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS768918411798', '郝致远', 0, '+81 74-420-3199', 4, '564887636843118793', 'Rm. 7, 3-9-17 Gakuenminami, Nara, Japan', '1991-10-12', 0, 0, 'haozhiy', '2009-01-21', 'zhiyuanhao69', '2021-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS504946963663', 'Barbara Hicks', 0, '+81 70-6048-9194', 3, '609956182763906932', '日本なごやし熱田区千年二丁目5番8号17階', '1988-09-20', 0, 0, 'hickbarbara', '2003-12-31', 'hbarbara622', '2012-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS407096167687', '野口大地', 1, '+81 90-9600-3434', 3, '088149114449881210', '日本なごやし守山区瀬古東二丁目171番7号19号室', '1990-10-24', 0, 0, 'daicnogu10', '2010-05-03', 'daicnoguc', '2012-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS389539040952', '唐秀文', 1, '+81 90-0097-6871', 4, '476435760093947107', '23F, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1994-12-16', 0, 0, 'saumanto', '2005-05-05', 'smton', '2003-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS048151724732', '郭麗欣', 1, '+44 (161) 286 3109', 0, '133223585636922301', 'No.30 Main building, 108 Sackville St, Manchester, M1 3BB, United Kingdom', '1995-09-12', 0, 0, 'lykwok7', '2022-03-01', 'lyk', '2010-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS158765185448', '任嘉伦', 1, '+1 212-495-0132', 1, '648792394192913669', '509 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1995-01-21', 0, 0, 'jire10', '2001-01-13', 'renj6', '2017-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS815648740949', 'Linda Reyes', 0, '+44 (161) 117 1985', 3, '587842792633871546', 'No.47 Main building, 52 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1993-08-27', 0, 0, 'lindareyes', '2003-12-29', 'lindar', '2003-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS965725255039', 'Deborah Aguilar', 0, '+1 718-806-6377', 2, '537746082855173678', '835 Bergen St Apt 5, Brooklyn, NY 11217, United States', '1986-02-22', 0, 0, 'daguilar3', '2003-01-29', 'deborahaguilar51', '2001-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS578321225653', '孙致远', 0, '+1 330-033-6664', 3, '302549040786017030', '148 Collier Road Apt 11, Akron, OH 44320, United States', '1991-04-08', 0, 0, 'szhiyu', '2008-11-19', 'suz', '2002-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS794562505208', '木村聖子', 0, '+86 769-2434-8125', 3, '292664765674263937', '中国东莞环区南街二巷295号37楼', '1988-06-13', 0, 0, 'seikokimura', '2004-06-18', 'skimur5', '2020-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS499978986525', '加藤大和', 1, '+81 52-228-3628', 1, '338728826081369712', '日本なごやし瑞穂区河岸町四丁目20番10号40号室', '1985-12-16', 0, 0, 'ykat', '2020-09-30', 'yamatokato', '2015-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS659741965244', '萧云熙', 0, '+86 20-921-2474', 3, '671412862162540386', 'No.13 building, 898 Tianhe Road, Tianhe District, Guangzhou, China', '1994-02-16', 0, 0, 'xiaoyunxi', '2019-08-02', 'xiyunxi', '2020-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS025253436993', 'Marilyn Edwards', 0, '+44 (1223) 71 9123', 3, '727948300401424813', 'No.33 Main building, 526 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1989-11-14', 0, 0, 'maredwards1994', '2020-01-14', 'edwards73', '2004-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS062453680313', '鐘慧嫻', 0, '+81 70-1597-2236', 0, '444880946718275084', '8-kai, 1 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1991-04-29', 0, 0, 'chungwaihan', '2014-06-24', 'waihanch525', '2010-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS842105239739', 'Anthony Mills', 1, '+44 (1865) 19 7135', 0, '432140188827100342', 'No.29 Main building, 638 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1989-11-26', 0, 0, 'amills', '2020-11-28', 'anthonymill901', '2005-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS375371540550', 'Leroy Hernandez', 1, '+1 213-670-2466', 1, '957570002725169550', '702 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1997-07-22', 0, 0, 'hernandezleroy', '2007-07-14', 'herl', '2015-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS071523642706', 'Timothy Hunt', 1, '+44 7064 906164', 1, '030978176375157770', 'Block 45, 693 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1991-10-04', 0, 0, 'huntt1971', '2011-09-01', 'timhun715', '2016-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS417380515934', '卢宇宁', 0, '+86 189-5833-1125', 1, '408839578743464076', 'No.30 building, 976 Kengmei 15th Alley, Dongguan, China', '1994-05-30', 0, 0, 'yulu', '2017-12-08', 'yunil1', '2017-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS388578488424', '崔詩君', 0, '+44 5651 521331', 0, '877021755816742810', 'No.6 Main building, 731 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1990-02-10', 0, 0, 'szekwanc513', '2003-08-06', 'choiszek', '2015-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS091351599289', '冯岚', 0, '+86 755-764-6184', 2, '975998375656731714', '中国深圳福田区景田东一街158号27楼', '1996-09-15', 0, 0, 'feng9', '2015-08-24', 'lanf52', '2017-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS400470168867', '韦子韬', 0, '+81 70-4642-2511', 2, '085084293495622580', '日本札幌白石区菊水三条五丁目4番17号25号室', '1987-10-01', 0, 0, 'zwei', '2007-12-06', 'zwe', '2018-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS187576633371', 'Angela Gutierrez', 0, '+1 312-497-6881', 1, '224808482711816149', '545 Pedway Apt 48, Chicago, IL 60601, United States', '1992-05-28', 0, 0, 'gutierrezangela', '2019-12-08', 'gutierrezangela620', '2015-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS080132761280', 'Mary Evans', 1, '+81 66-116-7669', 3, '096312155326992436', '日本おおさかし西成区出城一丁目1番6号2階', '1990-08-18', 0, 0, 'mary606', '2019-11-27', 'maeva', '2002-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS665318431594', '加藤拓哉', 1, '+81 11-370-8453', 2, '710981265985665880', 'Rm. 20, 5-4-9 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1995-06-11', 0, 0, 'ktakuya', '2011-11-19', 'katot', '2019-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS146637278940', '柴田美咲', 1, '+86 162-9401-5837', 0, '702926338743362112', '中国深圳罗湖区田贝一路333号40室', '1991-11-07', 0, 0, 'shmisaki', '2020-01-03', 'mis4', '2010-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS257455238636', 'Gerald Daniels', 0, '+44 7772 382171', 3, '832537108169182243', 'Block 16, 409 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1995-05-01', 0, 0, 'gerald2017', '2010-09-19', 'daniels4', '2014-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS765177580650', '邱嘉伦', 1, '+81 70-1586-3581', 1, '481860817811229629', '日本札幌中央区宮の森四条六丁目1番4号43号室', '1996-06-06', 0, 0, 'jialuqiu', '2006-10-21', 'qiujialun61', '2020-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS794457105660', '萬家文', 1, '+81 11-342-0851', 2, '007228482233712565', '日本札幌厚別区上野幌一条二丁目1番13号16号室', '1999-03-01', 0, 0, 'mkm61', '2002-01-22', 'mengkm', '2013-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS090237434005', '梁子韬', 0, '+81 90-7427-5341', 2, '580625967152339606', '日本おおさかし西成区天神ノ森二丁目1番16号22階', '1995-10-03', 0, 0, 'zliang', '2018-12-29', 'zitliang', '2020-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS307042987912', '官祖兒', 0, '+44 7094 194801', 3, '638674825214759308', 'No.16 Main building, 235 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-10-24', 0, 0, 'choyee6', '2019-10-15', 'kocy', '2021-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS323456911597', '蔡安琪', 0, '+44 5809 336959', 2, '939736498909957510', 'Block 46, 438 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1992-01-07', 0, 0, 'okchoi', '2011-08-20', 'okch1956', '2018-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS011171832687', 'Alfred Mendez', 0, '+86 158-4906-1135', 3, '536398294164485367', '中国成都市成华区双庆路34号13号楼', '1995-03-14', 0, 0, 'mendez07', '2021-03-09', 'meal', '2009-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS351070842856', '島田海斗', 0, '+86 178-8325-7869', 2, '610099714518665375', '中国中山京华商圈华夏街388号4栋', '1993-09-21', 0, 0, 'kshima19', '2003-10-31', 'shik8', '2012-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS889011129501', 'Eugene Nguyen', 0, '+86 142-0940-7595', 3, '267786998452313098', '中国成都市成华区二仙桥东三路453号3栋', '1987-03-12', 0, 0, 'eugenenguyen11', '2006-05-20', 'ngeu', '2005-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS134324436159', 'Alexander Taylor', 0, '+86 755-660-5118', 1, '280559477666964582', '中国深圳龙岗区布吉镇西环路298号华润大厦13室', '1998-02-26', 0, 0, 'aletaylor', '2013-04-03', 'tayloa208', '2007-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS337646813530', '杉山拓哉', 1, '+86 157-6332-1624', 2, '066221544383407825', '中国深圳龙岗区学园一巷530号18室', '1998-02-09', 0, 0, 'sugiyamatakuya1027', '2015-01-09', 'sugiyamatakuya', '2019-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS266596528065', 'Bobby Cruz', 1, '+44 (116) 693 8664', 1, '114233369969047114', 'Unit 39, Oxford Eco Centre, 117 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1992-08-26', 0, 0, 'bobbycruz', '2001-05-18', 'cruz5', '2010-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS565074497010', 'Troy Gomez', 0, '+81 90-1314-4846', 1, '594945779361325361', 'Rm. 17, 1-6-16, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1996-04-19', 0, 0, 'gometroy2', '2018-04-06', 'troy717', '2003-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS895376343018', '史杰宏', 1, '+44 (20) 1569 0703', 2, '645992383123406386', 'Flat 2, 722 Hanover Street, London, W1S 1YD, United Kingdom', '1989-02-21', 0, 0, 'sjieh', '2017-12-04', 'jiehongshi18', '2020-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS689844175894', 'George Fisher', 0, '+44 7444 542402', 2, '481472538948583906', 'Block 32, 997 New Street, Birmingham, B2 4DB, United Kingdom', '1989-08-20', 0, 0, 'fig', '2011-08-23', 'georgefishe74', '2003-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS959243787723', 'Mark Holmes', 1, '+86 10-5409-4027', 1, '975417672375441655', '22F, 225 West Chang''an Avenue, Xicheng District, Beijing, China', '1994-03-05', 0, 0, 'mark03', '2001-01-14', 'markholmes511', '2007-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS961843846719', 'Jeffery Peterson', 1, '+44 (1223) 12 2593', 3, '497310211946590236', 'Unit 41, Oxford Eco Centre, 292 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1985-09-01', 0, 0, 'pjeffery', '2020-04-12', 'petj206', '2015-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS848748261963', 'Edward Wilson', 1, '+86 199-2995-9225', 2, '880249834829161980', '中国深圳龙岗区布吉镇西环路363号华润大厦11室', '1998-11-23', 0, 0, 'edward17', '2018-11-22', 'edwwi203', '2017-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS813461551556', '洪永權', 0, '+86 180-7236-9567', 0, '459569936983507942', '中国深圳龙岗区学园一巷290号36栋', '1992-08-04', 0, 0, 'winhung', '2008-09-07', 'huwingkuen', '2007-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS814423740134', 'Michael Rose', 0, '+1 213-926-5729', 4, '003949568543486177', '215 Figueroa Street Suite 44, Los Angeles, CA 90037, United States', '1997-11-13', 0, 0, 'rosm', '2008-01-07', 'microse831', '2008-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS739407933541', '佘梓軒', 0, '+81 66-603-1223', 0, '877662119071411250', 'Rm. 18, 3-27-16 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-01-21', 0, 0, 'sheh1029', '2005-02-01', 'thshe', '2013-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS355141656666', '韓俊宇', 1, '+81 66-756-9158', 3, '439343295760428609', '日本おおさかし西成区出城一丁目1番3号49号室', '1997-05-07', 0, 0, 'hachunyu', '2008-09-18', 'han3', '2006-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS417421261515', '大野愛梨', 0, '+81 90-9767-5273', 3, '963081349352420022', 'Rm. 4, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1990-04-29', 0, 0, 'onoa2', '2007-03-30', 'oairi', '2006-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS037176221904', '石田架純', 1, '+44 7942 374912', 1, '880272143915412806', 'No.14 Main building, 899 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1987-02-11', 0, 0, 'ik1', '2019-03-03', 'isk', '2011-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS289528924299', 'Carrie Washington', 0, '+86 28-897-3164', 1, '997534198621367862', 'Room 36, 688 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1990-11-14', 0, 0, 'carriwashington', '2016-12-25', 'carriewashington', '2004-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS548211984143', '李家輝', 1, '+86 184-5100-7260', 1, '540419905317291646', '中国上海市黄浦区淮海中路297号35栋', '1997-06-29', 0, 0, 'kflee2', '2004-08-30', 'leekf808', '2010-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS307165440670', '中野愛梨', 1, '+86 28-4382-0834', 1, '713477601229684748', 'No.19 building, No. 215, Shuangqing Rd, Chenghua District, Chengdu, China', '1991-03-30', 0, 0, 'nakai', '2021-12-08', 'nakanoai', '2017-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS164972196860', '许安琪', 0, '+81 90-6494-4332', 4, '797332197403379648', '45-kai, 1-6-13, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1994-08-04', 0, 0, 'anxu416', '2005-09-17', 'anqi5', '2006-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS927882862707', '高田舞', 1, '+81 11-872-3685', 2, '806593566508808042', '日本札幌中央区宮の森四条六丁目1番15号26階', '1997-02-11', 0, 0, 'mai67', '2010-07-08', 'maitak4', '2006-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS102946586227', '小林悠人', 0, '+81 70-0618-3614', 4, '814416754990851914', '日本札幌白石区菊水三条五丁目4番16号34階', '1991-01-30', 0, 0, 'yuto07', '2008-06-23', 'kobayashiyut', '2001-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS752494104035', 'Peter Hunt', 1, '+44 (1223) 30 7619', 3, '514387473535980087', 'Block 28, 969 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1985-06-09', 0, 0, 'pethun', '2021-10-03', 'pethunt6', '2010-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS490231569698', '内田美緒', 1, '+86 158-0518-9832', 1, '048543783166935392', 'No.42 building, 657 Shennan Ave, Futian District, Shenzhen, China', '1994-01-17', 0, 0, 'miouchid3', '2018-03-23', 'miouchid', '2004-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS834145844288', '曹淑怡', 1, '+81 66-622-3434', 0, '528137174268283071', '日本おおさかし西成区天神ノ森二丁目1番11号1階', '1998-05-17', 0, 0, 'sukyc', '2001-09-30', 'sycho4', '2002-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS225810693349', '尹睿', 1, '+86 148-3589-7546', 2, '569659318702367398', 'No.26 building, 228 Dong Zhi Men, Dongcheng District, Beijing, China', '1995-07-17', 0, 0, 'ruyin', '2002-06-06', 'ruiy', '2004-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS452653778280', '姜朝偉', 0, '+81 74-958-5478', 3, '417783194902411655', '日本ならし学園南三丁目9番10号34階', '1986-06-09', 0, 0, 'chang1220', '2007-05-02', 'chachiuwai', '2002-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS579898661153', '孟詩涵', 1, '+81 3-5298-3778', 3, '063973737451205349', '日本東京港区東新橋一丁目5番10号6号室', '1987-01-11', 0, 0, 'msh', '2005-02-16', 'mengshi2013', '2011-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS365731920651', '朱玲玲', 0, '+81 11-763-4035', 1, '205491403390773969', '日本札幌清田区真栄四条五丁目19番17号12階', '1997-03-13', 0, 0, 'llchu7', '2010-07-15', 'chulingling', '2001-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS895281707932', 'Jimmy Carter', 1, '+81 80-0246-6818', 3, '065726519904311066', '日本札幌白石区菊水三条五丁目4番18号8階', '1994-02-13', 0, 0, 'carterjimmy53', '2017-07-28', 'jimmyc', '2007-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS408267181991', 'Jennifer James', 1, '+81 3-5927-8047', 1, '411254015978741506', '日本東京品川区東五反田五丁目2番8号29階', '1997-10-02', 0, 0, 'jej9', '2001-07-05', 'james3', '2009-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS831273437729', 'Ricky West', 1, '+86 760-5095-5096', 3, '514253685023828125', 'Room 31, 74 Lefeng 6th Rd, Zhongshan, China', '1991-01-17', 0, 0, 'ricky7', '2016-08-25', 'ricky10', '2016-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS447403483591', '徐震南', 1, '+1 312-477-4424', 3, '751648928799727070', '307 Pedway Suite 47, Chicago, IL 60601, United States', '1991-04-02', 0, 0, 'xuz10', '2014-01-06', 'xuzhennan', '2014-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS505624582872', '韦璐', 1, '+81 80-6517-4021', 1, '301746372369071350', 'Rm. 40, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1994-01-25', 0, 0, 'weilu8', '2005-12-27', 'lu708', '2021-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS146524704275', '福田美緒', 0, '+86 148-5935-4286', 4, '619045513148559159', '中国中山天河区大信商圈大信南路967号华润大厦25室', '1991-10-30', 0, 0, 'fukudam', '2008-12-28', 'fukudam1114', '2012-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS744435099127', '松田桜', 1, '+86 136-4390-6367', 1, '366455362941698569', '34F, 740 Shanhu Rd, Dongguan, China', '1997-09-21', 0, 0, 'sakmatsuda824', '2006-10-11', 'sakura44', '2004-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS200594679152', '王慧珊', 1, '+44 (20) 7720 6164', 1, '936938113825098784', 'Block 28, 906 Hanover Street, London, W1S 1YD, United Kingdom', '1995-11-22', 0, 0, 'wswong', '2016-07-19', 'wswong1126', '2019-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS645485569361', '于云熙', 0, '+44 (151) 392 0650', 3, '828185912012807160', 'Flat 11, 953 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1998-11-22', 0, 0, 'yuyunxi10', '2013-01-01', 'yuy3', '2015-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS923926240467', 'Jeffrey Jones', 0, '+86 10-5546-3239', 0, '824765158111541225', 'No.3 building, 948 Dong Zhi Men, Dongcheng District, Beijing, China', '1994-08-15', 0, 0, 'jeffj3', '2015-12-21', 'jeffjone2016', '2003-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS571390501498', '韓俊宇', 0, '+81 11-363-9974', 3, '999973663323495534', 'Rm. 6, 5-2-5 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-04-23', 0, 0, 'chunyuhan66', '2020-06-14', 'hanchunyu', '2007-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS733613393802', '潘云熙', 1, '+81 90-3816-5817', 3, '502417783379856956', '19-kai, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-03-14', 0, 0, 'pan321', '2011-07-22', 'pany', '2005-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS317279774254', '马嘉伦', 0, '+44 5793 917506', 2, '416288124005341934', 'Flat 9, 295 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1993-09-28', 0, 0, 'jialun75', '2018-10-20', 'jialunma531', '2004-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS319048746956', '車富城', 1, '+81 66-047-5166', 2, '949999454377143504', 'Rm. 19, 1-7-6 Omido, Higashiosaka, Osaka, Japan', '1989-01-25', 0, 0, 'fushing7', '2007-07-31', 'che02', '2008-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS893830126829', '樂潤發', 0, '+86 20-8619-3130', 1, '486012723233618757', 'No.31 building, 13 Xiaoping E Rd, Baiyun , Guangzhou, China', '1997-03-22', 0, 0, 'lokyunfat62', '2017-12-24', 'loyf', '2003-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS780621743282', '姜杰宏', 1, '+81 52-354-6797', 1, '416845670476987427', '日本なごやし北区楠味鋺三丁目80番1号35階', '1996-10-14', 0, 0, 'jji48', '2002-06-14', 'jiangji57', '2015-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS093331775648', 'Carolyn Gardner', 0, '+44 (1865) 69 3623', 3, '793654395860191951', 'Block 48, 104 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1987-01-04', 0, 0, 'cgar', '2002-07-29', 'cag1206', '2008-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS143271565772', '薛詠詩', 1, '+1 718-602-5985', 3, '458385751099458437', '771 Bergen St Apartment 32, Brooklyn, NY 11217, United States', '1998-11-23', 0, 0, 'wingszesit', '2016-01-14', 'wingsze79', '2004-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS491886728373', 'Annie Lee', 0, '+44 (1223) 55 3440', 0, '241073278599039350', 'Flat 12, 839 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1986-03-14', 0, 0, 'annie10', '2003-07-19', 'leea7', '2021-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS616351005574', '中森湊', 1, '+44 (1223) 69 3621', 4, '623433896966651296', 'Flat 22, 496 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1986-07-21', 0, 0, 'nakamoriminato1', '2011-08-29', 'mn4', '2018-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS281680283735', '山口樹', 1, '+44 (1223) 30 0197', 2, '562365360883031683', 'Flat 16, 211 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1987-06-19', 0, 0, 'itsukiy', '2012-05-19', 'yamaitsuki', '2008-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS516667639458', 'Eric Lopez', 0, '+1 213-105-1964', 4, '469046122071055507', '495 S Broadway Suite 30, Los Angeles, CA 90015, United States', '1999-03-04', 0, 0, 'elopez', '2012-08-21', 'elopez', '2013-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS849385203276', '侯子异', 1, '+81 3-8740-5628', 2, '091918038879000191', '日本東京中央区銀座三丁目12番3号19階', '1997-12-07', 0, 0, 'zho', '2012-09-09', 'hziyi70', '2008-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS142834206352', 'Rebecca Brooks', 1, '+44 5082 754783', 4, '394548640750848429', 'Block 2, 182 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1995-11-19', 0, 0, 'rb7', '2000-12-28', 'rebecbro4', '2011-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS299223273127', 'Danielle Griffin', 0, '+44 (20) 8771 3103', 4, '922101881222291560', 'Block 49, 549 Hanover Street, London, W1S 1YD, United Kingdom', '1992-02-07', 0, 0, 'danielle1994', '2008-12-19', 'griffin8', '2013-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS592782105551', 'Theresa Wilson', 1, '+1 718-079-2308', 3, '396095539359630835', '910 Bergen St Apt 24, Brooklyn, NY 11217, United States', '1989-08-24', 0, 0, 'wthe', '2016-07-12', 'wilson1004', '2019-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS433936943844', '元國榮', 1, '+81 11-775-7886', 0, '998719721332840523', '1F, 2-1-2 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1987-11-30', 0, 0, 'yukw', '2005-10-28', 'yuenkwo', '2010-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS034304365095', 'Curtis Chen', 1, '+44 7908 364477', 2, '027990067882931276', 'No.43 Main building, 780 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1987-10-23', 0, 0, 'chencurtis3', '2004-07-15', 'chencurtis10', '2020-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS804640585647', '向岚', 1, '+81 3-3285-8027', 3, '118633416829472529', '30F, 3-15-16 Ginza, Chuo-ku, Tokyo, Japan', '1998-06-23', 0, 0, 'xianlan', '2004-07-13', 'lan4', '2000-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS300688399938', '邱家玲', 0, '+1 838-768-9734', 1, '858487140143509976', '347 Broadway Apartment 40, Albany, NY 12207, United States', '1992-02-08', 0, 0, 'kalingyau00', '2019-07-18', 'yaukaling4', '2018-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS345967191428', '近藤葉月', 0, '+86 760-8304-8930', 1, '990469692888327659', 'Room 44, CR Building, 25 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1997-05-21', 0, 0, 'kondo8', '2007-04-20', 'hazuki8', '2015-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS667605787679', '程璐', 1, '+81 66-649-6876', 1, '408188793084311797', '45F, 1-7-15 Omido, Higashiosaka, Osaka, Japan', '1987-02-27', 0, 0, 'lucheng9', '2012-06-05', 'lucheng', '2017-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS687505246810', '蕭天樂', 1, '+1 312-059-7841', 0, '757621517735012558', '316 Rush Street Suite 36, Chicago, IL 60611, United States', '1986-12-03', 0, 0, 'tinloks', '2003-06-26', 'siutinlok', '2022-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS623979728612', '沈岚', 0, '+44 (1865) 94 8601', 2, '911704282451828012', 'Unit 45, Oxford Eco Centre, 330 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1987-04-03', 0, 0, 'lanshen4', '2011-05-27', 'lan1012', '2009-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS938906276337', '王俊宇', 1, '+1 212-656-3708', 4, '205875935937160135', '262 Bank Street Apt 7, New York, NY 10014, United States', '1997-01-04', 0, 0, 'chunyuwon', '2015-10-14', 'wong50', '2015-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS299493201803', '胡子异', 0, '+86 136-6147-9519', 3, '210052109806599588', '中国中山紫马岭商圈中山五路447号11楼', '1988-06-14', 0, 0, 'ziyi81', '2011-07-19', 'zihu', '2003-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS902177073925', 'Margaret Tran', 0, '+1 212-327-9440', 0, '561601022439405637', '108 Wooster Street Apartment 42, New York, NY 10012, United States', '1996-04-23', 0, 0, 'margarettran', '2000-06-16', 'tmarga', '2018-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS037419865427', 'Arthur Gonzalez', 1, '+81 11-419-9065', 2, '681279415139336910', '5F, 5-19-4 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1991-09-20', 0, 0, 'arthurgonzalez', '2008-07-12', 'arthugonzalez', '2001-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS825880023753', '蘇家玲', 0, '+1 312-203-4586', 4, '739970030853517973', '690 Pedway Apt 32, Chicago, IL 60601, United States', '1988-05-20', 0, 0, 'sokali', '2017-02-08', 'kaso', '2008-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS271378021951', '袁國賢', 1, '+1 212-609-3774', 1, '191039657947555482', '52 Wooster Street Apartment 35, New York, NY 10012, United States', '1989-08-13', 0, 0, 'kwokyiny54', '2012-01-23', 'kwokyiny', '2014-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS171068314966', '郭曉彤', 1, '+86 168-6000-7557', 1, '054810875530572146', 'No.3 building, 805 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1997-01-25', 0, 0, 'hiutungkw10', '2003-09-20', 'hiutungkwo3', '2002-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS565961551516', '桜井詩乃', 0, '+81 74-757-0321', 4, '494186942689927518', '2-kai, 1 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-09-05', 0, 0, 'shsakurai', '2000-03-24', 'ssakur6', '2010-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS067013272551', '桜井彩乃', 1, '+86 755-552-5236', 4, '489431614322040510', 'Room 2, CR Building, 258 Jingtian East 1st St, Futian District, Shenzhen, China', '1985-11-24', 0, 0, 'sakuraia', '2002-05-14', 'aysaku', '2012-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS954986428012', '石田蒼士', 0, '+1 213-350-4573', 4, '727732871012994724', '41 Sky Way Suite 32, Los Angeles, CA 90043, United States', '1985-01-01', 0, 0, 'ishidaos', '2010-11-30', 'aoishida', '2005-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS028156898789', '龙子异', 0, '+44 (121) 464 5906', 3, '872816823623545038', 'Unit 35, Oxford Eco Centre, 837 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1995-08-22', 0, 0, 'ziylong', '2009-06-25', 'long01', '2012-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS220353248087', '加藤蒼士', 0, '+44 (116) 534 4378', 2, '011152526631382364', 'Block 35, 174 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1987-10-30', 0, 0, 'akato616', '2013-01-25', 'kaaoshi', '2000-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS344826470327', '戚學友', 0, '+1 213-757-7718', 3, '655440850177235685', '202 Figueroa Street Apt 33, Los Angeles, CA 90037, United States', '1988-02-29', 0, 0, 'hychic', '2018-03-10', 'hychic1967', '2002-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS153883538890', '李晓明', 0, '+86 190-4821-3472', 3, '163909730562697790', '中国北京市东城区东单王府井东街836号华润大厦34室', '1989-02-06', 0, 0, 'lixiaoming', '2011-12-19', 'xiaomingli', '2010-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS993074553444', '汪震南', 1, '+81 90-8142-9122', 1, '525556523335661425', '日本東京中央区銀座三丁目12番3号26階', '1997-06-18', 0, 0, 'zhew1026', '2009-03-13', 'zhenwang6', '2020-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS996997213269', 'Carlos Walker', 1, '+81 52-683-0546', 1, '990632174657813712', '日本なごやし北区楠味鋺三丁目80番5号43階', '1991-04-15', 0, 0, 'carlowalker', '2013-06-20', 'carlos9', '2016-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS595383739963', 'Aaron James', 1, '+86 769-3596-4717', 0, '074549490405680009', '35F, 505 Kengmei 15th Alley, Dongguan, China', '1985-09-18', 0, 0, 'jamesaaron', '2003-07-10', 'jamesaaron1994', '2018-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS078696254837', '范子韬', 1, '+86 177-2943-1432', 3, '960787540563531156', '中国东莞东泰五街97号13楼', '1985-12-14', 0, 0, 'zfan728', '2020-12-14', 'zitfan', '2015-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS134620500140', 'Marilyn Collins', 1, '+81 74-127-5603', 4, '035504993780025475', '32-kai, 1-7-12 Saidaiji Akodacho, Nara, Japan', '1986-08-22', 0, 0, 'collmarilyn2', '2011-12-11', 'marilync5', '2021-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS639714781543', 'Bruce Watson', 1, '+86 164-3564-7061', 2, '197771848331101688', '中国深圳龙岗区布吉镇西环路277号20号楼', '1987-04-15', 0, 0, 'watsbruce', '2000-01-12', 'watsbruce320', '2011-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS349035366340', '元霆鋒', 1, '+44 (161) 513 3311', 2, '513325503697963401', 'No.5 Main building, 676 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1990-10-27', 0, 0, 'tfyuen68', '2014-06-23', 'tingfungyuen', '2021-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS243324052325', '朱詩涵', 0, '+86 28-9517-0861', 1, '626624836974822819', '中国成都市锦江区人民南路四段421号26室', '1987-07-06', 0, 0, 'zhush1987', '2017-04-01', 'szhu', '2015-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS871397642902', 'Nicole Porter', 1, '+1 718-251-0752', 2, '478956803314845235', '621 Nostrand Ave Apartment 8, Brooklyn, NY 11216, United States', '1998-12-28', 0, 0, 'pnicole', '2021-03-06', 'porternicol3', '2006-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS439261083379', '黃國榮', 1, '+86 10-607-5207', 2, '798715825536128637', 'No.15 building, 856 West Chang''an Avenue, Xicheng District, Beijing, China', '1987-05-17', 0, 0, 'wong52', '2014-05-31', 'wonkw', '2010-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS749513184277', '横山聖子', 1, '+81 3-3740-2993', 1, '790568601012832029', 'Rm. 32, 5-2-11 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1987-04-19', 0, 0, 'seyoko', '2001-02-03', 'yokoyama1001', '2012-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS780162176067', '向岚', 0, '+86 10-7810-0384', 1, '832434975076282828', '中国北京市海淀区清河中街68号261号25号楼', '1996-04-15', 0, 0, 'lanxiang', '2004-03-18', 'xiang9', '2018-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS078585096202', '唐嘉伦', 0, '+81 66-302-1908', 3, '258447759774065819', '日本おおさかし西成区出城一丁目1番16号36号室', '1987-05-28', 0, 0, 'tangjial', '2015-04-29', 'tangj90', '2018-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS521580844531', 'Sharon Mills', 1, '+81 11-037-3006', 3, '470879573513937264', '日本札幌厚別区上野幌一条二丁目1番1号1階', '1995-01-03', 0, 0, 'sharon8', '2019-05-12', 'shamills', '2017-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS393706182133', '杉山葉月', 0, '+86 21-0666-2145', 1, '416031417433516613', 'No.50 building, 346 Ganlan Rd, Pudong, Shanghai, China', '1996-09-17', 0, 0, 'sugiyamah', '2006-01-31', 'sugiyama718', '2019-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS497841441122', '胡嘉伦', 0, '+1 838-892-5501', 4, '633064496970889291', '559 Central Avenue Apartment 7, Albany, NY 12206, United States', '1997-02-23', 0, 0, 'hujialu2', '2000-06-10', 'hu9', '2011-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS300243121014', '村田優奈', 1, '+81 11-724-0150', 1, '815798084424704756', 'Rm. 31, 13-3-10 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1988-06-11', 0, 0, 'murata7', '2001-11-14', 'muyuna', '2017-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS238283376314', '上田百恵', 1, '+86 148-4477-9272', 1, '893034571062082612', 'No.28 building, 65 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1993-02-04', 0, 0, 'momued', '2009-09-15', 'momoeueda2', '2005-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS050128907037', 'Jacob Fernandez', 0, '+81 70-6482-7717', 2, '133238851181449094', '日本ならし大和郡山市本庄町一丁目1番7号47階', '1995-09-28', 0, 0, 'ferjacob', '2002-04-11', 'jacobfern', '2020-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS448866463284', 'Barbara Foster', 1, '+86 168-3190-4212', 0, '171019939597476665', '中国中山紫马岭商圈中山五路448号42栋', '1986-08-19', 0, 0, 'barbara330', '2007-04-28', 'barbara3', '2006-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS866195319438', '福田蒼士', 1, '+44 (151) 919 0217', 4, '248227241694065554', 'Flat 32, 780 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1986-05-20', 0, 0, 'fukudaa6', '2005-05-18', 'aoshifuku', '2019-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS384003181175', 'Kathryn Grant', 0, '+81 52-740-4916', 1, '996459523572972208', '48F, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1985-10-04', 0, 0, 'grantkath94', '2013-01-14', 'katgrant525', '2008-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS321818563777', '有村聖子', 0, '+86 148-0436-4812', 3, '421831172817390874', '中国广州市白云区小坪东路270号22楼', '1986-01-22', 0, 0, 'arimusei', '2020-09-08', 'arimuse', '2018-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS131776974943', 'Marvin Mitchell', 0, '+81 90-9601-5389', 2, '628057849507258538', '日本なごやし北区楠味鋺三丁目80番9号32号室', '1994-05-29', 0, 0, 'marvinmitchell', '2021-07-08', 'marvinmit1', '2002-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS136858448145', '贺詩涵', 1, '+44 (20) 8321 4736', 4, '134243948869344455', 'Flat 12, 590 Pollen Street, London, W1S 1NG, United Kingdom', '1994-08-06', 0, 0, 'hs9', '2020-09-26', 'she', '2011-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS691981980493', '汪云熙', 1, '+81 3-6585-4107', 1, '264505038843383621', '日本東京千代田区丸の内一丁目6番11号36階', '1995-08-30', 0, 0, 'wyunxi928', '2001-12-28', 'wany', '2009-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS026060346904', '谷富城', 1, '+81 52-191-3074', 2, '928444784895189042', '日本なごやし瑞穂区河岸町四丁目20番18号27階', '1994-03-21', 0, 0, 'fsko', '2015-12-02', 'fushingk', '2010-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS425405905496', 'Jamie Nelson', 1, '+1 212-407-2149', 2, '884697036083851116', '287 Fifth Avenue Suite 49, New York, NY 10017, United States', '1998-09-18', 0, 0, 'nelsjamie9', '2002-01-06', 'jamien5', '2011-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS235984230332', '増田翼', 1, '+81 3-3297-1455', 1, '123561684287973530', '日本東京品川区東五反田五丁目2番8号20階', '1990-05-05', 0, 0, 'tsmasuda8', '2004-01-14', 'mastsubasa', '2017-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS641924181763', '董震南', 1, '+44 5313 219152', 1, '973468679687249025', 'Flat 46, 528 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1986-12-31', 0, 0, 'dong929', '2017-03-04', 'dongzhennan', '2001-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS975192570674', 'Ryan Jenkins', 1, '+86 21-174-6857', 1, '446290526016127568', 'Room 45, 68 Binchuan Rd, Minhang District, Shanghai, China', '1988-09-25', 0, 0, 'jenkins1', '2003-01-07', 'jryan', '2004-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS317663782285', '伊藤玲奈', 0, '+81 3-4139-1805', 3, '028571548738108404', '5F, 5-2-16 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1985-06-08', 0, 0, 'renito', '2010-05-02', 'ito68', '2006-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS836847529952', 'Barry Gonzales', 1, '+86 159-1465-1367', 2, '592680475907477612', '中国深圳福田区深南大道791号5楼', '1987-08-11', 0, 0, 'gonzba', '2003-01-02', 'gonzalesb2', '2011-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS955817718250', 'Bobby Baker', 0, '+44 (121) 795 5569', 4, '109178829282108561', 'Unit 18, Oxford Eco Centre, 129 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1988-12-25', 0, 0, 'bakerbobby', '2005-08-12', 'baker2', '2016-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS979916803988', '朱安琪', 1, '+86 760-248-5658', 1, '009603852426150940', '中国中山天河区大信商圈大信南路557号46楼', '1991-02-07', 0, 0, 'azhu601', '2005-11-09', 'zhu415', '2007-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS147685466299', '井上美月', 1, '+81 90-0295-3308', 1, '526577214266218156', '1F, 6-1-18, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1991-10-27', 0, 0, 'inouemits', '2021-12-09', 'mii', '2018-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS339028699521', '郭小慧', 0, '+86 178-2101-8076', 1, '603061770600401704', '中国成都市成华区玉双路6号403号1室', '1986-08-26', 0, 0, 'siuwaikwok7', '2011-10-04', 'kwoksiuwai', '2019-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS112652358767', 'Heather Jones', 0, '+81 80-7775-4207', 3, '797814525772667789', '日本ならし大和郡山市本庄町一丁目1番4号31階', '1997-07-26', 0, 0, 'heather1029', '2005-12-25', 'hjo', '2014-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS105927398013', '駱永發', 0, '+81 74-208-4785', 1, '050119058807487459', '日本ならし学園南三丁目9番18号5階', '1985-11-06', 0, 0, 'wfl', '2022-03-05', 'wingfatlo', '2014-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS040504128800', 'Jimmy Lee', 1, '+44 5368 042272', 2, '599991655277405900', 'No.6 Main building, 339 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1997-07-15', 0, 0, 'leejimmy', '2005-06-10', 'leejimmy1', '2012-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS719331976637', '贾睿', 0, '+86 20-902-1054', 1, '437143306449670355', '中国广州市白云区小坪东路418号38号楼', '1998-07-10', 0, 0, 'jia127', '2021-11-20', 'ruij', '2017-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS338434567100', '向浩然', 1, '+81 52-344-4936', 3, '540233242996224643', '2F, 3 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1997-02-06', 0, 0, 'hoyinheun', '2003-01-21', 'hoyin3', '2016-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS871886174837', '郝嘉伦', 0, '+1 213-380-3533', 2, '611021877989530536', '836 S Broadway Suite 15, Los Angeles, CA 90015, United States', '1997-12-16', 0, 0, 'jialunh1215', '2019-08-11', 'haoj117', '2011-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS461131226582', '車志遠', 1, '+86 10-4364-7828', 1, '505291126113624523', '中国北京市西城区西長安街231号42室', '1985-03-15', 0, 0, 'cyche', '2004-08-11', 'che324', '2008-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS132340523668', '范晓明', 1, '+1 330-269-7901', 3, '612445898631849077', '560 Fern Street 3rd Floor, Akron, OH 44307, United States', '1998-02-08', 0, 0, 'xiaomfan6', '2014-05-13', 'xiaomfa', '2011-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS377342407269', '高田樹', 0, '+81 11-534-1825', 2, '408110229271171898', '日本札幌清田区真栄四条五丁目19番8号12階', '1990-02-06', 0, 0, 'takadait', '2013-02-22', 'takitsuki', '2016-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS352665956128', '渡辺湊', 0, '+44 7267 730266', 1, '328865962831241676', 'Block 41, 984 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1994-07-12', 0, 0, 'minato9', '2019-10-31', 'sato9', '2000-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS827330427768', 'Glenn West', 0, '+86 21-419-6216', 1, '021569615517093292', '中国上海市浦东新区健祥路451号华润大厦42室', '1994-01-21', 0, 0, 'glennwe824', '2010-03-02', 'westg', '2004-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS013574852062', '彭小慧', 1, '+1 212-269-1015', 1, '110063914250311699', '788 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1998-10-19', 0, 0, 'psiuwai216', '2005-05-28', 'swpan66', '2015-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS861993122494', 'James Wagner', 1, '+81 3-9749-0525', 1, '055069278530327979', '日本東京港区東新橋一丁目5番18号49号室', '1992-10-21', 0, 0, 'jameswa', '2019-04-29', 'wagnjames', '2006-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS087200073562', '何裕玲', 0, '+86 139-4802-9031', 2, '332131009515581089', '18F, 437 Xiaoping E Rd, Baiyun , Guangzhou, China', '1986-02-24', 0, 0, 'yuling829', '2021-12-05', 'hoyl5', '2021-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS422307740192', 'Judith Holmes', 1, '+86 162-5997-0861', 1, '812465379214168725', 'No.29 building, 206 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1986-12-21', 0, 0, 'holmesjudith3', '2021-02-12', 'hj1', '2000-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS390924381528', '柴田大地', 1, '+86 167-3006-2131', 3, '700557935537088948', '中国上海市浦东新区橄榄路33号42号楼', '1991-08-05', 0, 0, 'sdaichi8', '2008-11-09', 'shibatadaich', '2002-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS140055836687', '中川光莉', 1, '+1 212-342-0453', 2, '625020318343221838', '725 Canal Street Suite 7, New York, NY 10013, United States', '1994-06-28', 0, 0, 'hikna', '2021-09-18', 'hikanaka69', '2017-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS273026266007', '冯子韬', 0, '+44 5075 333362', 1, '996844296980173952', 'Flat 23, 189 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1991-05-29', 0, 0, 'fengzit4', '2014-01-05', 'zitaofeng6', '2010-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS704767002272', '酒井美緒', 0, '+81 90-0524-8348', 3, '323730244804763370', '日本おおさかし近江堂一丁目7番16号34階', '1995-01-09', 0, 0, 'mio90', '2012-08-07', 'miosakai', '2003-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS564944782310', '上田陽菜', 1, '+86 165-2413-1300', 2, '375496600431699702', '25F, 527 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1998-06-21', 0, 0, 'hiueda', '2007-05-27', 'uedahina81', '2000-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS397306360568', 'Clifford Harrison', 1, '+86 173-3461-0631', 4, '375116143659462125', 'No.29 building, 161 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1985-07-26', 0, 0, 'harrisoncli2', '2002-02-07', 'charri', '2014-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS823978478555', 'Henry Wells', 0, '+86 20-3847-2761', 0, '658043025523367947', '中国广州市天河区天河路57号华润大厦44室', '1992-06-09', 0, 0, 'henryw', '2014-10-13', 'henrywell', '2007-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS022884163468', '井上葵', 1, '+1 614-656-4603', 2, '602818712406733462', '659 Tremont Road Apartment 43, Columbus, GA 43212, United States', '1995-09-08', 0, 0, 'inaoi4', '2016-01-25', 'aoiinoue', '2012-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS244305650189', '羅天榮', 0, '+86 138-7308-8808', 3, '667743716236106673', 'No.27 building, 588 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1991-12-02', 0, 0, 'lotw00', '2016-08-18', 'lotw1985', '2015-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS440079153990', '佘志明', 1, '+81 66-731-4612', 3, '982475053681889258', '日本おおさかし平野区加美東四丁目9番2号1階', '1995-03-20', 0, 0, 'sheh717', '2000-06-24', 'chiming516', '2015-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS375850543158', '顧家強', 0, '+81 52-171-1316', 4, '037156496349173450', '日本なごやし北区楠味鋺三丁目80番17号25階', '1986-07-07', 0, 0, 'kukakeung', '2020-07-07', 'kukakeung', '2017-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS845079385915', '菅原健太', 1, '+81 74-541-5251', 2, '738416157519629621', 'Rm. 37, 1-7-16 Saidaiji Akodacho, Nara, Japan', '1991-04-02', 0, 0, 'sugawkenta', '2011-09-20', 'sugawara111', '2003-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS471918925049', '田中光', 1, '+1 213-303-5567', 4, '295952763293789631', '59 Alameda Street Suite 46, Los Angeles, CA 90002, United States', '1985-04-15', 0, 0, 'htanaka3', '2014-02-11', 'tanakah', '2010-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS740324433639', '叶岚', 1, '+1 838-441-7240', 3, '200946850314437070', '519 Lark Street Apt 27, Albany, NY 12210, United States', '1995-12-17', 0, 0, 'lanye1105', '2005-10-20', 'lanye', '2013-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS271744985915', '蔡天樂', 0, '+81 74-092-4506', 1, '088685275362575647', '17F, 3-9-20 Gakuenminami, Nara, Japan', '1994-06-11', 0, 0, 'tinlok212', '2010-01-21', 'choitl1207', '2014-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS208923149203', 'Antonio Rodriguez', 1, '+81 90-8844-0131', 1, '524386683910097182', '日本ならし学園南三丁目9番7号13階', '1986-04-17', 0, 0, 'antoniorodri1009', '2014-01-02', 'rodrantonio', '2020-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS152243116967', 'Beverly Lewis', 1, '+86 28-8795-2172', 2, '253404496377245783', '中国成都市成华区二仙桥东三路869号华润大厦35室', '1991-08-05', 0, 0, 'lewisbe10', '2010-02-07', 'bevelew1207', '2015-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS865698410759', '周慧敏', 1, '+81 90-9706-9673', 0, '177321295305330370', '日本なごやし熱田区千年二丁目5番3号45階', '1995-01-30', 0, 0, 'chowwaiman', '2005-01-28', 'chowwm', '2012-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS925573010076', 'Cindy Bryant', 1, '+86 197-7461-1234', 2, '584233423558306165', 'No.40 building, 595 Huanqu South Street 2nd Alley, Dongguan, China', '1992-12-13', 0, 0, 'cbry', '2021-06-30', 'cindybr1', '2004-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS829123708110', '余致远', 0, '+86 184-8038-6596', 2, '146765237782905715', '中国深圳福田区景田东一街105号38号楼', '1990-12-24', 0, 0, 'zhiyu8', '2004-02-13', 'yuzhi10', '2009-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS861594799079', '薛震南', 0, '+81 70-2199-3222', 1, '331783550824791879', '日本東京千代田区丸の内一丁目6番1号6号室', '1986-10-24', 0, 0, 'xuez', '2019-02-15', 'zhennanxue', '2004-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS742742593739', '加藤海斗', 0, '+81 52-327-9386', 2, '549221869365540957', '5F, 13 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1986-12-14', 0, 0, 'kak1970', '2008-07-28', 'kk2', '2018-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS077345569634', '陈岚', 0, '+44 (151) 038 9765', 2, '641650030743256798', 'Block 48, 517 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1992-08-22', 0, 0, 'chenla', '2017-01-07', 'chenlan', '2007-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS659179713576', '周云熙', 1, '+81 52-368-5974', 2, '847942623469195257', '22-kai, 3-19-10 Shimizu, Kita Ward, Nagoya, Japan', '1988-02-24', 0, 0, 'yunxi101', '2018-09-25', 'yzhou205', '2009-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS044444309099', '車安琪', 0, '+81 66-277-6035', 2, '772217340004778665', 'Rm. 38, 1-7-12 Omido, Higashiosaka, Osaka, Japan', '1992-01-09', 0, 0, 'cheok86', '2016-02-11', 'che13', '2012-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS938909198006', '譚惠妹', 1, '+86 183-9203-2987', 4, '385892234488888731', 'No.33 building, 744 Ganlan Rd, Pudong, Shanghai, China', '1987-01-30', 0, 0, 'tamhm', '2022-03-04', 'tahu', '2020-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS722044982759', '莫云熙', 1, '+86 20-549-9570', 1, '984811192366688307', 'Room 27, 156 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1988-10-14', 0, 0, 'yunximo', '2020-03-05', 'moyu416', '2008-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS106478581971', '向安琪', 1, '+86 28-3664-3016', 1, '961025877226895830', 'No.39 building, No. 288, Shuangqing Rd, Chenghua District, Chengdu, China', '1992-10-23', 0, 0, 'heungok1966', '2021-10-28', 'heunonkay9', '2018-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS563363413449', 'Cindy Hayes', 0, '+81 80-4638-1960', 3, '115460900502023398', '日本ならし西大寺赤田町一丁目7番2号10階', '1988-06-24', 0, 0, 'hayesc', '2014-10-06', 'hayecindy', '2001-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS088277194040', 'Amber West', 0, '+86 138-5462-8055', 0, '522251716684322667', 'No.28 building, 465 FuXingMenNei Street, XiCheng District, Beijing, China', '1986-11-22', 0, 0, 'west65', '2013-12-15', 'westamber', '2005-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS417890073221', '甘麗欣', 1, '+81 52-555-4610', 0, '488881604563622533', '4-kai, 3-19-7 Shimizu, Kita Ward, Nagoya, Japan', '1998-01-06', 0, 0, 'kamly', '2006-02-12', 'laiyan51', '2010-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS327559709257', '曾致远', 1, '+81 74-903-3500', 2, '051661098253186562', 'Rm. 45, 1-7-4 Saidaiji Akodacho, Nara, Japan', '1992-01-10', 0, 0, 'zhizeng', '2003-05-28', 'zengzhi1012', '2021-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS242115343280', '吳詩君', 0, '+81 11-897-1212', 2, '486188734380352067', 'Rm. 11, 6-1-16, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1985-03-07', 0, 0, 'ng11', '2020-10-02', 'ng2', '2019-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS314699389179', '孟秀英', 1, '+86 28-445-9292', 4, '494308212543149268', 'Room 36, No.996, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1988-11-28', 0, 0, 'xm4', '2002-08-31', 'meng00', '2016-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS481883617522', '林思妤', 0, '+44 7952 068510', 0, '951753415764862011', 'Block 35, 201 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1992-09-26', 0, 0, 'sylam', '2008-11-06', 'lam5', '2006-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS239395224083', '姚璐', 1, '+44 (151) 680 9901', 2, '227705626341493086', 'Unit 23, Oxford Eco Centre, 296 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1993-05-24', 0, 0, 'yaolu', '2000-11-07', 'yaolu804', '2007-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS308404095496', '姜安琪', 0, '+81 80-2507-6932', 2, '916677325722779103', 'Rm. 23, 1-7-1 Omido, Higashiosaka, Osaka, Japan', '1992-05-02', 0, 0, 'okchang20', '2018-11-06', 'conkay', '2006-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS056119014823', 'Marilyn Sanders', 0, '+44 5108 828102', 4, '527927250374932400', 'Flat 49, 545 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1994-10-01', 0, 0, 'marisanders', '2005-01-22', 'marilynsanders', '2002-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS763818169453', '菊地百花', 0, '+86 760-5126-8410', 2, '781232338740151995', '24F, 789 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1998-01-20', 0, 0, 'momokakiku', '2005-06-30', 'kikumomoka', '2011-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS187329772460', '羅志明', 1, '+44 7490 727870', 1, '729190742999834226', 'Block 29, 509 Mosley St, Manchester, M2 3AQ, United Kingdom', '1988-04-14', 0, 0, 'locm', '2010-08-31', 'chimlo', '2006-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS422926199442', '田詩君', 1, '+44 (151) 526 6197', 1, '253807278896854905', 'Unit 16, Oxford Eco Centre, 471 Redfern St, Liverpool, L20 8JB, United Kingdom', '1991-08-15', 0, 0, 'tinsz', '2006-12-30', 'tsk', '2018-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS974370612581', 'Leroy Ross', 0, '+81 80-1007-4017', 2, '189507537802541132', 'Rm. 24, 13-3-20 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1990-10-15', 0, 0, 'lros2', '2010-10-21', 'rossler6', '2019-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS494775064353', '官力申', 0, '+1 213-471-0675', 4, '927407909947560304', '626 Figueroa Street Apt 37, Los Angeles, CA 90037, United States', '1989-07-12', 0, 0, 'kols71', '2001-11-28', 'kools', '2021-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS331490177289', '菊地架純', 0, '+81 3-2894-4127', 0, '278936086047023184', '17-kai, 3-15-4 Ginza, Chuo-ku, Tokyo, Japan', '1998-03-25', 0, 0, 'kakik', '2016-08-21', 'kikkasum', '2006-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS016248050642', '翁家明', 1, '+44 (161) 280 6065', 2, '639658695865891397', 'Unit 49, Oxford Eco Centre, 803 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-08-30', 0, 0, 'ykm', '2003-09-22', 'yungkamin', '2013-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS307520926196', 'Harold Jones', 0, '+81 52-477-4669', 3, '035154103981474960', '33-kai, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-04-19', 0, 0, 'jhar', '2003-04-12', 'harojones', '2008-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS645407243277', '小山光', 0, '+86 10-1701-2268', 1, '160647608888282980', '中国北京市延庆区028县道984号34号楼', '1996-01-06', 0, 0, 'koyamh', '2014-04-21', 'koyama2', '2002-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS162572342243', '馮曉彤', 1, '+1 312-790-9406', 1, '009994017973590754', '843 Rush Street Suite 38, Chicago, IL 60611, United States', '1992-12-13', 0, 0, 'hiutung612', '2007-11-06', 'fung4', '2016-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS397463699960', '甘杰倫', 0, '+81 11-907-1418', 2, '854396516842933151', '日本札幌白石区菊水三条五丁目4番4号1階', '1991-05-24', 0, 0, 'chiehlunkam', '2010-10-14', 'kamchiehlun', '2012-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS930071728054', '贺秀英', 0, '+81 66-475-8575', 4, '509797487982071444', '日本おおさかし西成区天神ノ森二丁目1番8号31階', '1988-05-02', 0, 0, 'xih', '2005-06-18', 'hex68', '2012-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS977902677143', 'Alan Richardson', 0, '+44 7442 586503', 3, '374524108862637985', 'Unit 44, Oxford Eco Centre, 69 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-01-04', 0, 0, 'alanrichardson', '2001-11-07', 'richardsonal', '2014-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS919427759859', '薛家玲', 1, '+44 (161) 264 8698', 2, '687739291510823132', 'Block 17, 459 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1996-07-05', 0, 0, 'klsit02', '2001-04-01', 'sit820', '2002-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS823239577795', '房詩君', 0, '+86 155-6723-6531', 4, '713313404127322687', '中国广州市越秀区中山二路380号18楼', '1989-03-06', 0, 0, 'szekwanfong', '2014-10-29', 'szekwan414', '2004-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS218466809446', '遠藤百恵', 1, '+1 838-282-9004', 0, '921820787473672753', '248 Central Avenue Apartment 19, Albany, NY 12206, United States', '1989-06-21', 0, 0, 'emomoe1030', '2000-06-26', 'emomoe', '2000-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS333812724789', '王璐', 1, '+86 20-8386-1272', 1, '543753501683981838', '中国广州市海珠区江南西路324号31号楼', '1987-03-09', 0, 0, 'luwang97', '2012-01-29', 'luw', '2005-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS853534731406', '橋本美羽', 1, '+81 3-2075-7429', 0, '608103003843293197', '23F, 2-3-8 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-05-28', 0, 0, 'hmiu', '2001-12-24', 'hashimotom', '2015-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS615149120967', '石井紗良', 0, '+1 312-745-6846', 4, '113441258865479540', '323 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1989-05-12', 0, 0, 'saraishii', '2003-03-13', 'si7', '2003-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS753055306142', '中山陽菜', 1, '+86 755-8917-7428', 1, '405118465958979367', 'No.7 building, 205 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1992-09-30', 0, 0, 'hina8', '2014-01-20', 'nahina', '2008-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS210520091440', '謝潤發', 0, '+86 193-8054-3191', 3, '763298672686071649', '中国北京市海淀区清河中街68号968号42栋', '1987-03-30', 0, 0, 'tyf', '2017-05-05', 'tseyf', '2017-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS349870921242', '余晓明', 0, '+86 159-5959-2735', 2, '051811089613700354', '中国北京市西城区西長安街876号华润大厦47室', '1995-08-11', 0, 0, 'yu3', '2019-07-18', 'xiyu', '2018-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS193273647685', 'Josephine Patel', 1, '+44 (1865) 25 7931', 2, '044761656617797014', 'Flat 38, 895 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-08-18', 0, 0, 'pateljosep', '2008-09-20', 'josephinepat9', '2010-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS991956549709', '余宇宁', 0, '+86 28-165-8485', 0, '115589263099801819', '中国成都市成华区二仙桥东三路89号20号楼', '1996-06-04', 0, 0, 'yuyuning', '2018-09-06', 'yu1103', '2009-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS412796915513', '岩崎七海', 1, '+1 718-806-3497', 4, '210685347648103804', '690 Flatbush Ave Apartment 30, Brooklyn, NY 11225, United States', '1998-08-05', 0, 0, 'naiwasa40', '2007-12-02', 'niw', '2015-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS346227403489', '加藤明菜', 1, '+81 80-8272-4363', 2, '951067677861395196', '日本札幌豊平区豊平三条十三丁目3番10号3階', '1991-12-26', 0, 0, 'katoakina', '2018-10-12', 'katoak916', '2004-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS702955584701', '廖心穎', 0, '+1 614-234-7515', 3, '882585060985664620', '164 East Alley Suite 49, Columbus, GA 43201, United States', '1986-04-05', 0, 0, 'sumwing1208', '2012-02-07', 'swliao70', '2000-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS874514212590', 'Fred Mills', 1, '+86 174-9778-4749', 4, '409667930618340000', '9F, 273 East Wangfujing Street, Dongcheng District , Beijing, China', '1986-02-14', 0, 0, 'mifre67', '2010-04-20', 'millsfr', '2008-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS988218568388', '谭震南', 1, '+1 718-447-5777', 4, '839617008798177582', '651 1st Ave Apt 31, Brooklyn, NY 11220, United States', '1993-04-28', 0, 0, 'tazhen6', '2012-07-18', 'taz04', '2009-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS858549456095', '譚淑怡', 1, '+86 199-2499-6188', 0, '392622044977866500', 'Room 24, 579 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1995-06-01', 0, 0, 'tamsukyee', '2010-07-29', 'tamsukyee1942', '2018-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS081644934799', '斎藤陽太', 0, '+81 3-8090-3556', 4, '242512293095389550', '日本東京渋谷区代々木二丁目3番10号49階', '1992-10-01', 0, 0, 'saito904', '2014-04-22', 'yotas319', '2018-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS302008991414', '溫學友', 1, '+44 7093 713100', 3, '068461154142783347', 'Unit 16, Oxford Eco Centre, 78 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1993-02-20', 0, 0, 'wanhy602', '2000-02-15', 'wan10', '2002-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS368216864205', 'Theresa Edwards', 0, '+1 212-121-5972', 3, '826596029956930623', '54 Fifth Avenue Suite 35, New York, NY 10017, United States', '1989-04-21', 0, 0, 'et1997', '2011-03-10', 'edwtheresa', '2010-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS256646539054', '吉田彩乃', 0, '+86 179-2060-2030', 3, '035862540477904625', '39F, 996 Dong Zhi Men, Dongcheng District, Beijing, China', '1994-01-12', 0, 0, 'yaya', '2013-03-26', 'yoshidaaya1972', '2004-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS634122133685', '高子异', 0, '+86 155-1081-2908', 0, '394068326837826255', 'Room 3, CR Building, 499 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1991-06-22', 0, 0, 'gaoziyi', '2005-05-16', 'ziygao314', '2016-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS139688712455', '遠藤葵', 0, '+86 20-6670-7634', 2, '750919271760409470', 'Room 30, 731 Xiaoping E Rd, Baiyun , Guangzhou, China', '1986-03-23', 0, 0, 'endoaoi1206', '2016-02-23', 'aoi2001', '2001-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS788284299802', '李子异', 0, '+1 212-945-4286', 3, '339892518177013236', '88 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1998-08-04', 0, 0, 'zli', '2004-07-26', 'liziy', '2020-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS693220453755', 'Thomas Boyd', 0, '+81 90-2408-8871', 1, '423279509991694876', '日本東京港区東新橋一丁目5番6号29階', '1996-08-21', 0, 0, 'boyd2', '2018-10-12', 'boyd228', '2012-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS759483082765', '高田紗良', 1, '+44 (1223) 76 7989', 0, '424699512162958750', 'No.9 Main building, 868 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1998-09-14', 0, 0, 'saratak9', '2017-08-30', 'takadsara', '2011-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS581165980072', 'Clarence Shaw', 0, '+86 155-0327-4870', 2, '458047014772759924', 'Room 4, CR Building, 46 Lefeng 6th Rd, Zhongshan, China', '1991-09-12', 0, 0, 'shawclarence', '2008-08-29', 'clarencesh', '2007-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS992544693642', 'Angela Foster', 1, '+81 52-836-5007', 4, '529707480398742910', 'Rm. 16, 2-5-2 Chitose, Atsuta Ward, Nagoya, Japan', '1985-04-28', 0, 0, 'afoster', '2020-05-12', 'fa8', '2008-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS886224200826', '向安娜', 0, '+1 212-143-9917', 0, '164263739298352932', '353 Wooster Street 3rd Floor, New York, NY 10012, United States', '1998-11-13', 0, 0, 'heuonn313', '2018-12-09', 'onheung7', '2013-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS450209462970', '青木百花', 0, '+81 90-0139-6500', 0, '717923550753575488', '日本おおさかし西成区出城一丁目1番2号28階', '1987-05-08', 0, 0, 'ma813', '2010-06-11', 'momoka522', '2014-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS261971103942', '西村涼太', 0, '+86 131-1930-9353', 4, '226078465895594333', '中国上海市徐汇区虹桥路616号46楼', '1993-03-20', 0, 0, 'nishimura914', '2018-02-13', 'ryotanishimura', '2004-10-22'); +INSERT INTO "public"."userinfo" VALUES ('TS646838414745', '駱浩然', 1, '+81 3-5793-3451', 1, '592596634435177446', '日本東京中央区銀座三丁目12番11号39号室', '1997-12-27', 0, 0, 'lohy', '2003-03-02', 'hylok', '2008-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS364575181894', '任詩涵', 1, '+1 212-313-5386', 1, '998122181685609307', '265 West Houston Street Apt 6, New York, NY 10014, United States', '1997-11-15', 0, 0, 'rens', '2022-02-27', 'rsh5', '2010-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS641026868572', 'Lori Powell', 0, '+44 (121) 581 9049', 0, '665525226664781975', 'Unit 18, Oxford Eco Centre, 839 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1985-01-04', 0, 0, 'powelll', '2008-10-11', 'powelllo', '2017-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS747120894927', 'Julia Coleman', 0, '+81 80-4752-5287', 1, '622252390668253133', '50-kai, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-01-13', 0, 0, 'juliacoleman', '2002-02-06', 'jcolem', '2013-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS092759104894', '中島大輔', 0, '+1 213-853-2758', 2, '876395577338229435', '285 S Broadway Apartment 7, Los Angeles, CA 90015, United States', '1990-04-10', 0, 0, 'daisukenakajima', '2005-12-02', 'nakajima2005', '2003-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS704193917458', '雷秀英', 0, '+86 149-7942-4919', 1, '811445623299519897', '中国北京市房山区岳琉路336号华润大厦13室', '1994-04-25', 0, 0, 'leixiu', '2006-07-09', 'xiuyilei', '2007-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS917161759614', 'Frances Garcia', 0, '+86 149-1632-8505', 1, '115123213770429294', '中国深圳福田区深南大道208号16楼', '1987-11-11', 0, 0, 'francesgarc87', '2019-10-25', 'garcifran', '2008-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS062538630562', 'Shawn Hernandez', 1, '+81 80-5964-0222', 3, '835211997839551902', 'Rm. 21, 3-9-8 Gakuenminami, Nara, Japan', '1988-02-03', 0, 0, 'hshawn', '2011-12-28', 'hernandezsha8', '2014-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS419149214530', '王國明', 0, '+86 21-9844-0082', 2, '996199491886416372', '1F, 601 Jianxiang Rd, Pudong, Shanghai, China', '1991-01-06', 0, 0, 'wong6', '2013-08-06', 'wongkwokming', '2005-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS588721152212', 'Phillip Barnes', 1, '+81 66-947-7121', 1, '662630856924364276', '日本おおさかし平野区加美東四丁目9番6号31階', '1994-03-23', 0, 0, 'phillipbarnes', '2003-06-17', 'barnes311', '2013-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS335170721284', '村上彩乃', 1, '+86 769-340-2765', 3, '121162500287931095', 'No.2 building, 954 Shanhu Rd, Dongguan, China', '1998-09-28', 0, 0, 'amurakami69', '2002-08-16', 'murakayan', '2004-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS809241680581', 'Robin Chen', 1, '+86 769-4574-9198', 3, '350169018574052889', '中国东莞珊瑚路469号33楼', '1994-09-06', 0, 0, 'crobi8', '2007-01-20', 'crobin', '2015-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS637806327940', '姚富城', 1, '+86 182-7770-6310', 1, '421977667417532582', '中国广州市白云区小坪东路161号41楼', '1990-09-09', 0, 0, 'yeow6', '2020-12-10', 'yeow206', '2009-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS710757225548', '關嘉欣', 0, '+44 5634 321403', 2, '456579193905466605', 'Flat 11, 445 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1991-06-22', 0, 0, 'kykwan', '2020-07-13', 'kwankaryan', '2021-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS698945884438', 'Josephine Fernandez', 0, '+86 755-410-7292', 3, '123694699621834701', 'No.27 building, 517 Jingtian East 1st St, Futian District, Shenzhen, China', '1991-10-01', 0, 0, 'fernandezjo', '2006-08-01', 'fernandezjo', '2009-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS185633581833', '洪國榮', 0, '+81 80-1788-3669', 4, '591396552214761793', '日本なごやし北区清水三丁目19番5号32階', '1997-04-21', 0, 0, 'hungkw', '2010-10-04', 'kwokwinghung', '2002-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS529528629935', '潘岚', 1, '+81 90-4222-8306', 2, '780781028872124894', 'Rm. 47, 3-19-11 Shimizu, Kita Ward, Nagoya, Japan', '1993-10-08', 0, 0, 'panlan', '2015-06-25', 'lanpan', '2014-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS192093765094', '鄺潤發', 1, '+81 70-7450-4065', 2, '226392247724031033', '日本ならし学園南三丁目9番3号4号室', '1987-02-24', 0, 0, 'kwongyu831', '2009-09-19', 'yunfatkwong', '2001-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS896682771353', '麥俊宇', 0, '+44 7658 845178', 1, '100605768625033309', 'Flat 15, 115 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1987-12-29', 0, 0, 'chunyuma', '2020-12-07', 'mak55', '2021-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS315299714992', '方詩涵', 0, '+81 74-422-9117', 1, '044254339647304316', '日本ならし西大寺赤田町一丁目7番12号19号室', '1996-06-14', 0, 0, 'fangs', '2005-02-19', 'shf', '2009-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS217460138331', '蕭天榮', 1, '+1 838-099-4656', 2, '339012635224752762', '659 Central Avenue Apartment 29, Albany, NY 12206, United States', '1995-06-24', 0, 0, 'tinwing4', '2018-10-24', 'twsiu', '2005-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS304090333967', 'Dorothy Miller', 0, '+86 178-4474-7935', 1, '439299533884019647', '中国北京市西城区复兴门内大街505号华润大厦47室', '1997-12-02', 0, 0, 'dorotmi70', '2009-12-10', 'millerdorothy93', '2002-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS943733262313', 'Phillip Robinson', 0, '+81 66-295-4535', 2, '859977097931850007', '日本おおさかし平野区加美東四丁目9番13号50階', '1986-08-18', 0, 0, 'rphillip', '2008-05-05', 'philrobinson', '2002-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS822051942753', '今井葵', 0, '+81 52-847-1220', 1, '240669078900796518', '日本なごやし熱田区千年二丁目5番1号15号室', '1988-03-03', 0, 0, 'imao', '2005-04-21', 'aoiimai', '2018-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS062946249155', '關心穎', 1, '+81 52-044-4485', 1, '261815341431674880', '日本なごやし熱田区千年二丁目5番13号26号室', '1990-10-01', 0, 0, 'kwansw', '2004-05-12', 'kwansumwing1220', '2005-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS736218784580', '藤永發', 1, '+86 755-577-9088', 4, '872651121451005707', '中国深圳福田区景田东一街766号48楼', '1998-02-19', 0, 0, 'tang2', '2013-02-23', 'tanwingfat', '2013-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS895965840794', 'Lillian Schmidt', 0, '+44 7837 657821', 3, '237566831460497972', 'Flat 36, 642 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-12-10', 0, 0, 'sclillian', '2016-03-07', 'schml', '2017-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS057783082404', 'Francis Mason', 1, '+81 90-1325-6065', 0, '924533490455288367', '日本おおさかし西成区天神ノ森二丁目1番16号38号室', '1998-09-28', 0, 0, 'mason1942', '2012-08-01', 'franmason', '2014-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS547020019895', '石川涼太', 0, '+81 11-518-1644', 2, '222302250382194527', '8F, 6-1-1, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1997-09-02', 0, 0, 'iryota', '2019-01-09', 'rish10', '2008-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS975863623696', 'Jimmy Herrera', 0, '+86 10-094-4253', 1, '677369716029839909', '中国北京市海淀区清河中街68号285号6室', '1993-11-26', 0, 0, 'herrerajimmy', '2010-11-20', 'herrerajimm10', '2019-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS345369138180', '莫子异', 1, '+86 184-3471-5842', 0, '918946221240560424', 'Room 25, 301 Binchuan Rd, Minhang District, Shanghai, China', '1996-04-20', 0, 0, 'mo10', '2004-01-16', 'ziym', '2021-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS118657811015', 'Eric Nelson', 0, '+81 80-3001-0891', 2, '247509711269625746', '日本おおさかし西成区天神ノ森二丁目1番10号32階', '1986-01-11', 0, 0, 'nelsoeric82', '2011-12-03', 'erin4', '2011-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS553356738355', '鐘慧珊', 0, '+86 194-9890-1040', 0, '417653381391173432', '中国北京市朝阳区三里屯路162号华润大厦29室', '1994-06-19', 0, 0, 'wsc', '2002-02-18', 'cws02', '2005-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS937807081070', 'Eugene Price', 1, '+81 3-4861-3620', 1, '352286749468530917', '3F, 5-2-13 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1985-09-29', 0, 0, 'preugene', '2007-11-14', 'eugenepric2', '2010-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS733257061955', '上野美月', 0, '+86 131-8369-2330', 2, '589644541496574194', 'Room 37, CR Building, 612 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1987-11-03', 0, 0, 'uemitsuki', '2007-07-02', 'mitsukiue', '2008-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS099064502229', '顾宇宁', 1, '+86 163-2257-5275', 3, '395975682316994068', 'No.6 building, 834 Middle Huaihai Road, Huangpu District, Shanghai, China', '1989-09-04', 0, 0, 'ygu', '2015-09-03', 'guyu', '2019-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS834008225224', 'Phillip Romero', 0, '+81 11-794-8366', 0, '954828498472617735', '日本札幌厚別区上野幌一条二丁目1番18号19号室', '1988-01-07', 0, 0, 'romerophillip7', '2002-03-11', 'phillipromero', '2016-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS363547530929', 'Donald Gutierrez', 1, '+86 760-285-0104', 0, '132786493502026685', '中国中山京华商圈华夏街372号3栋', '1987-04-30', 0, 0, 'gutierrezdo', '2019-05-29', 'doguti44', '2021-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS288486212143', '中山百花', 1, '+81 70-4852-2808', 4, '701092621989395572', 'Rm. 39, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1987-01-21', 0, 0, 'nakm405', '2011-01-07', 'momoka5', '2011-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS741808920790', '斉藤美月', 1, '+86 149-1488-3248', 3, '392294837272123088', '21F, 230 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1993-10-22', 0, 0, 'saitmit1218', '2016-09-05', 'mitsusai', '2021-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS424134845396', '蘇慧珊', 0, '+44 (161) 639 4085', 0, '411242388997290457', 'No.36 Main building, 101 Mosley St, Manchester, M2 3AQ, United Kingdom', '1997-04-13', 0, 0, 'wss827', '2012-02-09', 'waisan76', '2007-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS133571029113', 'Phillip Brooks', 1, '+86 21-9586-8912', 2, '097752597040699848', 'No.10 building, 209 Hongqiao Rd., Xu Hui District, Shanghai, China', '1993-03-11', 0, 0, 'phillipbrook', '2008-02-14', 'brookp', '2004-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS589098969905', '范岚', 1, '+44 (161) 856 4089', 3, '407932041330612878', 'No.4 Main building, 984 Mosley St, Manchester, M2 3AQ, United Kingdom', '1996-11-15', 0, 0, 'fan59', '2019-11-15', 'lanfan', '2015-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS746911306479', '高家文', 1, '+81 80-8104-2052', 2, '086339660712757853', '日本おおさかし近江堂一丁目7番1号3階', '1988-04-08', 0, 0, 'kaokaman10', '2019-11-29', 'kaoka520', '2000-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS649311713781', 'Willie Hamilton', 0, '+86 137-7340-0888', 0, '863591790964664493', 'No.25 building, 834 Shanhu Rd, Dongguan, China', '1998-11-23', 0, 0, 'hamw', '2017-09-27', 'williehamilton5', '2021-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS094167717176', '成德華', 1, '+86 197-6956-2514', 3, '644447810181487822', '中国成都市成华区二仙桥东三路832号华润大厦17室', '1996-07-27', 0, 0, 'takwah75', '2002-08-01', 'tws10', '2021-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS223135090635', '邱家明', 1, '+1 614-120-7758', 3, '168945834766200204', '908 East Alley Apt 18, Columbus, GA 43201, United States', '1989-07-05', 0, 0, 'kaming3', '2015-06-17', 'yaukaming101', '2009-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS306066824204', 'Pamela Morris', 0, '+44 5006 709495', 0, '197904414681963097', 'Flat 21, 956 Pollen Street, London, W1S 1NG, United Kingdom', '1998-03-24', 0, 0, 'pamelamo', '2001-11-16', 'pamemor4', '2003-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS806915250697', 'Mario Butler', 1, '+86 190-0275-0570', 1, '446900725510305454', '中国北京市西城区复兴门内大街753号15号楼', '1986-01-16', 0, 0, 'butlmario', '2003-06-07', 'mariobutl5', '2001-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS225586371636', 'Florence Murray', 1, '+44 7329 172146', 1, '599696626965108207', 'Flat 40, 608 Mosley St, Manchester, M2 3AQ, United Kingdom', '1986-12-24', 0, 0, 'flomurray', '2019-09-09', 'muflo', '2008-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS440982327392', '常杰宏', 0, '+1 213-159-2137', 3, '661443914372658492', '979 Alameda Street Suite 13, Los Angeles, CA 90002, United States', '1994-06-10', 0, 0, 'jiehchan', '2010-12-24', 'jichang', '2005-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS845282312035', 'Juanita Wells', 1, '+86 182-9492-2384', 2, '430918830758117751', 'No.10 building, 532 Tianhe Road, Tianhe District, Guangzhou, China', '1996-10-27', 0, 0, 'wejuani', '2012-11-06', 'weljuani', '2010-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS591231962353', 'Henry Mendoza', 0, '+81 70-9921-9233', 0, '475840412595268803', '31F, 13-3-4 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-12-16', 0, 0, 'hme2015', '2016-07-24', 'mendoza64', '2000-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS350011550218', '木村和真', 1, '+81 80-0590-3859', 4, '048715536594566906', '日本札幌白石区菊水三条五丁目2番11号46階', '1985-05-13', 0, 0, 'kimukazuma5', '2005-04-25', 'kimurak', '2016-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS113301602882', 'Michael Rodriguez', 0, '+81 11-013-2912', 2, '215124465748117495', 'Rm. 26, 2-1-3 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1987-12-10', 0, 0, 'michael204', '2019-01-24', 'michaelrodriguez', '2013-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS441640926170', '平野舞', 0, '+81 11-570-1166', 1, '449981311154223133', '日本札幌豊平区豊平三条十三丁目3番17号11階', '1998-11-06', 0, 0, 'hiranma3', '2001-06-24', 'hiranom', '2006-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS658518673751', 'Amber Torres', 0, '+44 7752 885803', 3, '452809966574061817', 'Block 7, 797 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1990-07-02', 0, 0, 'tamber5', '2007-02-17', 'ambert910', '2000-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS271240487116', 'Anthony Young', 1, '+86 755-649-5398', 2, '067326881750480016', 'No.10 building, 409 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1994-03-16', 0, 0, 'youanthony', '2013-07-28', 'anthonyy116', '2011-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS380364776688', 'Marie Tran', 0, '+86 141-4280-5114', 1, '444825620783948836', 'Room 23, CR Building, 140 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1993-01-17', 0, 0, 'marietr', '2008-07-09', 'trma1204', '2009-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS035820147321', '叶詩涵', 1, '+86 156-6547-2875', 2, '610999563745547084', 'Room 26, 393 Yueliu Rd, Fangshan District, Beijing, China', '1993-12-02', 0, 0, 'yeshih', '2003-02-10', 'sye', '2013-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS490128343947', '丁子异', 0, '+1 312-755-0843', 0, '426137074731486927', '262 Pedway Apartment 34, Chicago, IL 60601, United States', '1996-06-25', 0, 0, 'dingziyi', '2003-05-22', 'dziyi62', '2000-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS393777106650', '白慧敏', 0, '+81 90-4240-2625', 3, '198085316394930086', 'Rm. 40, 1-6-16, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1998-09-26', 0, 0, 'wmpak511', '2012-12-31', 'waimanpa75', '2020-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS656616561355', '竹内美緒', 0, '+86 755-4572-9910', 3, '596178038040037872', '中国深圳罗湖区田贝一路593号37室', '1988-04-17', 0, 0, 'takmio', '2017-10-07', 'takeuchi7', '2000-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS761098597790', 'Anthony Aguilar', 0, '+1 213-398-1550', 2, '891650797240670263', '868 S Broadway Apt 5, Los Angeles, CA 90015, United States', '1990-03-06', 0, 0, 'aguilar1996', '2019-02-16', 'aguilaran', '2021-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS043707882096', '村田聖子', 1, '+81 11-562-3217', 1, '098152551041712865', '9F, 5-2-20 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1998-03-10', 0, 0, 'semurata14', '2004-05-06', 'seiko77', '2014-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS216557790010', '原大輔', 1, '+1 838-896-0469', 1, '426810238579091907', '139 Lark Street Apt 2, Albany, NY 12210, United States', '1986-12-19', 0, 0, 'daisuhara', '2018-03-28', 'daisukeh4', '2002-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS217066093509', 'Jennifer Jones', 0, '+86 755-470-9556', 4, '583605508652270550', '中国深圳罗湖区蔡屋围深南东路818号4号楼', '1987-04-15', 0, 0, 'jennifer6', '2011-11-17', 'jennifer405', '2013-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS673244384991', 'Lillian Stephens', 0, '+86 173-9502-9317', 3, '957463845157346213', 'Room 46, 924 West Chang''an Avenue, Xicheng District, Beijing, China', '1989-05-28', 0, 0, 'stephenslillian1', '2002-04-30', 'stephlillian', '2001-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS134287550763', '吴安琪', 1, '+1 614-880-5661', 2, '535934798731810299', '40 Diplomacy Drive Suite 42, Columbus, GA 43228, United States', '1994-04-24', 0, 0, 'wanqi', '2009-06-14', 'wu524', '2019-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS833835425514', '内田陸', 1, '+86 21-472-9644', 1, '703486998254930730', '50F, 641 Jianxiang Rd, Pudong, Shanghai, China', '1987-12-28', 0, 0, 'uriku', '2017-09-08', 'rikuuchida60', '2009-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS705087496684', '范杰宏', 1, '+81 90-2887-8052', 3, '747807417785288670', '日本おおさかし平野区加美東四丁目9番14号9階', '1998-03-12', 0, 0, 'fan430', '2019-06-06', 'jiehf', '2009-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS600641698252', '贺睿', 1, '+81 52-740-7836', 1, '156744279711055170', '29F, 3-19-17 Shimizu, Kita Ward, Nagoya, Japan', '1992-12-07', 0, 0, 'he6', '2021-06-29', 'her', '2005-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS663766300744', '譚榮發', 0, '+81 3-8401-0330', 3, '546475733410750837', '日本東京品川区東五反田五丁目2番11号1階', '1995-10-28', 0, 0, 'tamwingfat', '2005-01-20', 'tamwf', '2001-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS489259074098', '莫安琪', 0, '+86 175-9081-7237', 2, '135126600257400169', 'Room 46, 126 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1994-06-18', 0, 0, 'mokon4', '2002-05-25', 'okmok8', '2022-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS190903080479', '苗慧珊', 1, '+81 74-851-7510', 2, '536324468285187507', '日本ならし学園南三丁目9番7号48階', '1986-08-01', 0, 0, 'wsm', '2010-09-21', 'miuws', '2002-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS626496471227', '樂國榮', 1, '+1 330-502-2843', 1, '397224362062142891', '707 Fern Street Apt 38, Akron, OH 44307, United States', '1985-05-29', 0, 0, 'lok6', '2016-05-18', 'kwl603', '2013-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS450253260580', '白惠敏', 0, '+81 52-603-3964', 0, '011729392057152856', '20-kai, 15 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1996-03-04', 0, 0, 'wmpak', '2004-06-10', 'wmpak', '2004-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS643127889954', '杜榮發', 0, '+81 52-066-9449', 3, '636219691945200823', 'Rm. 49, 20 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-08-26', 0, 0, 'towf', '2019-05-02', 'towf', '2016-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS155493801603', '石井光', 1, '+81 11-505-4687', 3, '194400026589171203', 'Rm. 12, 2-1-11 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1995-07-10', 0, 0, 'ihika1119', '2016-08-24', 'hikaru4', '2014-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS186497205130', 'David Myers', 0, '+81 74-539-5052', 3, '003033727164552279', '44F, 1-7-18 Saidaiji Akodacho, Nara, Japan', '1996-04-25', 0, 0, 'mdavi', '2017-04-10', 'davidmyers', '2002-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS221948611046', '鈴木涼太', 1, '+86 130-8669-4638', 1, '454013504006642669', 'No.13 building, 614 Kengmei 15th Alley, Dongguan, China', '1993-11-14', 0, 0, 'suzukiryota', '2015-10-19', 'ryota5', '2001-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS323413177135', 'Ernest Brooks', 1, '+44 (116) 617 3673', 1, '809295630992161728', 'Block 4, 520 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1991-09-19', 0, 0, 'brerne4', '2006-05-07', 'ernest3', '2002-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS867658223607', '安藤大和', 1, '+81 90-5450-1551', 0, '441550374089080264', '日本なごやし守山区瀬古東二丁目171番12号17階', '1998-04-03', 0, 0, 'yamatando', '2017-12-11', 'yamato55', '2000-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS782177358011', '車青雲', 1, '+44 5359 496544', 3, '325595099399075372', 'Block 36, 853 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1993-06-29', 0, 0, 'chiche', '2021-01-13', 'cwch', '2021-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS634169353670', '張發', 0, '+81 90-3164-7855', 3, '368993302323020727', '35-kai, 2-1-14 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1989-12-27', 0, 0, 'fatche', '2015-02-19', 'fat2008', '2014-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS696202567660', '橋本光', 0, '+86 176-7665-5541', 0, '757739834392539124', 'Room 36, CR Building, 287 FuXingMenNei Street, XiCheng District, Beijing, China', '1987-08-04', 0, 0, 'hh719', '2000-05-04', 'hashimotohikaru', '2011-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS626477610256', '邱震南', 0, '+81 3-4619-2602', 1, '077781033824063563', '23F, 1-6-13, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1990-07-08', 0, 0, 'zqiu411', '2012-02-07', 'zhenq', '2003-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS202070854394', 'Connie Hill', 1, '+81 70-5362-5822', 4, '541681824812682461', 'Rm. 35, 3-15-2 Ginza, Chuo-ku, Tokyo, Japan', '1994-09-19', 0, 0, 'hillco', '2022-01-08', 'hill90', '2001-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS215703669832', '黎思妤', 1, '+1 312-804-6241', 3, '374979433646641213', '719 Rush Street Suite 34, Chicago, IL 60611, United States', '1993-07-19', 0, 0, 'syla10', '2008-12-30', 'sylai10', '2011-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS508695362080', '白俊宇', 0, '+86 180-7162-3177', 1, '121380390722576044', '13F, 969 Middle Huaihai Road, Huangpu District, Shanghai, China', '1994-07-06', 0, 0, 'chunyu1972', '2015-11-13', 'chp69', '2016-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS321816496208', '區學友', 0, '+1 838-064-1184', 4, '964277224399757998', '582 Central Avenue Suite 9, Albany, NY 12206, United States', '1985-01-23', 0, 0, 'auhokyau210', '2004-02-16', 'auhy1', '2005-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS931527264578', '車國賢', 1, '+86 10-222-3023', 2, '997354331678619033', '中国北京市房山区岳琉路650号33号楼', '1989-06-13', 0, 0, 'kwokyinche', '2003-10-25', 'ckwokyin', '2009-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS839119044496', 'Luis Adams', 0, '+81 52-723-7232', 0, '285770922530272130', '9-kai, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-05-05', 0, 0, 'adamsluis113', '2009-10-01', 'adamsl', '2002-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS410960798359', '孔岚', 0, '+86 188-5027-7686', 0, '451491990329786640', '44F, 344 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1996-04-17', 0, 0, 'konla49', '2008-07-25', 'kolan1985', '2007-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS437171076513', 'Lawrence Simmons', 0, '+81 70-8023-9997', 1, '989613339580951562', '41-kai, 1-7-5 Omido, Higashiosaka, Osaka, Japan', '1993-10-03', 0, 0, 'lasimmons', '2015-02-13', 'lawrs5', '2013-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS142049680849', '莫國賢', 1, '+81 3-3765-3175', 2, '037322668193837402', '日本東京品川区東五反田五丁目2番3号7階', '1985-09-07', 0, 0, 'mok221', '2009-01-22', 'mokkwokyin', '2015-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS330700303414', '汪詩涵', 0, '+86 142-7279-0879', 3, '102478925218691283', 'No.10 building, 195 Middle Huaihai Road, Huangpu District, Shanghai, China', '1987-12-26', 0, 0, 'wangsh45', '2001-05-02', 'washih221', '2009-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS041083665269', '竹内結翔', 0, '+86 20-661-6083', 0, '650224338142312090', '中国广州市白云区小坪东路707号华润大厦11室', '1994-03-23', 0, 0, 'yuitotak', '2006-06-15', 'takeuyuito', '2013-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS275185356412', '蒋璐', 1, '+81 11-171-3767', 3, '494530552631910228', '日本札幌厚別区上野幌一条二丁目1番16号28階', '1992-11-22', 0, 0, 'jiang3', '2003-02-04', 'jlu1', '2007-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS926545767957', '青木翼', 0, '+81 74-833-3005', 2, '396383676218450646', '日本ならし大和郡山市本庄町一丁目1番18号16階', '1992-04-12', 0, 0, 'tsubasa1126', '2004-07-12', 'aokitsubasa', '2004-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS737117078828', '河野陸', 1, '+44 (1223) 72 1491', 0, '454604529231960692', 'Unit 48, Oxford Eco Centre, 759 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1992-10-01', 0, 0, 'rikkono', '2011-09-15', 'rikukono96', '2011-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS139619918212', '黄璐', 1, '+86 760-5315-0289', 3, '729595051081555318', '19F, 434 Lefeng 6th Rd, Zhongshan, China', '1986-06-20', 0, 0, 'lh403', '2021-04-17', 'huang00', '2001-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS922110010298', '菊地彩乃', 1, '+86 10-1203-5965', 3, '825157817335955026', '中国北京市东城区东单王府井东街508号华润大厦27室', '1992-09-19', 0, 0, 'kikucayan05', '2011-07-06', 'ayanok', '2004-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS005978364215', '宮崎葉月', 1, '+86 185-2905-7625', 3, '552525763363893615', '中国上海市浦东新区橄榄路118号华润大厦35室', '1993-09-10', 0, 0, 'hazukimiyazaki2004', '2019-10-11', 'hazukimi1023', '2016-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS710188575623', '汤安琪', 0, '+44 (151) 645 7504', 0, '397205868833601942', 'No.21 Main building, 868 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1997-09-12', 0, 0, 'tanga', '2002-01-06', 'tangan3', '2009-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS942086757026', '于子异', 0, '+86 196-1816-7379', 3, '452014541043973127', 'Room 13, CR Building, 539 East Wangfujing Street, Dongcheng District , Beijing, China', '1987-10-21', 0, 0, 'yuziy3', '2001-08-10', 'yuziyi', '2004-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS184080574853', '杜震南', 0, '+44 5063 970358', 2, '199116447164786915', 'Block 9, 91 Portland St, Manchester, M1 3LA, United Kingdom', '1995-04-09', 0, 0, 'duz', '2002-09-02', 'zhennd', '2016-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS616725674362', '陳天樂', 1, '+81 90-6548-3498', 0, '374750587131527986', '30-kai, 3-19-19 Shimizu, Kita Ward, Nagoya, Japan', '1990-08-06', 0, 0, 'ctinlok', '2021-05-24', 'chtinlok', '2021-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS177421218995', 'Anne Fox', 1, '+81 52-124-7591', 1, '325330708218892613', '日本なごやし熱田区千年二丁目5番18号12号室', '1985-06-09', 0, 0, 'annefox411', '2005-05-12', 'foxanne', '2001-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS819872701544', '佐野光', 0, '+1 212-359-1910', 0, '524061777671833031', '832 Wooster Street 3rd Floor, New York, NY 10012, United States', '1985-12-25', 0, 0, 'sanohikar', '2012-05-21', 'sanohikaru1', '2010-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS111751480984', '遠藤大輔', 0, '+81 74-439-5216', 0, '115933323058976206', 'Rm. 46, 3-9-17 Gakuenminami, Nara, Japan', '1991-05-13', 0, 0, 'de14', '2003-06-16', 'daen', '2005-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS373406418403', '马子异', 1, '+81 3-6047-4253', 4, '714387702125104904', '日本東京品川区東五反田五丁目2番17号48階', '1996-04-22', 0, 0, 'zm324', '2009-09-25', 'maziyi', '2015-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS027147064615', '市川一輝', 1, '+86 769-4894-9133', 2, '615430936104873924', '44F, 470 Dongtai 5th St, Dongguan, China', '1986-10-31', 0, 0, 'ichikki', '2017-12-05', 'iikki', '2009-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS050445743957', '文明詩', 1, '+86 10-254-2193', 1, '219511489883535844', '中国北京市海淀区清河中街68号572号华润大厦16室', '1993-03-30', 0, 0, 'mingsze309', '2002-08-19', 'manmingsze', '2020-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS480880527899', '梅詠詩', 1, '+44 (161) 991 9138', 3, '917734239665429908', 'Unit 1, Oxford Eco Centre, 720 Sackville St, Manchester, M1 3BB, United Kingdom', '1985-07-14', 0, 0, 'muiws', '2017-09-26', 'muwingsze', '2017-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS201512241620', '石井蒼士', 0, '+81 70-0688-5582', 2, '125914684697119674', '29-kai, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1989-06-05', 0, 0, 'aishii1228', '2011-10-27', 'aosishii', '2005-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS605329602015', '廖學友', 1, '+44 (1223) 63 1198', 2, '851735412939204099', 'No.14 Main building, 794 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1991-12-14', 0, 0, 'liao10', '2017-06-24', 'hokyaulia', '2004-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS984815395219', '坂本玲奈', 0, '+81 11-942-4448', 3, '385867000494440124', '日本札幌白石区菊水三条五丁目4番3号33階', '1986-03-24', 0, 0, 'renasakamoto', '2021-10-22', 'sakamotor802', '2013-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS363938916660', '陈致远', 0, '+81 80-6033-7681', 2, '074185067339942270', '日本ならし西大寺赤田町一丁目7番3号40階', '1990-03-07', 0, 0, 'chenzhiyuan601', '2000-05-21', 'chenzhiyuan', '2015-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS617815265282', '伍永權', 0, '+1 213-152-7015', 1, '979654969656949379', '739 Figueroa Street Apt 25, Los Angeles, CA 90037, United States', '1994-03-04', 0, 0, 'ng90', '2004-11-29', 'wkng', '2019-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS028781089121', '曹國權', 0, '+81 80-3816-2866', 0, '866739476594601477', '日本ならし西大寺赤田町一丁目7番2号30号室', '1987-08-09', 0, 0, 'kwokkuen90', '2001-02-28', 'chokk', '2008-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS549255544885', '田富城', 1, '+81 52-748-8184', 1, '770164358194641937', 'Rm. 35, 3-19-3 Shimizu, Kita Ward, Nagoya, Japan', '1989-06-01', 0, 0, 'fushingtin6', '2003-11-11', 'tinfs4', '2019-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS800279959575', '横山大和', 0, '+86 755-8274-9860', 1, '180274106994039209', 'No.33 building, 969 Shennan Ave, Futian District, Shenzhen, China', '1991-08-04', 0, 0, 'yokyama1219', '2018-11-12', 'yy1', '2018-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS748960604079', '長谷川美月', 0, '+81 70-8299-0745', 2, '735528285340469427', '日本なごやし北区清水三丁目19番10号46階', '1992-01-30', 0, 0, 'mitshaseg202', '2016-03-19', 'hasegawamitsuki', '2021-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS010489735375', '中森陸', 0, '+81 70-6480-3362', 3, '176038617304351121', '日本なごやし熱田区千年二丁目5番10号4号室', '1985-07-17', 0, 0, 'riku2', '2006-03-22', 'rikunak115', '2011-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS147510867282', '成明詩', 1, '+1 330-964-5030', 0, '610763984526942651', '14 Collier Road 3rd Floor, Akron, OH 44320, United States', '1986-11-22', 0, 0, 'shingmingsze904', '2018-05-05', 'shingms', '2001-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS548724509217', '段致远', 1, '+86 21-8313-4093', 4, '838440203995268990', 'No.29 building, 663 Jianxiang Rd, Pudong, Shanghai, China', '1994-07-02', 0, 0, 'duanz', '2002-12-25', 'duan1958', '2000-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS050766437377', '駱梓軒', 1, '+86 170-5882-7258', 0, '947864874592953956', '中国上海市浦东新区健祥路426号华润大厦34室', '1985-05-22', 0, 0, 'thlo', '2019-02-26', 'thl69', '2013-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS158540750602', '岡田光莉', 0, '+44 5436 854534', 2, '203439434320064234', 'Unit 49, Oxford Eco Centre, 925 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1992-01-11', 0, 0, 'okadahikari', '2003-08-02', 'okadahikari110', '2016-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS930490217277', 'Norma Garcia', 0, '+81 90-9178-9518', 1, '684817115163674984', '40F, 2-5-18 Chitose, Atsuta Ward, Nagoya, Japan', '1993-07-23', 0, 0, 'normagar', '2018-09-06', 'norma916', '2020-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS959444034242', '伍詩君', 0, '+86 28-687-9047', 3, '441439042506588932', 'No.3 building, 477 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1994-04-25', 0, 0, 'ngsze2', '2021-11-23', 'nsk75', '2002-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS219937068974', '郭岚', 1, '+86 167-0123-6571', 1, '299559403302043881', 'Room 47, 278 Shanhu Rd, Dongguan, China', '1992-10-09', 0, 0, 'guolan91', '2021-03-29', 'guol', '2007-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS328614565621', '常秀英', 0, '+86 193-6457-7029', 3, '718571659724748452', '33F, 669 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1994-11-08', 0, 0, 'changx', '2000-11-06', 'changx', '2017-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS764362577480', 'Louis Mendez', 0, '+1 213-983-5312', 1, '998514953288104895', '899 Figueroa Street Apt 9, Los Angeles, CA 90037, United States', '1992-10-28', 0, 0, 'loum86', '2020-09-21', 'ml1220', '2020-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS671826729951', '卢璐', 1, '+1 614-236-6243', 0, '763970203506695584', '300 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1990-02-03', 0, 0, 'lulu', '2013-02-28', 'lul55', '2006-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS861817612614', '梅青雲', 0, '+1 212-451-8497', 2, '622463073730361077', '344 Bank Street 3rd Floor, New York, NY 10014, United States', '1989-10-01', 0, 0, 'mchingwan', '2005-03-02', 'cwmui', '2015-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS680253486205', 'Eric Bailey', 0, '+44 (1865) 17 9422', 4, '580006490993597390', 'Unit 43, Oxford Eco Centre, 362 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1997-02-25', 0, 0, 'bailey219', '2000-06-07', 'bailey3', '2020-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS906986422140', 'Katherine Hamilton', 0, '+86 159-8603-7020', 2, '744364843514316452', 'Room 4, 581 Ganlan Rd, Pudong, Shanghai, China', '1986-04-17', 0, 0, 'hamkathe531', '2016-12-03', 'khamilton803', '2020-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS030065826632', 'Heather Harris', 0, '+86 769-1468-7387', 4, '821092433610531936', '中国东莞坑美十五巷459号35号楼', '1991-07-20', 0, 0, 'heathharris', '2001-06-16', 'harhe40', '2015-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS909395237540', 'Ronald Robertson', 1, '+44 5541 872692', 2, '290024402825071723', 'Flat 9, 331 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1997-08-26', 0, 0, 'rr1', '2005-06-10', 'roberronald', '2016-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS281648147810', '石震南', 1, '+1 838-266-0735', 2, '354012304818817015', '149 State Street Apt 3, Albany, NY 12203, United States', '1985-10-14', 0, 0, 'zshi611', '2014-06-07', 'shizhennan628', '2004-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS629548641116', 'Fred Patterson', 0, '+81 66-612-6727', 0, '688047689070279121', '14-kai, 2-1-9 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1991-01-13', 0, 0, 'fred1950', '2014-02-08', 'pattersonfr48', '2013-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS841802211273', '江榮發', 0, '+81 80-8157-0807', 2, '045010638490602641', '36F, 4 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1987-03-18', 0, 0, 'wingfatkon113', '2019-06-26', 'kongwingfat4', '2012-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS710393685104', 'Peter Gray', 0, '+44 (1223) 79 1967', 1, '678420234236648622', 'Block 36, 318 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1993-01-09', 0, 0, 'gray1003', '2020-10-03', 'pgray', '2001-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS152255208805', '袁嘉伦', 1, '+81 80-3599-4709', 3, '328665415826261835', '35-kai, 5-2-15 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1994-09-02', 0, 0, 'jialuyuan', '2014-05-22', 'yuajialu', '2017-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS635581327271', '钟震南', 0, '+44 (151) 943 1790', 3, '093698448482276602', 'No.28 Main building, 424 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1990-03-18', 0, 0, 'zhong51', '2008-08-31', 'zhenzhong', '2012-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS846412227780', '杨詩涵', 1, '+44 5795 012359', 3, '477640182553816605', 'Unit 46, Oxford Eco Centre, 242 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1996-12-05', 0, 0, 'shihayang', '2001-02-14', 'shihanya', '2008-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS047655249565', 'Wanda Harrison', 0, '+1 838-019-8477', 1, '896256894998653885', '464 Lark Street Apartment 20, Albany, NY 12210, United States', '1994-06-11', 0, 0, 'harrwanda1979', '2010-11-25', 'wanh', '2008-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS468341312172', '赵致远', 1, '+44 5123 625949', 1, '094934595340908164', 'Unit 21, Oxford Eco Centre, 991 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1986-09-17', 0, 0, 'zhizhao', '2006-01-27', 'zhiyuzhao4', '2014-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS133145659817', '鐘頴璇', 0, '+44 5031 532060', 1, '654655846576208880', 'No.40 Main building, 894 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1986-06-06', 0, 0, 'chungws', '2013-12-03', 'chungws', '2000-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS954792513397', '阿部光莉', 0, '+86 164-0868-8787', 1, '560515523054992493', 'Room 38, 902 Xiaoping E Rd, Baiyun , Guangzhou, China', '1986-07-03', 0, 0, 'hikari7', '2021-09-06', 'ahikari', '2008-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS296187976980', '许晓明', 1, '+86 181-4186-7489', 3, '266986613852660119', '中国东莞坑美十五巷826号24栋', '1991-10-12', 0, 0, 'xiaoming1', '2000-07-15', 'xu3', '2022-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS803220991823', '柴田葵', 1, '+81 74-833-6243', 2, '946068918342836268', '日本ならし学園南三丁目9番17号17階', '1990-12-31', 0, 0, 'aoshibata', '2007-09-08', 'aoish', '2000-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS625802390414', '金子詩乃', 1, '+81 74-284-3328', 2, '770070123577789558', '日本ならし大和郡山市本庄町一丁目1番10号44号室', '1991-10-17', 0, 0, 'kanekoshino', '2013-06-22', 'kaneko8', '2012-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS275667342923', '谷口瑛太', 1, '+86 769-035-9021', 2, '001325934004937329', 'Room 15, CR Building, 39 Kengmei 15th Alley, Dongguan, China', '1995-05-31', 0, 0, 'taniguchieita', '2006-08-21', 'taniguchi9', '2009-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS663839693142', '小林蓮', 1, '+86 135-9421-4689', 2, '532630708870072396', '42F, 531 East Wangfujing Street, Dongcheng District , Beijing, China', '1986-11-13', 0, 0, 'renkobayashi', '2008-11-06', 'ren49', '2009-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS529901962089', 'Kenneth Diaz', 1, '+81 80-5282-5856', 4, '838941931173157055', '日本東京中央区銀座三丁目12番1号10階', '1991-10-31', 0, 0, 'diaz4', '2007-12-28', 'diazken', '2017-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS779653450378', '韓惠敏', 0, '+81 3-7954-3102', 1, '221932352178302060', '日本東京品川区東五反田五丁目2番18号34号室', '1986-04-28', 0, 0, 'waimanh3', '2015-01-23', 'wmha74', '2006-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS165510777294', '前田百花', 1, '+86 21-6834-8421', 0, '531765515048791297', '中国上海市闵行区宾川路785号华润大厦39室', '1990-11-02', 0, 0, 'mmomoka', '2002-02-15', 'maedamomoka45', '2004-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS178104212450', '赵云熙', 0, '+44 5047 739495', 3, '983823061360150470', 'Flat 18, 72 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1988-05-11', 0, 0, 'zhao1985', '2013-08-05', 'yunxizhao', '2020-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS599014639142', '大野聖子', 0, '+86 20-7318-2083', 2, '204916609428787723', '中国广州市天河区天河路887号47楼', '1992-11-19', 0, 0, 'sono5', '2014-06-20', 'oseiko', '2019-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS059113966915', '馮秀文', 1, '+44 5288 453967', 4, '047517017864002393', 'Unit 4, Oxford Eco Centre, 354 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1987-02-02', 0, 0, 'fungsm1106', '2012-08-31', 'saumanfung', '2003-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS350316271846', '大塚葉月', 1, '+1 330-135-4277', 3, '635663196505452432', '879 Fern Street Suite 33, Akron, OH 44307, United States', '1993-01-19', 0, 0, 'otsukah6', '2001-06-24', 'otsuka211', '2007-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS347269365448', '高橋架純', 1, '+86 167-3590-8309', 1, '974970229043192966', '中国成都市锦江区红星路三段15号华润大厦47室', '1993-12-05', 0, 0, 'takahashikasu', '2003-04-02', 'takahashika', '2007-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS629964128586', 'Charles Munoz', 0, '+86 196-1424-3953', 4, '406892832405522971', '中国上海市浦东新区橄榄路401号9楼', '1995-06-11', 0, 0, 'charles306', '2018-11-26', 'charlesmunoz', '2002-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS579879797667', '侯致远', 0, '+81 74-157-6392', 3, '840771154183713660', 'Rm. 10, 3-9-14 Gakuenminami, Nara, Japan', '1990-11-27', 0, 0, 'zhou9', '2002-12-08', 'zhiyuanh', '2016-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS696092247100', '松本玲奈', 1, '+1 212-788-8113', 3, '689850228672497895', '758 Bank Street Apt 29, New York, NY 10014, United States', '1991-02-04', 0, 0, 'matsumoto619', '2020-10-20', 'rena41', '2018-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS492761007532', '内田美月', 1, '+1 312-139-7775', 1, '922168661440634812', '828 North Michigan Ave Apt 19, Chicago, IL 60611, United States', '1992-08-01', 0, 0, 'umitsuki', '2000-10-28', 'uchida5', '2002-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS778238541551', '彭睿', 1, '+86 755-3568-6397', 3, '338922204384272800', 'Room 50, CR Building, 91 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1985-09-01', 0, 0, 'per', '2016-05-22', 'peng5', '2014-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS084714874463', '廖子异', 1, '+81 52-799-1447', 3, '241023437175474561', '31-kai, 7 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-01-04', 0, 0, 'ziliao', '2006-09-26', 'ziliao98', '2011-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS350003465696', '李睿', 1, '+44 (116) 151 7209', 1, '443008330516643169', 'Block 8, 74 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-04-07', 0, 0, 'rul6', '2012-02-19', 'ruli', '2005-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS718402713030', '林淑怡', 0, '+81 66-389-4043', 3, '983515727930736826', '30-kai, 1-1-8 Deshiro, Nishinari Ward, Osaka, Japan', '1997-03-23', 0, 0, 'lamsy10', '2011-02-04', 'lamsy', '2014-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS075677555885', '马晓明', 0, '+86 10-0194-0875', 3, '922292488726951850', '中国北京市东城区东单王府井东街145号华润大厦15室', '1989-03-31', 0, 0, 'maxi', '2010-03-13', 'max', '2009-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS354664496695', '阮慧儀', 0, '+1 312-080-1241', 3, '851146959146084073', '242 Rush Street Apt 14, Chicago, IL 60611, United States', '1996-12-12', 0, 0, 'ywy923', '2002-04-10', 'waiyeey', '2010-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS218325402577', '张璐', 1, '+1 213-033-4644', 2, '270693165348515702', '943 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1985-08-03', 0, 0, 'zhanglu', '2010-08-19', 'lzhang', '2012-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS995154593953', '雷惠敏', 1, '+81 74-140-4624', 3, '874040169474704144', 'Rm. 47, 3-9-2 Gakuenminami, Nara, Japan', '1992-02-11', 0, 0, 'louwm', '2016-03-09', 'wml1986', '2014-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS845022048397', '木下彩乃', 0, '+44 5040 829112', 3, '338124104270644779', 'Block 13, 906 New Street, Birmingham, B2 4DB, United Kingdom', '1994-04-24', 0, 0, 'ayanokino', '2015-11-12', 'kinoshitaayano07', '2002-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS191618350085', '朱世榮', 0, '+86 168-7947-7677', 3, '080075115306492674', '中国上海市浦东新区橄榄路207号4栋', '1988-12-03', 0, 0, 'chsaiwing10', '2021-04-21', 'chusw', '2001-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS238682363638', 'Norma Stephens', 0, '+44 7165 279255', 3, '461641435986878926', 'Block 38, 286 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1985-02-17', 0, 0, 'normastephens6', '2015-05-09', 'stephensnorma', '2009-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS261205690132', '邵仲賢', 0, '+86 28-073-3631', 3, '893096965789257288', 'No.3 building, No. 258, Shuangqing Rd, Chenghua District, Chengdu, China', '1996-04-03', 0, 0, 'chungyinsiu', '2001-02-23', 'sicy619', '2010-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS299173868450', '谷秀文', 0, '+81 90-2021-0634', 1, '571423501840119888', 'Rm. 10, 3-9-9 Gakuenminami, Nara, Japan', '1995-12-27', 0, 0, 'koosauman', '2015-12-11', 'sauman710', '2009-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS504871600760', '胡嘉伦', 1, '+1 213-484-0233', 3, '638961138664704945', '633 Wall Street Suite 14, Los Angeles, CA 90003, United States', '1985-06-28', 0, 0, 'jh918', '2010-02-10', 'hujial', '2001-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS467684075154', '姚永權', 0, '+1 614-578-7782', 1, '822591525081247015', '287 Diplomacy Drive Apt 39, Columbus, GA 43228, United States', '1987-05-27', 0, 0, 'wkyeow8', '2015-06-18', 'yeowwingkuen', '2022-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS572897933894', '清水結翔', 0, '+86 10-4826-0508', 1, '160071124577302015', 'Room 24, CR Building, 942 028 County Rd, Yanqing District, Beijing, China', '1988-11-18', 0, 0, 'yuitshim', '2020-11-20', 'yuito3', '2002-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS123101035791', '范宇宁', 0, '+44 5376 745520', 3, '674881839332948383', 'Flat 14, 422 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1989-10-27', 0, 0, 'fan609', '2013-10-09', 'fayuning2', '2008-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS518234595481', 'Alexander Cox', 0, '+44 7053 965855', 0, '885065620890826294', 'Flat 39, 936 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1998-10-29', 0, 0, 'alexaco', '2017-04-11', 'cox10', '2010-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS878503844739', 'Brandon Russell', 0, '+81 66-189-5502', 1, '273351064896376001', '日本おおさかし平野区加美東四丁目9番12号11号室', '1990-09-14', 0, 0, 'brandon7', '2008-05-18', 'brandon08', '2002-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS342301322957', '桜井陽太', 0, '+86 769-7621-9888', 1, '501819064038029409', '中国东莞环区南街二巷774号38栋', '1994-11-29', 0, 0, 'yotsak', '2010-11-02', 'sakyota1111', '2018-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS094340427503', '熊子韬', 1, '+86 196-5014-4801', 1, '665453903582778676', '中国深圳罗湖区蔡屋围深南东路767号16栋', '1985-02-07', 0, 0, 'zitao88', '2001-08-09', 'zitaxio', '2005-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS454164645084', '郭子异', 1, '+81 80-9158-0789', 2, '651038127170845143', 'Rm. 32, 5-4-16 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1994-05-31', 0, 0, 'ziygu4', '2021-09-23', 'zgu111', '2000-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS164753795875', 'Barbara Freeman', 1, '+1 718-677-7530', 4, '353520852447918567', '791 1st Ave Suite 7, Brooklyn, NY 11220, United States', '1992-06-25', 0, 0, 'freemanbarbara', '2015-07-02', 'freb3', '2015-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS819507698627', 'Margaret Hamilton', 1, '+44 5835 158145', 1, '811574126806702125', 'Block 36, 138 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-02-25', 0, 0, 'marghamilton', '2016-12-10', 'mhami', '2018-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS950874404183', 'Danielle Holmes', 0, '+86 195-0674-5411', 3, '082570254994128642', '中国广州市白云区小坪东路563号8室', '1997-03-22', 0, 0, 'hdanie', '2012-07-09', 'holmesda5', '2009-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS602865032049', '木下百花', 1, '+1 312-979-6870', 0, '217145963581486899', '331 Pedway 3rd Floor, Chicago, IL 60601, United States', '1998-07-07', 0, 0, 'momokakinos2004', '2013-05-06', 'momoka428', '2007-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS226830798323', '高云熙', 1, '+1 330-653-3454', 0, '562419784618563462', '424 Riverview Road Apartment 7, Akron, OH 44313, United States', '1995-10-13', 0, 0, 'yuga', '2011-01-02', 'gyunxi301', '2017-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS296309766515', '江嘉伦', 0, '+86 755-7408-0419', 4, '852743727138618222', '中国深圳罗湖区田贝一路745号华润大厦9室', '1992-04-11', 0, 0, 'jiang5', '2015-10-26', 'jjiang', '2013-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS636475255211', '林大輔', 0, '+86 131-2691-2510', 3, '354677797973978223', 'Room 34, 632 Dong Zhi Men, Dongcheng District, Beijing, China', '1995-03-12', 0, 0, 'daish92', '2017-02-03', 'hayd', '2019-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS731303732860', 'Crystal Scott', 1, '+86 769-0336-6805', 3, '897907589733162016', '中国东莞坑美十五巷407号35栋', '1995-05-12', 0, 0, 'sc1', '2006-05-19', 'crystscott', '2001-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS881537422657', '于杰宏', 1, '+86 188-3796-1345', 0, '517699548373251366', 'Room 46, 276 Huanqu South Street 2nd Alley, Dongguan, China', '1998-11-13', 0, 0, 'jiehong02', '2002-04-04', 'jiyu', '2020-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS892665985957', '钟子异', 0, '+86 760-128-1355', 3, '665979910778788510', '10F, 399 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1986-02-22', 0, 0, 'zhzi719', '2008-12-03', 'zhoziy2', '2018-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS095048737913', 'Christopher Cruz', 0, '+86 769-7688-0103', 4, '291679128199169935', '39F, 89 Shanhu Rd, Dongguan, China', '1989-06-05', 0, 0, 'cruz727', '2005-03-10', 'ccruz', '2021-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS376011603138', 'Allen Parker', 1, '+86 10-336-9436', 0, '681504103655804880', '中国北京市海淀区清河中街68号504号31室', '1987-11-07', 0, 0, 'allen4', '2022-03-05', 'parkall', '2011-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS503866160408', '洪德華', 0, '+86 10-541-8037', 4, '100260680084597068', '15F, 648 FuXingMenNei Street, XiCheng District, Beijing, China', '1990-05-09', 0, 0, 'hungtakwah301', '2013-04-25', 'twhun', '2009-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS406372344431', 'Danny Russell', 0, '+1 213-671-6701', 1, '162320708576246822', '475 Sky Way 3rd Floor, Los Angeles, CA 90043, United States', '1987-12-22', 0, 0, 'dannyru', '2002-05-23', 'russelldanny423', '2000-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS270186988976', '蔡嘉伦', 1, '+81 80-0433-9961', 2, '825909990460319894', 'Rm. 38, 5-19-3 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1994-01-13', 0, 0, 'cai719', '2017-08-10', 'jialuncai', '2006-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS242987439286', 'Susan Marshall', 1, '+81 11-544-1367', 1, '934427226593419234', '日本札幌白石区菊水三条五丁目2番20号9階', '1989-04-30', 0, 0, 'susanmars917', '2014-08-17', 'susm', '2009-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS023789167457', '陳安娜', 1, '+81 52-367-8592', 2, '299624449652192515', '日本なごやし瑞穂区河岸町四丁目20番10号11階', '1987-06-03', 0, 0, 'chan3', '2007-07-24', 'onchan', '2021-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS166034222990', '容國權', 0, '+81 74-075-9448', 2, '097775526426738487', '6-kai, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1993-03-31', 0, 0, 'kky', '2012-05-15', 'yukk110', '2016-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS291320093563', '朱子韬', 0, '+81 52-810-3548', 2, '673988435153470482', '1-kai, 13 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-12-29', 0, 0, 'zhu10', '2018-02-21', 'zizhu', '2005-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS522449936754', 'Chris Bell', 1, '+86 189-1650-9419', 2, '989425251764886273', '中国上海市闵行区宾川路944号30楼', '1987-04-24', 0, 0, 'bell1', '2015-08-14', 'chris7', '2013-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS795739330539', '杜家強', 1, '+1 330-596-6636', 1, '737054915153842403', '966 Riverview Road Suite 22, Akron, OH 44313, United States', '1988-06-06', 0, 0, 'to6', '2005-08-05', 'tokk4', '2001-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS804711712045', '邱秀英', 0, '+1 213-125-4326', 3, '059476365659680785', '40 Sky Way Suite 17, Los Angeles, CA 90043, United States', '1988-11-21', 0, 0, 'xq928', '2006-08-05', 'qiuxiuying', '2017-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS582097180504', '馮朝偉', 0, '+86 167-8358-1806', 2, '444977370499401343', 'Room 3, 781 028 County Rd, Yanqing District, Beijing, China', '1993-02-19', 0, 0, 'fung2', '2003-05-20', 'chiuwaifung', '2000-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS063203109039', '孔睿', 0, '+1 330-964-8458', 1, '912190572342231471', '205 Fern Street Apartment 7, Akron, OH 44307, United States', '1985-02-23', 0, 0, 'kongru', '2020-09-12', 'kongrui', '2000-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS931913857371', 'Evelyn Robinson', 1, '+1 614-613-7113', 2, '839169141039324969', '246 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1998-04-08', 0, 0, 'evelyn414', '2006-11-14', 'erobin', '2004-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS676275846744', '増田蓮', 1, '+44 (151) 989 3509', 0, '894254494940974850', 'Unit 33, Oxford Eco Centre, 887 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1998-05-02', 0, 0, 'renm', '2015-03-29', 'masuren', '2013-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS252294328718', 'Gregory Gardner', 1, '+44 (121) 055 3126', 2, '911781883442754143', 'Unit 27, Oxford Eco Centre, 542 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1986-11-17', 0, 0, 'gregory1955', '2016-01-30', 'gardnergrego', '2008-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS693797287818', '任震南', 1, '+44 5368 951234', 3, '793997619726767094', 'Block 15, 329 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1985-04-18', 0, 0, 'zhennan306', '2008-10-27', 'zhere', '2000-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS003595365639', '曹霆鋒', 0, '+81 90-7097-8785', 2, '250982248935895752', 'Rm. 42, 1-7-18 Saidaiji Akodacho, Nara, Japan', '1994-11-04', 0, 0, 'ctingfung', '2016-04-13', 'tingfungcho1956', '2009-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS035978118867', '戚頴思', 0, '+86 156-9592-4409', 0, '728286255664445295', '中国上海市浦东新区橄榄路832号19栋', '1990-11-10', 0, 0, 'wingsze2', '2005-07-26', 'wingszec1014', '2001-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS916067911525', 'Ellen Bennett', 1, '+1 312-367-5467', 2, '563004465646225134', '24 Rush Street Apt 20, Chicago, IL 60611, United States', '1995-04-08', 0, 0, 'ellen52', '2014-05-05', 'bellen', '2012-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS745611680802', '戚慧敏', 1, '+81 80-7609-2387', 1, '422243261178318963', '日本札幌白石区菊水三条五丁目2番3号37階', '1997-05-11', 0, 0, 'chic78', '2017-12-14', 'chicwm', '2002-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS272321647703', '文家文', 0, '+44 7372 133347', 1, '259603001407192111', 'Unit 14, Oxford Eco Centre, 394 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1993-12-06', 0, 0, 'kam', '2000-07-07', 'kmman', '2020-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS522709163168', '中野翼', 1, '+1 212-473-5047', 3, '971880025759610339', '790 Bank Street Apartment 42, New York, NY 10014, United States', '1994-06-10', 0, 0, 'nakanotsuba2', '2003-10-21', 'nakano9', '2011-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS745665419681', '上野拓哉', 1, '+81 90-8746-1557', 1, '683084313389790356', '3F, 6-1-13, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1995-05-30', 0, 0, 'takuya6', '2010-10-29', 'ueno828', '2017-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS688604088246', '菅原七海', 1, '+81 52-033-0301', 3, '937825285700845919', '日本なごやし熱田区千年二丁目5番10号34階', '1991-11-28', 0, 0, 'nanami7', '2012-09-24', 'nsugawara', '2003-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS042066028438', 'Theresa Payne', 0, '+1 838-967-2623', 3, '483752193118908743', '201 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1989-07-18', 0, 0, 'paynether1116', '2000-01-24', 'paynetheresa2', '2011-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS232693110972', '清水葉月', 1, '+1 330-482-7938', 1, '496860703607242915', '98 Fern Street Apartment 46, Akron, OH 44307, United States', '1988-03-19', 0, 0, 'shimizuhazuki', '2002-04-04', 'shimizu17', '2008-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS933290090786', 'Juan Sullivan', 1, '+81 70-7403-7870', 4, '193974151975640739', '38-kai, 2-3-11 Yoyogi, Shibuya-ku, Tokyo, Japan', '1988-08-23', 0, 0, 'sulj617', '2009-08-12', 'sullivan44', '2012-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS829455823477', '官天樂', 1, '+81 66-925-2885', 0, '878525710302684893', '日本おおさかし西成区天神ノ森二丁目1番8号28階', '1985-05-16', 0, 0, 'koontl', '2019-01-15', 'koonti14', '2003-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS936114374389', '汤子韬', 1, '+81 70-0370-8538', 2, '122140032605867315', '日本おおさかし近江堂一丁目7番16号28階', '1987-08-09', 0, 0, 'zitao4', '2015-02-16', 'tang14', '2013-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS361364271042', '陶淑怡', 1, '+81 52-753-2051', 1, '710964815706699590', '日本なごやし北区清水三丁目19番20号27階', '1995-11-17', 0, 0, 'sytao1', '2007-01-06', 'tasu', '2013-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS226385764462', '藤惠妹', 0, '+81 52-688-2342', 3, '656440793217575064', '25-kai, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-05-17', 0, 0, 'huimeitang', '2014-06-17', 'huimeita9', '2010-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS842545977414', 'Brenda Stephens', 1, '+1 330-724-1909', 0, '917327576948783156', '699 Collier Road Apartment 31, Akron, OH 44320, United States', '1986-06-19', 0, 0, 'stephens2', '2010-10-01', 'brendastephens', '2004-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS694615179344', '田中花', 1, '+86 168-5825-3902', 0, '346824218402731381', '2F, 481 028 County Rd, Yanqing District, Beijing, China', '1994-07-10', 0, 0, 'hanatana316', '2019-02-26', 'hanatan210', '2017-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS560634167785', 'Nicholas Carter', 1, '+86 760-184-5385', 4, '660387689049206526', '中国中山乐丰六路38号48栋', '1990-07-17', 0, 0, 'carn10', '2019-01-11', 'nicholascarter', '2010-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS990640661148', 'Elizabeth Owens', 0, '+81 90-3011-4954', 3, '267620505719931217', 'Rm. 44, 2-5-13 Chitose, Atsuta Ward, Nagoya, Japan', '1987-08-31', 0, 0, 'elowens', '2014-04-16', 'oe8', '2014-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS085435680271', '汪岚', 0, '+86 163-0514-3268', 2, '754941542650679925', '中国深圳龙岗区学园一巷215号7楼', '1988-01-01', 0, 0, 'lawan', '2013-05-16', 'wlan', '2003-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS637763086065', '崔榮發', 0, '+86 769-900-3268', 3, '922909791319223267', '中国东莞坑美十五巷712号40室', '1990-06-12', 0, 0, 'wfchoi2007', '2007-06-19', 'chwingfat', '2015-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS725438078356', '江晓明', 1, '+86 161-9550-7872', 2, '531879498889183046', 'No.4 building, 435 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1994-01-01', 0, 0, 'jiang20', '2011-01-12', 'xiaomingjiang1943', '2013-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS567629897103', '小林花', 1, '+44 (20) 2900 6413', 4, '163330734337228633', 'Block 20, 148 Maddox Street, London, W1S 1PU, United Kingdom', '1988-08-31', 0, 0, 'kobayashi7', '2015-09-23', 'hana3', '2009-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS247103093737', '于震南', 1, '+86 20-767-7628', 2, '678338602057456815', '中国广州市白云区机场路棠苑街五巷8号15楼', '1989-06-24', 0, 0, 'zhenyu', '2005-07-02', 'yuz', '2018-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS146106102584', '黃力申', 1, '+44 5371 892378', 3, '215877957698906462', 'Block 14, 436 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1994-04-08', 0, 0, 'lswong209', '2020-08-02', 'likswong', '2001-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS089483658927', 'Clarence Jackson', 1, '+44 (121) 291 8515', 2, '806206007763124242', 'No.41 Main building, 472 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1998-06-11', 0, 0, 'jacksc6', '2020-08-20', 'clarence1993', '2014-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS904324769466', 'Carrie Clark', 1, '+81 90-5909-0206', 3, '300091823247670308', '日本東京中央区銀座三丁目12番14号6号室', '1997-12-02', 0, 0, 'clcarrie1121', '2020-04-06', 'cclark73', '2020-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS478528022346', 'Tony Myers', 1, '+86 755-4721-4193', 0, '483790636233520622', 'No.14 building, 423 Shennan Ave, Futian District, Shenzhen, China', '1989-10-05', 0, 0, 'myerstony', '2011-05-26', 'myerstony', '2007-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS299215214405', '清水凛', 0, '+1 330-151-9818', 2, '727754782184628516', '700 Riverview Road Apartment 32, Akron, OH 44313, United States', '1996-11-24', 0, 0, 'ris', '2005-06-07', 'shimizu10', '2018-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS255284408760', '甘曉彤', 1, '+81 70-8420-6359', 3, '446801779128863276', '日本東京品川区東五反田五丁目2番3号47号室', '1993-01-15', 0, 0, 'kamht', '2014-03-30', 'hiutungkam12', '2002-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS205709408576', '後藤美羽', 1, '+81 90-0404-9248', 3, '591669435336009516', 'Rm. 8, 3 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1989-07-20', 0, 0, 'gmiu', '2010-04-19', 'miu606', '2005-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS263272897279', 'Sylvia Scott', 1, '+44 (151) 766 8273', 1, '876530617772823535', 'Flat 38, 854 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1998-03-26', 0, 0, 'scottsylvia', '2014-11-05', 'ssyl', '2000-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS611614077190', '丁璐', 0, '+81 80-2620-3445', 1, '529077924041569408', 'Rm. 7, 5-2-20 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1995-01-04', 0, 0, 'luding1021', '2016-10-19', 'dinlu', '2000-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS189910263157', '文心穎', 1, '+44 (1865) 70 9297', 1, '525664276504666931', 'Unit 27, Oxford Eco Centre, 612 Park End St, Oxford, OX1 1JD, United Kingdom', '1998-09-18', 0, 0, 'swman', '2012-09-17', 'masumwing', '2003-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS117785005958', '湯霆鋒', 0, '+44 (116) 871 8086', 3, '239219403331632545', 'Flat 47, 813 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1997-02-10', 0, 0, 'tongtf06', '2010-07-28', 'tftong', '2000-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS112757974641', 'Mike Sanders', 1, '+86 195-0107-7654', 2, '272815408749981170', 'No.1 building, 414 Shennan Ave, Futian District, Shenzhen, China', '1994-03-26', 0, 0, 'mis', '2003-03-02', 'sanders1', '2008-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS517728387295', 'Ruth Alvarez', 1, '+86 760-664-6123', 0, '483228333200330071', '中国中山紫马岭商圈中山五路455号35楼', '1986-05-29', 0, 0, 'ruthalvar210', '2013-12-29', 'ralvarez109', '2019-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS388092402590', '严云熙', 0, '+1 213-427-2421', 2, '250176313334027890', '158 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1988-06-17', 0, 0, 'yanyu', '2016-03-28', 'yayunxi10', '2005-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS901848508087', '周秀英', 1, '+44 (151) 511 6069', 0, '790575458345383497', 'Flat 2, 971 Redfern St, Liverpool, L20 8JB, United Kingdom', '1989-09-10', 0, 0, 'zhoux', '2006-07-22', 'xzh6', '2009-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS082836831828', '餘國榮', 1, '+44 5214 220015', 3, '246098528956949785', 'Unit 9, Oxford Eco Centre, 539 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1998-01-11', 0, 0, 'kwokwingyue', '2015-01-07', 'yuekw', '2012-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS315217552099', '竹内七海', 1, '+44 (1865) 10 1120', 0, '708820085554879396', 'No.22 Main building, 129 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-05-18', 0, 0, 'nanamitakeuchi4', '2014-10-13', 'tanan9', '2001-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS478735633883', 'Earl Murphy', 0, '+86 168-5162-9256', 2, '606057318497907213', '中国广州市海珠区江南西路913号40楼', '1997-09-04', 0, 0, 'earlmurp', '2002-10-15', 'emurphy54', '2019-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS122729700335', '徐麗欣', 1, '+44 7570 156202', 2, '120980979440269144', 'No.2 Main building, 355 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1988-07-03', 0, 0, 'tsuilaiyan', '2001-10-21', 'tsuily', '2015-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS214359914756', '邱青雲', 0, '+1 213-642-6810', 0, '278717865089872360', '25 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1994-06-05', 0, 0, 'cwy', '2006-01-03', 'chingwan513', '2004-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS514065976884', 'Marie Nelson', 1, '+86 20-836-8434', 1, '357465087356608627', '中国广州市越秀区中山二路433号44楼', '1990-11-01', 0, 0, 'nelsonmar1962', '2005-01-16', 'nelsonmar', '2020-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS001406867074', '太田陽太', 1, '+86 21-2989-5138', 1, '814414529242646705', '中国上海市闵行区宾川路761号49号楼', '1994-03-02', 0, 0, 'yotaot', '2004-12-24', 'otayo', '2016-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS608935074320', '森七海', 1, '+81 80-4061-7966', 1, '340324805688973841', '日本おおさかし近江堂一丁目7番15号24号室', '1999-03-02', 0, 0, 'monan512', '2009-08-27', 'nanami2', '2005-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS873296013343', '官家強', 1, '+44 7629 502492', 4, '253108650242233289', 'Unit 40, Oxford Eco Centre, 44 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1987-11-25', 0, 0, 'kkakeung', '2012-04-18', 'kakeung9', '2018-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS941373608921', 'Joshua Meyer', 0, '+86 20-9027-7723', 1, '552535311418718383', 'No.24 building, 575 Xiaoping E Rd, Baiyun , Guangzhou, China', '1997-08-29', 0, 0, 'meyejosh', '2021-07-24', 'joshuameyer', '2018-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS478424027626', 'Joshua Foster', 0, '+44 (161) 703 6493', 2, '695438015205368760', 'Block 12, 105 Mosley St, Manchester, M2 3AQ, United Kingdom', '1995-06-12', 0, 0, 'fosterjoshua80', '2008-09-09', 'jfo', '2000-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS914712786933', '段云熙', 1, '+86 154-0414-0212', 1, '785258112292286409', '33F, 3 Dongtai 5th St, Dongguan, China', '1992-07-09', 0, 0, 'duanyunxi', '2012-07-01', 'duayunxi215', '2006-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS557138443362', '钟秀英', 0, '+86 760-5216-1058', 3, '759266634814823254', 'No.29 building, 710 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1990-03-25', 0, 0, 'xiuyizhong', '2007-06-29', 'xzhon', '2008-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS909269371164', '阎嘉伦', 0, '+81 80-3908-4605', 0, '098527568841067484', '日本おおさかし東住吉区東田辺三丁目27番15号15階', '1985-12-27', 0, 0, 'yajialu1960', '2002-04-19', 'yjia', '2020-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS451779433812', 'Brandon Hunter', 0, '+86 755-411-6913', 2, '150460744522944252', '中国深圳龙岗区布吉镇西环路442号30栋', '1997-01-09', 0, 0, 'hunterb', '2021-12-21', 'hunterbrandon', '2012-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS907764815526', '野口光', 0, '+1 212-025-9476', 0, '382913872757853945', '796 West Houston Street Apartment 42, New York, NY 10014, United States', '1986-05-22', 0, 0, 'hikaru4', '2004-02-11', 'hiknoguchi10', '2020-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS535789794732', 'Frederick Rivera', 1, '+81 80-4012-7327', 4, '752382015377808522', '日本札幌清田区真栄四条五丁目19番11号5号室', '1988-03-29', 0, 0, 'frerivera', '2008-07-01', 'rivfrederick', '2001-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS761598826554', '邹詩涵', 1, '+86 198-5697-2247', 3, '870708042377492217', '中国广州市白云区小坪东路821号27室', '1997-10-25', 0, 0, 'zoushi', '2000-06-22', 'zshihan2009', '2001-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS170829091374', 'Virginia Graham', 0, '+86 155-1502-8394', 2, '703519117014651035', '中国广州市白云区小坪东路952号29楼', '1989-12-25', 0, 0, 'gvirginia', '2009-05-02', 'gravirginia', '2017-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS419618297542', 'Richard Marshall', 0, '+86 755-863-4325', 1, '749001581778571637', 'No.36 building, 319 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1997-03-03', 0, 0, 'mari', '2003-04-17', 'richamars', '2014-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS888665682617', '車天榮', 1, '+81 11-453-3050', 1, '423461676453657835', '日本札幌白石区菊水三条五丁目4番10号28階', '1991-07-20', 0, 0, 'tinwingche', '2002-06-11', 'tiche', '2020-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS389410379609', '叶安琪', 1, '+44 7614 308702', 1, '115181307483808591', 'No.47 Main building, 65 Park End St, Oxford, OX1 1JD, United Kingdom', '1987-09-23', 0, 0, 'anqi78', '2001-11-21', 'yeanqi1941', '2016-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS113531222243', '上田陽太', 1, '+81 80-6240-1495', 2, '597364642129080276', 'Rm. 4, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-09-10', 0, 0, 'yotaueda', '2021-02-15', 'ueyota', '2011-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS598118305236', '葉青雲', 1, '+44 (1865) 82 2874', 4, '085829903425544006', 'No.12 Main building, 61 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1990-08-28', 0, 0, 'chingwanyip05', '2020-04-01', 'chyi20', '2020-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS283783154012', '池田彩乃', 0, '+81 80-2416-9609', 1, '592139199689793218', '日本東京渋谷区代々木二丁目3番2号48号室', '1995-11-17', 0, 0, 'ayanoi', '2003-02-12', 'ayikeda6', '2013-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS174641247914', '严安琪', 0, '+44 (161) 186 1177', 1, '544606005143176837', 'Flat 24, 89 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1987-07-13', 0, 0, 'anqi708', '2008-03-24', 'yananq', '2003-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS470025097354', '渡辺陽菜', 1, '+81 66-944-7507', 3, '640280748752787728', '40F, 2-1-13 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1985-07-25', 0, 0, 'hina2', '2016-12-31', 'satohina', '2009-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS426500869922', 'Valerie Sullivan', 0, '+1 213-875-5501', 1, '284169226777509515', '241 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1997-01-21', 0, 0, 'valesullivan6', '2004-07-18', 'valerie51', '2008-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS129481843704', '小野舞', 0, '+1 330-401-5750', 4, '101269502182762519', '866 Fern Street Apt 3, Akron, OH 44307, United States', '1986-04-06', 0, 0, 'maiono', '2017-03-16', 'onoma', '2006-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS065808918421', '應力申', 1, '+44 7756 422102', 0, '575888077391213044', 'Block 32, 847 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1992-08-17', 0, 0, 'liksunying7', '2005-01-14', 'lsying', '2018-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS206897318426', '斎藤紗良', 1, '+86 10-5594-3068', 4, '198351179742630985', '中国北京市西城区复兴门内大街133号17栋', '1988-06-21', 0, 0, 'saito98', '2006-10-16', 'sasar', '2021-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS028602341157', '罗震南', 0, '+86 769-381-3258', 0, '579629451408635124', '中国东莞坑美十五巷475号8楼', '1995-05-08', 0, 0, 'lzh', '2015-04-22', 'zluo1203', '2007-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS211293721963', '林慧儀', 1, '+86 10-100-6264', 4, '110912855454001274', '中国北京市延庆区028县道551号华润大厦40室', '1988-03-13', 0, 0, 'waiyee815', '2020-10-01', 'waiyeel', '2004-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS228509341751', '後藤葉月', 0, '+86 10-207-9364', 0, '593234028092603652', 'No.10 building, 125 Sanlitun Road, Chaoyang District, Beijing, China', '1989-02-03', 0, 0, 'gothazuki', '2009-02-23', 'hazuki4', '2005-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS806911289351', 'Steven Clark', 0, '+81 74-127-3332', 1, '821075144816398391', '25F, 1-7-17 Saidaiji Akodacho, Nara, Japan', '1989-03-18', 0, 0, 'clarksteven', '2006-05-21', 'steven80', '2016-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS932522917334', '郑岚', 1, '+86 10-8997-9173', 3, '051428491988478391', 'No.21 building, 805 FuXingMenNei Street, XiCheng District, Beijing, China', '1996-02-18', 0, 0, 'zhenl', '2015-05-20', 'lanzheng1231', '2007-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS441736337700', '向岚', 0, '+44 7792 093624', 1, '778557790610872249', 'Flat 12, 798 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1995-03-13', 0, 0, 'laxia71', '2021-02-17', 'lanxiang', '2019-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS619456332135', '贺杰宏', 0, '+44 5588 711294', 1, '221209725083926013', 'Unit 34, Oxford Eco Centre, 828 Park End St, Oxford, OX1 1JD, United Kingdom', '1995-08-16', 0, 0, 'jihe', '2002-05-01', 'jiehohe', '2003-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS619616868700', 'Edna Lee', 0, '+86 143-1926-0789', 2, '085275566692347278', 'Room 40, 161 Hongqiao Rd., Xu Hui District, Shanghai, China', '1989-06-24', 0, 0, 'edna10', '2021-03-16', 'edna7', '2013-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS458638920438', '徐子韬', 1, '+1 212-497-1232', 4, '974181587246201080', '764 West Houston Street 3rd Floor, New York, NY 10014, United States', '1985-08-05', 0, 0, 'xuzita9', '2006-06-25', 'zitaxu', '2020-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS123276744096', '金子絢斗', 0, '+86 20-526-2575', 2, '406393972350248947', 'No.40 building, 141 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1997-10-16', 0, 0, 'akane', '2017-12-09', 'kanekoayato1', '2007-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS518521172578', '黄嘉伦', 1, '+81 3-3107-9466', 2, '458986493495204825', '日本東京中央区銀座三丁目12番11号39階', '1986-10-14', 0, 0, 'hjial', '2007-07-05', 'jh6', '2003-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS169327154076', '酒井海斗', 0, '+86 149-7095-7337', 0, '804012729144190633', '中国北京市東城区東直門內大街864号华润大厦17室', '1995-06-23', 0, 0, 'sakait', '2011-01-04', 'kasak5', '2008-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS156709364914', '張杰倫', 1, '+86 182-5400-5708', 1, '564885550791413587', '中国深圳福田区深南大道792号49室', '1986-12-19', 0, 0, 'chiehluncheung', '2020-05-13', 'chche', '2009-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS452296072684', 'Jason Vasquez', 1, '+81 90-9715-4526', 3, '344704027743106936', '17F, 3-9-7 Gakuenminami, Nara, Japan', '1998-04-24', 0, 0, 'vajaso68', '2006-11-07', 'vasquezjas61', '2021-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS258716296895', '關慧敏', 1, '+86 20-5881-8561', 2, '606282227273872375', 'No.21 building, 907 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1985-12-21', 0, 0, 'wmkw', '2016-05-26', 'kwaiman', '2017-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS075383054866', 'Andrew Garza', 1, '+81 80-2793-1330', 1, '891606377348404480', '日本なごやし熱田区千年二丁目5番20号23号室', '1989-04-02', 0, 0, 'andrew1970', '2012-02-23', 'garza8', '2006-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS532749773126', 'Jason Kelly', 1, '+86 755-8464-2610', 4, '059922034093018767', 'No.45 building, 450 Shennan Ave, Futian District, Shenzhen, China', '1995-11-24', 0, 0, 'kjason807', '2003-04-13', 'kelljason40', '2012-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS676422788719', '森光莉', 0, '+81 70-6480-5908', 4, '366581672040505993', 'Rm. 15, 3-27-9 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-08-18', 0, 0, 'mohi', '2018-05-07', 'hmori', '2004-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS522173897054', '姚安琪', 1, '+1 312-148-4000', 0, '672330516195300471', '104 Pedway Apartment 32, Chicago, IL 60601, United States', '1991-05-10', 0, 0, 'yeowok', '2003-05-08', 'okyeow', '2020-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS072840440037', '張國榮', 1, '+81 90-0501-9112', 4, '099561980480823564', '日本なごやし瑞穂区河岸町四丁目20番6号40号室', '1998-03-09', 0, 0, 'cheungkw', '2006-03-19', 'kwc4', '2015-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS202825174853', '樊梓晴', 0, '+44 (161) 996 6361', 0, '559814322553205327', 'Block 49, 328 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1986-11-12', 0, 0, 'tszchingfan', '2013-10-31', 'tszchingfan9', '2014-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS258308904262', '木下大和', 0, '+86 162-8074-1948', 1, '159543074191128319', 'Room 1, 231 West Chang''an Avenue, Xicheng District, Beijing, China', '1995-11-11', 0, 0, 'kinosy8', '2001-08-12', 'kyamato9', '2021-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS542559998614', '吕岚', 0, '+81 80-6847-3827', 3, '506566898420162950', '日本なごやし守山区瀬古東二丁目171番9号47階', '1991-02-04', 0, 0, 'lulan1', '2013-10-20', 'llu44', '2014-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS473969590229', '木村蒼士', 1, '+86 159-5641-9478', 2, '482436134825340592', 'No.24 building, 285 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1989-12-16', 0, 0, 'kimuraao', '2004-10-29', 'kaosh8', '2016-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS712559028186', '江子异', 1, '+86 156-5627-6925', 2, '972846761886406213', 'Room 6, CR Building, 236 Kengmei 15th Alley, Dongguan, China', '1989-03-16', 0, 0, 'jiang729', '2002-04-19', 'jiaziy1', '2007-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS912857438113', '萬天榮', 0, '+1 838-336-9669', 1, '195411716497278091', '588 Broadway 3rd Floor, Albany, NY 12207, United States', '1996-07-15', 0, 0, 'mtinwing', '2016-03-14', 'twmeng1963', '2019-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS368929317995', 'Walter Webb', 0, '+81 90-3553-0290', 0, '156357446885322581', '46-kai, 5-19-16 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1991-08-17', 0, 0, 'walterwebb', '2000-12-30', 'walterw08', '2017-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS840941418309', '陶國榮', 1, '+1 213-297-6103', 2, '180233915599982524', '167 Wall Street Apt 34, Los Angeles, CA 90003, United States', '1990-10-11', 0, 0, 'taokwokwing', '2002-06-24', 'tao67', '2002-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS248997511185', '萬明', 0, '+86 151-3146-5354', 1, '794809473132654331', '中国东莞珊瑚路369号25室', '1991-03-10', 0, 0, 'minmeng5', '2007-11-15', 'mingmeng313', '2001-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS338223907868', '市川架純', 0, '+86 195-6585-4672', 0, '087826532840139505', '中国深圳福田区深南大道999号华润大厦12室', '1991-01-23', 0, 0, 'ikas', '2004-03-26', 'ichikkas', '2007-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS215477756401', '長谷川凛', 0, '+44 7697 039121', 4, '081057845584915496', 'Flat 3, 997 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1996-06-15', 0, 0, 'hasegawa8', '2018-07-24', 'hasegawarin', '2004-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS145809439629', 'Christina Murray', 0, '+86 132-5976-6425', 3, '554594911687864541', '中国广州市海珠区江南西路381号34栋', '1993-11-28', 0, 0, 'christinamurray14', '2017-06-03', 'murchristina', '2010-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS223272446230', '赵子韬', 0, '+44 5383 549081', 0, '318139735257033941', 'Block 22, 235 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1988-01-08', 0, 0, 'zizha', '2005-07-22', 'zitaozhao', '2020-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS173280773178', '梁家輝', 1, '+81 74-990-3832', 2, '540419791211924266', '32-kai, 1-7-14 Saidaiji Akodacho, Nara, Japan', '1989-09-17', 0, 0, 'lkafai8', '2021-05-24', 'leungkf6', '2005-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS217149978395', '山田陽菜', 0, '+86 769-483-4204', 3, '490870664412870181', '中国东莞珊瑚路989号29楼', '1987-01-16', 0, 0, 'yamadh2', '2011-10-26', 'yamadahina5', '2014-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS256247697718', 'Antonio Mills', 1, '+1 213-241-6135', 2, '613350433700436931', '81 Alameda Street Apartment 50, Los Angeles, CA 90002, United States', '1988-09-04', 0, 0, 'antmi', '2001-02-04', 'mant', '2019-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS476778493844', '渡辺涼太', 1, '+1 213-329-7515', 1, '729446040669999018', '670 Sky Way Apartment 21, Los Angeles, CA 90043, United States', '1987-02-19', 0, 0, 'ryota521', '2001-02-18', 'satoryo', '2012-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS329253082067', '金子百花', 0, '+1 614-044-5071', 4, '665412649419766820', '2 Wicklow Road Apartment 25, Columbus, GA 43204, United States', '1997-10-29', 0, 0, 'momkaneko', '2000-03-28', 'kanekmomo', '2008-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS492143835356', 'Christina Marshall', 0, '+44 (121) 538 2837', 1, '234118096944907989', 'No.38 Main building, 744 New Street, Birmingham, B2 4DB, United Kingdom', '1986-02-16', 0, 0, 'chrimarsh05', '2018-08-18', 'marshallchristina', '2015-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS688444580762', '徐麗欣', 0, '+1 330-811-0046', 4, '989473701646097758', '171 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1985-12-19', 0, 0, 'tsui416', '2019-05-14', 'tsly1008', '2004-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS819956839692', '岡田光', 0, '+1 212-652-9205', 4, '017113245458362253', '844 Canal Street 3rd Floor, New York, NY 10013, United States', '1994-06-12', 0, 0, 'hikaruokada20', '2001-12-28', 'hikaruok6', '2020-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS330661186801', 'Sarah Cook', 1, '+1 312-532-9042', 1, '931552862733953963', '839 North Michigan Ave Suite 25, Chicago, IL 60611, United States', '1995-11-07', 0, 0, 'sarah423', '2021-01-06', 'cooksarah5', '2018-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS315192980018', '中野陸', 0, '+81 11-565-3862', 1, '830127938871232949', '日本札幌白石区菊水三条五丁目4番20号20号室', '1991-02-16', 0, 0, 'nri', '2013-01-09', 'rikunakan', '2016-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS522268943552', '野村花', 0, '+86 180-6352-8757', 0, '459671074746886311', '中国上海市闵行区宾川路541号9楼', '1991-05-04', 0, 0, 'hananomur', '2012-03-26', 'nomhana', '2019-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS841123168038', '高岚', 1, '+81 74-156-1256', 2, '021550111143201438', 'Rm. 40, 1-7-15 Saidaiji Akodacho, Nara, Japan', '1996-01-30', 0, 0, 'gao2013', '2012-11-30', 'gao1015', '2021-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS455825337646', '羅青雲', 1, '+86 28-9405-3558', 3, '679432042841100786', '中国成都市成华区玉双路6号140号华润大厦26室', '1986-08-30', 0, 0, 'lo1942', '2016-01-01', 'chingwanlo', '2014-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS316848004167', 'Elizabeth Hawkins', 1, '+81 90-0392-7963', 2, '203147699833534773', '日本東京港区東新橋一丁目5番11号50階', '1989-12-25', 0, 0, 'elih4', '2022-01-22', 'hawkielizabeth', '2014-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS689547177359', '岩崎大輔', 1, '+1 838-767-2376', 3, '375750960199172950', '649 State Street Apt 39, Albany, NY 12203, United States', '1997-11-13', 0, 0, 'dai', '2017-09-27', 'diwasaki724', '2017-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS354400673477', '武田陽菜', 0, '+1 718-526-6041', 2, '254852513516190516', '292 Columbia St Apartment 24, Brooklyn, NY 11231, United States', '1998-10-25', 0, 0, 'takeda524', '2017-11-19', 'htakeda5', '2006-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS788772067505', '金子凛', 1, '+86 177-0377-5751', 1, '088882593661454408', 'Room 2, CR Building, 278 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1997-07-20', 0, 0, 'rikane', '2019-09-12', 'kanekor7', '2016-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS047878077320', '佐々木玲奈', 0, '+44 7831 936730', 0, '010382845085618372', 'No.3 Main building, 105 Pollen Street, London, W1S 1NG, United Kingdom', '1994-06-17', 0, 0, 'srena', '2012-09-14', 'rena5', '2014-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS784504072266', 'Margaret Stewart', 1, '+1 330-063-7214', 4, '102349524407563764', '284 West Market Street 3rd Floor, Akron, OH 44333, United States', '1990-02-19', 0, 0, 'stewart3', '2008-02-07', 'stewartmargaret', '2009-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS135844358822', '原田大和', 0, '+1 838-157-1967', 0, '634261421206949267', '550 Broadway Apt 45, Albany, NY 12207, United States', '1989-09-26', 0, 0, 'yamaharada', '2019-11-30', 'haradaya', '2012-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS868408358240', '周致远', 0, '+81 90-6685-7565', 3, '906547777739878532', '日本おおさかし西成区出城一丁目1番11号47号室', '1996-10-02', 0, 0, 'zhz8', '2000-08-01', 'zhozhiyu54', '2021-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS880788723172', '甘發', 0, '+1 213-399-2830', 1, '265685236584306937', '184 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1987-05-01', 0, 0, 'kamfat', '2021-10-12', 'kamf', '2000-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS228546421277', '蔡天樂', 0, '+81 3-7418-5451', 3, '489100380576815168', 'Rm. 31, 3-15-4 Ginza, Chuo-ku, Tokyo, Japan', '1997-04-23', 0, 0, 'chotinlok1970', '2006-03-18', 'choi3', '2021-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS190728601251', '蘇頴璇', 0, '+1 838-404-3684', 3, '713673128804101424', '406 Broadway 3rd Floor, Albany, NY 12207, United States', '1986-04-30', 0, 0, 'so9', '2015-08-01', 'wingss', '2003-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS220682082285', '藍榮發', 0, '+44 7051 605191', 0, '575540385216222122', 'Flat 3, 528 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1996-11-23', 0, 0, 'wingfat61', '2020-01-31', 'wingfatla', '2001-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS321987477689', '孫永發', 0, '+81 11-000-1221', 4, '963436947045068304', '日本札幌清田区真栄四条五丁目19番9号36階', '1988-02-28', 0, 0, 'wfhsua', '2008-06-30', 'hsuan82', '2016-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS201725076288', '田中優奈', 1, '+44 (151) 390 9176', 2, '723562146097728364', 'Flat 14, 154 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1991-05-03', 0, 0, 'ytanaka', '2002-06-26', 'yutanaka620', '2006-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS083157532261', 'Emily Diaz', 0, '+86 184-3683-5410', 0, '122645057468156663', 'Room 46, 329 Ganlan Rd, Pudong, Shanghai, China', '1995-03-07', 0, 0, 'diaz1953', '2014-04-12', 'emdiaz', '2000-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS101395723677', '佐藤舞', 1, '+81 90-6957-9922', 0, '648577600916138544', '日本おおさかし東住吉区東田辺三丁目27番1号14階', '1988-05-17', 0, 0, 'sma70', '2016-07-13', 'masa63', '2003-04-30'); +INSERT INTO "public"."userinfo" VALUES ('TS265142729321', '樊國榮', 0, '+44 5980 515371', 0, '214336315599079234', 'Flat 29, 627 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1997-09-13', 0, 0, 'fkw', '2009-06-30', 'kwf', '2019-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS939078033226', '石井優奈', 0, '+81 90-1355-2062', 3, '365566061117565997', '日本なごやし守山区瀬古東二丁目171番8号1階', '1993-03-10', 0, 0, 'ishiiy', '2012-10-01', 'ishy816', '2000-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS450903093890', '雷志遠', 1, '+44 (121) 867 3992', 2, '774026917733672756', 'Block 2, 507 New Street, Birmingham, B2 4DB, United Kingdom', '1994-09-13', 0, 0, 'louichiyuen', '2022-01-23', 'chiyuenlo8', '2020-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS098012961937', '岡本花', 1, '+81 11-315-3692', 2, '275815817345784578', '日本札幌豊平区豊平三条十三丁目3番11号49階', '1997-02-22', 0, 0, 'hokamoto5', '2009-03-08', 'ohan', '2017-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS873325672273', '余詩涵', 0, '+81 11-028-0212', 1, '242148802386093932', '日本札幌豊平区豊平三条十三丁目3番20号18階', '1991-06-24', 0, 0, 'yu97', '2017-06-19', 'yushihan', '2017-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS429781465905', '阎詩涵', 0, '+1 718-738-2960', 3, '655307822040910581', '150 1st Ave Apartment 50, Brooklyn, NY 11220, United States', '1985-11-12', 0, 0, 'yanshih', '2001-11-27', 'yan49', '2020-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS414801477111', 'Frederick Weaver', 0, '+86 755-546-2275', 4, '461828822916588847', 'Room 47, 986 Jingtian East 1st St, Futian District, Shenzhen, China', '1998-02-13', 0, 0, 'fredweaver10', '2011-09-08', 'fweav817', '2019-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS434621289173', '井上樹', 0, '+86 20-396-8933', 4, '738929203243168787', '中国广州市海珠区江南西路158号43室', '1990-03-24', 0, 0, 'inoueits', '2016-03-25', 'inoue2', '2021-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS478307538494', 'Thomas Warren', 1, '+86 182-8941-7950', 2, '651379632858550513', '中国广州市白云区机场路棠苑街五巷579号8号楼', '1985-02-04', 0, 0, 'wtho', '2013-07-18', 'thomaswarr', '2006-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS931890115046', 'Marie Salazar', 0, '+81 3-1023-8923', 3, '962587081102316699', '2-kai, 5-2-16 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1992-11-14', 0, 0, 'salazarmari8', '2010-04-02', 'salazarmari', '2004-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS435681072393', '姚慧敏', 0, '+86 20-1427-8050', 1, '431851563192585353', '10F, 270 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1990-06-16', 0, 0, 'waimany56', '2005-01-28', 'ywm6', '2017-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS856894585983', '樊發', 0, '+1 838-152-9705', 1, '210550670301753508', '325 Broadway Apartment 45, Albany, NY 12207, United States', '1992-12-12', 0, 0, 'faf', '2019-08-25', 'ffat', '2009-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS864070900904', 'Walter Hamilton', 0, '+86 10-6770-0321', 3, '942088553974590596', 'Room 36, 118 68 Qinghe Middle St, Haidian District, Beijing, China', '1985-09-22', 0, 0, 'hamiltonwalter', '2008-07-20', 'hwalter602', '2006-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS293430219565', '陈杰宏', 0, '+81 80-7110-1006', 3, '515608341612753756', '44F, 2-1-12 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1994-11-04', 0, 0, 'jchen4', '2019-01-13', 'jiehongchen', '2005-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS263521947147', 'Lawrence Martinez', 0, '+1 312-663-5554', 2, '722032209506726291', '654 Rush Street Suite 4, Chicago, IL 60611, United States', '1991-12-04', 0, 0, 'lawrencemartinez', '2018-07-31', 'marlawrence', '2006-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS606243971067', '邱璐', 1, '+86 10-7650-0062', 3, '945663770771696146', '中国北京市东城区东单王府井东街154号24楼', '1995-09-21', 0, 0, 'qlu', '2015-07-24', 'qiu1004', '2005-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS301260149294', 'Lawrence Torres', 1, '+44 7850 302309', 3, '568104621855571208', 'Unit 46, Oxford Eco Centre, 707 Regent Street, London, W1B 2LX, United Kingdom', '1988-07-16', 0, 0, 'lawrenceto', '2006-02-04', 'lawrencet', '2017-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS059496908097', '潘安琪', 0, '+44 (1223) 04 2208', 3, '197099775741896376', 'Flat 44, 48 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1991-01-10', 0, 0, 'pan99', '2009-06-21', 'pana', '2022-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS593891382817', '中島和真', 0, '+86 182-9799-9902', 2, '167073469865741587', '中国中山乐丰六路906号7栋', '1993-03-14', 0, 0, 'nakajkazuma', '2017-08-05', 'nakazuma120', '2002-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS242944520384', 'Sheila Stevens', 0, '+44 7807 842368', 4, '872008795077204289', 'Unit 6, Oxford Eco Centre, 640 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1991-05-29', 0, 0, 'stevs', '2008-09-26', 'ssheila', '2000-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS137042347290', 'Sheila Gardner', 1, '+86 162-9419-1583', 2, '214883876339039612', '10F, 495 028 County Rd, Yanqing District, Beijing, China', '1994-01-26', 0, 0, 'gardner5', '2015-03-03', 'gardners', '2002-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS613741945939', 'Grace Snyder', 0, '+86 10-1267-6333', 3, '476878008178185051', 'Room 6, CR Building, 715 FuXingMenNei Street, XiCheng District, Beijing, China', '1992-12-08', 0, 0, 'snydgr1993', '2018-11-10', 'gracesnyder2019', '2002-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS597112066202', '池田美緒', 0, '+81 70-8253-4839', 4, '314825550449677171', '42-kai, 1-1-17 Deshiro, Nishinari Ward, Osaka, Japan', '1994-11-20', 0, 0, 'ikmio', '2003-12-02', 'mioikeda', '2016-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS026956627393', '郑詩涵', 1, '+86 187-4013-7597', 1, '693416441966650708', 'Room 23, 661 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1995-05-28', 0, 0, 'zheng46', '2012-04-16', 'zhenshiha', '2007-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS170683971933', 'Debra Weaver', 1, '+86 10-5914-7595', 1, '576974451465166168', '中国北京市西城区复兴门内大街313号2栋', '1998-08-02', 0, 0, 'debrawea1128', '2000-06-09', 'debraweaver', '2017-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS993792823436', '藤田翼', 0, '+44 (1865) 64 1923', 2, '897068426597979624', 'No.17 Main building, 335 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1995-03-22', 0, 0, 'tsubfujita', '2004-06-16', 'fujtsubasa', '2016-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS112001743843', '邹云熙', 0, '+44 5191 188399', 2, '984120470775026617', 'Flat 5, 603 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1992-01-14', 0, 0, 'yunxizou', '2007-05-16', 'yuzou5', '2021-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS923264008161', 'Patricia Washington', 1, '+81 11-066-5740', 2, '547044477968589977', '日本札幌厚別区上野幌一条二丁目1番1号12階', '1989-08-22', 0, 0, 'washington1120', '2014-06-10', 'patrwas', '2001-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS848942923275', '野口葉月', 1, '+44 7015 458050', 3, '540285701766139971', 'Block 30, 846 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1998-05-23', 0, 0, 'noguchiha63', '2015-12-15', 'hazuki1990', '2001-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS497592138876', '钱致远', 0, '+1 312-196-7959', 1, '894043824246135293', '175 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1987-06-23', 0, 0, 'qianzhiyuan65', '2018-09-25', 'zqia4', '2008-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS207782222235', '譚浩然', 0, '+86 135-3985-6386', 1, '785651254252369732', 'No.24 building, 607 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1998-03-06', 0, 0, 'tahy1955', '2010-10-26', 'hoyintam1992', '2000-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS051464960433', 'Judith Richardson', 0, '+1 213-522-9079', 2, '311464615189548397', '902 Alameda Street Apartment 44, Los Angeles, CA 90002, United States', '1986-12-23', 0, 0, 'richardson10', '2003-05-05', 'richardsonju', '2009-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS588479024835', '邓杰宏', 1, '+86 20-311-2171', 1, '720484601689030693', '36F, 869 Tianhe Road, Tianhe District, Guangzhou, China', '1996-04-17', 0, 0, 'dengjie', '2018-07-12', 'dejiehong1947', '2000-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS958987640329', '郭晓明', 1, '+44 (1223) 12 9512', 2, '074259672266796751', 'Unit 28, Oxford Eco Centre, 339 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-06-05', 0, 0, 'xg3', '2008-08-27', 'gx3', '2002-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS737188807990', 'Allen Crawford', 1, '+44 (1865) 85 1112', 2, '653429196638641929', 'No.37 Main building, 17 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1988-10-25', 0, 0, 'acrawford', '2013-01-01', 'allencrawford', '2014-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS197354144958', 'Jerry White', 0, '+86 10-111-5530', 1, '519137560856199803', 'No.13 building, 355 028 County Rd, Yanqing District, Beijing, China', '1991-12-07', 0, 0, 'jerry56', '2002-01-03', 'whitejerr', '2010-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS459159129837', 'Christopher Patel', 1, '+86 192-7201-2803', 1, '334823140802600627', '中国成都市锦江区人民南路四段711号1号楼', '1985-01-05', 0, 0, 'christopherpatel', '2002-06-03', 'cpatel4', '2008-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS544460145058', '胡浩然', 0, '+81 70-2973-0772', 4, '322550016155215075', '38F, 3-9-20 Gakuenminami, Nara, Japan', '1994-09-02', 0, 0, 'hoyinwu303', '2001-01-17', 'hoyinwu', '2020-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS512558698833', '许詩涵', 1, '+1 718-455-2652', 2, '515695675035955722', '645 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1985-02-19', 0, 0, 'shixu', '2008-03-20', 'xu20', '2002-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS077694128831', '邱頴思', 1, '+86 188-3834-1456', 1, '898665912992000286', '中国成都市成华区双庆路299号39楼', '1989-12-26', 0, 0, 'wingsze6', '2008-09-03', 'yaws1986', '2015-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS676510118909', 'Jonathan Young', 1, '+86 21-7723-1527', 2, '430158771439535559', '中国上海市黄浦区淮海中路216号29楼', '1988-09-03', 0, 0, 'youngjonat10', '2000-02-10', 'jonathanyoun', '2016-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS187206963278', '谭嘉伦', 0, '+1 330-597-8340', 1, '109527643353783565', '815 Fern Street Apartment 37, Akron, OH 44307, United States', '1996-06-27', 0, 0, 'tajial1972', '2009-10-14', 'tanjialun1029', '2007-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS756455768935', '山崎彩乃', 0, '+81 74-330-5005', 0, '962573207931019668', '13-kai, 1-7-16 Saidaiji Akodacho, Nara, Japan', '1993-02-21', 0, 0, 'yamaayano1', '2014-07-11', 'ayanoy', '2001-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS719629613399', '龙秀英', 0, '+81 3-5349-9028', 0, '340446936894782151', '日本東京港区東新橋一丁目5番8号33階', '1997-08-22', 0, 0, 'longxi', '2019-06-01', 'longxiu', '2013-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS114685435410', '中村大和', 1, '+81 80-1053-5851', 1, '903974533332434076', '日本なごやし瑞穂区河岸町四丁目20番1号31号室', '1996-04-05', 0, 0, 'yamato9', '2019-12-20', 'yn5', '2004-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS601470475261', '吳家強', 0, '+81 70-2622-9699', 3, '300793323559622292', 'Rm. 11, 1-1-8 Deshiro, Nishinari Ward, Osaka, Japan', '1985-06-22', 0, 0, 'ng4', '2009-07-15', 'kakeungng', '2008-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS952689811997', '小島架純', 1, '+81 3-3741-0700', 1, '486840914624804308', '16-kai, 3-15-15 Ginza, Chuo-ku, Tokyo, Japan', '1989-07-03', 0, 0, 'kasumik', '2012-11-06', 'kasumikoji', '2006-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS447466845507', '傅永權', 1, '+81 70-9980-0956', 4, '642802742114484922', '日本なごやし熱田区千年二丁目5番11号17階', '1995-09-23', 0, 0, 'fu2', '2004-04-14', 'wkf', '2006-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS174709723454', 'Walter Harris', 0, '+86 21-9763-2081', 1, '050138214656265830', 'No.41 building, 921 Middle Huaihai Road, Huangpu District, Shanghai, China', '1990-08-31', 0, 0, 'harwa', '2022-02-20', 'harris83', '2005-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS829736232536', '谭璐', 0, '+86 21-4268-8556', 0, '464011425812341935', '中国上海市浦东新区橄榄路159号11号楼', '1991-09-23', 0, 0, 'lu1990', '2008-12-05', 'tan916', '2019-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS736863478588', 'Patricia Thomas', 1, '+86 21-088-3917', 2, '683505383481941530', 'No.12 building, 698 Binchuan Rd, Minhang District, Shanghai, China', '1997-06-08', 0, 0, 'thomaspatricia7', '2002-04-06', 'patritho', '2018-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS502992564068', '大野陽太', 0, '+86 147-2768-7876', 0, '575221523184559686', 'No.27 building, 40 Dongtai 5th St, Dongguan, China', '1997-01-30', 0, 0, 'yono1103', '2005-05-04', 'yotaono', '2006-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS178442270383', '蔣國賢', 0, '+86 755-1877-3137', 2, '849095483663867440', '中国深圳龙岗区布吉镇西环路386号28室', '1990-02-06', 0, 0, 'chiangkwokyin', '2013-07-28', 'kwokyinchiang', '2002-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS777482816576', '吳心穎', 0, '+81 80-5307-8586', 0, '875414352345613500', '日本札幌豊平区豊平三条十三丁目3番17号47階', '1990-03-08', 0, 0, 'ngsw', '2015-12-05', 'sumwing723', '2010-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS835607022055', '樊慧珊', 0, '+81 52-620-3626', 3, '358946663921027899', '日本なごやし守山区瀬古東二丁目171番16号26階', '1986-04-02', 0, 0, 'fanwaisan', '2011-08-11', 'fan92', '2001-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS587493005612', '柴田舞', 1, '+86 20-496-6056', 0, '194538048728946448', 'No.3 building, 449 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1991-08-20', 0, 0, 'shibmai719', '2001-02-03', 'shibatamai', '2009-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS252185124995', '马晓明', 1, '+81 11-617-3061', 3, '529259022778270895', '日本札幌厚別区上野幌一条二丁目1番17号19階', '1998-11-21', 0, 0, 'xiaoming2', '2004-04-23', 'maxiaoming', '2019-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS071599724975', '上田七海', 0, '+81 66-828-8135', 3, '173590150187767460', 'Rm. 7, 4-9-14 Kamihigashi, Hirano Ward, Osaka, Japan', '1997-05-03', 0, 0, 'nanami4', '2011-08-14', 'uedanana', '2016-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS775545762890', 'Ernest Hill', 0, '+86 10-9181-8738', 2, '520299381871186017', '中国北京市东城区东单王府井东街316号28号楼', '1995-02-17', 0, 0, 'hillern', '2018-10-06', 'hilernes403', '2017-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS940631896289', '于嘉伦', 1, '+86 146-2734-3094', 3, '501162491602891345', '中国东莞珊瑚路3号39室', '1986-12-09', 0, 0, 'yuji', '2007-08-23', 'jiyu12', '2006-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS523683671601', '駱曉彤', 1, '+81 3-3602-4880', 2, '270029319368543998', '日本東京千代田区丸の内一丁目6番5号1階', '1987-02-10', 0, 0, 'hiulok', '2005-01-07', 'htlok1023', '2020-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS372332366334', '苏岚', 1, '+86 175-8044-8271', 1, '755471136022204192', 'No.12 building, 802 Binchuan Rd, Minhang District, Shanghai, China', '1998-06-04', 0, 0, 'lasu', '2001-02-16', 'lans', '2005-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS972055656341', 'Leonard Jackson', 0, '+81 90-0452-3437', 3, '661491797755299183', '日本なごやし北区楠味鋺三丁目80番13号23号室', '1991-05-06', 0, 0, 'jackleonard', '2005-09-09', 'leonajac1', '2018-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS114477808725', '陆璐', 1, '+44 (121) 019 1986', 1, '379596350673817147', 'No.33 Main building, 830 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1998-02-08', 0, 0, 'lul', '2003-11-14', 'lu9', '2011-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS537466309443', '山崎陸', 0, '+86 184-7827-8257', 0, '716117341796877873', 'Room 34, CR Building, 980 Shennan Ave, Futian District, Shenzhen, China', '1989-04-05', 0, 0, 'yr5', '2011-09-26', 'yamriku', '2015-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS393054589856', 'Leroy Holmes', 1, '+86 150-8989-2484', 0, '690782826236086332', '39F, 871 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1987-05-12', 0, 0, 'hleroy', '2006-10-04', 'holmleroy7', '2015-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS242648289322', 'Anne Lewis', 1, '+86 182-1273-4006', 3, '574227028390095685', '中国深圳罗湖区蔡屋围深南东路200号36栋', '1993-07-17', 0, 0, 'anne1222', '2002-06-06', 'lanne1', '2003-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS003574305322', 'Roger Alvarez', 0, '+86 28-393-9292', 1, '182444892629615970', '中国成都市成华区双庆路524号38楼', '1993-02-20', 0, 0, 'rogera', '2019-09-06', 'alvarez7', '2004-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS602499441909', '中野美月', 0, '+86 21-9595-4045', 1, '333581132926860190', '中国上海市闵行区宾川路529号31栋', '1992-03-11', 0, 0, 'nakanomits', '2014-11-03', 'mitsuki1', '2002-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS060672593453', '菅原大輔', 1, '+81 74-567-3559', 1, '585066485105446440', '日本ならし西大寺赤田町一丁目7番10号5号室', '1988-02-21', 0, 0, 'sugawara1963', '2020-03-22', 'sugawaradaisuke2', '2000-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS440934269934', '江睿', 1, '+81 66-282-8157', 3, '575503218417034786', '日本おおさかし近江堂一丁目7番8号48階', '1991-05-25', 0, 0, 'jrui', '2013-08-22', 'jr8', '2020-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS539955944395', '井上美羽', 1, '+86 20-123-1730', 1, '448844255142035802', '中国广州市白云区机场路棠苑街五巷41号41号楼', '1989-03-27', 0, 0, 'miuinoue', '2011-11-26', 'inoumiu', '2009-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS727447792285', '佘家明', 0, '+86 20-174-6479', 2, '794753884943085754', '中国广州市白云区小坪东路854号24室', '1998-05-23', 0, 0, 'shehkami4', '2003-03-04', 'sheh113', '2015-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS688942299010', '陳國賢', 0, '+81 90-4874-5061', 0, '516250699478422692', '日本東京品川区東五反田五丁目2番18号10階', '1995-12-22', 0, 0, 'kwokyinchan', '2019-11-19', 'kychan923', '2002-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS078405220791', '顾嘉伦', 1, '+81 66-774-7136', 1, '133190905874278193', '日本おおさかし西成区出城一丁目1番11号39階', '1991-06-07', 0, 0, 'jialug', '2008-08-23', 'jialungu', '2015-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS948374280624', 'Thomas Washington', 0, '+86 28-9962-3078', 3, '093529620941528994', '中国成都市成华区二仙桥东三路648号15号楼', '1986-04-06', 0, 0, 'washington813', '2009-11-21', 'washington1', '2019-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS953734961849', 'Jose Rice', 0, '+44 (116) 459 5970', 2, '451747238585867949', 'Flat 14, 412 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1992-05-16', 0, 0, 'joser3', '2019-07-29', 'rice2009', '2012-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS431147926735', '内田七海', 0, '+81 74-722-3921', 1, '270196612694283291', '6F, 1-7-5 Saidaiji Akodacho, Nara, Japan', '1987-09-17', 0, 0, 'nanauchid', '2000-08-14', 'un58', '2021-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS355243807748', '龚宇宁', 0, '+81 3-3122-9490', 2, '184316938259830326', '日本東京渋谷区代々木二丁目3番11号24階', '1995-03-27', 0, 0, 'gonyuning1984', '2006-05-31', 'gyuning325', '2008-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS910020598279', 'Jennifer Boyd', 1, '+86 167-4499-9840', 1, '619446377617794094', 'No.31 building, 18 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1997-06-28', 0, 0, 'boydj', '2020-12-09', 'jenboy6', '2004-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS991559094210', '林慧敏', 1, '+86 20-7745-6687', 3, '961311918353164469', '中国广州市白云区机场路棠苑街五巷349号华润大厦18室', '1994-12-06', 0, 0, 'lamwaiman3', '2006-09-03', 'waiman301', '2014-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS735670098320', '平野大和', 1, '+81 70-3452-4322', 1, '822476817119668193', '日本東京千代田区丸の内一丁目6番15号37階', '1987-07-20', 0, 0, 'hiray', '2002-01-26', 'yamath', '2018-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS526160140742', '前田大輔', 0, '+1 312-833-7777', 3, '120446470283202553', '677 Pedway Apartment 26, Chicago, IL 60601, United States', '1992-02-23', 0, 0, 'daisuke3', '2020-06-24', 'daisuke314', '2003-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS735371593114', '鄧天榮', 0, '+44 7576 301549', 1, '820856345666252315', 'Unit 5, Oxford Eco Centre, 66 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1995-06-10', 0, 0, 'tangtinwing', '2012-06-14', 'tangtw3', '2017-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS186106277641', '莫俊宇', 0, '+81 52-356-5707', 3, '010583340615205521', '47F, 1 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1998-12-16', 0, 0, 'chunyu1005', '2007-02-13', 'mokcy92', '2000-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS064973020661', 'Sherry Allen', 1, '+86 188-5385-7005', 1, '166002199076031876', 'No.15 building, No.743, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1991-07-20', 0, 0, 'sallen10', '2009-04-08', 'sherryall', '2016-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS638863135896', 'Rachel Moore', 0, '+81 70-4164-0215', 1, '357935878567704420', '40-kai, 1-7-16 Omido, Higashiosaka, Osaka, Japan', '1987-05-21', 0, 0, 'moorerach', '2002-08-06', 'moorerachel44', '2000-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS295890060354', 'Cynthia Harris', 1, '+81 52-888-2953', 1, '463497101564209288', 'Rm. 25, 15 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1995-04-14', 0, 0, 'cynthiaharris', '2014-10-31', 'cynharris1', '2020-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS894016107639', 'Valerie Wright', 1, '+1 213-315-9764', 2, '316744949318677673', '147 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1993-04-26', 0, 0, 'valerie1', '2006-02-08', 'valerie2', '2011-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS419657058496', 'Manuel Alexander', 1, '+81 90-2683-3063', 3, '953275348060452055', '日本東京中央区銀座三丁目12番19号2階', '1993-01-29', 0, 0, 'alexanderman10', '2017-06-13', 'male', '2016-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS498967444370', '文曉彤', 1, '+81 11-047-3372', 1, '619089302191293831', '日本札幌豊平区豊平三条十三丁目3番11号17階', '1986-08-26', 0, 0, 'manhiutung4', '2000-03-29', 'htman', '2004-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS301885574783', '原田架純', 0, '+44 (116) 401 7473', 1, '963364964026685516', 'No.44 Main building, 364 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1998-10-21', 0, 0, 'kasumi220', '2002-10-21', 'kasumharada', '2021-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS438801048201', 'Douglas Watson', 1, '+86 28-593-1161', 4, '080327438993431832', '中国成都市锦江区红星路三段734号25室', '1985-04-15', 0, 0, 'wadou', '2011-08-15', 'watson418', '2013-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS155147802814', '安藤光', 0, '+81 80-8630-4048', 4, '323659614759340846', 'Rm. 24, 2-5-17 Chitose, Atsuta Ward, Nagoya, Japan', '1985-12-13', 0, 0, 'hikaruando527', '2002-04-17', 'hikaruand', '2017-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS843033366652', '崔祖兒', 0, '+86 188-3359-2307', 3, '084058643702717705', '中国成都市成华区双庆路658号27楼', '1985-10-06', 0, 0, 'chochoyee329', '2008-01-16', 'cychoi', '2011-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS859868425589', '段震南', 0, '+86 199-6890-7500', 2, '326095572325868697', '31F, 784 Ganlan Rd, Pudong, Shanghai, China', '1995-07-28', 0, 0, 'duaz', '2013-11-23', 'duan10', '2020-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS475629828825', '宋璐', 1, '+81 3-2009-8367', 0, '233646207506013414', '日本東京千代田区丸の内一丁目6番9号47号室', '1988-06-22', 0, 0, 'slu331', '2020-01-05', 'songlu', '2002-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS631312892868', '西村聖子', 0, '+81 52-813-5145', 3, '712322308887692121', '17-kai, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1987-03-20', 0, 0, 'seikonishimura10', '2000-09-11', 'nishimuraseik', '2004-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS910978361680', '吕岚', 1, '+86 166-2012-6613', 3, '685082104452273947', '中国上海市浦东新区橄榄路144号7栋', '1993-08-24', 0, 0, 'lanlu', '2019-02-02', 'llu', '2014-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS159485658560', 'Christopher Flores', 0, '+86 20-600-7147', 3, '352093909085714361', '中国广州市海珠区江南西路273号华润大厦5室', '1987-12-19', 0, 0, 'cflores', '2020-07-31', 'christopherflo', '2020-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS841691121074', 'Louise Lee', 0, '+86 21-4063-4798', 4, '251741193341916512', 'Room 26, 82 Middle Huaihai Road, Huangpu District, Shanghai, China', '1993-04-02', 0, 0, 'leelouise09', '2006-09-06', 'lelouis', '2005-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS210771776492', '龚嘉伦', 1, '+81 11-771-6870', 3, '078141741081431243', '日本札幌白石区菊水三条五丁目2番19号39階', '1991-06-12', 0, 0, 'jialgo77', '2010-09-22', 'jialun1116', '2007-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS549179738691', '盧德華', 0, '+86 755-4167-7626', 2, '719486091604856892', 'Room 49, CR Building, 231 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1996-11-16', 0, 0, 'lotw', '2019-06-16', 'twlo7', '2016-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS004252916700', '鄺家強', 1, '+81 11-604-3135', 1, '003664873272662093', '3-kai, 2-1-2 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-08-27', 0, 0, 'kakeungkwo', '2007-09-02', 'kwokk', '2010-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS995657348061', '萧安琪', 1, '+81 80-7525-4230', 1, '571375869406056373', '3F, 9 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-09-29', 0, 0, 'xiaoanqi', '2019-03-09', 'anqix', '2005-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS925390037532', '杨睿', 0, '+81 90-1728-7045', 3, '539811461403983908', '8F, 5-4-7 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1985-09-22', 0, 0, 'ruiy', '2008-08-24', 'ruiy', '2000-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS020932116406', 'Jamie Graham', 1, '+81 3-5049-9896', 4, '795373043652436450', '26-kai, 3-15-5 Ginza, Chuo-ku, Tokyo, Japan', '1998-08-17', 0, 0, 'grahja71', '2014-07-15', 'jamigra', '2019-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS729736852772', '藤原美咲', 0, '+86 10-6911-9816', 2, '260719280989987223', '中国北京市东城区东单王府井东街238号18楼', '1988-05-08', 0, 0, 'mifujiwara', '2004-11-13', 'misakifu', '2007-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS444826563678', '廖明', 0, '+81 80-2813-4039', 1, '209512287319656701', '日本ならし学園南三丁目9番6号30号室', '1987-02-11', 0, 0, 'mingliao', '2017-07-27', 'liao83', '2010-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS377698340863', '莫致远', 1, '+81 70-9800-1998', 1, '378316136062783305', 'Rm. 39, 3-27-15 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-05-30', 0, 0, 'mo1124', '2017-07-12', 'mo5', '2010-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS472818194257', '譚秀文', 1, '+1 718-244-5001', 2, '525836284145851826', '413 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1992-05-26', 0, 0, 'saumanta', '2007-11-07', 'tsauman7', '2020-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS262299843841', '竹内翼', 1, '+81 70-7705-8901', 2, '671770401462629432', '49F, 2-1-18 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1988-09-13', 0, 0, 'takeuchi8', '2001-10-19', 'tsut126', '2010-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS235255117629', '岩崎海斗', 0, '+86 10-637-1455', 3, '295998422576429085', '47F, 589 68 Qinghe Middle St, Haidian District, Beijing, China', '1985-07-14', 0, 0, 'ikaito', '2017-10-25', 'iwasaki87', '2020-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS314065334097', 'Joseph Hamilton', 0, '+86 196-8476-6768', 1, '256013206248436669', '中国上海市浦东新区健祥路491号华润大厦25室', '1988-12-07', 0, 0, 'josephhamilton426', '2016-08-31', 'jha10', '2000-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS521498316072', '史詩涵', 0, '+81 80-7438-9506', 2, '052972083285679387', '12F, 19 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1995-01-06', 0, 0, 'shihashi', '2012-10-31', 'shshi209', '2003-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS228582453263', '夏致远', 1, '+44 5456 211953', 4, '112230963280592173', 'Flat 14, 471 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1998-03-12', 0, 0, 'zhiyuan719', '2011-05-16', 'zhixia', '2021-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS527080674985', 'Raymond Murray', 0, '+81 11-233-6525', 1, '654353168986057599', '42F, 6-1-5, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1995-04-17', 0, 0, 'raymond7', '2012-09-11', 'raymurray', '2001-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS629682696446', '元家文', 1, '+86 168-5442-2638', 1, '653821432382996696', '26F, 323 FuXingMenNei Street, XiCheng District, Beijing, China', '1995-01-04', 0, 0, 'kaman4', '2017-12-24', 'ykm401', '2007-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS399589817629', '佐々木詩乃', 1, '+86 158-7591-0090', 4, '532421635760686793', '中国广州市天河区天河路742号15号楼', '1996-12-04', 0, 0, 'ss2', '2003-01-03', 'shsasaki', '2017-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS965317836496', '莫致远', 0, '+44 7567 374776', 1, '905202505139872372', 'Unit 37, Oxford Eco Centre, 737 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1993-12-22', 0, 0, 'mzh9', '2006-04-05', 'mzhiyuan', '2016-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS982673885238', '佘杰倫', 1, '+86 20-0972-9546', 3, '864813767347886210', '中国广州市天河区天河路156号30室', '1996-04-02', 0, 0, 'chiehlunshe', '2005-03-22', 'clsheh42', '2007-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS134248427864', 'Victor Williams', 0, '+44 (1865) 21 0765', 4, '943150026838815299', 'Flat 6, 439 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1986-12-20', 0, 0, 'vw07', '2017-10-21', 'victowilliams1103', '2001-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS487207756921', '宋子异', 1, '+44 5784 469312', 0, '891139176972882345', 'Block 23, 227 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1988-03-11', 0, 0, 'ziyi92', '2020-10-05', 'sonziyi1', '2017-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS682692473708', 'Martha Peterson', 1, '+86 10-5386-3507', 3, '100306204915136974', '中国北京市東城区東直門內大街309号8号楼', '1993-04-30', 0, 0, 'mpeterson', '2012-03-09', 'pm813', '2006-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS874927317519', '赵云熙', 1, '+81 66-517-1363', 3, '771206210485098296', '日本おおさかし東住吉区東田辺三丁目27番15号43階', '1985-07-17', 0, 0, 'yunxizhao', '2004-07-31', 'yunxizha', '2017-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS052291265738', '松本陸', 0, '+86 194-2804-3119', 3, '027445383038658080', 'Room 22, 232 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1994-03-30', 0, 0, 'rmat', '2004-09-18', 'matsumoto308', '2013-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS020695419601', 'Joel Mendez', 0, '+81 66-622-8256', 0, '853364433229934606', '日本おおさかし平野区加美東四丁目9番1号23階', '1997-08-01', 0, 0, 'mendezjoel', '2001-10-20', 'joelmendez', '2003-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS609019481648', '區明詩', 1, '+1 312-769-1308', 2, '802769873647478480', '838 Pedway Suite 9, Chicago, IL 60601, United States', '1988-03-26', 0, 0, 'aums1', '2007-02-07', 'aumingsze18', '2002-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS962944425458', '田中架純', 1, '+86 170-2113-9026', 3, '087353667723620313', '中国上海市浦东新区健祥路62号28室', '1996-11-24', 0, 0, 'kasutanaka', '2012-07-11', 'kasumi91', '2000-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS588687328357', '小野美緒', 1, '+86 196-6780-8851', 4, '577624305638888280', '中国北京市东城区东单王府井东街826号41栋', '1997-07-22', 0, 0, 'onmio', '2008-02-03', 'mioono', '2009-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS716107989875', '向震南', 0, '+86 20-0902-0710', 4, '484656676409333654', '中国广州市白云区小坪东路307号1号楼', '1986-07-09', 0, 0, 'zhennxi222', '2010-10-08', 'xiangzhennan64', '2017-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS832320738844', '山田聖子', 0, '+44 7627 374170', 1, '633098593091464675', 'Flat 40, 319 New Street, Birmingham, B2 4DB, United Kingdom', '1989-05-16', 0, 0, 'yamadseiko', '2003-11-07', 'yamseik', '2021-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS414864394152', 'Wendy Jenkins', 0, '+81 80-6236-3009', 3, '135329563626445601', '日本おおさかし西成区天神ノ森二丁目1番2号11号室', '1985-11-05', 0, 0, 'wendyjenk', '2017-08-14', 'wendyj', '2007-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS941659887815', '黎惠妹', 0, '+86 136-8848-8367', 4, '091919402761400188', 'Room 20, 212 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1998-06-23', 0, 0, 'hml2', '2018-09-08', 'lahuimei', '2000-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS900550434605', '黎震南', 1, '+81 70-6403-7824', 0, '723848645493665846', '35F, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1994-07-12', 0, 0, 'lizh', '2010-03-19', 'zhennanli9', '2013-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS502736826529', 'Dennis Daniels', 1, '+81 80-2041-3636', 3, '014681697679854584', '日本札幌豊平区豊平三条十三丁目3番20号3階', '1998-05-09', 0, 0, 'dend3', '2013-01-18', 'danielsd', '2001-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS864098738166', 'Clifford Aguilar', 0, '+81 70-2450-0314', 0, '223248609544855401', '日本おおさかし西成区天神ノ森二丁目1番16号29階', '1990-02-18', 0, 0, 'caguilar', '2016-06-29', 'clifford209', '2003-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS627036767123', '许睿', 0, '+86 133-4164-1946', 3, '079110915162481510', '中国北京市東城区東直門內大街544号26号楼', '1986-01-14', 0, 0, 'ruixu1977', '2009-02-12', 'xurui', '2009-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS340841638044', '于岚', 1, '+81 80-8960-7088', 3, '381055274890404503', '日本札幌豊平区豊平三条十三丁目3番13号10階', '1989-08-02', 0, 0, 'lanyu705', '2014-09-20', 'lany', '2002-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS308255577325', '鐘家強', 1, '+81 90-3971-3296', 3, '537916806145353222', '43F, 2-1-4 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1996-11-11', 0, 0, 'kakeungchu', '2021-11-12', 'chunkk2006', '2011-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS248631803340', '藤田花', 1, '+44 7604 168896', 1, '223682968093990635', 'No.14 Main building, 625 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1996-05-23', 0, 0, 'hana105', '2014-08-06', 'fujitahana90', '2012-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS620012686331', 'Rachel Wallace', 1, '+86 10-976-4634', 3, '273988433039979815', '中国北京市东城区东单王府井东街508号26室', '1986-04-22', 0, 0, 'wallarachel1205', '2000-04-19', 'racwallace10', '2000-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS852087285639', '冯秀英', 0, '+81 70-3658-1207', 1, '989501622337015161', '日本なごやし北区清水三丁目19番9号18階', '1985-03-31', 0, 0, 'feng1947', '2022-01-11', 'fxiuying405', '2011-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS981820817174', 'Jamie Snyder', 1, '+81 66-134-1733', 3, '605836823759618123', '49F, 1-1-7 Deshiro, Nishinari Ward, Osaka, Japan', '1986-09-27', 0, 0, 'snydej', '2014-01-07', 'jamie123', '2012-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS911040540437', '史詩涵', 1, '+86 769-1140-3502', 1, '296983206632969340', '中国东莞珊瑚路885号23栋', '1989-10-22', 0, 0, 'shis', '2011-03-05', 'shishiha', '2019-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS653981396865', 'Samuel Snyder', 1, '+1 838-051-9921', 1, '307118033210625325', '430 Central Avenue Apt 6, Albany, NY 12205, United States', '1988-06-16', 0, 0, 'snyder70', '2005-08-08', 'samusnyd1', '2020-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS072875134506', 'Norman Howard', 0, '+86 10-498-4759', 4, '855376934844527486', '中国北京市房山区岳琉路166号50栋', '1988-04-20', 0, 0, 'howard319', '2021-05-29', 'hnorman', '2020-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS026638285050', '溫秀文', 0, '+86 178-0354-1046', 1, '414948662308122859', '中国成都市成华区二仙桥东三路682号5号楼', '1990-10-12', 0, 0, 'wsm710', '2012-05-19', 'wan2', '2007-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS249100250007', '清水凛', 0, '+81 74-068-9496', 4, '136066212544361681', '日本ならし学園南三丁目9番8号18号室', '1988-02-05', 0, 0, 'shri', '2000-10-27', 'shimizurin16', '2010-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS140226312261', '何詩涵', 1, '+86 769-0977-5015', 1, '198868722923086080', '中国东莞坑美十五巷377号17室', '1989-03-19', 0, 0, 'she8', '2013-08-31', 'shihanhe301', '2016-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS191948059914', '菅原海斗', 0, '+81 11-314-6066', 0, '403023245607847902', '39F, 5-4-14 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1991-01-20', 0, 0, 'kaitosuga1961', '2015-09-01', 'sugawarakaito', '2020-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS115330229222', 'Jason Washington', 1, '+86 158-1523-3236', 1, '600234551750903237', '中国成都市锦江区人民南路四段452号华润大厦6室', '1989-09-30', 0, 0, 'jasonwashington', '2006-02-21', 'jasonwashington', '2013-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS634997454425', 'Jeff Wilson', 1, '+86 193-2864-8761', 3, '876512922702450580', '中国深圳罗湖区田贝一路730号28栋', '1985-10-31', 0, 0, 'jeffwilso6', '2021-08-15', 'jeff2', '2017-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS640157918258', 'Allen Turner', 1, '+44 7322 809380', 4, '821250508513182598', 'Block 41, 256 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1991-11-30', 0, 0, 'turnall93', '2000-04-25', 'turner6', '2006-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS728772768442', '崔頴思', 0, '+86 166-9859-4210', 1, '788616018548794692', '中国深圳罗湖区蔡屋围深南东路764号14室', '1993-05-10', 0, 0, 'wingszech', '2002-04-26', 'choiwingsze', '2022-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS402447979282', '松本樹', 1, '+81 66-076-8547', 4, '339939837012372878', '1F, 1-1-10 Deshiro, Nishinari Ward, Osaka, Japan', '1996-09-19', 0, 0, 'itsukim', '2002-02-05', 'itsukimatsu1216', '2020-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS674481217150', '内田凛', 0, '+86 10-344-2621', 2, '583107381825403194', 'Room 20, 892 FuXingMenNei Street, XiCheng District, Beijing, China', '1987-01-02', 0, 0, 'uchida423', '2010-02-12', 'rin222', '2004-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS871342792341', '韓德華', 1, '+86 177-4799-4765', 2, '504777715476963285', '4F, 898 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1986-08-16', 0, 0, 'takwahhan', '2016-07-02', 'htw', '2006-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS719428467777', '邱睿', 1, '+81 66-634-5001', 3, '273335556198585572', '日本おおさかし西成区天神ノ森二丁目1番2号19階', '1995-04-23', 0, 0, 'qiu66', '2012-03-29', 'qiurui524', '2001-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS870076087258', '杜力申', 0, '+86 148-6317-4691', 1, '861128874225979994', 'Room 4, CR Building, 213 68 Qinghe Middle St, Haidian District, Beijing, China', '1990-01-30', 0, 0, 'liksunto40', '2021-03-15', 'liksunt', '2019-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS876517525938', '蔡富城', 1, '+86 755-562-8262', 3, '802981567343983228', 'Room 19, CR Building, 284 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1993-01-23', 0, 0, 'fushingcho806', '2016-11-11', 'choifushing9', '2021-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS641609633438', 'Mildred Moore', 1, '+86 155-9483-9755', 1, '440784442044212632', '中国深圳罗湖区蔡屋围深南东路544号36室', '1994-03-13', 0, 0, 'mmi2', '2008-09-21', 'moom', '2019-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS291275228677', '中島葉月', 1, '+81 11-621-7367', 2, '808836162145777136', '日本札幌厚別区上野幌一条二丁目1番11号16階', '1993-09-24', 0, 0, 'haznak1128', '2021-10-29', 'hazuki9', '2015-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS024855097262', '西村陽菜', 1, '+81 74-475-7450', 3, '799313844207903738', '日本ならし大和郡山市本庄町一丁目1番16号12号室', '1987-12-18', 0, 0, 'nhina', '2010-09-17', 'nishihina', '2015-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS876615369133', '上田光', 1, '+86 179-8537-7958', 3, '999266597793504661', 'No.50 building, No. 914, Shuangqing Rd, Chenghua District, Chengdu, China', '1993-11-12', 0, 0, 'uedahikaru', '2012-07-30', 'uedahikaru', '2017-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS882920344841', 'Carrie Porter', 1, '+44 5304 629162', 2, '944801149733281200', 'Flat 1, 633 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1993-07-17', 0, 0, 'carrie2', '2017-01-12', 'carp54', '2004-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS212421371989', '莫宇宁', 0, '+1 330-437-0134', 4, '348978134057034126', '732 Ridgewood Road Apt 9, Akron, OH 44321, United States', '1989-06-18', 0, 0, 'moy1108', '2008-01-25', 'moyuning10', '2012-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS048305077664', '河野凛', 1, '+81 11-955-8441', 0, '775328126435182739', '28F, 5-4-20 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1992-01-15', 0, 0, 'kr15', '2011-09-16', 'konorin', '2017-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS942421365679', '藤原和真', 0, '+1 312-598-1715', 3, '335358202435220449', '874 Rush Street Apt 18, Chicago, IL 60611, United States', '1998-10-16', 0, 0, 'fujiwarakazuma', '2000-02-03', 'fujiwarakazuma808', '2013-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS549615671541', '龚致远', 1, '+81 80-5945-5155', 3, '604956482025001602', '4-kai, 2-3-20 Yoyogi, Shibuya-ku, Tokyo, Japan', '1998-02-20', 0, 0, 'zgo', '2008-11-16', 'gongzhi', '2007-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS163807503124', '安藤七海', 0, '+86 28-245-2477', 0, '023355403657322011', 'No.21 building, 255 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1994-03-08', 0, 0, 'nanamiando819', '2009-04-30', 'nanamiando', '2001-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS848925682496', 'Randy Tran', 1, '+86 167-4131-2492', 2, '513102358306932290', '中国北京市東城区東直門內大街798号5室', '1994-12-30', 0, 0, 'randtra', '2014-01-20', 'randyt', '2000-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS268831020889', '柴田葵', 0, '+86 139-1148-2182', 1, '613344865084635876', '中国广州市海珠区江南西路166号华润大厦39室', '1989-07-18', 0, 0, 'shibataao', '2018-07-31', 'saoi', '2020-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS529698857743', '官發', 0, '+81 70-0621-4838', 3, '609247743856538175', '日本なごやし熱田区千年二丁目5番8号30号室', '1995-06-03', 0, 0, 'kofat', '2017-03-27', 'koon1', '2012-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS390771247862', '蒋震南', 1, '+81 90-4894-3696', 3, '573317464528309426', '25-kai, 18 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1997-06-28', 0, 0, 'jiang10', '2021-09-14', 'jiang61', '2020-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS300174745142', '應嘉欣', 1, '+1 838-071-1588', 2, '627546641672199026', '299 State Street Apt 43, Albany, NY 12203, United States', '1993-10-28', 0, 0, 'karyany', '2006-05-09', 'yingky410', '2004-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS423972559963', '千葉大輔', 1, '+86 21-5280-7793', 3, '903407836151952449', '中国上海市闵行区宾川路284号华润大厦44室', '1988-12-27', 0, 0, 'chd', '2012-02-21', 'daisuch', '2006-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS420999499665', 'Shawn Hernandez', 1, '+81 90-8549-0056', 3, '432922977240140229', '10F, 2-5-14 Chitose, Atsuta Ward, Nagoya, Japan', '1992-11-20', 0, 0, 'hersh5', '2019-10-20', 'hsha226', '2001-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS737371284970', '傅俊宇', 1, '+1 838-446-2041', 1, '491855605301125085', '435 Broadway 3rd Floor, Albany, NY 12207, United States', '1994-04-27', 0, 0, 'cyf', '2004-08-01', 'cyfu', '2010-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS743922027307', '上野蓮', 0, '+81 90-6068-1282', 3, '658512668319496270', '日本おおさかし東住吉区東田辺三丁目27番5号44階', '1993-08-30', 0, 0, 'uenoren1985', '2016-11-15', 'ueren1975', '2015-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS440252321143', 'Ann Salazar', 1, '+44 7622 025060', 1, '705083882339111012', 'No.31 Main building, 372 Redfern St, Liverpool, L20 8JB, United Kingdom', '1992-01-31', 0, 0, 'ann2020', '2013-09-30', 'as7', '2014-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS872887338780', '薛青雲', 1, '+81 11-285-7551', 2, '425232702624606219', '日本札幌白石区菊水三条五丁目2番17号42号室', '1992-05-18', 0, 0, 'cws', '2014-12-26', 'cwsi6', '2017-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS100103084046', 'Amanda Bailey', 1, '+86 188-9503-0240', 1, '678721560372772144', 'No.35 building, 942 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1994-04-17', 0, 0, 'baileyamanda', '2008-08-19', 'bailam', '2004-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS422983142454', '宋岚', 1, '+81 90-6316-6172', 1, '461556199096928858', '日本なごやし瑞穂区河岸町四丁目20番19号38号室', '1990-09-14', 0, 0, 'lsong', '2008-09-07', 'lansong', '2016-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS627378683314', '田中架純', 1, '+81 70-5788-2307', 3, '806999028182952504', '26F, 6 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1988-08-10', 0, 0, 'tanaka10', '2018-11-23', 'kasumt1', '2012-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS977714219413', '杨睿', 0, '+86 769-358-0469', 3, '588713552170829774', '中国东莞坑美十五巷755号华润大厦44室', '1993-01-20', 0, 0, 'ryang11', '2021-07-03', 'ruiya', '2011-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS524365343213', '董秀英', 0, '+1 312-429-3912', 2, '108247754696445374', '127 North Michigan Ave Apt 8, Chicago, IL 60611, United States', '1992-08-15', 0, 0, 'xiuyingdong407', '2015-05-16', 'xidong', '2003-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS585101634267', '中野陸', 1, '+81 66-294-6727', 2, '030816922104556493', '日本おおさかし東住吉区東田辺三丁目27番7号41階', '1996-12-27', 0, 0, 'riku1980', '2004-08-25', 'nakrik', '2006-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS118679130532', '鄭慧琳', 0, '+86 755-6548-3867', 0, '791935849819751136', '中国深圳福田区景田东一街881号21号楼', '1991-07-22', 0, 0, 'wailamche5', '2009-10-29', 'wailamc', '2007-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS956881684085', '房發', 0, '+86 198-5252-0521', 2, '282190222435400760', 'No.6 building, No. 732, Shuangqing Rd, Chenghua District, Chengdu, China', '1987-05-07', 0, 0, 'fongfa', '2014-10-19', 'fongfat', '2002-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS023161634887', 'Sherry Moore', 1, '+44 (161) 991 2146', 1, '713267474377774680', 'Flat 35, 32 Mosley St, Manchester, M2 3AQ, United Kingdom', '1992-02-12', 0, 0, 'sherry4', '2018-02-02', 'shermoore', '2009-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS477165826922', '石井美羽', 1, '+1 838-448-9067', 4, '538910249777539516', '283 Lark Street Apt 15, Albany, NY 12210, United States', '1991-01-23', 0, 0, 'ishmi701', '2016-10-26', 'ishiimi526', '2013-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS640726858118', '鈴木陽菜', 0, '+81 70-4714-2134', 0, '304627770305550690', '35F, 2-1-4 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1989-01-06', 0, 0, 'suhi9', '2003-08-14', 'hina12', '2001-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS783089045922', '崔富城', 1, '+86 145-0181-5197', 4, '947231808648637103', 'No.43 building, 373 Ganlan Rd, Pudong, Shanghai, China', '1989-04-06', 0, 0, 'choifushing906', '2015-10-06', 'fushing816', '2017-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS624463186014', '田中大和', 0, '+81 80-4361-2858', 2, '747078842627794745', '日本札幌白石区菊水三条五丁目4番18号35号室', '1993-12-16', 0, 0, 'tanaka10', '2011-08-09', 'tanaka1970', '2005-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS215996496556', 'Edna Vasquez', 1, '+86 755-084-2649', 3, '080499703888357427', '中国深圳罗湖区蔡屋围深南东路559号华润大厦37室', '1991-10-13', 0, 0, 'ednavas10', '2017-03-03', 'vasquez98', '2007-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS284559463513', '横山明菜', 0, '+44 5929 998624', 1, '909339213534278089', 'Block 7, 850 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1988-06-16', 0, 0, 'yokoyama422', '2021-11-16', 'akinayokoy15', '2018-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS807526310278', '餘嘉欣', 0, '+81 90-5827-1354', 3, '058899829450239357', '48-kai, 13-3-11 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1985-08-18', 0, 0, 'karyanyue', '2005-08-03', 'yky93', '2011-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS442977797301', 'Lisa Gonzalez', 0, '+44 (151) 939 9815', 0, '656319896368560865', 'Unit 5, Oxford Eco Centre, 56 Redfern St, Liverpool, L20 8JB, United Kingdom', '1989-11-27', 0, 0, 'lisa2', '2012-01-25', 'lisa1987', '2002-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS170837504392', '程秀英', 1, '+44 5173 584012', 3, '780832484658045052', 'Block 15, 717 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1996-04-07', 0, 0, 'cxi', '2003-03-08', 'chengxiuy405', '2006-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS358480149602', '韩致远', 0, '+1 614-665-1610', 1, '537205570697806318', '613 Tremont Road Suite 2, Columbus, GA 43212, United States', '1989-12-26', 0, 0, 'zhan', '2010-12-08', 'hazhi', '2013-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS192047989978', '韓家文', 1, '+44 (1865) 04 2692', 3, '867317363551537869', 'Unit 4, Oxford Eco Centre, 470 Park End St, Oxford, OX1 1JD, United Kingdom', '1993-05-15', 0, 0, 'hankaman', '2007-08-20', 'kmhan1', '2014-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS455660801270', '戴晓明', 0, '+1 838-089-2959', 1, '627699460437668765', '19 Central Avenue Apt 24, Albany, NY 12205, United States', '1986-11-05', 0, 0, 'xiaoming4', '2005-08-03', 'xida7', '2004-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS215926481317', '鄭秀文', 0, '+1 212-381-9888', 3, '287012551626877646', '234 Wooster Street Apartment 31, New York, NY 10012, United States', '1985-11-12', 0, 0, 'saumancheng2', '2001-09-26', 'sauman2', '2010-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS975912914969', '木下蒼士', 0, '+86 10-003-8465', 1, '320564287097578624', 'Room 36, CR Building, 157 East Wangfujing Street, Dongcheng District , Beijing, China', '1988-04-14', 0, 0, 'aoshi4', '2004-09-18', 'kinoshitaa', '2001-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS265173591014', '鈴木彩乃', 0, '+44 7593 342709', 1, '407206421484671678', 'No.35 Main building, 606 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1986-05-09', 0, 0, 'suzukiayano', '2018-05-29', 'ayanosuz', '2018-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS736053522093', '田村百恵', 0, '+81 80-3044-4285', 1, '110546609022553609', '日本おおさかし平野区加美東四丁目9番5号34号室', '1993-01-14', 0, 0, 'momoetamu', '2012-11-13', 'tamuramomoe', '2016-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS494800612207', 'Heather Jones', 1, '+44 (151) 876 7416', 0, '636703351219023236', 'Unit 13, Oxford Eco Centre, 657 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1985-04-25', 0, 0, 'jonehe', '2002-12-02', 'heather1996', '2014-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS689349729200', 'Troy Hunter', 0, '+81 11-851-7117', 2, '003655592288165688', '日本札幌白石区菊水三条五丁目4番2号35号室', '1997-07-23', 0, 0, 'ht02', '2010-01-10', 'hutroy', '2000-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS610182940815', '區富城', 0, '+86 760-7967-6780', 3, '470891253499294696', '中国中山京华商圈华夏街721号3号楼', '1998-10-05', 0, 0, 'fsau', '2000-11-26', 'fsa1951', '2018-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS132256483754', '餘浩然', 1, '+86 10-241-0930', 3, '780391914333044079', '中国北京市东城区东单王府井东街100号华润大厦2室', '1996-11-06', 0, 0, 'hyyue', '2000-03-25', 'yue425', '2016-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS828172367169', '平野湊', 0, '+1 330-135-3784', 4, '150549812145291836', '29 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1994-06-10', 0, 0, 'minato1023', '2006-09-27', 'minatohi', '2016-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS176476592393', '杨震南', 0, '+86 185-4660-9178', 1, '267070739047950891', '中国上海市徐汇区虹桥路662号40号楼', '1985-12-28', 0, 0, 'zhennan5', '2015-05-15', 'yzhenn', '2001-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS733064447733', '江世榮', 1, '+1 212-075-3294', 3, '849080985271839423', '940 Fifth Avenue Suite 44, New York, NY 10017, United States', '1996-10-09', 0, 0, 'saiwing716', '2013-11-04', 'kosaiwing', '2017-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS210143525995', 'Debra Boyd', 0, '+81 70-9677-4389', 3, '549988492578051269', '日本おおさかし平野区加美東四丁目9番16号14階', '1992-04-04', 0, 0, 'debra829', '2014-04-10', 'debboyd', '2020-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS315810613867', '蔡安琪', 1, '+86 181-9507-7687', 1, '354649827415697476', '中国北京市海淀区清河中街68号710号11楼', '1992-08-11', 0, 0, 'anqicai', '2019-08-14', 'caanqi9', '2012-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS079901064797', 'Maria Thompson', 0, '+81 90-5853-5311', 1, '995944841903423057', '日本札幌豊平区豊平三条十三丁目3番10号39階', '1992-03-06', 0, 0, 'mthompson', '2004-10-24', 'thompsonm', '2009-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS878181222496', '小林蓮', 0, '+44 (1223) 82 5294', 0, '320642373927190066', 'No.3 Main building, 384 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1988-10-13', 0, 0, 'rkobayashi', '2003-11-23', 'kren', '2006-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS447561827524', 'Wanda Richardson', 1, '+86 10-689-1513', 4, '617096725181490470', 'Room 39, 411 Sanlitun Road, Chaoyang District, Beijing, China', '1986-08-25', 0, 0, 'wandar', '2004-03-20', 'riw7', '2014-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS336722522102', 'Douglas Grant', 0, '+81 52-245-7778', 3, '388185560153020419', '日本なごやし守山区瀬古東二丁目171番10号43階', '1990-12-13', 0, 0, 'grdoug', '2011-05-05', 'douglasgran', '2001-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS015309117818', '田中美咲', 1, '+1 718-989-8647', 1, '851310288158539753', '948 Flatbush Ave Apartment 27, Brooklyn, NY 11225, United States', '1991-02-26', 0, 0, 'tanm', '2013-09-27', 'misaki1', '2019-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS813612835487', '坂本湊', 0, '+1 330-804-9346', 1, '652913401064176809', '481 Fern Street Apt 27, Akron, OH 44307, United States', '1987-10-21', 0, 0, 'sminato', '2010-06-05', 'sakamoto1', '2011-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS266550558686', '彭璐', 1, '+44 (151) 970 0362', 3, '543189513568856033', 'Flat 38, 23 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1998-09-08', 0, 0, 'lu82', '2009-02-24', 'lupeng915', '2019-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS375286392374', '白梓軒', 0, '+86 769-8312-3830', 2, '469934780054149392', '中国东莞东泰五街334号2栋', '1990-07-09', 0, 0, 'tszhin10', '2021-08-28', 'tszhin10', '2009-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS616948352313', '内田美咲', 0, '+1 614-770-9254', 3, '967122576201176870', '367 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1989-12-23', 0, 0, 'uchida02', '2017-06-01', 'ucm', '2000-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS875016215176', '顾子韬', 0, '+86 177-7619-0547', 1, '467398143808922058', '中国上海市闵行区宾川路640号50室', '1986-05-29', 0, 0, 'gu46', '2008-07-06', 'zgu425', '2010-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS953425379330', '餘秀文', 0, '+1 213-023-1050', 3, '818349952034370626', '448 Wall Street Apartment 31, Los Angeles, CA 90003, United States', '1993-11-13', 0, 0, 'yuesm', '2018-11-04', 'smyue', '2016-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS678934614261', '董云熙', 0, '+86 21-615-5730', 0, '080974821674315770', '中国上海市徐汇区虹桥路427号12楼', '1992-03-21', 0, 0, 'dongyunxi', '2006-09-26', 'dongyunx', '2012-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS609518893975', 'Glenn Russell', 0, '+81 66-555-7907', 0, '174674295614612972', '日本おおさかし東住吉区東田辺三丁目27番6号49号室', '1989-06-17', 0, 0, 'russell9', '2008-12-05', 'gleru', '2016-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS274931386897', '卢秀英', 0, '+86 760-367-8390', 2, '098931786150274535', 'No.31 building, 906 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1990-04-20', 0, 0, 'xiuyl', '2002-09-15', 'lxiuying4', '2020-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS383441263024', '吳國賢', 0, '+44 (116) 893 8321', 1, '908601448033844453', 'Block 5, 844 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-03-18', 0, 0, 'ng10', '2007-11-29', 'kwokyin1105', '2006-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS478362300218', '顧秀文', 0, '+86 769-6804-3912', 0, '704187274543256399', 'No.16 building, 588 Shanhu Rd, Dongguan, China', '1998-04-30', 0, 0, 'kusm402', '2021-11-30', 'ku907', '2002-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS869794706925', 'George Owens', 1, '+44 7231 009321', 3, '359833605297203780', 'No.8 Main building, 787 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1989-05-27', 0, 0, 'geowen48', '2004-09-18', 'owegeorge', '2003-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS128950568135', '韩子异', 0, '+81 70-8847-7570', 2, '836268533075693148', '38F, 2-3-19 Yoyogi, Shibuya-ku, Tokyo, Japan', '1986-07-23', 0, 0, 'ziyihan', '2006-01-07', 'hanziyi', '2000-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS852999068197', '大塚美月', 0, '+44 5679 087451', 1, '989123106372278161', 'Unit 1, Oxford Eco Centre, 917 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1993-04-03', 0, 0, 'miotsuka', '2012-01-03', 'om9', '2004-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS002983243534', '曾睿', 1, '+1 330-185-5581', 3, '864622629400466085', '283 Fern Street Apt 5, Akron, OH 44307, United States', '1988-06-06', 0, 0, 'zengrui', '2009-11-08', 'zeng3', '2007-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS163480286737', '苗志明', 1, '+44 (116) 551 6226', 3, '211148274667335422', 'No.41 Main building, 311 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1994-04-10', 0, 0, 'chiming125', '2015-03-20', 'chiming816', '2010-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS099747333248', '區慧儀', 1, '+1 614-397-4659', 4, '676782925272746717', '774 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1991-06-11', 0, 0, 'au927', '2013-02-06', 'waiyeeau', '2014-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS660933175422', '張朝偉', 0, '+86 152-7753-0948', 1, '926193034482283591', '中国北京市西城区西長安街571号17室', '1986-03-27', 0, 0, 'cwcheu', '2016-11-23', 'chiuwaicheu', '2015-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS695928077911', '黎云熙', 1, '+1 213-181-1019', 3, '097255665477940252', '334 Sky Way Apartment 4, Los Angeles, CA 90043, United States', '1987-06-01', 0, 0, 'yunxili1', '2010-02-20', 'yli1971', '2012-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS767594590049', '莫國權', 0, '+86 28-211-1578', 0, '084842398167817076', '中国成都市锦江区红星路三段919号华润大厦19室', '1994-12-03', 0, 0, 'kkmok', '2018-12-15', 'mokkwokkuen', '2012-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS835630351549', 'Brandon Simmons', 1, '+86 20-0157-3803', 1, '892605132180084704', '中国广州市白云区小坪东路903号13栋', '1998-04-08', 0, 0, 'brandon10', '2012-12-01', 'simbrandon', '2011-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS539407049147', '姚家玲', 0, '+86 195-6972-7203', 0, '982796812830303092', '中国北京市海淀区清河中街68号411号24号楼', '1993-12-25', 0, 0, 'ykalin', '2004-12-10', 'yeowkaling', '2002-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS059084254265', 'Willie Kennedy', 1, '+81 66-427-2232', 4, '218693184553932862', '日本おおさかし平野区加美東四丁目9番15号32階', '1998-11-18', 0, 0, 'williekennedy', '2006-05-28', 'williekennedy505', '2020-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS404474667055', '譚裕玲', 1, '+1 330-966-0038', 0, '814409673490132109', '593 Riverview Road Apt 39, Akron, OH 44313, United States', '1998-08-02', 0, 0, 'tamyuling', '2016-06-06', 'tayuling5', '2020-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS963574490122', '常岚', 1, '+1 212-785-4975', 3, '903834232473240269', '388 Wooster Street Apartment 5, New York, NY 10012, United States', '1994-10-04', 0, 0, 'clan', '2005-03-22', 'changlan315', '2004-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS820677138521', 'Tammy Long', 0, '+81 80-1782-8607', 2, '296267785701197698', '日本なごやし守山区瀬古東二丁目171番7号33階', '1997-12-04', 0, 0, 'lotammy2', '2001-02-28', 'tlong3', '2000-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS125412862692', '范璐', 0, '+86 20-780-6469', 3, '768916318148346494', '中国广州市越秀区中山二路959号39室', '1988-01-15', 0, 0, 'fanl8', '2019-06-04', 'falu', '2017-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS154955599744', '陳霆鋒', 0, '+44 (121) 959 7926', 3, '526658070024464924', 'Unit 14, Oxford Eco Centre, 187 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1998-11-16', 0, 0, 'chan5', '2018-02-03', 'chatingfung', '2011-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS189046507961', '沈云熙', 1, '+86 155-3263-1633', 1, '308878132541772958', '中国广州市白云区机场路棠苑街五巷54号9楼', '1994-07-28', 0, 0, 'shey', '2006-12-12', 'yunshe', '2007-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS468049351485', '姜子异', 0, '+81 66-034-8184', 1, '178762910668717527', '日本おおさかし東住吉区東田辺三丁目27番14号5階', '1992-11-02', 0, 0, 'ziyi5', '2008-07-31', 'zijiang', '2006-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS098159898840', '黃梓晴', 0, '+86 154-4608-3864', 3, '761546754711036103', '中国成都市锦江区红星路三段562号18室', '1989-04-25', 0, 0, 'wotszching', '2002-10-13', 'wong3', '2020-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS084965616179', '汪致远', 1, '+81 74-563-7951', 4, '194842112235502231', '日本ならし西大寺赤田町一丁目7番4号31階', '1993-05-02', 0, 0, 'zhiyuanwang', '2002-02-25', 'zwa', '2016-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS833715296240', '岩崎一輝', 0, '+81 80-2060-8951', 4, '953495432017818776', 'Rm. 42, 2-5-13 Chitose, Atsuta Ward, Nagoya, Japan', '1997-10-19', 0, 0, 'ikki5', '2003-11-27', 'ikkiw', '2021-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS358502663912', '高祖兒', 1, '+44 (121) 338 0463', 4, '710580400088411654', 'Flat 47, 176 New Street, Birmingham, B2 4DB, United Kingdom', '1999-01-24', 0, 0, 'kcy1014', '2005-01-13', 'kaochoyee6', '2004-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS436157129002', '龚子韬', 0, '+1 312-609-9931', 3, '804453696057701543', '470 North Michigan Ave Apartment 28, Chicago, IL 60611, United States', '1997-08-03', 0, 0, 'zitao4', '2007-09-03', 'zitao120', '2016-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS899666323754', '狄志遠', 1, '+1 212-692-3549', 3, '997799956410349690', '196 Canal Street Suite 40, New York, NY 10013, United States', '1987-11-22', 0, 0, 'cyt1', '2013-06-05', 'cyti905', '2015-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS934191031252', '狄頴思', 1, '+81 90-5789-5713', 0, '454258259590218402', 'Rm. 7, 1 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1998-10-14', 0, 0, 'ti10', '2000-03-20', 'wingsze9', '2018-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS696209394596', 'Edwin Jenkins', 0, '+81 11-466-4462', 3, '053187785838848927', '48-kai, 5-4-12 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-01-31', 0, 0, 'jenkins1227', '2017-01-23', 'jenkiedwin', '2011-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS961765388704', '佐々木架純', 1, '+44 7283 994653', 2, '714447049632207210', 'Block 1, 814 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1989-11-18', 0, 0, 'kasumisas1949', '2013-09-05', 'kasas', '2005-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS466324135507', 'Paula Ross', 0, '+81 52-695-3154', 3, '288240433611781206', '40F, 10 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-08-24', 0, 0, 'paula924', '2004-05-23', 'pross', '2008-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS425137994670', 'Margaret Gray', 0, '+44 (161) 253 2233', 2, '346797517033126185', 'Unit 2, Oxford Eco Centre, 486 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-12-13', 0, 0, 'margray', '2014-06-17', 'marggray', '2005-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS360177740980', '文天樂', 0, '+1 718-556-5016', 2, '758511430367415756', '200 Flatbush Ave Apt 25, Brooklyn, NY 11225, United States', '1998-03-13', 0, 0, 'tlma', '2010-10-26', 'mantinlok', '2011-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS450838491178', 'Edwin Chen', 1, '+81 80-4263-7111', 1, '472363894535656054', 'Rm. 39, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1998-02-01', 0, 0, 'chenedwi', '2001-12-17', 'chen2', '2004-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS603440424937', '林詩君', 1, '+1 718-397-0548', 4, '931486573082675483', '246 Columbia St Apartment 37, Brooklyn, NY 11231, United States', '1988-03-18', 0, 0, 'laszekwan1103', '2020-05-21', 'skl2009', '2015-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS806775133663', 'Sheila Nguyen', 0, '+44 (1865) 93 8987', 3, '494723324050097316', 'Flat 5, 839 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1985-02-27', 0, 0, 'nguyesheila', '2009-07-01', 'nguyensh', '2005-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS910759006186', '傅震南', 0, '+1 312-523-6174', 4, '362688879013723127', '891 Pedway 3rd Floor, Chicago, IL 60601, United States', '1993-08-12', 0, 0, 'zhennanf', '2000-10-20', 'zhefu', '2016-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS997939407380', 'Susan Adams', 0, '+81 90-1253-0779', 0, '569061482551730591', '日本おおさかし平野区加美東四丁目9番11号4号室', '1985-10-12', 0, 0, 'adamssusan', '2014-01-16', 'susana', '2007-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS871896077134', '河野凛', 1, '+1 330-524-7081', 4, '760009810854732738', '53 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1985-08-20', 0, 0, 'krin', '2017-07-08', 'rink', '2004-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS456822989974', 'Craig Henderson', 0, '+86 181-1853-7048', 3, '353541476382459107', 'No.15 building, 643 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-05-23', 0, 0, 'hendcr1', '2021-07-12', 'craig212', '2005-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS603751422092', '中野愛梨', 0, '+1 330-369-5477', 3, '422793782024614037', '573 West Market Street Suite 34, Akron, OH 44333, United States', '1995-01-26', 0, 0, 'nakanoa', '2004-08-15', 'nakanoairi1130', '2019-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS465561895652', '邓杰宏', 1, '+86 154-0330-5079', 0, '026226237978676939', 'Room 14, 122 Shanhu Rd, Dongguan, China', '1995-07-17', 0, 0, 'jdeng', '2020-04-19', 'dejieho1', '2012-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS264845341271', '丁晓明', 0, '+86 171-7243-0629', 1, '874972518492634078', '中国广州市越秀区中山二路539号4楼', '1992-06-13', 0, 0, 'xding', '2017-07-23', 'dxiaom2013', '2010-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS969799104682', '池田蒼士', 0, '+86 169-2729-8129', 2, '244280895051475403', '中国成都市成华区二仙桥东三路871号22号楼', '1993-09-05', 0, 0, 'ai85', '2021-11-20', 'aikeda811', '2004-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS819372234860', '吕致远', 0, '+81 80-3785-2339', 1, '833325033802786351', '日本ならし西大寺赤田町一丁目7番5号6階', '1995-11-14', 0, 0, 'zlu', '2013-08-22', 'luzhiy2', '2011-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS690319224420', '曾岚', 1, '+86 21-9465-9573', 2, '140779099892191419', '中国上海市浦东新区橄榄路732号13号楼', '1993-11-14', 0, 0, 'lzeng1958', '2017-03-21', 'lanzeng', '2003-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS385411916102', '韓曉彤', 0, '+81 80-3050-6530', 4, '261052581796828219', '日本東京港区東新橋一丁目5番1号50階', '1996-07-28', 0, 0, 'hiutung307', '2002-01-05', 'hthan', '2003-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS496769840834', '蔣梓晴', 1, '+81 52-972-4936', 4, '229582916420055783', '9-kai, 10 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-12-19', 0, 0, 'tcchian9', '2010-05-05', 'tcchi2003', '2005-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS963604989312', '中村彩乃', 1, '+86 10-164-4635', 1, '589999457085859170', 'No.19 building, 130 028 County Rd, Yanqing District, Beijing, China', '1998-04-11', 0, 0, 'anakamura', '2020-12-09', 'nakaayano', '2020-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS863228219697', '龚詩涵', 0, '+86 10-6477-2458', 3, '085003404772568921', '中国北京市东城区东单王府井东街71号华润大厦32室', '1996-11-08', 0, 0, 'gongs', '2020-06-30', 'shihagong', '2019-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS209894455149', '戴世榮', 0, '+86 10-251-6818', 1, '037770616849980002', '中国北京市延庆区028县道146号49楼', '1998-04-02', 0, 0, 'dasw', '2011-02-10', 'swdai04', '2017-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS903337232382', '金震南', 0, '+81 90-1214-3204', 4, '732483749631624071', '日本札幌清田区真栄四条五丁目19番9号40階', '1987-12-13', 0, 0, 'zhennan5', '2009-12-13', 'zhennanjin', '2000-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS671823713983', '酒井涼太', 1, '+81 3-1677-8554', 3, '458688991944880566', '日本東京渋谷区代々木二丁目3番18号40階', '1985-10-03', 0, 0, 'sakair46', '2017-12-02', 'sakairyota93', '2001-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS513589142282', '林子韬', 1, '+1 312-549-6936', 2, '844796355437646984', '326 North Michigan Ave Apt 29, Chicago, IL 60611, United States', '1993-03-29', 0, 0, 'lzi1944', '2021-05-24', 'zilin', '2015-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS183415402060', '佐野一輝', 1, '+81 11-172-4395', 2, '516363545041235755', 'Rm. 31, 6-1-5, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1994-03-04', 0, 0, 'iks', '2014-12-05', 'iksan', '2001-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS849181702933', 'Rodney Hayes', 1, '+81 80-1382-9452', 0, '444450818466401543', '日本おおさかし平野区加美東四丁目9番16号34階', '1994-07-08', 0, 0, 'rodney4', '2002-10-27', 'hayes2', '2012-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS724690866963', '西村蓮', 0, '+86 157-5263-7077', 1, '165819834678390217', 'No.11 building, 343 68 Qinghe Middle St, Haidian District, Beijing, China', '1988-03-19', 0, 0, 'nishimura125', '2005-07-24', 'nir', '2008-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS133681748429', '苗曉彤', 0, '+86 146-7828-2580', 4, '595358550324847506', '中国上海市黄浦区淮海中路792号50楼', '1986-05-14', 0, 0, 'mhiutung', '2003-11-27', 'hiutungmi1', '2015-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS430547453091', '後藤凛', 1, '+1 614-516-0263', 2, '856742038234680149', '683 Diplomacy Drive Apt 44, Columbus, GA 43228, United States', '1989-10-15', 0, 0, 'ringoto', '2003-03-01', 'ring', '2002-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS947227167803', '邵梓晴', 1, '+44 (161) 168 5452', 1, '256752063356170290', 'Unit 14, Oxford Eco Centre, 673 Portland St, Manchester, M1 3LA, United Kingdom', '1996-01-13', 0, 0, 'tcsiu8', '2001-09-22', 'siutszching1125', '2019-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS865396129928', '孔秀英', 1, '+44 5704 527292', 2, '730816393429928732', 'Flat 36, 285 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-08-18', 0, 0, 'xiuyingkong', '2001-02-19', 'koxiuying65', '2006-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS512673871852', '野口美緒', 1, '+44 (151) 606 9689', 1, '868560511298951806', 'Flat 45, 971 Hanover St, Liverpool, L1 4AF, United Kingdom', '1996-12-28', 0, 0, 'noguchimi1231', '2008-06-20', 'mio3', '2016-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS131975689844', '黄安琪', 0, '+44 7684 924266', 4, '030989148870003662', 'Unit 45, Oxford Eco Centre, 969 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1991-09-24', 0, 0, 'anqihu', '2019-01-11', 'huaanqi', '2001-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS847149981744', '林百花', 1, '+1 718-914-4568', 1, '832184618275838606', '26 Columbia St Apt 13, Brooklyn, NY 11231, United States', '1986-10-21', 0, 0, 'hayashimo711', '2012-03-27', 'mh825', '2007-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS623904462343', '萧云熙', 1, '+86 138-0697-6915', 4, '025134586840486548', 'Room 28, CR Building, 665 Jingtian East 1st St, Futian District, Shenzhen, China', '1998-04-01', 0, 0, 'yunxixiao43', '2006-02-16', 'yunxi1940', '2001-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS265966472069', '程璐', 0, '+86 149-9744-2485', 1, '247996602244269853', 'Room 18, CR Building, 284 Jianxiang Rd, Pudong, Shanghai, China', '1997-01-15', 0, 0, 'lucheng7', '2008-11-14', 'luch', '2014-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS216257998674', 'Gladys Gutierrez', 0, '+81 90-6035-1943', 3, '174603391023037720', '14-kai, 5-2-9 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-03-12', 0, 0, 'gutgla8', '2000-03-19', 'gladys5', '2020-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS040045923654', 'Donald Wright', 1, '+81 74-255-9268', 3, '316950979870055516', 'Rm. 18, 3-9-16 Gakuenminami, Nara, Japan', '1988-05-12', 0, 0, 'donaldwri', '2016-05-16', 'wright206', '2016-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS275188739754', 'Jeffrey Gonzales', 1, '+1 718-564-7796', 4, '461117685472106821', '493 1st Ave Apartment 14, Brooklyn, NY 11220, United States', '1995-04-19', 0, 0, 'jefgonzales14', '2018-01-01', 'gonzalesj81', '2009-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS735340813938', 'Anthony Torres', 1, '+86 131-5700-0692', 3, '972018616334240817', 'No.27 building, 533 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1987-10-25', 0, 0, 'anthonytorres7', '2012-08-08', 'torresantho4', '2017-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS857561796868', '薛曉彤', 0, '+1 838-619-2195', 2, '824799561408759236', '529 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1987-05-20', 0, 0, 'hiutung5', '2015-09-28', 'hiutusi8', '2021-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS759421232683', '胡秀文', 1, '+81 52-384-1667', 2, '538980063511129680', '日本なごやし北区楠味鋺三丁目80番8号41階', '1990-02-17', 0, 0, 'smw922', '2012-12-16', 'wsauman', '2009-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS624765627166', '西村大輔', 1, '+81 80-0193-9771', 1, '843555663073078314', 'Rm. 45, 3-15-10 Ginza, Chuo-ku, Tokyo, Japan', '1995-06-08', 0, 0, 'daisukenishimura', '2000-06-10', 'nishimura217', '2018-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS688944736435', '许宇宁', 1, '+81 90-6242-7541', 2, '315498852830039759', '日本東京中央区銀座三丁目12番7号7号室', '1997-01-19', 0, 0, 'xu1114', '2003-01-20', 'xu608', '2016-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS870805306493', '蔡致远', 0, '+86 137-7170-4776', 1, '417153933846501928', '中国深圳龙岗区学园一巷794号33号楼', '1994-02-08', 0, 0, 'zhiyuancai', '2008-07-31', 'zhiyuancai', '2004-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS008330475702', 'Nancy Davis', 0, '+1 838-574-6379', 2, '570611254078046603', '846 Central Avenue Suite 31, Albany, NY 12206, United States', '1985-08-02', 0, 0, 'nancy1', '2016-02-13', 'nancy54', '2000-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS049455911880', '沈云熙', 0, '+86 20-450-6048', 2, '103666067544660936', '中国广州市白云区小坪东路32号21栋', '1989-09-21', 0, 0, 'yunxishen3', '2016-12-25', 'yunxi125', '2007-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS743235639613', '麥青雲', 1, '+81 3-8327-5889', 1, '324892231142516880', '日本東京港区東新橋一丁目5番11号34階', '1998-07-22', 0, 0, 'chingmak', '2008-01-24', 'makchingwan', '2014-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS317238693757', '严子异', 1, '+81 70-2451-7029', 3, '893822433727477724', '41F, 14 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1992-08-13', 0, 0, 'yanziyi', '2020-03-04', 'yan820', '2007-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS430542372684', '戴晓明', 0, '+86 755-790-4667', 4, '900508053357560147', '中国深圳罗湖区蔡屋围深南东路434号6室', '1988-07-13', 0, 0, 'xdai10', '2005-11-09', 'dai60', '2002-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS623243080032', '谭致远', 1, '+81 66-726-4386', 1, '027456273317694793', '日本おおさかし平野区加美東四丁目9番5号2階', '1986-10-27', 0, 0, 'tazh67', '2005-01-20', 'zhta123', '2022-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS937564478204', 'Jose Rose', 0, '+1 312-918-4934', 1, '796841755330756337', '597 Rush Street Apartment 37, Chicago, IL 60611, United States', '1995-03-05', 0, 0, 'josrose8', '2015-01-09', 'rose224', '2022-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS532201363875', '杜嘉欣', 0, '+86 178-9553-9545', 3, '324065701252996945', '中国深圳罗湖区蔡屋围深南东路523号华润大厦13室', '1985-09-09', 0, 0, 'karyant', '2014-01-18', 'karto47', '2021-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS568945805136', 'Frances Hayes', 1, '+1 718-346-4711', 3, '797404067229123468', '240 Bergen St Suite 4, Brooklyn, NY 11217, United States', '1997-08-18', 0, 0, 'francesha', '2004-08-09', 'hayesfrances712', '2011-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS489238076278', '池田瑛太', 0, '+44 (20) 7938 1368', 1, '426960421187486663', 'Flat 33, 920 Maddox Street, London, W1S 1PU, United Kingdom', '1994-12-08', 0, 0, 'eitaikeda', '2001-06-25', 'eitaikeda10', '2019-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS071162992228', 'Howard Hawkins', 1, '+81 11-308-7013', 1, '865734881288695656', 'Rm. 31, 2-1-3 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1998-11-18', 0, 0, 'howhawkins1943', '2022-02-01', 'hhawk', '2001-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS367979404839', '村田大輔', 0, '+1 838-365-1323', 3, '356889883290408547', '691 State Street 3rd Floor, Albany, NY 12203, United States', '1992-09-16', 0, 0, 'daisukem1', '2019-01-12', 'muratada08', '2015-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS598712771489', '原百恵', 0, '+81 3-6088-1582', 2, '743676515881101732', '日本東京渋谷区代々木二丁目3番10号16号室', '1988-09-16', 0, 0, 'momoe5', '2005-08-07', 'haramomoe2007', '2013-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS254175867094', 'Pauline Bell', 0, '+81 3-1279-1388', 1, '165085983186517782', '13-kai, 3-15-17 Ginza, Chuo-ku, Tokyo, Japan', '1997-06-19', 0, 0, 'bell6', '2002-09-12', 'paulinebe', '2016-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS893297148839', '安藤樹', 0, '+44 5111 389028', 1, '310294550460927626', 'Unit 22, Oxford Eco Centre, 490 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1987-12-09', 0, 0, 'ando00', '2006-08-12', 'ando5', '2013-10-07'); +INSERT INTO "public"."userinfo" VALUES ('TS522950391562', '羅發', 1, '+1 213-153-2743', 1, '698945592793789115', '153 S Broadway Apt 1, Los Angeles, CA 90015, United States', '1993-01-08', 0, 0, 'fatlo5', '2013-08-29', 'falo', '2021-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS023625310891', 'Stanley Graham', 1, '+81 66-917-9405', 1, '673196030247562088', '日本おおさかし西成区天神ノ森二丁目1番8号29号室', '1990-07-15', 0, 0, 'gstanley', '2009-09-10', 'stangraham6', '2016-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS193968097477', '藤永權', 1, '+86 755-2248-2669', 3, '128983485458004968', 'Room 35, 764 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1989-05-03', 0, 0, 'twk', '2019-09-13', 'wingkuen9', '2014-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS880989658388', '高木健太', 0, '+86 760-018-3704', 2, '673252230195529524', 'No.43 building, 170 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1986-07-27', 0, 0, 'taken1210', '2015-11-18', 'takagi9', '2015-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS174556239882', '佐々木美緒', 1, '+81 66-336-8369', 4, '506810260372807736', '49-kai, 1-1-3 Deshiro, Nishinari Ward, Osaka, Japan', '1985-04-12', 0, 0, 'mio9', '2020-03-07', 'sasakimi', '2003-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS235853018260', 'Rosa Adams', 0, '+1 312-038-3261', 4, '723983096261386196', '978 North Michigan Ave Apt 40, Chicago, IL 60611, United States', '1995-06-26', 0, 0, 'adamsrosa', '2018-03-05', 'radam', '2013-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS978584731954', 'Ruth Fernandez', 1, '+86 175-2082-7872', 0, '085592026676728747', 'No.47 building, 987 West Chang''an Avenue, Xicheng District, Beijing, China', '1989-07-10', 0, 0, 'rutf99', '2011-01-06', 'fernruth72', '2014-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS350475601460', '梁慧敏', 0, '+1 330-538-4101', 2, '214405931292258435', '591 Collier Road Suite 32, Akron, OH 44320, United States', '1985-06-29', 0, 0, 'leungwm', '2002-03-08', 'leunwm70', '2008-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS340834418472', '朱宇宁', 1, '+86 187-4534-3918', 3, '139398839988017830', '中国北京市東城区東直門內大街781号34楼', '1985-06-29', 0, 0, 'yzhu', '2017-10-22', 'zhuyuning', '2016-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS910939964710', '莫璐', 1, '+86 755-2205-5694', 2, '215224964561477009', '中国深圳罗湖区田贝一路35号1栋', '1997-04-05', 0, 0, 'lu5', '2001-08-14', 'lum', '2014-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS249813223030', '車發', 0, '+1 330-941-2181', 1, '952056650834384352', '170 Riverview Road Suite 26, Akron, OH 44313, United States', '1996-03-16', 0, 0, 'chefa5', '2019-10-24', 'fatc5', '2021-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS328125162431', '金云熙', 1, '+81 80-9558-9803', 2, '321715210696249719', '45-kai, 5-2-12 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1990-01-17', 0, 0, 'jinyunxi', '2008-08-24', 'yunxjin', '2008-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS526435778222', '有村優奈', 1, '+86 150-7413-1005', 3, '086427426735115407', '中国中山紫马岭商圈中山五路281号华润大厦40室', '1994-12-12', 0, 0, 'arimura602', '2019-02-18', 'arimyuna722', '2018-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS396430952632', 'Martha Miller', 0, '+81 74-649-4842', 3, '567685070572862213', 'Rm. 28, 19 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-10-09', 0, 0, 'milmar', '2006-09-11', 'mmart', '2017-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS332341053544', '邱發', 0, '+81 70-8570-4273', 2, '977297384419244969', 'Rm. 38, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1997-11-22', 0, 0, 'fyau', '2005-07-03', 'faty2011', '2004-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS607677514881', '汤致远', 0, '+1 718-029-5602', 1, '051875367492097607', '190 Bergen St Apartment 16, Brooklyn, NY 11217, United States', '1991-08-06', 0, 0, 'zhiyuan1940', '2014-05-30', 'zhiyuantang612', '2007-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS367308933648', 'Theresa Ryan', 0, '+81 70-6337-5019', 4, '488281761420586545', 'Rm. 38, 5-2-2 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1985-01-16', 0, 0, 'ryan6', '2016-03-08', 'ryather', '2000-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS452420680933', '藤井光莉', 1, '+81 90-5463-2791', 3, '009938209220850706', '日本なごやし北区清水三丁目19番10号38号室', '1988-09-05', 0, 0, 'hikarfujii122', '2003-06-23', 'hikarifujii', '2015-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS286011550932', 'Eleanor Long', 1, '+44 7856 036573', 3, '758399786843250392', 'Block 12, 271 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1993-12-08', 0, 0, 'elo1227', '2010-05-05', 'longe71', '2003-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS691433147394', '莫宇宁', 1, '+81 11-345-8494', 2, '316578475094656615', '日本札幌白石区菊水三条五丁目4番10号36階', '1997-05-04', 0, 0, 'yunmo', '2019-03-10', 'yuningmo', '2006-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS070313260986', 'Marilyn Wells', 1, '+1 312-676-8785', 2, '372696900473821304', '647 Pedway 3rd Floor, Chicago, IL 60601, United States', '1985-10-05', 0, 0, 'marilynwells2', '2007-11-12', 'wemari', '2006-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS720723650086', 'Jacob Phillips', 1, '+86 170-5689-8779', 2, '366871407084494553', '中国中山乐丰六路329号3楼', '1988-10-27', 0, 0, 'jacobphillips', '2002-12-11', 'phillipsj123', '2005-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS558982949858', '木村明菜', 0, '+44 (151) 872 7798', 0, '048253304244403864', 'No.42 Main building, 881 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1987-02-07', 0, 0, 'kia77', '2005-04-19', 'kimuraaki1996', '2006-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS748935599845', '後藤大和', 1, '+86 163-3354-6620', 1, '398900503024528528', 'Room 27, 440 East Wangfujing Street, Dongcheng District , Beijing, China', '1990-07-03', 0, 0, 'yamatogoto1019', '2001-02-28', 'yamato50', '2001-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS791115690439', '渡部優奈', 1, '+44 5446 477300', 0, '128420833687626677', 'Flat 8, 162 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1995-09-30', 0, 0, 'ywatanabe', '2016-06-14', 'yunaw10', '2018-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS171673207763', 'Eleanor Hayes', 1, '+86 195-9811-2641', 4, '340135677372408677', '中国深圳龙岗区布吉镇西环路838号36楼', '1996-12-15', 0, 0, 'hayeseleanor', '2011-10-21', 'hayes2014', '2001-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS955361295700', '關天榮', 1, '+44 7428 679622', 4, '788764933656432804', 'Unit 48, Oxford Eco Centre, 772 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1992-05-01', 0, 0, 'tinwingk', '2013-03-29', 'kwtinwing', '2015-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS445311402384', '汪震南', 1, '+86 178-0808-6689', 1, '743146100377166746', '12F, 174 Kengmei 15th Alley, Dongguan, China', '1998-12-06', 0, 0, 'wangz', '2014-11-02', 'zwang', '2003-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS695364283999', '蕭國明', 0, '+1 312-122-8855', 4, '591524193288190003', '426 Pedway Suite 21, Chicago, IL 60601, United States', '1991-01-03', 0, 0, 'kwokmingsi', '2016-03-13', 'siukwokming', '2017-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS166704566129', '田志遠', 1, '+81 90-4140-7741', 2, '517769156090200833', '日本札幌豊平区豊平三条十三丁目3番18号17号室', '1985-09-22', 0, 0, 'tincy79', '2019-05-28', 'tcy7', '2010-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS369895309632', '樂朝偉', 0, '+1 718-755-3853', 4, '861884133241799078', '427 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1991-11-29', 0, 0, 'lok1111', '2019-09-10', 'lokcw10', '2003-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS630943162468', '應思妤', 0, '+1 212-609-5172', 2, '326864292625891251', '853 Wooster Street 3rd Floor, New York, NY 10012, United States', '1986-01-09', 0, 0, 'yingszeyu', '2003-10-19', 'szeyuy', '2005-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS915199430408', '河野健太', 1, '+86 20-552-4558', 2, '532084012876747849', 'Room 47, 672 Xiaoping E Rd, Baiyun , Guangzhou, China', '1988-05-20', 0, 0, 'kenkono', '2022-01-27', 'konok', '2008-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS459639385346', '方安娜', 1, '+86 184-7697-2702', 3, '124258399640890273', '中国广州市越秀区中山二路816号6号楼', '1990-02-18', 0, 0, 'onfo', '2019-01-12', 'onfong', '2019-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS901644885889', 'Marjorie Turner', 1, '+44 7411 428331', 2, '843871593320605622', 'Block 42, 9 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1987-04-04', 0, 0, 'turnermarjorie', '2002-10-18', 'marjorieturner', '2002-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS717015861012', 'Jean Roberts', 1, '+1 614-521-6847', 1, '988250159087386291', '42 East Alley Suite 18, Columbus, GA 43201, United States', '1994-09-09', 0, 0, 'robertsje', '2012-11-18', 'robertsjea', '2016-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS627826059733', '橋本瑛太', 1, '+1 718-469-3173', 0, '306040218050035132', '432 Nostrand Ave Apt 47, Brooklyn, NY 11216, United States', '1996-01-15', 0, 0, 'eitahashimoto920', '2019-03-14', 'hasheita', '2014-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS543292679778', '毛慧儀', 0, '+81 90-5597-4698', 3, '782397245335139407', '25F, 3-9-15 Gakuenminami, Nara, Japan', '1985-03-22', 0, 0, 'mowaiyee', '2019-12-27', 'waiyee1028', '2007-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS671284096363', '田村拓哉', 1, '+44 (161) 504 6180', 3, '417103372269407043', 'No.48 Main building, 651 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-10-07', 0, 0, 'tamura2', '2014-07-23', 'tamurtakuya', '2017-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS202128630940', '菊地愛梨', 1, '+81 3-7971-8811', 4, '686896454661323241', '日本東京千代田区丸の内一丁目6番11号27階', '1988-02-23', 0, 0, 'airikikuc419', '2003-07-10', 'ka1202', '2009-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS823596320446', '沈子韬', 0, '+86 193-8057-8633', 2, '667532186300946748', 'No.24 building, 10 Xiaoping E Rd, Baiyun , Guangzhou, China', '1988-10-12', 0, 0, 'zitashen', '2017-06-16', 'zits', '2011-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS752793055794', '谢秀英', 1, '+86 193-5579-5654', 3, '483365528313664104', '中国广州市白云区小坪东路945号23栋', '1993-04-04', 0, 0, 'xiexiuy527', '2018-06-28', 'xiexiuying72', '2012-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS492567726024', '駱家文', 1, '+44 (1223) 05 5821', 3, '932098103259940350', 'Flat 32, 656 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1989-02-10', 0, 0, 'kaman8', '2001-06-10', 'lokkaman', '2010-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS366702830001', '江霆鋒', 0, '+44 (151) 046 9530', 2, '142703520707184151', 'Unit 50, Oxford Eco Centre, 47 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1992-01-28', 0, 0, 'kongtingfung', '2013-06-05', 'kong8', '2013-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS507234178549', 'Kim Williams', 0, '+1 330-996-6195', 3, '023693506905086122', '645 Collier Road Apt 44, Akron, OH 44320, United States', '1989-02-25', 0, 0, 'kim10', '2011-03-28', 'williamski', '2005-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS724506126686', '吉田愛梨', 0, '+44 (1865) 64 9050', 1, '345228406106241295', 'Block 15, 599 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1998-10-11', 0, 0, 'airiyosh5', '2020-03-18', 'yairi', '2003-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS102386396825', '蔡慧嫻', 1, '+86 20-223-9654', 2, '329442815461088624', '中国广州市天河区天河路52号12楼', '1987-07-30', 0, 0, 'whchoi', '2010-04-18', 'choi930', '2011-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS879834435521', 'Cheryl Hernandez', 0, '+44 (161) 976 1306', 1, '288131580697045357', 'Unit 39, Oxford Eco Centre, 640 Portland St, Manchester, M1 3LA, United Kingdom', '1997-01-10', 0, 0, 'chh2', '2018-10-29', 'hercher', '2018-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS124639745934', 'Heather Ross', 0, '+44 5129 847105', 3, '923923827568688864', 'Block 26, 444 Pollen Street, London, W1S 1NG, United Kingdom', '1996-07-30', 0, 0, 'heatross', '2009-01-18', 'heatherross605', '2021-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS978262810412', '邹璐', 0, '+44 5360 566132', 2, '931767686146435677', 'Block 18, 436 Mosley St, Manchester, M2 3AQ, United Kingdom', '1986-03-25', 0, 0, 'zolu1006', '2018-09-15', 'zlu3', '2021-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS406065046362', '石川大和', 0, '+1 213-544-8251', 0, '852832032043523258', '707 Alameda Street Apartment 49, Los Angeles, CA 90002, United States', '1989-08-08', 0, 0, 'iyama', '2007-04-02', 'ishiyamato5', '2014-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS443412037969', '孫淑怡', 1, '+81 90-0982-2654', 0, '132067880165040881', 'Rm. 6, 1-6-8, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-05-08', 0, 0, 'syhsuan1025', '2005-11-02', 'hsuansukyee', '2021-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS983603138974', '姜仲賢', 1, '+86 20-1430-6511', 2, '473413992870930409', '中国广州市白云区机场路棠苑街五巷290号17号楼', '1993-11-13', 0, 0, 'chungyin2018', '2013-04-05', 'chcy', '2005-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS342387378954', '小野百恵', 0, '+81 90-3030-6408', 1, '533051487540312295', '日本なごやし瑞穂区河岸町四丁目20番4号16階', '1992-11-03', 0, 0, 'momoe6', '2002-01-19', 'onomomoe', '2007-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS338897082273', 'Kyle Harris', 1, '+86 132-9581-7239', 1, '390160936787600580', 'Room 34, CR Building, 224 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1999-01-07', 0, 0, 'kyleh75', '2022-02-20', 'kylehar1028', '2011-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS547524300063', '曾詩涵', 1, '+81 52-569-9796', 3, '756109801266136478', '日本なごやし北区清水三丁目19番20号18号室', '1986-09-14', 0, 0, 'shihazeng215', '2014-06-06', 'zenshihan', '2019-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS563796647046', 'Bruce Clark', 1, '+44 7797 549571', 3, '446626061890783899', 'Unit 39, Oxford Eco Centre, 466 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1993-05-31', 0, 0, 'clarkbruce', '2004-03-24', 'brucec', '2003-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS694819442641', '森田彩乃', 0, '+81 3-4843-5073', 0, '191848685598281106', '日本東京中央区銀座三丁目12番6号27号室', '1998-10-18', 0, 0, 'amori', '2001-06-28', 'moritayano', '2016-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS785398113013', '菅原一輝', 0, '+81 90-2476-1769', 1, '284367183322371209', '23-kai, 2-3-10 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-11-07', 0, 0, 'sugawara19', '2009-01-03', 'sugikki509', '2015-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS878088946825', '廖子韬', 1, '+1 614-601-7444', 2, '808154248507801253', '253 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1988-04-07', 0, 0, 'zitaoliao229', '2017-01-02', 'liaoz5', '2021-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS218859325246', '梅霆鋒', 1, '+81 70-8104-2526', 2, '014202791104529827', '日本札幌白石区菊水三条五丁目4番6号5階', '1992-07-24', 0, 0, 'tfmui9', '2020-04-05', 'mui7', '2004-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS803504419888', 'Eric Long', 0, '+1 718-844-1623', 2, '946236167732380533', '351 1st Ave Suite 20, Brooklyn, NY 11220, United States', '1991-02-15', 0, 0, 'ericlong1218', '2014-12-19', 'leric2', '2001-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS868152806412', '馮惠妹', 0, '+1 330-202-6907', 3, '608312005509059747', '792 Collier Road Apt 49, Akron, OH 44320, United States', '1988-05-28', 0, 0, 'huimeifung512', '2007-08-16', 'huimei5', '2011-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS192835789210', '丸山陸', 1, '+86 755-617-8505', 3, '334666940792734510', '中国深圳龙岗区布吉镇西环路979号35栋', '1995-05-23', 0, 0, 'maruyamariku', '2002-04-23', 'maruyriku', '2014-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS112605918730', '福田樹', 1, '+81 3-0014-0326', 3, '516432899933568636', '日本東京中央区銀座三丁目12番17号21階', '1986-05-07', 0, 0, 'fuki4', '2021-07-16', 'itsukifukuda', '2009-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS044104207310', '傅嘉欣', 0, '+1 614-929-3579', 0, '318571668846571094', '570 East Cooke Road Apartment 47, Columbus, GA 43214, United States', '1993-04-07', 0, 0, 'karyan1212', '2015-11-14', 'kyfu', '2006-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS124963348842', '斉藤翼', 1, '+1 330-024-6450', 1, '973417187462901558', '106 Collier Road Suite 27, Akron, OH 44320, United States', '1985-03-21', 0, 0, 'saitsub2', '2001-11-03', 'tsubasa10', '2002-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS470589537124', '范宇宁', 1, '+86 755-833-7878', 1, '395462781258056093', '33F, 535 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1987-05-23', 0, 0, 'yfan', '2007-11-07', 'fanyuning', '2004-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS285751855173', '吕杰宏', 1, '+81 70-3551-5571', 2, '942971054394471332', '日本おおさかし近江堂一丁目7番9号31号室', '1997-08-12', 0, 0, 'jieholu', '2005-09-13', 'jiehonglu', '2010-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS820261436191', '梅德華', 0, '+1 614-287-2235', 1, '531879909098560870', '506 East Alley 3rd Floor, Columbus, GA 43201, United States', '1997-09-01', 0, 0, 'takwahmui', '2016-03-25', 'twmui', '2008-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS142704490042', '松田明菜', 0, '+81 70-4706-2159', 3, '484211455193952385', 'Rm. 34, 1-5-8, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1988-04-17', 0, 0, 'akinamatsuda', '2001-01-04', 'akinamatsuda819', '2006-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS262780838096', '橋本悠人', 0, '+44 7911 415877', 4, '056095722618569897', 'No.41 Main building, 592 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1986-07-20', 0, 0, 'yutoh7', '2004-06-19', 'yutoh', '2003-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS974669189960', '石川明菜', 1, '+81 66-503-6549', 4, '530955513886505800', '29-kai, 1-7-5 Omido, Higashiosaka, Osaka, Japan', '1987-12-03', 0, 0, 'akinishikawa', '2016-11-26', 'ishakina6', '2012-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS889095941032', '中山桜', 0, '+44 7029 753533', 3, '450425653377713656', 'Unit 33, Oxford Eco Centre, 493 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1996-12-07', 0, 0, 'nakayama7', '2016-06-27', 'sakuranaka1012', '2020-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS369404839946', '邓詩涵', 1, '+81 70-5058-8159', 2, '268798289303975268', 'Rm. 24, 5-4-9 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1987-07-23', 0, 0, 'denshiha1941', '2011-07-01', 'dengshihan', '2018-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS922911429970', 'Ethel Rodriguez', 1, '+86 168-9289-0359', 3, '885645460219973786', 'No.29 building, 54 FuXingMenNei Street, XiCheng District, Beijing, China', '1992-05-13', 0, 0, 'rodrie', '2021-10-16', 'rodriguezet', '2001-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS363432697790', '潘子异', 0, '+86 156-2948-1690', 4, '406145969560315427', '中国北京市海淀区清河中街68号817号27号楼', '1989-04-19', 0, 0, 'ziyipan3', '2009-08-11', 'panziy', '2011-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS278241862233', '應青雲', 1, '+1 718-226-0835', 2, '425427543804494886', '885 Columbia St Suite 25, Brooklyn, NY 11231, United States', '1996-07-26', 0, 0, 'chingwanyin104', '2009-10-07', 'yingchingwan', '2016-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS984759707856', '佐野凛', 0, '+86 147-6158-0076', 1, '044707381431436289', '中国广州市天河区天河路526号48号楼', '1985-05-11', 0, 0, 'sanri', '2015-10-25', 'sano809', '2016-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS949331704032', 'Rebecca Martin', 0, '+86 163-1387-7272', 2, '798666775328963562', '中国北京市海淀区清河中街68号380号18号楼', '1998-10-10', 0, 0, 'remar2', '2003-07-21', 'rebeccamartin', '2019-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS529498105330', 'Benjamin Garza', 1, '+86 161-5355-9953', 2, '292752915161543311', 'Room 34, CR Building, 551 Binchuan Rd, Minhang District, Shanghai, China', '1985-04-25', 0, 0, 'garza10', '2021-02-13', 'bgarza', '2015-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS608806516247', '孟睿', 0, '+81 90-4279-0823', 3, '502265995255472874', '40-kai, 13 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1987-12-27', 0, 0, 'ruimeng', '2010-08-08', 'meng1', '2003-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS076138843070', 'Gerald Foster', 0, '+86 188-0029-7340', 0, '771052539647298661', 'No.2 building, 107 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1986-12-21', 0, 0, 'gerald1941', '2005-01-09', 'fostegerald', '2006-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS397405309615', '张宇宁', 1, '+81 66-658-3528', 1, '419461006324299807', 'Rm. 50, 1-7-11 Omido, Higashiosaka, Osaka, Japan', '1997-08-12', 0, 0, 'zhangy', '2010-07-05', 'yunizhang45', '2003-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS148822291347', '野村涼太', 0, '+81 52-404-7157', 2, '127393486692672636', '31-kai, 2-5-2 Chitose, Atsuta Ward, Nagoya, Japan', '1995-04-19', 0, 0, 'nomura1211', '2014-10-08', 'ryotanom', '2017-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS999543049802', '田杰倫', 1, '+44 7959 792908', 2, '529215246960813473', 'Unit 46, Oxford Eco Centre, 440 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1987-02-21', 0, 0, 'chiehlunt', '2009-06-10', 'clti', '2015-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS135721493392', '市川聖子', 1, '+1 213-356-8226', 3, '327172819738106252', '609 Grape Street Apt 4, Los Angeles, CA 90002, United States', '1987-02-08', 0, 0, 'ichikawaseik', '2006-01-17', 'is1', '2000-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS258445054853', 'Michael Walker', 0, '+86 21-1232-0573', 1, '367401245690281461', '中国上海市黄浦区淮海中路140号华润大厦15室', '1990-03-31', 0, 0, 'mwalker626', '2008-12-28', 'walker10', '2001-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS878001266439', '中村大地', 1, '+86 135-5014-2326', 2, '725212702344417874', '中国广州市海珠区江南西路562号华润大厦7室', '1985-09-09', 0, 0, 'nakamuradaichi', '2011-06-18', 'daichnakamura1015', '2011-08-20'); +INSERT INTO "public"."userinfo" VALUES ('TS522241850399', '馬浩然', 1, '+86 28-573-5931', 2, '889933973697154522', '中国成都市成华区玉双路6号6号42楼', '1986-08-11', 0, 0, 'mahy1954', '2002-12-04', 'hyma89', '2014-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS443009858784', '杉山大和', 0, '+86 186-7692-1297', 2, '049314717344811137', 'No.21 building, 349 Shanhu Rd, Dongguan, China', '1986-04-24', 0, 0, 'yamato06', '2022-01-15', 'sugiyamayamato10', '2018-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS606864478484', '井上涼太', 1, '+86 142-2334-3951', 2, '380967431373883367', '6F, 666 68 Qinghe Middle St, Haidian District, Beijing, China', '1986-07-29', 0, 0, 'inry', '2002-09-03', 'ryotainoue412', '2004-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS075107511125', '江富城', 1, '+81 11-743-7004', 3, '474925937967049259', '日本札幌厚別区上野幌一条二丁目1番5号43階', '1990-01-03', 0, 0, 'fushikong66', '2001-02-24', 'kong8', '2007-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS821154100849', '蕭頴思', 1, '+44 5932 547886', 0, '833734943644094111', 'Unit 40, Oxford Eco Centre, 653 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-09-26', 0, 0, 'swingsze', '2008-01-08', 'wssi', '2020-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS855474716904', 'Lillian Palmer', 1, '+86 157-5659-7960', 2, '533064544773450468', 'No.7 building, 664 Tianhe Road, Tianhe District, Guangzhou, China', '1996-07-06', 0, 0, 'lillian426', '2016-10-18', 'lp7', '2020-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS517277199646', '青木桜', 1, '+1 838-658-9035', 1, '628785721725173654', '814 State Street Apartment 27, Albany, NY 12203, United States', '1997-04-23', 0, 0, 'sakura1', '2013-09-05', 'aokisa', '2004-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS909474128308', 'Helen Robertson', 1, '+1 614-650-2284', 4, '741644773172176167', '93 Diplomacy Drive Apt 6, Columbus, GA 43228, United States', '1987-09-22', 0, 0, 'rhele', '2012-02-27', 'hrobertson', '2001-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS964392956689', '佐野瑛太', 1, '+81 11-397-3314', 1, '306098503595937940', '日本札幌豊平区豊平三条十三丁目3番1号48階', '1990-09-14', 0, 0, 'sanoeit13', '2002-07-20', 'saeit7', '2013-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS772934245086', '林朝偉', 1, '+81 66-029-7090', 0, '291933113886251868', '日本おおさかし平野区加美東四丁目9番4号4階', '1994-06-15', 0, 0, 'chiuwai615', '2000-12-04', 'chiuwailam', '2012-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS047601187257', '姜秀文', 0, '+44 7615 549319', 0, '558618631074777574', 'Block 32, 282 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1997-01-24', 0, 0, 'sauman8', '2021-04-05', 'csauman1959', '2002-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS937588445549', '于云熙', 0, '+81 3-7731-2128', 1, '947586378855945728', '18F, 2-3-1 Yoyogi, Shibuya-ku, Tokyo, Japan', '1994-12-23', 0, 0, 'yunxiyu', '2011-10-14', 'yu6', '2004-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS468032743180', '蔡詩涵', 1, '+81 80-9534-0915', 3, '765260819443149258', '37F, 17 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-08-08', 0, 0, 'shihan8', '2013-01-17', 'caishihan905', '2010-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS582104581523', 'Susan Perez', 0, '+1 212-596-0279', 2, '717442739224961384', '62 Bank Street Apartment 41, New York, NY 10014, United States', '1989-05-19', 0, 0, 'pes', '2016-05-04', 'susanper', '2010-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS145891944868', 'Gloria White', 1, '+1 213-800-6726', 2, '514881994986900328', '686 Figueroa Street Apartment 12, Los Angeles, CA 90037, United States', '1995-10-07', 0, 0, 'gwhite1', '2001-03-16', 'whitegloria', '2014-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS008038381662', '容學友', 1, '+81 70-3600-4905', 4, '062331939879000611', '31-kai, 2-1-6 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-09-07', 0, 0, 'yunghy1958', '2001-03-10', 'yhy', '2011-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS458671536615', '岩崎大輔', 1, '+86 167-8004-9854', 4, '005084209919678127', 'Room 47, CR Building, 261 Hongqiao Rd., Xu Hui District, Shanghai, China', '1992-10-03', 0, 0, 'iwasakid', '2015-04-25', 'daiiwas', '2017-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS343968469198', '加藤玲奈', 0, '+81 3-1654-9506', 1, '531679621108979335', '日本東京千代田区丸の内一丁目6番14号23階', '1996-03-02', 0, 0, 'renk', '2011-11-23', 'rena611', '2010-08-29'); +INSERT INTO "public"."userinfo" VALUES ('TS708445459656', 'Betty Dixon', 0, '+86 146-4019-4374', 3, '665568643010925917', '中国上海市浦东新区健祥路776号8楼', '1985-05-09', 0, 0, 'dixobe', '2019-07-25', 'dib', '2007-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS057841840481', '毛秀英', 0, '+81 11-264-2861', 0, '692507846716944789', '46F, 13-3-17 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1990-08-03', 0, 0, 'xiumao1966', '2014-08-28', 'maoxiuy', '2015-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS502568989876', 'Leslie Lewis', 0, '+86 140-9878-6975', 2, '955298060959901211', '中国北京市東城区東直門內大街36号27楼', '1985-07-02', 0, 0, 'leslilewis4', '2007-01-22', 'lewis1104', '2011-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS407080137528', '赵詩涵', 0, '+86 10-2360-5925', 0, '102325427523928095', '中国北京市西城区复兴门内大街260号华润大厦4室', '1994-08-30', 0, 0, 'zhashiha42', '2017-06-11', 'zhaoshihan', '2016-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS634059050751', '秦岚', 1, '+86 769-137-9056', 2, '707527798117555447', 'No.8 building, 464 Shanhu Rd, Dongguan, China', '1991-09-21', 0, 0, 'laqi3', '2021-03-20', 'lan1120', '2015-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS135532807960', 'Manuel Anderson', 1, '+86 20-1175-1522', 3, '512286422421012426', 'Room 48, CR Building, 138 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1988-05-07', 0, 0, 'andersonma', '2012-12-20', 'andem17', '2008-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS525471324416', '甘青雲', 0, '+86 28-810-6310', 2, '952592775818181095', '1F, No. 849, Shuangqing Rd, Chenghua District, Chengdu, China', '1990-03-26', 0, 0, 'cwkam', '2006-10-24', 'kamcw', '2019-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS845130617989', 'Barbara Ramos', 0, '+81 80-8572-4196', 0, '108721667265224162', '7F, 2-1-17 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1991-05-27', 0, 0, 'barbara06', '2004-07-07', 'ramos624', '2018-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS107906286052', '谢安琪', 0, '+81 80-4594-7874', 2, '029946322407190620', '9-kai, 1-1-18 Deshiro, Nishinari Ward, Osaka, Japan', '1992-06-14', 0, 0, 'xa10', '2019-10-01', 'anqixie9', '2012-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS578022868161', '丁嘉伦', 1, '+81 80-0579-5951', 4, '933233641778732537', '7F, 15 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1989-04-18', 0, 0, 'dinji', '2015-11-11', 'dingjialun', '2003-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS934986068468', '雷曉彤', 0, '+81 90-2976-0373', 2, '155551397943619160', '日本おおさかし西成区天神ノ森二丁目1番6号12階', '1991-09-21', 0, 0, 'lohiutung8', '2002-08-16', 'loui429', '2015-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS883649481691', '宮本美緒', 1, '+44 (1865) 82 4760', 2, '001509618892690518', 'Block 46, 684 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1985-04-04', 0, 0, 'miymi', '2018-02-03', 'miyamotomio', '2020-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS798171110921', '魏岚', 0, '+86 165-0486-2991', 3, '766267799134876531', 'No.24 building, 584 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1989-10-24', 0, 0, 'weilan', '2000-08-19', 'lanwe', '2019-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS913411957504', 'Leslie Gonzalez', 0, '+44 (151) 883 9086', 4, '915137632451224839', 'Flat 16, 657 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1991-04-29', 0, 0, 'lesliegonzalez', '2006-11-17', 'lesliegonzalez10', '2002-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS495290495708', '黎杰宏', 0, '+1 330-625-5053', 1, '295361891036999038', '234 Ridgewood Road Suite 2, Akron, OH 44321, United States', '1989-07-28', 0, 0, 'jili', '2021-10-03', 'lijieh', '2017-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS322222403797', '傅祖兒', 0, '+81 90-1723-3853', 0, '630333894717990415', 'Rm. 27, 1-7-15 Omido, Higashiosaka, Osaka, Japan', '1998-09-22', 0, 0, 'fu10', '2010-01-20', 'choyeefu', '2017-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS352272188136', '田村結翔', 1, '+81 70-1374-0244', 3, '726475308354302126', '48F, 5-2-5 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-12-11', 0, 0, 'tyuito', '2009-02-02', 'tamurayui', '2007-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS353375198986', '金嘉伦', 1, '+44 7045 926337', 3, '005625123307480159', 'Flat 20, 926 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1986-09-08', 0, 0, 'jinjialun10', '2004-08-12', 'jj823', '2020-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS385232596548', '曹永權', 1, '+86 145-5882-3743', 3, '817161850819439406', 'No.49 building, 970 West Chang''an Avenue, Xicheng District, Beijing, China', '1998-05-08', 0, 0, 'chwingkuen', '2013-04-23', 'wingkuen87', '2008-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS368959945274', 'Tiffany King', 1, '+86 755-575-8404', 3, '360798053773390188', 'Room 11, 51 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1997-05-26', 0, 0, 'kingtiffany', '2021-09-28', 'king403', '2004-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS360870995671', '郭心穎', 1, '+86 179-5773-6055', 2, '398266259103261358', 'No.4 building, 884 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1988-10-29', 0, 0, 'kwoksw', '2018-12-18', 'kwok125', '2017-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS731362853393', '宮本百花', 0, '+44 5101 527210', 2, '256560006216516018', 'Unit 48, Oxford Eco Centre, 516 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1996-04-17', 0, 0, 'miyamotomomoka', '2016-10-20', 'momoka49', '2019-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS166217922788', '藤原光', 0, '+81 90-6556-1209', 2, '071064805242217457', '日本札幌白石区菊水三条五丁目4番18号42号室', '1992-09-19', 0, 0, 'hifujiwara2010', '2001-03-04', 'fhikaru', '2017-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS311193712464', '蔡睿', 0, '+81 11-136-1739', 2, '687319291819076693', '日本札幌清田区真栄四条五丁目19番1号12階', '1994-04-24', 0, 0, 'ruica', '2015-07-30', 'rca', '2006-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS490477093284', '梁德華', 0, '+86 755-452-8494', 2, '703655631406497160', 'Room 17, 579 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1992-03-17', 0, 0, 'leutw', '2020-06-20', 'twleu', '2014-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS846550142225', 'Jose Reed', 1, '+86 760-2874-2004', 1, '721127554580794966', 'Room 7, CR Building, 907 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1988-08-14', 0, 0, 'rej', '2002-11-07', 'reedjose57', '2005-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS246160240222', 'Louise Sullivan', 0, '+86 198-7208-2552', 2, '967429913411240434', '中国成都市锦江区人民南路四段327号25号楼', '1991-07-03', 0, 0, 'ls1211', '2002-01-02', 'sulllo', '2019-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS943122441232', '三浦美咲', 1, '+81 52-973-5732', 1, '919741772243502647', '日本なごやし北区楠味鋺三丁目80番16号25階', '1997-08-24', 0, 0, 'mm40', '2021-09-26', 'misaki409', '2009-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS712098709037', '冯安琪', 1, '+86 21-3586-9087', 3, '012516244398249151', '中国上海市徐汇区虹桥路823号37栋', '1990-06-26', 0, 0, 'anqifeng10', '2009-05-27', 'anqifeng', '2003-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS364271652825', '前田葵', 1, '+86 164-1241-6317', 4, '367989264764220616', 'Room 1, 501 Huanqu South Street 2nd Alley, Dongguan, China', '1990-11-16', 0, 0, 'maaoi319', '2015-06-19', 'aoi8', '2010-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS681699876849', 'Dennis Griffin', 0, '+86 148-2600-0525', 1, '780513121808280019', 'No.18 building, 661 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1988-04-25', 0, 0, 'griffind', '2015-11-20', 'dennig', '2014-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS305407195128', '田慧儀', 0, '+44 7108 058470', 2, '491106336876123138', 'No.15 Main building, 17 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1986-02-07', 0, 0, 'tinwaiyee', '2016-12-17', 'tinwaiyee', '2013-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS305991055460', '邱德華', 0, '+81 70-9568-5993', 1, '353824501973460698', 'Rm. 43, 1-6-13, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1993-04-26', 0, 0, 'yautakwah', '2004-04-20', 'takwah80', '2000-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS038443031975', '郭嘉伦', 1, '+81 52-848-5559', 1, '193822299929764936', '日本なごやし北区楠味鋺三丁目80番12号27階', '1995-06-22', 0, 0, 'gujia', '2000-01-14', 'jialun1', '2019-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS502413366839', '阿部愛梨', 0, '+86 21-3592-7470', 3, '183659083269836823', '中国上海市浦东新区橄榄路27号44栋', '1985-07-15', 0, 0, 'abea1967', '2014-10-19', 'abe10', '2000-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS999678072713', 'Wayne Warren', 0, '+81 80-2539-2561', 3, '493135945945574152', '日本札幌清田区真栄四条五丁目19番7号32階', '1997-09-20', 0, 0, 'waywarr03', '2015-06-28', 'wwarre', '2013-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS989572213035', '翁安娜', 1, '+44 (1865) 09 7692', 3, '634127902212302341', 'Block 29, 127 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1986-10-10', 0, 0, 'yung803', '2013-12-11', 'yungon', '2016-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS809160815831', '伊藤樹', 0, '+1 718-707-7448', 4, '386022796095056066', '535 Flatbush Ave Apartment 17, Brooklyn, NY 11225, United States', '1995-07-06', 0, 0, 'ito67', '2002-10-18', 'itoitsu', '2011-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS471558382718', '内田健太', 0, '+81 70-0549-6847', 3, '926734872111640971', '23F, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1994-04-07', 0, 0, 'kentuchida', '2007-01-16', 'kentauchi', '2004-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS088099083760', 'Gerald Mendez', 0, '+44 5665 067794', 3, '590679748477916287', 'No.16 Main building, 930 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1997-02-01', 0, 0, 'mendgera7', '2011-08-22', 'mendegera919', '2021-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS931857031523', '曹宇宁', 0, '+81 3-5143-7138', 4, '806029946455745279', '日本東京品川区東五反田五丁目2番20号1階', '1992-03-12', 0, 0, 'cayuni4', '2015-12-29', 'yuningca96', '2007-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS636252628638', '严宇宁', 0, '+86 182-0263-9357', 2, '134317759183075186', '中国北京市延庆区028县道767号44栋', '1995-09-01', 0, 0, 'yan2', '2017-05-29', 'yanyunin81', '2011-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS537813508516', 'Don Jackson', 1, '+81 80-4643-4924', 1, '121642874438783228', '日本札幌豊平区豊平三条十三丁目3番9号34階', '1994-12-26', 0, 0, 'jdon', '2021-12-21', 'djac705', '2013-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS672677374876', '駱慧珊', 0, '+86 196-4362-1136', 2, '882392888993435315', 'Room 7, 322 Jiangnan West Road, Haizhu District, Guangzhou, China', '1994-05-04', 0, 0, 'wslok', '2013-08-08', 'waislok', '2009-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS951859275961', 'Miguel Ramos', 0, '+86 183-4268-6607', 1, '167854589633742541', 'No.44 building, 347 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1998-03-02', 0, 0, 'miguel608', '2009-12-22', 'ramos2013', '2018-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS256751587570', '加藤玲奈', 0, '+44 (1223) 07 2223', 3, '838278865835953143', 'No.3 Main building, 70 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1987-10-25', 0, 0, 'karena', '2015-12-17', 'kato3', '2008-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS377522135854', '彭詩涵', 1, '+86 183-4209-1742', 3, '730201997312281412', '中国深圳福田区深南大道166号20楼', '1998-10-08', 0, 0, 'peng905', '2010-09-15', 'pengshihan', '2007-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS303146361369', '袁心穎', 0, '+86 136-2221-3602', 0, '896103567801802540', 'Room 1, CR Building, 951 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1996-07-29', 0, 0, 'swy', '2007-09-28', 'sumwingy', '2009-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS982023996264', 'Mike Burns', 1, '+86 10-620-1328', 2, '877988217015181519', 'Room 44, 405 FuXingMenNei Street, XiCheng District, Beijing, China', '1993-12-24', 0, 0, 'mikebu', '2000-06-02', 'burns330', '2010-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS337363320438', '李岚', 1, '+86 769-9126-7709', 0, '137317261192624436', '中国东莞坑美十五巷539号17室', '1998-11-19', 0, 0, 'lanli8', '2021-08-15', 'lilan', '2019-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS848087911463', '蘇安琪', 1, '+44 7170 271690', 4, '761191267501468866', 'Block 23, 78 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1986-05-13', 0, 0, 'onso', '2021-06-29', 'sook', '2000-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS169089149608', '丸山葉月', 1, '+81 90-0498-2701', 2, '837967540053142717', '日本札幌白石区菊水三条五丁目4番5号25階', '1990-03-31', 0, 0, 'hazukmaruyama', '2019-11-23', 'hazukimar', '2014-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS894659901073', '郑子韬', 0, '+81 90-7045-0640', 3, '158112459017628518', '日本札幌白石区菊水三条五丁目2番7号11階', '1986-08-18', 0, 0, 'zitaz', '2005-12-11', 'zzitao709', '2010-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS648593845503', '呂志明', 1, '+81 52-853-9242', 3, '105613494283104992', '日本なごやし北区楠味鋺三丁目80番1号11号室', '1987-11-14', 0, 0, 'chiming2', '2001-11-15', 'luichiming', '2011-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS622680389986', '高木涼太', 1, '+86 755-975-3234', 2, '023030887078975157', '中国深圳福田区景田东一街502号23号楼', '1988-02-02', 0, 0, 'ryotaka', '2001-05-29', 'ryotatakagi', '2007-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS479236479413', 'Donald Owens', 0, '+81 70-8385-4376', 3, '493034597898281606', 'Rm. 4, 3 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1987-02-09', 0, 0, 'owensdon', '2021-10-14', 'donaldow805', '2008-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS090266202854', '谢詩涵', 0, '+44 5737 528574', 1, '410911585821540585', 'Flat 49, 17 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1986-10-15', 0, 0, 'sxie', '2008-01-31', 'xieshih', '2016-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS693103922230', '江岚', 0, '+1 718-794-4745', 1, '328525079002570031', '355 1st Ave Suite 45, Brooklyn, NY 11220, United States', '1993-01-26', 0, 0, 'lanjiang', '2014-01-06', 'jilan', '2013-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS626409967942', '餘明', 0, '+81 3-7801-4881', 1, '846630350769631525', '日本東京中央区銀座三丁目12番8号28階', '1989-11-04', 0, 0, 'myue', '2015-11-22', 'yumin1951', '2005-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS395246487770', '魏璐', 1, '+81 80-1729-5442', 1, '293825411083950610', '日本札幌厚別区上野幌一条二丁目1番16号41階', '1994-11-03', 0, 0, 'lu830', '2002-10-31', 'wei1945', '2001-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS057280383543', '譚青雲', 1, '+44 (151) 048 3961', 3, '069323124121430030', 'Block 32, 405 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1993-11-06', 0, 0, 'tcw7', '2011-06-08', 'chingwant', '2006-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS555638341857', '馬慧珊', 0, '+81 11-828-9544', 2, '555137241271794412', '15-kai, 5-2-17 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1988-10-15', 0, 0, 'waisanm', '2014-12-25', 'maws', '2002-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS224554876762', '萬德華', 1, '+86 139-3238-6070', 4, '244944957891697549', '中国深圳龙岗区布吉镇西环路824号华润大厦38室', '1986-08-01', 0, 0, 'meng2', '2004-11-30', 'mengtakwah', '2015-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS518292470674', '斉藤凛', 1, '+81 80-6839-7144', 4, '200434411596352719', '日本なごやし熱田区千年二丁目5番4号17号室', '1985-09-02', 0, 0, 'rinsa', '2012-01-21', 'sar41', '2018-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS446231393392', '高震南', 0, '+86 755-488-1722', 3, '558942433038339927', '中国深圳罗湖区清水河一路761号12室', '1995-06-08', 0, 0, 'zhenga', '2021-02-22', 'gao609', '2018-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS627137470976', '木下百花', 0, '+1 614-327-8286', 3, '341642949611719486', '343 Wicklow Road Apartment 27, Columbus, GA 43204, United States', '1995-07-11', 0, 0, 'kinomomoka1129', '2006-10-17', 'momokakinos', '2020-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS226771133645', '廖志遠', 0, '+1 213-799-0857', 1, '606236450228237610', '51 S Broadway Apt 38, Los Angeles, CA 90015, United States', '1985-03-17', 0, 0, 'chiyuenl', '2011-05-16', 'chiyuenlia', '2018-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS868566611409', 'Harold Evans', 0, '+44 (151) 924 1214', 1, '459649664848757263', 'Unit 31, Oxford Eco Centre, 653 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1995-04-13', 0, 0, 'harold6', '2018-07-12', 'hae703', '2003-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS195005917231', '罗震南', 1, '+86 153-3717-0872', 1, '074487579291766211', 'Room 42, 718 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1996-03-18', 0, 0, 'zheluo909', '2006-01-26', 'zhenluo911', '2012-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS918208815913', '顧家強', 0, '+86 10-492-6450', 3, '742669935561908321', '中国北京市东城区东单王府井东街710号42栋', '1990-08-08', 0, 0, 'kukakeung', '2004-02-27', 'kkku00', '2021-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS213272112327', '森花', 0, '+1 212-907-6254', 1, '800787307908750620', '738 Canal Street Apt 48, New York, NY 10013, United States', '1998-06-10', 0, 0, 'hanm', '2012-08-29', 'morhana', '2007-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS608494295002', '小野七海', 0, '+86 28-3176-7069', 1, '037596088969199892', 'No.28 building, 668 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1992-03-23', 0, 0, 'onnanami', '2018-05-12', 'onanami2', '2022-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS750204659733', '鄺富城', 1, '+44 (151) 337 7675', 1, '998948152465403539', 'No.24 Main building, 971 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1986-09-09', 0, 0, 'kfs9', '2017-12-10', 'fsk1217', '2018-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS196347600441', 'Juan Marshall', 1, '+86 10-984-5568', 2, '044035241431478560', '中国北京市房山区岳琉路704号13室', '1991-01-14', 0, 0, 'mj718', '2011-08-17', 'marshallj6', '2011-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS992577973875', '樂慧珊', 1, '+86 155-1531-2647', 2, '389935206623586795', 'No.50 building, 62 Kengmei 15th Alley, Dongguan, China', '1998-04-07', 0, 0, 'waisanlo', '2016-07-24', 'waisanl8', '2011-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS609153714138', '崔杰宏', 0, '+86 10-789-7452', 1, '514064689268922438', '中国北京市西城区西長安街716号19楼', '1994-06-11', 0, 0, 'jiehongcu906', '2006-06-27', 'jiehcui', '2017-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS890995452899', '邵子韬', 1, '+44 (121) 116 2438', 4, '658916860684433463', 'No.21 Main building, 359 New Street, Birmingham, B2 4DB, United Kingdom', '1986-08-11', 0, 0, 'shaozita6', '2000-12-19', 'szit6', '2006-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS199965588727', '戴睿', 0, '+1 838-933-7277', 3, '600162566168369144', '624 Central Avenue Apt 24, Albany, NY 12205, United States', '1989-10-15', 0, 0, 'rui1', '2012-03-20', 'dai7', '2015-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS990392025572', '尹宇宁', 1, '+86 769-8555-6574', 2, '946465517328745847', 'Room 4, CR Building, 558 Dongtai 5th St, Dongguan, China', '1995-04-13', 0, 0, 'yuningyin', '2015-09-07', 'yin02', '2017-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS787791031524', '常嘉伦', 1, '+86 157-7358-6011', 3, '810691979897271759', 'Room 42, CR Building, 999 Hongqiao Rd., Xu Hui District, Shanghai, China', '1994-02-23', 0, 0, 'chang525', '2016-02-21', 'changj9', '2012-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS285210968748', 'Lois Hicks', 1, '+1 212-995-7668', 2, '260897398880725717', '794 Fifth Avenue Apartment 44, New York, NY 10017, United States', '1987-08-19', 0, 0, 'hicks627', '2019-10-11', 'loh5', '2012-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS981960720369', 'Gregory Nguyen', 0, '+44 5862 115617', 4, '243435424001499542', 'Flat 45, 91 Hanover Street, London, W1S 1YD, United Kingdom', '1989-07-23', 0, 0, 'grenguy', '2019-04-16', 'gregoryn', '2015-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS821379687558', '贾杰宏', 0, '+44 (1865) 96 1633', 1, '410704495958462091', 'Block 34, 596 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1992-01-07', 0, 0, 'jiajiehong', '2005-04-10', 'jiejia', '2018-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS088747033721', '崔璐', 1, '+44 7660 200624', 1, '632726314860768104', 'Flat 18, 926 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-11-14', 0, 0, 'cuilu1', '2000-04-14', 'culu63', '2004-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS409793162374', '樂家玲', 0, '+86 760-8697-6988', 2, '648210415940273031', '中国中山乐丰六路355号43楼', '1986-02-10', 0, 0, 'lokkl', '2009-02-25', 'lokkaling', '2002-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS792693405286', '阮浩然', 1, '+44 (151) 535 6239', 2, '853897273445999277', 'Unit 43, Oxford Eco Centre, 733 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1997-06-26', 0, 0, 'yuenhoyin725', '2007-09-20', 'yuenhoyin', '2017-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS895813054063', 'Cynthia Lewis', 1, '+86 28-8875-3548', 0, '038565674126238988', '中国成都市锦江区红星路三段568号37楼', '1985-11-11', 0, 0, 'lewcynthia', '2007-03-01', 'lewicynth6', '2016-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS084742837393', 'Scott Sanchez', 0, '+1 838-648-0432', 4, '504164358268922701', '729 Central Avenue 3rd Floor, Albany, NY 12206, United States', '1989-03-15', 0, 0, 'ssanchez8', '2011-02-20', 'scottsa', '2018-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS418357781815', '谷朝偉', 1, '+1 330-173-2220', 3, '829050794727304793', '468 Collier Road Apartment 10, Akron, OH 44320, United States', '1987-07-14', 0, 0, 'koo8', '2002-12-04', 'chiuwai1030', '2005-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS990884390036', '成俊宇', 1, '+81 80-9691-4447', 3, '814405247056083816', 'Rm. 46, 1-7-5 Omido, Higashiosaka, Osaka, Japan', '1992-04-14', 0, 0, 'shing1029', '2011-02-21', 'shing523', '2016-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS299494838063', 'Samuel Cooper', 1, '+44 7641 688921', 1, '818786357559309629', 'Block 30, 439 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1990-05-04', 0, 0, 'cooper504', '2015-03-08', 'csamu', '2012-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS970357903443', '贾震南', 1, '+81 66-870-7545', 4, '956553035164286675', '日本おおさかし西成区出城一丁目1番5号17階', '1986-07-20', 0, 0, 'zhennan91', '2004-03-20', 'zhennanj', '2006-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS796391291302', '甘淑怡', 1, '+44 7891 718020', 1, '672825641013079273', 'Flat 40, 550 Park End St, Oxford, OX1 1JD, United Kingdom', '1988-03-08', 0, 0, 'kamsukyee', '2018-03-31', 'kamsukyee', '2006-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS459945196414', '近藤彩乃', 0, '+86 191-4356-2226', 3, '310438275422368315', '中国深圳福田区景田东一街220号34室', '1986-06-01', 0, 0, 'kay', '2010-02-03', 'kondoay', '2012-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS986133293690', '阮仲賢', 1, '+81 90-5866-6053', 2, '402942365066077285', '日本札幌清田区真栄四条五丁目19番13号22階', '1990-10-12', 0, 0, 'chungyinyu9', '2004-11-18', 'yuen3', '2020-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS097165437211', '岡本翼', 1, '+1 838-241-7838', 2, '997422907725247476', '294 Broadway Apartment 2, Albany, NY 12207, United States', '1991-03-12', 0, 0, 'okamoto326', '2017-02-20', 'otsu1110', '2010-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS780148434224', '常岚', 1, '+44 5993 667782', 1, '870930912630870954', 'Block 43, 318 Park End St, Oxford, OX1 1JD, United Kingdom', '1985-03-26', 0, 0, 'chang55', '2009-06-27', 'lachang8', '2015-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS932799655788', '邱子韬', 1, '+81 90-4031-9965', 1, '182815164549648000', 'Rm. 42, 3-15-9 Ginza, Chuo-ku, Tokyo, Japan', '1988-10-31', 0, 0, 'qiuzitao75', '2008-12-21', 'qzitao', '2005-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS640181885812', '何嘉伦', 0, '+81 3-0177-7949', 1, '357070784921513040', '日本東京渋谷区代々木二丁目3番8号20階', '1990-06-27', 0, 0, 'jialunh', '2014-06-16', 'hejialun', '2006-02-14'); +INSERT INTO "public"."userinfo" VALUES ('TS197027952588', 'Jose Clark', 1, '+1 838-763-1358', 4, '135227993862345216', '134 Central Avenue Suite 31, Albany, NY 12206, United States', '1989-11-30', 0, 0, 'clarkjose', '2013-11-02', 'clajose10', '2003-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS409341258597', '郝震南', 1, '+1 212-121-5549', 4, '539978122880242182', '189 West Houston Street Apartment 41, New York, NY 10014, United States', '1998-12-18', 0, 0, 'haozhen3', '2022-01-22', 'haoz1968', '2000-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS276763242381', 'Norman Collins', 1, '+81 70-4436-2045', 1, '892196471221318013', 'Rm. 50, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1994-08-05', 0, 0, 'normacol1', '2004-01-07', 'ncollins2002', '2019-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS464304684047', 'Scott James', 0, '+1 312-740-7436', 4, '204604827908085522', '9 North Michigan Ave Apartment 23, Chicago, IL 60611, United States', '1990-12-13', 0, 0, 'jscott517', '2020-02-02', 'jamesscott', '2015-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS617962926279', '石井瑛太', 0, '+81 80-0972-0939', 3, '065918558379239014', '日本札幌厚別区上野幌一条二丁目1番13号30号室', '1995-04-17', 0, 0, 'eitais', '2009-06-16', 'ise', '2000-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS101837043392', '湯家明', 0, '+81 52-347-3828', 1, '136191161376476498', '日本なごやし守山区瀬古東二丁目171番3号18階', '1991-11-22', 0, 0, 'tongkm', '2017-01-10', 'tonkaming9', '2014-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS409608883814', 'Theodore Gibson', 0, '+1 213-548-8570', 1, '711677520365024186', '145 S Broadway Suite 15, Los Angeles, CA 90015, United States', '1985-11-24', 0, 0, 'gibsontheod', '2005-10-09', 'gibson2', '2015-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS592941015012', '高田拓哉', 1, '+86 10-6483-4648', 1, '825450954725822126', 'No.50 building, 118 Dong Zhi Men, Dongcheng District, Beijing, China', '1986-02-02', 0, 0, 'tt1119', '2017-08-16', 'tt9', '2011-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS766230127762', '程秀英', 1, '+1 212-979-6820', 3, '168950847635571862', '354 Fifth Avenue Suite 42, New York, NY 10017, United States', '1996-09-13', 0, 0, 'xiuyingche', '2009-06-26', 'cheng509', '2001-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS708157188211', 'Patricia Rivera', 0, '+44 (20) 9739 6202', 3, '476898265255301679', 'Block 23, 137 Pollen Street, London, W1S 1NG, United Kingdom', '1986-12-06', 0, 0, 'patriver', '2014-10-24', 'pri1994', '2020-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS780544616151', '古惠妹', 1, '+81 11-655-5649', 2, '317991057826047977', '5-kai, 2-1-1 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-03-21', 0, 0, 'huimku10', '2009-08-08', 'huimeiku', '2012-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS168032926502', '後藤玲奈', 1, '+44 (1865) 90 5558', 1, '179047030550630797', 'Block 31, 344 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1992-11-12', 0, 0, 'regoto', '2019-11-02', 'gotor15', '2007-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS156372415263', '梁志遠', 1, '+86 21-0359-9106', 2, '445505645904134039', '中国上海市黄浦区淮海中路353号18楼', '1994-06-19', 0, 0, 'chiyuen13', '2011-03-27', 'cyl807', '2006-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS108943526197', '盧慧嫻', 0, '+44 7887 604094', 3, '163176919948037837', 'Unit 23, Oxford Eco Centre, 940 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1986-07-30', 0, 0, 'lowaihan', '2006-06-03', 'waihanlo506', '2009-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS917114377245', '吳思妤', 1, '+81 11-126-9603', 3, '052472232814936114', '47-kai, 6-1-8, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1992-10-05', 0, 0, 'syng1', '2002-10-26', 'ngszeyu', '2015-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS022447663625', '苏安琪', 1, '+86 769-4800-4426', 2, '477842172355471305', '30F, 835 Kengmei 15th Alley, Dongguan, China', '1986-11-05', 0, 0, 'suanqi9', '2006-09-10', 'su3', '2010-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS739629856258', 'Marcus Kim', 0, '+1 213-838-3887', 2, '543003163578512113', '564 Alameda Street Suite 19, Los Angeles, CA 90002, United States', '1987-02-15', 0, 0, 'marcuski1106', '2007-08-01', 'kma6', '2002-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS101146788458', '上田海斗', 0, '+86 769-883-7710', 3, '164895916938886279', 'No.28 building, 34 Dongtai 5th St, Dongguan, China', '1997-09-09', 0, 0, 'uedakaito', '2009-11-24', 'kaito1128', '2012-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS409880274270', '島田大輔', 0, '+81 80-4349-8577', 1, '501141802062961900', '43-kai, 5-2-11 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1995-10-28', 0, 0, 'shimd06', '2012-12-29', 'shimadais', '2011-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS658914731686', '丁致远', 1, '+86 769-5013-1074', 4, '298628389998547101', 'No.45 building, 866 Dongtai 5th St, Dongguan, China', '1992-02-09', 0, 0, 'dingz1969', '2011-05-15', 'dinzhiyuan5', '2010-06-29'); +INSERT INTO "public"."userinfo" VALUES ('TS972523470465', 'Bernard Griffin', 0, '+81 74-959-3625', 0, '958073941460128397', '日本ならし学園南三丁目9番13号36階', '1992-02-05', 0, 0, 'bernard1947', '2008-03-29', 'bernard1', '2011-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS470681068861', '宮本翼', 1, '+81 52-329-1673', 0, '072243202240292655', '日本なごやし北区楠味鋺三丁目80番20号46号室', '1988-06-22', 0, 0, 'miytsuba', '2004-12-16', 'mitsubasa421', '2016-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS617268765143', '任詩涵', 0, '+81 11-339-4727', 0, '128953632542876709', '日本札幌厚別区上野幌一条二丁目1番6号9号室', '1988-07-06', 0, 0, 'ren61', '2005-08-03', 'renshi17', '2009-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS010175446160', '贾子韬', 1, '+86 28-7135-9946', 2, '278652038184945315', '中国成都市成华区二仙桥东三路251号48室', '1999-01-24', 0, 0, 'zjia3', '2006-08-29', 'zjia1961', '2012-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS971227205416', '山本翼', 0, '+81 66-766-9203', 0, '989041735491863700', '日本おおさかし平野区加美東四丁目9番18号30階', '1996-11-05', 0, 0, 'yamamotot', '2019-11-30', 'yamamoto2', '2006-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS900965477072', 'Karen Rivera', 1, '+86 151-2920-5286', 3, '801683487301414902', '中国北京市西城区西長安街443号华润大厦46室', '1988-11-03', 0, 0, 'riverakaren', '2017-09-03', 'riverkaren2012', '2000-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS064036281936', '宮本架純', 1, '+81 52-850-6500', 3, '403860410530482705', '42F, 9 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-12-30', 0, 0, 'miyamotokasumi', '2016-02-27', 'kasumi2006', '2014-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS579445684264', '長谷川詩乃', 0, '+81 70-0521-2380', 4, '241577053050333847', '32-kai, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1991-10-20', 0, 0, 'hs910', '2011-05-30', 'shinohasegawa', '2007-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS567569433003', '藤田樹', 1, '+81 70-5182-0987', 2, '397145430143706387', '日本東京港区東新橋一丁目5番15号30階', '1998-04-03', 0, 0, 'itsukfujita8', '2020-12-21', 'ifujit1', '2019-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS716383865747', '横山玲奈', 0, '+81 66-957-7366', 1, '434156668904271418', '9-kai, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1996-07-02', 0, 0, 'renayokoyama617', '2003-03-23', 'yokoyama2006', '2021-05-29'); +INSERT INTO "public"."userinfo" VALUES ('TS552746431269', 'Amber Chavez', 1, '+86 187-8556-2459', 0, '543857353085825673', '中国北京市東城区東直門內大街309号12室', '1998-07-29', 0, 0, 'chaveza2', '2000-08-01', 'amberc', '2015-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS978191656952', '村上紗良', 1, '+44 5718 823174', 2, '809548591842274337', 'Unit 17, Oxford Eco Centre, 862 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1996-02-06', 0, 0, 'murakami9', '2018-07-15', 'mursara403', '2002-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS978892339799', '甘家強', 0, '+81 3-0829-1569', 2, '013474903129170802', '日本東京千代田区丸の内一丁目6番16号50号室', '1993-09-08', 0, 0, 'kakeungk', '2020-12-25', 'kkk8', '2008-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS339727545616', '汪安琪', 1, '+81 52-186-6845', 2, '644182393713983347', 'Rm. 15, 2-5-20 Chitose, Atsuta Ward, Nagoya, Japan', '1987-07-07', 0, 0, 'anqi00', '2012-02-04', 'waanqi', '2018-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS604373220149', '鄺曉彤', 0, '+81 90-5986-1392', 0, '889513352505856573', '日本東京港区東新橋一丁目5番19号22号室', '1997-06-28', 0, 0, 'kwhiutung99', '2002-04-22', 'khiutung', '2006-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS693487779288', '曾岚', 0, '+86 148-7158-6857', 0, '518155452660941624', 'Room 5, CR Building, 440 Tianhe Road, Tianhe District, Guangzhou, China', '1993-07-08', 0, 0, 'lanzeng8', '2003-03-01', 'lanzeng', '2010-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS830330257680', '藤田美緒', 0, '+1 213-841-1754', 1, '466298789798288505', '277 S Broadway Apartment 45, Los Angeles, CA 90015, United States', '1993-06-09', 0, 0, 'fujitamio7', '2012-10-04', 'mio10', '2003-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS297284131660', '柴田涼太', 1, '+86 755-7904-9974', 4, '877296999224709214', 'No.10 building, 633 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1986-10-31', 0, 0, 'shiryot', '2019-01-15', 'shibatary', '2021-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS233329645749', '伊藤涼太', 0, '+81 66-946-2588', 3, '420973319195947959', '日本おおさかし近江堂一丁目7番10号27号室', '1998-12-03', 0, 0, 'itr1201', '2001-11-10', 'ito06', '2011-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS264463137213', '村上海斗', 1, '+81 3-0384-6099', 3, '333121463355965757', '14-kai, 2-3-17 Yoyogi, Shibuya-ku, Tokyo, Japan', '1986-02-19', 0, 0, 'murakamikaito1025', '2003-07-10', 'kaitomur', '2014-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS915754864910', 'Peggy Castillo', 1, '+81 90-6665-2207', 3, '184016438145533730', '日本札幌清田区真栄四条五丁目19番3号4階', '1986-04-02', 0, 0, 'castillo6', '2009-04-08', 'castillop85', '2013-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS743052412396', '吉田百恵', 0, '+86 197-7332-3055', 3, '807201479600436891', '中国成都市成华区双庆路907号15栋', '1986-03-06', 0, 0, 'ym3', '2003-04-01', 'yoshmo1019', '2021-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS433803512043', '桜井一輝', 0, '+44 5956 041388', 1, '724362611449664498', 'Flat 25, 261 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1994-10-24', 0, 0, 'ikki1213', '2018-09-04', 'sakurikki', '2015-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS895025623195', '區祖兒', 1, '+86 20-062-0513', 3, '270278849117464905', '中国广州市天河区天河路985号42楼', '1992-08-16', 0, 0, 'auchoyee', '2013-02-02', 'choyeea1', '2019-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS437367971155', '安藤凛', 0, '+81 70-6731-2568', 1, '936129445401547021', '15-kai, 6-1-17, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1998-09-09', 0, 0, 'andorin', '2018-06-17', 'rin4', '2015-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS279489642829', '溫家文', 0, '+86 150-4102-7702', 2, '557793657573550543', '中国东莞东泰五街899号华润大厦38室', '1996-09-02', 0, 0, 'kmwan8', '2004-12-02', 'kamanwan92', '2007-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS007766197487', '贺秀英', 0, '+1 330-444-1207', 1, '546611389301339833', '655 Collier Road Suite 38, Akron, OH 44320, United States', '1989-08-21', 0, 0, 'he72', '2001-11-19', 'xiuyhe', '2018-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS064495595855', '石田美月', 0, '+1 614-686-9429', 2, '520380584973796212', '702 Tremont Road Suite 48, Columbus, GA 43212, United States', '1994-09-10', 0, 0, 'mishid', '2019-09-23', 'mitsukiis', '2011-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS218269609137', '熊云熙', 0, '+1 614-879-7385', 1, '786433549883570277', '234 East Cooke Road Apt 14, Columbus, GA 43214, United States', '1990-11-30', 0, 0, 'yunxiong', '2009-02-13', 'yunxix', '2010-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS703023090952', '林大和', 1, '+1 614-745-0681', 1, '368130047273248274', '524 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1991-05-17', 0, 0, 'yamah', '2001-04-24', 'yhaya1993', '2022-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS425995863023', '駱慧嫻', 0, '+44 5352 843557', 2, '010043389745413292', 'Block 36, 970 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1996-07-12', 0, 0, 'waihanlok10', '2001-06-25', 'lokwh', '2011-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS336506561064', '白浩然', 1, '+1 213-987-1847', 3, '562784350809515426', '956 S Broadway Suite 32, Los Angeles, CA 90015, United States', '1987-01-27', 0, 0, 'phy1973', '2010-12-09', 'hypak', '2001-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS363909685477', '马云熙', 0, '+81 66-349-6203', 3, '001730440090821269', '46F, 1-1-7 Deshiro, Nishinari Ward, Osaka, Japan', '1997-03-07', 0, 0, 'ma81', '2020-01-16', 'myun212', '2003-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS336914597965', '餘嘉欣', 1, '+81 80-8596-5113', 3, '919291374009410619', '19-kai, 4-9-13 Kamihigashi, Hirano Ward, Osaka, Japan', '1986-05-22', 0, 0, 'yueky78', '2004-04-04', 'kyyue', '2014-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS996384138938', '今井湊', 1, '+86 760-455-3231', 3, '302159697751901968', '中国中山乐丰六路845号2号楼', '1992-12-22', 0, 0, 'imamin129', '2018-06-21', 'imamin', '2018-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS523864850223', 'Ruth Peterson', 0, '+81 11-509-2569', 1, '647868547317032123', '31-kai, 5-4-10 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-01-18', 0, 0, 'peruth', '2018-11-03', 'pr822', '2014-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS495377328526', 'Brenda Jenkins', 0, '+81 90-8724-4926', 1, '243984820546807195', '日本札幌厚別区上野幌一条二丁目1番11号2号室', '1990-11-05', 0, 0, 'jebrend8', '2009-03-13', 'jenkbrenda2', '2008-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS262631786305', 'Marcus Freeman', 1, '+44 5513 931937', 0, '198685294088157473', 'Flat 35, 429 Hanover St, Liverpool, L1 4AF, United Kingdom', '1994-09-16', 0, 0, 'freeman51', '2017-05-23', 'freeman1', '2021-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS763298960540', '大野架純', 1, '+1 718-727-8076', 2, '297354062048472418', '943 1st Ave Suite 24, Brooklyn, NY 11220, United States', '1993-07-21', 0, 0, 'onokasumi', '2013-01-26', 'onkasumi', '2015-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS123801000758', 'Lori Perez', 1, '+1 838-817-3906', 0, '245975000206209627', '426 Lark Street 3rd Floor, Albany, NY 12210, United States', '1994-10-04', 0, 0, 'lorip70', '2006-12-04', 'loriperez1', '2006-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS656779484284', '狄國榮', 0, '+44 (161) 666 8006', 3, '454593425884640246', 'Unit 17, Oxford Eco Centre, 930 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-10-21', 0, 0, 'kwokwing8', '2006-07-30', 'kwti6', '2002-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS697377562738', '黎宇宁', 1, '+86 28-239-6761', 2, '446760488465209356', 'No.16 building, 339 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1988-05-02', 0, 0, 'yuningl1973', '2001-09-27', 'liyuni5', '2013-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS357268160353', '譚國權', 1, '+86 760-6003-3244', 3, '540015063943542286', 'No.29 building, 831 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1993-05-17', 0, 0, 'tkwokkuen', '2021-08-12', 'tamkwokkuen', '2017-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS838216862025', '上野七海', 1, '+1 330-723-3862', 2, '167814302913156430', '731 Fern Street 3rd Floor, Akron, OH 44307, United States', '1997-11-04', 0, 0, 'nanami86', '2003-10-11', 'unana312', '2018-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS082979408191', 'Jessica Sanchez', 0, '+81 52-413-9811', 2, '440482013057253646', '日本なごやし北区楠味鋺三丁目80番6号23階', '1988-02-18', 0, 0, 'jessan', '2004-06-06', 'jessicasanchez', '2011-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS190968058881', 'Theodore Rose', 1, '+86 10-930-0602', 0, '687220947451870551', '中国北京市房山区岳琉路934号21室', '1985-10-08', 0, 0, 'rosetheo', '2005-09-30', 'theodore5', '2009-12-20'); +INSERT INTO "public"."userinfo" VALUES ('TS498687264236', '严宇宁', 1, '+81 70-3549-6079', 2, '300614355184228373', '27-kai, 2-1-9 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1988-12-01', 0, 0, 'yuning3', '2006-08-21', 'yuning218', '2020-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS086920458319', '常子异', 0, '+86 140-2555-5549', 4, '252938094096510202', 'Room 1, 784 FuXingMenNei Street, XiCheng District, Beijing, China', '1997-02-07', 0, 0, 'changziy', '2014-09-19', 'ziyich4', '2016-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS564497436976', 'Anita Butler', 1, '+81 80-0357-4250', 2, '561993720935073389', '日本ならし学園南三丁目9番4号16階', '1990-05-18', 0, 0, 'anb', '2002-02-27', 'anitabutl', '2018-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS188636162855', '王睿', 0, '+86 149-2099-9715', 1, '209417157119885094', 'Room 3, 276 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1994-05-14', 0, 0, 'ruiw', '2019-01-01', 'wangrui', '2002-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS188304822683', '毛慧嫻', 1, '+44 (1223) 50 7348', 2, '301788594604295410', 'No.16 Main building, 155 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1995-10-06', 0, 0, 'waihan1123', '2019-06-04', 'waihan83', '2010-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS663394817957', '錢慧琳', 1, '+81 66-933-2468', 4, '875708104613690947', '日本おおさかし東住吉区東田辺三丁目27番8号27号室', '1986-04-13', 0, 0, 'chinwl901', '2016-02-04', 'wailam01', '2011-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS992434476280', '岩崎健太', 0, '+44 5161 609950', 3, '116325976590695523', 'Unit 23, Oxford Eco Centre, 838 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1986-08-19', 0, 0, 'kiwasaki', '2014-10-15', 'iwasakik', '2010-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS001060207153', 'Margaret Griffin', 1, '+86 755-0576-9860', 0, '986612518303399260', '中国深圳罗湖区清水河一路431号17室', '1994-03-08', 0, 0, 'griffinmargaret', '2017-08-11', 'margaretg', '2009-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS344209288285', '孟子韬', 1, '+86 760-557-9324', 2, '316236736798689510', '中国中山天河区大信商圈大信南路440号40栋', '1986-02-12', 0, 0, 'mengzitao', '2009-08-22', 'mengzitao6', '2012-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS619347479689', 'Michelle Schmidt', 0, '+44 7358 760590', 4, '667512255681364733', 'Block 42, 352 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1994-12-29', 0, 0, 'michelle627', '2017-08-23', 'smichelle92', '2014-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS911427437814', '木村大地', 1, '+44 (151) 990 6415', 2, '550922709102975553', 'Block 44, 641 Redfern St, Liverpool, L20 8JB, United Kingdom', '1986-06-13', 0, 0, 'dak', '2008-06-27', 'kimura3', '2008-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS317860787087', '廖震南', 1, '+44 7546 587896', 1, '206797557430411806', 'No.40 Main building, 498 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1998-12-08', 0, 0, 'zhennanli01', '2000-09-04', 'liazhen', '2010-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS398428334228', 'Janet King', 0, '+86 181-7936-2365', 2, '166783586333341669', '中国广州市越秀区中山二路866号28号楼', '1993-04-11', 0, 0, 'king57', '2001-09-21', 'janet65', '2019-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS293359509861', 'Debra Silva', 1, '+44 5904 283846', 1, '741344554609752532', 'Unit 36, Oxford Eco Centre, 890 Pollen Street, London, W1S 1NG, United Kingdom', '1996-05-24', 0, 0, 'silva620', '2000-06-16', 'silva726', '2020-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS975228950779', '池田光', 0, '+44 5195 855364', 1, '664964869961528560', 'Block 46, 719 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1985-09-15', 0, 0, 'hikaiked18', '2017-01-17', 'hike', '2006-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS545062168074', '伍俊宇', 1, '+81 80-7428-1505', 0, '552117039992160272', '日本おおさかし東住吉区東田辺三丁目27番18号45号室', '1990-10-31', 0, 0, 'chunyu1029', '2003-10-20', 'ng4', '2020-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS707898027193', '董子异', 1, '+81 70-8580-3286', 3, '682038859474472696', '日本おおさかし近江堂一丁目7番11号30号室', '1992-05-26', 0, 0, 'zdong2', '2018-10-29', 'zdong', '2000-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS168534123532', '徐詠詩', 1, '+81 90-2204-5971', 2, '020792750527495388', '日本なごやし北区清水三丁目19番13号12階', '1991-12-21', 0, 0, 'tws', '2004-11-03', 'tsuws', '2013-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS300296585210', '岩崎悠人', 1, '+44 7254 545455', 0, '489744498524695119', 'No.37 Main building, 587 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-10-17', 0, 0, 'yuto303', '2004-11-11', 'yuto229', '2004-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS787589274811', '任明詩', 1, '+1 718-384-9473', 3, '809227957854776721', '589 Columbia St Suite 5, Brooklyn, NY 11231, United States', '1992-06-03', 0, 0, 'yammingsze4', '2005-08-22', 'mingszeyam', '2002-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS754286808686', '段安琪', 0, '+86 189-2183-8839', 2, '875039858120998076', 'Room 8, CR Building, 660 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1985-05-02', 0, 0, 'da7', '2011-11-01', 'anqiduan821', '2005-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS422417456233', 'Henry Thomas', 1, '+81 80-5500-8599', 3, '026356511675218830', '日本札幌白石区菊水三条五丁目2番13号3階', '1997-11-27', 0, 0, 'hent', '2021-11-24', 'thomahe', '2019-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS175201000677', 'Leonard Moore', 0, '+1 614-379-3353', 4, '139254640860133404', '972 East Cooke Road Suite 32, Columbus, GA 43214, United States', '1987-07-20', 0, 0, 'moore72', '2020-09-30', 'mooreleon3', '2017-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS736056777108', '薛安琪', 0, '+86 10-7716-9587', 2, '842296545845832540', '中国北京市西城区西長安街971号29栋', '1992-04-26', 0, 0, 'xueanqi5', '2007-11-25', 'xue6', '2010-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS815609636446', '藤天榮', 1, '+44 (116) 919 1190', 3, '792133527718281176', 'No.19 Main building, 756 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1993-10-13', 0, 0, 'tangtw', '2016-08-09', 'tinwingtang', '2001-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS226286376983', '梅富城', 0, '+1 718-115-3491', 1, '842136161098343143', '884 Bergen St Apt 49, Brooklyn, NY 11217, United States', '1989-06-14', 0, 0, 'fushingmui16', '2005-08-03', 'fsmu8', '2009-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS367172543854', 'Kathleen Gomez', 1, '+1 212-466-7670', 2, '583127243405212677', '831 Wooster Street Apt 19, New York, NY 10012, United States', '1988-09-14', 0, 0, 'gomezkathleen', '2006-03-30', 'gomkat', '2003-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS821498615301', '山口陽太', 1, '+86 21-4266-6847', 2, '595557200012280471', 'Room 4, 125 Hongqiao Rd., Xu Hui District, Shanghai, China', '1988-10-22', 0, 0, 'yotyamaguchi', '2001-08-29', 'yamy', '2004-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS782863182079', '宣惠敏', 0, '+86 769-2240-1861', 2, '601819139271755621', '33F, 59 Kengmei 15th Alley, Dongguan, China', '1991-05-21', 0, 0, 'waimanhs', '2015-01-04', 'hsuanwai', '2007-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS086773241437', 'Matthew Chavez', 1, '+1 312-228-9895', 3, '842868701229240882', '997 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1989-09-05', 0, 0, 'chavmatthew', '2002-01-07', 'matthew1', '2009-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS786728848486', 'Ralph Jordan', 0, '+44 5918 041936', 3, '853556563232954771', 'Flat 24, 503 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1986-08-07', 0, 0, 'rj5', '2016-12-30', 'ralphj', '2005-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS570170368642', 'Ricky Warren', 1, '+1 718-870-8757', 4, '253073218849205932', '855 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1994-02-10', 0, 0, 'warreric1110', '2015-04-02', 'rickywarren', '2009-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS434557555172', '丁致远', 1, '+81 3-0217-0396', 3, '037122868876824371', '25F, 2-3-10 Yoyogi, Shibuya-ku, Tokyo, Japan', '1993-10-28', 0, 0, 'dinz', '2013-06-26', 'zhiyuan9', '2002-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS265407208254', '小島瑛太', 1, '+81 80-7560-2231', 2, '804580407202160197', 'Rm. 18, 2-1-2 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1996-08-14', 0, 0, 'ekojima', '2009-02-20', 'eitak907', '2016-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS761055604643', '小林蓮', 0, '+44 5780 694287', 3, '278704287933292719', 'Block 4, 150 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1988-04-24', 0, 0, 'renkob8', '2010-11-01', 'kobayashir2', '2010-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS437169968099', '太田一輝', 0, '+1 212-339-7817', 3, '213105395497699617', '840 Wooster Street Suite 45, New York, NY 10012, United States', '1990-08-15', 0, 0, 'io5', '2000-11-23', 'ikkiota88', '2011-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS095343690072', '斎藤絢斗', 0, '+81 80-2840-2400', 2, '558385855098757512', '12-kai, 2-3-12 Yoyogi, Shibuya-ku, Tokyo, Japan', '1989-01-01', 0, 0, 'ayas', '2005-04-16', 'as1209', '2008-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS292404236932', '傅安琪', 0, '+86 20-095-2381', 1, '509539605695502875', '中国广州市海珠区江南西路896号25栋', '1997-12-16', 0, 0, 'anqfu2', '2012-03-31', 'fu7', '2011-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS591450219286', '蕭家玲', 0, '+81 74-503-9326', 3, '959439291268750722', '日本ならし大和郡山市本庄町一丁目1番5号13号室', '1996-12-05', 0, 0, 'klsiu', '2005-04-16', 'kaling311', '2014-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS441899893366', '汪國榮', 0, '+81 11-432-6515', 2, '323123275198478663', '24F, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1988-09-10', 0, 0, 'wongkw115', '2016-10-12', 'wokwokwing', '2012-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS603751067824', '常云熙', 0, '+81 3-7706-5212', 4, '820369425871698661', '48-kai, 1-5-10, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-08-11', 0, 0, 'chang1996', '2004-06-15', 'yunxcha', '2017-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS155747287269', '宣學友', 0, '+81 52-876-4835', 2, '253079450568135834', '23F, 2-5-8 Chitose, Atsuta Ward, Nagoya, Japan', '1989-12-05', 0, 0, 'hsuan127', '2005-08-18', 'hsuhokyau', '2012-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS416399867099', '林優奈', 0, '+44 (20) 3773 4486', 1, '287559911430164141', 'No.22 Main building, 85 Hanover Street, London, W1S 1YD, United Kingdom', '1989-08-05', 0, 0, 'hy910', '2012-10-06', 'yunah91', '2010-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS050442963527', '黃嘉欣', 1, '+86 183-8221-4951', 2, '709031479063914108', '中国广州市越秀区中山二路14号1室', '1992-06-22', 0, 0, 'wongky', '2001-11-06', 'kywong', '2011-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS881563421264', '宋子异', 1, '+1 213-711-6136', 3, '774691284896268704', '92 Sky Way Apt 23, Los Angeles, CA 90043, United States', '1995-01-11', 0, 0, 'songziyi', '2015-02-06', 'zsong', '2008-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS952120323294', '佘永權', 0, '+81 70-3658-9919', 3, '207479787237414355', '日本なごやし北区楠味鋺三丁目80番16号14階', '1988-07-20', 0, 0, 'wksheh', '2019-11-11', 'shwin', '2002-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS684688551683', '石田陸', 1, '+1 213-921-1087', 3, '491722073998532270', '284 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1987-01-25', 0, 0, 'ishida8', '2003-10-26', 'ri07', '2008-12-11'); +INSERT INTO "public"."userinfo" VALUES ('TS505172207441', '程致远', 1, '+1 718-029-0157', 2, '858000563873969536', '784 Bergen St Apt 34, Brooklyn, NY 11217, United States', '1998-01-27', 0, 0, 'zhiyuanchen8', '2013-06-07', 'zhiyuanc', '2014-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS592126514528', 'Jesse Rice', 0, '+1 212-416-2580', 2, '343210861372017617', '445 Bank Street Apt 39, New York, NY 10014, United States', '1995-09-17', 0, 0, 'jesserice', '2004-03-02', 'jessr', '2015-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS618646848039', 'Eddie Palmer', 0, '+1 330-748-4269', 1, '828169036241070419', '897 West Market Street 3rd Floor, Akron, OH 44333, United States', '1988-07-17', 0, 0, 'eddie412', '2015-08-18', 'palmer10', '2001-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS505768617464', '鄺天樂', 1, '+86 28-443-0982', 1, '031792016709828238', '中国成都市锦江区人民南路四段594号华润大厦11室', '1989-04-14', 0, 0, 'kwongtinlok', '2019-03-07', 'kwontinlok', '2007-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS744960505107', 'Harold White', 0, '+1 212-794-3491', 1, '980923785948840042', '125 West Houston Street 3rd Floor, New York, NY 10014, United States', '1998-09-14', 0, 0, 'harold8', '2013-10-25', 'wharold', '2005-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS385878843282', '長谷川絢斗', 0, '+86 158-3418-0243', 1, '950728999081990759', '中国广州市白云区小坪东路100号华润大厦25室', '1998-09-01', 0, 0, 'ayatohasegawa', '2000-11-14', 'ayathasegawa', '2020-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS362869960240', '程震南', 0, '+81 70-0731-3136', 3, '337857959311645433', '16-kai, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1994-03-20', 0, 0, 'cheng1944', '2010-01-21', 'chezhen5', '2008-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS163192530294', '伊藤美羽', 0, '+86 21-3279-5456', 3, '876749967291063775', 'Room 17, 533 Ganlan Rd, Pudong, Shanghai, China', '1985-08-14', 0, 0, 'imiu', '2017-03-03', 'itmiu', '2016-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS320088734731', '藤原海斗', 1, '+1 213-204-7730', 2, '460214321808776292', '674 Alameda Street Suite 45, Los Angeles, CA 90002, United States', '1998-08-10', 0, 0, 'kfujiwara', '2020-04-08', 'fujkaito', '2009-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS151499447677', 'Monica Alvarez', 1, '+44 7720 637193', 1, '209397268782340167', 'Unit 42, Oxford Eco Centre, 782 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1989-02-05', 0, 0, 'monicaalvarez', '2009-04-10', 'amonica', '2000-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS332285624453', '上田彩乃', 1, '+86 191-9804-1295', 1, '345564650023537152', 'No.46 building, No.193, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1989-10-05', 0, 0, 'ua6', '2016-03-22', 'ayanoue', '2008-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS375833357457', '和田和真', 0, '+86 760-2814-4190', 1, '720390694261033030', 'No.30 building, 984 Lefeng 6th Rd, Zhongshan, China', '1994-04-29', 0, 0, 'wadakazu44', '2016-03-23', 'wada1973', '2002-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS317318953895', '彭宇宁', 0, '+1 212-948-9743', 3, '795686071376092617', '491 Canal Street Apartment 38, New York, NY 10013, United States', '1996-11-19', 0, 0, 'ypeng', '2005-11-25', 'yunipeng215', '2013-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS510627711233', '曹秀英', 0, '+1 212-491-7921', 1, '700338353539455815', '364 West Houston Street Apartment 3, New York, NY 10014, United States', '1997-04-05', 0, 0, 'caoxiu', '2009-03-22', 'caoxi89', '2012-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS177404892423', '前田百恵', 1, '+44 5658 712429', 2, '816315578262262013', 'No.9 Main building, 725 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1989-08-01', 0, 0, 'mamom', '2008-01-04', 'momoe4', '2015-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS859842591455', '羅天榮', 0, '+44 7970 536671', 2, '655106040075399343', 'Block 12, 705 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1985-06-10', 0, 0, 'lotw511', '2005-08-31', 'twlo626', '2011-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS267298002288', '毛霆鋒', 1, '+86 21-575-5212', 0, '449610210605775076', '中国上海市浦东新区橄榄路951号18号楼', '1994-05-06', 0, 0, 'tfmo', '2016-08-19', 'mo10', '2010-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS605007544795', '郭國賢', 0, '+86 198-0644-6194', 2, '313717662967889398', '40F, 55 028 County Rd, Yanqing District, Beijing, China', '1990-07-21', 0, 0, 'kwok1', '2012-09-17', 'kwokkwokyin', '2011-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS893934800747', '丁宇宁', 1, '+81 66-217-6885', 4, '767809923286854668', 'Rm. 16, 4-9-12 Kamihigashi, Hirano Ward, Osaka, Japan', '1996-09-21', 0, 0, 'diyuni', '2001-08-22', 'ding313', '2010-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS275870017994', '汪秀英', 0, '+81 52-097-9900', 3, '845618813664121278', '22-kai, 6 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1987-05-11', 0, 0, 'wangx2003', '2007-07-19', 'xiuyingwa', '2019-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS395335532347', 'Sara Powell', 1, '+81 66-971-9882', 0, '119740076185469377', '35-kai, 4-9-10 Kamihigashi, Hirano Ward, Osaka, Japan', '1993-10-08', 0, 0, 'sarapowe47', '2000-10-07', 'sarapowell', '2021-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS751147704641', '甘潤發', 0, '+86 158-8904-5090', 2, '456645992526064292', '40F, 195 Ganlan Rd, Pudong, Shanghai, China', '1991-12-24', 0, 0, 'yunfk8', '2015-03-03', 'yfkam', '2008-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS222723471596', '严詩涵', 1, '+44 5648 693451', 3, '191480778096793706', 'Flat 25, 351 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1998-07-06', 0, 0, 'shiya', '2009-05-19', 'yans', '2015-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS372924745009', '熊云熙', 0, '+86 150-4280-3352', 0, '378859884749217092', '中国北京市延庆区028县道655号3栋', '1986-07-08', 0, 0, 'yunxxio8', '2002-07-30', 'yunxixi310', '2016-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS596153171836', '石秀英', 1, '+44 (121) 646 3700', 4, '876226269079014534', 'Unit 10, Oxford Eco Centre, 144 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1985-04-14', 0, 0, 'xiuyings', '2015-05-14', 'sxiuy', '2011-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS732449971740', '許曉彤', 1, '+81 66-118-1100', 1, '728432879941753738', '日本おおさかし西成区出城一丁目1番14号27階', '1996-01-07', 0, 0, 'hiutunghui', '2017-03-12', 'hiutung1990', '2020-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS987942838640', '中山大地', 1, '+81 52-142-3373', 0, '792587182968079114', '24-kai, 18 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1994-12-27', 0, 0, 'daichi5', '2013-07-16', 'daichi110', '2012-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS418907407445', '武田湊', 1, '+1 614-966-3243', 0, '828226499219589526', '385 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1991-08-13', 0, 0, 'mintake', '2013-05-23', 'takedami719', '2020-05-20'); +INSERT INTO "public"."userinfo" VALUES ('TS285489467743', '柴田明菜', 1, '+1 718-511-8124', 3, '148912878525720089', '598 Bergen St Apartment 15, Brooklyn, NY 11217, United States', '1987-11-24', 0, 0, 'shiaki1992', '2002-12-21', 'shia', '2013-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS919473067133', 'Douglas Mills', 0, '+1 330-645-8920', 1, '249981640888240272', '660 Fern Street Apt 24, Akron, OH 44307, United States', '1992-03-20', 0, 0, 'midouglas', '2020-02-15', 'douglasmil', '2008-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS371821366486', '湯永發', 1, '+81 80-0165-6181', 1, '858543054129284473', 'Rm. 42, 2-1-4 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1992-09-21', 0, 0, 'twingfat', '2021-07-13', 'wftong59', '2016-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS208760070442', '松本樹', 1, '+81 90-0981-0094', 2, '612771025008367315', '日本ならし大和郡山市本庄町一丁目1番4号40号室', '1988-06-26', 0, 0, 'matsumoto2', '2008-09-24', 'matsumotoitsuki', '2019-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS773759880700', '柴田蓮', 1, '+81 74-711-3380', 3, '429389498370291174', '日本ならし西大寺赤田町一丁目7番12号12号室', '1991-07-13', 0, 0, 'rens1', '2013-10-28', 'shibataren', '2007-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS135883254346', 'Carlos Harrison', 1, '+81 70-0181-0271', 2, '363721986884555643', '日本おおさかし近江堂一丁目7番15号36階', '1988-08-27', 0, 0, 'carloshar509', '2015-11-17', 'charrison', '2012-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS505525395888', '今井悠人', 0, '+1 718-645-7726', 1, '591123446827540983', '32 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1999-01-22', 0, 0, 'iyuto', '2015-04-23', 'yuto1944', '2016-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS776501855363', '彭永權', 0, '+86 132-7971-1669', 1, '774872229448265670', '中国深圳罗湖区蔡屋围深南东路912号4号楼', '1994-08-27', 0, 0, 'wingkuenpa', '2008-08-30', 'panwing90', '2002-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS820807516368', 'Leroy Warren', 1, '+44 (1223) 19 7043', 2, '751455260237367378', 'Block 14, 289 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1990-10-20', 0, 0, 'warrleroy8', '2007-03-28', 'wleroy', '2021-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS727391828973', '中島美月', 1, '+81 90-7272-6791', 3, '462870944776389519', '日本東京千代田区丸の内一丁目6番1号39階', '1994-10-12', 0, 0, 'mitsukinaka', '2001-08-05', 'mitsukina1024', '2009-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS137912348553', '許俊宇', 1, '+81 70-5377-1494', 3, '891128670949784927', '40F, 1-5-8, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1990-12-06', 0, 0, 'hucy3', '2021-01-20', 'hui8', '2013-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS241233771128', '斉藤美羽', 1, '+1 212-413-6494', 2, '008335674425744959', '944 Wooster Street Apt 14, New York, NY 10012, United States', '1986-10-13', 0, 0, 'sami', '2020-04-16', 'sm7', '2015-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS666714557745', '鐘明', 0, '+86 192-2183-4170', 4, '376034848422278040', '中国成都市成华区二仙桥东三路585号32楼', '1990-09-07', 0, 0, 'mc12', '2016-04-10', 'chunming7', '2011-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS528073320909', '鐘青雲', 0, '+81 11-545-5940', 1, '027531121852728973', 'Rm. 34, 5-19-10 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1993-11-13', 0, 0, 'chchingwan2', '2021-12-03', 'chungcw', '2001-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS622915524399', '孫慧儀', 0, '+86 28-0949-7722', 3, '719619754941532653', 'No.15 building, 982 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1997-05-23', 0, 0, 'waiyhs', '2002-11-01', 'hsuwaiy', '2014-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS819217008518', '樊學友', 0, '+81 66-452-3740', 1, '564335770808919928', '日本おおさかし西成区出城一丁目1番20号18階', '1992-07-21', 0, 0, 'fahy', '2017-09-18', 'fan4', '2015-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS966772196363', '應霆鋒', 1, '+81 80-5992-6558', 0, '251975567900706697', 'Rm. 41, 3-27-5 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1985-05-03', 0, 0, 'tfying', '2019-11-21', 'tingfung803', '2004-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS939760087002', '林晓明', 0, '+1 718-413-0339', 2, '184599788583682535', '850 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1991-09-06', 0, 0, 'lix', '2002-09-24', 'xiaolin4', '2008-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS772361955802', '木下愛梨', 1, '+44 5152 635521', 4, '448348833311326887', 'Flat 41, 879 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1988-07-09', 0, 0, 'kinoairi', '2021-03-30', 'kairi', '2012-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS471510935460', 'Clifford Mills', 1, '+1 838-817-7211', 4, '085151581690841517', '740 Central Avenue Suite 33, Albany, NY 12205, United States', '1996-09-04', 0, 0, 'millsclif2020', '2009-06-24', 'clm', '2020-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS847408108919', '金睿', 0, '+86 131-5150-5802', 1, '384760838830836145', '15F, 545 Xiaoping E Rd, Baiyun , Guangzhou, China', '1985-03-13', 0, 0, 'rj1', '2008-11-21', 'jin90', '2021-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS859793887853', '内田愛梨', 1, '+86 10-396-6475', 2, '658402542656563322', '47F, 520 Yueliu Rd, Fangshan District, Beijing, China', '1989-02-12', 0, 0, 'airiuchida', '2015-01-03', 'uchiairi', '2000-01-26'); +INSERT INTO "public"."userinfo" VALUES ('TS207517711370', '小山光莉', 0, '+86 131-2939-4438', 2, '978366376539729549', 'No.35 building, 651 Dongtai 5th St, Dongguan, China', '1985-08-30', 0, 0, 'koyamahikari', '2012-04-09', 'koyama317', '2002-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS377321770048', '谷國權', 1, '+86 28-710-9224', 1, '997961351959449727', 'No.14 building, 810 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1988-07-17', 0, 0, 'kookwokkuen', '2014-06-16', 'kkk1994', '2010-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS105097362737', '戴心穎', 1, '+81 90-7850-8406', 2, '659133376799551561', 'Rm. 11, 12 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-12-03', 0, 0, 'swda9', '2021-10-23', 'daisumwi', '2007-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS967221966986', '鈴木和真', 0, '+44 7284 822188', 2, '461761023334672264', 'Block 9, 153 Maddox Street, London, W1S 1PU, United Kingdom', '1993-06-11', 0, 0, 'suzuki57', '2012-08-20', 'kazumas', '2017-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS432069830157', '藤惠妹', 0, '+86 180-2914-4581', 3, '145393266177296895', '中国成都市成华区二仙桥东三路777号18栋', '1989-04-28', 0, 0, 'tanghm', '2020-09-27', 'tanghuimei', '2019-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS120809937295', '菅原百恵', 1, '+44 (161) 352 7543', 0, '989310830238360307', 'Block 45, 213 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1991-05-31', 0, 0, 'msugawara', '2008-01-11', 'momsu', '2004-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS492917933687', '洪俊宇', 1, '+81 90-7529-4169', 2, '877026638139977026', '14F, 13-3-12 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1991-06-04', 0, 0, 'hcy', '2018-10-21', 'cyh820', '2018-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS357334071051', 'Sean Torres', 1, '+81 70-5701-3035', 1, '849661010901035867', '日本おおさかし近江堂一丁目7番2号7階', '1985-03-30', 0, 0, 'stor', '2004-04-02', 'torressean2', '2000-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS934329062011', '山田葉月', 0, '+86 760-9317-6983', 0, '094639858189937542', '中国中山天河区大信商圈大信南路381号24楼', '1993-10-14', 0, 0, 'yamahazuki2020', '2019-11-04', 'yhazu1985', '2020-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS255422418231', '戚安娜', 0, '+44 5307 401630', 3, '283017319048754741', 'Flat 6, 591 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-12-23', 0, 0, 'chiconna', '2012-04-16', 'chon', '2007-12-09'); +INSERT INTO "public"."userinfo" VALUES ('TS961365609829', '姜子韬', 1, '+86 755-026-8191', 4, '648621008530821950', '中国深圳福田区景田东一街65号华润大厦10室', '1994-09-24', 0, 0, 'zitjiang', '2014-03-14', 'zjiang', '2012-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS935942728261', '杜家玲', 1, '+86 755-090-4949', 1, '825820013653427931', 'Room 50, CR Building, 542 Jingtian East 1st St, Futian District, Shenzhen, China', '1988-03-02', 0, 0, 'tokaling', '2009-10-28', 'klto', '2010-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS708962135367', '小林一輝', 0, '+86 169-8982-2559', 0, '166003935743505990', 'Room 24, 65 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1987-04-14', 0, 0, 'ikkikobayashi', '2011-08-10', 'ikkikob', '2016-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS093399395551', 'Charles Romero', 1, '+1 330-733-6927', 1, '310481893771574678', '338 Riverview Road Apartment 1, Akron, OH 44313, United States', '1988-02-08', 0, 0, 'romero1952', '2016-06-16', 'rch', '2019-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS481457113999', '严子异', 1, '+86 179-7582-5037', 0, '881282328234156067', 'No.23 building, 340 Huanqu South Street 2nd Alley, Dongguan, China', '1997-09-08', 0, 0, 'yaziyi', '2006-09-16', 'yan2', '2013-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS478771930690', '叶岚', 1, '+44 7724 146859', 1, '912682859740353128', 'No.49 Main building, 537 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1997-09-12', 0, 0, 'lany', '2021-08-28', 'lanye', '2008-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS433286166800', '陆宇宁', 1, '+81 90-5650-8051', 4, '648786012659430264', '日本東京港区東新橋一丁目5番14号3号室', '1996-11-26', 0, 0, 'luyuni', '2019-03-13', 'luy5', '2020-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS877156446410', 'Sean Simpson', 1, '+44 7412 421229', 4, '432745066435911219', 'Unit 8, Oxford Eco Centre, 938 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1996-10-07', 0, 0, 'ssean7', '2017-07-19', 'seasim10', '2002-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS311816878352', 'Debra Nelson', 0, '+1 312-404-0900', 0, '557761521193158301', '181 North Michigan Ave Suite 36, Chicago, IL 60611, United States', '1991-03-18', 0, 0, 'nelsondebra', '2018-04-27', 'nede', '2004-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS832907317078', '陶發', 0, '+81 90-8769-7726', 0, '258465703484656210', '日本ならし学園南三丁目9番4号11階', '1985-01-20', 0, 0, 'tfat', '2020-05-25', 'fat', '2015-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS196168314767', '岡本悠人', 0, '+86 196-4840-4872', 0, '338670336634397063', 'Room 11, 243 West Chang''an Avenue, Xicheng District, Beijing, China', '1996-01-01', 0, 0, 'okamoyuto78', '2012-08-26', 'okyut8', '2013-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS009446951775', '阿部瑛太', 1, '+44 (121) 179 1002', 3, '909696684648440947', 'No.7 Main building, 308 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1988-04-03', 0, 0, 'eitaabe', '2006-03-21', 'eita1999', '2019-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS814325377936', 'Ryan Baker', 0, '+81 80-2030-4391', 1, '206087407352883937', '日本なごやし守山区瀬古東二丁目171番12号23階', '1991-12-26', 0, 0, 'ryanbaker2', '2007-03-01', 'bakerr', '2005-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS256322723070', '陆璐', 1, '+1 718-239-3433', 1, '051310726217211291', '813 1st Ave Apt 2, Brooklyn, NY 11220, United States', '1994-11-02', 0, 0, 'lulu', '2014-03-19', 'lulu', '2011-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS715091109685', '陈安琪', 0, '+81 11-849-5419', 1, '075230666720452138', '日本札幌中央区宮の森四条六丁目1番15号42階', '1993-03-26', 0, 0, 'anchen', '2018-09-28', 'chenanqi', '2005-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS306608253779', '邓詩涵', 0, '+1 312-766-8940', 0, '696627860008208322', '697 North Michigan Ave 3rd Floor, Chicago, IL 60611, United States', '1988-03-07', 0, 0, 'sdeng', '2019-01-03', 'dengshi', '2015-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS506969132518', '沈嘉伦', 1, '+1 213-743-1580', 4, '264295962796237289', '759 Figueroa Street Apt 38, Los Angeles, CA 90037, United States', '1997-08-30', 0, 0, 'shjialun2', '2008-10-17', 'shenjial', '2005-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS791762049527', '徐天樂', 1, '+1 212-421-6595', 3, '034921404874110860', '301 Fifth Avenue Apt 7, New York, NY 10017, United States', '1987-01-06', 0, 0, 'tinlok119', '2001-07-23', 'tsuitinlok220', '2006-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS021535952355', '阮富城', 1, '+86 157-2157-3899', 3, '799915304442008225', 'No.45 building, 883 Hongqiao Rd., Xu Hui District, Shanghai, China', '1987-10-23', 0, 0, 'yuefs', '2010-01-14', 'yuenfs2', '2002-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS916500369416', 'Anthony Ross', 0, '+86 755-2370-4926', 2, '474908739036476846', '1F, 382 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1989-03-21', 0, 0, 'rossantho', '2018-05-26', 'rossanthony', '2012-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS389526614657', 'Leslie Diaz', 1, '+86 755-3829-6638', 3, '936869392749532746', '中国深圳龙岗区布吉镇西环路57号40楼', '1986-09-06', 0, 0, 'lesliediaz915', '2016-04-23', 'dleslie307', '2012-12-08'); +INSERT INTO "public"."userinfo" VALUES ('TS961646717126', '林青雲', 1, '+1 212-289-5847', 2, '688678268962500795', '948 West Houston Street 3rd Floor, New York, NY 10014, United States', '1999-02-11', 0, 0, 'cwl2', '2002-04-11', 'lamcw', '2020-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS113021411259', '原結翔', 0, '+86 28-029-8194', 1, '417143376113017827', '中国成都市锦江区人民南路四段787号46号楼', '1992-03-03', 0, 0, 'yuito05', '2007-11-01', 'hyuito2', '2010-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS985786237163', '羅家文', 0, '+86 172-5838-9229', 1, '542288784770234466', '中国北京市朝阳区三里屯路631号49栋', '1985-01-30', 0, 0, 'kamanlo', '2003-11-15', 'kaman9', '2017-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS742132022526', '西村詩乃', 0, '+86 142-9977-4924', 2, '135608194872740080', '中国中山天河区大信商圈大信南路141号9室', '1988-06-09', 0, 0, 'nishimurashino501', '2007-03-26', 'shino319', '2015-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS447441470465', '鄭志明', 1, '+86 10-9873-7078', 0, '236889190118430002', 'No.18 building, 107 West Chang''an Avenue, Xicheng District, Beijing, China', '1998-10-05', 0, 0, 'chchiming', '2006-02-19', 'cheng10', '2018-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS346870703792', '黎震南', 1, '+86 10-003-4678', 3, '816482622345869068', 'Room 20, CR Building, 179 East Wangfujing Street, Dongcheng District , Beijing, China', '1987-08-10', 0, 0, 'zhennanli1981', '2021-09-04', 'zhennan1106', '2001-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS397358265038', '顾震南', 1, '+86 143-2387-5553', 3, '031248006054418092', 'No.41 building, 230 028 County Rd, Yanqing District, Beijing, China', '1989-10-05', 0, 0, 'zhennan6', '2016-10-19', 'zhenngu', '2000-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS061794753874', '薛德華', 1, '+1 614-169-7372', 4, '756264145096758337', '289 East Cooke Road Suite 23, Columbus, GA 43214, United States', '1987-03-13', 0, 0, 'stakwah', '2004-12-22', 'sitakwah', '2018-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS483464170821', '金子翼', 1, '+44 5995 160866', 3, '169793919457596561', 'Unit 3, Oxford Eco Centre, 461 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1986-11-06', 0, 0, 'ktsubasa', '2017-03-06', 'tska', '2001-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS944578842007', '木村悠人', 0, '+86 188-2953-0681', 3, '729224890545273172', '43F, 18 Yueliu Rd, Fangshan District, Beijing, China', '1987-06-14', 0, 0, 'yuto1950', '2001-03-12', 'ykimura3', '2011-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS880782070281', 'Denise Diaz', 0, '+1 312-372-4925', 2, '310259835893312642', '459 Rush Street Apt 44, Chicago, IL 60611, United States', '1993-02-04', 0, 0, 'ded95', '2010-06-11', 'diazdenise', '2011-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS435100552269', '甘明詩', 0, '+86 136-2834-9860', 3, '908768194831164635', 'No.10 building, 694 Sanlitun Road, Chaoyang District, Beijing, China', '1987-12-09', 0, 0, 'mska', '2019-01-15', 'mingsze68', '2021-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS760750701930', '常安琪', 0, '+1 838-035-5179', 4, '161224225274967990', '573 Lark Street Apt 31, Albany, NY 12210, United States', '1985-04-21', 0, 0, 'anqi3', '2005-07-29', 'changanqi2', '2002-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS398604267392', '林家玲', 0, '+86 177-2863-2416', 1, '045976593171122056', '33F, 356 Lefeng 6th Rd, Zhongshan, China', '1991-07-12', 0, 0, 'kll', '2019-10-19', 'lkl811', '2020-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS039396902757', '蘇國賢', 0, '+81 70-5811-2815', 3, '676020506720566834', '9F, 3-19-5 Shimizu, Kita Ward, Nagoya, Japan', '1986-10-10', 0, 0, 'kwokyin7', '2007-08-10', 'kwokyinso728', '2011-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS734903332955', '杨云熙', 1, '+1 213-806-1257', 3, '982944957150817857', '925 Alameda Street Apartment 46, Los Angeles, CA 90002, United States', '1986-01-22', 0, 0, 'yuyang1027', '2019-08-22', 'yang1102', '2018-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS801997306779', '侯睿', 0, '+44 (1223) 26 6024', 0, '143954040327411937', 'Flat 21, 978 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1987-06-22', 0, 0, 'rhou', '2019-09-23', 'hourui69', '2010-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS260701334733', '吳世榮', 1, '+86 20-662-8110', 2, '217948794869129962', 'No.27 building, 611 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1997-05-28', 0, 0, 'ngsw', '2001-01-15', 'ng701', '2004-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS368048885297', 'Alfred Perez', 0, '+1 212-684-7913', 2, '607959740157659923', '835 Fifth Avenue Suite 23, New York, NY 10017, United States', '1999-01-25', 0, 0, 'perez5', '2021-08-15', 'aperez5', '2018-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS204670772625', '杉山優奈', 1, '+86 21-377-1341', 2, '573613131717501618', '3F, 689 Ganlan Rd, Pudong, Shanghai, China', '1991-06-08', 0, 0, 'yusugiyama', '2006-05-05', 'yunasu', '2018-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS935734537274', '彭明', 0, '+86 755-413-1728', 4, '330900484571881711', '40F, 257 Jingtian East 1st St, Futian District, Shenzhen, China', '1998-10-13', 0, 0, 'pang9', '2000-09-14', 'pang418', '2004-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS039204615137', 'Aaron Olson', 0, '+81 3-0961-0118', 3, '945463790472388840', '日本東京千代田区丸の内一丁目6番16号36号室', '1997-09-10', 0, 0, 'aaron4', '2011-08-12', 'olsoaar', '2008-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS704931276605', '湯頴思', 1, '+86 170-8999-2824', 2, '831024031879160066', '中国东莞珊瑚路298号49楼', '1989-03-18', 0, 0, 'wingsze7', '2016-08-30', 'tongwings1110', '2003-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS995312092629', '廖家強', 0, '+81 74-809-0034', 4, '435664592365323741', '25-kai, 3-9-19 Gakuenminami, Nara, Japan', '1986-11-27', 0, 0, 'liaokk729', '2002-10-05', 'liaokak', '2018-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS911990184691', '胡宇宁', 1, '+86 10-5762-1849', 3, '259597617396611516', '中国北京市延庆区028县道334号华润大厦4室', '1991-07-28', 0, 0, 'yuninghu1128', '2006-09-27', 'yuhu5', '2017-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS666013089552', '有村葵', 1, '+81 74-488-6092', 3, '958010416253783217', '日本ならし学園南三丁目9番15号41階', '1994-04-22', 0, 0, 'aoiarim121', '2017-08-08', 'araoi', '2021-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS516366340204', '梁震南', 0, '+86 21-8221-1601', 3, '476230219901558683', 'No.34 building, 324 Binchuan Rd, Minhang District, Shanghai, China', '1995-06-19', 0, 0, 'zliang93', '2010-10-02', 'liangzhennan7', '2021-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS949693128899', 'Mike Russell', 1, '+86 10-9822-3622', 0, '008120233349374595', 'No.14 building, 262 028 County Rd, Yanqing District, Beijing, China', '1991-01-11', 0, 0, 'miker51', '2002-04-03', 'russemi', '2015-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS190395780879', '苏致远', 0, '+1 330-083-8945', 3, '624410791426184765', '384 Ridgewood Road Suite 28, Akron, OH 44321, United States', '1994-11-30', 0, 0, 'suz', '2003-07-10', 'suzh4', '2017-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS264908620589', 'Anna Kelley', 0, '+86 142-2147-5701', 1, '470168239834530015', '中国深圳龙岗区布吉镇西环路880号40楼', '1987-07-03', 0, 0, 'kelley4', '2010-02-04', 'ak913', '2013-10-23'); +INSERT INTO "public"."userinfo" VALUES ('TS661800731618', '王子异', 1, '+44 5748 945223', 3, '020506356121225190', 'Block 24, 144 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1997-05-08', 0, 0, 'wangziyi', '2000-10-26', 'zwang816', '2009-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS782114365267', '郭俊宇', 0, '+1 838-244-6779', 3, '090527210310581339', '133 State Street Apt 49, Albany, NY 12203, United States', '1991-06-21', 0, 0, 'chunyu10', '2014-03-26', 'chunyu7', '2012-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS124229873350', '陆睿', 0, '+86 160-0246-9789', 3, '718707925611166705', '中国深圳福田区深南大道66号47楼', '1998-12-22', 0, 0, 'lur', '2002-03-28', 'lu5', '2009-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS429671196085', '龚睿', 1, '+81 52-364-4264', 2, '420781886733266719', '日本なごやし北区清水三丁目19番5号31階', '1994-04-26', 0, 0, 'gong8', '2006-06-26', 'rugong', '2020-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS442255804966', '劉力申', 0, '+81 74-429-4107', 3, '244633685031088125', '41-kai, 2 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1988-06-02', 0, 0, 'liklau01', '2020-03-08', 'lauliksun66', '2009-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS915985485305', '福田美月', 0, '+1 212-049-2798', 0, '508960870197542783', '700 Bank Street Suite 32, New York, NY 10014, United States', '1998-10-22', 0, 0, 'mitsfukud', '2014-12-30', 'fmitsuki222', '2000-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS104837261152', '原田絢斗', 1, '+81 3-6769-5300', 3, '348034870255875685', '日本東京渋谷区代々木二丁目3番18号24階', '1986-06-22', 0, 0, 'ayatohara', '2021-12-26', 'haraaya', '2015-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS800700798662', '宋子异', 1, '+44 7080 477338', 2, '130418149941561120', 'Unit 25, Oxford Eco Centre, 303 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1994-08-16', 0, 0, 'ziyisong81', '2016-07-09', 'ziyi90', '2016-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS263149915181', '高橋詩乃', 1, '+1 718-268-2505', 3, '943963321407056119', '734 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1988-08-02', 0, 0, 'tshino', '2018-11-28', 'shino2003', '2014-10-04'); +INSERT INTO "public"."userinfo" VALUES ('TS102053955034', '崔慧嫻', 1, '+81 80-4748-7767', 0, '865288580396204664', '日本札幌清田区真栄四条五丁目19番5号42階', '1992-07-27', 0, 0, 'whchoi', '2018-02-13', 'whc', '2003-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS596548934254', '郑云熙', 0, '+1 838-940-5655', 1, '905329299835430999', '336 State Street 3rd Floor, Albany, NY 12203, United States', '1992-03-21', 0, 0, 'yunzheng', '2012-07-07', 'yunxizheng', '2004-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS999563944977', '吴睿', 0, '+86 157-7283-6135', 1, '957616581558665636', 'No.25 building, 560 Huanqu South Street 2nd Alley, Dongguan, China', '1989-12-29', 0, 0, 'wurui', '2000-10-19', 'wur', '2004-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS304717165916', '木下美緒', 1, '+1 212-696-0712', 3, '812955386837511766', '829 Canal Street Suite 1, New York, NY 10013, United States', '1986-12-06', 0, 0, 'kinom', '2001-05-06', 'kmi', '2006-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS806857438067', '酒井結翔', 1, '+81 80-3526-4105', 4, '541193302198830272', '日本おおさかし西成区天神ノ森二丁目1番6号2号室', '1989-08-23', 0, 0, 'sakai9', '2009-03-11', 'sakai14', '2011-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS111434907793', '邱安琪', 0, '+86 174-8293-8565', 1, '867440008227745853', 'Room 2, CR Building, 207 FuXingMenNei Street, XiCheng District, Beijing, China', '1985-08-19', 0, 0, 'qianqi509', '2006-05-15', 'qa418', '2015-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS464324828587', '成裕玲', 0, '+86 10-3878-3605', 2, '164789414384538069', 'Room 14, CR Building, 685 FuXingMenNei Street, XiCheng District, Beijing, China', '1989-01-04', 0, 0, 'syuling2001', '2018-01-17', 'yushing', '2016-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS552618005777', '崔慧嫻', 1, '+81 70-3712-5931', 3, '919227528841835587', '日本ならし西大寺赤田町一丁目7番11号4号室', '1994-06-04', 0, 0, 'whchoi', '2004-05-05', 'choiwa', '2017-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS500279649289', 'Frederick King', 0, '+1 212-733-3454', 1, '624128215466951685', '371 Bank Street 3rd Floor, New York, NY 10014, United States', '1991-03-05', 0, 0, 'kifrederick', '2019-02-11', 'kingfrede5', '2012-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS233089364083', 'Jonathan Washington', 1, '+1 312-301-2150', 0, '025389081059196916', '829 North Michigan Ave Suite 12, Chicago, IL 60611, United States', '1985-02-09', 0, 0, 'jonathanwashi59', '2005-11-16', 'jonathanwashington', '2018-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS557474268791', 'Keith Holmes', 1, '+86 10-4544-7868', 0, '392946151758852087', '中国北京市朝阳区三里屯路634号26栋', '1998-09-20', 0, 0, 'keithholmes7', '2009-09-05', 'keithholm', '2022-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS563131133159', '近藤一輝', 1, '+81 74-984-0362', 2, '167070564938599564', '48-kai, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1995-03-10', 0, 0, 'kondo48', '2022-03-02', 'kikki6', '2017-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS809773443491', '林晓明', 0, '+44 (121) 644 2135', 3, '154375687891531506', 'Unit 5, Oxford Eco Centre, 66 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1996-09-18', 0, 0, 'xil1219', '2016-10-25', 'lxiaoming623', '2019-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS340218256783', '遠藤絢斗', 0, '+44 7054 234201', 1, '069733817945085024', 'Flat 23, 694 Hanover St, Liverpool, L1 4AF, United Kingdom', '1987-08-09', 0, 0, 'eay724', '2002-05-11', 'aendo8', '2012-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS937104217082', '關慧嫻', 0, '+81 80-7271-4978', 1, '956666931242499676', '4F, 15 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1993-04-09', 0, 0, 'kwanwaihan5', '2005-11-24', 'kwanwaihan10', '2015-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS215138091289', '和田海斗', 0, '+81 80-6326-7703', 2, '047701258134013437', 'Rm. 36, 3-19-10 Shimizu, Kita Ward, Nagoya, Japan', '1995-01-28', 0, 0, 'kaiw', '2009-01-21', 'kaito91', '2014-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS534209378124', '吳國權', 0, '+1 838-151-4579', 3, '440104167295096726', '642 State Street Suite 22, Albany, NY 12203, United States', '1997-09-22', 0, 0, 'nkk', '2001-09-04', 'kwokkuenng', '2008-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS373393169297', '文詠詩', 1, '+86 152-9659-5351', 4, '426497759494837120', '35F, 877 Jianxiang Rd, Pudong, Shanghai, China', '1990-01-27', 0, 0, 'wingsze430', '2021-06-15', 'wingsze6', '2003-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS761761696401', 'Earl Robertson', 0, '+86 760-3232-2869', 2, '366322228704017511', 'No.41 building, 77 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1994-02-05', 0, 0, 'roea', '2004-10-22', 'erobertson5', '2001-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS794477496623', '田頴璇', 0, '+81 80-5193-3302', 3, '541330398471580772', '45F, 4-9-20 Kamihigashi, Hirano Ward, Osaka, Japan', '1987-03-15', 0, 0, 'tws1212', '2012-10-17', 'wingsuen17', '2011-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS197418922417', '車家強', 0, '+86 769-0872-9988', 1, '761842129255204418', '中国东莞坑美十五巷706号华润大厦42室', '1993-09-21', 0, 0, 'ckk', '2019-03-09', 'kakeung05', '2021-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS016657475416', 'Michelle Ramirez', 0, '+86 10-232-5002', 0, '572753626023845574', '中国北京市東城区東直門內大街151号32号楼', '1992-02-12', 0, 0, 'rmic', '2006-06-02', 'mra', '2019-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS981350387097', '何宇宁', 1, '+44 (1223) 81 2334', 1, '921521748252195592', 'No.50 Main building, 24 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1993-03-17', 0, 0, 'yunhe', '2014-09-18', 'he1', '2010-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS068609225534', '黄杰宏', 0, '+81 80-4259-7389', 3, '819894514645389635', '21F, 2-1-3 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1990-11-24', 0, 0, 'jih74', '2018-07-13', 'jiehonghuang7', '2014-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS970438329815', 'Curtis Chavez', 1, '+81 70-7367-2078', 3, '989035616805700667', 'Rm. 9, 3 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1995-06-07', 0, 0, 'curcha1016', '2014-07-29', 'curchave2', '2021-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS664198457900', '何麗欣', 0, '+86 20-967-4234', 2, '511859955051651619', 'Room 26, CR Building, 474 Xiaoping E Rd, Baiyun , Guangzhou, China', '1985-11-30', 0, 0, 'holy', '2011-08-17', 'hola', '2008-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS191828405104', '廖詩涵', 1, '+44 5716 328337', 4, '022173840441177731', 'No.43 Main building, 33 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1997-05-25', 0, 0, 'liao06', '2003-07-20', 'liao1022', '2021-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS048758574680', '後藤詩乃', 1, '+1 330-024-2160', 3, '647473428789767786', '279 Ridgewood Road 3rd Floor, Akron, OH 44321, United States', '1989-04-11', 0, 0, 'gshino', '2002-11-26', 'gotoshin1020', '2003-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS660712165264', '任晓明', 1, '+44 5130 896353', 3, '822579115425414221', 'Unit 29, Oxford Eco Centre, 296 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1988-10-12', 0, 0, 'renx', '2010-12-23', 'xiaoming220', '2016-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS272915214938', '應麗欣', 1, '+44 7435 871459', 4, '724225034438767899', 'Block 47, 384 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1985-06-25', 0, 0, 'laiyan213', '2015-03-31', 'ying72', '2019-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS665384710783', '長谷川瑛太', 0, '+81 70-1248-7609', 4, '917255446547804573', '日本おおさかし西成区天神ノ森二丁目1番18号42階', '1990-07-09', 0, 0, 'hasegawa8', '2002-04-07', 'haeita47', '2003-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS181957747315', 'Clifford Gutierrez', 1, '+86 130-3022-5632', 0, '052453029140733022', '43F, 745 Kengmei 15th Alley, Dongguan, China', '1987-06-29', 0, 0, 'gc131', '2020-10-03', 'clifford10', '2018-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS949628875229', '翁裕玲', 1, '+1 213-772-0916', 2, '912801815636284384', '789 Sky Way Apt 42, Los Angeles, CA 90043, United States', '1990-05-08', 0, 0, 'yungyuling', '2008-06-12', 'yuling1028', '2000-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS360888464139', '河野陽太', 1, '+86 192-6699-7559', 3, '602699977590299447', 'No.17 building, 602 028 County Rd, Yanqing District, Beijing, China', '1997-01-13', 0, 0, 'koyo', '2004-02-29', 'konoy', '2011-08-04'); +INSERT INTO "public"."userinfo" VALUES ('TS415980603748', '三浦花', 0, '+86 755-692-7789', 2, '759673267421905524', '中国深圳罗湖区田贝一路65号37楼', '1991-07-12', 0, 0, 'hamiura1', '2021-07-09', 'miura107', '2011-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS947298678712', '後藤優奈', 0, '+81 90-4828-4384', 1, '854859783948007420', '日本おおさかし平野区加美東四丁目9番9号30階', '1985-08-23', 0, 0, 'goyuna6', '2020-08-01', 'yuna91', '2003-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS354016108497', '邵心穎', 0, '+44 7827 008560', 4, '516194121802234998', 'No.25 Main building, 485 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1987-05-27', 0, 0, 'siu42', '2001-07-12', 'swsiu', '2003-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS446563761326', '沈璐', 1, '+86 191-6293-4386', 1, '731351633890229658', '39F, 282 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1996-11-20', 0, 0, 'lushe6', '2017-08-02', 'slu', '2017-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS614336493390', '中島結翔', 0, '+1 330-384-5024', 2, '184738636124939977', '908 Riverview Road Apartment 12, Akron, OH 44313, United States', '1995-11-09', 0, 0, 'yunakajima', '2001-12-08', 'yuna77', '2010-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS992267630178', 'Francis Jimenez', 1, '+81 66-920-5698', 2, '426491740421307746', 'Rm. 10, 3-27-16 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1999-02-08', 0, 0, 'francisj', '2011-11-12', 'francisjimenez', '2008-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS115316545371', 'Shawn Gutierrez', 0, '+1 212-185-4172', 2, '321542312798938764', '584 West Houston Street Apartment 3, New York, NY 10014, United States', '1989-02-18', 0, 0, 'gutierrez616', '2012-06-27', 'gsha', '2008-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS529987089984', '谢晓明', 0, '+86 755-473-3162', 0, '469785356048244155', '中国深圳龙岗区学园一巷888号17栋', '1985-10-18', 0, 0, 'xxie', '2017-11-19', 'xiaoming1226', '2014-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS636623756817', '西村明菜', 0, '+44 (1865) 39 0124', 1, '349827125452249302', 'Unit 47, Oxford Eco Centre, 248 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1987-03-20', 0, 0, 'nishimura3', '2007-03-03', 'nishimuraa', '2014-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS794073251538', 'Jean Davis', 1, '+44 7040 797949', 0, '599806167674888249', 'Block 20, 954 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1995-07-10', 0, 0, 'jdavis7', '2013-03-25', 'jeadavis87', '2017-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS337521628168', '石川紗良', 0, '+1 614-685-3696', 1, '147916590499228309', '609 Wicklow Road Apartment 29, Columbus, GA 43204, United States', '1986-01-10', 0, 0, 'sarais', '2017-05-30', 'ishsar', '2010-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS606293824809', '方睿', 1, '+86 20-1865-7596', 4, '241227530377806814', '中国广州市海珠区江南西路497号华润大厦40室', '1990-09-17', 0, 0, 'fr2013', '2013-07-26', 'fang5', '2017-11-06'); +INSERT INTO "public"."userinfo" VALUES ('TS232565126472', 'Todd Cole', 0, '+86 10-5484-1240', 0, '086209988295997278', '中国北京市西城区复兴门内大街473号12栋', '1990-03-06', 0, 0, 'toddc', '2000-02-26', 'toddcole', '2021-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS108410777393', '樂麗欣', 0, '+44 (20) 6147 8610', 1, '362638285630003051', 'No.37 Main building, 955 Hanover Street, London, W1S 1YD, United Kingdom', '1997-11-30', 0, 0, 'loly', '2005-01-31', 'loklaiyan', '2014-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS414779382905', '胡杰宏', 1, '+81 90-3410-3859', 2, '010589431199374115', '日本おおさかし近江堂一丁目7番3号10階', '1986-02-08', 0, 0, 'jiehonghu', '2016-10-26', 'jiehong1114', '2018-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS548179449804', 'Lisa Olson', 0, '+81 90-5483-9290', 2, '635843758552152876', '日本東京港区東新橋一丁目5番10号25号室', '1988-10-09', 0, 0, 'olson3', '2008-05-10', 'lio', '2000-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS236870077709', '魏震南', 0, '+81 3-6033-0726', 1, '828403357992502203', '42F, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1990-08-13', 0, 0, 'wezh', '2006-11-03', 'wezhen', '2019-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS701655189773', '彭淑怡', 0, '+44 (1865) 52 2339', 4, '039802142182275750', 'No.39 Main building, 108 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1990-05-09', 0, 0, 'sukyeepa10', '2021-05-05', 'pangsukyee64', '2021-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS811512964292', '雷致远', 1, '+81 52-689-8921', 1, '980686838063005539', 'Rm. 42, 3-19-9 Shimizu, Kita Ward, Nagoya, Japan', '1991-01-30', 0, 0, 'zl3', '2014-02-14', 'lei8', '2005-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS153385302366', 'Albert Mendoza', 1, '+44 5251 894533', 0, '986625504423593795', 'Flat 14, 325 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1989-02-01', 0, 0, 'albertmendoza', '2000-12-27', 'albertmend05', '2001-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS320089125692', '陆宇宁', 0, '+1 212-203-4144', 0, '288416448776082369', '489 Canal Street Apt 35, New York, NY 10013, United States', '1995-01-28', 0, 0, 'yuninglu', '2016-01-22', 'yuning9', '2003-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS158374599491', '佘朝偉', 0, '+86 176-7135-1114', 2, '891302518547007571', '中国北京市东城区东单王府井东街86号华润大厦27室', '1988-01-01', 0, 0, 'chiuwai808', '2021-12-01', 'shehchiuw', '2009-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS441068762503', 'Kelly Phillips', 0, '+81 90-9299-3352', 1, '663218645934079068', '日本おおさかし東住吉区東田辺三丁目27番1号28階', '1992-12-20', 0, 0, 'phillips96', '2014-03-07', 'kphil', '2020-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS282619709199', '小島絢斗', 0, '+1 614-021-6120', 3, '557342095110745515', '737 East Alley 3rd Floor, Columbus, GA 43201, United States', '1994-12-30', 0, 0, 'ayatokoj411', '2012-12-23', 'kayato', '2005-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS991036183167', '黃家輝', 1, '+1 212-071-4492', 3, '419604442352636027', '504 Canal Street Suite 42, New York, NY 10013, United States', '1994-08-16', 0, 0, 'kfwo14', '2007-06-01', 'kfwong811', '2002-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS454481064788', 'Allen Hamilton', 1, '+81 90-1299-4175', 3, '095247885805720520', '4-kai, 5-2-5 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1995-12-10', 0, 0, 'allenhamilton', '2005-08-26', 'hamalle9', '2018-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS362194284349', '區秀文', 0, '+81 66-288-5385', 3, '558727356480148622', '11F, 3-27-5 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1994-01-23', 0, 0, 'sma', '2006-01-03', 'sma531', '2015-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS176224289378', '孔詩涵', 1, '+81 52-883-3735', 3, '332870550722657689', '日本なごやし瑞穂区河岸町四丁目20番15号26階', '1999-01-27', 0, 0, 'sk5', '2018-08-23', 'shihan4', '2009-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS113617289748', '谷口絢斗', 0, '+44 (121) 045 3679', 0, '739941324200650804', 'Block 41, 570 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1991-04-11', 0, 0, 'taniguchiayato47', '2009-06-08', 'ayato6', '2015-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS059142418959', '加藤和真', 0, '+81 90-9338-6325', 0, '122838758675239120', '日本東京品川区東五反田五丁目2番10号30階', '1998-01-31', 0, 0, 'katokaz', '2016-05-25', 'kazumakato', '2014-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS290290610286', '藤田百恵', 1, '+81 90-1533-3297', 4, '249156645688105196', '日本札幌白石区菊水三条五丁目2番5号50階', '1998-11-07', 0, 0, 'fmom', '2015-12-24', 'momoe6', '2002-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS000299787414', '今井紗良', 1, '+1 212-024-8219', 3, '798154254661919852', '982 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1988-11-10', 0, 0, 'sara831', '2018-01-11', 'sarimai113', '2019-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS945621198513', 'Florence Bell', 0, '+44 7138 142011', 1, '687235851753264964', 'Flat 8, 71 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1992-01-03', 0, 0, 'fbell', '2021-09-01', 'bflorence1', '2002-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS594072662120', '谷慧敏', 1, '+1 213-691-0143', 3, '784567997170478184', '570 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1990-01-04', 0, 0, 'wako7', '2005-08-23', 'koowm', '2013-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS842543978628', '阮家明', 0, '+86 156-7229-2492', 2, '632935385587029588', '22F, 877 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1995-07-24', 0, 0, 'yuenkaming823', '2014-08-13', 'kamingyu', '2002-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS613829002288', '冯致远', 0, '+44 7655 117346', 1, '595794554981027933', 'Flat 28, 147 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1985-04-30', 0, 0, 'zhiyuanfen', '2021-01-31', 'fengzhiyu', '2011-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS105496024708', '安藤陽太', 0, '+1 838-766-0029', 1, '995905042183025210', '806 Central Avenue Apartment 30, Albany, NY 12206, United States', '1986-09-12', 0, 0, 'yotaan', '2002-05-02', 'andoyot', '2014-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS877248741433', '藍德華', 0, '+86 21-535-5123', 4, '138182765600140544', '中国上海市黄浦区淮海中路691号46号楼', '1997-04-16', 0, 0, 'takwah1990', '2003-04-16', 'twla908', '2007-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS792872561574', '宣裕玲', 0, '+81 3-2710-9774', 1, '649014419966374475', '48-kai, 2-3-1 Yoyogi, Shibuya-ku, Tokyo, Japan', '1991-10-12', 0, 0, 'hsuyl', '2002-08-02', 'yulinghsuan', '2018-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS349693332755', '田村光莉', 1, '+86 169-2981-9177', 1, '277065348188160153', 'Room 42, CR Building, 637 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1991-04-07', 0, 0, 'tamurahikari', '2003-07-05', 'hitam', '2000-02-29'); +INSERT INTO "public"."userinfo" VALUES ('TS140573768106', '宮本蒼士', 1, '+81 90-0204-1506', 3, '396183370062551239', '日本札幌白石区菊水三条五丁目2番19号47階', '1994-09-17', 0, 0, 'maoshi', '2014-09-18', 'miyamotoa4', '2013-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS149626115520', '薛家玲', 1, '+81 74-496-6195', 3, '873266948675510256', '日本ならし学園南三丁目9番5号35階', '1986-08-02', 0, 0, 'kalingsi831', '2009-10-12', 'kalingsi5', '2000-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS641691465958', 'Chad Rice', 0, '+81 74-524-6348', 2, '389843108202615556', '日本ならし大和郡山市本庄町一丁目1番17号33階', '1991-03-06', 0, 0, 'crice', '2001-01-05', 'cr9', '2002-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS717740118255', '苏杰宏', 1, '+86 21-374-5783', 1, '120933181760420153', 'No.34 building, 328 Middle Huaihai Road, Huangpu District, Shanghai, China', '1991-08-28', 0, 0, 'sjiehong', '2001-02-21', 'su85', '2003-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS822831877379', '邵致远', 0, '+81 66-296-2752', 1, '632566854823135559', '日本おおさかし東住吉区東田辺三丁目27番2号27階', '1986-03-06', 0, 0, 'zshao91', '2018-02-13', 'zhiyuan1130', '2007-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS732050002666', '木村紗良', 1, '+44 (1223) 74 0533', 1, '729751522481461992', 'Block 15, 197 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1992-01-12', 0, 0, 'sarkimura505', '2013-04-25', 'kimurasar3', '2016-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS231481264539', '應裕玲', 0, '+86 147-2205-5442', 1, '773067632702170073', 'No.24 building, 394 Xiaoping E Rd, Baiyun , Guangzhou, China', '1986-06-18', 0, 0, 'ying3', '2009-02-15', 'yuling7', '2010-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS692446246726', 'Jeffery Gonzales', 1, '+44 (1865) 24 8425', 4, '044058474646740513', 'Flat 50, 603 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1998-03-06', 0, 0, 'jefferygonz1225', '2018-07-24', 'jeffegon6', '2001-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS348005733744', 'Gary Ruiz', 1, '+44 (1223) 30 0012', 0, '770462448224215526', 'Unit 20, Oxford Eco Centre, 129 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1994-06-09', 0, 0, 'ruig', '2020-07-12', 'garyr', '2018-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS553782466028', 'Martha Jenkins', 1, '+86 21-4350-9966', 4, '016119744096283607', 'Room 20, CR Building, 220 Hongqiao Rd., Xu Hui District, Shanghai, China', '1990-06-16', 0, 0, 'marthajenki', '2006-10-01', 'jenkins89', '2018-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS592497457453', '樊朝偉', 0, '+44 7536 378264', 1, '665866043618451697', 'Unit 5, Oxford Eco Centre, 444 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1991-02-08', 0, 0, 'fchiuwai', '2013-10-01', 'chiuwai1223', '2009-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS214210669637', '楊麗欣', 1, '+81 3-1935-2689', 0, '627945676964592958', '9F, 1-6-18, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1995-04-28', 0, 0, 'lyyeung', '2021-04-23', 'lyy1', '2009-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS701170525921', '曾安琪', 1, '+86 179-8535-3137', 2, '594006759514013738', '中国深圳福田区深南大道343号17室', '1994-05-06', 0, 0, 'tsangok', '2012-08-30', 'tsang3', '2001-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS693662524819', '傅子韬', 1, '+86 172-4998-7500', 3, '378932735295329248', 'Room 22, CR Building, 362 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1991-04-03', 0, 0, 'zitafu', '2020-03-28', 'zitaofu', '2013-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS417758939251', '文曉彤', 1, '+1 838-566-3871', 2, '724510959854188767', '565 Central Avenue Suite 7, Albany, NY 12205, United States', '1995-06-04', 0, 0, 'man1211', '2007-11-11', 'manht1021', '2020-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS704735120577', 'Roy Wallace', 1, '+86 199-5015-2413', 2, '958721073029511735', 'No.10 building, 563 Jingtian East 1st St, Futian District, Shenzhen, China', '1990-12-15', 0, 0, 'wallacero4', '2000-06-12', 'roy328', '2005-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS154760628023', '钟晓明', 1, '+1 718-923-8490', 2, '800265212022986900', '305 Columbia St Suite 25, Brooklyn, NY 11231, United States', '1990-09-22', 0, 0, 'zhongx', '2004-02-02', 'zhongxiaoming', '2001-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS972529939327', '井上七海', 1, '+86 150-6260-5300', 3, '843194063302036489', '中国广州市海珠区江南西路788号华润大厦5室', '1997-10-03', 0, 0, 'nanamiinoue', '2008-04-26', 'nanami1', '2017-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS813307150978', '谷慧敏', 0, '+81 90-5455-3131', 4, '127898492473840858', '日本ならし大和郡山市本庄町一丁目1番2号11号室', '1986-07-11', 0, 0, 'koowaiman', '2014-11-08', 'koowm', '2022-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS964192221609', '村上大輔', 0, '+1 330-513-7263', 1, '998435711277291642', '129 Riverview Road 3rd Floor, Akron, OH 44313, United States', '1988-03-19', 0, 0, 'mdai69', '2017-01-22', 'daisukemurakami', '2009-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS776790489379', '韓嘉欣', 1, '+86 171-4614-3878', 2, '013494151996138663', '中国成都市成华区双庆路93号22楼', '1991-01-12', 0, 0, 'kyhan75', '2016-05-23', 'haky', '2008-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS782570487910', 'Janet Henderson', 0, '+1 614-054-5859', 4, '603707433662395841', '933 Wicklow Road Suite 40, Columbus, GA 43204, United States', '1992-08-12', 0, 0, 'janet2007', '2015-06-22', 'hejanet5', '2003-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS770268411486', 'Marjorie Rose', 0, '+81 70-5623-6806', 1, '552102102010221982', '日本東京港区東新橋一丁目5番9号6階', '1998-12-08', 0, 0, 'rosemarjorie63', '2014-04-22', 'mrose', '2010-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS002432450512', 'Frank Ford', 0, '+1 330-570-8952', 2, '602779676591662907', '58 West Market Street Suite 16, Akron, OH 44333, United States', '1998-04-14', 0, 0, 'frankford', '2019-01-15', 'fordfran', '2022-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS942805050712', '朱詩涵', 1, '+81 11-583-6735', 1, '005724929456845939', '6-kai, 13-3-4 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1998-04-25', 0, 0, 'zhushihan', '2003-10-08', 'zhu421', '2013-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS536971031519', '佐藤拓哉', 1, '+86 760-9114-1206', 1, '986644633046414476', 'No.42 building, 469 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1989-12-03', 0, 0, 'takuyas', '2019-08-19', 'satot', '2019-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS794268943377', 'Howard Sanders', 0, '+44 5513 483689', 2, '060574294903470060', 'Block 10, 110 Regent Street, London, W1B 2LX, United Kingdom', '1993-08-03', 0, 0, 'sanh15', '2014-07-31', 'howarsanders', '2010-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS659272671977', 'Judy Lopez', 0, '+86 146-2952-8674', 0, '641769511806207212', '中国广州市海珠区江南西路626号32号楼', '1995-06-08', 0, 0, 'lopezjudy3', '2011-07-23', 'lopezjudy', '2014-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS598760228649', 'Rhonda Barnes', 0, '+1 838-196-4130', 0, '378260439821909520', '178 State Street Apartment 42, Albany, NY 12203, United States', '1998-06-29', 0, 0, 'rhondbarnes5', '2020-01-24', 'barnesr819', '2014-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS150204366799', '徐曉彤', 1, '+81 11-989-7797', 1, '908724929982127403', 'Rm. 13, 5-19-18 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1985-09-18', 0, 0, 'tsuiht3', '2008-02-11', 'htt', '2016-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS154631119532', '郭震南', 0, '+1 213-053-9243', 1, '970046811677091023', '753 Figueroa Street Apt 18, Los Angeles, CA 90037, United States', '1997-09-07', 0, 0, 'guzhennan1225', '2013-11-13', 'guozhenn17', '2004-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS017670971781', '樊國明', 1, '+44 (116) 690 2465', 2, '470546282314538306', 'Block 24, 615 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1999-01-18', 0, 0, 'kwokmfan93', '2015-04-24', 'fakm', '2008-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS196410446380', '贺云熙', 1, '+1 838-911-3821', 3, '331434639324492097', '826 Central Avenue Apartment 9, Albany, NY 12206, United States', '1998-11-22', 0, 0, 'hey', '2018-02-13', 'he92', '2007-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS229954081346', 'Stanley Murray', 1, '+81 52-475-7621', 1, '556895503411098316', '17F, 11 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1994-11-30', 0, 0, 'murray906', '2009-02-19', 'stanley814', '2009-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS141061200016', '丸山百花', 1, '+81 52-039-0997', 2, '135050654922661317', '34F, 2-5-16 Chitose, Atsuta Ward, Nagoya, Japan', '1995-02-11', 0, 0, 'momomaruyama', '2013-08-25', 'maruyamam43', '2003-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS024417177878', '邓宇宁', 0, '+81 70-5166-0222', 3, '816308263466146931', 'Rm. 50, 11 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1989-08-23', 0, 0, 'dy1', '2002-05-16', 'dengyuning', '2008-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS674826042596', '石秀英', 1, '+81 3-8732-6191', 3, '166161037471501768', 'Rm. 40, 5-2-20 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1988-07-25', 0, 0, 'xiuyish', '2004-02-16', 'sxiuying', '2008-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS559768596534', '彭惠妹', 0, '+86 10-340-6852', 1, '468270819420054915', '中国北京市西城区复兴门内大街27号华润大厦48室', '1998-07-24', 0, 0, 'panghm43', '2014-05-20', 'pang1', '2011-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS984333645917', '梅玲玲', 1, '+86 141-2258-2382', 1, '350946805466101287', 'Room 45, CR Building, 67 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1992-12-11', 0, 0, 'muiling', '2011-12-07', 'llmui', '2009-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS260661311041', '劉惠敏', 0, '+81 74-879-2037', 2, '938148585951749421', 'Rm. 43, 1-7-4 Saidaiji Akodacho, Nara, Japan', '1987-10-12', 0, 0, 'lawaiman', '2014-03-07', 'lauwaiman12', '2017-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS827856121839', '孫世榮', 1, '+86 196-7337-2526', 2, '312018161155501463', '48F, No. 945, Shuangqing Rd, Chenghua District, Chengdu, China', '1990-03-16', 0, 0, 'swhsu8', '2018-03-10', 'hsuansaiwing', '2000-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS516460187317', '田家玲', 0, '+81 90-2524-1588', 1, '311941726784007404', '日本おおさかし近江堂一丁目7番14号19階', '1989-02-12', 0, 0, 'kalitin', '2016-10-27', 'tinkl616', '2019-03-25'); +INSERT INTO "public"."userinfo" VALUES ('TS724936134993', '中山大和', 0, '+1 212-229-3734', 0, '748490973211815776', '229 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1996-10-14', 0, 0, 'yamatn', '2009-03-17', 'ynakayama', '2019-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS597312813682', '唐青雲', 1, '+1 718-186-5737', 3, '959343258891678414', '733 Nostrand Ave Apartment 28, Brooklyn, NY 11216, United States', '1998-06-29', 0, 0, 'tcw', '2012-07-25', 'chingwan8', '2013-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS090150738723', '马子韬', 1, '+81 80-3207-6362', 3, '497940724653033447', '49F, 2-1-6 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1988-06-07', 0, 0, 'zitaoma', '2007-05-11', 'zm420', '2014-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS522900407618', '雷慧儀', 0, '+81 74-219-9181', 2, '718488958925445569', '16F, 1-7-20 Saidaiji Akodacho, Nara, Japan', '1992-03-16', 0, 0, 'wyloui', '2009-04-09', 'waiyee10', '2009-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS935995058663', '成裕玲', 0, '+1 213-183-7418', 0, '068285532712931725', '956 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1995-06-12', 0, 0, 'yulings6', '2011-07-02', 'shingyuling', '2003-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS292749244204', '鄺志明', 1, '+44 (121) 840 0562', 0, '535876051937886830', 'Block 12, 258 New Street, Birmingham, B2 4DB, United Kingdom', '1988-05-21', 0, 0, 'chimingkw', '2006-12-02', 'cmkwong', '2005-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS526238247636', '阎安琪', 0, '+81 90-4474-3648', 2, '887099981326432298', 'Rm. 14, 2-5-16 Chitose, Atsuta Ward, Nagoya, Japan', '1995-10-13', 0, 0, 'yananq', '2011-05-28', 'yan314', '2019-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS858870012009', '菅原一輝', 0, '+81 70-2107-6966', 1, '245208387138145067', '16F, 3-27-13 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1987-10-12', 0, 0, 'sugi', '2006-10-31', 'sugawara208', '2007-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS684646402709', '邹杰宏', 0, '+81 80-8997-1292', 1, '981600969072023693', '38F, 1-5-3, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1987-10-24', 0, 0, 'jiezou', '2014-09-24', 'zou620', '2007-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS687849803127', '尹杰宏', 1, '+86 193-3208-6124', 3, '288664881148955738', '中国广州市越秀区中山二路493号26栋', '1988-06-23', 0, 0, 'yinji', '2010-10-22', 'jiehyin', '2010-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS196418719415', 'Paul Jones', 1, '+81 74-959-8212', 1, '635293622819090849', '日本ならし大和郡山市本庄町一丁目1番13号29階', '1985-12-03', 0, 0, 'jonespaul', '2017-02-26', 'paul5', '2003-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS093216223435', '洪秀文', 0, '+81 3-2673-7725', 2, '031223749489863163', '日本東京港区東新橋一丁目5番1号35階', '1996-09-25', 0, 0, 'saumanhu', '2017-03-12', 'hungsm8', '2018-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS527461920961', '吉田健太', 0, '+44 (161) 221 6829', 2, '258379902549784570', 'Flat 29, 575 Portland St, Manchester, M1 3LA, United Kingdom', '1995-08-07', 0, 0, 'yke', '2020-12-08', 'kentayo49', '2017-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS970507158234', '鄺發', 1, '+1 212-805-1125', 1, '201827017486740293', '784 West Houston Street Suite 12, New York, NY 10014, United States', '1998-12-08', 0, 0, 'fat410', '2021-12-10', 'kfat', '2014-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS007999167694', '秦岚', 1, '+86 155-7973-8295', 2, '838937527066326534', '中国广州市白云区小坪东路847号28号楼', '1990-03-02', 0, 0, 'laqin4', '2006-12-18', 'qinl', '2020-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS907299367586', 'Theresa Ramirez', 1, '+1 212-613-4627', 4, '034504614676074140', '12 West Houston Street Apartment 5, New York, NY 10014, United States', '1998-10-03', 0, 0, 'therami', '2007-07-19', 'thramirez2016', '2002-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS677585711648', 'Lee Gray', 1, '+44 (121) 039 5504', 3, '345716764931035021', 'No.33 Main building, 604 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1994-12-21', 0, 0, 'lgray', '2002-05-26', 'leegray', '2002-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS559250793651', '山本樹', 1, '+86 760-550-2249', 1, '559542429994707121', '中国中山紫马岭商圈中山五路664号10楼', '1996-10-02', 0, 0, 'iyamamoto', '2016-06-01', 'itsuki1', '2007-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS523653791479', '韓麗欣', 0, '+81 70-6372-4435', 1, '049994522944683179', '32F, 1-5-12, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1992-06-01', 0, 0, 'hanlaiyan8', '2001-04-30', 'laiyanh', '2015-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS412258784981', '崔家輝', 0, '+86 160-2857-5177', 1, '359770333982288374', '中国上海市徐汇区虹桥路567号28楼', '1994-01-31', 0, 0, 'chkafai323', '2011-06-18', 'kafc', '2008-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS966987395882', '阮思妤', 0, '+81 52-212-4731', 2, '343313556855363360', 'Rm. 42, 2-5-3 Chitose, Atsuta Ward, Nagoya, Japan', '1992-11-22', 0, 0, 'szeyuyuen920', '2014-09-09', 'yuen6', '2014-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS083006275131', 'Carol Warren', 1, '+81 90-3341-1610', 4, '509540418891027730', '5F, 3-27-17 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1990-08-19', 0, 0, 'carol9', '2008-09-18', 'wacar', '2001-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS663865182789', '胡慧儀', 1, '+86 130-8163-9689', 3, '094996859344495213', '中国成都市锦江区红星路三段274号华润大厦4室', '1997-12-04', 0, 0, 'waiwu', '2000-08-25', 'wuwy', '2015-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS540250489277', '加藤美緒', 0, '+81 90-2778-8555', 0, '966089545264928650', 'Rm. 31, 12 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1991-11-11', 0, 0, 'mikato45', '2014-01-26', 'miok', '2000-03-03'); +INSERT INTO "public"."userinfo" VALUES ('TS743700654903', '松田百花', 0, '+86 20-5440-9610', 1, '723490805582863964', '中国广州市白云区机场路棠苑街五巷107号35室', '1989-09-24', 0, 0, 'momokamatsuda', '2013-04-05', 'matsuda2015', '2008-11-24'); +INSERT INTO "public"."userinfo" VALUES ('TS857336748747', 'Danielle Torres', 0, '+81 52-277-5774', 2, '070084602430077367', '日本なごやし守山区瀬古東二丁目171番8号14号室', '1987-11-25', 0, 0, 'danielle2', '2013-02-25', 'torresdani', '2011-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS036808526405', 'Cindy Medina', 0, '+81 70-2003-6215', 3, '086867744143320822', '日本おおさかし東住吉区東田辺三丁目27番5号41階', '1991-07-04', 0, 0, 'cindym', '2005-11-13', 'medinacindy812', '2015-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS477457543358', '應永權', 0, '+44 5878 340258', 1, '292718981522673772', 'Unit 47, Oxford Eco Centre, 864 Pollen Street, London, W1S 1NG, United Kingdom', '1985-01-13', 0, 0, 'yingwingkuen1028', '2001-05-23', 'yingwk219', '2014-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS859483854386', '高木美緒', 1, '+81 3-2956-8058', 4, '785368984851972323', '5-kai, 3-15-16 Ginza, Chuo-ku, Tokyo, Japan', '1990-04-28', 0, 0, 'tmio', '2000-11-02', 'takmio', '2004-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS462082500204', '田村凛', 1, '+1 330-623-3741', 0, '275442646008236288', '643 Riverview Road Suite 47, Akron, OH 44313, United States', '1990-07-11', 0, 0, 'tamurarin9', '2005-04-28', 'tamr', '2021-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS661502686672', '加藤葉月', 1, '+1 213-217-7237', 2, '481623272117687603', '618 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1985-09-30', 0, 0, 'katohazuki', '2014-10-20', 'hazukikato', '2004-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS784821317594', '顧安琪', 1, '+44 (151) 739 5113', 2, '607292930068351333', 'Unit 23, Oxford Eco Centre, 571 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1998-07-17', 0, 0, 'onkayku6', '2013-12-05', 'kuok', '2010-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS441291286040', '程子韬', 0, '+44 7997 106826', 4, '694238952328290350', 'Unit 39, Oxford Eco Centre, 786 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1987-09-12', 0, 0, 'zitaocheng416', '2015-10-26', 'zicheng', '2001-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS631365987258', '桜井健太', 0, '+1 838-516-2949', 3, '058575607924468439', '248 Broadway Apartment 38, Albany, NY 12207, United States', '1986-08-08', 0, 0, 'sakke409', '2007-12-03', 'ksakur', '2016-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS291595285502', '丁震南', 1, '+86 138-8082-5218', 4, '377229823385821792', 'No.18 building, 519 Yueliu Rd, Fangshan District, Beijing, China', '1996-01-14', 0, 0, 'zhennan60', '2010-05-16', 'dinz925', '2020-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS276735995169', '常璐', 1, '+81 90-8944-3365', 2, '851264319778232120', '日本札幌白石区菊水三条五丁目4番1号6階', '1991-09-27', 0, 0, 'clu', '2007-01-13', 'luchang', '2013-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS052830997533', '工藤七海', 0, '+81 90-2783-2315', 1, '780704668636311016', 'Rm. 20, 6-1-19, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1988-10-19', 0, 0, 'nanamkudo8', '2021-02-02', 'nanamikudo2006', '2014-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS619978108363', 'Angela Munoz', 1, '+86 755-781-5351', 2, '336646285032903102', 'No.49 building, 163 Shennan Ave, Futian District, Shenzhen, China', '1996-03-02', 0, 0, 'mange', '2014-01-21', 'angelamun5', '2013-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS295283383359', '邹安琪', 1, '+81 66-966-4266', 2, '688627177543635869', '日本おおさかし平野区加美東四丁目9番9号14階', '1988-12-11', 0, 0, 'anqizo', '2003-02-02', 'za9', '2020-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS863522186567', '小川彩乃', 0, '+44 (121) 609 5581', 1, '940406650846924291', 'Flat 46, 494 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1985-09-24', 0, 0, 'ogawaaya', '2015-05-10', 'ogawaayano', '2006-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS032245655177', '小島愛梨', 0, '+81 70-4058-5211', 3, '522230078260321052', '日本おおさかし近江堂一丁目7番10号46階', '1997-10-04', 0, 0, 'kojima1', '2009-04-27', 'kojimaai1', '2010-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS383158965023', '樂國賢', 1, '+81 90-7741-7328', 2, '688206212902109911', '7F, 1-6-14, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1995-08-04', 0, 0, 'kwolo', '2012-10-19', 'kylok6', '2019-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS889793075376', '山口陸', 1, '+44 (1865) 55 6017', 3, '188765460429389833', 'Unit 5, Oxford Eco Centre, 588 Park End St, Oxford, OX1 1JD, United Kingdom', '1993-01-10', 0, 0, 'riya', '2016-07-07', 'ryamaguchi7', '2013-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS753700235323', '雷惠妹', 1, '+86 153-4514-5690', 1, '174059585277173521', '中国东莞环区南街二巷244号50室', '1987-11-17', 0, 0, 'huimeiloui125', '2006-02-01', 'hmloui', '2012-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS119911686650', '森田葉月', 1, '+81 3-3606-5541', 2, '462983112949850523', '日本東京中央区銀座三丁目12番7号26号室', '1985-05-30', 0, 0, 'hazukimorita', '2001-09-13', 'hazukimori', '2002-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS551148124385', 'Beverly Anderson', 0, '+81 74-938-1517', 1, '456089756934017645', '日本ならし学園南三丁目9番19号34号室', '1993-10-17', 0, 0, 'andeb7', '2012-10-05', 'beverlya', '2005-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS626519987605', '戴宇宁', 0, '+81 3-8124-9654', 0, '670264382856843656', '23F, 2-3-15 Yoyogi, Shibuya-ku, Tokyo, Japan', '1996-01-18', 0, 0, 'daiyuning', '2002-01-16', 'yuningdai', '2001-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS848363671320', '桜井百恵', 0, '+86 150-7970-7217', 4, '562081790343360997', '中国深圳龙岗区布吉镇西环路716号26号楼', '1988-10-08', 0, 0, 'samomoe', '2018-07-02', 'momoesakurai3', '2007-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS734078390652', '石子韬', 0, '+86 135-4432-6679', 2, '485054584927944362', 'Room 3, CR Building, 454 Ganlan Rd, Pudong, Shanghai, China', '1985-01-20', 0, 0, 'zitaosh2013', '2014-07-02', 'zishi3', '2000-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS378895720278', '酒井凛', 0, '+81 3-1111-9986', 3, '050993336980147397', '19-kai, 5-2-19 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1993-02-28', 0, 0, 'sakrin', '2011-03-15', 'rin4', '2015-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS031004379822', '江宇宁', 0, '+44 (121) 571 7228', 1, '965268058413739036', 'Unit 48, Oxford Eco Centre, 991 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1998-07-10', 0, 0, 'jiangyun5', '2020-10-25', 'yuning101', '2016-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS077957969699', '蔡震南', 0, '+81 74-548-0553', 1, '989798072459428313', '17-kai, 3-9-16 Gakuenminami, Nara, Japan', '1988-12-23', 0, 0, 'caizhennan', '2001-08-15', 'zcai', '2008-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS132073607981', '常睿', 0, '+86 28-8102-6339', 2, '659549308306050598', '中国成都市锦江区人民南路四段930号11号楼', '1990-10-02', 0, 0, 'ruichang', '2011-05-13', 'ruchang', '2001-11-04'); +INSERT INTO "public"."userinfo" VALUES ('TS096263040047', '高田優奈', 1, '+1 330-447-0800', 3, '686864464570211366', '36 Ridgewood Road Suite 16, Akron, OH 44321, United States', '1991-06-28', 0, 0, 'yutakada', '2002-02-23', 'tyu', '2020-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS992509567549', '龙秀英', 0, '+81 11-645-3209', 1, '195659839186441318', '日本札幌豊平区豊平三条十三丁目3番20号8階', '1993-11-15', 0, 0, 'xiulong1947', '2012-05-03', 'xiuying85', '2002-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS695712899854', 'Joanne Peterson', 1, '+44 5571 038939', 0, '098140479576284386', 'Block 18, 27 Hanover St, Liverpool, L1 4AF, United Kingdom', '1996-12-09', 0, 0, 'peterson67', '2002-05-23', 'pj929', '2014-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS072620235332', '松本悠人', 1, '+1 330-147-8527', 0, '949702751547762121', '922 Ridgewood Road Apartment 41, Akron, OH 44321, United States', '1990-07-12', 0, 0, 'matsumotoy', '2018-05-09', 'matsumotoyuto324', '2013-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS824525734295', '山下聖子', 0, '+81 11-800-2009', 3, '547249666486796075', '日本札幌白石区菊水三条五丁目4番1号26階', '1990-07-26', 0, 0, 'seikoy', '2012-06-01', 'yamashitaseiko', '2003-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS537317786895', 'Jacob Jordan', 0, '+81 11-690-8334', 2, '797741843093414704', '日本札幌厚別区上野幌一条二丁目1番19号11階', '1989-09-30', 0, 0, 'jordan9', '2002-04-19', 'jacob1208', '2018-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS525365209979', '成志遠', 1, '+81 3-6906-8534', 4, '276588428937357752', '7-kai, 5-2-17 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1991-04-07', 0, 0, 'shichiyuen608', '2000-02-11', 'chiyuenshin', '2016-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS189448573833', '小野拓哉', 0, '+1 212-072-4983', 4, '018071588248651775', '196 West Houston Street 3rd Floor, New York, NY 10014, United States', '1991-07-08', 0, 0, 'onot', '2004-02-22', 'ontak8', '2016-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS915943729025', '錢麗欣', 1, '+81 3-4148-9393', 1, '752576711702917775', '日本東京港区東新橋一丁目5番4号34階', '1985-12-18', 0, 0, 'chinly1', '2019-10-12', 'claiyan4', '2012-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS848333252646', 'Allen Patel', 0, '+1 614-568-0906', 0, '339065625785573462', '322 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1997-02-21', 0, 0, 'patelallen', '2006-09-09', 'alpatel', '2019-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS416126934136', 'Ryan Hughes', 1, '+81 80-2950-1496', 2, '838371216504139918', '日本おおさかし平野区加美東四丁目9番16号21号室', '1987-05-16', 0, 0, 'hryan416', '2001-12-21', 'hr05', '2021-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS814653874033', '金子一輝', 1, '+1 213-960-4325', 3, '064974918801996191', '840 Alameda Street Suite 50, Los Angeles, CA 90002, United States', '1999-03-01', 0, 0, 'kaneikki', '2019-05-10', 'ikki7', '2012-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS290212551496', '袁慧珊', 1, '+86 130-2213-9310', 4, '686928679466768571', '中国北京市朝阳区三里屯路57号3楼', '1993-06-11', 0, 0, 'wsyu', '2021-07-15', 'yuenws', '2016-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS975577080046', '新井凛', 0, '+44 7849 651214', 4, '446343769031184150', 'Unit 9, Oxford Eco Centre, 597 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1996-03-20', 0, 0, 'rarai', '2020-06-20', 'riarai', '2002-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS963618174972', '魏嘉伦', 1, '+86 189-3940-6434', 2, '600188667283496906', '中国成都市成华区二仙桥东三路756号42栋', '1998-01-15', 0, 0, 'jialunwei', '2021-10-02', 'weijial416', '2002-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS546725757685', '周璐', 0, '+81 90-7175-5179', 1, '830511478648456320', '21-kai, 5-2-17 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-12-03', 0, 0, 'luzhou', '2001-11-30', 'zhoul', '2001-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS726877074411', '今井健太', 1, '+81 3-7700-8237', 4, '069802216544353362', '34F, 5-2-20 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1986-05-30', 0, 0, 'imkenta7', '2003-12-11', 'imai8', '2020-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS767546844914', '曾嘉伦', 0, '+44 7802 967532', 4, '614852981433668115', 'Block 30, 501 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1997-10-16', 0, 0, 'jialze', '2021-12-30', 'zengjia88', '2016-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS041945871881', 'Rebecca Rodriguez', 0, '+81 3-2613-8951', 2, '926429833611651371', '日本東京港区東新橋一丁目5番13号27階', '1997-08-27', 0, 0, 'rebeccarodr', '2010-11-05', 'rebecca97', '2019-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS530886469779', '石井樹', 1, '+1 312-869-9305', 3, '507376702450416280', '177 Pedway 3rd Floor, Chicago, IL 60601, United States', '1997-01-10', 0, 0, 'itsuki421', '2011-07-04', 'itsukiish228', '2021-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS841548768258', 'Carl Taylor', 1, '+81 80-8290-5188', 3, '007575824853968240', '日本おおさかし西成区天神ノ森二丁目1番10号1階', '1998-08-13', 0, 0, 'taylor46', '2004-12-25', 'carl1210', '2008-12-15'); +INSERT INTO "public"."userinfo" VALUES ('TS451173844537', 'Jeffery Spencer', 1, '+44 (151) 400 8318', 2, '013702583121094582', 'Block 18, 303 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1986-08-05', 0, 0, 'spejeff', '2009-12-17', 'spencjef', '2003-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS415156701644', 'Eugene Palmer', 1, '+1 312-903-7795', 1, '865540406301654086', '875 North Michigan Ave Apt 5, Chicago, IL 60611, United States', '1985-02-15', 0, 0, 'eugene2', '2009-04-22', 'eugene718', '2021-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS485610990277', '冯震南', 1, '+1 213-051-0359', 2, '381202039827103851', '933 Grape Street Suite 12, Los Angeles, CA 90002, United States', '1989-02-08', 0, 0, 'fenzhenn', '2009-10-21', 'zf4', '2018-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS036161760562', '傅慧嫻', 0, '+86 755-855-1415', 3, '439487297960842973', '10F, 59 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1998-12-13', 0, 0, 'fu8', '2006-01-22', 'waihafu3', '2011-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS686773301933', '野村拓哉', 1, '+86 162-8771-0309', 4, '513393031216952635', '中国北京市朝阳区三里屯路973号华润大厦32室', '1992-01-13', 0, 0, 'nomuratakuy66', '2015-02-21', 'takunomura', '2017-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS417165074088', '秦子异', 0, '+44 7378 669230', 1, '010100715689308198', 'Unit 18, Oxford Eco Centre, 975 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1986-03-27', 0, 0, 'ziqin', '2011-01-07', 'ziyqin', '2014-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS639479486726', '钟晓明', 1, '+81 70-1753-4709', 2, '180323106988572150', '日本おおさかし西成区天神ノ森二丁目1番10号20号室', '1986-06-02', 0, 0, 'xiaoz1965', '2019-04-23', 'xiaomingzhong88', '2012-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS535471168099', '蔡云熙', 1, '+44 7866 097630', 3, '230008949266890280', 'Block 49, 56 Hanover St, Liverpool, L1 4AF, United Kingdom', '1989-05-17', 0, 0, 'cai3', '2000-11-19', 'cyunxi407', '2019-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS954828151746', '杜嘉伦', 0, '+44 7658 461927', 1, '409849727401345845', 'No.28 Main building, 183 Sackville St, Manchester, M1 3BB, United Kingdom', '1998-03-04', 0, 0, 'jialun424', '2018-09-27', 'du88', '2005-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS536003618337', '遠藤海斗', 1, '+86 28-027-2643', 2, '907040123268484401', '中国成都市成华区二仙桥东三路52号华润大厦7室', '1989-11-13', 0, 0, 'kaitoend', '2011-09-23', 'endokait3', '2010-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS342431589852', '藤原結翔', 0, '+1 838-399-5374', 3, '797683505287260804', '729 Central Avenue Suite 29, Albany, NY 12205, United States', '1988-09-03', 0, 0, 'fujiwarayuit17', '2009-02-15', 'fujiwara95', '2005-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS711376138142', 'Sharon Peterson', 1, '+86 21-128-9492', 2, '170985805408373409', '33F, 334 Middle Huaihai Road, Huangpu District, Shanghai, China', '1998-06-26', 0, 0, 'sharon6', '2020-05-27', 'sharonpet', '2015-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS225694348595', '大野陽太', 0, '+86 10-6554-1872', 1, '668713142832583107', '中国北京市朝阳区三里屯路692号28楼', '1995-01-11', 0, 0, 'yota2', '2017-10-19', 'yotaono805', '2005-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS052770461952', '蔡子韬', 1, '+81 80-6683-0519', 2, '689317016500504972', '日本札幌白石区菊水三条五丁目2番5号48号室', '1993-07-06', 0, 0, 'czita', '2019-01-30', 'caiz', '2021-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS927179277606', '武睿', 1, '+86 10-6131-9969', 1, '046812506896031342', '中国北京市延庆区028县道31号5室', '1992-03-03', 0, 0, 'rw1963', '2006-01-09', 'ruiwu', '2018-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS130393987423', '長谷川舞', 1, '+44 5597 344421', 0, '069207983412924680', 'No.13 Main building, 340 Park End St, Oxford, OX1 1JD, United Kingdom', '1997-04-01', 0, 0, 'hasegawam', '2002-01-06', 'maihasegawa', '2007-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS873217830865', '宋璐', 1, '+81 74-806-4145', 1, '492230816507175834', '日本ならし西大寺赤田町一丁目7番17号10階', '1991-11-01', 0, 0, 'songlu', '2005-05-21', 'songlu417', '2012-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS293144513777', '上田愛梨', 1, '+86 139-7500-6798', 1, '142075772967373704', 'No.25 building, 126 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1989-05-29', 0, 0, 'ueda86', '2007-04-22', 'ueda86', '2001-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS957055867128', 'Scott Martinez', 1, '+44 (151) 877 7760', 2, '384910066777190888', 'Block 12, 950 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1988-06-26', 0, 0, 'scmart', '2002-03-08', 'scott8', '2016-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS979096025755', '曾安琪', 1, '+44 7930 420069', 4, '089555384421724470', 'Flat 7, 647 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1987-08-22', 0, 0, 'zanqi', '2012-09-12', 'zeanqi', '2017-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS982268086622', '蔡震南', 0, '+81 90-6356-0329', 1, '445265230638333363', '日本おおさかし平野区加美東四丁目9番13号8階', '1990-10-11', 0, 0, 'cazhenn', '2003-09-11', 'caizhennan6', '2015-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS017520870866', '龚詩涵', 1, '+86 163-9483-0222', 2, '771881554854653378', '中国中山京华商圈华夏街216号华润大厦38室', '1992-12-15', 0, 0, 'sgong', '2008-06-08', 'gongs', '2007-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS516026845379', '小林彩乃', 1, '+44 (116) 469 7550', 2, '753603946228356697', 'Flat 19, 95 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1991-09-27', 0, 0, 'koayano', '2013-06-01', 'kobayashia', '2001-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS024933062901', '中村彩乃', 1, '+44 5906 941999', 1, '225386367783019409', 'No.31 Main building, 958 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1997-03-30', 0, 0, 'ayanonakamura', '2010-09-14', 'ayano1999', '2018-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS734177854717', 'Ellen Diaz', 0, '+81 90-5177-6558', 3, '797409230681676824', '日本なごやし熱田区千年二丁目5番9号17階', '1997-02-28', 0, 0, 'edia', '2016-01-10', 'ellendia8', '2014-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS477024406061', 'Sherry Ramirez', 1, '+86 152-1822-5516', 3, '531776376539318891', 'Room 26, 86 Dongtai 5th St, Dongguan, China', '1989-03-04', 0, 0, 'ramirez11', '2014-12-27', 'ramirezsherry902', '2000-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS561459203588', 'Bruce Holmes', 1, '+81 90-0167-4505', 3, '003515312751545075', '日本おおさかし東住吉区東田辺三丁目27番12号22階', '1991-04-02', 0, 0, 'holmesbru', '2019-11-06', 'hobru', '2007-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS400834967823', '小山光莉', 0, '+44 (116) 296 5439', 4, '196698893647048523', 'Block 6, 31 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1996-11-21', 0, 0, 'hikakoyam', '2001-05-13', 'hikarkoyam', '2018-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS295567711692', 'Charlotte Howard', 0, '+86 176-9626-7174', 3, '701842526070543916', 'No.12 building, 737 Middle Huaihai Road, Huangpu District, Shanghai, China', '1998-06-07', 0, 0, 'charlottehowar', '2019-10-07', 'howardcharlotte5', '2013-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS496831005954', '阎璐', 0, '+44 7210 314419', 0, '851310396973404465', 'Flat 18, 555 Regent Street, London, W1B 2LX, United Kingdom', '1990-04-13', 0, 0, 'ly519', '2005-06-01', 'lu3', '2005-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS598439372490', 'Harold Cole', 0, '+86 153-7796-2824', 1, '164589136525977820', 'No.5 building, 228 West Chang''an Avenue, Xicheng District, Beijing, China', '1996-05-13', 0, 0, 'cole53', '2010-07-22', 'hc10', '2008-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS679822880283', '卢宇宁', 0, '+44 7791 424455', 1, '500598587672764493', 'No.47 Main building, 778 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1986-01-07', 0, 0, 'yuninglu9', '2019-08-19', 'yuningl', '2013-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS237694613025', 'Wendy Vargas', 1, '+81 66-748-9705', 2, '227786379605633882', '日本おおさかし東住吉区東田辺三丁目27番11号43階', '1998-08-29', 0, 0, 'wendyvar', '2006-04-29', 'vargaw1996', '2013-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS006892172945', 'Lisa Diaz', 0, '+1 330-021-5076', 3, '346080171578693115', '370 West Market Street Apt 4, Akron, OH 44333, United States', '1992-09-21', 0, 0, 'lisad', '2021-10-11', 'dlisa', '2002-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS472566719687', '車頴思', 0, '+81 3-4527-6718', 3, '527607143967276873', '1F, 1-6-2, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1992-07-21', 0, 0, 'wingsze8', '2019-10-21', 'wingszec', '2013-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS535391019945', 'Rosa Richardson', 1, '+86 769-600-2621', 1, '777774039940759783', 'Room 35, 259 Dongtai 5th St, Dongguan, China', '1993-03-30', 0, 0, 'richardsonrosa', '2017-12-26', 'richrosa', '2013-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS723050476512', 'Charles Stone', 0, '+44 (1865) 40 0189', 1, '502583300030844527', 'Block 49, 683 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1990-09-11', 0, 0, 'charlstone', '2009-01-25', 'stonecharl511', '2012-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS696254240012', '石井七海', 1, '+44 5153 432523', 0, '997115653036792956', 'Flat 26, 610 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1987-12-10', 0, 0, 'ishnanam', '2017-02-07', 'in74', '2011-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS442613831266', 'Jessica Washington', 1, '+86 21-3074-3677', 1, '153265311633795998', '中国上海市徐汇区虹桥路635号31楼', '1995-08-09', 0, 0, 'jeswashington6', '2003-11-02', 'jeswa50', '2011-01-16'); +INSERT INTO "public"."userinfo" VALUES ('TS776248403124', '中島絢斗', 0, '+44 7065 631304', 4, '930558600575928958', 'Flat 26, 205 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1990-02-21', 0, 0, 'nakajima4', '2017-04-22', 'ayaton4', '2000-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS025694997527', 'Tina Reed', 1, '+86 21-896-4126', 1, '716749361266205594', '中国上海市闵行区宾川路748号24楼', '1998-08-12', 0, 0, 'reed1223', '2009-11-27', 'reed1962', '2003-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS536022279281', '顾睿', 1, '+81 52-041-8407', 1, '724264533570312912', '日本なごやし北区清水三丁目19番3号50号室', '1989-04-19', 0, 0, 'gurui624', '2019-06-03', 'guru', '2005-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS239737799119', '何嘉欣', 1, '+44 (116) 381 0277', 1, '968152926499772578', 'Block 24, 454 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1989-02-28', 0, 0, 'karyanho01', '2004-08-01', 'kyho', '2006-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS654309812604', '杨秀英', 0, '+1 213-744-8423', 2, '627157319559980113', '142 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1993-09-26', 0, 0, 'xiyang420', '2016-11-17', 'xiuyiyang', '2019-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS070556277631', 'Frederick Boyd', 1, '+44 7040 089006', 1, '493207028758993828', 'Unit 50, Oxford Eco Centre, 171 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1993-02-01', 0, 0, 'boyd5', '2020-12-21', 'fboy', '2006-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS879391632050', '大塚一輝', 1, '+44 5879 290568', 1, '580711011788103023', 'Flat 30, 321 Portland St, Manchester, M1 3LA, United Kingdom', '1985-09-25', 0, 0, 'io611', '2003-01-06', 'otsuka8', '2005-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS471381889840', 'Eva Garza', 1, '+81 90-2054-5334', 3, '840844960360562955', '日本なごやし瑞穂区河岸町四丁目20番19号27階', '1997-06-21', 0, 0, 'garzaeva4', '2000-02-07', 'eva57', '2009-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS678989399453', '官明', 1, '+44 (151) 285 6067', 3, '072198991308096822', 'Flat 28, 837 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1999-01-22', 0, 0, 'miko', '2003-12-10', 'mik', '2010-04-04'); +INSERT INTO "public"."userinfo" VALUES ('TS087865501429', '黎國明', 0, '+81 90-4863-7902', 4, '839525780272319851', '10-kai, 12 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1985-01-22', 0, 0, 'kmlai8', '2003-02-22', 'lakm', '2016-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS813244738347', 'Thelma Mason', 1, '+86 150-8058-8339', 3, '380190702378551670', '中国成都市成华区二仙桥东三路853号16栋', '1991-12-22', 0, 0, 'masonthelma', '2017-06-11', 'thelmamason', '2004-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS585537210929', '姚富城', 0, '+1 614-129-6932', 1, '030829726787070600', '198 East Alley 3rd Floor, Columbus, GA 43201, United States', '1996-08-24', 0, 0, 'fsy', '2006-07-16', 'yeow55', '2008-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS172800316528', '邹嘉伦', 1, '+1 312-430-6377', 1, '308735924507725281', '959 North Michigan Ave Apt 22, Chicago, IL 60611, United States', '1988-06-08', 0, 0, 'zouj', '2004-08-25', 'jialun3', '2018-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS471822568726', '唐慧嫻', 1, '+81 90-1218-1051', 3, '589775973857893199', '31-kai, 5-2-4 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-06-16', 0, 0, 'waihan407', '2007-01-30', 'tongwaihan', '2003-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS293554067286', '曾俊宇', 0, '+81 70-5484-8899', 3, '568126970404429985', '日本おおさかし近江堂一丁目7番7号16階', '1998-12-12', 0, 0, 'tsancy', '2013-06-30', 'cytsang10', '2003-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS657817937006', '井上桜', 0, '+81 80-0338-8891', 2, '392180403045247956', '日本おおさかし東住吉区東田辺三丁目27番15号46階', '1993-04-28', 0, 0, 'inoue79', '2009-09-20', 'inouesakura', '2011-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS272291742561', '邵睿', 0, '+86 28-672-6090', 1, '412323802193924950', '中国成都市成华区玉双路6号470号40号楼', '1990-06-02', 0, 0, 'shaor', '2005-11-15', 'sharui', '2006-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS671722885765', '酒井拓哉', 0, '+86 21-432-6786', 1, '888077758824456357', '中国上海市黄浦区淮海中路548号15号楼', '1987-07-17', 0, 0, 'takuyasakai', '2011-06-30', 'takuyasakai6', '2017-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS704821510822', '黃天樂', 0, '+1 838-170-5171', 1, '705190092647575799', '11 Central Avenue Apt 45, Albany, NY 12206, United States', '1997-04-14', 0, 0, 'wongtinlok58', '2007-03-06', 'wongtl', '2008-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS267370609404', '岡田明菜', 0, '+81 11-988-2499', 2, '098817002943665066', '日本札幌中央区宮の森四条六丁目1番3号40階', '1998-05-05', 0, 0, 'okada1960', '2016-07-02', 'okadakina10', '2004-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS368426485240', '邱睿', 1, '+86 28-8515-0718', 4, '355345649542544233', 'No.13 building, 62 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1985-06-22', 0, 0, 'ruiq501', '2009-04-21', 'ruiq', '2015-12-27'); +INSERT INTO "public"."userinfo" VALUES ('TS280700266023', 'Daniel Graham', 1, '+81 66-302-5572', 0, '254626010359377533', '26F, 1-7-13 Omido, Higashiosaka, Osaka, Japan', '1990-03-08', 0, 0, 'gdan', '2012-12-07', 'danielgra10', '2019-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS120533373630', '薛曉彤', 1, '+86 755-962-9429', 2, '220570485106969258', '中国深圳罗湖区田贝一路312号6室', '1991-07-22', 0, 0, 'hiutungs85', '2000-09-14', 'sht', '2010-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS086835678671', 'Kenneth Harris', 1, '+86 10-342-3655', 2, '963461767411282029', 'Room 13, 624 Yueliu Rd, Fangshan District, Beijing, China', '1992-05-19', 0, 0, 'harrk', '2003-12-12', 'harriskenn10', '2017-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS080837435743', 'Betty Long', 1, '+81 80-9570-5713', 2, '026201007469960320', '14-kai, 13-3-9 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1995-03-11', 0, 0, 'bettlo', '2015-09-19', 'belong', '2003-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS914213540913', '金子舞', 0, '+86 21-101-8075', 1, '062399258187717125', '中国上海市徐汇区虹桥路245号35室', '1992-03-01', 0, 0, 'mai1029', '2006-07-29', 'kanekomai96', '2011-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS585187548729', '贺子韬', 1, '+81 90-5223-4237', 1, '134842340511924495', '日本札幌清田区真栄四条五丁目19番6号20号室', '1987-04-24', 0, 0, 'zitao3', '2020-08-18', 'he10', '2014-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS507899772568', '郭心穎', 1, '+81 66-796-6931', 1, '528234947411609543', 'Rm. 36, 1-7-8 Omido, Higashiosaka, Osaka, Japan', '1990-03-09', 0, 0, 'sumwkwok6', '2014-12-30', 'sumwing5', '2009-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS680285562908', '田中聖子', 1, '+81 80-8964-0762', 2, '963764578312310342', '38-kai, 6 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-08-31', 0, 0, 'seikot9', '2000-06-11', 'seitan3', '2004-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS327809781943', '新井翼', 0, '+81 90-6070-6078', 0, '211045498941580977', '日本札幌厚別区上野幌一条二丁目1番6号38階', '1986-01-27', 0, 0, 'tsubasa20', '2019-09-13', 'tsubasaarai', '2009-03-13'); +INSERT INTO "public"."userinfo" VALUES ('TS162245832602', '袁志明', 0, '+86 28-301-5233', 1, '141426458679764827', 'Room 22, 905 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1989-10-31', 0, 0, 'yuecm', '2004-04-02', 'yuenchim', '2007-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS154985898783', '坂本蒼士', 0, '+81 11-910-5738', 2, '589499906987241591', 'Rm. 43, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1988-10-17', 0, 0, 'sakamotoaosh', '2007-08-11', 'aosakamoto', '2019-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS760664638650', '姜力申', 1, '+44 5367 822010', 3, '303010526783205180', 'Block 44, 165 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1986-11-25', 0, 0, 'cliksun7', '2004-05-23', 'changliksun', '2003-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS855423369401', '邱震南', 1, '+81 11-243-5649', 1, '251782725314045125', '日本札幌清田区真栄四条五丁目19番17号28階', '1990-10-06', 0, 0, 'zqiu518', '2004-06-20', 'zhennanqiu1996', '2014-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS938633244410', '夏震南', 0, '+86 140-5251-5430', 1, '213135889611656612', '中国深圳罗湖区蔡屋围深南东路268号3栋', '1998-03-05', 0, 0, 'zhennan61', '2015-10-13', 'zhennanxi', '2015-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS037296664866', 'Edwin Mendez', 1, '+81 11-013-9001', 3, '022081458171789929', '日本札幌白石区菊水三条五丁目2番10号8号室', '1995-03-28', 0, 0, 'mendezedwin1', '2003-04-02', 'medwin9', '2009-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS135933489457', 'Rosa Taylor', 0, '+81 70-2455-1635', 2, '203670448021568659', '日本なごやし北区清水三丁目19番6号12階', '1997-12-22', 0, 0, 'rosa40', '2000-04-23', 'trosa', '2017-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS407824003519', 'Leslie Ruiz', 0, '+86 194-0142-7616', 2, '157452694950460448', 'Room 49, 378 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1999-01-19', 0, 0, 'leslie77', '2002-09-09', 'ruiz1125', '2006-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS127681705881', 'Randy Payne', 0, '+81 52-501-5127', 3, '062907904977293298', '日本なごやし北区清水三丁目19番9号29階', '1988-02-05', 0, 0, 'paynerandy', '2018-07-05', 'rpayne', '2007-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS727025185447', '高田聖子', 1, '+1 718-018-5374', 2, '988828197889382301', '644 1st Ave Apt 39, Brooklyn, NY 11220, United States', '1995-12-07', 0, 0, 'seikota3', '2008-09-23', 'takada17', '2013-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS792192146008', '戚慧琳', 1, '+86 755-5019-5195', 3, '069986748963767168', '中国深圳龙岗区学园一巷993号1室', '1989-01-30', 0, 0, 'wailamchi1028', '2020-08-15', 'cwa', '2012-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS208323764570', 'Manuel Tran', 0, '+44 (121) 932 8686', 1, '607000543796427118', 'Unit 6, Oxford Eco Centre, 282 New Street, Birmingham, B2 4DB, United Kingdom', '1993-05-17', 0, 0, 'tranmanu', '2010-12-31', 'tranman', '2017-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS560069416908', '木村一輝', 0, '+81 3-8353-5059', 2, '012539278851649115', '39-kai, 2-3-9 Yoyogi, Shibuya-ku, Tokyo, Japan', '1986-01-13', 0, 0, 'ikkikimura523', '2014-11-24', 'ikkimura1202', '2006-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS243116050824', '河野絢斗', 1, '+86 760-1738-5115', 2, '860913794929582568', '中国中山紫马岭商圈中山五路941号26栋', '1987-02-18', 0, 0, 'konoayato', '2018-12-21', 'konoa', '2002-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS805879893715', '田震南', 1, '+1 213-056-5633', 3, '359484855433363269', '388 S Broadway Apartment 27, Los Angeles, CA 90015, United States', '1989-04-22', 0, 0, 'zhennant409', '2013-07-23', 'zhentian', '2018-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS407006560114', 'Lawrence Ford', 1, '+86 153-0402-9572', 3, '063160459740140752', '中国深圳罗湖区蔡屋围深南东路224号4号楼', '1993-01-04', 0, 0, 'lawrencefor1', '2019-03-01', 'flawre', '2006-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS510930210199', '毛明詩', 0, '+44 (151) 039 2178', 0, '478864190722719642', 'Block 15, 300 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1994-12-15', 0, 0, 'msmo701', '2009-10-10', 'mingszemo7', '2004-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS711767586828', '村田愛梨', 0, '+81 3-1092-3952', 4, '451034827291103783', '日本東京渋谷区代々木二丁目3番17号41号室', '1992-08-20', 0, 0, 'aim', '2006-06-30', 'murataair', '2011-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS809130640573', '薛晓明', 0, '+81 66-486-3880', 3, '816530324142839315', '日本おおさかし近江堂一丁目7番8号38階', '1991-06-11', 0, 0, 'xiaomingxue', '2000-10-23', 'xiaoming10', '2013-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS494354974522', '藤井優奈', 1, '+81 52-520-9048', 2, '164516857038690929', '日本なごやし守山区瀬古東二丁目171番14号47階', '1996-11-30', 0, 0, 'yunfuji93', '2012-02-04', 'yunafu18', '2003-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS816105688573', '洪杰倫', 0, '+81 3-6390-3051', 1, '186407724548322740', '日本東京品川区東五反田五丁目2番15号21階', '1997-05-20', 0, 0, 'chiehlun96', '2015-05-03', 'hucl18', '2012-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS854993825137', '彭宇宁', 1, '+1 330-914-3452', 3, '615393460125492427', '791 Riverview Road Suite 6, Akron, OH 44313, United States', '1992-07-03', 0, 0, 'peng04', '2015-12-12', 'yuningpeng4', '2006-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS193329403579', 'Lisa Gardner', 0, '+81 52-050-0237', 2, '573663247268361478', '40F, 6 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-08-25', 0, 0, 'ligardner', '2011-06-03', 'gardnlisa', '2018-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS442596458361', 'Craig Robertson', 1, '+81 70-9608-0702', 2, '006983230151244344', '日本東京中央区銀座三丁目12番3号5号室', '1998-03-12', 0, 0, 'craigrobertson2020', '2000-01-11', 'rcraig', '2006-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS787746377213', '陳德華', 0, '+44 5067 946724', 3, '672973560652643792', 'Unit 43, Oxford Eco Centre, 150 Hanover Street, London, W1S 1YD, United Kingdom', '1993-06-04', 0, 0, 'takwah7', '2001-02-11', 'takwahchan', '2021-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS571437019492', '严宇宁', 1, '+1 838-180-7597', 3, '647605390383975560', '290 Broadway Apartment 35, Albany, NY 12207, United States', '1990-08-27', 0, 0, 'yunyan72', '2020-04-17', 'yan1', '2017-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS146887793848', '岡田架純', 1, '+81 66-850-4734', 3, '579133398441282098', '45-kai, 1-1-2 Deshiro, Nishinari Ward, Osaka, Japan', '1997-01-31', 0, 0, 'ko8', '2020-08-31', 'okada8', '2020-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS103323534698', '戴秀英', 0, '+86 755-5168-2426', 3, '270734291988353026', 'Room 50, CR Building, 964 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1988-12-31', 0, 0, 'xdai820', '2010-09-30', 'xiuyingdai401', '2012-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS352514416493', '雷宇宁', 1, '+44 (20) 6751 1966', 3, '569393503509279776', 'Block 45, 535 Maddox Street, London, W1S 1PU, United Kingdom', '1997-04-11', 0, 0, 'lei1014', '2001-01-14', 'yuning211', '2012-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS372062845386', 'Patrick Lee', 0, '+86 184-4283-0826', 1, '360822940880294430', '中国成都市成华区二仙桥东三路974号33号楼', '1995-06-27', 0, 0, 'patrickl', '2008-08-19', 'leepatri', '2008-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS647366572721', '後藤美羽', 1, '+1 718-554-3293', 1, '448877956661300403', '891 Columbia St 3rd Floor, Brooklyn, NY 11231, United States', '1994-03-11', 0, 0, 'miug', '2017-05-25', 'gotomi', '2005-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS647078507638', '佐野拓哉', 0, '+86 173-3972-4157', 2, '758648954114292988', '中国北京市延庆区028县道854号3室', '1989-09-11', 0, 0, 'sanota', '2004-07-22', 'stakuya', '2018-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS058211029853', 'Juanita Johnson', 0, '+1 212-418-5793', 1, '230327993352989512', '992 Canal Street 3rd Floor, New York, NY 10013, United States', '1997-06-20', 0, 0, 'juanitaj', '2010-02-01', 'juanjohnson', '2008-09-29'); +INSERT INTO "public"."userinfo" VALUES ('TS598030056440', '蕭慧儀', 1, '+81 80-6003-1555', 3, '379899196888535061', 'Rm. 11, 2-5-8 Chitose, Atsuta Ward, Nagoya, Japan', '1998-10-13', 0, 0, 'waiyes1003', '2022-01-13', 'waiyee8', '2009-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS653291366586', 'Albert Carter', 0, '+81 74-576-7269', 2, '388625703118934259', '日本ならし西大寺赤田町一丁目7番4号2号室', '1994-10-17', 0, 0, 'albecarter1', '2003-11-02', 'cartera', '2007-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS666264857278', '加藤一輝', 0, '+86 182-7570-8722', 1, '546637253615365057', '中国东莞珊瑚路41号华润大厦23室', '1987-05-28', 0, 0, 'kato6', '2007-10-23', 'kato09', '2001-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS319582901764', '大塚海斗', 1, '+86 159-6618-5389', 2, '822611041795054745', 'No.16 building, 298 East Wangfujing Street, Dongcheng District , Beijing, China', '1992-05-21', 0, 0, 'okai', '2000-09-18', 'otsuk', '2008-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS296267502494', '崔杰宏', 0, '+86 21-4072-5889', 4, '542184180703306320', '中国上海市闵行区宾川路940号华润大厦2室', '1989-02-03', 0, 0, 'cujie5', '2015-02-12', 'cuijiehong', '2009-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS192110438051', 'Craig Wood', 1, '+81 90-2534-1310', 2, '672814084925057070', 'Rm. 38, 18 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1991-07-25', 0, 0, 'woodc', '2013-05-28', 'craiwood', '2000-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS008068779749', '後藤蒼士', 0, '+81 90-9967-4453', 2, '562302232111774855', '39F, 1-7-15 Saidaiji Akodacho, Nara, Japan', '1998-03-24', 0, 0, 'goto214', '2020-02-09', 'gaoshi1206', '2017-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS572095583379', 'Eddie Williams', 0, '+1 212-300-3831', 1, '401092599901360177', '553 Wooster Street Suite 16, New York, NY 10012, United States', '1991-02-13', 0, 0, 'ewill', '2019-10-22', 'weddie', '2003-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS068394132691', 'Carol Wallace', 1, '+1 213-509-3290', 1, '444489018826015823', '699 Wall Street Suite 3, Los Angeles, CA 90003, United States', '1998-11-09', 0, 0, 'wallacecarol', '2003-04-15', 'carol417', '2012-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS276695428421', '樊惠敏', 0, '+44 (1223) 93 8951', 0, '540565385758547063', 'Flat 5, 15 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1994-09-22', 0, 0, 'fanwm', '2012-06-04', 'fanwaiman7', '2021-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS180402969422', '徐震南', 0, '+86 20-9854-2432', 4, '448403991020679027', '15F, 167 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1992-05-01', 0, 0, 'xuzhen107', '2014-09-23', 'xu118', '2007-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS454161339965', 'Troy Olson', 0, '+86 769-906-5958', 4, '146619390549881388', '中国东莞珊瑚路361号25室', '1987-02-15', 0, 0, 'troy1957', '2003-06-02', 'olsontroy88', '2003-06-07'); +INSERT INTO "public"."userinfo" VALUES ('TS026107147826', 'Mike Alvarez', 1, '+81 70-6792-8447', 1, '863521382409954397', '28F, 2-5-14 Chitose, Atsuta Ward, Nagoya, Japan', '1985-09-18', 0, 0, 'mikealvarez', '2007-05-23', 'malva5', '2007-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS195650928383', '葉學友', 0, '+81 11-082-9522', 0, '815727131268871718', '日本札幌豊平区豊平三条十三丁目3番4号20号室', '1991-06-04', 0, 0, 'hokyauyip5', '2002-09-07', 'yiphy', '2021-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS995511479625', '朱慧儀', 0, '+81 90-9980-0953', 3, '470665949776496010', '日本なごやし北区楠味鋺三丁目80番7号2階', '1994-09-19', 0, 0, 'chuwaiyee', '2001-10-31', 'wychu1963', '2005-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS801370188390', '崔天榮', 1, '+81 90-6864-9200', 3, '397122434834780773', 'Rm. 32, 5-19-12 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1986-09-11', 0, 0, 'twchoi', '2019-05-03', 'choitw', '2000-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS463769433134', 'Dale Carter', 0, '+1 614-167-5015', 3, '625076501589824127', '370 Wicklow Road Apartment 1, Columbus, GA 43204, United States', '1994-05-17', 0, 0, 'carter4', '2000-07-03', 'dcarter', '2005-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS996810871320', '酒井優奈', 1, '+81 80-4428-6610', 1, '879379395590855435', '日本東京品川区東五反田五丁目2番19号43階', '1987-10-26', 0, 0, 'sakaiy', '2008-08-08', 'yunasakai01', '2013-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS477187072765', 'Barbara Johnson', 0, '+44 7596 796170', 3, '815115706516937564', 'Block 33, 548 Park End St, Oxford, OX1 1JD, United Kingdom', '1995-08-07', 0, 0, 'bj3', '2014-09-19', 'baj', '2010-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS536505616944', 'Sarah Baker', 0, '+81 66-321-6093', 4, '765306298408659661', '日本おおさかし近江堂一丁目7番3号18階', '1988-12-18', 0, 0, 'baker609', '2008-03-13', 'sabaker6', '2009-04-26'); +INSERT INTO "public"."userinfo" VALUES ('TS464076987587', '伊藤架純', 0, '+1 614-293-7705', 3, '256875737972667834', '372 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1988-09-29', 0, 0, 'ito111', '2003-09-27', 'itokasumi46', '2008-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS809740618484', 'Charlotte Olson', 1, '+81 70-8346-2228', 2, '048510535084636300', '日本おおさかし東住吉区東田辺三丁目27番16号14階', '1986-11-24', 0, 0, 'olson2', '2018-03-09', 'olcharlotte', '2017-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS145559919690', '史致远', 0, '+86 10-6713-9084', 3, '162573776701823614', 'No.50 building, 896 East Wangfujing Street, Dongcheng District , Beijing, China', '1993-04-25', 0, 0, 'zhiyuanshi41', '2006-12-21', 'shizhiyuan', '2013-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS070582052653', '工藤健太', 1, '+81 70-3400-7123', 3, '584552697544148159', '35F, 5-4-11 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1990-04-10', 0, 0, 'kudokenta', '2013-05-03', 'kenta613', '2013-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS991440757706', '苏秀英', 1, '+86 149-1285-9747', 3, '515539741721551083', 'Room 34, 346 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1997-01-01', 0, 0, 'su7', '2015-11-14', 'xiuyingsu', '2009-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS398866998070', '田云熙', 1, '+81 66-881-2442', 0, '347227652837960115', '日本おおさかし西成区天神ノ森二丁目1番3号30階', '1997-05-10', 0, 0, 'ytian1948', '2000-12-25', 'tiyunx3', '2002-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS028661914342', 'Maria Grant', 1, '+81 66-215-8184', 2, '116629438138284262', '日本おおさかし東住吉区東田辺三丁目27番2号22号室', '1998-08-09', 0, 0, 'gramaria5', '2018-03-08', 'mariagrant', '2003-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS738127966406', '遠藤愛梨', 0, '+44 (161) 718 7282', 3, '210288133992679264', 'Unit 47, Oxford Eco Centre, 521 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1986-10-07', 0, 0, 'endoairi', '2017-01-11', 'aend', '2019-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS669275672328', '蔡致远', 0, '+86 185-0987-1682', 1, '850566358935481959', '中国深圳罗湖区田贝一路615号31室', '1985-05-03', 0, 0, 'cai1', '2013-05-30', 'zhiyuan04', '2016-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS170990674236', '陆子韬', 0, '+81 80-1313-9154', 0, '124586530042876151', '36F, 3-9-11 Gakuenminami, Nara, Japan', '1991-03-21', 0, 0, 'zitlu5', '2004-07-08', 'zitaolu', '2017-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS929474851091', '中島一輝', 1, '+1 838-064-2792', 1, '684737230987977611', '257 Central Avenue Apt 41, Albany, NY 12206, United States', '1992-10-21', 0, 0, 'nakajimaikki', '2004-05-21', 'ikkinakaj', '2012-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS678195801574', '狄安琪', 0, '+86 755-035-5627', 1, '478476075857184591', 'No.4 building, 352 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1993-11-17', 0, 0, 'onkayti10', '2008-05-18', 'tionkay77', '2018-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS311583515812', '洪慧珊', 1, '+44 5512 301501', 2, '999714089553530548', 'No.10 Main building, 11 Redfern St, Liverpool, L20 8JB, United Kingdom', '1997-10-19', 0, 0, 'hungwaisan5', '2015-06-27', 'hws', '2013-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS244221256962', '中山健太', 1, '+1 312-284-4070', 4, '910419309359821547', '75 Pedway Apt 21, Chicago, IL 60601, United States', '1998-03-10', 0, 0, 'kenakayama', '2006-11-04', 'kenta78', '2002-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS622183221311', 'Andrea Cooper', 0, '+81 52-311-7048', 4, '584478207260151169', '日本なごやし守山区瀬古東二丁目171番2号15階', '1997-12-20', 0, 0, 'cooper14', '2018-05-13', 'cooper419', '2012-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS694231560415', 'Brian Flores', 1, '+44 7046 195856', 2, '333439997528827514', 'Flat 10, 769 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1986-08-06', 0, 0, 'florbrian11', '2014-04-08', 'brfl', '2019-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS435579760979', '中島翼', 1, '+81 52-102-2613', 0, '686550925396348631', '日本なごやし守山区瀬古東二丁目171番1号42階', '1991-12-01', 0, 0, 'nakajima7', '2013-01-12', 'tn49', '2018-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS726448781290', '廖秀英', 1, '+86 21-452-2416', 2, '740018894089318606', '6F, 893 Hongqiao Rd., Xu Hui District, Shanghai, China', '1987-04-11', 0, 0, 'xliao', '2020-11-08', 'xiuyingliao6', '2018-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS088371390871', '野村悠人', 1, '+81 70-9370-4866', 4, '135759042124484214', '日本おおさかし西成区天神ノ森二丁目1番1号30号室', '1986-04-01', 0, 0, 'yutonomu', '2002-05-02', 'yutonomu', '2009-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS680279629928', '元明詩', 0, '+86 10-0926-1339', 4, '573815855137963915', '47F, 708 028 County Rd, Yanqing District, Beijing, China', '1995-08-25', 0, 0, 'yuen723', '2012-07-21', 'ymingsze9', '2015-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS251662122458', '阮朝偉', 0, '+86 193-8782-1587', 3, '126117472493916268', '中国成都市成华区双庆路495号华润大厦12室', '1996-11-02', 0, 0, 'ychiuwai', '2006-07-26', 'cwyu', '2020-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS186866207485', 'Connie Guzman', 0, '+81 52-514-7708', 4, '208147951901428272', '48-kai, 15 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-05-19', 0, 0, 'connieguzman', '2021-11-09', 'coguz', '2020-11-30'); +INSERT INTO "public"."userinfo" VALUES ('TS740386018753', '蔡子异', 0, '+44 (1865) 59 9010', 3, '590903713076258972', 'Unit 8, Oxford Eco Centre, 300 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1998-04-03', 0, 0, 'ziyicai', '2005-04-29', 'caziyi', '2000-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS907851790922', '田致远', 1, '+81 74-433-1764', 2, '144171696809147897', '日本ならし学園南三丁目9番18号24階', '1991-03-15', 0, 0, 'zhiyutian1', '2016-06-01', 'zhiyut', '2016-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS776862537184', '郭俊宇', 1, '+44 (161) 696 7370', 1, '189841560685086766', 'No.8 Main building, 353 Portland St, Manchester, M1 3LA, United Kingdom', '1988-08-28', 0, 0, 'kwok10', '2000-02-26', 'cykwok', '2020-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS452480362655', 'Tiffany Palmer', 0, '+86 28-4514-3897', 0, '691831156657821565', '中国成都市成华区玉双路6号673号华润大厦21室', '1985-01-29', 0, 0, 'tiffapa5', '2000-04-15', 'tifpalme', '2017-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS555565459112', '原田桜', 1, '+44 7865 993879', 4, '180021283089580588', 'Unit 19, Oxford Eco Centre, 525 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1999-02-01', 0, 0, 'sakurh', '2019-05-19', 'haradas', '2021-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS026550458082', 'Alice Ferguson', 0, '+81 66-548-1915', 4, '587232929556548272', '日本おおさかし東住吉区東田辺三丁目27番8号49号室', '1994-01-15', 0, 0, 'ferguson6', '2008-07-21', 'fergusona', '2019-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS913030924011', '酒井詩乃', 0, '+86 21-202-2623', 1, '768769862229077044', '中国上海市浦东新区健祥路491号48栋', '1986-04-01', 0, 0, 'sakaishino725', '2015-08-07', 'sashino', '2003-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS791228288126', '竹内湊', 1, '+1 718-895-1105', 4, '795842500123133319', '399 1st Ave Apartment 44, Brooklyn, NY 11220, United States', '1989-05-10', 0, 0, 'minatotakeuchi', '2019-08-01', 'minato3', '2008-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS686563453301', '張小慧', 1, '+86 168-7848-3883', 3, '260531233435146145', 'No.5 building, No.292, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-05-20', 0, 0, 'swcheu', '2003-11-11', 'swcheu9', '2017-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS850645360816', '龚岚', 1, '+86 21-018-3850', 2, '380422959759514830', 'No.37 building, 674 Jianxiang Rd, Pudong, Shanghai, China', '1989-01-24', 0, 0, 'lago', '2007-08-27', 'gonglan', '2009-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS764293855170', '今井明菜', 1, '+44 7722 396794', 3, '952233411510784580', 'No.23 Main building, 978 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1991-04-28', 0, 0, 'ai1129', '2002-01-02', 'imai86', '2007-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS167567912474', '陶家強', 0, '+1 718-007-8768', 3, '832992777326100285', '185 Bergen St Apartment 18, Brooklyn, NY 11217, United States', '1993-02-23', 0, 0, 'taokakeung', '2005-09-29', 'kakeungtao617', '2013-07-16'); +INSERT INTO "public"."userinfo" VALUES ('TS870144284197', '袁心穎', 1, '+1 330-739-5787', 4, '017716909759121152', '180 West Market Street 3rd Floor, Akron, OH 44333, United States', '1988-05-12', 0, 0, 'yuen630', '2012-09-12', 'ysumwing', '2010-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS332430411266', '清水百恵', 1, '+81 80-1273-5011', 1, '245561157408424759', '日本東京渋谷区代々木二丁目3番13号41階', '1998-05-17', 0, 0, 'sm1942', '2009-05-29', 'mshimizu815', '2005-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS205756064715', '韩睿', 0, '+81 90-3703-4103', 1, '112116342604482557', 'Rm. 20, 5-4-7 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1993-10-06', 0, 0, 'ruihan', '2000-05-08', 'hrui7', '2019-11-29'); +INSERT INTO "public"."userinfo" VALUES ('TS419794478544', 'Steve Jordan', 1, '+86 769-7611-0648', 3, '205468103217822129', '中国东莞坑美十五巷911号25栋', '1992-01-27', 0, 0, 'jordan1', '2011-08-16', 'stevj109', '2019-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS637025547954', '韦秀英', 1, '+1 212-178-0740', 1, '924351431850803922', '14 Bank Street 3rd Floor, New York, NY 10014, United States', '1994-03-02', 0, 0, 'xiuying9', '2003-11-01', 'xwe', '2001-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS520003949002', 'Annie Snyder', 0, '+86 164-2027-2696', 2, '260236680145283022', 'Room 9, CR Building, 219 Huanqu South Street 2nd Alley, Dongguan, China', '1993-03-09', 0, 0, 'asnyder', '2016-10-09', 'snyderannie', '2012-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS249624849922', '原田湊', 0, '+86 769-8451-7198', 2, '078882685608096611', '中国东莞环区南街二巷256号24栋', '1992-05-06', 0, 0, 'minato4', '2011-02-24', 'minath1209', '2009-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS477871633730', '廖云熙', 0, '+81 90-1631-7171', 0, '335405075264431569', 'Rm. 23, 3-27-7 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-11-30', 0, 0, 'yunxi69', '2002-05-30', 'yunxi74', '2001-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS833938340927', '山口蒼士', 0, '+1 718-071-9206', 1, '794585894260370535', '738 Bergen St Apartment 1, Brooklyn, NY 11217, United States', '1987-08-31', 0, 0, 'aoshi77', '2017-03-11', 'yamaguchia', '2011-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS109930606031', '藍明', 1, '+81 90-4491-0220', 1, '689519147451989655', '日本おおさかし西成区出城一丁目1番3号33階', '1986-05-16', 0, 0, 'lamin221', '2004-02-12', 'mlam', '2001-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS123933915854', '區世榮', 1, '+81 11-345-9293', 4, '042639904237666495', '21-kai, 5-19-12 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1998-05-22', 0, 0, 'saiwing702', '2008-08-06', 'ausaiwing', '2001-09-27'); +INSERT INTO "public"."userinfo" VALUES ('TS622689614318', 'Jeremy Hunter', 1, '+1 838-681-9695', 4, '032647798559121922', '21 Central Avenue Suite 13, Albany, NY 12206, United States', '1992-04-27', 0, 0, 'jerehunte518', '2009-01-14', 'huntejeremy', '2011-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS018126199615', '近藤蓮', 1, '+81 80-5892-5563', 3, '287560267147747902', '日本なごやし守山区瀬古東二丁目171番17号30階', '1998-12-13', 0, 0, 'renko', '2021-08-21', 'renkondo3', '2003-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS959844841727', '溫祖兒', 0, '+81 80-4022-9832', 3, '069344202074071775', 'Rm. 1, 3-19-12 Shimizu, Kita Ward, Nagoya, Japan', '1985-04-13', 0, 0, 'choyewan', '2010-11-27', 'cywa', '2009-12-02'); +INSERT INTO "public"."userinfo" VALUES ('TS423156971047', '莫家強', 1, '+81 11-167-3581', 0, '559022709803490916', 'Rm. 9, 5-19-17 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1989-07-18', 0, 0, 'mokkk', '2022-02-02', 'mokkk75', '2015-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS331465340030', '朱晓明', 0, '+86 189-8554-3842', 1, '148399535063182222', 'No.8 building, 806 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1988-10-22', 0, 0, 'xiaomingz', '2001-04-27', 'xiazhu1973', '2008-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS740305957057', '森聖子', 0, '+44 5469 979099', 3, '155232326249818151', 'No.22 Main building, 472 Sackville St, Manchester, M1 3BB, United Kingdom', '1990-05-25', 0, 0, 'smo', '2005-02-15', 'moseik116', '2008-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS710599635476', '佐々木海斗', 1, '+1 330-380-7259', 1, '598192358767416558', '530 West Market Street 3rd Floor, Akron, OH 44333, United States', '1995-02-07', 0, 0, 'sasakikaito', '2016-07-04', 'saskaito5', '2010-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS586926561945', 'Bonnie Soto', 0, '+86 160-4079-5800', 1, '676947523016530377', '中国北京市房山区岳琉路116号1号楼', '1994-05-20', 0, 0, 'sb9', '2006-10-17', 'bonso', '2021-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS187358292641', '佐藤樹', 0, '+86 173-2608-3897', 4, '167721178393178530', '中国北京市朝阳区三里屯路887号37号楼', '1986-02-06', 0, 0, 'satoitsuki121', '2021-11-16', 'satoitsuk', '2002-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS859797344011', 'Benjamin Morgan', 1, '+1 718-738-5952', 4, '100999363933734718', '326 Nostrand Ave Suite 41, Brooklyn, NY 11216, United States', '1997-05-08', 0, 0, 'bemo', '2019-03-19', 'mb8', '2011-03-24'); +INSERT INTO "public"."userinfo" VALUES ('TS891955977412', '藤明', 0, '+44 (151) 802 0652', 0, '561664513712822953', 'Unit 5, Oxford Eco Centre, 757 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1989-03-19', 0, 0, 'tam803', '2011-07-20', 'mint', '2010-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS879729547380', 'Sharon Warren', 1, '+81 90-0888-8513', 0, '690252496904643230', '日本東京港区東新橋一丁目5番15号13階', '1993-05-04', 0, 0, 'sharwarren', '2008-09-23', 'sw9', '2021-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS766262163959', '傅秀英', 0, '+44 5156 548102', 0, '598444418060101689', 'Block 25, 887 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1992-12-12', 0, 0, 'fu9', '2002-06-17', 'xiuyingfu1222', '2008-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS370337223234', '今井大地', 1, '+81 70-7910-0011', 3, '737692521876119855', '日本ならし大和郡山市本庄町一丁目1番20号44階', '1993-12-26', 0, 0, 'imdaichi', '2013-01-30', 'daichiimai', '2001-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS657028193871', '孙震南', 0, '+86 21-6679-5181', 3, '204711570402936198', '中国上海市浦东新区橄榄路861号华润大厦7室', '1997-05-19', 0, 0, 'suzhenn', '2007-05-24', 'zhens', '2004-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS600080290635', '森田美羽', 1, '+81 52-747-6719', 2, '229528115162961934', '日本なごやし熱田区千年二丁目5番2号23階', '1997-08-23', 0, 0, 'mimorita7', '2019-10-23', 'morimiu', '2019-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS592594535052', 'Katherine Porter', 0, '+86 755-647-9878', 2, '184410720734694821', 'No.34 building, 217 Shennan Ave, Futian District, Shenzhen, China', '1985-01-15', 0, 0, 'portkatherine', '2002-11-25', 'kathporter76', '2016-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS790494998060', '沈子韬', 1, '+1 718-269-6744', 1, '986640573751085682', '520 Nostrand Ave Suite 16, Brooklyn, NY 11216, United States', '1994-09-14', 0, 0, 'zshen', '2020-10-13', 'shezitao', '2012-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS817734980012', 'Sara Murphy', 1, '+81 80-7312-9974', 1, '799179182834728140', '日本東京港区東新橋一丁目5番2号23号室', '1995-09-08', 0, 0, 'sm5', '2001-01-16', 'mursara45', '2021-06-18'); +INSERT INTO "public"."userinfo" VALUES ('TS531366615428', 'Ernest Lewis', 0, '+86 755-474-5355', 2, '433078583634652356', '中国深圳龙岗区布吉镇西环路966号华润大厦19室', '1999-02-17', 0, 0, 'lewernest', '2019-06-05', 'lee1991', '2014-01-06'); +INSERT INTO "public"."userinfo" VALUES ('TS208671966567', '冯震南', 0, '+86 158-4197-2472', 4, '219599654733361236', '中国东莞坑美十五巷390号6室', '1991-06-20', 0, 0, 'fengzhennan3', '2012-02-26', 'fengzhen3', '2022-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS544428176897', '戴嘉伦', 1, '+86 173-8224-5630', 4, '678698420412506301', 'Room 4, CR Building, 936 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1997-02-02', 0, 0, 'daijialu', '2007-01-22', 'jialundai', '2015-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS869461338053', 'Kathleen Green', 1, '+81 70-6795-7248', 3, '406105848435088563', '1F, 1-5-10, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1997-04-30', 0, 0, 'kathleen1207', '2001-10-30', 'kgreen', '2014-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS485772271425', '岡田玲奈', 1, '+81 66-834-0504', 2, '560231252438389636', '24F, 4-9-3 Kamihigashi, Hirano Ward, Osaka, Japan', '1998-11-25', 0, 0, 'okadarena', '2007-11-16', 'renaokada', '2015-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS886246869557', 'Raymond Webb', 0, '+86 20-248-9018', 0, '761072077684405170', '中国广州市白云区机场路棠苑街五巷707号35室', '1985-11-19', 0, 0, 'webbraymond', '2013-05-30', 'rawe', '2009-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS242933233253', '田秀英', 0, '+81 80-5658-6444', 1, '356641886364359648', '日本札幌清田区真栄四条五丁目19番9号1階', '1994-04-11', 0, 0, 'tian8', '2008-10-04', 'xiutian', '2019-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS567942860067', '周岚', 1, '+44 7973 316979', 3, '510015006945267692', 'Block 43, 986 Hanover Street, London, W1S 1YD, United Kingdom', '1992-02-18', 0, 0, 'lan04', '2010-12-21', 'lanz', '2006-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS131122347383', 'Nathan Mitchell', 1, '+86 166-2900-5615', 2, '199769217685212832', 'No.50 building, 821 Jingtian East 1st St, Futian District, Shenzhen, China', '1994-05-07', 0, 0, 'nmitchell', '2012-09-10', 'mnathan2006', '2004-05-09'); +INSERT INTO "public"."userinfo" VALUES ('TS720702321177', 'Paul Russell', 0, '+86 769-372-0814', 3, '004007765951038955', '中国东莞东泰五街657号38栋', '1986-11-04', 0, 0, 'paurussell', '2009-04-19', 'russell53', '2010-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS534384402947', '橋本拓哉', 0, '+44 7370 908032', 4, '315197817174507028', 'No.18 Main building, 181 Redfern St, Liverpool, L20 8JB, United Kingdom', '1990-11-05', 0, 0, 'takuhashimoto609', '2013-02-08', 'hashimototakuya', '2000-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS042530235237', 'Rose Lewis', 1, '+86 760-397-9409', 3, '516275233341550980', '13F, 824 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1994-04-24', 0, 0, 'roselewis', '2015-11-13', 'roslewis', '2002-01-29'); +INSERT INTO "public"."userinfo" VALUES ('TS046500852540', '李秀英', 1, '+86 21-2075-3532', 0, '065595272640756179', 'No.28 building, 728 Binchuan Rd, Minhang District, Shanghai, China', '1995-03-23', 0, 0, 'li94', '2001-11-12', 'xiuyili', '2018-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS661160612665', '小野海斗', 0, '+1 614-039-6797', 2, '636663282450482750', '785 Wicklow Road Suite 19, Columbus, GA 43204, United States', '1988-07-06', 0, 0, 'kon99', '2021-07-25', 'okaito', '2016-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS524011865233', '野口大輔', 0, '+1 718-285-3385', 1, '648587813657830877', '856 Bergen St Apartment 40, Brooklyn, NY 11217, United States', '1990-06-17', 0, 0, 'dno', '2012-06-08', 'noguchidaisuke', '2011-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS478163546249', '溫富城', 0, '+1 212-249-6727', 2, '025692338326890473', '164 Canal Street Apt 28, New York, NY 10013, United States', '1991-03-12', 0, 0, 'fushing6', '2019-07-11', 'wfushi4', '2014-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS584410392840', '杜嘉伦', 0, '+86 157-2405-3759', 2, '665734759336185210', '中国中山紫马岭商圈中山五路6号1栋', '1996-11-20', 0, 0, 'dujia1', '2017-06-14', 'du1101', '2005-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS154635313112', '野村玲奈', 1, '+86 10-245-1060', 3, '815151644510635358', '中国北京市西城区西長安街682号19室', '1989-02-13', 0, 0, 'nomura2004', '2008-05-13', 'nomura530', '2010-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS709672449146', '毛家明', 0, '+1 212-593-8604', 4, '742363876816171955', '532 West Houston Street Suite 5, New York, NY 10014, United States', '1986-02-26', 0, 0, 'mo1986', '2003-01-06', 'kamingm78', '2013-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS985212720098', '周岚', 0, '+86 131-1025-0392', 3, '557437171200034598', '34F, 11 Dong Zhi Men, Dongcheng District, Beijing, China', '1996-06-06', 0, 0, 'laz', '2009-09-29', 'lzhou8', '2010-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS263256666728', '安藤翼', 1, '+1 213-913-3558', 2, '402820716912205723', '133 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1994-05-17', 0, 0, 'tan', '2007-08-18', 'tsubasaand', '2018-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS820776599597', '元家強', 0, '+81 70-9099-3254', 1, '256004337902055748', '日本なごやし瑞穂区河岸町四丁目20番19号14号室', '1993-05-29', 0, 0, 'ykk1225', '2002-10-31', 'yuenkk213', '2002-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS732384915221', '麥慧珊', 0, '+1 614-685-4850', 1, '896205594793307118', '28 Wicklow Road Apartment 8, Columbus, GA 43204, United States', '1985-07-13', 0, 0, 'maws2', '2000-04-30', 'mwaisan', '2018-07-09'); +INSERT INTO "public"."userinfo" VALUES ('TS903332088646', '陆致远', 1, '+1 213-768-6637', 1, '122415635265682394', '760 Sky Way Apt 27, Los Angeles, CA 90043, United States', '1986-01-10', 0, 0, 'lu2', '2016-01-30', 'luzhiyuan9', '2020-08-05'); +INSERT INTO "public"."userinfo" VALUES ('TS662691415605', '石井大輔', 1, '+81 90-7013-3732', 1, '083924249556968411', 'Rm. 33, 5-2-3 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1991-01-22', 0, 0, 'ishiidaisuke', '2006-08-29', 'id79', '2004-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS926930215625', '石田海斗', 0, '+81 66-269-8511', 2, '781979422016560591', '日本おおさかし西成区出城一丁目1番17号34階', '1996-09-11', 0, 0, 'kaitishi', '2003-03-21', 'ishikaito1023', '2021-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS180863595863', '龚宇宁', 1, '+81 66-341-9946', 0, '114378994086950934', '35F, 1-1-19 Deshiro, Nishinari Ward, Osaka, Japan', '1992-04-19', 0, 0, 'yunigong', '2015-12-05', 'gyun', '2019-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS580402991482', 'Kyle Stewart', 1, '+86 144-5382-5458', 3, '227825756030188441', 'No.29 building, No.250, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-05-06', 0, 0, 'stewartky3', '2017-09-11', 'skyl', '2014-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS182997149393', '朱國明', 0, '+1 718-493-4467', 1, '449255759701334795', '786 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1998-02-17', 0, 0, 'kmch9', '2013-06-25', 'kmchu', '2013-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS036476441673', '車慧珊', 0, '+1 212-983-6325', 1, '186340471598311301', '644 West Houston Street Apt 34, New York, NY 10014, United States', '1987-08-30', 0, 0, 'chewaisan', '2003-09-18', 'wsch', '2007-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS908186757557', 'Christina Grant', 1, '+81 70-0338-0740', 0, '876426429438723920', '日本なごやし北区楠味鋺三丁目80番11号3階', '1995-01-09', 0, 0, 'cg70', '2020-11-07', 'cgrant', '2009-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS267597572854', 'Michael Cruz', 0, '+44 7061 569999', 3, '031259836328379805', 'Block 44, 591 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1993-09-11', 0, 0, 'cruzmichael3', '2007-01-28', 'michaelcruz', '2015-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS880489857905', '董震南', 1, '+1 838-417-4255', 3, '427799299900614009', '803 Central Avenue Apt 3, Albany, NY 12206, United States', '1996-02-05', 0, 0, 'dongzhennan', '2006-04-12', 'dozhennan', '2014-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS291461509558', '张秀英', 0, '+81 90-9110-9045', 0, '968863802651758607', '日本東京千代田区丸の内一丁目6番13号44号室', '1990-05-06', 0, 0, 'xizhang14', '2019-06-20', 'xzhang', '2016-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS456409609188', '太田大和', 1, '+81 11-148-2153', 3, '664833205295596507', '日本札幌豊平区豊平三条十三丁目3番16号22階', '1994-05-25', 0, 0, 'yamatota', '2013-07-26', 'yamaota', '2006-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS750206589095', '曹嘉伦', 1, '+86 769-108-9250', 1, '055086206773768257', '中国东莞珊瑚路590号30室', '1992-06-25', 0, 0, 'cajialun504', '2017-02-25', 'jca', '2015-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS112900127227', '白天樂', 1, '+86 175-7736-8100', 1, '853516726251127037', '中国深圳龙岗区布吉镇西环路572号华润大厦44室', '1987-02-13', 0, 0, 'tinlokpak', '2012-02-26', 'paktinlok', '2001-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS973278161301', '森田蓮', 1, '+1 614-406-8122', 0, '698886834378324880', '517 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1985-08-11', 0, 0, 'renmorita', '2021-09-01', 'rmorita717', '2018-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS866754026540', '姚慧琳', 0, '+44 5267 431919', 2, '264907592065195037', 'Block 18, 459 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1996-05-04', 0, 0, 'yeowwl', '2018-02-13', 'wailamyeow', '2005-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS273515028738', '山口詩乃', 0, '+86 755-1982-1336', 3, '348464444205509026', '中国深圳罗湖区蔡屋围深南东路672号48号楼', '1998-12-02', 0, 0, 'yamaguchi525', '2020-09-21', 'yamshino1', '2014-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS483171336069', 'Adam Gonzales', 1, '+86 755-2972-0182', 3, '115479569670083662', 'No.17 building, 248 Jingtian East 1st St, Futian District, Shenzhen, China', '1990-10-27', 0, 0, 'gadam', '2009-08-17', 'gonzalesada1963', '2013-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS189123096782', 'Ashley Moore', 0, '+1 213-529-3664', 2, '925403393990785191', '715 Figueroa Street Apartment 26, Los Angeles, CA 90037, United States', '1998-04-03', 0, 0, 'ashlmoore207', '2010-05-03', 'moorea', '2000-12-12'); +INSERT INTO "public"."userinfo" VALUES ('TS702292898716', 'Roger Campbell', 0, '+81 11-524-6579', 3, '628738984508733399', '日本札幌清田区真栄四条五丁目19番9号2号室', '1995-01-09', 0, 0, 'cro', '2000-04-22', 'rogerc1', '2019-10-27'); +INSERT INTO "public"."userinfo" VALUES ('TS362882631228', '工藤聖子', 1, '+86 28-216-1676', 3, '234383482055595092', '29F, No.149, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1995-08-26', 0, 0, 'kudoseik', '2017-02-10', 'seikokud', '2013-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS423292219614', '梅家文', 0, '+86 184-7019-8821', 4, '232481833516299747', '44F, 428 Binchuan Rd, Minhang District, Shanghai, China', '1985-03-28', 0, 0, 'kmm105', '2016-01-21', 'kaman3', '2012-07-29'); +INSERT INTO "public"."userinfo" VALUES ('TS459151249299', '陶安娜', 1, '+86 755-864-4066', 1, '884958013589522338', '中国深圳龙岗区学园一巷909号华润大厦9室', '1997-02-24', 0, 0, 'onnatao', '2000-01-24', 'taoon', '2018-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS276613040502', 'Martin Dixon', 1, '+86 153-0536-4474', 4, '725405687077639116', '中国深圳罗湖区田贝一路212号华润大厦40室', '1989-12-10', 0, 0, 'dixon731', '2012-07-26', 'dixonm', '2001-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS963027844550', 'April Mendoza', 1, '+86 165-5166-8500', 3, '807105022565316865', 'No.27 building, 770 Sanlitun Road, Chaoyang District, Beijing, China', '1986-01-12', 0, 0, 'mendapr9', '2017-03-21', 'mapril', '2004-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS661789270665', 'April Phillips', 0, '+81 70-3381-9778', 0, '939044131167722895', 'Rm. 25, 20 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1993-02-15', 0, 0, 'aprilphillips6', '2016-08-13', 'phillips10', '2008-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS483532776781', '萬世榮', 1, '+86 755-650-2527', 4, '462056510107514717', '中国深圳龙岗区布吉镇西环路52号28室', '1992-12-30', 0, 0, 'msw', '2016-11-04', 'saiwingm1115', '2012-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS288975400819', '孟安琪', 0, '+86 769-297-6923', 3, '366215463051021388', '中国东莞坑美十五巷765号华润大厦18室', '1988-10-14', 0, 0, 'anqimeng', '2002-10-08', 'anqme', '2005-08-19'); +INSERT INTO "public"."userinfo" VALUES ('TS325555539021', 'Roy Gutierrez', 1, '+81 90-0582-8452', 3, '006615951628372371', 'Rm. 15, 5-2-2 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1994-02-10', 0, 0, 'roygut', '2000-05-16', 'roygut', '2003-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS037028060421', '岡本陽太', 0, '+44 (151) 461 4766', 2, '420895378010268746', 'No.33 Main building, 58 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1987-03-24', 0, 0, 'okamoyot', '2004-07-26', 'yota5', '2013-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS169564994733', 'Clarence Griffin', 1, '+81 70-4494-5414', 4, '244905700397516989', '日本なごやし瑞穂区河岸町四丁目20番12号50号室', '1985-10-30', 0, 0, 'clarence1964', '2019-05-15', 'clarence62', '2015-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS632099245197', 'Pamela Simmons', 1, '+81 3-3243-9482', 2, '227107177943227281', 'Rm. 48, 5-2-18 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1997-04-06', 0, 0, 'simp58', '2018-04-01', 'simmons69', '2005-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS221836636875', 'Clara Brooks', 1, '+86 141-1363-8288', 1, '841995110675817213', 'Room 3, 333 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1992-06-26', 0, 0, 'clarab4', '2015-11-06', 'cbroo', '2012-12-22'); +INSERT INTO "public"."userinfo" VALUES ('TS971572996005', '薛睿', 1, '+81 11-667-8961', 1, '937393546204696544', '日本札幌清田区真栄四条五丁目19番4号44階', '1990-01-21', 0, 0, 'xurui', '2005-05-26', 'rui10', '2003-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS312885111439', '鄭秀文', 1, '+81 80-4459-9606', 0, '147404862902077302', '14F, 1-7-14 Saidaiji Akodacho, Nara, Japan', '1986-04-29', 0, 0, 'sauman809', '2010-02-25', 'saumancheng16', '2013-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS180311064067', '陆致远', 1, '+81 3-6144-8153', 1, '179607654434305423', '21-kai, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1995-07-12', 0, 0, 'lzhiy80', '2005-12-08', 'zhiyuanlu', '2000-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS409352063465', '汪秀英', 1, '+81 66-485-7041', 2, '681102725665518763', 'Rm. 35, 4-9-18 Kamihigashi, Hirano Ward, Osaka, Japan', '1997-02-18', 0, 0, 'wxiuying9', '2005-06-01', 'xiuying1973', '2004-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS406223955965', '戴致远', 1, '+86 10-332-5565', 1, '264084359760046766', '中国北京市东城区东单王府井东街445号42栋', '1998-11-12', 0, 0, 'zhiyuandai', '2009-02-14', 'zhiydai8', '2004-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS545963324371', '汤宇宁', 1, '+81 90-5895-1701', 2, '282140483003357687', '日本おおさかし東住吉区東田辺三丁目27番15号39階', '1996-01-22', 0, 0, 'yuning4', '2002-01-18', 'tangyuning', '2006-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS632340921786', '孫安琪', 1, '+81 11-842-7439', 0, '236537933903486803', 'Rm. 14, 5-2-11 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1994-07-12', 0, 0, 'hsuanon10', '2015-03-25', 'hsuanok1999', '2009-07-15'); +INSERT INTO "public"."userinfo" VALUES ('TS172717658519', '阮志明', 0, '+44 5243 410596', 0, '324747413644164984', 'Unit 49, Oxford Eco Centre, 82 Mosley St, Manchester, M2 3AQ, United Kingdom', '1997-04-04', 0, 0, 'yuencm7', '2012-08-25', 'yuenchiming10', '2011-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS068953637554', '邓安琪', 0, '+86 755-557-9538', 4, '608087399045188686', '中国深圳罗湖区清水河一路251号48号楼', '1997-04-04', 0, 0, 'dena1983', '2003-10-12', 'anqi1', '2002-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS436232918412', '野村拓哉', 1, '+1 330-496-1938', 3, '191655749036287459', '533 Collier Road Suite 22, Akron, OH 44320, United States', '1995-08-18', 0, 0, 'nomuratak', '2002-04-28', 'takuya1', '2011-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS159452779846', '山本絢斗', 0, '+86 199-4543-6699', 1, '825033141273531410', 'Room 16, CR Building, 543 Lefeng 6th Rd, Zhongshan, China', '1999-02-11', 0, 0, 'ayatoyamamoto', '2013-08-07', 'yayato72', '2013-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS216894262515', 'Theresa Wilson', 1, '+44 (121) 154 1484', 2, '228998024482487582', 'Unit 37, Oxford Eco Centre, 223 Lower Temple Street, Birmingham, B2 4JD, United Kingdom', '1997-11-15', 0, 0, 'wt615', '2013-09-21', 'therwilso', '2005-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS539178005633', 'Rebecca Hunter', 0, '+81 3-9512-2662', 2, '969361769016854583', '日本東京千代田区丸の内一丁目6番14号15号室', '1993-05-20', 0, 0, 'hunterrebecca1948', '2020-06-29', 'hunterrebe2010', '2016-02-11'); +INSERT INTO "public"."userinfo" VALUES ('TS447777909182', '加藤蒼士', 0, '+86 139-0579-3282', 0, '623002196012529413', 'Room 15, CR Building, 195 Shennan Ave, Futian District, Shenzhen, China', '1989-09-24', 0, 0, 'aoshik', '2021-05-01', 'kao6', '2009-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS421212152566', '松本大地', 0, '+81 66-608-7243', 1, '405999590545685605', '25-kai, 1-7-15 Omido, Higashiosaka, Osaka, Japan', '1991-12-11', 0, 0, 'matsumotod', '2016-08-16', 'mda', '2007-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS336680590411', '郑璐', 1, '+81 90-3017-9325', 3, '588509730491563696', '12-kai, 3-27-3 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1986-11-26', 0, 0, 'luzheng9', '2021-06-09', 'luzheng3', '2018-07-31'); +INSERT INTO "public"."userinfo" VALUES ('TS971326035828', '田中光莉', 1, '+81 70-4445-4955', 4, '762146436923864131', '47-kai, 12 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1989-07-25', 0, 0, 'hikat', '2006-02-21', 'tahik', '2005-12-13'); +INSERT INTO "public"."userinfo" VALUES ('TS274992389175', '薛力申', 0, '+1 212-544-7214', 3, '177055273289971795', '321 West Houston Street Suite 33, New York, NY 10014, United States', '1993-04-29', 0, 0, 'sls', '2006-07-20', 'sitliksun', '2012-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS832248538545', '餘天樂', 0, '+81 11-454-7138', 2, '696264869806322975', '9-kai, 5-2-12 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-06-12', 0, 0, 'tinlokyu1956', '2009-01-10', 'tinlokyue115', '2002-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS229579375129', '宮本蒼士', 0, '+86 10-079-8610', 1, '296145410255990831', '中国北京市东城区东单王府井东街196号30楼', '1985-08-11', 0, 0, 'ma10', '2010-04-08', 'miyamotoao', '2013-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS254230559208', '吉田聖子', 0, '+1 614-700-1128', 0, '449874960432650257', '774 Diplomacy Drive Suite 9, Columbus, GA 43228, United States', '1986-04-02', 0, 0, 'seikyosh', '2004-03-22', 'yoshidas', '2014-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS676515293558', '吴安琪', 1, '+81 52-814-7375', 3, '892397172565414450', '日本なごやし北区楠味鋺三丁目80番20号9号室', '1993-05-16', 0, 0, 'awu824', '2021-07-18', 'anqiwu2', '2004-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS506975387940', '莫安娜', 1, '+86 156-0535-6456', 3, '696832350570064636', '35F, 253 Lefeng 6th Rd, Zhongshan, China', '1986-10-10', 0, 0, 'mokon', '2017-04-14', 'moon02', '2013-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS580928447802', '狄慧琳', 0, '+86 769-9604-5759', 2, '124446427242956746', 'Room 15, CR Building, 865 Dongtai 5th St, Dongguan, China', '1992-08-20', 0, 0, 'ti6', '2003-07-29', 'ti10', '2004-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS038463708098', '橋本光', 1, '+44 5513 490411', 3, '244348971334901893', 'Unit 3, Oxford Eco Centre, 712 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1997-12-03', 0, 0, 'hah', '2004-01-18', 'hikaru7', '2018-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS607783884209', '袁慧嫻', 1, '+81 70-7097-4885', 0, '895959565281761213', '日本札幌豊平区豊平三条十三丁目3番3号41階', '1993-10-06', 0, 0, 'yuen212', '2010-07-26', 'yuen2018', '2008-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS757587709253', '陳慧敏', 0, '+86 176-3289-9912', 1, '982641586643083803', 'Room 35, CR Building, 522 East Wangfujing Street, Dongcheng District , Beijing, China', '1996-10-30', 0, 0, 'chanwm', '2019-01-06', 'chanwm89', '2012-04-10'); +INSERT INTO "public"."userinfo" VALUES ('TS134456988668', '郭力申', 0, '+44 (20) 6257 6699', 2, '754954993166968488', 'No.36 Main building, 583 Hanover Street, London, W1S 1YD, United Kingdom', '1999-02-14', 0, 0, 'kls', '2020-07-23', 'kwok506', '2012-01-03'); +INSERT INTO "public"."userinfo" VALUES ('TS538551267879', '尹晓明', 1, '+44 (1223) 43 6273', 1, '487991795310393177', 'Unit 22, Oxford Eco Centre, 354 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1988-03-30', 0, 0, 'yinxiao', '2007-02-26', 'yin709', '2005-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS204558406300', '马睿', 1, '+1 213-031-3660', 3, '501695915026576156', '495 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1994-03-29', 0, 0, 'ruima', '2013-10-17', 'rm8', '2015-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS898620665110', 'Jacqueline Johnson', 0, '+81 90-1291-0727', 2, '202320290288051968', '4F, 1-6-1, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1997-03-29', 0, 0, 'johjacqu', '2011-04-26', 'jacquelinej2', '2020-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS763441926509', '郝晓明', 0, '+81 74-138-8546', 2, '202614329075246907', 'Rm. 5, 14 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-11-16', 0, 0, 'xiaomhao10', '2013-02-03', 'xha', '2001-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS903519877581', 'Randall Lee', 1, '+1 213-596-8557', 4, '538613193098331445', '54 Figueroa Street Suite 48, Los Angeles, CA 90037, United States', '1986-02-01', 0, 0, 'lee87', '2003-09-28', 'lrandall', '2021-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS482857883848', '田中絢斗', 1, '+81 74-015-7089', 3, '065915412161913344', '20F, 3-9-7 Gakuenminami, Nara, Japan', '1987-09-08', 0, 0, 'tanaka14', '2020-08-26', 'tanakayato4', '2017-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS786840578105', 'Lee Mitchell', 1, '+86 21-580-4208', 0, '148955021463762009', '37F, 194 Ganlan Rd, Pudong, Shanghai, China', '1991-10-04', 0, 0, 'lemitchell4', '2011-03-21', 'lm74', '2001-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS573188847541', 'Marie Romero', 1, '+86 755-7370-6534', 4, '539567266336329927', 'No.47 building, 928 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1987-05-09', 0, 0, 'romero73', '2003-02-11', 'marieromer3', '2022-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS844457355563', 'Cheryl Howard', 1, '+86 198-5521-2399', 1, '223952284198933917', '45F, 935 028 County Rd, Yanqing District, Beijing, China', '1994-06-02', 0, 0, 'cherh', '2007-05-25', 'howard5', '2010-06-06'); +INSERT INTO "public"."userinfo" VALUES ('TS016075952883', '原田瑛太', 0, '+81 80-8348-3917', 4, '603843433886512750', '日本おおさかし西成区出城一丁目1番10号49号室', '1993-08-05', 0, 0, 'haradaei', '2004-02-03', 'haraei', '2019-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS050911940294', '楊詩君', 0, '+1 312-800-5340', 2, '903986143208414226', '424 Pedway 3rd Floor, Chicago, IL 60601, United States', '1985-10-20', 0, 0, 'yeungsk19', '2017-05-17', 'yeung93', '2014-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS387810012992', '戴詩涵', 1, '+1 838-564-6765', 1, '510253458332442658', '55 Central Avenue Apt 17, Albany, NY 12206, United States', '1998-07-31', 0, 0, 'dshihan', '2021-03-08', 'shid', '2021-08-27'); +INSERT INTO "public"."userinfo" VALUES ('TS383681786912', '中森桜', 1, '+44 7827 975274', 4, '699142954422326598', 'Flat 14, 244 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1990-02-04', 0, 0, 'sakurnaka', '2014-07-11', 'nakamori613', '2019-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS412021775250', '山崎聖子', 1, '+81 11-658-8441', 2, '594544528682660066', '43-kai, 13-3-18 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1996-01-22', 0, 0, 'syamazaki', '2013-01-12', 'yase3', '2009-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS751849206712', '莫安琪', 0, '+1 718-776-8641', 4, '850332812918431772', '621 Nostrand Ave Suite 20, Brooklyn, NY 11216, United States', '1994-06-11', 0, 0, 'mo1993', '2004-09-19', 'anqimo', '2001-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS117801770240', 'Russell Nguyen', 0, '+86 21-422-4653', 4, '115869647920507182', 'No.36 building, 422 Jianxiang Rd, Pudong, Shanghai, China', '1993-08-12', 0, 0, 'nguyen2', '2008-11-09', 'nguyenru', '2019-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS093398429817', '溫慧嫻', 1, '+44 5173 895718', 4, '455616846468946768', 'Flat 45, 932 Sackville St, Manchester, M1 3BB, United Kingdom', '1993-02-27', 0, 0, 'wwaiha10', '2003-12-06', 'whwan1951', '2020-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS817425544787', '野村蒼士', 0, '+44 (151) 677 7044', 1, '626506041870956666', 'No.50 Main building, 23 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1997-09-06', 0, 0, 'nomura1007', '2019-09-03', 'naoshi8', '2015-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS256979956472', '坂本彩乃', 0, '+86 10-919-8980', 0, '548213600037783405', 'Room 39, CR Building, 693 East Wangfujing Street, Dongcheng District , Beijing, China', '1993-02-14', 0, 0, 'sa2', '2012-12-25', 'asa', '2016-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS439924902337', '傅慧儀', 1, '+1 614-139-0934', 1, '673389259761954780', '922 Tremont Road Apartment 9, Columbus, GA 43212, United States', '1992-03-10', 0, 0, 'fuwaiyee', '2004-01-08', 'fwaiyee', '2017-07-17'); +INSERT INTO "public"."userinfo" VALUES ('TS237869067651', '袁家輝', 1, '+44 7175 887253', 4, '298676832293973793', 'Flat 50, 268 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1985-11-24', 0, 0, 'kfyu', '2016-10-07', 'yuen1015', '2004-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS350945360034', '孫慧儀', 0, '+44 (161) 760 6839', 4, '124412661444911824', 'Unit 1, Oxford Eco Centre, 429 Portland St, Manchester, M1 3LA, United Kingdom', '1986-02-23', 0, 0, 'hswaiy2009', '2008-10-08', 'hwai', '2010-01-18'); +INSERT INTO "public"."userinfo" VALUES ('TS769100084898', 'Juanita Garza', 0, '+1 838-666-9443', 2, '693685587361547365', '781 Central Avenue Suite 17, Albany, NY 12206, United States', '1996-02-07', 0, 0, 'garzjuanita', '2003-07-24', 'juanitagarza', '2008-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS179208507476', '廖致远', 1, '+86 10-3282-5585', 3, '496274450965944637', '中国北京市延庆区028县道268号华润大厦27室', '1988-04-30', 0, 0, 'zhiyuanlia', '2021-07-28', 'liz65', '2010-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS279802880235', '蔣杰倫', 1, '+81 80-1238-5846', 2, '465121634566913706', '日本東京千代田区丸の内一丁目6番15号22階', '1985-12-08', 0, 0, 'chiangcl90', '2019-03-05', 'chiangcl', '2004-02-26'); +INSERT INTO "public"."userinfo" VALUES ('TS107972220949', '阎杰宏', 0, '+1 212-714-1242', 3, '356383746429502771', '97 Bank Street Suite 7, New York, NY 10014, United States', '1988-05-01', 0, 0, 'jiehoy', '2000-04-15', 'yanjiehong', '2007-01-28'); +INSERT INTO "public"."userinfo" VALUES ('TS683111489533', '村上瑛太', 1, '+81 70-4296-7064', 1, '453755813792309910', '日本札幌豊平区豊平三条十三丁目3番4号29号室', '1997-09-27', 0, 0, 'muraeit', '2013-03-13', 'murakami324', '2014-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS007523666520', '毛宇宁', 1, '+86 21-7274-3519', 4, '397132467801158850', '中国上海市闵行区宾川路963号35号楼', '1994-04-14', 0, 0, 'maoyuning', '2018-01-18', 'yuning5', '2019-04-13'); +INSERT INTO "public"."userinfo" VALUES ('TS168267982624', '菅原優奈', 0, '+81 80-8244-0392', 3, '008554722590864292', 'Rm. 15, 19 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1992-06-13', 0, 0, 'yunasug', '2002-03-28', 'yuna8', '2003-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS332688114121', '池田光莉', 1, '+44 5846 076620', 1, '651358423134469899', 'Flat 39, 693 Portland St, Manchester, M1 3LA, United Kingdom', '1990-10-06', 0, 0, 'hikarii80', '2018-04-25', 'ikhikari5', '2007-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS567105837702', '宣國權', 1, '+44 (121) 694 8140', 3, '123203640732525575', 'No.49 Main building, 108 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1995-03-10', 0, 0, 'kkhsuan', '2010-07-14', 'hsuankk', '2008-05-23'); +INSERT INTO "public"."userinfo" VALUES ('TS195883477556', '董秀英', 1, '+81 11-773-7690', 0, '365088972759406932', '4-kai, 5-4-11 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1996-10-31', 0, 0, 'dong115', '2021-01-29', 'dongx2', '2010-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS450247887090', 'Aaron Owens', 0, '+86 28-2210-9199', 1, '767585037030645143', 'No.13 building, No.957, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1991-09-28', 0, 0, 'aaronowens9', '2014-03-14', 'oaaron', '2016-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS973392161871', 'Jesse Dunn', 1, '+86 21-0324-4812', 2, '120007082522739038', '中国上海市浦东新区橄榄路529号42楼', '1990-07-16', 0, 0, 'djesse', '2006-11-14', 'jesse522', '2000-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS226994342550', 'Carol Wells', 0, '+1 614-940-7799', 3, '980438779361091071', '555 East Alley Suite 22, Columbus, GA 43201, United States', '1987-05-02', 0, 0, 'wecarol', '2009-09-19', 'wcarol', '2004-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS446105775779', '周安琪', 0, '+81 70-1119-8857', 1, '342424194666275741', '日本ならし学園南三丁目9番10号48階', '1996-07-13', 0, 0, 'anqi825', '2020-07-10', 'zan821', '2004-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS941529419997', '吉田絢斗', 1, '+44 5034 179835', 3, '885007591867011562', 'Unit 13, Oxford Eco Centre, 10 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1991-12-23', 0, 0, 'yoshidaayato', '2012-12-14', 'ayato3', '2006-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS849382034995', '佐野詩乃', 1, '+86 156-9087-3817', 1, '229586330123168743', '中国东莞坑美十五巷599号7室', '1994-04-08', 0, 0, 'shino9', '2011-10-13', 'shino814', '2004-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS953053228715', '顾詩涵', 1, '+81 74-543-0595', 2, '837816492476927070', 'Rm. 5, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1988-08-04', 0, 0, 'shg', '2013-10-19', 'gus', '2013-06-09'); +INSERT INTO "public"."userinfo" VALUES ('TS698177990011', 'Carrie Johnson', 1, '+81 52-199-2462', 1, '228875436678755581', '42F, 13 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1986-04-11', 0, 0, 'carrijohnson8', '2020-02-21', 'jcarr', '2017-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS129189448281', '中島紗良', 0, '+86 10-9259-6780', 0, '580386037219971268', '中国北京市房山区岳琉路54号华润大厦7室', '1997-02-19', 0, 0, 'nakajimas7', '2001-06-28', 'sarnak', '2006-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS775942137317', '陶安娜', 0, '+81 74-635-6766', 0, '411922538028547377', '日本ならし西大寺赤田町一丁目7番9号41階', '1996-04-19', 0, 0, 'taoon8', '2020-08-26', 'onnata', '2015-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS393414382307', '山田美羽', 1, '+44 (116) 257 0357', 1, '271845929327204080', 'Block 28, 34 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1993-10-18', 0, 0, 'miuy', '2001-10-15', 'miuyamada', '2002-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS557772020970', 'Thelma Warren', 1, '+81 11-888-7836', 2, '239129258492206620', '日本札幌厚別区上野幌一条二丁目1番9号2号室', '1989-01-01', 0, 0, 'warren1006', '2001-10-15', 'thelma47', '2018-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS456521443894', '田中湊', 1, '+86 133-9767-4766', 2, '896201993061631538', 'Room 50, 43 Xiaoping E Rd, Baiyun , Guangzhou, China', '1999-01-26', 0, 0, 'tm2', '2012-04-10', 'minato615', '2012-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS453965966673', '陈詩涵', 0, '+1 212-421-3800', 1, '497731362129478435', '701 West Houston Street Suite 35, New York, NY 10014, United States', '1986-04-02', 0, 0, 'chenshihan114', '2018-02-08', 'shihan723', '2014-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS920791191306', '陈安琪', 0, '+1 330-068-4454', 1, '430261632189953054', '788 Fern Street Apt 15, Akron, OH 44307, United States', '1997-11-14', 0, 0, 'chenanqi', '2008-11-16', 'achen', '2010-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS942441119520', '萬頴思', 0, '+81 11-205-2499', 1, '736490367817054205', '日本札幌清田区真栄四条五丁目19番2号3号室', '1991-06-23', 0, 0, 'mengws', '2008-07-06', 'mengws', '2012-09-18'); +INSERT INTO "public"."userinfo" VALUES ('TS610257812234', 'Josephine Rodriguez', 1, '+86 172-7230-4838', 1, '711814481332576573', '中国成都市锦江区红星路三段967号19号楼', '1992-09-25', 0, 0, 'rodriguezjosep', '2018-04-05', 'josephinerod', '2017-08-03'); +INSERT INTO "public"."userinfo" VALUES ('TS029728863990', 'Lois Young', 0, '+81 66-200-6270', 3, '981214157862595246', 'Rm. 47, 1-1-10 Deshiro, Nishinari Ward, Osaka, Japan', '1987-09-03', 0, 0, 'loisyoun', '2001-05-18', 'lois4', '2018-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS229348259952', '中野明菜', 0, '+81 90-8335-1572', 4, '439084919006180495', 'Rm. 10, 5 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1988-12-19', 0, 0, 'akinaka', '2019-08-12', 'akina10', '2005-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS052343438124', 'Thelma Butler', 1, '+86 178-6414-3533', 3, '646300929767992277', 'Room 32, 843 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1996-08-11', 0, 0, 'thelmabutler', '2014-11-30', 'bthelma', '2006-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS208099757652', 'Teresa White', 1, '+86 156-4491-3570', 2, '943568205651165033', 'No.41 building, 378 Jiangnan West Road, Haizhu District, Guangzhou, China', '1990-03-05', 0, 0, 'white5', '2019-08-14', 'white85', '2021-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS516857267731', '范嘉伦', 1, '+86 20-706-1382', 1, '074001817191329062', 'Room 15, CR Building, 24 Tianhe Road, Tianhe District, Guangzhou, China', '1988-12-28', 0, 0, 'fan1', '2001-04-17', 'fjia', '2009-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS605864420609', '周家輝', 0, '+81 70-5705-7381', 1, '920242584525846751', '日本おおさかし東住吉区東田辺三丁目27番1号27号室', '1991-03-22', 0, 0, 'chow1962', '2000-02-12', 'kafaicho', '2005-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS808058046095', '郑岚', 0, '+86 10-656-6268', 4, '222118642344389986', '中国北京市朝阳区三里屯路139号31楼', '1988-03-28', 0, 0, 'lanzhen88', '2020-09-11', 'lan5', '2001-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS191151237120', 'Cindy Collins', 0, '+81 66-662-1255', 3, '823628647200010265', '日本おおさかし西成区出城一丁目1番7号27階', '1986-01-10', 0, 0, 'collinscin5', '2008-11-28', 'cindycol', '2022-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS641212948458', '邵杰宏', 0, '+44 (1223) 58 7633', 3, '749661390897406663', 'Unit 45, Oxford Eco Centre, 721 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1996-01-05', 0, 0, 'shao9', '2006-03-28', 'shjieho69', '2009-05-14'); +INSERT INTO "public"."userinfo" VALUES ('TS652992329507', '卢云熙', 1, '+86 195-2677-2565', 4, '979132650962437284', 'No.6 building, 3 Sanlitun Road, Chaoyang District, Beijing, China', '1991-12-08', 0, 0, 'yl06', '2022-02-14', 'yunxi07', '2016-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS757182500398', 'Luis Carter', 0, '+81 11-979-7469', 1, '423834120778693539', '39F, 2-1-14 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1993-03-14', 0, 0, 'carter324', '2001-09-01', 'carterluis81', '2015-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS970349060258', '後藤葵', 0, '+86 143-1013-7727', 2, '189736131740638645', '中国成都市锦江区人民南路四段499号23号楼', '1985-02-20', 0, 0, 'gotaoi85', '2007-08-10', 'aoigoto', '2002-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS835912870863', 'Annie Coleman', 1, '+86 169-0803-2964', 1, '410991034798567280', '中国东莞环区南街二巷457号32室', '1989-01-17', 0, 0, 'ca11', '2004-10-09', 'coleman1982', '2003-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS204927351055', '向明詩', 1, '+44 (161) 559 8999', 0, '866429054116310169', 'No.46 Main building, 211 Portland St, Manchester, M1 3LA, United Kingdom', '1988-01-18', 0, 0, 'mingszeheung', '2001-03-27', 'mingsze84', '2003-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS208286293160', 'Doris Olson', 1, '+86 769-248-2694', 1, '450062527450397363', '中国东莞环区南街二巷196号17室', '1998-01-13', 0, 0, 'olsondor', '2015-07-17', 'olsodor', '2021-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS347272490130', '孙致远', 1, '+44 (161) 343 9084', 1, '961090138806868802', 'Unit 15, Oxford Eco Centre, 370 Sackville St, Manchester, M1 3BB, United Kingdom', '1996-04-18', 0, 0, 'sunz', '2014-12-03', 'zhiyuansun', '2021-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS718026183306', 'Ellen Ramos', 1, '+1 838-187-5944', 0, '210668069078852616', '991 Central Avenue 3rd Floor, Albany, NY 12205, United States', '1987-09-07', 0, 0, 'ellenramos', '2013-11-08', 'ramos4', '2017-06-20'); +INSERT INTO "public"."userinfo" VALUES ('TS427933345751', '汪惠妹', 1, '+86 21-195-9668', 3, '713028922648935012', 'No.40 building, 762 Ganlan Rd, Pudong, Shanghai, China', '1988-01-28', 0, 0, 'whm11', '2001-10-11', 'wonghm', '2019-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS066310925445', 'Helen Snyder', 0, '+86 20-5300-9843', 1, '277841328451510715', '中国广州市海珠区江南西路365号15号楼', '1997-09-17', 0, 0, 'helensnyder85', '2014-02-26', 'helsnyder10', '2013-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS493007235156', '唐朝偉', 1, '+86 145-4907-9860', 1, '177382134135106172', '中国上海市徐汇区虹桥路985号华润大厦20室', '1988-05-11', 0, 0, 'tcw', '2019-11-11', 'chiuwai70', '2017-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS709781682275', '渡部大和', 0, '+81 52-320-7751', 1, '379365799230011931', 'Rm. 28, 3-19-13 Shimizu, Kita Ward, Nagoya, Japan', '1985-11-06', 0, 0, 'watanabeyam201', '2003-08-18', 'yamato02', '2019-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS664553209187', 'Frances Freeman', 1, '+86 769-8687-1910', 2, '103343218110367079', '中国东莞环区南街二巷806号3室', '1986-04-16', 0, 0, 'freeman10', '2015-03-30', 'ffran2004', '2013-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS902499893826', '戴志明', 0, '+86 21-9735-4137', 3, '317513497422296355', '中国上海市浦东新区健祥路318号37栋', '1987-05-05', 0, 0, 'cmdai63', '2021-12-31', 'dai7', '2001-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS229924139236', '呂詩君', 1, '+81 11-489-9240', 1, '400992165639235504', '日本札幌白石区菊水三条五丁目4番14号40階', '1992-03-25', 0, 0, 'sklu10', '2004-09-07', 'szekwanlu5', '2019-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS561929639875', 'Stephanie Soto', 0, '+44 7757 471967', 2, '206321999175822838', 'No.30 Main building, 970 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1989-01-05', 0, 0, 'ssoto59', '2004-06-11', 'sotostephanie', '2005-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS416594174471', '林嘉伦', 1, '+1 838-717-5508', 3, '185036349817878602', '720 Central Avenue Apt 33, Albany, NY 12206, United States', '1991-10-15', 0, 0, 'jialun06', '2005-06-17', 'lin913', '2003-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS514869619828', '杜天榮', 0, '+81 70-1776-9045', 1, '205950441188845794', 'Rm. 17, 6-1-2, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1993-05-01', 0, 0, 'tinwing9', '2016-03-05', 'totw621', '2011-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS040916294112', '戴嘉伦', 0, '+81 70-3828-6807', 1, '028530215013930531', '34F, 4-9-2 Kamihigashi, Hirano Ward, Osaka, Japan', '1989-02-21', 0, 0, 'dajial01', '2008-02-21', 'jialun2017', '2000-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS344202990061', '叶晓明', 0, '+86 145-9872-2055', 2, '860790379058043217', 'Room 27, 925 Shennan Ave, Futian District, Shenzhen, China', '1985-04-17', 0, 0, 'ye69', '2007-12-05', 'ye85', '2020-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS737679440961', '區淑怡', 1, '+81 90-1992-6728', 0, '945883537782207877', 'Rm. 11, 13-3-14 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1997-07-27', 0, 0, 'au10', '2003-04-17', 'asy1957', '2016-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS913919589770', 'Angela Adams', 0, '+81 74-811-6455', 2, '007070413205260739', '日本ならし大和郡山市本庄町一丁目1番11号49階', '1987-05-13', 0, 0, 'adamang', '2002-12-25', 'adamsangela1949', '2006-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS758682509569', '松田紗良', 0, '+86 755-9223-7102', 1, '369430751479306990', '中国深圳罗湖区田贝一路286号38室', '1990-03-03', 0, 0, 'matsus', '2017-04-26', 'matsudasa', '2021-08-12'); +INSERT INTO "public"."userinfo" VALUES ('TS181444047934', '韓惠敏', 0, '+81 11-252-4394', 0, '499140234967623468', '日本札幌豊平区豊平三条十三丁目3番3号29階', '1992-12-23', 0, 0, 'hawm', '2007-04-21', 'wmha', '2010-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS979743331098', '周睿', 0, '+1 213-849-8935', 3, '560810401363576786', '473 S Broadway Apartment 15, Los Angeles, CA 90015, United States', '1987-01-12', 0, 0, 'ruizho', '2003-01-06', 'zhourui7', '2006-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS542524804141', '孙宇宁', 0, '+44 (151) 611 3306', 1, '859734526037621083', 'No.4 Main building, 493 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1998-07-11', 0, 0, 'ysun', '2004-05-19', 'yuning416', '2020-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS226096462545', 'Rita Ellis', 1, '+81 70-9511-5784', 3, '157925542586436389', '日本札幌中央区宮の森四条六丁目1番15号36階', '1985-10-06', 0, 0, 'ritaell8', '2020-07-07', 'erit', '2006-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS017174427105', 'Ricky Payne', 0, '+81 90-2576-5803', 1, '334822061614448962', '日本ならし西大寺赤田町一丁目7番17号31階', '1988-10-16', 0, 0, 'payne8', '2011-10-27', 'ricky96', '2000-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS929483655608', 'Scott Nichols', 0, '+81 11-387-5055', 3, '826983099410640525', '日本札幌白石区菊水三条五丁目4番14号11階', '1986-12-14', 0, 0, 'nicholsscot', '2009-06-01', 'nicholsscott5', '2020-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS772154191495', '伍霆鋒', 0, '+86 755-7938-5789', 4, '878986154346275567', 'Room 10, 794 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1996-10-09', 0, 0, 'tingfung828', '2000-01-14', 'ng4', '2009-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS420307046930', 'Nathan Stewart', 0, '+81 66-981-6768', 1, '743982571261989155', 'Rm. 22, 4-9-19 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-09-15', 0, 0, 'stewart2', '2021-05-27', 'natste906', '2010-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS898901226013', '邓璐', 0, '+44 (1865) 98 8161', 0, '394069529434984052', 'Block 18, 681 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1985-04-06', 0, 0, 'ludeng2', '2006-12-09', 'lu84', '2021-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS506651879041', '山口凛', 0, '+81 74-803-8115', 4, '208104164416594915', '49-kai, 3-9-2 Gakuenminami, Nara, Japan', '1997-05-29', 0, 0, 'yamaguchir', '2006-01-18', 'riyamaguchi', '2021-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS140036786199', 'Richard Shaw', 0, '+81 90-4263-7738', 3, '128203435065035975', '日本東京品川区東五反田五丁目2番8号40号室', '1995-06-18', 0, 0, 'richashaw1102', '2003-04-10', 'shawrichard5', '2016-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS661791681079', 'Tammy Rivera', 0, '+44 5532 264479', 2, '812235429928242791', 'No.45 Main building, 979 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1995-12-16', 0, 0, 'rivera207', '2012-12-04', 'triver', '2019-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS212740875579', '藤原結翔', 1, '+86 769-918-6625', 3, '970967622318373027', '中国东莞坑美十五巷708号7楼', '1994-08-10', 0, 0, 'fyu2001', '2018-01-27', 'fujiwarayuit', '2015-05-30'); +INSERT INTO "public"."userinfo" VALUES ('TS549394616828', '藤田花', 0, '+86 760-4087-4059', 3, '109278546786946709', 'No.24 building, 11 Lefeng 6th Rd, Zhongshan, China', '1995-02-15', 0, 0, 'hanfujit', '2012-12-13', 'fuhan', '2020-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS934005743794', '吕詩涵', 0, '+44 (1223) 91 0081', 4, '496698313657780589', 'Block 45, 255 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1985-03-12', 0, 0, 'lushihan3', '2003-09-19', 'shihanlu', '2014-12-06'); +INSERT INTO "public"."userinfo" VALUES ('TS061264638107', 'Jack Mason', 1, '+86 194-3534-3567', 3, '328229183651868865', '中国上海市浦东新区橄榄路943号48室', '1996-11-23', 0, 0, 'masonjack1230', '2006-01-07', 'masja4', '2013-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS197849305329', '陳裕玲', 0, '+81 66-213-6236', 1, '993398746393344546', '日本おおさかし西成区出城一丁目1番14号42号室', '1997-08-11', 0, 0, 'yulingch5', '2017-12-03', 'chan407', '2018-08-10'); +INSERT INTO "public"."userinfo" VALUES ('TS287070932077', '橋本詩乃', 1, '+86 139-2365-2664', 2, '769952459572410542', '中国深圳罗湖区清水河一路653号49号楼', '1996-03-21', 0, 0, 'shinoh', '2009-04-29', 'hshino710', '2013-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS511838563647', '邵宇宁', 1, '+86 769-220-7457', 0, '439352859157476015', '中国东莞坑美十五巷29号27栋', '1988-01-26', 0, 0, 'ysha51', '2007-04-11', 'yshao', '2015-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS550479431713', 'Christopher Gray', 1, '+81 11-470-0953', 0, '743615864329423076', '日本札幌中央区宮の森四条六丁目1番4号42号室', '1985-03-01', 0, 0, 'graychri1102', '2008-01-24', 'gchristopher1996', '2008-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS154632457322', '苏睿', 1, '+81 90-6893-7978', 4, '160617167709946550', '日本東京中央区銀座三丁目12番5号45階', '1994-06-14', 0, 0, 'suru', '2021-03-23', 'rus04', '2001-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS811504158582', 'Judy Alexander', 1, '+1 614-764-1007', 1, '557167314728445177', '932 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1991-12-20', 0, 0, 'aju8', '2017-12-12', 'alexander00', '2009-11-23'); +INSERT INTO "public"."userinfo" VALUES ('TS375709400873', '夏晓明', 1, '+81 70-9020-5130', 3, '080035612787993148', 'Rm. 40, 10 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1996-03-28', 0, 0, 'xxiaoming311', '2005-12-16', 'xiaxiaoming', '2003-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS916312581186', 'Rose Black', 0, '+81 70-7949-4110', 4, '431199344597422691', '30-kai, 2-1-20 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1998-11-19', 0, 0, 'roseblack7', '2021-03-01', 'black8', '2000-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS836467234919', '井上葵', 0, '+44 7641 548773', 1, '475721234550604123', 'Unit 5, Oxford Eco Centre, 271 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1991-10-01', 0, 0, 'inoue308', '2020-07-28', 'iaoi', '2006-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS248098347089', 'Steven Boyd', 1, '+81 74-054-1748', 2, '761261436787844977', '日本ならし学園南三丁目9番1号25階', '1994-10-25', 0, 0, 'bst', '2020-12-01', 'stevenboyd70', '2005-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS856704262784', '金子紗良', 0, '+81 66-688-9654', 3, '159180737244153333', '日本おおさかし西成区出城一丁目1番19号13号室', '1991-12-17', 0, 0, 'kanekos7', '2014-12-24', 'sakan', '2007-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS632679975168', '翁安琪', 0, '+86 755-046-4980', 4, '883708141570972619', 'No.17 building, 465 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1989-06-16', 0, 0, 'yung2', '2001-02-21', 'yunonkay', '2014-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS821065317355', '邱惠妹', 1, '+44 (1865) 36 3688', 1, '987168452604417446', 'Block 3, 959 Park End St, Oxford, OX1 1JD, United Kingdom', '1992-12-15', 0, 0, 'yauhm', '2007-09-22', 'yauhuimei1964', '2003-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS363656068875', '加藤光莉', 1, '+1 614-090-4309', 2, '647773605423461310', '536 East Cooke Road Apartment 31, Columbus, GA 43214, United States', '1993-10-20', 0, 0, 'katohika', '2012-05-30', 'hikarkat', '2004-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS415816727432', '周思妤', 1, '+86 166-4647-0620', 3, '316897090015858102', 'No.4 building, 959 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1993-08-21', 0, 0, 'chsy78', '2009-01-28', 'sych', '2008-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS936625693869', '野村玲奈', 1, '+81 3-4808-5412', 1, '294702428816262295', '日本東京千代田区丸の内一丁目6番17号22号室', '1992-08-22', 0, 0, 'nrena3', '2009-01-26', 'nomura810', '2007-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS262245514833', 'Joe Anderson', 1, '+81 70-6407-7727', 2, '074028578163589996', '40F, 2-3-14 Yoyogi, Shibuya-ku, Tokyo, Japan', '1992-03-05', 0, 0, 'anderjoe4', '2015-07-17', 'andersonjoe13', '2001-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS062347741078', 'Roger Scott', 1, '+81 70-5896-6239', 2, '549035764755099301', '日本おおさかし西成区出城一丁目1番13号39号室', '1992-07-04', 0, 0, 'scottrog1221', '2008-04-25', 'rscott', '2017-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS863542652011', '溫家明', 1, '+86 28-415-9087', 3, '571179034866715094', '中国成都市成华区双庆路206号华润大厦46室', '1992-09-20', 0, 0, 'wanka730', '2011-04-10', 'kmwan', '2002-06-25'); +INSERT INTO "public"."userinfo" VALUES ('TS025503953707', '野村樹', 1, '+44 (121) 395 7401', 3, '129677791601200592', 'Unit 15, Oxford Eco Centre, 927 New Street, Birmingham, B2 4DB, United Kingdom', '1986-03-14', 0, 0, 'nomurait', '2001-01-19', 'inomura', '2021-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS592347206943', '严嘉伦', 1, '+81 80-8365-9571', 4, '227065083474676805', '日本東京渋谷区代々木二丁目3番7号6階', '1993-10-03', 0, 0, 'yanjia323', '2017-06-28', 'jialun1227', '2002-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS692098704972', 'Lucille Bell', 1, '+1 614-490-4790', 3, '660791360263854354', '435 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1986-10-22', 0, 0, 'belll3', '2007-05-09', 'blucil', '2021-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS910884563353', '孟安琪', 0, '+81 70-9132-1093', 2, '084007938613338709', '日本なごやし守山区瀬古東二丁目171番7号23号室', '1991-10-19', 0, 0, 'meng707', '2004-06-20', 'anqimeng204', '2003-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS211729364145', 'Beverly Snyder', 1, '+86 10-0490-6938', 4, '045197922948534644', '中国北京市西城区复兴门内大街713号24楼', '1998-12-13', 0, 0, 'snyderbev', '2021-05-10', 'beves', '2005-08-02'); +INSERT INTO "public"."userinfo" VALUES ('TS434683818100', '西村光', 0, '+44 7878 566581', 2, '850791716821882808', 'Flat 27, 435 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1987-07-22', 0, 0, 'nishimurah506', '2018-03-02', 'nishimurahikar', '2012-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS261287352148', '陈安琪', 1, '+86 130-1077-6505', 4, '936801577338671600', '中国中山天河区大信商圈大信南路619号13楼', '1990-03-31', 0, 0, 'cheanq', '2010-11-20', 'anqich', '2019-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS247707083580', 'Curtis Daniels', 0, '+81 52-970-3690', 2, '134454851208215752', '日本なごやし瑞穂区河岸町四丁目20番20号50号室', '1991-09-11', 0, 0, 'dancu', '2003-03-28', 'daniec', '2000-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS675967199245', 'Rosa Lewis', 1, '+81 80-3834-9427', 2, '588324525412125724', '18-kai, 3-15-9 Ginza, Chuo-ku, Tokyo, Japan', '1998-07-23', 0, 0, 'rosalewis', '2021-03-05', 'rolewi', '2021-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS783413820089', 'Larry Moore', 1, '+86 28-1079-4118', 1, '668375370581412148', '19F, 461 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1986-04-21', 0, 0, 'larrymoore903', '2015-05-27', 'larrymoore1979', '2010-02-03'); +INSERT INTO "public"."userinfo" VALUES ('TS491938899013', '藤井美緒', 0, '+86 755-7318-3536', 2, '213715540081335975', 'Room 48, 660 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1995-04-19', 0, 0, 'fumio127', '2006-02-14', 'miofu', '2011-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS291617478213', '餘秀文', 0, '+86 755-3404-6562', 4, '657099680685767959', '中国深圳福田区深南大道201号33室', '1986-08-16', 0, 0, 'ysm', '2022-01-20', 'yuesauman', '2016-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS339350427124', '廖志遠', 1, '+44 (161) 834 4000', 0, '012497024832981144', 'Flat 33, 551 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1992-08-05', 0, 0, 'chiyuen1002', '2020-09-13', 'cyliao2', '2010-12-30'); +INSERT INTO "public"."userinfo" VALUES ('TS117683595158', '郭子异', 0, '+81 66-278-7662', 1, '000869240213080270', '日本おおさかし西成区天神ノ森二丁目1番13号3号室', '1985-01-24', 0, 0, 'ziyiguo79', '2002-03-24', 'ziyi7', '2019-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS716214070694', '譚麗欣', 1, '+1 614-225-8606', 3, '013952678155944272', '146 East Alley Apt 50, Columbus, GA 43201, United States', '1998-03-16', 0, 0, 'tamlaiyan626', '2005-03-31', 'tamly419', '2009-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS887269870501', '徐發', 0, '+81 70-3791-5667', 1, '718455774551554493', 'Rm. 44, 6-1-20, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1990-06-03', 0, 0, 'fattsu1985', '2005-08-08', 'fatt', '2009-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS777176285572', '山崎凛', 1, '+86 28-9588-4143', 2, '966898534333556767', '中国成都市锦江区红星路三段352号50室', '1990-10-02', 0, 0, 'rinyam', '2021-05-17', 'yamazakiri', '2001-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS740934510290', 'Janice Brooks', 0, '+1 718-357-8758', 3, '712680767051767244', '245 Flatbush Ave Apt 12, Brooklyn, NY 11225, United States', '1994-09-13', 0, 0, 'brooks425', '2010-09-22', 'janbrooks69', '2001-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS475012427189', '魏云熙', 0, '+86 28-716-2074', 4, '248277880825338957', 'No.38 building, No. 618, Shuangqing Rd, Chenghua District, Chengdu, China', '1992-10-04', 0, 0, 'wei428', '2010-04-12', 'weiyunxi', '2012-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS881081171125', '龚秀英', 0, '+81 74-303-8762', 1, '583256729899468750', '9F, 1-7-4 Saidaiji Akodacho, Nara, Japan', '1993-04-09', 0, 0, 'gxiu605', '2016-04-28', 'gongxiuying220', '2015-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS831830172898', 'Dawn Reyes', 0, '+81 66-036-0260', 3, '945828854887987068', '日本おおさかし平野区加美東四丁目9番8号23階', '1997-08-05', 0, 0, 'dareyes', '2020-01-12', 'reyes83', '2016-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS224698506323', '馬永權', 0, '+81 11-829-5412', 2, '385076956070097441', '日本札幌白石区菊水三条五丁目4番5号9階', '1992-04-13', 0, 0, 'wingkuen1', '2006-10-25', 'wkma', '2011-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS774067750991', '吉田玲奈', 1, '+81 3-4306-9221', 1, '198542157088034823', 'Rm. 46, 1-6-8, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1990-11-07', 0, 0, 'rena8', '2009-11-30', 'yrena', '2002-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS298972886829', 'Albert Rogers', 0, '+86 183-1970-9199', 2, '616457609814245881', '中国成都市锦江区人民南路四段859号6栋', '1994-09-27', 0, 0, 'rogersal', '2006-06-03', 'albertr2', '2002-06-04'); +INSERT INTO "public"."userinfo" VALUES ('TS443890243175', '吉田百恵', 0, '+1 838-033-5715', 2, '730662275666956802', '288 Broadway Apt 19, Albany, NY 12207, United States', '1985-07-07', 0, 0, 'ymomoe', '2015-04-11', 'yoshidamomoe5', '2000-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS473756879358', '丁子异', 1, '+81 70-6925-2034', 4, '960189103378473924', 'Rm. 10, 5-2-8 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1985-10-26', 0, 0, 'ding605', '2003-12-28', 'dingziy7', '2009-11-07'); +INSERT INTO "public"."userinfo" VALUES ('TS669362171468', '樊惠敏', 0, '+86 10-770-4893', 3, '814455887691321096', '中国北京市東城区東直門內大街603号31楼', '1995-06-12', 0, 0, 'wmfan', '2014-12-14', 'fanwm', '2008-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS924202572781', 'Janice Evans', 0, '+1 330-051-7439', 1, '734248609121668453', '767 West Market Street Apartment 2, Akron, OH 44333, United States', '1994-06-24', 0, 0, 'evansjanice1', '2012-11-11', 'janiceeva', '2006-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS040334959948', '佘淑怡', 0, '+81 3-8972-5462', 0, '431179125882155376', '日本東京中央区銀座三丁目12番11号31階', '1986-08-03', 0, 0, 'sukyee8', '2007-05-18', 'shehsuk1018', '2011-11-14'); +INSERT INTO "public"."userinfo" VALUES ('TS434269308568', '曹睿', 0, '+86 166-9853-3959', 1, '527491526136582242', 'Room 15, 984 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1990-02-14', 0, 0, 'ruicao', '2020-03-06', 'rcao5', '2018-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS756978703623', '胡國明', 0, '+86 148-4149-6152', 1, '012644782150474467', '中国广州市天河区天河路615号24楼', '1988-02-26', 0, 0, 'kmw', '2015-01-22', 'wu86', '2018-08-09'); +INSERT INTO "public"."userinfo" VALUES ('TS922040711923', 'Esther Adams', 1, '+81 66-261-2063', 3, '866181173404087450', '日本おおさかし西成区天神ノ森二丁目1番11号16階', '1988-12-23', 0, 0, 'esthera', '2020-04-13', 'adamsesther', '2005-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS230049419949', 'Frances Olson', 1, '+81 80-8677-9602', 3, '133015771651190064', '日本おおさかし西成区出城一丁目1番5号26階', '1995-11-05', 0, 0, 'folson', '2011-01-11', 'olsf44', '2021-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS656265673369', '林淑怡', 1, '+86 184-4232-3656', 1, '107335727648282960', '中国上海市徐汇区虹桥路694号3楼', '1994-12-01', 0, 0, 'lsy425', '2000-01-10', 'lasy', '2008-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS734801502518', '严云熙', 1, '+81 80-6813-2428', 2, '575909829165241215', '日本東京千代田区丸の内一丁目6番12号26階', '1992-05-28', 0, 0, 'yunxiyan8', '2018-09-13', 'yanyunxi', '2008-02-09'); +INSERT INTO "public"."userinfo" VALUES ('TS693998906283', '曹嘉伦', 1, '+86 148-8781-7157', 1, '547654248000398186', '中国中山天河区大信商圈大信南路355号6栋', '1995-11-30', 0, 0, 'jialc', '2011-07-13', 'jca', '2001-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS151369789840', '金震南', 0, '+81 70-0886-8086', 4, '652383819563056634', '8F, 16 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1996-09-17', 0, 0, 'jinzhennan1963', '2005-04-12', 'zhennanji69', '2021-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS574292826694', '上野優奈', 0, '+44 7594 831531', 3, '056148272001406995', 'No.28 Main building, 152 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1989-04-25', 0, 0, 'uenoyuna', '2013-02-12', 'yunaueno89', '2006-01-17'); +INSERT INTO "public"."userinfo" VALUES ('TS455597233707', '餘霆鋒', 1, '+86 183-5570-0707', 1, '885391676918462663', '中国广州市越秀区中山二路380号华润大厦33室', '1992-09-26', 0, 0, 'yue9', '2020-03-30', 'yutf96', '2019-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS272573062839', '叶子韬', 1, '+81 11-195-3588', 2, '390143412853108735', '日本札幌白石区菊水三条五丁目2番4号13号室', '1989-02-20', 0, 0, 'ziye918', '2007-08-14', 'zye', '2016-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS844906545444', '邵仲賢', 1, '+44 7522 987167', 1, '156858275665263950', 'Block 6, 726 Sackville St, Manchester, M1 3BB, United Kingdom', '1997-11-04', 0, 0, 'chungyin5', '2018-09-21', 'siu8', '2022-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS041046377789', '金致远', 0, '+81 3-6776-4924', 4, '574524545085501820', '日本東京港区東新橋一丁目5番13号33階', '1997-10-23', 0, 0, 'jz2', '2013-12-25', 'jz1', '2007-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS037975049212', '小島樹', 1, '+81 3-6938-9915', 2, '607325652503673848', '12F, 5-2-2 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-10-16', 0, 0, 'ikoj1', '2014-07-14', 'kojiit', '2000-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS225525574848', '邵嘉伦', 1, '+1 212-865-7208', 0, '419451703098442419', '30 Canal Street 3rd Floor, New York, NY 10013, United States', '1997-07-26', 0, 0, 'shaji1009', '2002-12-13', 'shaojialun8', '2016-11-11'); +INSERT INTO "public"."userinfo" VALUES ('TS008201047479', '原田湊', 0, '+44 (20) 8195 8311', 1, '030298925251188647', 'Flat 39, 46 Maddox Street, London, W1S 1PU, United Kingdom', '1988-11-22', 0, 0, 'minato9', '2019-09-20', 'hminato1989', '2005-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS611503650799', '謝榮發', 0, '+81 3-6046-3508', 1, '529779022420790220', 'Rm. 37, 1-6-12, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1990-08-14', 0, 0, 'tse4', '2015-07-21', 'tsewf809', '2014-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS361323385859', '尹麗欣', 0, '+81 11-142-9202', 1, '331125889315052419', '43F, 5-4-20 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-09-22', 0, 0, 'yinly919', '2016-10-20', 'lay', '2000-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS222291965206', 'April Schmidt', 1, '+81 74-756-5786', 3, '857988497045420726', '日本ならし西大寺赤田町一丁目7番11号47号室', '1989-11-29', 0, 0, 'asch', '2016-09-01', 'aprischmidt', '2011-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS188645829313', '市川葉月', 0, '+86 131-9711-6992', 3, '415421296349698594', 'Room 9, 550 Jingtian East 1st St, Futian District, Shenzhen, China', '1991-12-16', 0, 0, 'ih623', '2012-11-29', 'hazukichikawa', '2013-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS790083696657', '藤井陽菜', 0, '+44 5206 362264', 1, '221964528423750966', 'Block 31, 231 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1993-01-22', 0, 0, 'fuh826', '2003-04-27', 'hinfujii', '2003-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS918549914948', '前田桜', 0, '+86 21-7134-2658', 2, '531976817776433790', '中国上海市浦东新区橄榄路938号36号楼', '1985-04-25', 0, 0, 'maedasakura', '2010-11-30', 'sakuram', '2009-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS086398411165', '田杰宏', 0, '+1 213-555-9134', 3, '794231775346720465', '681 Alameda Street 3rd Floor, Los Angeles, CA 90002, United States', '1986-10-01', 0, 0, 'tiajiehong', '2004-03-29', 'jieht', '2008-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS720978525607', 'Catherine Foster', 1, '+1 718-328-6968', 1, '444538497241575656', '135 Nostrand Ave Apartment 24, Brooklyn, NY 11216, United States', '1992-11-06', 0, 0, 'focath', '2012-04-04', 'foster9', '2000-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS974836681257', '文永發', 1, '+81 74-398-5779', 1, '394371674941345434', '日本ならし大和郡山市本庄町一丁目1番16号7階', '1987-07-07', 0, 0, 'manwf', '2012-02-13', 'manwf', '2009-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS957461325908', '湯榮發', 0, '+81 70-9366-5254', 0, '417098740426014397', '日本なごやし北区楠味鋺三丁目80番13号22階', '1995-12-24', 0, 0, 'wingtong', '2019-02-22', 'wingfattong', '2003-10-29'); +INSERT INTO "public"."userinfo" VALUES ('TS497023453176', '段云熙', 0, '+44 5829 790636', 4, '700798721369804763', 'Unit 40, Oxford Eco Centre, 627 Mosley St, Manchester, M2 3AQ, United Kingdom', '1989-06-07', 0, 0, 'yd1940', '2011-03-09', 'yduan', '2011-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS208472614918', '黎子韬', 0, '+81 80-4171-2340', 3, '281336531315507845', '日本札幌清田区真栄四条五丁目19番2号41号室', '1985-10-21', 0, 0, 'zitao7', '2019-06-20', 'zitaoli2002', '2008-02-20'); +INSERT INTO "public"."userinfo" VALUES ('TS170454516319', '袁嘉伦', 1, '+44 5367 638859', 3, '915364968908552943', 'Flat 12, 876 Redfern St, Liverpool, L20 8JB, United Kingdom', '1989-09-12', 0, 0, 'jialunyu4', '2021-04-12', 'jialunyuan', '2002-07-26'); +INSERT INTO "public"."userinfo" VALUES ('TS707582982954', 'Brenda Owens', 1, '+86 140-4156-8206', 0, '697282080459356002', '中国东莞坑美十五巷62号20室', '1985-06-15', 0, 0, 'owensb', '2011-09-26', 'brendaowens41', '2013-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS456492150968', '工藤葉月', 1, '+44 7741 805144', 3, '483885657580371036', 'Flat 9, 740 Sackville St, Manchester, M1 3BB, United Kingdom', '1985-12-26', 0, 0, 'kudohazuk121', '2010-12-09', 'kudohazuk', '2019-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS129806908887', 'Elaine Martin', 1, '+81 74-800-8130', 2, '324604584571448798', '日本ならし学園南三丁目9番18号11階', '1989-03-05', 0, 0, 'martinelai', '2013-07-21', 'marel107', '2007-03-17'); +INSERT INTO "public"."userinfo" VALUES ('TS895968194590', '郭秀英', 1, '+86 755-4298-5809', 2, '293355057152447996', '中国深圳罗湖区蔡屋围深南东路39号15栋', '1985-04-04', 0, 0, 'guoxiuying', '2018-08-06', 'xiuyingg4', '2015-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS571652057418', '翁浩然', 1, '+81 70-1064-9888', 2, '946617295138705487', '日本東京品川区東五反田五丁目2番9号22階', '1992-05-19', 0, 0, 'hoyin6', '2011-05-26', 'yung1118', '2020-08-22'); +INSERT INTO "public"."userinfo" VALUES ('TS693129434114', '古裕玲', 1, '+81 3-9486-8345', 1, '921539600485762212', '日本東京港区東新橋一丁目5番19号14階', '1997-07-07', 0, 0, 'yuling2', '2004-02-10', 'yulingku', '2021-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS315047786999', '陳天樂', 0, '+81 66-763-8997', 1, '096429708199384601', 'Rm. 29, 1-7-19 Omido, Higashiosaka, Osaka, Japan', '1991-01-10', 0, 0, 'tinlokchan326', '2007-03-31', 'chtl', '2020-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS192577247639', 'Margaret Morgan', 0, '+1 213-744-0110', 2, '758829736101539129', '771 S Broadway Apartment 44, Los Angeles, CA 90015, United States', '1986-02-18', 0, 0, 'morganmargaret', '2000-03-09', 'marm9', '2000-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS951014571265', '姜詩涵', 1, '+81 66-213-3269', 3, '591418856722338584', '20-kai, 3-27-10 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1989-01-24', 0, 0, 'shihanjia', '2017-12-24', 'shihanj', '2018-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS445335042713', 'Kelly Hill', 0, '+1 213-976-1417', 2, '627949776070027338', '522 Alameda Street Apartment 34, Los Angeles, CA 90002, United States', '1992-07-25', 0, 0, 'kelly228', '2014-10-26', 'kellyhi', '2018-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS960521988743', '邱德華', 1, '+86 142-3978-3028', 4, '192815035473408758', '中国成都市成华区二仙桥东三路357号28栋', '1987-09-18', 0, 0, 'yautw2', '2018-11-10', 'ytw1116', '2020-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS532866600073', '高子异', 1, '+1 718-039-4916', 0, '089987291296475066', '764 Bergen St Apt 4, Brooklyn, NY 11217, United States', '1996-04-19', 0, 0, 'zig7', '2012-07-09', 'zg422', '2011-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS898706099729', '菊地翼', 0, '+44 7193 782057', 3, '829581094367893819', 'Unit 44, Oxford Eco Centre, 596 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1989-02-04', 0, 0, 'tsubakikuchi10', '2000-05-12', 'kitsubasa9', '2020-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS235062856170', '山下光莉', 1, '+81 66-389-4224', 3, '596508623313837215', 'Rm. 50, 4-9-17 Kamihigashi, Hirano Ward, Osaka, Japan', '1987-06-21', 0, 0, 'yhikari8', '2007-06-29', 'hyamashita1', '2020-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS985233200502', 'Anthony Gutierrez', 1, '+86 192-1312-5216', 2, '364062987133707357', '中国上海市黄浦区淮海中路815号华润大厦15室', '1992-01-18', 0, 0, 'gutierreza214', '2012-07-11', 'gutierrezant601', '2015-07-06'); +INSERT INTO "public"."userinfo" VALUES ('TS547941586590', '邹致远', 0, '+86 769-080-0655', 1, '245602822437222860', '中国东莞坑美十五巷308号14室', '1992-04-07', 0, 0, 'zhiyuanzou208', '2007-09-05', 'zhiyuanzo47', '2019-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS257865368026', 'Timothy Turner', 1, '+86 21-7114-1946', 4, '137473031451333510', '中国上海市徐汇区虹桥路924号50楼', '1996-11-10', 0, 0, 'ttim', '2005-04-15', 'turner129', '2002-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS572350057838', 'Lillian Rogers', 1, '+86 164-8638-8464', 2, '859271340061524715', '中国成都市锦江区红星路三段823号华润大厦34室', '1985-12-02', 0, 0, 'roglill', '2012-03-23', 'rogli', '2015-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS155883323004', '丁詩涵', 0, '+81 90-6049-6603', 3, '056354717496233285', '24F, 19 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1985-12-06', 0, 0, 'shiding', '2015-05-13', 'shihadin', '2008-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS736466997118', '杉山一輝', 0, '+86 755-512-0902', 3, '990025741811945692', 'No.28 building, 296 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1989-09-17', 0, 0, 'sugiyama10', '2016-10-03', 'iksugiyama', '2005-01-19'); +INSERT INTO "public"."userinfo" VALUES ('TS041801122698', '田中陽太', 1, '+86 176-0901-0439', 2, '496424786957012607', '2F, 28 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1990-07-25', 0, 0, 'tay', '2000-05-09', 'tanakayota', '2000-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS257490970567', '萬家輝', 0, '+86 164-9993-3872', 0, '552819358196337382', 'Room 40, CR Building, 478 3rd Section Hongxing Road, Jinjiang District, Chengdu, China', '1987-02-19', 0, 0, 'kafaimeng', '2010-05-18', 'kfmeng410', '2002-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS530751448372', '中川湊', 0, '+81 74-103-8983', 2, '543595014002952030', 'Rm. 12, 15 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1993-05-04', 0, 0, 'nakagminato130', '2014-07-30', 'nakagawa3', '2005-10-01'); +INSERT INTO "public"."userinfo" VALUES ('TS702868027779', 'Kelly Gardner', 0, '+81 52-178-4825', 3, '970652413890782897', '日本なごやし北区清水三丁目19番17号22階', '1987-11-20', 0, 0, 'kelly2', '2004-06-15', 'gardnke', '2010-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS709780720943', '傅晓明', 1, '+81 74-969-9637', 1, '448763064363605798', '日本ならし西大寺赤田町一丁目7番5号47階', '1986-04-06', 0, 0, 'xf74', '2006-12-06', 'xfu', '2015-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS926135912270', 'John Baker', 0, '+86 20-2106-3471', 1, '748041845667375630', 'Room 43, CR Building, 437 Jiangnan West Road, Haizhu District, Guangzhou, China', '1988-08-15', 0, 0, 'bakerjo', '2018-11-28', 'bakejohn', '2019-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS761820045222', '戴惠妹', 0, '+86 134-1590-3223', 3, '620234337193415671', 'No.14 building, 69 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1987-01-08', 0, 0, 'hmdai', '2007-01-01', 'dai1214', '2016-04-12'); +INSERT INTO "public"."userinfo" VALUES ('TS651951901903', '前田美緒', 1, '+1 718-600-4336', 2, '548645276670273949', '976 1st Ave Apartment 16, Brooklyn, NY 11220, United States', '1988-12-18', 0, 0, 'maedmi1', '2007-08-09', 'maeda2', '2016-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS318495050220', '藤梓軒', 1, '+86 155-2723-3351', 3, '355713340210258600', 'No.41 building, 653 FuXingMenNei Street, XiCheng District, Beijing, China', '1987-07-16', 0, 0, 'tszhin1991', '2019-08-18', 'tszhint2003', '2012-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS647492806596', '戚朝偉', 0, '+86 135-3574-2119', 2, '920482774158234726', '中国成都市锦江区人民南路四段950号22室', '1995-05-17', 0, 0, 'cchiuwai', '2010-12-25', 'chiuwai10', '2010-09-11'); +INSERT INTO "public"."userinfo" VALUES ('TS194100634473', '小山優奈', 1, '+81 3-9277-3273', 3, '403760272039911544', '日本東京渋谷区代々木二丁目3番8号41階', '1986-02-20', 0, 0, 'yunkoyama6', '2007-07-04', 'yunakoyama', '2003-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS154704031116', '坂本明菜', 1, '+44 (121) 588 2575', 3, '166909017978080234', 'Unit 46, Oxford Eco Centre, 446 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1998-01-26', 0, 0, 'sakamoto08', '2016-03-15', 'sakamoto114', '2014-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS600671317926', '黄宇宁', 1, '+81 80-7140-4696', 1, '684413968718334246', '16F, 2-5-1 Chitose, Atsuta Ward, Nagoya, Japan', '1994-04-07', 0, 0, 'huangy40', '2010-02-26', 'yuningh', '2009-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS657412935053', 'Thelma Perry', 1, '+44 (116) 287 0484', 0, '866860599984091897', 'No.9 Main building, 91 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1989-09-29', 0, 0, 'thelmaperr', '2008-06-26', 'thelmaperr', '2006-04-07'); +INSERT INTO "public"."userinfo" VALUES ('TS529648755419', 'Bonnie Washington', 0, '+1 312-930-5397', 0, '233347477892692077', '735 Pedway 3rd Floor, Chicago, IL 60601, United States', '1988-12-06', 0, 0, 'bonnie50', '2004-02-03', 'washingtonbonnie', '2014-01-04'); +INSERT INTO "public"."userinfo" VALUES ('TS081180792554', '小野湊', 1, '+81 80-8330-6946', 0, '560241481500215651', '49-kai, 3-9-3 Gakuenminami, Nara, Japan', '1995-04-11', 0, 0, 'onomi', '2018-11-15', 'onminato3', '2010-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS477759841507', '江梓晴', 0, '+44 5202 231391', 2, '610602782838359487', 'No.13 Main building, 80 Mosley St, Manchester, M2 3AQ, United Kingdom', '1985-05-16', 0, 0, 'kongtszching9', '2003-01-28', 'tszchingko', '2013-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS314361856684', '竹内結翔', 0, '+1 212-123-7937', 3, '067125721537837225', '230 Wooster Street Suite 19, New York, NY 10012, United States', '1996-06-25', 0, 0, 'takeuchi709', '2016-11-25', 'yuitota', '2005-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS896819537453', 'Brian Sanchez', 1, '+81 70-8474-8977', 4, '857335624244843391', '日本札幌清田区真栄四条五丁目19番9号39号室', '1992-02-09', 0, 0, 'sanchez2', '2004-11-04', 'brian4', '2016-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS604606466382', '小林樹', 1, '+44 (151) 904 4490', 4, '449740640027846779', 'No.14 Main building, 888 Redfern St, Liverpool, L20 8JB, United Kingdom', '1993-11-19', 0, 0, 'itsuki1952', '2012-04-01', 'kitsuki', '2014-09-19'); +INSERT INTO "public"."userinfo" VALUES ('TS198925569517', '阮裕玲', 1, '+86 21-295-0221', 4, '888226936060092838', '中国上海市黄浦区淮海中路227号华润大厦42室', '1995-01-19', 0, 0, 'yulingyuen', '2019-11-09', 'yueyuling4', '2016-09-26'); +INSERT INTO "public"."userinfo" VALUES ('TS483534235921', 'Samuel Boyd', 0, '+81 70-8473-3887', 0, '389703321375178688', '日本札幌厚別区上野幌一条二丁目1番13号37号室', '1994-01-08', 0, 0, 'sboy', '2003-02-06', 'samueb', '2019-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS911228365671', '孟詩涵', 0, '+86 141-2376-9647', 2, '740090200017482753', '中国广州市白云区机场路棠苑街五巷286号6楼', '1998-08-30', 0, 0, 'sm5', '2016-05-13', 'meng92', '2000-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS103448641440', '梅榮發', 1, '+86 190-8577-4172', 2, '087185832012468635', 'No.9 building, 661 Tangyuan Street 5th Alley, Airport Road, Baiyun, Guangzhou, China', '1988-05-10', 0, 0, 'muiwf', '2010-11-10', 'muwf', '2000-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS115789434446', '邵安琪', 0, '+44 (116) 466 3946', 1, '211314397335045758', 'Unit 34, Oxford Eco Centre, 547 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1991-12-14', 0, 0, 'ans', '2011-04-07', 'shao12', '2000-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS195162418608', '谢璐', 0, '+86 155-1377-5725', 2, '236868344023902652', '中国中山天河区大信商圈大信南路228号24号楼', '1988-12-22', 0, 0, 'xiel911', '2008-05-26', 'xielu', '2014-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS273716055464', '木下涼太', 0, '+81 74-978-6853', 0, '676347180711527484', '8-kai, 3-9-12 Gakuenminami, Nara, Japan', '1989-09-23', 0, 0, 'kryota', '2016-08-22', 'kiryota4', '2016-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS255533212358', '應浩然', 1, '+86 28-2037-2225', 1, '615367009716137803', '中国成都市成华区玉双路6号575号23栋', '1994-04-17', 0, 0, 'yinhoyi', '2009-10-12', 'hyying', '2007-11-03'); +INSERT INTO "public"."userinfo" VALUES ('TS729066467426', 'Philip Diaz', 0, '+81 66-493-2654', 2, '824392078596248230', 'Rm. 26, 2-1-18 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1994-11-13', 0, 0, 'philip6', '2014-02-12', 'diazphili', '2017-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS314024692800', '工藤美月', 0, '+44 5134 936445', 0, '496344071158361690', 'Block 12, 534 Portland St, Manchester, M1 3LA, United Kingdom', '1989-03-02', 0, 0, 'kudmi', '2016-03-08', 'mitsukikudo2', '2003-07-07'); +INSERT INTO "public"."userinfo" VALUES ('TS351912268441', 'Kathleen Morales', 0, '+86 10-835-3210', 4, '437075858419851564', '中国北京市西城区西長安街134号48室', '1998-03-21', 0, 0, 'kathlmo', '2001-02-02', 'morales406', '2003-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS310880294265', '潘嘉伦', 0, '+86 10-3106-4806', 0, '859175317314769598', '中国北京市東城区東直門內大街675号41楼', '1995-02-14', 0, 0, 'jiapa', '2002-04-21', 'jialunpan2008', '2012-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS744599152177', '韩云熙', 0, '+81 11-091-6391', 3, '355042707876787932', '日本札幌清田区真栄四条五丁目19番2号47階', '1987-07-29', 0, 0, 'yunxi8', '2010-05-30', 'yunxihan2', '2019-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS490084614356', 'Curtis Owens', 0, '+44 7738 954884', 2, '518723595627143957', 'Unit 5, Oxford Eco Centre, 194 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1992-09-02', 0, 0, 'curtisow1213', '2001-01-21', 'curtisowens', '2018-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS384855293463', 'Amanda Salazar', 0, '+1 614-720-0824', 2, '742385495417443730', '947 East Alley Apartment 12, Columbus, GA 43201, United States', '1997-02-02', 0, 0, 'samanda329', '2003-04-23', 'salazaramanda', '2000-07-23'); +INSERT INTO "public"."userinfo" VALUES ('TS023969645284', 'Todd Watson', 1, '+44 7293 310712', 1, '270471464341671095', 'No.39 Main building, 362 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1995-09-16', 0, 0, 'watson5', '2012-12-07', 'towatson', '2011-09-09'); +INSERT INTO "public"."userinfo" VALUES ('TS383490353480', 'Lillian Woods', 0, '+81 52-905-7801', 4, '673791037377992478', '日本なごやし北区楠味鋺三丁目80番17号2号室', '1990-11-29', 0, 0, 'lwoo', '2014-11-08', 'wli', '2007-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS490465326690', '薛世榮', 1, '+86 755-3204-5584', 4, '844444468226693723', 'No.30 building, 409 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1989-11-07', 0, 0, 'swsit', '2016-05-26', 'saiwingsit3', '2002-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS031175400836', '譚杰倫', 0, '+81 74-565-0594', 4, '800548696928644938', '50F, 1-7-13 Saidaiji Akodacho, Nara, Japan', '1992-08-27', 0, 0, 'tam41', '2007-12-10', 'tamchiehlun6', '2018-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS930752807701', '雷潤發', 0, '+1 213-398-2076', 1, '092974257527237995', '284 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1994-07-01', 0, 0, 'yfloui7', '2021-04-25', 'yfloui98', '2015-06-22'); +INSERT INTO "public"."userinfo" VALUES ('TS233797705297', '沈宇宁', 1, '+81 11-328-3343', 1, '049865931575568222', '日本札幌厚別区上野幌一条二丁目1番8号36階', '1990-08-25', 0, 0, 'shenyuning', '2007-07-03', 'yuninshen', '2001-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS496933087397', '陶玲玲', 0, '+81 66-079-4503', 1, '471517347104428833', '26-kai, 1-7-20 Omido, Higashiosaka, Osaka, Japan', '1997-11-06', 0, 0, 'talingling', '2009-07-19', 'linglingtao9', '2020-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS813033688882', '江杰宏', 0, '+86 185-8151-1610', 0, '979285600583782757', '中国深圳罗湖区蔡屋围深南东路447号20栋', '1989-07-24', 0, 0, 'jiehong8', '2015-09-24', 'jiangjiehong', '2007-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS142820934003', '韓富城', 1, '+44 7762 651107', 2, '468242041264387442', 'Flat 35, 589 Lodge Ln, Toxteth, Liverpool, L8 0SP, United Kingdom', '1992-03-19', 0, 0, 'fushingha708', '2006-08-29', 'fush76', '2004-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS625118160927', '韩杰宏', 0, '+81 66-137-7586', 4, '930453782896313005', 'Rm. 6, 3-27-3 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1988-05-11', 0, 0, 'jiehhan731', '2012-07-20', 'hanjiehong617', '2018-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS273400800412', '萧致远', 0, '+1 312-247-2910', 2, '041996334696785527', '818 Pedway 3rd Floor, Chicago, IL 60601, United States', '1985-03-04', 0, 0, 'xiaozhiyuan630', '2003-03-04', 'zhiyuan67', '2011-08-18'); +INSERT INTO "public"."userinfo" VALUES ('TS930003918766', '周致远', 0, '+81 90-5941-1325', 3, '911264175064978140', 'Rm. 1, 5-19-7 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1995-05-31', 0, 0, 'zhouzhiyuan218', '2014-08-29', 'zzhi', '2016-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS295749947795', 'Juan Perez', 1, '+44 (151) 703 8381', 1, '273248894468523311', 'Unit 41, Oxford Eco Centre, 654 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1992-03-27', 0, 0, 'perjuan', '2018-05-03', 'pj96', '2019-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS670612873040', '周璐', 1, '+81 11-408-8042', 2, '123992801848981232', '日本札幌白石区菊水三条五丁目4番16号5階', '1993-07-18', 0, 0, 'zhoulu1989', '2014-06-30', 'zhou7', '2004-12-29'); +INSERT INTO "public"."userinfo" VALUES ('TS472018471616', '向岚', 0, '+81 11-850-9105', 0, '329558417619725503', '30F, 5-4-5 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1988-01-23', 0, 0, 'xiangla1', '2019-02-08', 'lanxiang77', '2014-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS942190150116', '胡家輝', 1, '+86 21-028-0931', 0, '899266113942480576', '50F, 135 Jianxiang Rd, Pudong, Shanghai, China', '1995-07-04', 0, 0, 'wukf4', '2000-06-09', 'kfw', '2002-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS544824745305', '侯杰宏', 1, '+86 755-8844-7282', 1, '094369225716213486', 'No.11 building, 782 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1985-06-22', 0, 0, 'houjiehong8', '2005-11-01', 'jiehongho', '2008-12-17'); +INSERT INTO "public"."userinfo" VALUES ('TS225136945524', '郝詩涵', 0, '+1 212-514-3992', 3, '926940361511116007', '467 Canal Street 3rd Floor, New York, NY 10013, United States', '1986-04-08', 0, 0, 'hao78', '2004-12-18', 'sh1213', '2010-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS753435456557', 'Juanita Schmidt', 0, '+86 153-8729-3731', 1, '315830992097090544', '42F, 78 Middle Huaihai Road, Huangpu District, Shanghai, China', '1990-01-18', 0, 0, 'schmidt10', '2003-11-11', 'juanitaschmidt93', '2021-07-05'); +INSERT INTO "public"."userinfo" VALUES ('TS504398541192', '桜井樹', 0, '+1 718-667-9411', 3, '152582766940930007', '582 1st Ave Apt 3, Brooklyn, NY 11220, United States', '1985-09-10', 0, 0, 'sakuraii', '2003-04-09', 'sakuitsuk1110', '2019-02-08'); +INSERT INTO "public"."userinfo" VALUES ('TS927498977322', 'John Gordon', 1, '+81 3-5641-7714', 0, '162756777702762205', '10F, 3-15-16 Ginza, Chuo-ku, Tokyo, Japan', '1992-07-27', 0, 0, 'gordonjohn', '2012-09-22', 'john7', '2005-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS851089363106', '秦睿', 0, '+86 28-097-1841', 3, '851432154807705807', '中国成都市锦江区人民南路四段662号1室', '1992-11-17', 0, 0, 'rui93', '2013-11-10', 'qrui65', '2018-04-20'); +INSERT INTO "public"."userinfo" VALUES ('TS068861752791', '薛安琪', 0, '+86 769-282-4645', 2, '680886736592979994', '中国东莞东泰五街205号8楼', '1990-01-20', 0, 0, 'xuea', '2011-09-02', 'xuea', '2003-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS352311962318', '張國賢', 1, '+81 90-5283-7807', 1, '233083812599458218', '36-kai, 5-2-4 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-08-26', 0, 0, 'kwokyinche', '2017-12-07', 'cheunkwokyin66', '2004-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS046503240576', '福田和真', 0, '+1 330-256-0921', 2, '782036668185013679', '774 Fern Street Apartment 12, Akron, OH 44307, United States', '1989-02-05', 0, 0, 'kazumfuk1205', '2020-10-20', 'kazuma1206', '2004-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS616404903619', '中村桜', 1, '+86 198-6239-9681', 1, '550362028901764238', '中国上海市浦东新区健祥路507号46室', '1993-04-15', 0, 0, 'naksaku', '2000-10-31', 'nasa', '2017-05-18'); +INSERT INTO "public"."userinfo" VALUES ('TS700928746320', 'Jonathan Chavez', 0, '+86 195-2448-2015', 0, '816282076017701683', '中国成都市成华区二仙桥东三路339号9楼', '1990-04-07', 0, 0, 'jonathan6', '2019-07-06', 'chavezjona', '2019-01-07'); +INSERT INTO "public"."userinfo" VALUES ('TS499010109722', '戴震南', 0, '+81 70-5825-5218', 1, '398489134247557085', '日本東京渋谷区代々木二丁目3番11号45階', '1985-03-05', 0, 0, 'dazhen906', '2018-04-26', 'daizhen78', '2017-03-06'); +INSERT INTO "public"."userinfo" VALUES ('TS187446107016', '熊詩涵', 1, '+1 212-204-8742', 2, '773523342164103248', '613 Bank Street Apt 39, New York, NY 10014, United States', '1990-05-21', 0, 0, 'sxion', '2014-01-02', 'shix1995', '2001-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS084256885095', '谭杰宏', 0, '+44 5694 298357', 3, '626359549544868237', 'Block 6, 864 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1996-10-14', 0, 0, 'jiehongt', '2015-08-14', 'jiehongta47', '2019-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS381334141786', '譚詩君', 1, '+86 136-5329-8360', 1, '554913971264014233', '中国广州市海珠区江南西路897号1号楼', '1994-03-21', 0, 0, 'szekta', '2013-06-04', 'szekwantam', '2012-03-12'); +INSERT INTO "public"."userinfo" VALUES ('TS909360931582', 'Ryan Davis', 1, '+81 74-476-8889', 3, '511673637131233523', 'Rm. 44, 3-9-11 Gakuenminami, Nara, Japan', '1999-01-11', 0, 0, 'davisryan125', '2017-03-29', 'davis1972', '2011-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS900113825276', '田志明', 0, '+44 (1865) 37 6336', 1, '659227108077371962', 'Flat 1, 356 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1989-04-06', 0, 0, 'tchiming', '2020-03-03', 'cmtin07', '2006-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS628018623332', 'Julie Long', 1, '+86 769-0058-9127', 1, '953728389681397649', '中国东莞东泰五街38号华润大厦7室', '1989-11-28', 0, 0, 'julilon', '2009-12-02', 'longj', '2003-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS975594334837', '毛朝偉', 0, '+86 149-1247-1479', 3, '971620621990154544', 'No.41 building, 99 Shennan Ave, Futian District, Shenzhen, China', '1997-09-17', 0, 0, 'mocw', '2002-01-14', 'chiuwaimo', '2008-05-16'); +INSERT INTO "public"."userinfo" VALUES ('TS181777069676', '向安琪', 1, '+86 148-0760-9642', 4, '751145938073454345', '7F, 489 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1998-07-13', 0, 0, 'anqi908', '2003-08-27', 'anqixiang18', '2006-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS879695345141', '橋本光莉', 0, '+81 90-4811-7822', 1, '860187093271612121', '日本東京港区東新橋一丁目5番15号5号室', '1991-02-02', 0, 0, 'hikarihashimoto', '2016-03-16', 'hashimotohikari', '2012-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS333480828970', '李嘉伦', 1, '+86 139-4201-0674', 0, '466084480590209039', '中国广州市天河区天河路232号华润大厦45室', '1999-01-13', 0, 0, 'li4', '2019-06-20', 'lij5', '2016-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS738086609445', '中村美緒', 1, '+86 165-9076-3415', 4, '347187118690248307', 'No.19 building, 226 Dong Zhi Men, Dongcheng District, Beijing, China', '1994-02-17', 0, 0, 'mionakamura', '2019-09-25', 'mionakamura', '2020-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS342863167910', '清水彩乃', 0, '+81 3-0174-9214', 2, '127021636802048712', '日本東京千代田区丸の内一丁目6番1号25階', '1997-03-16', 0, 0, 'shiayano730', '2007-12-22', 'shimayano2014', '2005-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS890044707748', '山田玲奈', 0, '+81 11-168-4887', 4, '793459840622846894', '日本札幌厚別区上野幌一条二丁目1番8号15階', '1991-04-30', 0, 0, 'yamadar', '2014-04-11', 'yamada10', '2013-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS158252782146', '山口玲奈', 0, '+86 10-0909-8008', 4, '034357480047164270', 'No.38 building, 801 FuXingMenNei Street, XiCheng District, Beijing, China', '1988-06-10', 0, 0, 'yamaguchi55', '2013-09-24', 'yrena', '2011-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS603765045531', '鄧慧儀', 1, '+1 212-984-2637', 2, '975149649730703992', '829 Bank Street Apartment 25, New York, NY 10014, United States', '1993-09-24', 0, 0, 'wyt1', '2012-02-17', 'waiyeetang', '2006-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS326118064353', 'Amanda Black', 1, '+81 70-4014-8619', 2, '870416510820764175', '日本なごやし熱田区千年二丁目5番17号10階', '1996-05-07', 0, 0, 'amanda8', '2001-02-13', 'amandabla51', '2016-12-03'); +INSERT INTO "public"."userinfo" VALUES ('TS195189526374', '邱祖兒', 0, '+44 (161) 161 0026', 4, '724225972384449502', 'Unit 13, Oxford Eco Centre, 9 Mosley St, Manchester, M2 3AQ, United Kingdom', '1989-10-03', 0, 0, 'yaucy', '2014-01-09', 'yachoyee', '2015-02-06'); +INSERT INTO "public"."userinfo" VALUES ('TS141045132911', '千葉陸', 1, '+86 760-6334-9533', 2, '142671070780188904', 'No.7 building, 799 Lefeng 6th Rd, Zhongshan, China', '1995-05-30', 0, 0, 'chibari3', '2020-12-03', 'chibriku1129', '2004-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS651839865149', '田中明菜', 1, '+44 5614 651348', 2, '340154656256416694', 'Flat 13, 772 Sackville St, Manchester, M1 3BB, United Kingdom', '1987-04-17', 0, 0, 'akinatana2', '2017-10-23', 'taa', '2021-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS383355504049', '于晓明', 0, '+1 212-931-7726', 1, '273110436167934703', '728 Bank Street Apartment 10, New York, NY 10014, United States', '1986-06-15', 0, 0, 'yxiaoming', '2019-08-26', 'xyu', '2011-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS426554705395', '余致远', 1, '+81 3-8284-1844', 2, '031451367986658691', '日本東京品川区東五反田五丁目2番2号10階', '1997-03-05', 0, 0, 'yuzhiyuan', '2008-04-15', 'zhiyuanyu4', '2006-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS934494201787', '唐杰宏', 1, '+44 (20) 8623 9306', 2, '664107885326823830', 'Unit 34, Oxford Eco Centre, 829 Hanover Street, London, W1S 1YD, United Kingdom', '1995-03-02', 0, 0, 'tjiehong', '2013-10-29', 'jiehongtang', '2005-09-04'); +INSERT INTO "public"."userinfo" VALUES ('TS270753263442', '孙詩涵', 1, '+81 11-729-2150', 1, '557063784873652194', '50F, 5-2-19 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-02-03', 0, 0, 'ssun69', '2009-03-31', 'shihansun', '2012-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS661186337781', '中野悠人', 0, '+1 718-659-9928', 1, '711361177839438220', '795 Flatbush Ave Apartment 9, Brooklyn, NY 11225, United States', '1988-09-06', 0, 0, 'yutn', '2006-04-18', 'yutnaka', '2017-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS244959616470', 'Diana Turner', 0, '+81 11-689-3655', 3, '657865234738498894', '3F, 5-2-14 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1996-11-30', 0, 0, 'turndi4', '2004-02-09', 'turner5', '2007-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS184219585520', '韓嘉欣', 1, '+86 153-7447-6984', 2, '568941858203819748', '中国成都市成华区玉双路6号351号12号楼', '1986-01-31', 0, 0, 'karyha', '2017-02-14', 'han3', '2011-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS346338627360', '田村優奈', 0, '+44 7512 316253', 4, '704229740196063597', 'Unit 38, Oxford Eco Centre, 142 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1985-03-31', 0, 0, 'yunat1989', '2000-08-28', 'tyuna1954', '2010-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS063603838018', '吳俊宇', 1, '+86 183-5537-1306', 1, '155597687132458833', 'No.22 building, 959 Ganlan Rd, Pudong, Shanghai, China', '1996-04-19', 0, 0, 'ncy', '2006-08-05', 'chunyung110', '2003-01-20'); +INSERT INTO "public"."userinfo" VALUES ('TS293039465052', 'Sarah James', 1, '+1 213-589-7261', 4, '642808360441752640', '421 Wall Street Apartment 46, Los Angeles, CA 90003, United States', '1994-02-19', 0, 0, 'jamesarah4', '2021-03-22', 'sarahjames', '2012-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS910076875088', '萧震南', 0, '+86 135-7614-5330', 3, '893450692536863752', '中国北京市東城区東直門內大街992号48号楼', '1991-05-17', 0, 0, 'zxia414', '2011-03-10', 'xiaozhennan', '2014-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS103262907854', '馬榮發', 1, '+81 52-644-0267', 3, '699557738135226185', '38F, 18 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1987-05-16', 0, 0, 'wfma4', '2004-06-28', 'mawingfat', '2018-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS455715561878', '鄧安娜', 0, '+81 11-154-2247', 2, '868546986144718727', 'Rm. 9, 6-1-20, Miyanomori 4 Jō, Chuo Ward, Sapporo, Japan', '1989-09-30', 0, 0, 'tangon327', '2000-05-30', 'onnata1', '2009-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS365532335339', '任國賢', 0, '+86 21-8593-0337', 4, '735101206730559421', 'No.46 building, 924 Jianxiang Rd, Pudong, Shanghai, China', '1990-08-30', 0, 0, 'kwokyyam10', '2019-07-22', 'kwokyinyam', '2015-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS122959721880', '遠藤健太', 1, '+1 718-414-1376', 3, '981997092735349082', '581 Flatbush Ave Apartment 5, Brooklyn, NY 11225, United States', '1991-02-22', 0, 0, 'kenta908', '2006-10-10', 'kenta1214', '2022-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS074076325485', 'Ruth Howard', 0, '+86 28-967-4489', 1, '858176892862970583', '12F, No. 267, Shuangqing Rd, Chenghua District, Chengdu, China', '1985-04-03', 0, 0, 'howard604', '2006-10-31', 'howard118', '2015-08-01'); +INSERT INTO "public"."userinfo" VALUES ('TS425512772453', '吕晓明', 0, '+44 5256 893813', 1, '103479572692935117', 'Block 9, 185 Hanover Street, London, W1S 1YD, United Kingdom', '1995-10-15', 0, 0, 'lux', '2006-01-15', 'lx601', '2021-12-05'); +INSERT INTO "public"."userinfo" VALUES ('TS630246886124', '劉浩然', 0, '+81 80-2000-6952', 4, '201743687771450099', '日本おおさかし東住吉区東田辺三丁目27番15号11階', '1990-12-17', 0, 0, 'hoyinla624', '2020-10-12', 'lhoyin', '2011-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS767663983606', '罗子异', 0, '+81 3-1620-2364', 1, '308809785062435859', '41-kai, 5-2-10 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1998-09-18', 0, 0, 'luz', '2003-05-12', 'lziyi', '2009-03-31'); +INSERT INTO "public"."userinfo" VALUES ('TS046554113733', '韩云熙', 1, '+1 312-885-0749', 1, '793243273480111876', '56 Pedway Suite 1, Chicago, IL 60601, United States', '1988-10-11', 0, 0, 'yhan10', '2003-09-30', 'hayunxi', '2005-11-16'); +INSERT INTO "public"."userinfo" VALUES ('TS182619070782', '斉藤海斗', 1, '+86 194-8764-8920', 3, '429381710903959296', '中国中山乐丰六路391号40室', '1990-06-12', 0, 0, 'kaito10', '2000-01-10', 'saitokai620', '2015-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS256673491450', 'Jacqueline Rose', 0, '+81 74-133-6289', 2, '461624823344857554', '47F, 1-7-15 Saidaiji Akodacho, Nara, Japan', '1994-08-04', 0, 0, 'rjacqueline10', '2006-02-26', 'rose517', '2015-05-01'); +INSERT INTO "public"."userinfo" VALUES ('TS080662000809', '宋睿', 1, '+1 212-479-7086', 1, '176365904445426655', '392 Wooster Street Suite 46, New York, NY 10012, United States', '1990-07-19', 0, 0, 'song1227', '2010-06-08', 'srui', '2004-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS055201198626', '廖杰宏', 0, '+86 193-4745-2808', 4, '945886381017875207', '44F, 497 Tianhe Road, Tianhe District, Guangzhou, China', '1987-10-08', 0, 0, 'jili', '2006-08-02', 'jiehong40', '2010-04-01'); +INSERT INTO "public"."userinfo" VALUES ('TS555729566184', '毛小慧', 1, '+81 74-470-6249', 3, '651650009286447330', '5-kai, 1-7-9 Saidaiji Akodacho, Nara, Japan', '1996-07-03', 0, 0, 'simo', '2010-01-13', 'mo703', '2020-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS681312356357', 'Vincent Hayes', 1, '+81 70-0558-5866', 3, '518420918709585008', '日本札幌白石区菊水三条五丁目2番14号36階', '1998-02-18', 0, 0, 'hayesv', '2005-01-27', 'vincehayes', '2012-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS161476236685', '潘安琪', 1, '+81 74-452-3156', 3, '404296332644282339', '7F, 16 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1994-12-12', 0, 0, 'anqipan', '2013-07-04', 'apan', '2002-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS242272047375', 'Ronald Fox', 1, '+86 174-0613-4142', 4, '507866412762259095', '中国中山京华商圈华夏街460号18楼', '1985-07-12', 0, 0, 'rfox', '2012-01-18', 'ronf1954', '2006-04-23'); +INSERT INTO "public"."userinfo" VALUES ('TS775711709427', '袁淑怡', 1, '+44 7148 723310', 0, '852065551410161079', 'Block 29, 79 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1989-07-04', 0, 0, 'suyue55', '2000-08-17', 'sukyeey', '2012-10-24'); +INSERT INTO "public"."userinfo" VALUES ('TS376273163060', '盧青雲', 1, '+86 10-6871-5684', 4, '136087690735975456', '中国北京市朝阳区三里屯路132号19室', '1990-05-19', 0, 0, 'chingwan1', '2007-12-23', 'chingwanlo', '2013-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS901003920737', '木村涼太', 0, '+81 52-712-1327', 1, '526156244868612308', '6-kai, 2-5-17 Chitose, Atsuta Ward, Nagoya, Japan', '1990-12-20', 0, 0, 'ryokimu', '2015-03-18', 'ryotaki', '2009-06-08'); +INSERT INTO "public"."userinfo" VALUES ('TS797648557210', 'Billy Sanders', 0, '+86 157-6678-5718', 3, '649056684255990713', '中国中山紫马岭商圈中山五路520号华润大厦33室', '1995-11-08', 0, 0, 'billy2015', '2016-04-01', 'billysa53', '2011-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS700638347219', '刘安琪', 0, '+86 755-6659-0284', 3, '409174722709199262', 'Room 47, 836 Jingtian East 1st St, Futian District, Shenzhen, China', '1996-08-21', 0, 0, 'aliu', '2003-11-25', 'liua', '2000-02-27'); +INSERT INTO "public"."userinfo" VALUES ('TS478745502462', '任小慧', 1, '+1 614-817-3241', 0, '635365101600274835', '369 Tremont Road Suite 2, Columbus, GA 43212, United States', '1993-01-12', 0, 0, 'yamsiuwai', '2009-11-14', 'yamsiuwai', '2014-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS900748529926', '劉詩君', 0, '+86 139-4993-6159', 1, '326716281566082421', '中国北京市延庆区028县道293号25栋', '1998-12-14', 0, 0, 'lausk9', '2009-05-05', 'sklau', '2018-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS961846488215', '郭晓明', 0, '+86 198-3112-8191', 1, '422398546049628160', 'No.21 building, 45 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1999-02-17', 0, 0, 'xiaoming79', '2014-01-18', 'guoxia91', '2002-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS698787645060', '谭致远', 0, '+81 11-561-4131', 3, '382325940889556267', '日本札幌厚別区上野幌一条二丁目1番1号10階', '1985-08-03', 0, 0, 'zhtan47', '2006-08-30', 'zhiyuantan7', '2004-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS286132418047', '伍家強', 0, '+86 137-2411-2838', 1, '293676602177991133', '中国北京市海淀区清河中街68号270号26室', '1989-01-28', 0, 0, 'ng2', '2001-09-04', 'kakeungng', '2008-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS725743288730', '谷口和真', 1, '+86 21-6599-9351', 0, '492553026188488594', 'No.26 building, 536 Ganlan Rd, Pudong, Shanghai, China', '1991-01-18', 0, 0, 'tkazu', '2015-10-30', 'kazumatani429', '2002-10-16'); +INSERT INTO "public"."userinfo" VALUES ('TS851895873030', '李詩涵', 0, '+81 3-2068-1398', 1, '292588498453032740', '日本東京品川区東五反田五丁目2番7号10階', '1988-01-07', 0, 0, 'lis', '2012-07-10', 'shihal', '2013-11-26'); +INSERT INTO "public"."userinfo" VALUES ('TS387237960455', '蔣杰倫', 1, '+86 199-8274-4064', 2, '852038375121393685', 'No.25 building, 569 Huanqu South Street 2nd Alley, Dongguan, China', '1992-09-04', 0, 0, 'chiehlunch', '2009-05-10', 'chiangcl', '2006-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS972734084877', 'Arthur Campbell', 0, '+81 74-980-3474', 2, '308960861439674676', '日本ならし学園南三丁目9番1号35階', '1991-04-17', 0, 0, 'arthc', '2015-03-15', 'arthur1031', '2016-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS420451651319', '徐杰宏', 0, '+44 (116) 481 0017', 3, '257645050376112616', 'Block 4, 899 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1995-07-07', 0, 0, 'xujiehong803', '2012-01-16', 'jxu', '2017-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS942151035034', '加藤明菜', 0, '+86 152-5932-6836', 2, '754475461769710948', 'Room 31, CR Building, 937 Xiaoping E Rd, Baiyun , Guangzhou, China', '1997-07-14', 0, 0, 'katoakina6', '2021-02-13', 'akina309', '2005-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS060296093399', '孟璐', 1, '+1 718-447-1827', 0, '763518467966601173', '840 1st Ave Apartment 18, Brooklyn, NY 11220, United States', '1990-08-07', 0, 0, 'lumeng', '2016-12-17', 'meng56', '2002-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS850130333632', '傅思妤', 0, '+44 5863 891048', 0, '886433606498463874', 'Block 19, 203 New Street, Birmingham, B2 4DB, United Kingdom', '1994-10-21', 0, 0, 'szeyu16', '2008-07-09', 'fuszeyu', '2005-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS557477378248', 'Teresa Scott', 1, '+86 133-7919-9062', 2, '396351751821006430', '中国北京市西城区复兴门内大街877号16室', '1986-04-17', 0, 0, 'scter10', '2008-09-20', 'teresscot923', '2002-03-02'); +INSERT INTO "public"."userinfo" VALUES ('TS258467787839', '譚明', 0, '+86 21-248-5949', 1, '071807183679680914', '中国上海市浦东新区健祥路890号17栋', '1990-01-11', 0, 0, 'tam83', '2008-09-03', 'mtam', '2006-07-25'); +INSERT INTO "public"."userinfo" VALUES ('TS102684097468', '渡部光莉', 1, '+81 66-082-9362', 4, '732939831120624642', '2F, 4-9-16 Kamihigashi, Hirano Ward, Osaka, Japan', '1996-03-22', 0, 0, 'watanabe1006', '2015-08-16', 'hikwatanabe', '2006-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS060552050246', 'Wendy Long', 0, '+81 3-4557-8063', 3, '397240234636080764', '日本東京中央区銀座三丁目12番5号24階', '1992-04-10', 0, 0, 'wendy87', '2020-09-23', 'wlong1002', '2020-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS721788132390', '朱杰宏', 1, '+86 186-1993-3235', 2, '090852298821360130', '中国上海市黄浦区淮海中路812号华润大厦6室', '1995-12-04', 0, 0, 'jzh', '2015-07-23', 'zhujie', '2003-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS628912220227', 'Stanley Nguyen', 0, '+1 213-378-2778', 3, '780114590848221611', '244 Figueroa Street 3rd Floor, Los Angeles, CA 90037, United States', '1988-06-12', 0, 0, 'nguyen7', '2007-12-02', 'stanleynguy', '2001-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS638374045681', '馬家強', 0, '+44 5805 442801', 1, '874978632500069481', 'Block 20, 521 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1994-04-25', 0, 0, 'kkma412', '2020-11-30', 'kakeungm', '2018-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS467715683693', '徐國賢', 1, '+44 5498 513684', 0, '854482589757096421', 'No.17 Main building, 305 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1992-12-19', 0, 0, 'tsuiky', '2015-01-02', 'kytsu2', '2014-08-15'); +INSERT INTO "public"."userinfo" VALUES ('TS841361490256', 'Josephine Reyes', 1, '+44 (116) 001 5560', 2, '583267594383106789', 'Block 9, 883 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1996-01-23', 0, 0, 'josephine5', '2002-04-30', 'rjose', '2020-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS839214130123', '程晓明', 1, '+86 152-5812-3873', 2, '998022293816797633', 'No.27 building, 914 Lefeng 6th Rd, Zhongshan, China', '1996-08-18', 0, 0, 'cx1990', '2015-07-14', 'chexi', '2010-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS599052960656', '孙璐', 1, '+86 179-6274-5198', 3, '885541648029119727', '中国上海市浦东新区橄榄路741号28室', '1986-09-22', 0, 0, 'sunlu', '2001-01-27', 'lusun', '2020-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS125859905570', '岡田大輔', 0, '+44 7444 100113', 1, '494327139488091719', 'Unit 2, Oxford Eco Centre, 680 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1988-09-05', 0, 0, 'odaisu', '2019-03-18', 'okadadaisuke', '2002-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS072271618554', 'Russell Kelly', 1, '+44 7329 249915', 3, '174326293259954423', 'Block 42, 823 Redfern St, Liverpool, L20 8JB, United Kingdom', '1995-11-29', 0, 0, 'rkell', '2015-10-29', 'ker1017', '2000-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS219386905810', '伍慧儀', 1, '+81 80-8032-5001', 3, '292224128548653867', '日本札幌中央区宮の森四条六丁目1番7号46階', '1992-05-23', 0, 0, 'waiyeeng406', '2008-04-05', 'wyng6', '2003-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS980930696425', '佘麗欣', 0, '+86 10-8911-5791', 2, '177340614393347003', '中国北京市房山区岳琉路365号7楼', '1987-09-09', 0, 0, 'sheh48', '2010-01-15', 'slaiyan', '2005-03-30'); +INSERT INTO "public"."userinfo" VALUES ('TS858391002749', '林愛梨', 0, '+86 21-1232-6181', 3, '000601411882203381', 'No.44 building, 23 Jianxiang Rd, Pudong, Shanghai, China', '1990-09-30', 0, 0, 'hayashiairi', '2019-02-13', 'hayasair', '2000-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS305453980786', 'Hazel Smith', 1, '+1 718-516-4845', 2, '376381116698658791', '252 Flatbush Ave Suite 18, Brooklyn, NY 11225, United States', '1992-12-12', 0, 0, 'smithhaze', '2016-02-26', 'hazel7', '2002-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS480076210197', '山崎光', 1, '+86 20-8140-5886', 1, '934821279306887729', '中国广州市白云区小坪东路41号17栋', '1994-09-02', 0, 0, 'yamazakihikaru87', '2005-10-31', 'yamazakih5', '2000-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS360323889164', '中川蓮', 0, '+86 21-9592-4319', 1, '405750592153429896', '中国上海市浦东新区健祥路679号41号楼', '1996-08-17', 0, 0, 'renakagawa', '2002-12-27', 'rennakagawa', '2007-07-02'); +INSERT INTO "public"."userinfo" VALUES ('TS089674569334', 'Heather Henry', 0, '+44 (151) 247 8831', 1, '072402851360146140', 'Block 49, 595 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1994-03-05', 0, 0, 'hhenry', '2004-08-28', 'henry1', '2005-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS946347995221', '熊睿', 0, '+44 7390 463212', 1, '189491446317335572', 'Flat 50, 1 Pollen Street, London, W1S 1NG, United Kingdom', '1990-06-13', 0, 0, 'xionr7', '2019-01-21', 'xiongru', '2009-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS489204124463', '中山悠人', 0, '+86 183-0183-6959', 2, '664280708737956990', '中国深圳龙岗区布吉镇西环路335号5栋', '1995-12-21', 0, 0, 'nakayama406', '2000-08-17', 'nyu', '2007-12-31'); +INSERT INTO "public"."userinfo" VALUES ('TS662892541916', '官安娜', 0, '+81 66-984-6615', 0, '516786985790897583', '日本おおさかし東住吉区東田辺三丁目27番19号8階', '1990-09-02', 0, 0, 'onnakoon113', '2020-02-05', 'konna', '2018-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS646052958919', '斎藤大輔', 1, '+44 7851 028999', 4, '054843872391396618', 'Flat 34, 753 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1994-03-09', 0, 0, 'saitdaisu', '2014-02-28', 'sdaisuke3', '2004-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS454533971845', '今井結翔', 0, '+86 21-702-9892', 0, '213753852110312357', '中国上海市黄浦区淮海中路562号华润大厦32室', '1985-03-22', 0, 0, 'yuitoimai', '2018-02-10', 'yuitoimai01', '2000-03-16'); +INSERT INTO "public"."userinfo" VALUES ('TS502086599410', 'Robert Guzman', 1, '+81 80-8758-3070', 2, '875221295391114328', '日本東京渋谷区代々木二丁目3番5号7号室', '1987-08-24', 0, 0, 'robeguzman', '2010-11-17', 'guzman81', '2019-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS550509475125', '傅杰宏', 1, '+44 (151) 470 1255', 4, '418443430119620610', 'Block 43, 476 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1994-01-10', 0, 0, 'fjiehong2017', '2018-08-21', 'fujie', '2005-06-28'); +INSERT INTO "public"."userinfo" VALUES ('TS688734484399', 'Evelyn Kennedy', 1, '+86 755-499-4365', 1, '554570836133573590', 'No.49 building, 558 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1989-01-06', 0, 0, 'evkennedy', '2013-07-06', 'evken', '2015-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS871497050304', '車麗欣', 0, '+81 3-9166-0381', 1, '000301586896907887', '39-kai, 1-5-20, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1989-02-19', 0, 0, 'laiyan83', '2003-11-29', 'che2000', '2003-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS966064047405', '羅慧嫻', 0, '+81 70-4077-9168', 2, '991424502986217285', '17F, 5-19-12 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1989-08-24', 0, 0, 'lowh106', '2016-04-20', 'lowh', '2013-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS518875878532', '村上絢斗', 0, '+81 80-6505-8131', 3, '172625867121088608', '13F, 3 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1991-12-19', 0, 0, 'mayat', '2002-05-15', 'mayato1', '2012-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS112144146012', 'Ellen Martinez', 0, '+86 155-8544-3603', 1, '017541075392702143', '中国广州市白云区机场路棠苑街五巷713号34室', '1988-08-25', 0, 0, 'ellen419', '2010-08-13', 'ellenmartinez1952', '2015-09-10'); +INSERT INTO "public"."userinfo" VALUES ('TS348124097534', '藤玲玲', 0, '+81 90-3915-8010', 4, '467800032588296031', '日本札幌清田区真栄四条五丁目19番15号50階', '1990-09-08', 0, 0, 'linglingtang', '2006-01-26', 'lltang', '2020-10-13'); +INSERT INTO "public"."userinfo" VALUES ('TS501292314394', '上田愛梨', 1, '+86 28-8636-6043', 2, '827310157376536720', 'Room 22, CR Building, No.971, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1986-10-12', 0, 0, 'airiued', '2015-10-28', 'airiue', '2002-12-23'); +INSERT INTO "public"."userinfo" VALUES ('TS888506905264', '龚秀英', 1, '+86 760-002-0036', 2, '296304287964200966', '中国中山乐丰六路869号12栋', '1986-02-04', 0, 0, 'gonxiuying', '2010-11-14', 'xiugong', '2019-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS448252236516', '莫子异', 1, '+86 182-6503-7250', 1, '969941695430161268', 'Room 10, CR Building, No. 849, Shuangqing Rd, Chenghua District, Chengdu, China', '1992-01-24', 0, 0, 'mo09', '2014-12-31', 'ziyim', '2005-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS422989889579', 'Leroy Castillo', 1, '+44 (1223) 09 0762', 2, '271705595728419951', 'Block 35, 524 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1991-06-17', 0, 0, 'calero805', '2017-04-01', 'leroycastillo318', '2019-11-15'); +INSERT INTO "public"."userinfo" VALUES ('TS661244938786', '藍家文', 0, '+81 70-5901-8099', 2, '581072108671817906', '日本なごやし守山区瀬古東二丁目171番20号33号室', '1990-12-08', 0, 0, 'lamkama320', '2009-09-10', 'kamlam', '2017-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS237737606401', '陳祖兒', 1, '+1 330-019-5090', 3, '290678822368828525', '913 Fern Street Apt 49, Akron, OH 44307, United States', '1992-04-25', 0, 0, 'chan64', '2005-07-02', 'ccy6', '2002-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS401522230684', 'Louise Long', 0, '+86 755-936-8327', 2, '480664969417077726', '中国深圳罗湖区蔡屋围深南东路261号华润大厦3室', '1990-04-29', 0, 0, 'llong', '2000-03-30', 'll6', '2020-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS452512112447', '野口蒼士', 0, '+86 196-0431-0389', 3, '378887228348175232', 'Room 6, 625 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1996-08-05', 0, 0, 'aoshin01', '2001-01-27', 'aoshi05', '2004-08-08'); +INSERT INTO "public"."userinfo" VALUES ('TS597429260260', 'Christina Cooper', 1, '+86 196-3634-1859', 1, '894279581301978019', '中国成都市成华区二仙桥东三路111号26室', '1995-03-20', 0, 0, 'coopechristina', '2011-07-05', 'cochristina', '2007-12-25'); +INSERT INTO "public"."userinfo" VALUES ('TS316878219978', '苑慧儀', 0, '+86 191-3484-8773', 0, '178293217673815238', '中国成都市成华区双庆路375号43号楼', '1990-01-18', 0, 0, 'wyyuen', '2007-12-17', 'waiyee91', '2015-09-14'); +INSERT INTO "public"."userinfo" VALUES ('TS093165858281', '吳小慧', 0, '+44 (1223) 36 4021', 2, '584251780031813699', 'Unit 3, Oxford Eco Centre, 710 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-02-05', 0, 0, 'ngsiuwai', '2008-03-23', 'siuwang', '2010-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS096294195788', '佐藤絢斗', 0, '+86 755-5785-5813', 1, '782249512517484051', 'No.40 building, 168 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1990-09-03', 0, 0, 'satoay', '2004-08-12', 'aysato', '2002-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS792962945043', '文惠敏', 1, '+1 614-390-9304', 2, '660904963797274435', '967 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1988-02-19', 0, 0, 'wmman', '2013-08-02', 'man1961', '2002-01-31'); +INSERT INTO "public"."userinfo" VALUES ('TS082921195248', 'James Jimenez', 1, '+44 5254 699739', 3, '995689208310289674', 'Flat 15, 697 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1997-05-03', 0, 0, 'jijame', '2019-05-18', 'jimenezjame', '2018-08-07'); +INSERT INTO "public"."userinfo" VALUES ('TS309864610490', '沈睿', 0, '+44 5071 910422', 2, '107208137125184692', 'Block 5, 610 Park End St, Oxford, OX1 1JD, United Kingdom', '1994-09-21', 0, 0, 'rshen05', '2014-05-15', 'rui1962', '2005-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS771302164189', 'Diana Alvarez', 1, '+86 138-1992-3992', 3, '054115067156566154', 'Room 25, 759 68 Qinghe Middle St, Haidian District, Beijing, China', '1989-02-24', 0, 0, 'dianaalv7', '2019-09-11', 'adiana', '2016-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS158992649690', '蕭德華', 1, '+1 213-185-4808', 1, '921986218873736797', '818 Wall Street Apt 23, Los Angeles, CA 90003, United States', '1992-06-23', 0, 0, 'twsiu', '2010-08-27', 'takwahsiu', '2018-06-03'); +INSERT INTO "public"."userinfo" VALUES ('TS047364837624', '遠藤湊', 1, '+81 3-8030-4207', 4, '538006046018662867', '日本東京品川区東五反田五丁目2番10号49階', '1991-07-09', 0, 0, 'endmi', '2006-02-02', 'minatoendo604', '2010-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS759032368897', '林富城', 0, '+86 21-3389-1140', 2, '725546170311087753', '中国上海市黄浦区淮海中路128号36室', '1998-12-27', 0, 0, 'lafs75', '2018-10-30', 'lam98', '2014-11-17'); +INSERT INTO "public"."userinfo" VALUES ('TS856067684941', '邵睿', 1, '+1 213-914-9064', 3, '167426505441002179', '478 S Broadway 3rd Floor, Los Angeles, CA 90015, United States', '1985-10-14', 0, 0, 'ruisha', '2000-08-20', 'sharu', '2012-11-02'); +INSERT INTO "public"."userinfo" VALUES ('TS516197914978', '金子葵', 1, '+86 20-459-6568', 4, '877701142780874746', '中国广州市天河区天河路188号28栋', '1997-04-25', 0, 0, 'kao', '2012-06-30', 'aoi2', '2021-01-30'); +INSERT INTO "public"."userinfo" VALUES ('TS937582760997', 'Laura Mills', 0, '+81 80-5428-4233', 3, '331945628284916614', '日本なごやし北区楠味鋺三丁目80番8号45号室', '1999-01-05', 0, 0, 'laumills', '2017-08-02', 'laura120', '2017-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS398405321150', 'Travis Young', 0, '+81 74-353-4718', 2, '466315779751938725', '日本ならし西大寺赤田町一丁目7番1号34階', '1986-11-01', 0, 0, 'young4', '2015-05-02', 'travisyou1203', '2009-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS252755571647', '李嘉伦', 1, '+81 11-425-4644', 2, '455850784289471269', 'Rm. 29, 13-3-3 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1994-09-16', 0, 0, 'jli112', '2000-02-02', 'li8', '2006-01-05'); +INSERT INTO "public"."userinfo" VALUES ('TS551583741466', '上田葉月', 1, '+81 11-946-2837', 1, '850470409311026915', '日本札幌白石区菊水三条五丁目4番2号43階', '1987-01-25', 0, 0, 'uedhazu', '2018-02-25', 'hazu', '2010-09-05'); +INSERT INTO "public"."userinfo" VALUES ('TS837414797296', '中川蒼士', 1, '+86 10-5794-6856', 3, '953477743364844108', 'No.8 building, 873 FuXingMenNei Street, XiCheng District, Beijing, China', '1988-07-26', 0, 0, 'nakagawaa1102', '2019-11-13', 'aoshinak9', '2002-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS756152546911', '佐野涼太', 1, '+81 70-3942-6167', 1, '758863900649406675', '日本ならし西大寺赤田町一丁目7番16号21階', '1996-09-24', 0, 0, 'saryot', '2016-02-07', 'sanoryota530', '2010-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS115150222324', 'Lee Spencer', 0, '+86 165-3358-1756', 3, '297772203096016375', '26F, 228 028 County Rd, Yanqing District, Beijing, China', '1998-08-06', 0, 0, 'leespenc', '2019-09-07', 'splee5', '2003-08-24'); +INSERT INTO "public"."userinfo" VALUES ('TS529680796216', '木下瑛太', 1, '+1 614-579-2467', 1, '200198110380157831', '899 East Cooke Road 3rd Floor, Columbus, GA 43214, United States', '1993-02-19', 0, 0, 'kinoshitaeit1128', '2014-08-25', 'keita507', '2016-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS399575013062', '内田舞', 1, '+81 70-3716-5168', 2, '650396421869868960', 'Rm. 25, 18 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1997-05-22', 0, 0, 'uchidamai7', '2006-12-26', 'maiuchida', '2009-05-25'); +INSERT INTO "public"."userinfo" VALUES ('TS051454366081', 'Henry Allen', 0, '+1 614-067-0995', 3, '766353090193671449', '972 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1998-10-31', 0, 0, 'allenh', '2004-07-22', 'henall', '2016-02-05'); +INSERT INTO "public"."userinfo" VALUES ('TS950518328619', 'Theresa Hughes', 0, '+1 838-890-9463', 4, '461336881885948880', '855 Broadway Apt 5, Albany, NY 12207, United States', '1998-08-06', 0, 0, 'huthere', '2014-04-19', 'hughet87', '2014-04-19'); +INSERT INTO "public"."userinfo" VALUES ('TS211052807166', '袁秀英', 0, '+81 52-757-9562', 3, '319953132648267458', '日本なごやし瑞穂区河岸町四丁目20番3号38号室', '1985-02-24', 0, 0, 'yuanx', '2008-01-18', 'yuanxiuying609', '2006-12-26'); +INSERT INTO "public"."userinfo" VALUES ('TS667256050396', '孙宇宁', 1, '+1 213-330-5019', 1, '871548385260686925', '933 Wall Street 3rd Floor, Los Angeles, CA 90003, United States', '1995-08-04', 0, 0, 'yusun', '2022-01-11', 'suyun229', '2018-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS829150955451', '市川紗良', 0, '+1 213-180-7867', 3, '377866236210637330', '637 Figueroa Street Apartment 15, Los Angeles, CA 90037, United States', '1985-09-20', 0, 0, 'ichisara1111', '2001-08-18', 'sara417', '2009-07-01'); +INSERT INTO "public"."userinfo" VALUES ('TS152302658159', '顧梓晴', 1, '+86 20-932-6057', 1, '957189997538928192', 'No.37 building, 704 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1989-12-10', 0, 0, 'tcku', '2007-01-04', 'tszchingk', '2021-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS211496438881', '黎力申', 1, '+1 330-385-2532', 1, '256581776667259843', '695 Fern Street 3rd Floor, Akron, OH 44307, United States', '1992-08-19', 0, 0, 'lailiksun', '2003-04-03', 'lsla', '2013-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS804757170312', '廖宇宁', 0, '+86 21-1853-7194', 1, '141237391734803146', 'No.45 building, 468 Middle Huaihai Road, Huangpu District, Shanghai, China', '1987-06-21', 0, 0, 'yuning46', '2009-11-26', 'yuninglia4', '2000-03-29'); +INSERT INTO "public"."userinfo" VALUES ('TS034488987217', '尹志遠', 1, '+86 140-4341-5378', 3, '855607704629332382', 'No.48 building, 172 East Wangfujing Street, Dongcheng District , Beijing, China', '1991-10-05', 0, 0, 'chiyuen7', '2016-06-24', 'chiyuen5', '2015-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS922796921872', '高田優奈', 0, '+81 52-895-3952', 3, '634049117886574133', '日本なごやし北区清水三丁目19番14号45階', '1988-09-01', 0, 0, 'yunat', '2011-09-08', 'takadayuna2008', '2009-02-13'); +INSERT INTO "public"."userinfo" VALUES ('TS298847370361', '胡安琪', 0, '+86 21-370-6352', 3, '435240045557308575', '中国上海市闵行区宾川路570号21室', '1991-04-09', 0, 0, 'hu1003', '2011-12-22', 'hanqi', '2020-10-15'); +INSERT INTO "public"."userinfo" VALUES ('TS322838932350', '村田明菜', 1, '+86 155-0438-3558', 0, '678072698395544450', '中国北京市西城区西長安街332号45室', '1987-03-28', 0, 0, 'akina612', '2019-10-24', 'akinamurata', '2009-03-08'); +INSERT INTO "public"."userinfo" VALUES ('TS876417001044', 'Wanda Owens', 1, '+1 614-711-2903', 4, '855700742139071265', '776 Tremont Road 3rd Floor, Columbus, GA 43212, United States', '1992-09-14', 0, 0, 'wao', '2014-12-06', 'wano', '2000-11-05'); +INSERT INTO "public"."userinfo" VALUES ('TS930182760721', '梅家文', 1, '+81 90-4075-2639', 3, '589217192643412083', '36F, 3-27-11 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1988-01-25', 0, 0, 'mui41', '2018-06-20', 'muikaman107', '2018-11-25'); +INSERT INTO "public"."userinfo" VALUES ('TS824815171849', '郑睿', 1, '+86 760-5997-5336', 0, '063643981208838648', 'Room 17, CR Building, 970 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1993-08-16', 0, 0, 'zhrui', '2004-06-24', 'rui927', '2002-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS103214882458', 'Carmen Walker', 1, '+1 212-949-4269', 1, '238084946945880406', '615 Canal Street Apt 1, New York, NY 10013, United States', '1993-11-02', 0, 0, 'carmenwalker46', '2020-07-23', 'cwalker', '2015-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS048900734060', 'Edith Sanchez', 1, '+81 90-3597-6806', 2, '773692581732225982', '11-kai, 1-5-4, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1989-11-10', 0, 0, 'esanchez', '2008-05-04', 'sanchezedith', '2007-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS542422620134', '加藤美咲', 1, '+81 3-0926-3915', 1, '242512130119111481', '日本東京港区東新橋一丁目5番20号45階', '1985-01-08', 0, 0, 'kato3', '2009-06-24', 'misakikato', '2010-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS929705612854', '房霆鋒', 1, '+81 3-5045-2136', 4, '867245661843737036', 'Rm. 44, 1-6-8, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1993-06-08', 0, 0, 'fong48', '2013-04-10', 'tingfung48', '2018-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS314177698435', '大野大和', 1, '+81 52-328-2264', 4, '507200461890599398', '日本なごやし北区楠味鋺三丁目80番13号44階', '1992-10-14', 0, 0, 'onoy', '2013-04-09', 'yo115', '2002-06-26'); +INSERT INTO "public"."userinfo" VALUES ('TS598982701874', '毛嘉欣', 0, '+86 193-2517-3101', 4, '676782812779464605', 'No.44 building, 178 Ganlan Rd, Pudong, Shanghai, China', '1997-08-12', 0, 0, 'moky', '2012-08-24', 'moky', '2003-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS775974969437', '苏睿', 1, '+86 190-3286-5112', 2, '489590531849870522', '中国东莞环区南街二巷204号华润大厦50室', '1989-06-04', 0, 0, 'sur1028', '2008-02-08', 'ruisu02', '2010-04-22'); +INSERT INTO "public"."userinfo" VALUES ('TS246993453568', '湯天樂', 1, '+86 161-5812-1152', 2, '360661111776915864', '中国上海市徐汇区虹桥路90号1栋', '1997-02-03', 0, 0, 'tongtl', '2002-10-26', 'ttl', '2009-07-24'); +INSERT INTO "public"."userinfo" VALUES ('TS183140780232', '應家玲', 1, '+81 11-907-4069', 3, '331723957304803884', '8-kai, 13-3-5 Toyohira 3 Jo, Toyohira Ward, Sapporo, Japan', '1998-12-18', 0, 0, 'kalingying124', '2019-07-03', 'klying', '2002-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS070536675815', '朱家明', 0, '+86 194-2128-0665', 2, '053708936490848641', '中国中山乐丰六路965号31号楼', '1986-01-06', 0, 0, 'kamingchu', '2000-08-11', 'chu10', '2008-06-17'); +INSERT INTO "public"."userinfo" VALUES ('TS732672735656', 'Debra Sanders', 0, '+81 80-8863-8391', 0, '679681328424645278', '日本東京中央区銀座三丁目12番13号38号室', '1997-03-22', 0, 0, 'debrasa', '2002-04-16', 'debra1104', '2010-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS434744972995', '夏云熙', 1, '+81 90-6425-7893', 0, '211991558360646445', '日本東京中央区銀座三丁目12番2号30階', '1996-01-08', 0, 0, 'xiay', '2003-07-03', 'yunxixia513', '2008-09-03'); +INSERT INTO "public"."userinfo" VALUES ('TS765574048122', 'Mike Dixon', 1, '+44 5523 909636', 1, '622147015642531570', 'No.33 Main building, 296 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1993-08-14', 0, 0, 'dimike', '2001-08-14', 'dixonmik', '2017-06-19'); +INSERT INTO "public"."userinfo" VALUES ('TS547782250640', '馬淑怡', 0, '+44 (151) 344 8697', 2, '377196563959199686', 'Flat 49, 842 39 William IV St, Charing Cross, Liverpool, WC2N 4DD, United Kingdom', '1991-06-10', 0, 0, 'masukyee', '2021-07-03', 'masu', '2014-08-23'); +INSERT INTO "public"."userinfo" VALUES ('TS589048347704', '樊浩然', 0, '+1 312-222-2703', 2, '454008725170124669', '925 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1988-10-29', 0, 0, 'fahy69', '2014-05-24', 'fanhy1112', '2002-05-07'); +INSERT INTO "public"."userinfo" VALUES ('TS339913267808', '谷口大輔', 0, '+81 70-4889-8242', 2, '575060558677067845', '29-kai, 1 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-10-07', 0, 0, 'tdaisuke46', '2000-08-04', 'taniguchidaisuke', '2002-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS770888137105', 'Amanda Simmons', 1, '+1 614-588-1568', 2, '069863358532818497', '31 Wicklow Road 3rd Floor, Columbus, GA 43204, United States', '1993-02-09', 0, 0, 'simmonsamanda', '2008-05-21', 'amanda3', '2020-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS198426374307', '薛慧琳', 1, '+1 312-830-3605', 4, '171442325280868518', '464 Rush Street 3rd Floor, Chicago, IL 60611, United States', '1987-06-22', 0, 0, 'sitwailam', '2008-09-20', 'wlsit', '2016-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS641057044259', 'Jeffrey Morales', 0, '+44 5024 235463', 1, '619539807808665170', 'No.44 Main building, 900 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1987-05-19', 0, 0, 'jeffreymorales', '2017-04-14', 'moralesje6', '2009-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS552564941547', '馮志遠', 0, '+44 (121) 728 4386', 1, '765864404216964703', 'Unit 48, Oxford Eco Centre, 808 Stephenson Street, Birmingham, B2 4BL, United Kingdom', '1987-07-20', 0, 0, 'fung04', '2013-04-07', 'fungcy', '2007-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS820838272685', '方震南', 0, '+81 74-127-6335', 0, '381149224146882523', '日本ならし西大寺赤田町一丁目7番5号9階', '1989-08-10', 0, 0, 'fangzhenn', '2019-07-20', 'zhefang', '2020-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS523406248343', 'Shannon Powell', 1, '+86 162-1825-1847', 4, '627672485282320109', '43F, 893 Hongqiao Rd., Xu Hui District, Shanghai, China', '1986-05-03', 0, 0, 'powelshannon02', '2018-09-30', 'shannonp', '2003-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS747830050627', 'Shawn Hamilton', 0, '+86 760-4267-3210', 0, '535285943890800281', '中国中山天河区大信商圈大信南路896号27栋', '1989-07-16', 0, 0, 'hams7', '2014-09-04', 'shawnhamilton05', '2010-12-01'); +INSERT INTO "public"."userinfo" VALUES ('TS601079129435', 'Ethel Medina', 0, '+86 180-6816-2333', 1, '498374110712693591', 'No.2 building, 274 Tianbei 1st Rd, Luohu District, Shenzhen, China', '1989-02-03', 0, 0, 'ethelmedin820', '2009-08-31', 'ethelmedina', '2001-01-27'); +INSERT INTO "public"."userinfo" VALUES ('TS308580196712', '馮發', 0, '+86 755-919-8968', 3, '671314803357504026', '中国深圳罗湖区清水河一路775号39室', '1993-12-06', 0, 0, 'fungfat', '2002-10-01', 'fat7', '2000-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS537254233919', 'Judith Owens', 0, '+44 (20) 0224 6482', 1, '877089220796094379', 'Flat 49, 688 Regent Street, London, W1B 2LX, United Kingdom', '1988-11-29', 0, 0, 'jowens', '2008-03-02', 'judiow78', '2014-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS861531925382', '郝云熙', 1, '+1 614-734-6973', 3, '471647730374949664', '279 East Alley Apartment 20, Columbus, GA 43201, United States', '1995-12-01', 0, 0, 'yunxihao', '2021-11-04', 'hao808', '2011-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS188364291187', '區淑怡', 1, '+81 3-2999-4528', 3, '303277267001720684', '日本東京渋谷区代々木二丁目3番15号18号室', '1989-02-26', 0, 0, 'syau113', '2008-11-30', 'ausukyee427', '2018-11-10'); +INSERT INTO "public"."userinfo" VALUES ('TS989452359378', '官霆鋒', 1, '+86 133-4559-9204', 3, '233463212715995127', 'No.27 building, 295 Jingtian East 1st St, Futian District, Shenzhen, China', '1988-07-22', 0, 0, 'koontf', '2012-01-30', 'tfkoon1943', '2012-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS860106969455', '渡辺翼', 1, '+44 (1865) 89 2881', 2, '191449759284667605', 'No.12 Main building, 87 Abingdon Rd, Cumnor, Oxford, OX2 9QN, United Kingdom', '1995-12-31', 0, 0, 'st3', '2008-10-05', 'tsubasasato', '2000-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS300390509012', 'Manuel Griffin', 1, '+86 755-5841-2919', 2, '046310149872945323', 'Room 42, 191 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1985-03-30', 0, 0, 'griffin4', '2020-02-17', 'manuelgriffin', '2008-05-04'); +INSERT INTO "public"."userinfo" VALUES ('TS273763873825', 'Doris Green', 1, '+81 66-864-4343', 1, '966614372969103868', '日本おおさかし西成区出城一丁目1番16号22階', '1998-07-17', 0, 0, 'greendo', '2011-03-29', 'greendo', '2018-04-02'); +INSERT INTO "public"."userinfo" VALUES ('TS283304314588', '官力申', 0, '+86 755-5548-2712', 1, '098144505961393073', '中国深圳福田区深南大道482号43栋', '1988-04-25', 0, 0, 'liksun71', '2015-06-01', 'liksun725', '2001-02-21'); +INSERT INTO "public"."userinfo" VALUES ('TS351145251081', '朱天榮', 0, '+81 80-7786-8941', 0, '741793175709924482', 'Rm. 15, 5-19-1 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1997-11-06', 0, 0, 'tinwingchu', '2005-11-03', 'twchu2', '2016-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS314420671535', 'Justin Shaw', 0, '+44 5286 222407', 2, '123798893814919896', 'Flat 5, 802 Pollen Street, London, W1S 1NG, United Kingdom', '1990-05-16', 0, 0, 'justins2', '2006-10-01', 'justin1218', '2005-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS348170533619', '邵家輝', 0, '+86 21-2830-5443', 3, '116130294242075368', 'No.18 building, 322 Binchuan Rd, Minhang District, Shanghai, China', '1995-01-27', 0, 0, 'kfs', '2007-03-22', 'kafaisiu', '2009-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS146723108493', '加藤優奈', 1, '+81 70-7832-3777', 1, '618191140697416753', '日本東京渋谷区代々木二丁目3番1号3階', '1985-08-18', 0, 0, 'yunak1', '2011-04-14', 'yunaka1113', '2016-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS489918890381', '姜霆鋒', 0, '+86 20-872-5372', 0, '305645992580294026', '中国广州市天河区天河路366号35栋', '1993-11-07', 0, 0, 'changtf', '2014-02-09', 'tingfungch7', '2007-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS261185326749', '木下花', 0, '+86 131-5854-1357', 1, '803683750598597673', 'No.24 building, 725 FuXingMenNei Street, XiCheng District, Beijing, China', '1987-04-08', 0, 0, 'hanakinoshita', '2010-12-11', 'kinhan', '2010-07-11'); +INSERT INTO "public"."userinfo" VALUES ('TS949049039042', '中島詩乃', 1, '+44 (161) 854 6482', 0, '634228133549721368', 'Block 20, 751 New Wakefield St, Manchester, M1 5NP, United Kingdom', '1990-01-29', 0, 0, 'sn1942', '2004-05-15', 'nakajima1', '2004-09-13'); +INSERT INTO "public"."userinfo" VALUES ('TS859056659077', '盧潤發', 0, '+81 70-2869-6888', 0, '135228939347453164', 'Rm. 12, 5-4-17 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1992-03-07', 0, 0, 'yflo2', '2011-08-09', 'loyunfat', '2000-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS462101423136', '傅震南', 0, '+86 760-4506-7578', 2, '726524358953167007', '中国中山乐丰六路900号31号楼', '1992-01-15', 0, 0, 'fuzhennan', '2016-04-30', 'zhfu', '2002-03-28'); +INSERT INTO "public"."userinfo" VALUES ('TS013661850567', '梁子异', 0, '+1 614-952-8386', 0, '614908539659542241', '608 Diplomacy Drive Apartment 36, Columbus, GA 43228, United States', '1997-07-30', 0, 0, 'liang6', '2006-11-24', 'liang6', '2014-07-30'); +INSERT INTO "public"."userinfo" VALUES ('TS030581483958', '邵璐', 1, '+44 (1223) 33 5840', 4, '334619919792892762', 'Flat 13, 349 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1986-12-10', 0, 0, 'lush1', '2002-06-13', 'lusha', '2015-11-12'); +INSERT INTO "public"."userinfo" VALUES ('TS678943309728', '苑永權', 1, '+86 161-4126-6530', 0, '921672518217474036', 'Room 16, CR Building, 628 Lefeng 6th Rd, Zhongshan, China', '1988-02-04', 0, 0, 'wingkuenyuen', '2014-06-06', 'wingkueny', '2014-06-11'); +INSERT INTO "public"."userinfo" VALUES ('TS591711992926', 'Howard Murray', 1, '+44 (116) 933 4445', 2, '758413820149547140', 'Flat 49, 414 Narborough Rd, Leicester, LE3 2FT, United Kingdom', '1995-03-15', 0, 0, 'murray10', '2015-06-30', 'howard1', '2010-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS885391454380', '工藤明菜', 1, '+86 179-6427-1371', 3, '033146209374378550', 'No.39 building, 299 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1997-07-16', 0, 0, 'kudoaki', '2016-09-03', 'kudo71', '2009-06-16'); +INSERT INTO "public"."userinfo" VALUES ('TS345928225042', '洪曉彤', 0, '+86 28-5178-7758', 3, '718240416767959290', 'Room 23, CR Building, 437 4th Section Renmin South Road, Jinjiang District, Chengdu, China', '1985-11-06', 0, 0, 'hunght8', '2008-07-20', 'hht', '2003-09-24'); +INSERT INTO "public"."userinfo" VALUES ('TS747577897399', '萬志明', 1, '+81 66-526-1279', 0, '707655895259634547', '10F, 3-27-9 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1991-05-19', 0, 0, 'meng524', '2003-04-25', 'mengcm', '2011-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS984940931607', '余子异', 0, '+86 28-622-2883', 1, '766685598127859129', '中国成都市锦江区红星路三段123号7号楼', '1987-02-22', 0, 0, 'yu2008', '2020-02-09', 'yu1972', '2017-02-16'); +INSERT INTO "public"."userinfo" VALUES ('TS721716544056', 'Susan Garcia', 0, '+44 (116) 254 7659', 2, '645649705307134957', 'Block 45, 668 Wyngate Dr, Leicester, LE3 0UW, United Kingdom', '1991-03-01', 0, 0, 'garcia613', '2020-09-11', 'susang01', '2003-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS207733338289', '石田大地', 1, '+86 131-0127-8391', 3, '998583498284488600', 'Room 35, 858 Huanqu South Street 2nd Alley, Dongguan, China', '1987-05-27', 0, 0, 'ishidda8', '2003-01-31', 'daiishid', '2015-06-27'); +INSERT INTO "public"."userinfo" VALUES ('TS236883475132', '邓睿', 0, '+81 3-0615-1604', 2, '447688839725904899', '日本東京渋谷区代々木二丁目3番12号46階', '1995-11-10', 0, 0, 'rdeng', '2010-01-10', 'rudeng', '2007-11-28'); +INSERT INTO "public"."userinfo" VALUES ('TS267481376235', 'Alice Murphy', 1, '+86 755-6165-4881', 3, '112568928541454838', '中国深圳罗湖区清水河一路750号华润大厦47室', '1991-09-27', 0, 0, 'alicemurph', '2005-08-25', 'alicemurphy707', '2007-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS723911978686', '林蒼士', 1, '+86 20-305-1048', 2, '810680356043424598', '47F, 287 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1985-02-05', 0, 0, 'hayashi1', '2015-09-16', 'aoshi9', '2014-08-25'); +INSERT INTO "public"."userinfo" VALUES ('TS981359504505', 'Sherry Rivera', 1, '+81 90-7665-9279', 4, '210772626608298288', '日本おおさかし東住吉区東田辺三丁目27番13号50階', '1987-05-30', 0, 0, 'rives1126', '2002-11-02', 'rivsher', '2012-01-09'); +INSERT INTO "public"."userinfo" VALUES ('TS434474875180', '區祖兒', 1, '+81 80-6322-6547', 2, '726404412025300827', '4-kai, 5-4-14 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1997-06-13', 0, 0, 'choyau', '2018-04-22', 'cyau91', '2020-11-20'); +INSERT INTO "public"."userinfo" VALUES ('TS738030225873', 'Brandon Price', 0, '+86 188-1813-5626', 1, '741304728814124159', '中国北京市东城区东单王府井东街462号10栋', '1988-06-13', 0, 0, 'brandon2', '2008-02-13', 'brandonprice', '2016-10-25'); +INSERT INTO "public"."userinfo" VALUES ('TS824434258371', '山本百恵', 0, '+44 5065 837934', 3, '261496568071892796', 'Unit 22, Oxford Eco Centre, 173 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1990-07-29', 0, 0, 'momyamamoto7', '2014-02-26', 'yamamotom', '2006-09-12'); +INSERT INTO "public"."userinfo" VALUES ('TS405688157411', 'Hazel Hamilton', 0, '+81 52-536-4541', 3, '071942586023961287', '46F, 7 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1990-11-28', 0, 0, 'hamiltonhaze604', '2008-07-20', 'hamha', '2001-02-17'); +INSERT INTO "public"."userinfo" VALUES ('TS349534220405', '樂永權', 0, '+81 90-9030-0748', 2, '479791281271236685', '日本東京中央区銀座三丁目12番6号12階', '1985-12-04', 0, 0, 'lok3', '2005-08-09', 'wingkuen1956', '2017-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS925675718511', '马睿', 0, '+81 70-3803-3602', 2, '024432107806520880', '37F, 5-2-1 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1996-03-17', 0, 0, 'mr00', '2018-10-25', 'ruim', '2013-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS354537914659', 'Joel Stone', 1, '+81 70-2735-3089', 2, '265267889527985629', 'Rm. 49, 5-19-2 Shinei 4 Jo, Kiyota Ward, Sapporo, Japan', '1990-07-26', 0, 0, 'stonejoel', '2010-03-04', 'stoj', '2019-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS833043440450', '方宇宁', 0, '+81 66-589-1183', 3, '314690419836757982', 'Rm. 12, 1-7-2 Omido, Higashiosaka, Osaka, Japan', '1994-04-16', 0, 0, 'yuningfa', '2007-08-09', 'yuningfan', '2008-04-09'); +INSERT INTO "public"."userinfo" VALUES ('TS217443439035', '藤井絢斗', 0, '+86 755-8796-9104', 0, '947585173493897149', '中国深圳罗湖区蔡屋围深南东路844号18栋', '1997-01-28', 0, 0, 'fujiiayato', '2000-06-21', 'ayatofujii4', '2014-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS807889327361', '鄺慧敏', 1, '+1 312-178-6792', 0, '249697282833804953', '765 Pedway Suite 26, Chicago, IL 60601, United States', '1993-11-04', 0, 0, 'waimankwong', '2018-03-18', 'waimankwong', '2013-09-02'); +INSERT INTO "public"."userinfo" VALUES ('TS459901722529', 'Denise Walker', 0, '+81 66-022-7558', 2, '942101609764329708', '日本おおさかし西成区出城一丁目1番1号23階', '1990-02-13', 0, 0, 'dwalker44', '2015-03-04', 'waden', '2000-09-06'); +INSERT INTO "public"."userinfo" VALUES ('TS475506021145', '卢宇宁', 0, '+44 5810 212951', 1, '626631206214351904', 'Unit 4, Oxford Eco Centre, 332 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-07-10', 0, 0, 'luyuning', '2018-11-13', 'yuningl', '2016-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS178134596436', '毛國權', 0, '+81 70-4336-7196', 3, '648019786948087735', '日本おおさかし西成区天神ノ森二丁目1番4号39号室', '1988-06-02', 0, 0, 'mokk', '2019-11-26', 'kwokkuenm4', '2003-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS999414513019', '長谷川結翔', 0, '+81 3-5311-9717', 3, '414794861031464619', '日本東京港区東新橋一丁目5番3号27階', '1990-10-04', 0, 0, 'hasegyuito3', '2004-11-05', 'hy10', '2011-06-12'); +INSERT INTO "public"."userinfo" VALUES ('TS309969327953', '黄安琪', 1, '+81 70-7389-4614', 1, '409727456075680772', '21-kai, 1-7-15 Saidaiji Akodacho, Nara, Japan', '1993-03-06', 0, 0, 'huanganq5', '2002-12-19', 'huanganqi1115', '2004-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS014815168363', 'Josephine Mitchell', 0, '+1 718-005-6582', 3, '312614974337042478', '904 Bergen St 3rd Floor, Brooklyn, NY 11217, United States', '1987-07-15', 0, 0, 'mitjosep', '2018-12-13', 'mitcj89', '2012-05-27'); +INSERT INTO "public"."userinfo" VALUES ('TS202555917790', 'Linda Rice', 1, '+81 3-1036-5161', 1, '465024044775391749', '日本東京品川区東五反田五丁目2番12号44階', '1988-11-21', 0, 0, 'ricelind', '2019-03-25', 'lindari1963', '2011-04-17'); +INSERT INTO "public"."userinfo" VALUES ('TS133209564821', '鄺慧珊', 0, '+1 614-075-6048', 3, '970165748625586239', '727 East Cooke Road Apt 38, Columbus, GA 43214, United States', '1997-10-28', 0, 0, 'kwonwaisan', '2014-07-26', 'kwowaisan', '2017-05-05'); +INSERT INTO "public"."userinfo" VALUES ('TS698686626332', 'Kathryn Kelley', 1, '+86 755-8971-0777', 3, '259510334063896836', '中国深圳龙岗区学园一巷526号46号楼', '1992-01-23', 0, 0, 'kelley4', '2012-04-05', 'kelleykathryn8', '2012-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS979253537191', 'Jesus Williams', 0, '+81 90-5583-9379', 4, '969832771279605977', '日本東京千代田区丸の内一丁目6番16号35階', '1991-07-16', 0, 0, 'williams5', '2006-06-12', 'jesuswilliams1117', '2007-06-02'); +INSERT INTO "public"."userinfo" VALUES ('TS291155046875', '上野葉月', 1, '+44 (1865) 83 3163', 1, '109244001877942696', 'Unit 20, Oxford Eco Centre, 990 Park End St, Oxford, OX1 1JD, United Kingdom', '1990-01-06', 0, 0, 'hazukiuen', '2002-06-20', 'uenoh', '2014-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS580190102692', '市川陸', 1, '+1 614-402-2820', 4, '560468576459141598', '798 Tremont Road Apartment 9, Columbus, GA 43212, United States', '1997-07-15', 0, 0, 'riku8', '2002-12-22', 'ichikawariku95', '2009-02-02'); +INSERT INTO "public"."userinfo" VALUES ('TS635699101340', '森架純', 1, '+44 5221 032182', 3, '364148926657089393', 'Flat 26, 18 Hanover St, Liverpool, L1 4AF, United Kingdom', '1996-08-04', 0, 0, 'morikasumi', '2009-07-17', 'mori6', '2001-01-15'); +INSERT INTO "public"."userinfo" VALUES ('TS061607022329', '鄭詠詩', 0, '+81 11-820-8953', 2, '484961347839967188', '13-kai, 2-1-6 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1996-07-03', 0, 0, 'wingsc', '2006-03-22', 'cwingsze', '2001-06-30'); +INSERT INTO "public"."userinfo" VALUES ('TS500588999139', 'Grace Ramos', 1, '+86 21-5999-7765', 3, '188072646278967229', '中国上海市浦东新区橄榄路485号10号楼', '1991-10-07', 0, 0, 'ramgrac', '2005-09-25', 'ragrace1960', '2004-02-04'); +INSERT INTO "public"."userinfo" VALUES ('TS043985472567', '彭思妤', 0, '+44 (116) 109 6953', 3, '275299582823160029', 'Flat 7, 91 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1996-01-11', 0, 0, 'pansze', '2020-07-31', 'szeyupang', '2009-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS515357360877', '盧梓晴', 0, '+81 3-9138-4702', 2, '486573450266440881', '13-kai, 2-3-19 Yoyogi, Shibuya-ku, Tokyo, Japan', '1986-10-06', 0, 0, 'tclo3', '2019-04-01', 'tclo8', '2002-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS453657244365', '李慧儀', 1, '+86 174-9381-7475', 1, '950240578571485880', '中国上海市浦东新区健祥路40号24号楼', '1997-11-17', 0, 0, 'waiyeelee', '2020-06-05', 'leewaiyee9', '2014-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS994836189196', 'Rebecca Olson', 1, '+81 90-1461-1524', 2, '633559823825536235', '日本札幌豊平区豊平三条十三丁目3番20号7号室', '1990-01-13', 0, 0, 'rebeccaolson7', '2006-02-28', 'rebolson80', '2018-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS157658221162', '古世榮', 1, '+86 172-4419-3708', 4, '758176789611805470', 'Room 46, 618 Qingshuihe 1st Rd, Luohu District, Shenzhen, China', '1986-08-15', 0, 0, 'saiwingku1', '2007-08-06', 'kusw', '2008-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS637532937680', '何震南', 1, '+1 212-596-8813', 3, '395683250909451097', '23 Fifth Avenue Apt 10, New York, NY 10017, United States', '1986-02-02', 0, 0, 'zhe102', '2010-07-24', 'zhhe8', '2007-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS437151071315', '戚永權', 0, '+1 838-583-9323', 2, '240990278216793597', '345 Broadway Apt 12, Albany, NY 12207, United States', '1997-06-27', 0, 0, 'chicwing5', '2008-12-13', 'chiwingkuen98', '2022-02-23'); +INSERT INTO "public"."userinfo" VALUES ('TS647588952158', '太田明菜', 0, '+86 760-542-2784', 1, '497460909782681322', '中国中山京华商圈华夏街55号1楼', '1996-12-12', 0, 0, 'akinota', '2018-01-01', 'akota', '2008-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS625327826507', 'Thomas Harrison', 1, '+81 80-0863-5159', 3, '523649657588485381', '日本ならし大和郡山市本庄町一丁目1番15号19階', '1991-01-05', 0, 0, 'harrisonth', '2020-04-30', 'harrit7', '2016-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS136353261431', '郭杰宏', 0, '+81 74-331-3615', 2, '197959091941878405', '23F, 1-7-7 Saidaiji Akodacho, Nara, Japan', '1985-07-08', 0, 0, 'jiehongg', '2001-03-25', 'gjie', '2018-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS682598653782', '中川健太', 1, '+86 179-1813-4505', 4, '376034696108686065', '中国广州市越秀区中山二路119号华润大厦37室', '1991-09-29', 0, 0, 'kennaka828', '2012-02-11', 'ken', '2022-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS610812052663', 'Jason Walker', 0, '+81 90-8642-7923', 1, '970014856039508113', '36F, 9 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1990-03-19', 0, 0, 'jasonwalker924', '2017-05-20', 'walkjason5', '2008-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS153264594082', '松井彩乃', 1, '+1 330-933-0913', 4, '736812804487867905', '454 Collier Road 3rd Floor, Akron, OH 44320, United States', '1985-06-05', 0, 0, 'matsuiayano', '2016-02-13', 'maaya', '2014-10-11'); +INSERT INTO "public"."userinfo" VALUES ('TS642045663028', '中森瑛太', 1, '+81 3-3573-1039', 2, '844407484173809063', '日本東京千代田区丸の内一丁目6番13号48号室', '1997-05-16', 0, 0, 'nakamoriei', '2010-03-20', 'nakamori63', '2020-07-19'); +INSERT INTO "public"."userinfo" VALUES ('TS426383588810', 'Kathryn Mendoza', 0, '+86 171-5072-4522', 1, '565698513891575002', 'Room 16, CR Building, 644 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1995-07-06', 0, 0, 'kam', '2018-06-24', 'kmend', '2002-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS178046217225', 'Keith Green', 0, '+44 (20) 1216 7878', 1, '910503553831468911', 'No.36 Main building, 315 Maddox Street, London, W1S 1PU, United Kingdom', '1990-06-25', 0, 0, 'greenkeith521', '2004-12-09', 'gk502', '2002-05-08'); +INSERT INTO "public"."userinfo" VALUES ('TS814893141100', '彭富城', 1, '+86 760-471-1988', 2, '722574943474966808', 'Room 22, CR Building, 203 Lefeng 6th Rd, Zhongshan, China', '1990-02-21', 0, 0, 'fspang', '2020-05-07', 'pangfs', '2014-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS269811895199', 'Curtis Mendoza', 0, '+44 5552 773579', 3, '469226208336852224', 'No.40 Main building, 660 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1989-01-29', 0, 0, 'mcurt718', '2015-07-26', 'curtism', '2007-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS855347496047', '汪世榮', 0, '+81 3-4174-4610', 3, '802888437481574938', '日本東京渋谷区代々木二丁目3番17号43階', '1995-07-03', 0, 0, 'saiwingw', '2008-04-17', 'wonsaiwing218', '2001-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS575555673570', '石田大和', 0, '+81 66-508-3217', 0, '128383879468375153', '日本おおさかし西成区天神ノ森二丁目1番8号3号室', '1990-03-30', 0, 0, 'ishida1', '2011-06-29', 'ishida108', '2005-05-12'); +INSERT INTO "public"."userinfo" VALUES ('TS190860712577', '西村愛梨', 0, '+81 66-413-8335', 1, '554404882785767739', '日本おおさかし西成区出城一丁目1番9号41階', '1992-09-15', 0, 0, 'anishimura3', '2021-08-20', 'nishimuraai46', '2002-02-01'); +INSERT INTO "public"."userinfo" VALUES ('TS546320574468', '菊地美月', 0, '+1 330-263-2781', 2, '688599745754962393', '263 West Market Street Apartment 49, Akron, OH 44333, United States', '1998-09-05', 0, 0, 'mitsukiki', '2008-05-30', 'kmitsuki', '2010-04-21'); +INSERT INTO "public"."userinfo" VALUES ('TS603887528053', '何安琪', 0, '+81 70-7851-6500', 4, '269475971543963244', '日本おおさかし東住吉区東田辺三丁目27番1号36階', '1992-02-12', 0, 0, 'hean', '2011-06-16', 'hanqi', '2003-10-08'); +INSERT INTO "public"."userinfo" VALUES ('TS599026269858', '前田大輔', 1, '+81 66-234-4244', 4, '359374690188396711', 'Rm. 9, 4-9-10 Kamihigashi, Hirano Ward, Osaka, Japan', '1990-09-08', 0, 0, 'daisumae', '2009-12-31', 'maeda8', '2016-06-24'); +INSERT INTO "public"."userinfo" VALUES ('TS977847201220', 'Don Washington', 0, '+86 176-6838-4151', 1, '940932697145751978', 'No.19 building, No.422, Dongsan Road, Erxianqiao, Chenghua District, Chengdu, China', '1990-01-30', 0, 0, 'donwashington4', '2002-03-10', 'washingtondon', '2004-02-07'); +INSERT INTO "public"."userinfo" VALUES ('TS655681826972', '鐘明詩', 0, '+86 21-5121-5958', 1, '115668894721278747', 'No.33 building, 572 Jianxiang Rd, Pudong, Shanghai, China', '1989-03-18', 0, 0, 'cmingsze', '2013-10-24', 'chungms', '2015-05-24'); +INSERT INTO "public"."userinfo" VALUES ('TS447260654813', '梅發', 0, '+44 7039 861478', 3, '696241693638398959', 'Flat 20, 111 Silver St, Newnham, Cambridge, CB3 9EL, United Kingdom', '1994-12-17', 0, 0, 'fatmui414', '2017-07-28', 'muifat414', '2018-09-30'); +INSERT INTO "public"."userinfo" VALUES ('TS468970382319', '宣發', 0, '+81 52-486-4627', 3, '894071290739117102', '日本なごやし熱田区千年二丁目5番10号43階', '1995-09-18', 0, 0, 'faths', '2014-12-22', 'fhsuan4', '2015-09-17'); +INSERT INTO "public"."userinfo" VALUES ('TS243988575525', '蕭俊宇', 0, '+81 11-193-1281', 2, '011465372599161091', '日本札幌厚別区上野幌一条二丁目1番2号38階', '1995-03-19', 0, 0, 'sicy', '2008-05-03', 'schunyu', '2015-10-05'); +INSERT INTO "public"."userinfo" VALUES ('TS646466333628', 'Fred Rogers', 0, '+44 5398 584078', 2, '065387795957552216', 'No.6 Main building, 229 Hinckley Rd, Leicester, LE3 6FR, United Kingdom', '1987-09-07', 0, 0, 'fredrogers', '2014-07-31', 'fredrogers', '2021-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS641492444206', '贾安琪', 1, '+86 178-1960-6029', 1, '416859136225409692', '中国北京市东城区东单王府井东街67号34室', '1992-05-19', 0, 0, 'jiaan', '2000-10-10', 'anj4', '2000-08-14'); +INSERT INTO "public"."userinfo" VALUES ('TS610403730115', '清水美月', 1, '+86 152-3151-2336', 2, '155000900974058045', 'Room 4, 382 Jianxiang Rd, Pudong, Shanghai, China', '1989-09-02', 0, 0, 'smitsuki', '2021-06-02', 'mitsukishimizu', '2008-10-09'); +INSERT INTO "public"."userinfo" VALUES ('TS799711924767', 'Marvin Meyer', 0, '+86 760-503-5579', 0, '485124204533026086', '35F, 181 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1985-11-17', 0, 0, 'meyemarvin08', '2014-10-20', 'meyermarvin', '2005-01-02'); +INSERT INTO "public"."userinfo" VALUES ('TS225323929835', 'Robert Chavez', 1, '+81 80-5720-8995', 1, '001026563853045884', '20F, 1-5-3, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1995-04-30', 0, 0, 'chavez8', '2010-09-11', 'robert8', '2015-07-22'); +INSERT INTO "public"."userinfo" VALUES ('TS609829765387', 'Janet Soto', 0, '+1 212-304-5718', 1, '250012472750517890', '722 Wooster Street Apt 17, New York, NY 10012, United States', '1996-08-31', 0, 0, 'sj57', '2004-04-02', 'sotojane', '2017-12-16'); +INSERT INTO "public"."userinfo" VALUES ('TS988095645290', '段宇宁', 0, '+1 212-999-3949', 2, '637595227657797384', '216 Fifth Avenue Apartment 36, New York, NY 10017, United States', '1999-01-17', 0, 0, 'duan10', '2005-06-02', 'dyuning', '2008-10-10'); +INSERT INTO "public"."userinfo" VALUES ('TS141454581990', '汪家強', 1, '+81 80-7423-6306', 3, '597605554168319609', '10-kai, 2-3-13 Yoyogi, Shibuya-ku, Tokyo, Japan', '1990-01-12', 0, 0, 'kakeung96', '2019-07-27', 'kakeungwong', '2001-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS360021850270', 'Anthony Thomas', 1, '+44 (151) 827 7202', 3, '163178682503479221', 'Flat 38, 380 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1992-10-14', 0, 0, 'at6', '2008-04-19', 'anthony91', '2011-07-03'); +INSERT INTO "public"."userinfo" VALUES ('TS911902664149', '高田湊', 0, '+1 838-983-7910', 1, '971036809121208328', '591 Central Avenue Apt 50, Albany, NY 12205, United States', '1997-06-23', 0, 0, 'mtakada1949', '2011-04-24', 'takadaminat8', '2009-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS532971560580', '梅學友', 1, '+81 80-7927-7870', 1, '963935083990173142', '33-kai, 1-7-12 Omido, Higashiosaka, Osaka, Japan', '1998-08-17', 0, 0, 'hymui', '2013-07-24', 'muihokyau', '2000-06-23'); +INSERT INTO "public"."userinfo" VALUES ('TS917441991675', 'Victoria Gibson', 0, '+86 10-2037-6867', 2, '051567078144954459', '中国北京市東城区東直門內大街468号30号楼', '1997-04-21', 0, 0, 'gvictoria', '2016-11-29', 'gibsonvic', '2011-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS223751149835', '杉山悠人', 0, '+86 180-4717-3358', 0, '466107834554079336', 'Room 2, CR Building, 371 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1990-03-10', 0, 0, 'yutosugiyama', '2014-12-27', 'sugiyyu811', '2016-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS958595242529', '野村玲奈', 1, '+1 213-935-3192', 1, '794336506271792877', '877 Grape Street Suite 5, Los Angeles, CA 90002, United States', '1989-09-27', 0, 0, 'nre', '2005-11-19', 'nr7', '2021-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS936134274806', '後藤美緒', 1, '+86 177-4274-5993', 3, '298209523252394858', '中国广州市天河区天河路283号13号楼', '1996-08-18', 0, 0, 'gomio', '2007-06-23', 'mio814', '2006-09-21'); +INSERT INTO "public"."userinfo" VALUES ('TS018415437915', '中森翼', 1, '+86 28-4092-8919', 3, '816410633736747262', '中国成都市成华区双庆路344号9楼', '1993-02-01', 0, 0, 'nt710', '2009-03-21', 'tsubasanak913', '2001-10-14'); +INSERT INTO "public"."userinfo" VALUES ('TS822616587153', '黃裕玲', 0, '+81 74-369-9126', 0, '220501632579800423', '日本ならし西大寺赤田町一丁目7番11号20号室', '1986-03-29', 0, 0, 'ylw5', '2002-10-10', 'yuling44', '2019-04-11'); +INSERT INTO "public"."userinfo" VALUES ('TS156333166380', '松田百恵', 0, '+86 175-8370-1354', 1, '380746630049578454', '中国成都市成华区双庆路338号34号楼', '1988-12-10', 0, 0, 'momoem', '2006-09-25', 'momoem', '2009-12-24'); +INSERT INTO "public"."userinfo" VALUES ('TS573961366614', '黃家明', 0, '+1 312-429-9691', 0, '756152437054517602', '69 Pedway Apartment 50, Chicago, IL 60601, United States', '1994-05-12', 0, 0, 'wongkaming819', '2007-04-30', 'kaming43', '2019-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS568683487830', '贺嘉伦', 1, '+44 (1865) 54 2077', 3, '788622804011969847', 'No.23 Main building, 49 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1988-12-25', 0, 0, 'jiahe57', '2015-03-28', 'hejial', '2021-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS458366349166', '武田百花', 0, '+81 90-2088-8555', 4, '201046368594544831', '日本東京中央区銀座三丁目12番20号6階', '1997-01-07', 0, 0, 'takedamomok', '2017-10-23', 'momta', '2020-09-01'); +INSERT INTO "public"."userinfo" VALUES ('TS108111280595', '宮崎光', 1, '+44 5719 069234', 3, '866371787611527552', 'Flat 42, 958 Portland St, Manchester, M1 3LA, United Kingdom', '1997-04-30', 0, 0, 'mihikaru4', '2010-09-11', 'hikarumiyazaki', '2010-04-29'); +INSERT INTO "public"."userinfo" VALUES ('TS517127011113', '馮玲玲', 0, '+1 838-997-1412', 0, '690543975326023712', '341 Broadway Apt 45, Albany, NY 12207, United States', '1990-10-07', 0, 0, 'linglingfu12', '2007-05-17', 'fll', '2008-11-21'); +INSERT INTO "public"."userinfo" VALUES ('TS347741838136', '宮本陽太', 1, '+86 132-9048-8343', 2, '036950343494126713', '17F, 363 Shennan Ave, Futian District, Shenzhen, China', '1997-08-02', 0, 0, 'miyamoto57', '2015-03-10', 'miyamoto71', '2003-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS900847788318', '有村大和', 1, '+81 74-030-9904', 2, '653814553820973103', '日本ならし西大寺赤田町一丁目7番9号9階', '1990-08-14', 0, 0, 'yaar84', '2003-07-17', 'ya5', '2011-09-28'); +INSERT INTO "public"."userinfo" VALUES ('TS609608865504', 'Jason Fernandez', 1, '+86 769-380-3781', 3, '961762726092867387', '中国东莞环区南街二巷191号华润大厦5室', '1994-12-09', 0, 0, 'fernandezj', '2013-03-20', 'fjason', '2002-03-18'); +INSERT INTO "public"."userinfo" VALUES ('TS352123305970', 'Todd Young', 0, '+81 66-068-5627', 1, '342611554915216309', '13-kai, 4-9-4 Kamihigashi, Hirano Ward, Osaka, Japan', '1998-03-05', 0, 0, 'young311', '2000-07-21', 'todd8', '2014-11-01'); +INSERT INTO "public"."userinfo" VALUES ('TS037321279150', 'Edward Fisher', 1, '+81 11-892-9588', 2, '341548870292662972', '2-kai, 2-1-15 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1988-01-18', 0, 0, 'fisher1960', '2005-06-20', 'edfisher', '2017-03-26'); +INSERT INTO "public"."userinfo" VALUES ('TS930707336398', '谢詩涵', 1, '+81 74-972-4338', 3, '333607843131340432', '34-kai, 1-7-1 Saidaiji Akodacho, Nara, Japan', '1990-05-17', 0, 0, 'shihanxie', '2019-02-17', 'xies503', '2015-07-04'); +INSERT INTO "public"."userinfo" VALUES ('TS293427577605', '陆安琪', 0, '+86 142-2746-6189', 2, '790577803205887106', '中国上海市黄浦区淮海中路132号华润大厦25室', '1987-01-23', 0, 0, 'luanqi420', '2014-09-12', 'alu', '2016-06-15'); +INSERT INTO "public"."userinfo" VALUES ('TS212600615009', '小島樹', 0, '+86 21-828-9591', 3, '832622176617713894', '17F, 87 Middle Huaihai Road, Huangpu District, Shanghai, China', '1987-07-27', 0, 0, 'ik10', '2018-12-23', 'itsukikoji', '2013-10-21'); +INSERT INTO "public"."userinfo" VALUES ('TS107782480605', '橋本桜', 0, '+44 (121) 152 9229', 3, '386053419075393167', 'Unit 19, Oxford Eco Centre, 663 Cannon Street, Birmingham, B2 5EE, United Kingdom', '1991-09-05', 0, 0, 'sakurahashimoto9', '2011-11-23', 'hashimotosakur', '2004-08-11'); +INSERT INTO "public"."userinfo" VALUES ('TS791960105336', '黃慧珊', 0, '+1 718-362-6851', 2, '360324010184917635', '942 Flatbush Ave 3rd Floor, Brooklyn, NY 11225, United States', '1990-03-31', 0, 0, 'wowa9', '2011-05-06', 'waiswo4', '2014-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS857868383062', 'Kyle Morales', 0, '+86 191-8231-5351', 1, '496847190639470127', '中国广州市海珠区江南西路512号43室', '1997-06-15', 0, 0, 'moralkyle', '2014-12-21', 'mk3', '2005-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS135892881827', 'Steve Patterson', 0, '+81 3-0236-7859', 2, '179369698346596225', 'Rm. 30, 5-2-9 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1987-01-06', 0, 0, 'pattesteve', '2003-02-13', 'stevepatt', '2020-01-08'); +INSERT INTO "public"."userinfo" VALUES ('TS770857813462', '廖璐', 1, '+44 (151) 137 1772', 4, '724444312025139933', 'No.36 Main building, 719 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1997-01-14', 0, 0, 'liaolu', '2000-02-13', 'lul', '2008-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS397523721912', '梁曉彤', 1, '+86 10-1819-7182', 1, '523307733268712904', '10F, 53 Sanlitun Road, Chaoyang District, Beijing, China', '1992-05-17', 0, 0, 'leunghiu5', '2006-11-10', 'htleung', '2019-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS760882223896', '藍祖兒', 0, '+81 3-9917-2085', 4, '652368707865035166', 'Rm. 14, 1-5-2, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1993-06-19', 0, 0, 'choyee77', '2002-06-25', 'choyeelam', '2003-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS891943994566', '袁家玲', 0, '+86 138-2984-6592', 3, '905362680077864898', 'No.33 building, 637 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1992-11-21', 0, 0, 'yuenkl309', '2017-03-31', 'kaliy', '2002-08-17'); +INSERT INTO "public"."userinfo" VALUES ('TS373350220206', 'Earl Ford', 0, '+81 80-3044-5771', 0, '086324343560021328', '日本おおさかし西成区天神ノ森二丁目1番5号45号室', '1997-07-10', 0, 0, 'fordear', '2013-04-04', 'earlfor', '2007-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS362191062665', '葉安琪', 0, '+86 182-3159-4304', 3, '758114311618468152', '中国广州市白云区小坪东路257号华润大厦9室', '1997-05-23', 0, 0, 'yipok1962', '2011-10-07', 'yonkay7', '2014-09-16'); +INSERT INTO "public"."userinfo" VALUES ('TS955060417206', '市川葵', 0, '+86 20-4458-2503', 4, '536452106725610849', 'Room 50, 542 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1998-05-10', 0, 0, 'aoiichikawa', '2005-01-08', 'ichikawa1983', '2017-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS371081356849', '韩嘉伦', 0, '+1 213-045-8438', 3, '331342195574266734', '846 Grape Street 3rd Floor, Los Angeles, CA 90002, United States', '1993-03-13', 0, 0, 'hanjialun', '2007-11-18', 'jh120', '2014-01-13'); +INSERT INTO "public"."userinfo" VALUES ('TS052558099580', 'Douglas Parker', 1, '+81 80-1516-1228', 2, '493053451904743415', '24F, 5-4-16 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-10-27', 0, 0, 'dp308', '2020-05-13', 'parkdo12', '2017-03-21'); +INSERT INTO "public"."userinfo" VALUES ('TS511540650724', '何璐', 1, '+86 20-534-9840', 1, '044635381612079813', '中国广州市海珠区江南西路636号14号楼', '1985-07-09', 0, 0, 'helu03', '2019-07-17', 'lu8', '2007-04-03'); +INSERT INTO "public"."userinfo" VALUES ('TS713257684379', 'Tammy Hunter', 0, '+44 5259 725556', 1, '395632490314484775', 'Flat 45, 235 Regent Street, London, W1B 2LX, United Kingdom', '1997-01-24', 0, 0, 'huntertam', '2006-08-02', 'tahunter', '2008-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS998210987509', '侯璐', 1, '+86 149-2893-4068', 2, '927351416888484000', 'Room 42, CR Building, 520 Daxin S Rd, Daxin Shangquan, Tianhe Qu, Zhongshan, China', '1986-03-07', 0, 0, 'hlu', '2005-09-25', 'lhou', '2007-04-08'); +INSERT INTO "public"."userinfo" VALUES ('TS252640462809', '馮詩君', 0, '+44 7750 279312', 0, '879527307521984867', 'Flat 34, 37 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1989-05-20', 0, 0, 'szekwanfung93', '2004-01-13', 'szekwanfun', '2019-12-28'); +INSERT INTO "public"."userinfo" VALUES ('TS590936505249', '陶仲賢', 0, '+86 10-4265-3466', 3, '065674169627875201', 'No.35 building, 658 West Chang''an Avenue, Xicheng District, Beijing, China', '1993-04-23', 0, 0, 'tacy10', '2003-10-11', 'chungyintao', '2003-04-15'); +INSERT INTO "public"."userinfo" VALUES ('TS980392104269', 'Allen Jones', 0, '+86 139-2977-9932', 0, '694374352541588626', 'No.50 building, 470 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1998-02-07', 0, 0, 'jones120', '2004-10-24', 'jonesallen', '2012-06-10'); +INSERT INTO "public"."userinfo" VALUES ('TS822997406143', '戴國榮', 0, '+44 7865 627257', 2, '910953304188671643', 'Unit 21, Oxford Eco Centre, 79 49/50 Strand, Charing Cross, Liverpool, WC2N 5LH, United Kingdom', '1997-10-18', 0, 0, 'kwokwingda2', '2008-06-05', 'daikwokwing1019', '2018-06-21'); +INSERT INTO "public"."userinfo" VALUES ('TS444725481216', 'Kathryn Castro', 0, '+86 769-249-7794', 1, '316390854957947130', 'No.18 building, 365 Shanhu Rd, Dongguan, China', '1987-07-17', 0, 0, 'ckath', '2005-12-30', 'castro4', '2006-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS694878262935', '中村光', 1, '+86 134-6247-6803', 2, '923676074976839040', '39F, 55 028 County Rd, Yanqing District, Beijing, China', '1993-09-15', 0, 0, 'nakhi', '2006-12-04', 'nakamurahikaru', '2017-05-06'); +INSERT INTO "public"."userinfo" VALUES ('TS961869455633', '羅玲玲', 1, '+81 66-290-0716', 2, '898213042039067683', '日本おおさかし東住吉区東田辺三丁目27番8号50号室', '1987-02-12', 0, 0, 'lllo94', '2005-02-13', 'lingling1', '2004-07-28'); +INSERT INTO "public"."userinfo" VALUES ('TS097827473221', '伊藤湊', 1, '+44 5310 710078', 2, '786122341265723036', 'Unit 47, Oxford Eco Centre, 350 Aigburth Rd, Aigburth, Liverpool, L17 9PE, United Kingdom', '1994-06-03', 0, 0, 'itominat', '2019-12-10', 'minait', '2012-02-18'); +INSERT INTO "public"."userinfo" VALUES ('TS675820670164', '車思妤', 1, '+81 80-3157-0936', 3, '255362042576849440', '22F, 1-6-9, Marunouchi, Chiyoda-ku, Tokyo, Japan', '1990-08-22', 0, 0, 'chesy', '2017-09-02', 'cszeyu9', '2019-03-15'); +INSERT INTO "public"."userinfo" VALUES ('TS999925234210', '萬志遠', 0, '+1 312-446-8623', 2, '160479392371411789', '620 North Michigan Ave Apt 47, Chicago, IL 60611, United States', '1993-11-05', 0, 0, 'chiyuenm08', '2007-07-08', 'cym', '2021-06-05'); +INSERT INTO "public"."userinfo" VALUES ('TS955225855137', '藤田一輝', 1, '+44 (1223) 13 0738', 3, '079082820076699765', 'Unit 32, Oxford Eco Centre, 895 The Pavilion, Lammas Field, Driftway, Cambridge, CB3 9PA, United Kingdom', '1990-10-21', 0, 0, 'ikkifuji2017', '2013-01-24', 'ikkifu', '2002-04-18'); +INSERT INTO "public"."userinfo" VALUES ('TS503366482711', 'Paula Adams', 1, '+86 21-719-1647', 0, '503691423441990673', 'No.31 building, 610 Middle Huaihai Road, Huangpu District, Shanghai, China', '1989-06-11', 0, 0, 'paulaadams', '2008-03-22', 'adamspau', '2007-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS582435804243', '佘祖兒', 0, '+44 (161) 720 2030', 2, '051523330093685909', 'No.13 Main building, 636 Portland St, Manchester, M1 3LA, United Kingdom', '1987-08-24', 0, 0, 'shehcy46', '2020-08-23', 'shehchoyee', '2010-01-11'); +INSERT INTO "public"."userinfo" VALUES ('TS952503765971', '苑惠敏', 1, '+86 20-859-2902', 2, '807257604247296401', '40F, 823 Xiaoping E Rd, Baiyun , Guangzhou, China', '1998-11-06', 0, 0, 'wmyuen', '2011-06-08', 'yuen2019', '2016-05-02'); +INSERT INTO "public"."userinfo" VALUES ('TS883794218019', '原大地', 0, '+86 144-8983-9449', 4, '287101597859070461', '中国广州市白云区小坪东路959号31室', '1992-09-03', 0, 0, 'haradaich', '2000-11-02', 'daichhar', '2015-03-04'); +INSERT INTO "public"."userinfo" VALUES ('TS871342341167', '斉藤詩乃', 1, '+86 159-4527-0658', 0, '515851470081480686', '中国深圳罗湖区田贝一路175号华润大厦39室', '1998-06-21', 0, 0, 'sashino', '2012-11-25', 'shinsaito605', '2013-09-07'); +INSERT INTO "public"."userinfo" VALUES ('TS788039194693', '孔云熙', 0, '+86 20-6170-0096', 3, '970974371136058802', 'No.2 building, 703 2nd Zhongshan Road, Yuexiu District, Guangzhou, China', '1999-01-10', 0, 0, 'yko1', '2019-12-03', 'yukon3', '2017-04-05'); +INSERT INTO "public"."userinfo" VALUES ('TS079119830881', '林花', 0, '+1 614-777-1217', 2, '374295241398744653', '479 East Alley Suite 32, Columbus, GA 43201, United States', '1991-09-27', 0, 0, 'hayashih', '2008-12-05', 'hanahayashi226', '2017-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS917322464021', '周嘉伦', 1, '+1 838-326-6491', 3, '451082243468647325', '327 Central Avenue Apartment 30, Albany, NY 12206, United States', '1995-08-24', 0, 0, 'jialunzho1954', '2021-10-14', 'zjialun', '2008-05-21'); +INSERT INTO "public"."userinfo" VALUES ('TS663617165405', 'Robert Hamilton', 0, '+81 90-1645-8602', 0, '035383978306518738', 'Rm. 2, 2-1-3 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1985-07-01', 0, 0, 'roberhamilton', '2019-07-11', 'hamilton66', '2010-08-31'); +INSERT INTO "public"."userinfo" VALUES ('TS157866029747', '蔡頴璇', 1, '+1 718-944-6107', 0, '252649661719104524', '495 Columbia St Apt 21, Brooklyn, NY 11231, United States', '1995-06-05', 0, 0, 'chowingsuen5', '2021-02-25', 'cws1955', '2014-01-14'); +INSERT INTO "public"."userinfo" VALUES ('TS274588068563', '顾安琪', 0, '+86 168-6263-3726', 3, '737472916120958080', '中国上海市浦东新区健祥路346号4栋', '1996-07-23', 0, 0, 'anqgu10', '2003-01-04', 'gu2', '2017-08-28'); +INSERT INTO "public"."userinfo" VALUES ('TS638798750007', '鐘安琪', 0, '+81 90-2000-9777', 3, '361171354935888097', '40-kai, 5-2-4 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1991-05-09', 0, 0, 'onkaychun1979', '2002-02-28', 'chuok', '2004-03-20'); +INSERT INTO "public"."userinfo" VALUES ('TS516508246831', '苏詩涵', 1, '+86 196-9972-9596', 4, '035767944844096632', 'No.32 building, 701 Shanhu Rd, Dongguan, China', '1999-01-10', 0, 0, 'sushih', '2000-02-22', 'sushihan1994', '2018-10-26'); +INSERT INTO "public"."userinfo" VALUES ('TS596336015763', 'Peter Garcia', 1, '+1 614-540-2485', 1, '797768881850451899', '355 East Cooke Road Apt 45, Columbus, GA 43214, United States', '1987-06-01', 0, 0, 'garcia8', '2010-02-14', 'garciapeter', '2020-02-12'); +INSERT INTO "public"."userinfo" VALUES ('TS674775909130', '宣安娜', 1, '+1 212-298-8631', 2, '726033825453876775', '569 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1988-05-29', 0, 0, 'onnah49', '2004-03-30', 'onnahsua', '2018-03-07'); +INSERT INTO "public"."userinfo" VALUES ('TS690272168926', 'Pamela Reed', 1, '+81 90-9278-2725', 1, '533378519065850974', '39-kai, 9 4-20 Kawagishicho, Mizuho Ward, Nagoya, Japan', '1996-04-28', 0, 0, 'rep', '2003-05-03', 'reedpamela', '2009-09-08'); +INSERT INTO "public"."userinfo" VALUES ('TS097646459260', '鄧梓晴', 0, '+81 90-0796-0535', 0, '233705546660256142', '日本おおさかし近江堂一丁目7番9号5階', '1986-05-31', 0, 0, 'tctang84', '2002-08-29', 'tantszching', '2014-01-23'); +INSERT INTO "public"."userinfo" VALUES ('TS990965394618', '渡辺翼', 1, '+86 10-3573-9858', 2, '018779640341634465', '中国北京市海淀区清河中街68号643号28室', '1991-07-27', 0, 0, 'sato1', '2003-07-29', 'sato729', '2001-11-09'); +INSERT INTO "public"."userinfo" VALUES ('TS421329729774', '汪詩君', 1, '+86 10-591-8802', 2, '352760969662959387', '中国北京市海淀区清河中街68号386号31室', '1991-07-17', 0, 0, 'szwong', '2011-04-04', 'skw', '2021-12-04'); +INSERT INTO "public"."userinfo" VALUES ('TS728358704922', '成俊宇', 0, '+86 191-7521-3899', 1, '189195790183098438', '中国东莞珊瑚路699号43室', '1986-07-24', 0, 0, 'shingchunyu3', '2019-11-14', 'shinchunyu', '2016-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS933808449925', '楊家強', 0, '+81 80-9182-5172', 2, '859395108781135937', '日本おおさかし西成区天神ノ森二丁目1番19号49階', '1999-01-25', 0, 0, 'kkye', '2020-04-19', 'yeungkakeung4', '2009-02-28'); +INSERT INTO "public"."userinfo" VALUES ('TS564839134632', '崔惠敏', 1, '+86 21-6043-3016', 2, '951064730702821131', 'No.29 building, 227 Ganlan Rd, Pudong, Shanghai, China', '1991-02-04', 0, 0, 'choi415', '2005-05-06', 'wmchoi1112', '2021-07-20'); +INSERT INTO "public"."userinfo" VALUES ('TS624702231731', '邓宇宁', 0, '+81 52-594-0410', 4, '084432105581422228', '日本なごやし守山区瀬古東二丁目171番20号26階', '1999-02-05', 0, 0, 'dyun', '2006-04-06', 'deng6', '2005-10-28'); +INSERT INTO "public"."userinfo" VALUES ('TS166357753451', 'Laura Carter', 0, '+81 70-1584-7635', 3, '491775679151335068', 'Rm. 30, 5-2-6 Higashi Gotanda, Shinagawa-ku , Tokyo, Japan', '1993-05-09', 0, 0, 'cal3', '2021-03-24', 'calau48', '2005-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS604574823856', 'Joseph Smith', 1, '+44 5759 870278', 2, '424855463774415455', 'Flat 23, 234 Mosley St, Manchester, M2 3AQ, United Kingdom', '1989-08-08', 0, 0, 'joseph56', '2021-01-20', 'smith10', '2007-10-20'); +INSERT INTO "public"."userinfo" VALUES ('TS583195918630', '劉曉彤', 1, '+81 70-9993-0323', 4, '983010632545109221', '日本東京渋谷区代々木二丁目3番9号4号室', '1992-08-02', 0, 0, 'htlau', '2008-07-05', 'hiutung7', '2005-10-02'); +INSERT INTO "public"."userinfo" VALUES ('TS893234420665', '戴嘉伦', 1, '+44 7113 185156', 0, '903525678406730728', 'Block 19, 644 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1986-10-01', 0, 0, 'daj', '2015-09-20', 'djialun', '2012-03-27'); +INSERT INTO "public"."userinfo" VALUES ('TS667499065088', '宮崎和真', 0, '+86 156-9495-1659', 3, '383899252327746665', '中国深圳罗湖区蔡屋围深南东路903号36室', '1994-06-06', 0, 0, 'kazmiyazaki10', '2006-12-09', 'mik', '2015-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS703992134604', '秦嘉伦', 0, '+44 7356 697395', 3, '747551087769953664', 'Flat 38, 992 Papworth Rd, Trumpington, Cambridge, CB2 0AY, United Kingdom', '1997-08-17', 0, 0, 'jialunqin', '2016-08-09', 'qin1124', '2006-08-30'); +INSERT INTO "public"."userinfo" VALUES ('TS969064831300', 'Jeffery Flores', 1, '+81 70-8958-8366', 4, '286514365601941677', '43F, 10 1-1 Honjocho, Yamatokoriyama, Nara, Japan', '1995-02-24', 0, 0, 'floresj', '2003-09-05', 'fljeffery', '2017-08-06'); +INSERT INTO "public"."userinfo" VALUES ('TS114986040034', '有村舞', 1, '+1 330-194-4167', 0, '927220970263325502', '861 West Market Street Apartment 42, Akron, OH 44333, United States', '1992-09-24', 0, 0, 'maia1975', '2019-11-29', 'amai', '2004-06-01'); +INSERT INTO "public"."userinfo" VALUES ('TS576078217510', 'Virginia King', 0, '+86 10-3082-8736', 3, '338694975203526542', 'No.49 building, 260 Sanlitun Road, Chaoyang District, Beijing, China', '1986-12-12', 0, 0, 'kingvi', '2000-08-04', 'virginia503', '2007-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS945391375507', '小島健太', 0, '+86 760-082-7789', 0, '385020742868576986', '中国中山京华商圈华夏街276号3室', '1989-05-16', 0, 0, 'kojima1221', '2001-11-28', 'kentakojim', '2008-08-26'); +INSERT INTO "public"."userinfo" VALUES ('TS317366189702', 'Henry Hall', 0, '+81 74-852-4625', 2, '907908934655699041', 'Rm. 45, 1-7-5 Saidaiji Akodacho, Nara, Japan', '1989-09-14', 0, 0, 'hall101', '2017-05-08', 'hallhenry', '2000-09-15'); +INSERT INTO "public"."userinfo" VALUES ('TS987571344256', 'Bradley Hayes', 1, '+86 159-1119-8783', 3, '626823542945377272', '中国成都市成华区玉双路6号947号4栋', '1998-10-08', 0, 0, 'hayesbr', '2019-04-28', 'bhayes7', '2022-02-15'); +INSERT INTO "public"."userinfo" VALUES ('TS869226272130', 'Amanda James', 1, '+1 718-224-7822', 1, '978883221142598487', '671 Nostrand Ave 3rd Floor, Brooklyn, NY 11216, United States', '1990-10-15', 0, 0, 'aj1941', '2004-11-19', 'amandajames69', '2019-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS958753005972', '许子异', 1, '+86 28-126-1313', 1, '983456799032730512', 'Room 24, CR Building, 372 NO.6, YuShuang Road, ChengHua Distric, Chengdu, China', '1998-03-10', 0, 0, 'xuzi', '2012-07-06', 'ziyi5', '2021-02-10'); +INSERT INTO "public"."userinfo" VALUES ('TS753032495959', '胡嘉欣', 1, '+44 (1865) 50 6854', 3, '378246324702140188', 'Block 40, 391 Elms Rd, Botley, Oxford, OX2 9JS, United Kingdom', '1990-04-26', 0, 0, 'kywu', '2005-08-17', 'karyanwu', '2009-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS076194124901', '酒井光莉', 0, '+81 66-756-6491', 1, '273169220793998918', '日本おおさかし西成区天神ノ森二丁目1番9号41号室', '1996-06-29', 0, 0, 'shik', '2017-07-21', 'sakaihikari9', '2002-04-16'); +INSERT INTO "public"."userinfo" VALUES ('TS933786002259', '許天榮', 0, '+86 760-7603-4611', 2, '684000368139311891', '中国中山紫马岭商圈中山五路320号38楼', '1992-12-13', 0, 0, 'tinwinghui', '2017-11-14', 'twhu', '2012-11-27'); +INSERT INTO "public"."userinfo" VALUES ('TS321176713461', 'Danny Richardson', 0, '+86 176-2214-4133', 2, '080343251733149101', '中国北京市海淀区清河中街68号831号20室', '1987-12-29', 0, 0, 'danny9', '2005-05-10', 'danny7', '2019-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS837062452698', '梅惠敏', 0, '+86 755-277-1373', 0, '984317938006991519', 'Room 35, CR Building, 815 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1993-02-07', 0, 0, 'mui11', '2008-10-24', 'muwm', '2007-03-10'); +INSERT INTO "public"."userinfo" VALUES ('TS750428483707', 'Anna Johnson', 0, '+1 212-070-9292', 0, '721029273590221125', '27 Bank Street Apt 35, New York, NY 10014, United States', '1995-06-17', 0, 0, 'anjohnson', '2009-03-20', 'johnsonanna5', '2020-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS985237056596', 'Gregory Henry', 1, '+81 52-870-0508', 2, '544346265943500425', '4-kai, 1 3-803 Kusunokiajima, Kita Ward, Nagoya, Japan', '1986-01-21', 0, 0, 'gregohenr7', '2002-08-30', 'henrygregory', '2005-04-28'); +INSERT INTO "public"."userinfo" VALUES ('TS155670608147', 'John Dunn', 0, '+1 330-295-1908', 3, '030057284607578559', '212 Collier Road Suite 33, Akron, OH 44320, United States', '1988-09-14', 0, 0, 'dujohn6', '2017-12-31', 'johndunn', '2003-09-22'); +INSERT INTO "public"."userinfo" VALUES ('TS909506439162', 'Jerry Robertson', 1, '+81 66-460-8574', 1, '805766982283957948', '日本おおさかし平野区加美東四丁目9番8号18階', '1989-04-05', 0, 0, 'robjerry9', '2003-11-23', 'robejerry1114', '2018-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS135476062161', '文詠詩', 0, '+86 755-2947-1028', 2, '665595015869134102', 'No.18 building, 66 Shennan Ave, Futian District, Shenzhen, China', '1988-08-21', 0, 0, 'wingszeman', '2021-04-10', 'man1029', '2010-05-13'); +INSERT INTO "public"."userinfo" VALUES ('TS008091452628', '尹岚', 1, '+81 70-0101-5870', 4, '315488004807127381', '日本ならし西大寺赤田町一丁目7番9号24階', '1991-08-11', 0, 0, 'lan4', '2015-11-28', 'lan501', '2018-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS908542223434', 'Rosa Miller', 1, '+81 70-8649-3840', 0, '568090249514695443', '47F, 1-5-9, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1989-12-24', 0, 0, 'miller6', '2002-08-01', 'mirosa4', '2007-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS892225457169', 'Bonnie Tucker', 1, '+81 66-743-5401', 2, '469948823046853238', '日本おおさかし近江堂一丁目7番10号47階', '1991-06-03', 0, 0, 'tucker1963', '2005-09-19', 'tuckbonn', '2006-05-31'); +INSERT INTO "public"."userinfo" VALUES ('TS609469812492', '马子异', 1, '+81 74-029-6415', 3, '477690410527741446', '日本ならし大和郡山市本庄町一丁目1番11号33階', '1987-12-06', 0, 0, 'ma112', '2017-12-01', 'zma', '2005-01-22'); +INSERT INTO "public"."userinfo" VALUES ('TS056696035574', '罗子韬', 1, '+81 70-1607-8883', 3, '272949903873951784', 'Rm. 42, 2-5-10 Chitose, Atsuta Ward, Nagoya, Japan', '1997-11-23', 0, 0, 'zl9', '2006-09-22', 'luozit', '2018-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS521027552580', 'Maria Reynolds', 0, '+81 11-614-5408', 2, '650257177945936124', '日本札幌白石区菊水三条五丁目4番4号38階', '1996-04-03', 0, 0, 'reynmari', '2012-06-22', 'maria424', '2000-05-26'); +INSERT INTO "public"."userinfo" VALUES ('TS830580740384', '郝云熙', 1, '+1 312-706-9992', 3, '233845992763747968', '32 North Michigan Ave Apartment 48, Chicago, IL 60611, United States', '1991-05-19', 0, 0, 'hy4', '2019-05-11', 'yhao', '2012-04-27'); +INSERT INTO "public"."userinfo" VALUES ('TS816017066698', '任裕玲', 1, '+1 838-159-3764', 3, '858088642253650873', '271 Lark Street Apartment 14, Albany, NY 12210, United States', '1998-02-11', 0, 0, 'yulingyam71', '2018-02-05', 'yamyl1', '2017-07-21'); +INSERT INTO "public"."userinfo" VALUES ('TS382881221656', 'Phillip Miller', 0, '+86 755-9297-1722', 3, '888051289034926124', '中国深圳罗湖区蔡屋围深南东路829号21栋', '1990-12-26', 0, 0, 'miller6', '2004-08-17', 'phillipm917', '2008-10-12'); +INSERT INTO "public"."userinfo" VALUES ('TS144007969182', '阎杰宏', 1, '+86 159-9850-8840', 1, '003424148118629431', 'Room 42, CR Building, 261 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1998-04-03', 0, 0, 'jieyan5', '2016-05-20', 'yan84', '2000-07-13'); +INSERT INTO "public"."userinfo" VALUES ('TS406361406172', '毛晓明', 1, '+81 90-2408-0950', 3, '152645699775150561', '23-kai, 3-27-6 Higashitanabe, Higashisumiyoshi Ward, Osaka, Japan', '1997-11-09', 0, 0, 'xiaoming5', '2018-07-05', 'maoxiaoming116', '2002-03-19'); +INSERT INTO "public"."userinfo" VALUES ('TS276416485455', '馮惠敏', 1, '+86 10-3576-2703', 2, '469806555346669972', '中国北京市海淀区清河中街68号681号22室', '1992-08-04', 0, 0, 'fungwm81', '2000-10-31', 'fwaiman', '2018-04-06'); +INSERT INTO "public"."userinfo" VALUES ('TS190987148430', '錢潤發', 0, '+44 (151) 055 7841', 1, '928206544703806043', 'Unit 42, Oxford Eco Centre, 317 Trafalgar Square, Charing Cross, Liverpool, WC2N 4JJ, United Kingdom', '1991-10-01', 0, 0, 'chyf', '2020-12-09', 'yfc', '2005-04-25'); +INSERT INTO "public"."userinfo" VALUES ('TS077454508103', '上田一輝', 0, '+81 90-5912-6230', 2, '787456241976405337', '日本おおさかし西成区天神ノ森二丁目1番9号32階', '1987-05-18', 0, 0, 'uikki', '2012-09-04', 'uedai', '2017-03-09'); +INSERT INTO "public"."userinfo" VALUES ('TS597189266320', '工藤紗良', 0, '+86 769-7242-4455', 4, '625978735121567545', 'No.19 building, 349 Dongtai 5th St, Dongguan, China', '1992-05-13', 0, 0, 'sarakud', '2009-03-01', 'kusa', '2017-09-20'); +INSERT INTO "public"."userinfo" VALUES ('TS392912616981', '藍青雲', 1, '+86 21-4416-0517', 4, '401203779333665986', 'Room 33, CR Building, 746 Middle Huaihai Road, Huangpu District, Shanghai, China', '1995-04-24', 0, 0, 'lamchingwan', '2012-03-01', 'lamcw', '2019-12-21'); +INSERT INTO "public"."userinfo" VALUES ('TS410502590101', '斎藤光莉', 0, '+44 (1223) 42 2583', 1, '124336921541766437', 'Unit 21, Oxford Eco Centre, 634 Volac Park, Grantchester Rd, Cambridge, CB3 9ED, United Kingdom', '1989-04-22', 0, 0, 'saitohikari', '2021-07-30', 'saitohikari7', '2010-03-11'); +INSERT INTO "public"."userinfo" VALUES ('TS331133666927', '森田陸', 1, '+81 80-7393-9474', 2, '224252941282980296', '8F, 1-5-3, Higashi-Shimbashi, Minato-ku, Tokyo, Japan', '1998-03-02', 0, 0, 'rikumorita3', '2014-08-05', 'rmorita', '2016-01-12'); +INSERT INTO "public"."userinfo" VALUES ('TS051708459354', '村上架純', 0, '+1 212-674-2391', 1, '700414880998513263', '185 Fifth Avenue 3rd Floor, New York, NY 10017, United States', '1998-10-13', 0, 0, 'murkasu', '2018-11-16', 'kasumimurakami6', '2005-08-16'); +INSERT INTO "public"."userinfo" VALUES ('TS799112704329', '橋本悠人', 0, '+44 (161) 425 7096', 2, '565779837659087487', 'Block 18, 415 Spring Gardens, Manchester, M2 2BQ, United Kingdom', '1989-11-17', 0, 0, 'yuto2', '2016-01-21', 'yuhashi1949', '2009-01-21'); +INSERT INTO "public"."userinfo" VALUES ('TS918480589642', '有村涼太', 0, '+86 181-8235-6083', 0, '408439084035215067', 'Room 9, CR Building, 217 Zhongshan 5th Rd, Zimaling Shangquan, Zhongshan, China', '1992-07-01', 0, 0, 'arryota', '2009-04-18', 'ryotaarimura', '2013-10-30'); +INSERT INTO "public"."userinfo" VALUES ('TS349042844196', 'Teresa Miller', 1, '+86 154-3389-2650', 2, '934693717349773178', 'No.43 building, 945 Hongqiao Rd., Xu Hui District, Shanghai, China', '1990-09-18', 0, 0, 'miller10', '2011-05-12', 'teresa5', '2004-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS360307233128', '李詩涵', 1, '+81 90-6683-6568', 3, '165598647107168391', '日本なごやし守山区瀬古東二丁目171番11号37階', '1995-11-04', 0, 0, 'shihli411', '2001-02-19', 'lishihan', '2021-10-18'); +INSERT INTO "public"."userinfo" VALUES ('TS339837092523', '田村玲奈', 0, '+81 3-0621-0527', 3, '402536533385847042', 'Rm. 38, 3-15-12 Ginza, Chuo-ku, Tokyo, Japan', '1995-09-07', 0, 0, 'renata7', '2013-01-31', 'tare', '2005-03-05'); +INSERT INTO "public"."userinfo" VALUES ('TS536159964359', '宮崎光莉', 1, '+86 10-367-1106', 2, '481624522371907193', '中国北京市东城区东单王府井东街595号41号楼', '1994-04-17', 0, 0, 'miyazakihik', '2011-03-22', 'miyahi', '2000-06-13'); +INSERT INTO "public"."userinfo" VALUES ('TS929935807363', '武子异', 0, '+81 80-3978-9310', 0, '939716537824464881', '日本おおさかし近江堂一丁目7番15号34階', '1992-05-17', 0, 0, 'ziyiwu', '2017-06-29', 'ziywu', '2010-08-21'); +INSERT INTO "public"."userinfo" VALUES ('TS335935628220', 'Jeffrey Bailey', 1, '+44 7055 695742', 3, '103788855799708586', 'Flat 31, 193 Earle Rd, Liverpool, L7 6HD, United Kingdom', '1985-01-02', 0, 0, 'jeffbai', '2008-10-18', 'jeffreybailey', '2001-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS316830411880', 'Samuel Edwards', 1, '+86 192-2299-1098', 4, '300260886318087329', '41F, 136 Xue Yuan Yi Xiang, Longgang, Shenzhen, China', '1985-12-04', 0, 0, 'samuel5', '2001-10-02', 'samuel309', '2010-10-17'); +INSERT INTO "public"."userinfo" VALUES ('TS624710039779', '青木樹', 1, '+44 (1865) 81 3798', 1, '050399913231786950', 'Flat 32, 416 Little Clarendon St, Oxford, OX1 2HU, United Kingdom', '1996-09-27', 0, 0, 'itsuki1210', '2003-01-12', 'aokits', '2020-02-25'); +INSERT INTO "public"."userinfo" VALUES ('TS531110396146', '苏云熙', 1, '+81 90-8167-4113', 2, '924020549633537681', 'Rm. 17, 2-1-19 Kaminopporo 1 Jo, Atsubetsu Ward, Sapporo, Japan', '1994-05-12', 0, 0, 'yunxis10', '2014-05-09', 'yunxsu', '2016-07-18'); +INSERT INTO "public"."userinfo" VALUES ('TS287098533807', 'Joanne Anderson', 1, '+1 718-474-0762', 2, '819627841416813937', '268 Flatbush Ave Suite 40, Brooklyn, NY 11225, United States', '1996-10-01', 0, 0, 'andersonjoanne', '2017-03-04', 'anjoanne16', '2003-12-10'); +INSERT INTO "public"."userinfo" VALUES ('TS721019386407', 'Janet Rodriguez', 0, '+1 614-421-6930', 4, '339089929833780270', '605 Diplomacy Drive 3rd Floor, Columbus, GA 43228, United States', '1987-06-25', 0, 0, 'rodja', '2000-08-11', 'jarod3', '2005-03-01'); +INSERT INTO "public"."userinfo" VALUES ('TS861158415591', '松本悠人', 1, '+86 28-1810-4332', 0, '054165479907958714', '中国成都市成华区玉双路6号90号49号楼', '1990-06-12', 0, 0, 'mayut', '2021-12-31', 'mayut', '2019-07-08'); +INSERT INTO "public"."userinfo" VALUES ('TS082204969526', 'Mildred Stone', 0, '+86 755-0242-3959', 4, '266622930627123670', 'Room 31, 496 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1988-04-24', 0, 0, 'stonemildred5', '2005-05-09', 'mis', '2016-07-12'); +INSERT INTO "public"."userinfo" VALUES ('TS218038034892', 'Bobby Miller', 0, '+86 20-881-2712', 1, '033741694117305972', '中国广州市海珠区江南西路885号15室', '1986-08-05', 0, 0, 'bmiller', '2018-06-20', 'bm1211', '2010-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS563553181959', 'Alfred Ward', 0, '+44 (20) 3252 1332', 1, '806109579607930970', 'Unit 36, Oxford Eco Centre, 708 Hanover Street, London, W1S 1YD, United Kingdom', '1993-04-09', 0, 0, 'alfredwar', '2022-03-01', 'alfred1', '2000-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS539602109463', '汤睿', 1, '+86 133-3584-1646', 3, '817737587048502352', '中国东莞环区南街二巷697号49栋', '1989-10-16', 0, 0, 'tangrui', '2019-05-20', 'ruitang530', '2011-07-14'); +INSERT INTO "public"."userinfo" VALUES ('TS360256507581', 'Leonard Hunt', 1, '+86 760-127-4295', 1, '923432177437259564', 'Room 10, 123 Huaxia St, Jinghua Shangquan, Zhongshan, China', '1986-06-11', 0, 0, 'hunt217', '2013-03-25', 'leonhunt', '2021-12-14'); +INSERT INTO "public"."userinfo" VALUES ('TS543847691560', '酒井花', 1, '+44 (161) 813 8023', 1, '190740417342211424', 'Block 50, 72 Mosley St, Manchester, M2 3AQ, United Kingdom', '1990-03-03', 0, 0, 'sakaha', '2009-01-03', 'hanas7', '2002-03-23'); +INSERT INTO "public"."userinfo" VALUES ('TS877310331659', '莫世榮', 0, '+81 70-9057-7378', 0, '646665050764707784', '日本東京渋谷区代々木二丁目3番12号35階', '1996-08-21', 0, 0, 'moksw', '2002-07-22', 'moksa60', '2009-07-10'); +INSERT INTO "public"."userinfo" VALUES ('TS168674626539', '小島健太', 0, '+44 5943 068886', 2, '940985330987556913', 'No.19 Main building, 958 Cyril St, Braunstone Town, Leicester, LE3 2FF, United Kingdom', '1987-09-10', 0, 0, 'kentako6', '2021-05-25', 'kojima806', '2005-08-13'); +INSERT INTO "public"."userinfo" VALUES ('TS424118786445', 'Ray Morales', 0, '+81 80-2518-4865', 1, '692590734862418206', 'Rm. 6, 5-2-5 Kikusui 3 Jo, Shiroishi Ward, Sapporo, Japan', '1990-10-24', 0, 0, 'ray1', '2008-02-21', 'rmorales', '2016-02-22'); +INSERT INTO "public"."userinfo" VALUES ('TS915499303084', '梅永權', 1, '+44 5050 687859', 3, '851091794459410246', 'Unit 23, Oxford Eco Centre, 855 Osney Mead, Oxford, OX2 0ES, United Kingdom', '1993-12-29', 0, 0, 'wkm1130', '2021-09-18', 'muiwingkuen527', '2016-05-22'); +INSERT INTO "public"."userinfo" VALUES ('TS157697282952', '池田大和', 0, '+86 10-760-7071', 3, '281297851188152067', '中国北京市东城区东单王府井东街463号33栋', '1998-01-28', 0, 0, 'yamato612', '2019-03-27', 'yamato9', '2016-10-31'); +INSERT INTO "public"."userinfo" VALUES ('TS981566373220', '薛嘉欣', 1, '+81 80-1913-6649', 3, '260231252870218459', '日本おおさかし西成区出城一丁目1番7号12階', '1995-01-18', 0, 0, 'karyansit', '2016-09-06', 'skaryan', '2006-02-24'); +INSERT INTO "public"."userinfo" VALUES ('TS068033846669', '孫家輝', 1, '+81 90-1252-8724', 2, '011289092854126954', '日本東京中央区銀座三丁目12番16号38号室', '1987-10-14', 0, 0, 'hkf75', '2006-09-28', 'hsukafai', '2006-11-19'); +INSERT INTO "public"."userinfo" VALUES ('TS423334651744', '小林悠人', 0, '+81 66-669-1844', 2, '523456130675385123', '日本おおさかし平野区加美東四丁目9番13号23階', '1997-08-10', 0, 0, 'yutkobayashi', '2002-01-04', 'yutokobayashi', '2007-04-24'); +INSERT INTO "public"."userinfo" VALUES ('TS271321501585', '青木蓮', 0, '+81 3-4519-8915', 2, '846577743936437865', 'Rm. 49, 2-3-6 Yoyogi, Shibuya-ku, Tokyo, Japan', '1994-06-17', 0, 0, 'aoki5', '2019-01-08', 'raoki', '2013-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS045670031855', '桜井一輝', 0, '+81 90-6296-5692', 0, '171429221484577403', '日本おおさかし平野区加美東四丁目9番17号7階', '1994-09-16', 0, 0, 'ikkisakurai129', '2001-08-27', 'ikkisakurai416', '2004-09-23'); +INSERT INTO "public"."userinfo" VALUES ('TS535717266127', '元思妤', 1, '+1 213-322-4670', 1, '380772937161820337', '943 Sky Way Apt 33, Los Angeles, CA 90043, United States', '1995-05-31', 0, 0, 'yuesy88', '2011-04-21', 'yuenszeyu', '2002-12-18'); +INSERT INTO "public"."userinfo" VALUES ('TS947195745485', 'Marjorie Schmidt', 0, '+1 614-108-4144', 4, '926038262973630078', '419 Diplomacy Drive Apt 9, Columbus, GA 43228, United States', '1986-03-12', 0, 0, 'marjorie10', '2012-08-28', 'marjorieschm', '2010-03-22'); +INSERT INTO "public"."userinfo" VALUES ('TS180483694370', '尹家輝', 1, '+86 168-6981-7111', 4, '833776497615939427', '中国东莞珊瑚路223号33楼', '1987-10-06', 0, 0, 'kfy', '2003-09-30', 'yin7', '2005-01-10'); +INSERT INTO "public"."userinfo" VALUES ('TS123420383359', '曾云熙', 0, '+1 718-658-3061', 2, '411670909969401896', '388 Columbia St Suite 43, Brooklyn, NY 11231, United States', '1987-09-26', 0, 0, 'yuzeng', '2021-07-07', 'zyun09', '2021-04-14'); +INSERT INTO "public"."userinfo" VALUES ('TS853704634564', '任浩然', 0, '+81 70-3277-0363', 3, '785301348653898569', 'Rm. 36, 1-7-12 Omido, Higashiosaka, Osaka, Japan', '1990-01-30', 0, 0, 'hoyin9', '2020-06-09', 'yamhy7', '2007-10-03'); +INSERT INTO "public"."userinfo" VALUES ('TS877860380626', '遠藤美緒', 0, '+1 614-140-4655', 1, '544058440026353729', '364 Tremont Road Apt 3, Columbus, GA 43212, United States', '1996-04-03', 0, 0, 'endo9', '2000-09-13', 'endomio', '2000-07-27'); +INSERT INTO "public"."userinfo" VALUES ('TS573362709839', '佐々木葵', 0, '+86 146-4239-9668', 2, '749346919822522282', '29F, 16 Shennan E Rd, Cai Wu Wei, Luohu District, Shenzhen, China', '1991-06-13', 0, 0, 'sasakiaoi2', '2013-08-30', 'sasaki122', '2019-05-17'); +INSERT INTO "public"."userinfo" VALUES ('TS722552914991', '橋本樹', 0, '+86 165-2023-7134', 2, '213280961863322422', '中国北京市海淀区清河中街68号873号华润大厦36室', '1996-05-06', 0, 0, 'hashimotoi', '2012-10-19', 'ith3', '2018-05-03'); +INSERT INTO "public"."userinfo" VALUES ('TS007526828178', '杨杰宏', 0, '+86 141-0422-5667', 1, '076444939695479983', '中国上海市徐汇区虹桥路175号31号楼', '1986-11-06', 0, 0, 'jiehongyang1117', '2007-07-02', 'yjiehong', '2007-06-14'); +INSERT INTO "public"."userinfo" VALUES ('TS553449279225', '成心穎', 1, '+1 838-371-4251', 2, '694794433839856621', '112 Broadway 3rd Floor, Albany, NY 12207, United States', '1993-05-25', 0, 0, 'shing3', '2011-09-26', 'shing10', '2001-05-15'); +INSERT INTO "public"."userinfo" VALUES ('TS403533871308', '史子异', 0, '+86 184-8565-0873', 3, '577991713197999143', 'Room 9, 109 East Wangfujing Street, Dongcheng District , Beijing, China', '1995-09-19', 0, 0, 'shiziyi910', '2015-11-28', 'shizi', '2005-01-24'); +INSERT INTO "public"."userinfo" VALUES ('TS006292728074', '高田翼', 1, '+86 194-2940-5925', 4, '651566571905851983', '中国中山乐丰六路899号40室', '1995-04-01', 0, 0, 'ttak', '2004-03-13', 'tsubasatakad1206', '2014-09-25'); +INSERT INTO "public"."userinfo" VALUES ('TS466007180352', '平野湊', 1, '+81 90-5341-1140', 4, '920281919030806739', '38F, 2-1-15 Tenjinnomori, Nishinari Ward, Osaka, Japan', '1992-09-18', 0, 0, 'hirm1950', '2013-12-18', 'minatohi1978', '2004-10-19'); +INSERT INTO "public"."userinfo" VALUES ('TS305850239180', '宋睿', 1, '+81 74-950-9344', 0, '492459315289151466', 'Rm. 7, 1-7-1 Saidaiji Akodacho, Nara, Japan', '1988-09-27', 0, 0, 'rui53', '2012-09-15', 'ruisong', '2019-02-19'); +INSERT INTO "public"."userinfo" VALUES ('TS684517602537', '野村光莉', 0, '+86 10-5317-5445', 1, '093082463812152903', '中国北京市海淀区清河中街68号735号36楼', '1999-01-08', 0, 0, 'hikari03', '2002-06-11', 'nomurahikar', '2015-10-06'); +INSERT INTO "public"."userinfo" VALUES ('TS781860118836', 'Cynthia Porter', 0, '+86 755-8186-7067', 2, '603651636704688338', 'Room 39, 921 W Ring Rd, Buji Town, Longgang, Shenzhen, China', '1995-02-17', 0, 0, 'portcyn2020', '2016-12-23', 'porterc206', '2001-01-25'); +INSERT INTO "public"."userinfo" VALUES ('TS412633816177', 'Marjorie Nguyen', 1, '+81 80-2063-5012', 2, '136267009068564439', '20F, 5-4-4 Kikusui 3 Jo, Shiroishi Ward,, Sapporo, Japan', '1986-12-23', 0, 0, 'marn', '2020-03-28', 'marjn', '2013-11-22'); +INSERT INTO "public"."userinfo" VALUES ('TS087159933970', '胡嘉伦', 1, '+81 52-679-8427', 2, '803540270467304392', 'Rm. 31, 11 1-1715 Sekohigashi, Moriyama Ward, Nagoya, Japan', '1998-09-11', 0, 0, 'jihu', '2014-03-19', 'hujial', '2014-11-13'); +INSERT INTO "public"."userinfo" VALUES ('TS878694845413', '汤安琪', 1, '+81 52-848-4625', 3, '249154644886372172', '45-kai, 3-19-1 Shimizu, Kita Ward, Nagoya, Japan', '1993-04-07', 0, 0, 'tangan', '2006-02-20', 'anqit806', '2018-12-07'); +INSERT INTO "public"."userinfo" VALUES ('TS146348541580', '橋本彩乃', 1, '+81 70-4225-8332', 0, '712519416947178220', '17F, 2-5-15 Chitose, Atsuta Ward, Nagoya, Japan', '1987-12-07', 0, 0, 'ayanohashimoto1226', '2001-01-08', 'hashimotoa', '2006-12-19'); +INSERT INTO "public"."userinfo" VALUES ('TS926053307063', 'Ralph Reed', 0, '+44 7468 513918', 4, '674740319983741180', 'No.46 Main building, 810 Edward Ave, Braunstone Town, Leicester, LE3 2PD, United Kingdom', '1987-04-20', 0, 0, 'ralpreed', '2020-06-11', 'reedr', '2020-05-10'); +INSERT INTO "public"."userinfo" VALUES ('TS822461600037', '李安琪', 0, '+86 28-563-7903', 3, '469286030501864801', '中国成都市成华区双庆路149号17室', '1988-10-12', 0, 0, 'leeok', '2019-11-21', 'oklee6', '2012-05-28'); +INSERT INTO "public"."userinfo" VALUES ('TS262309268266', '方世榮', 1, '+86 769-572-6686', 1, '752878073973834050', '中国东莞珊瑚路347号48楼', '1996-02-17', 0, 0, 'saiwingfon', '2009-07-05', 'fonsaiwing', '2021-05-11'); +INSERT INTO "public"."userinfo" VALUES ('TS556766143797', 'Wanda Murphy', 0, '+44 7665 299458', 2, '574312091262321304', 'No.1 Main building, 682 Whitehouse Lane, Huntingdon Rd, Cambridge, CB3 0LX, United Kingdom', '1995-07-06', 0, 0, 'murw', '2007-01-27', 'murphywanda127', '2018-11-08'); +INSERT INTO "public"."userinfo" VALUES ('TS-202200141', '小优', 0, 'Z7aKblOdOULSmO21jJs4IsA2wUHFUwm6UvdgtuB/wv97xH9wL0O/iYqeAEMdZfPm9YW2a3NhTM+1b4R+FUb2oJ6H0UAKvXHCc9kdYqIvQsI9yl5W9YcNWKFyMIqVPVgJavz311inZWLzMx8f1curueHGf/xWctqI95F7gqGw3tQ=·Fi0agF0DHDHa☆D0☆0☆F(b34b116d0691f721)', 0, 'HEACqzhKX8FE3Rij7wbpnQtU9ZhJc6J7LkSJ0zkhkYv08226EADCPrjT8OrJ+vbxoOyr/jGHZpsWgmlxIrZQIBcWcNELXnWgTwoTgHGsV1xSRAMMc01uZa00MPnByDJWVL9lu2HRr4U2fAS+4dHfCtzUa/09fUh27lUYOgej+IA=·Fi0agF0DHDg☆BDi0DiF(6dc6398f5b0a2663)', '广东省', '1995-12-14', 0, 0, 'WK010', '2022-03-13', NULL, '0001-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS-202200136', '路三强', 1, 'hFxwk9iEl220yf/BbiTKcsqfUS2O4fIM2aJ/jr7hSG0oAhUPYMzLcBmd2Y4ueJHT3bPhnzR1NExGt1zBZjw0E8yopzig8J+HUyOJbdZUAwxw0lq1wKiyxNQxNeqC17c22+tUjrJqOL49+JB5Y762A6FY/vOvtA0sWhTlBAYzBEw=·Fi0BaigigaHcFgcaciB(3b1b9dd4e2d17c65)', 4, '4eJan7AJXgytIw2DYAbAVf8cAHkjbJtm+jLcrMrZ/N0xTNBJI/bDYabBRW94nbAHM9WUpN6VirUoPowBCZqPRDq2p3kg4Udcxik7W39kLpgvM/FzBRzat2WYBX6h7ghVDkLXrzXRP/n7sSsK66ofGBGCYRHmdWHwogifbpnNkYo=·Fi0Baigigag☆BHD☆caB(be460370b9c35ac9)', '广东省茂名市信宜县', '1988-12-14', 0, 0, 'WK010', '2022-02-26', 'WK010', '2022-03-14'); +INSERT INTO "public"."userinfo" VALUES ('TS-202200157', '测试数据库', 1, 'ick03wvvih/c4jgaianmRZK7O9hyDfxYfa1Ax+prhujRYrxu45GbhggXqY1oSkJ20o8XM+548jwzVUC4mycLtvACuKLDUux/JqsYiI5B6Kz6YMvOamS9GG4B4K8JbxylD2nVyev/bpk/SHykUnoW6JYmY7g/O2psN88Fs7L8N4c=·Fic00FHHHgB0cDgi☆☆B(6054d4c5ef8f99fe)', 0, 'hIfUG+Sllx8bHn3ASpL1UtLvJBBnlXga2xDkBNnT0sP5ieITWXVi6QmZ5T6LSVZvUpCcDLidXp6cOwbtcWVnb25nd+/N9JQXO+tnRor7wanIK9yq8kiRcDu9UVxtMCjs8V+95+uWhVxn6/pUc8iP9XhJLVfNuKoU/CsvEyKnEMQ=·Fic00FHHHgaa☆ciiaFH(85afd5a43ee0160d)', '广东省茂名市信宜县', '1999-07-12', 0, 0, 'WK010', '2022-05-30', NULL, '0001-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS-20220099', '雷电芽衣', 0, 'd1WKY5Djs6OZG4P9T8ush1uS4WS9jL3llu7S3Yit+Zpva8eNpTODxtfJoQnjYbRwFo3yQn5uK61WGF320TANKkOVOgGsfEPvGDX/5JWAHV3ttw8+iKbLzH0L3uQIzs6WI74ktGfRaSbPxdJ/PhwZvfHkZob+aMvVTjmw1ZBEefw=·FiiBaHiic☆gHHg☆BHiF(940e360b8f6386f8)', 4, 'cl5IEpTMw9VNUTC9lTZyLpeTjDiRKxR0MJMgeZJDYf2Qda+LZbaWAMEkFd6YWRu/AXFqd9N8AeXsNrEiSu+DAxwKCjgro9w88UmgK2eh3J27k84clBxQ/33G29vByeLzKYF/ICpTgEkSd2691rqMKj9YsSQGrRT8V8qaz1vT2+0=·FiiBaHiic☆gc00cBFD0(a0a4996b0ea50c89)', '东京', '1905-02-14', 0, 0, 'WK010', '2022-02-02', 'WK010', '2022-11-18'); +INSERT INTO "public"."userinfo" VALUES ('TS-202200165', '卡卡西', 1, 'W/BVS6jOjo2Qbv+39JDVpbrBwGvq5QrPxQaMyHOtqlJjDDR62zn8JDH+XhhsEjRpmlKWFC/YAm/gOPj4NZM3OFToeRS1Uo5G54Zr6WLEbGYqUziMp+dwOm65MT6pQtYGpmfwokq4+EPJK5qt7/4DHTPvZfFQ4GRcoVWASbCbZ84=·FiiBaiaac0BBaFgDDiF(85de1f8139bac816)', 4, 'V5mVwqn6bQkfw+QVZy1vGA/R5qGeLhNvw2YwKaVlPGM+3U1HahDSy5RCCKI9SRgLJodNNUOx2Rvr6n++H7PISxdtb6+iN8b1vgLSJaIvxk/nZYHEovoI/JV+d8qimCkbZonrzg0XbEGSqqT83lJhzmhdYlREnOEp5e8gOodXCGw=·FiiBaiaac0aFgaDH☆DD(9d4eecaeac9c4e0d)', '木叶村', '2020-11-24', 0, 0, 'WK010', '2022-11-18', NULL, '0001-01-01'); +INSERT INTO "public"."userinfo" VALUES ('TS-202200166', '新海诚', 1, 'Nu0i7h3QKPPHZEHyo5U2AyZTmcfITqU8cyTToFM9SMZKmT6u+b+xnzT+rbmzHbwmLEtKdBCgZyoUNO9+S0jQruKIwBFplHV9i+k586SBZvm8RooSezQsyYwrZggkGlCv6xU+R6aGmN8NkGOSDcFcoAjJ02pHxR5QcrK2QWdnSyY=·FiiBaiaDFaFig☆aiFaF(50c21fc296138b4d)', 4, 'BAyEAY+Mx66U1Rhb8jXEgt2O7Yg3TKu71v+SE4n581+mH5Z31TulF0ax+Olkhjh6sLiQ3YJURzGHWRn1Tl/pIb47wTv5elcSECj0gWvMYiTWFnfHYS1tnTt4oIMstxcLulZoWyCdVXACnsR+shkAf6ENL8JLPUw8337cShVF+eU=·FiiBaiaDFaF☆acHBBgB(a76bb1bd976ee509)', '大阪', '2020-11-24', 0, 0, 'WK010', '2022-11-18', NULL, '0001-01-01'); + +-- ---------------------------- +-- Table structure for usertype +-- ---------------------------- +DROP TABLE IF EXISTS "public"."usertype"; +CREATE TABLE "public"."usertype" ( + "UserType" int4 NOT NULL, + "TypeName" varchar(10) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."usertype"."UserType" IS '客户类型ID'; +COMMENT ON COLUMN "public"."usertype"."TypeName" IS '客户类型名称'; +COMMENT ON COLUMN "public"."usertype"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."usertype"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."usertype"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."usertype"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."usertype"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."usertype" IS '用户类型表'; + +-- ---------------------------- +-- Records of usertype +-- ---------------------------- +INSERT INTO "public"."usertype" VALUES (0, '普通用户', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."usertype" VALUES (1, '钻石会员', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."usertype" VALUES (2, '白金会员', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."usertype" VALUES (3, '黄金会员', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for vip_rule +-- ---------------------------- +DROP TABLE IF EXISTS "public"."vip_rule"; +CREATE TABLE "public"."vip_rule" ( + "id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "rule_id" varchar(64) COLLATE "pg_catalog"."default" NOT NULL, + "rule_name" varchar(128) COLLATE "pg_catalog"."default" NOT NULL, + "rule_value" numeric(32,2) NOT NULL, + "type_id" int4 NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."vip_rule"."id" IS '索引ID'; +COMMENT ON COLUMN "public"."vip_rule"."rule_id" IS '会员规则流水号'; +COMMENT ON COLUMN "public"."vip_rule"."rule_name" IS '会员规则名称'; +COMMENT ON COLUMN "public"."vip_rule"."rule_value" IS '预设数值'; +COMMENT ON COLUMN "public"."vip_rule"."type_id" IS '会员等级'; +COMMENT ON COLUMN "public"."vip_rule"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."vip_rule"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."vip_rule"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."vip_rule"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."vip_rule"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."vip_rule" IS '会员等级规则表'; + +-- ---------------------------- +-- Records of vip_rule +-- ---------------------------- +INSERT INTO "public"."vip_rule" VALUES (1, 'VR-202107170003', '升级到钻石会员的规则', 70000.00, 1, 0, 'admin', '2021-07-17', NULL, '0001-01-01'); +INSERT INTO "public"."vip_rule" VALUES (2, 'VR-202107170007', '升级到黄金会员的规则', 50000.00, 3, 0, 'admin', '2021-07-17', NULL, '0001-01-01'); +INSERT INTO "public"."vip_rule" VALUES (3, 'VR-2021071700010', '升级到白金会员的规则', 30000.00, 2, 0, 'admin', '2021-07-17', NULL, '0001-01-01'); +INSERT INTO "public"."vip_rule" VALUES (0, 'VR-2022022600052', '尊贵会员', 150000.00, 1, 0, 'admin', '2022-02-26', NULL, '0001-01-01'); + +-- ---------------------------- +-- Table structure for worker +-- ---------------------------- +DROP TABLE IF EXISTS "public"."worker"; +CREATE TABLE "public"."worker" ( + "WorkerId" varchar(12) COLLATE "pg_catalog"."default" NOT NULL, + "WorkerName" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, + "WorkerBirthday" timestamp(6) NOT NULL, + "WorkerSex" int4 NOT NULL, + "WorkerTel" varchar(300) COLLATE "pg_catalog"."default" NOT NULL, + "WorkerClub" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, + "WorkerNation" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, + "WorkerAddress" varchar(600) COLLATE "pg_catalog"."default" NOT NULL, + "WorkerPosition" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, + "CardID" varchar(600) COLLATE "pg_catalog"."default" NOT NULL, + "WorkerPwd" varchar(600) COLLATE "pg_catalog"."default", + "WorkerTime" timestamp(6) NOT NULL, + "WorkerFace" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, + "WorkerEducation" varchar(255) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."worker"."WorkerId" IS '工号'; +COMMENT ON COLUMN "public"."worker"."WorkerName" IS '名字'; +COMMENT ON COLUMN "public"."worker"."WorkerBirthday" IS '出生日期'; +COMMENT ON COLUMN "public"."worker"."WorkerSex" IS '性别'; +COMMENT ON COLUMN "public"."worker"."WorkerTel" IS '电话'; +COMMENT ON COLUMN "public"."worker"."WorkerClub" IS '部门'; +COMMENT ON COLUMN "public"."worker"."WorkerNation" IS '民族'; +COMMENT ON COLUMN "public"."worker"."WorkerAddress" IS '居住地址'; +COMMENT ON COLUMN "public"."worker"."WorkerPosition" IS '职位'; +COMMENT ON COLUMN "public"."worker"."CardID" IS '证件号码'; +COMMENT ON COLUMN "public"."worker"."WorkerPwd" IS '系统密码'; +COMMENT ON COLUMN "public"."worker"."WorkerTime" IS '入职时间'; +COMMENT ON COLUMN "public"."worker"."WorkerFace" IS '面貌'; +COMMENT ON COLUMN "public"."worker"."WorkerEducation" IS '学历'; +COMMENT ON COLUMN "public"."worker"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."worker"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."worker"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."worker"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."worker"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."worker" IS '员工表'; + +-- ---------------------------- +-- Records of worker +-- ---------------------------- +INSERT INTO "public"."worker" VALUES ('WK018', '十二月', '1929-10-11 00:00:00', 0, '', 'D-007', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK017', '十一月', '1939-10-11 00:00:00', 0, '', 'D-004', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK016', '十月', '1949-10-11 00:00:00', 0, '', 'D-004', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK015', '十元', '1959-10-11 00:00:00', 1, '', 'D-007', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK014', '九月', '1969-10-11 00:00:00', 1, '', 'D-004', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK013', '八月', '1979-10-11 00:00:00', 1, '', 'D-004', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK011', '六月', '1900-01-18 00:00:00', 1, '', 'D-002', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK009', '老铁', '1989-12-05 00:00:00', 1, '', 'D-004', 'N-00001', '市区', 'P-0003', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK012', '七月', '1989-10-11 00:00:00', 1, '', 'D-002', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK008', '林淑仪', '1999-12-05 00:00:00', 0, '', 'D-008', 'N-00001', '市区', 'P-2021001', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-04-10'); +INSERT INTO "public"."worker" VALUES ('WK007', '罗良建', '2000-12-05 00:00:00', 1, '', 'D-003', 'N-00001', '市区', 'P-0002', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-17'); +INSERT INTO "public"."worker" VALUES ('WK024', '四北', '1996-10-11 00:00:00', 1, '', 'D-003', 'N-00001', '斗门', 'P-0003', '', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK023', '三男', '1995-10-11 00:00:00', 1, '', 'D-006', 'N-00001', '斗门', 'P-0003', '', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK006', '陈洪汉', '1999-10-05 00:00:00', 1, '', 'D-002', 'N-00001', '南屏', 'P-0002', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-18'); +INSERT INTO "public"."worker" VALUES ('WK010', '杨俊杰', '1999-07-20 00:00:00', 1, 'B6CCShOF+ezaHM3LdXEDWPmWHBRpYmEl0DVl/p/Ate8D/LT88ksL9wa35D6vkQqzvnAtzUXkDT5Rpavw8LWgceXalSgDTcEPsopL+KbiHw/1NlTxCeRB4ldpj5Djwi57oRBgzqH7h053DYNmtgLPuGV3DcsDgSawRXY1y1ziYrk=·FHHiDagiBgg0Bg0DaBH(a1226e938724d985)', 'D-001', 'N-00001', '广东珠海', 'P-0001', '', 'admin', '2011-04-20 00:00:00', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2022-02-07'); +INSERT INTO "public"."worker" VALUES ('WK033', '沙宣', '1979-10-11 00:00:00', 1, '', 'D-005', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK032', '瞎小', '1969-10-11 00:00:00', 0, '', 'D-011', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK031', '阿力', '1959-10-11 00:00:00', 1, '', 'D-003', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK030', '阿狸', '1949-10-11 00:00:00', 1, '', 'D-005', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK029', '阿里', '1939-10-11 00:00:00', 0, '', 'D-005', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK028', '支付宝', '1929-10-11 00:00:00', 1, '', 'D-003', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK027', '余额宝', '1919-10-11 00:00:00', 1, '', 'D-003', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK026', '蚂蚁', '1998-10-11 00:00:00', 1, '', 'D-003', 'N-00001', '斗门', 'P-0003', '', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK025', '花呗', '1997-10-11 00:00:00', 0, '', 'D-003', 'N-00001', '斗门', 'P-0003', '', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('Duyen', '阿娟', '1969-10-11 00:00:00', 0, '', 'D-011', 'N-00001', '市区', 'P-0003', '', '123456', '2020-07-05 02:20:31', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK020', '十五年', '1992-10-11 00:00:00', 0, '', 'D-006', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK019', '十四年', '1911-10-11 00:00:00', 0, '', 'D-007', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK005', '付金鑫', '1999-06-05 00:00:00', 1, '', 'D-202200114', 'N-00001', '市区', 'P-0002', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2022-01-31'); +INSERT INTO "public"."worker" VALUES ('WK004', '杨旭东', '1999-02-15 00:00:00', 1, '', 'D-006', 'N-00001', '井岸', 'P-0001', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-17'); +INSERT INTO "public"."worker" VALUES ('WK003', '陈伟瀚', '1999-11-20 00:00:00', 1, '', 'D-005', 'N-00001', '斗门', 'P-0002', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-17'); +INSERT INTO "public"."worker" VALUES ('WK002', '李杰峰', '1999-10-15 00:00:00', 1, '', 'D-003', 'N-00001', '市区', 'P-0003', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK001', '谭国平', '1999-12-05 00:00:00', 1, '', 'D-004', 'N-00001', '红旗', 'P-0002', '', '123456', '2018-12-03 15:48:37', '团员', 'E-00006', 0, NULL, NULL, 'admin', '2021-02-16'); +INSERT INTO "public"."worker" VALUES ('Shenyou', '申酉', '1999-07-20 00:00:00', 1, '', 'D-001', 'N-00001', '金湾', 'P-0003', '', '123456', '2020-07-05 02:18:19', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('Lien', '阿蓮', '1969-10-11 00:00:00', 0, '', 'D-011', 'N-00001', '市区', 'P-0003', '', '123456', '2020-07-05 02:16:44', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('Lam', '阿隆', '1969-10-11 00:00:00', 0, '', 'D-005', 'N-00001', '市区', 'P-0003', '', '123456', '2020-07-05 02:21:52', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('Huong', '阿香', '1969-10-11 00:00:00', 0, '', 'D-011', 'N-00001', '市区', 'P-0003', '', '123456', '2020-07-05 02:17:25', '党员', 'E-00003', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('Hien', '阿賢', '1969-10-11 00:00:00', 0, '', 'D-005', 'N-00001', '市区', 'P-0003', '', '123456', '2020-07-05 02:19:53', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK202102004', '潞州', '2020-11-24 22:50:37', 1, '4AEE3E28DF37EA1AF64BD636ECA59DCB', 'D-008', 'N-00007', '广东珠海', 'P-0003', '79D8861186EB60E3611CD4A5D0BCAE', '123456', '2020-11-24 22:50:37', '群众', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK202102007', '江小白', '1993-07-20 00:00:00', 1, 'A89CDE93F692F546F0BEC375DC9E60FB', 'D-010', 'N-00001', '广东省茂名市信宜县', 'P-0003', '3D7640EF7C9B756E75C276FF9C8D233', '123456', '2020-11-24 22:50:37', '群众', 'E-00006', 0, 'admin', '2021-02-14', 'admin', '2021-02-14'); +INSERT INTO "public"."worker" VALUES ('WK775', '凌峰', '1995-07-14 00:00:00', 1, '', 'D-003', 'N-00001', '广东省茂名市信宜县', 'P-0003', '', '123456', '2020-05-04 12:57:15', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK2021040024', '赤羽业', '1999-07-20 00:00:00', 1, '', 'D-011', 'N-00001', '广东省茂名市信宜县', 'P-0003', '', '123456', '2020-11-24 22:50:37', '群众', 'E-00007', 0, 'admin', '2021-04-18', NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK034', '沙县', '1989-10-11 00:00:00', 1, '', 'D-005', 'N-00001', '市区', 'P-0003', '', '123456', '2011-12-05 00:00:00', '党员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('Xingxue', '興學', '1999-07-20 00:00:00', 1, '', 'D-001', 'N-00001', '金湾', 'P-0003', '123121313132X3', '123456', '2020-07-05 02:18:53', '团员', 'E-00005', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK388', '张三', '1998-06-27 00:00:00', 1, 'A+XROKGquR9JRSlRmWEIzmz/yA5BvTK8jbGUg3bAT7S3Qc3oxcsJlftz4r45JKDOoP45Ip+Mh7C0DhRLsr8z0GJ/NAdneBkOtKZk1j686EeIMueXRphpU0/hRC4m0aISGSNdn8wr5KFp7U8k/uLdJgfBAgVloy3rAPSiICK66sE=·FHHgci☆BciiHiccHaaB(fc82c054c807242a)', 'D-002', 'N-00001', '广西壮族自治区防城港市上思县', 'P-0003', '', '123456', '2020-08-20 09:33:45', '群众', 'E-00005', 0, NULL, NULL, 'admin', '2022-02-01'); +INSERT INTO "public"."worker" VALUES ('WK2021040026', '古河渚', '1996-12-15 00:00:00', 0, 'TqXplZEAJiCJ34jERPTDwnH4vcojLfOX6isZGyHe1M7ThNEiTAa7ZtHrmstzF25S5YjQR4eCbr3Gy+V8qdpQJqn7jh4Rn9vXnzneCBCP5WsvFC+wpoaILCCOpeOrgkZfBt36itg2rhV6h/FT4yrX7wAHly1WFxW1WVGawfAQEZY=·FHHgciDaFB0DgH0cciB(c2ae638db2d0dd83)', 'D-010', 'N-00001', '大阪', 'P-0003', '', '123456', '2020-11-24 22:50:37', '群众', 'E-00003', 0, 'admin', '2021-04-18', 'admin', '2022-02-01'); +INSERT INTO "public"."worker" VALUES ('WK2021040025', '冈崎朋也', '1999-07-20 00:00:00', 1, 'bEJDqDv3W/o1p69Y2JXPj5H4kCninKF0LrnVJH9plJyOZAXEOaWTolwnnM99GQSEorYGVfZNYtBqt2ohO4vKO6OrgWtBTg4Kh1KjKL6wrBEK42mghcursCod6G73fdbQITFRHMSJmhK68PQNbi/tVw0EUn4aGsxsy6THx2KsK6A=·FHHgciDFiHcHcgDiaB0(2dfb79318b734469)', 'D-010', 'N-00001', '广东省茂名市信宜县', 'P-0003', '', '123456', '2020-11-24 22:50:37', '群众', 'E-00003', 0, 'admin', '2021-04-18', 'admin', '2022-02-01'); +INSERT INTO "public"."worker" VALUES ('WK022', '二南', '1994-10-11 00:00:00', 1, '', 'D-006', 'N-00001', '斗门', 'P-0003', '', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK2022020042', '夜莺', '1988-12-13 00:00:00', 0, 'YJmmD35b13Ojc2UJPXXntwk+xpnKSTsCqzkzJBkbsadc3skEyGqlVIJUFU4Em0tjbv0IsTJnLskVB8VjZ95YyhKRJcksmdNXHyR1PF6dvaJ8nv9FHQ93V66I06ObgVXB+/ysSOAuL7DM3Ndj5UxgiAlK2DDE1eKjNttliIq6zvg=·FHHgcaFc☆F☆a☆iga0gB(376e5910042923d5)', 'D-202200114', 'N-00009', '广东省茂名市信宜县', 'P-2021001', 'DjM0t5DO0oIckI4JlN+z9Bkosi/SV0mQllIT6U3515hzns4FSRExxunfW9BEbQoldRlKoifXFXnKz6sulj5rf0yi1lPl+plA+NQ0LA8goCiQAyfEUEBwbCOgvhPjKbptdS3R3y46v4AEy6gcaYS3A4Zrc3m/ipqD2xXchsKuBrM=·FHHgcaFc☆FDa☆c0cFH0(ee00c65e12fee5a2)', '123456', '2020-11-24 22:50:37', '群众', 'E-00005', 0, 'admin', '2022-02-01', NULL, NULL); +INSERT INTO "public"."worker" VALUES ('WK021', '一楠', '1993-10-11 00:00:00', 0, '', 'D-006', 'N-00001', '斗门', 'P-0003', '', '123456', '2011-12-05 00:00:00', '团员', 'E-00006', 0, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for workercheck +-- ---------------------------- +DROP TABLE IF EXISTS "public"."workercheck"; +CREATE TABLE "public"."workercheck" ( + "Id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "WorkerNo" varchar(20) COLLATE "pg_catalog"."default", + "CheckTime" timestamp(6), + "CheckWay" varchar(80) COLLATE "pg_catalog"."default", + "CheckState" int4, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."workercheck"."Id" IS '自增长ID'; +COMMENT ON COLUMN "public"."workercheck"."WorkerNo" IS '工号'; +COMMENT ON COLUMN "public"."workercheck"."CheckTime" IS '打卡时间'; +COMMENT ON COLUMN "public"."workercheck"."CheckWay" IS '打卡方式'; +COMMENT ON COLUMN "public"."workercheck"."CheckState" IS '打卡状态'; +COMMENT ON COLUMN "public"."workercheck"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."workercheck"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."workercheck"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."workercheck"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."workercheck"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."workercheck" IS '员工打卡表'; + +-- ---------------------------- +-- Records of workercheck +-- ---------------------------- +INSERT INTO "public"."workercheck" VALUES (66, 'WK010', '2022-02-21 20:31:19', '系统界面', 0, 0, 'WK010', '2022-02-21', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (72, 'WK010', '2022-02-22 23:16:46', '系统界面', 0, 0, 'WK010', '2022-02-22', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (75, 'WK010', '2022-02-25 22:13:30', '系统界面', 0, 0, 'WK010', '2022-02-25', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (86, 'WK010', '2022-02-26 12:28:59', '系统界面', 0, 0, 'WK010', '2022-02-26', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (211, 'WK010', '2022-02-27 01:10:54', '系统界面', 0, 0, 'WK010', '2022-02-27', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (225, 'WK010', '2022-02-28 00:03:49', '系统界面', 0, 0, 'WK010', '2022-02-28', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (251, 'WK010', '2022-03-13 14:53:36', '系统界面', 0, 0, 'WK010', '2022-03-13', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (279, 'WK010', '2022-03-14 19:54:55', '系统界面', 0, 0, 'WK010', '2022-03-14', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (295, 'WK010', '2022-03-15 19:38:47', '系统界面', 0, 0, 'WK010', '2022-03-15', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (298, 'WK010', '2022-03-16 23:08:10', '系统界面', 0, 0, 'WK010', '2022-03-16', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (300, 'WK010', '2022-03-17 23:14:22', '系统界面', 0, 0, 'WK010', '2022-03-17', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (303, 'WK010', '2022-03-20 16:05:51', '系统界面', 0, 0, 'WK010', '2022-03-20', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (310, 'WK010', '2022-03-22 16:46:34', '系统界面', 0, 0, 'WK010', '2022-03-22', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (312, 'WK010', '2022-03-23 19:45:31', '系统界面', 0, 0, 'WK010', '2022-03-23', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (314, 'WK010', '2022-03-24 23:03:07', '系统界面', 0, 0, 'WK010', '2022-03-24', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (318, 'WK010', '2022-03-26 20:44:57', '系统界面', 0, 0, 'WK010', '2022-03-26', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (320, 'WK010', '2022-03-28 23:05:26', '系统界面', 0, 0, 'WK010', '2022-03-28', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (326, 'WK010', '2022-03-29 15:26:24', '系统界面', 0, 0, 'WK010', '2022-03-29', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (333, 'WK010', '2022-03-30 19:13:08', '系统界面', 0, 0, 'WK010', '2022-03-30', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (337, 'WK010', '2022-03-31 23:11:43', '系统界面', 0, 0, 'WK010', '2022-03-31', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (340, 'WK010', '2022-04-03 12:48:31', '系统界面', 0, 0, 'WK010', '2022-04-03', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (368, 'WK010', '2022-04-06 15:15:19', '系统界面', 0, 0, 'WK010', '2022-04-06', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (380, 'WK010', '2022-04-07 16:19:50', '系统界面', 0, 0, 'WK010', '2022-04-07', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (388, 'WK010', '2022-04-10 10:01:25', '系统界面', 0, 0, 'WK010', '2022-04-10', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (391, 'WK010', '2022-04-14 13:35:58', '系统界面', 0, 0, 'WK010', '2022-04-14', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (397, 'WK010', '2022-04-16 20:31:07', '系统界面', 0, 0, 'WK010', '2022-04-16', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (399, 'WK010', '2022-04-18 19:19:48', '系统界面', 0, 0, 'WK010', '2022-04-18', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (406, 'WK010', '2022-04-22 14:05:23', '系统界面', 0, 0, 'WK010', '2022-04-22', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (410, 'WK010', '2022-04-26 23:29:45', '系统界面', 0, 0, 'WK010', '2022-04-26', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (420, 'WK010', '2022-04-29 11:37:28', '系统界面', 0, 0, 'WK010', '2022-04-29', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (425, 'WK010', '2022-05-02 00:52:02', '系统界面', 0, 0, 'WK010', '2022-05-02', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (443, 'WK010', '2022-05-12 20:57:55', '系统界面', 0, 0, 'WK010', '2022-05-12', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (468, 'WK010', '2022-05-21 09:39:15', '系统界面', 0, 0, 'WK010', '2022-05-21', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (477, 'WK010', '2022-05-23 17:22:10', '系统界面', 0, 0, 'WK010', '2022-05-23', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (498, 'WK010', '2022-05-29 23:55:06', '系统界面', 0, 0, 'WK010', '2022-05-29', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (506, 'WK010', '2022-05-30 19:43:13', '系统界面', 0, 0, 'WK010', '2022-05-30', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (519, 'WK010', '2022-06-04 11:25:48', '系统界面', 0, 0, 'WK010', '2022-06-04', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (533, 'WK010', '2022-06-05 19:19:41', '系统界面', 0, 0, 'WK010', '2022-06-05', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (536, 'WK010', '2022-06-12 01:07:20', '系统界面', 0, 0, 'WK010', '2022-06-12', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (538, 'WK010', '2022-06-14 23:14:27', '系统界面', 0, 0, 'WK010', '2022-06-14', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (546, 'WK010', '2022-06-26 16:00:51', '系统界面', 0, 0, 'WK010', '2022-06-26', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (553, 'WK010', '2022-07-01 20:22:20', '系统界面', 0, 0, 'WK010', '2022-07-01', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (556, 'WK010', '2022-07-13 23:29:18', '系统界面', 0, 0, 'WK010', '2022-07-13', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (558, 'WK010', '2022-07-18 21:38:15', '系统界面', 0, 0, 'WK010', '2022-07-18', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (564, 'WK010', '2022-08-02 23:07:48', '系统界面', 0, 0, 'WK010', '2022-08-02', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (575, 'WK010', '2022-09-11 01:43:53', '系统界面', 0, 0, 'WK010', '2022-09-11', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (583, 'WK010', '2022-09-18 23:38:34', '系统界面', 0, 0, 'WK010', '2022-09-18', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (588, 'WK010', '2022-09-24 19:49:00', '系统界面', 0, 0, 'WK010', '2022-09-24', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (594, 'WK010', '2022-10-04 00:49:14', '系统界面', 0, 0, 'WK010', '2022-10-04', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (610, 'WK010', '2022-11-17 10:24:54', '系统界面', 0, 0, 'WK010', '2022-11-17', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (655, 'WK010', '2022-11-18 14:10:44', '系统界面', 0, 0, 'WK010', '2022-11-18', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (664, 'WK010', '2022-11-20 23:50:41', '系统界面', 0, 0, 'WK010', '2022-11-20', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (683, 'WK010', '2022-12-04 13:20:45', '系统界面', 0, 0, 'WK010', '2022-12-04', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (738, 'WK010', '2022-12-05 13:53:18', '系统界面', 0, 0, 'WK010', '2022-12-05', NULL, '0001-01-01'); +INSERT INTO "public"."workercheck" VALUES (774, 'WK010', '2022-12-06 09:20:10', '系统界面', 0, 0, 'WK010', '2022-12-06', NULL, '0001-01-01'); + +-- ---------------------------- +-- Table structure for workergoodbad +-- ---------------------------- +DROP TABLE IF EXISTS "public"."workergoodbad"; +CREATE TABLE "public"."workergoodbad" ( + "Id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "WorkNo" varchar(50) COLLATE "pg_catalog"."default", + "GBInfo" varchar(255) COLLATE "pg_catalog"."default", + "GBType" int4, + "GBOperation" varchar(200) COLLATE "pg_catalog"."default", + "GBTime" timestamp(6), + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."workergoodbad"."Id" IS '自增长ID'; +COMMENT ON COLUMN "public"."workergoodbad"."WorkNo" IS '工号'; +COMMENT ON COLUMN "public"."workergoodbad"."GBInfo" IS '奖惩信息'; +COMMENT ON COLUMN "public"."workergoodbad"."GBType" IS '奖惩类型'; +COMMENT ON COLUMN "public"."workergoodbad"."GBOperation" IS '录入人'; +COMMENT ON COLUMN "public"."workergoodbad"."GBTime" IS '录入时间'; +COMMENT ON COLUMN "public"."workergoodbad"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."workergoodbad"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."workergoodbad"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."workergoodbad"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."workergoodbad"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."workergoodbad" IS '员工奖惩记录表'; + +-- ---------------------------- +-- Records of workergoodbad +-- ---------------------------- +INSERT INTO "public"."workergoodbad" VALUES (1, 'WK008', '牛逼就完事了!', 0, '杨俊杰', '2020-04-21 21:02:30', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."workergoodbad" VALUES (2, 'WK775', '被评为优秀的“五四”行业青年', 0, '杨俊杰', '2020-05-04 13:01:17', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."workergoodbad" VALUES (3, 'WK010', '测试', 1, 'admin', '2020-11-24 22:50:37', 0, 'admin', '2021-02-15', NULL, '0001-01-01'); +INSERT INTO "public"."workergoodbad" VALUES (4, 'WK010', '测试', 1, 'admin', '2020-11-24 22:50:37', 0, 'admin', '2021-02-15', NULL, '0001-01-01'); +INSERT INTO "public"."workergoodbad" VALUES (5, 'WK010', '测试', 1, 'admin', '2020-11-24 22:50:37', 0, 'admin', '2021-02-15', NULL, '0001-01-01'); +INSERT INTO "public"."workergoodbad" VALUES (6, 'WK001', '666666666', 0, 'admin', '2020-11-24 22:50:37', 0, 'admin', '2021-02-16', NULL, '0001-01-01'); + +-- ---------------------------- +-- Table structure for workerhistory +-- ---------------------------- +DROP TABLE IF EXISTS "public"."workerhistory"; +CREATE TABLE "public"."workerhistory" ( + "Id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "WorkerId" varchar(12) COLLATE "pg_catalog"."default" NOT NULL, + "StartDate" timestamp(6) NOT NULL, + "EndDate" timestamp(6) NOT NULL, + "Position" varchar(255) COLLATE "pg_catalog"."default" NOT NULL, + "Company" varchar(255) COLLATE "pg_catalog"."default" NOT NULL, + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date +) +; +COMMENT ON COLUMN "public"."workerhistory"."Id" IS '自增长ID'; +COMMENT ON COLUMN "public"."workerhistory"."WorkerId" IS '工号'; +COMMENT ON COLUMN "public"."workerhistory"."StartDate" IS '开始时间'; +COMMENT ON COLUMN "public"."workerhistory"."EndDate" IS '结束时间'; +COMMENT ON COLUMN "public"."workerhistory"."Position" IS '职务'; +COMMENT ON COLUMN "public"."workerhistory"."Company" IS '公司'; +COMMENT ON COLUMN "public"."workerhistory"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."workerhistory"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."workerhistory"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."workerhistory"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."workerhistory"."datachg_date" IS '资料更新时间'; +COMMENT ON TABLE "public"."workerhistory" IS '员工履历表'; + +-- ---------------------------- +-- Records of workerhistory +-- ---------------------------- +INSERT INTO "public"."workerhistory" VALUES (1, 'WK010', '2005-03-05 00:00:00', '2008-03-05 00:00:00', '部门经理', '海湾大酒店', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."workerhistory" VALUES (2, 'WK010', '2009-06-23 00:00:00', '2010-02-02 00:00:00', '总经理', '非凡大酒店', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."workerhistory" VALUES (3, 'WK775', '2015-07-17 12:57:15', '2018-05-04 12:57:15', '财务会计', '非凡会计所', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."workerhistory" VALUES (4, 'WK261', '2020-07-16 21:13:33', '2020-07-16 21:13:33', '', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."workerhistory" VALUES (5, 'WK100', '2020-07-16 21:13:42', '2020-07-16 21:13:42', '', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."workerhistory" VALUES (6, 'WK388', '2020-08-20 09:33:45', '2020-08-20 09:33:45', '', '', 0, NULL, NULL, NULL, NULL); +INSERT INTO "public"."workerhistory" VALUES (7, 'WK202102004', '2020-11-24 22:50:37', '2020-11-24 22:50:37', '', '', 0, NULL, '0001-01-01', NULL, '0001-01-01'); +INSERT INTO "public"."workerhistory" VALUES (8, 'WK202102007', '2020-11-24 22:50:37', '2020-11-24 22:50:37', '', '', 0, NULL, '0001-01-01', NULL, '0001-01-01'); +INSERT INTO "public"."workerhistory" VALUES (9, 'WK2021040024', '2019-05-06 00:00:00', '2020-11-24 22:50:37', '餐饮专员', '比利王大酒店', 0, NULL, '0001-01-01', NULL, '0001-01-01'); +INSERT INTO "public"."workerhistory" VALUES (10, 'WK2021040025', '2020-11-24 22:50:37', '2020-11-24 22:50:37', '', '', 0, NULL, '0001-01-01', NULL, '0001-01-01'); +INSERT INTO "public"."workerhistory" VALUES (11, 'WK2021040026', '2020-11-24 22:50:37', '2020-11-24 22:50:37', '', '', 0, NULL, '0001-01-01', NULL, '0001-01-01'); +INSERT INTO "public"."workerhistory" VALUES (12, 'WK2022020042', '2015-03-01 00:00:00', '2019-03-03 00:00:00', '质量测试主管', '园南计算机科技有限公司', 0, NULL, '0001-01-01', NULL, '0001-01-01'); + +-- ---------------------------- +-- Table structure for workerpic +-- ---------------------------- +DROP TABLE IF EXISTS "public"."workerpic"; +CREATE TABLE "public"."workerpic" ( + "Id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), + "WorkerId" varchar(17) COLLATE "pg_catalog"."default", + "Pic" varchar(255) COLLATE "pg_catalog"."default" +) +; +COMMENT ON COLUMN "public"."workerpic"."Id" IS '自增长流水号'; +COMMENT ON COLUMN "public"."workerpic"."WorkerId" IS '工号'; +COMMENT ON COLUMN "public"."workerpic"."Pic" IS '照片路径'; + +-- ---------------------------- +-- Records of workerpic +-- ---------------------------- +INSERT INTO "public"."workerpic" VALUES (1, 'WK2022020042', 'a212e035-62f7-4b7b-be5e-c1cacce6ab94.png'); +INSERT INTO "public"."workerpic" VALUES (2, 'WK2021040026', '98d6f138-3f86-4d76-ae33-6d4cbc436a93.jpg'); +INSERT INTO "public"."workerpic" VALUES (3, 'WK2021040025', '0c0b42d9-41f2-487e-8ac8-fc686cb5f5fe.jpg'); +INSERT INTO "public"."workerpic" VALUES (4, 'WK2021040024', 'cacacfaa-fef5-4beb-a87a-e4d52e56ae50.jpg'); +INSERT INTO "public"."workerpic" VALUES (9, 'WK001', 'fb4bc453-29b8-495f-82d1-36e02f10e3d0.png'); +INSERT INTO "public"."workerpic" VALUES (10, 'WK002', '36caf9bd-f3db-4d8b-834d-cf6c39581de3.png'); +INSERT INTO "public"."workerpic" VALUES (206, 'Shenyou', 'cea9d22e-cd3e-4ea8-adfd-6d43e9e80698.png'); +INSERT INTO "public"."workerpic" VALUES (207, 'WK775', '68137280-5cec-473a-a0d8-6a8538a6daf3.png'); +INSERT INTO "public"."workerpic" VALUES (277, 'WK026', '3f7f0972-ccf8-4682-8c44-c4f4bd8b4105.png'); +INSERT INTO "public"."workerpic" VALUES (530, 'WK010', 'e0095072-2848-4097-94f7-a3cebc419783.png'); + +-- ---------------------------- +-- Table structure for wtinfo +-- ---------------------------- +DROP TABLE IF EXISTS "public"."wtinfo"; +CREATE TABLE "public"."wtinfo" ( + "RoomNo" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, + "UseDate" timestamp(6) NOT NULL, + "EndDate" timestamp(6), + "WaterUse" numeric(6,2) NOT NULL, + "PowerUse" numeric(6,2) NOT NULL, + "Record" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, + "CustoNo" varchar(15) COLLATE "pg_catalog"."default", + "delete_mk" int4 NOT NULL, + "datains_usr" varchar(20) COLLATE "pg_catalog"."default", + "datains_date" date, + "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", + "datachg_date" date, + "WtiNo" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass) +) +; +COMMENT ON COLUMN "public"."wtinfo"."RoomNo" IS '房间编号'; +COMMENT ON COLUMN "public"."wtinfo"."UseDate" IS '开始时间'; +COMMENT ON COLUMN "public"."wtinfo"."EndDate" IS '结束时间'; +COMMENT ON COLUMN "public"."wtinfo"."WaterUse" IS '用水情况'; +COMMENT ON COLUMN "public"."wtinfo"."PowerUse" IS '用电情况'; +COMMENT ON COLUMN "public"."wtinfo"."Record" IS '记录人'; +COMMENT ON COLUMN "public"."wtinfo"."CustoNo" IS '客户编号'; +COMMENT ON COLUMN "public"."wtinfo"."delete_mk" IS '删除标记'; +COMMENT ON COLUMN "public"."wtinfo"."datains_usr" IS '资料创建人'; +COMMENT ON COLUMN "public"."wtinfo"."datains_date" IS '资料创建时间'; +COMMENT ON COLUMN "public"."wtinfo"."datachg_usr" IS '资料更新人'; +COMMENT ON COLUMN "public"."wtinfo"."datachg_date" IS '资料更新时间'; +COMMENT ON COLUMN "public"."wtinfo"."WtiNo" IS 'ID'; +COMMENT ON TABLE "public"."wtinfo" IS '水电费信息表'; + +-- ---------------------------- +-- Records of wtinfo +-- ---------------------------- +INSERT INTO "public"."wtinfo" VALUES ('BD002', '2022-03-29 00:00:00', '2022-03-29 16:46:33', 2.56, 48.00, 'admin', 'TS000299787414', 0, NULL, '0001-01-01', NULL, '0001-01-01', 674); +INSERT INTO "public"."wtinfo" VALUES ('BS002', '2022-03-28 00:00:00', '2022-12-04 13:20:17', 40.00, 750.00, 'admin', 'TS900880194151', 0, NULL, '0001-01-01', NULL, '0001-01-01', 681); +INSERT INTO "public"."wtinfo" VALUES ('BD009', '2022-03-13 00:00:00', '2022-12-05 22:56:12', 42.72, 801.00, 'admin', 'TS003574305322', 0, NULL, '0001-01-01', NULL, '0001-01-01', 744); +INSERT INTO "public"."wtinfo" VALUES ('BS003', '2022-03-20 00:00:00', '2022-12-05 23:01:11', 41.60, 780.00, 'admin', 'TS006957585451', 0, NULL, '0001-01-01', NULL, '0001-01-01', 747); +INSERT INTO "public"."wtinfo" VALUES ('BS010', '2022-03-28 00:00:00', '2022-12-05 23:01:32', 40.32, 756.00, 'admin', 'TS040379060037', 0, NULL, '0001-01-01', NULL, '0001-01-01', 749); +INSERT INTO "public"."wtinfo" VALUES ('BS011', '2022-03-14 00:00:00', '2022-12-05 23:02:39', 42.56, 798.00, 'admin', 'TS015253323658', 0, NULL, '0001-01-01', NULL, '0001-01-01', 752); +INSERT INTO "public"."wtinfo" VALUES ('HD004', '2022-03-13 00:00:00', '2022-12-05 23:03:15', 42.72, 801.00, 'admin', 'TS006957585451', 0, NULL, '0001-01-01', NULL, '0001-01-01', 754); +INSERT INTO "public"."wtinfo" VALUES ('BS014', '2022-03-14 00:00:00', '2022-12-06 08:52:22', 42.72, 801.00, 'admin', 'TS026428262056', 0, NULL, '0001-01-01', NULL, '0001-01-01', 757); +INSERT INTO "public"."wtinfo" VALUES ('BS007', '2022-03-15 00:00:00', '2022-12-06 08:52:44', 42.56, 798.00, 'admin', 'TS012832200601', 0, NULL, '0001-01-01', NULL, '0001-01-01', 759); +INSERT INTO "public"."wtinfo" VALUES ('BD007', '2022-03-13 00:00:00', '2022-12-06 08:53:36', 42.88, 804.00, 'admin', 'TS001535098782', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); +INSERT INTO "public"."wtinfo" VALUES ('BD014', '2022-03-13 00:00:00', '2022-12-06 08:53:49', 42.88, 804.00, 'admin', 'TS096263040047', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); +INSERT INTO "public"."wtinfo" VALUES ('BS008', '2022-03-13 00:00:00', '2022-12-06 08:54:00', 42.88, 804.00, 'admin', 'TS039625402835', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); +INSERT INTO "public"."wtinfo" VALUES ('HD001', '2022-02-26 00:00:00', '2022-12-06 08:54:11', 45.28, 849.00, 'admin', 'TS-20220089', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); +INSERT INTO "public"."wtinfo" VALUES ('HD006', '2022-03-14 00:00:00', '2022-12-06 08:54:24', 42.72, 801.00, 'admin', 'TS006292728074', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); +INSERT INTO "public"."wtinfo" VALUES ('HS002', '2022-03-28 00:00:00', '2022-12-06 08:54:37', 40.48, 759.00, 'admin', 'TS053630244707', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); +INSERT INTO "public"."wtinfo" VALUES ('HS007', '2022-12-06 00:00:00', '2022-12-06 08:54:51', 42.72, 801.00, 'admin', 'TS001535098782', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); +INSERT INTO "public"."wtinfo" VALUES ('ZT003', '2022-12-06 00:00:00', '2022-12-06 08:55:08', 42.72, 801.00, 'admin', 'TS063603838018', 0, NULL, '0001-01-01', NULL, '0001-01-01', 0); + +-- ---------------------------- +-- Primary Key structure for table admininfo +-- ---------------------------- +ALTER TABLE "public"."admininfo" ADD CONSTRAINT "admininfo_pkey" PRIMARY KEY ("Id", "AdminAccount"); + +-- ---------------------------- +-- Primary Key structure for table admintype +-- ---------------------------- +ALTER TABLE "public"."admintype" ADD CONSTRAINT "admintype_pkey" PRIMARY KEY ("Id"); + +-- ---------------------------- +-- Primary Key structure for table applicationversion +-- ---------------------------- +ALTER TABLE "public"."applicationversion" ADD CONSTRAINT "applicationversion_pkey" PRIMARY KEY ("base_versionId"); + +-- ---------------------------- +-- Primary Key structure for table backinfo +-- ---------------------------- +ALTER TABLE "public"."backinfo" ADD CONSTRAINT "backinfo_pkey" PRIMARY KEY ("BackNo"); + +-- ---------------------------- +-- Primary Key structure for table base +-- ---------------------------- +ALTER TABLE "public"."base" ADD CONSTRAINT "base_pkey" PRIMARY KEY ("url_no"); + +-- ---------------------------- +-- Primary Key structure for table cardcodes +-- ---------------------------- +ALTER TABLE "public"."cardcodes" ADD CONSTRAINT "cardcodes_pkey" PRIMARY KEY ("id"); + +-- ---------------------------- +-- Primary Key structure for table cashinfo +-- ---------------------------- +ALTER TABLE "public"."cashinfo" ADD CONSTRAINT "cashinfo_pkey" PRIMARY KEY ("CashNo"); + +-- ---------------------------- +-- Primary Key structure for table checkinfo +-- ---------------------------- +ALTER TABLE "public"."checkinfo" ADD CONSTRAINT "checkinfo_pkey" PRIMARY KEY ("CheckNo"); + +-- ---------------------------- +-- Primary Key structure for table counterrule +-- ---------------------------- +ALTER TABLE "public"."counterrule" ADD CONSTRAINT "counterrule_pkey" PRIMARY KEY ("rule_id"); + +-- ---------------------------- +-- Primary Key structure for table customer +-- ---------------------------- +ALTER TABLE "public"."customer" ADD CONSTRAINT "customer_pkey" PRIMARY KEY ("custo_no"); + +-- ---------------------------- +-- Primary Key structure for table custospend +-- ---------------------------- +ALTER TABLE "public"."custospend" ADD CONSTRAINT "custospend_pkey" PRIMARY KEY ("SpendId"); + +-- ---------------------------- +-- Primary Key structure for table dept +-- ---------------------------- +ALTER TABLE "public"."dept" ADD CONSTRAINT "dept_pkey" PRIMARY KEY ("dept_no"); + +-- ---------------------------- +-- Primary Key structure for table education +-- ---------------------------- +ALTER TABLE "public"."education" ADD CONSTRAINT "education_pkey" PRIMARY KEY ("education_no"); + +-- ---------------------------- +-- Primary Key structure for table fonts +-- ---------------------------- +ALTER TABLE "public"."fonts" ADD CONSTRAINT "fonts_pkey" PRIMARY KEY ("FontsId"); + +-- ---------------------------- +-- Primary Key structure for table gbtype +-- ---------------------------- +ALTER TABLE "public"."gbtype" ADD CONSTRAINT "gbtype_pkey" PRIMARY KEY ("GBTypeId"); + +-- ---------------------------- +-- Primary Key structure for table module +-- ---------------------------- +ALTER TABLE "public"."module" ADD CONSTRAINT "module_pkey" PRIMARY KEY ("module_id"); + +-- ---------------------------- +-- Primary Key structure for table module_zero +-- ---------------------------- +ALTER TABLE "public"."module_zero" ADD CONSTRAINT "module_zero_pkey" PRIMARY KEY ("module_id"); + +-- ---------------------------- +-- Primary Key structure for table nation +-- ---------------------------- +ALTER TABLE "public"."nation" ADD CONSTRAINT "nation_pkey" PRIMARY KEY ("nation_no", "nation_name"); + +-- ---------------------------- +-- Primary Key structure for table nav_bar +-- ---------------------------- +ALTER TABLE "public"."nav_bar" ADD CONSTRAINT "nav_bar_pkey" PRIMARY KEY ("nav_id"); + +-- ---------------------------- +-- Primary Key structure for table operationlog +-- ---------------------------- +ALTER TABLE "public"."operationlog" ADD CONSTRAINT "operationlog_pkey" PRIMARY KEY ("OperationId"); + +-- ---------------------------- +-- Primary Key structure for table passporttype +-- ---------------------------- +ALTER TABLE "public"."passporttype" ADD CONSTRAINT "passporttype_pkey" PRIMARY KEY ("PassportId"); + +-- ---------------------------- +-- Primary Key structure for table position +-- ---------------------------- +ALTER TABLE "public"."position" ADD CONSTRAINT "position_pkey" PRIMARY KEY ("position_no"); + +-- ---------------------------- +-- Primary Key structure for table reser +-- ---------------------------- +ALTER TABLE "public"."reser" ADD CONSTRAINT "reser_pkey" PRIMARY KEY ("ReserId"); + +-- ---------------------------- +-- Primary Key structure for table room +-- ---------------------------- +ALTER TABLE "public"."room" ADD CONSTRAINT "room_pkey" PRIMARY KEY ("room_no"); + +-- ---------------------------- +-- Primary Key structure for table roomstate +-- ---------------------------- +ALTER TABLE "public"."roomstate" ADD CONSTRAINT "roomstate_pkey" PRIMARY KEY ("RoomStateId"); + +-- ---------------------------- +-- Primary Key structure for table roomtype +-- ---------------------------- +ALTER TABLE "public"."roomtype" ADD CONSTRAINT "roomtype_pkey" PRIMARY KEY ("RoomType"); + +-- ---------------------------- +-- Primary Key structure for table sellthing +-- ---------------------------- +ALTER TABLE "public"."sellthing" ADD CONSTRAINT "sellthing_pkey" PRIMARY KEY ("SellNo"); + +-- ---------------------------- +-- Primary Key structure for table sextype +-- ---------------------------- +ALTER TABLE "public"."sextype" ADD CONSTRAINT "sextype_pkey" PRIMARY KEY ("sexId"); + +-- ---------------------------- +-- Primary Key structure for table uploadinfo +-- ---------------------------- +ALTER TABLE "public"."uploadinfo" ADD CONSTRAINT "uploadinfo_pkey" PRIMARY KEY ("NoticeNo"); + +-- ---------------------------- +-- Primary Key structure for table user_log +-- ---------------------------- +ALTER TABLE "public"."user_log" ADD CONSTRAINT "user_log_pkey" PRIMARY KEY ("id"); + +-- ---------------------------- +-- Primary Key structure for table userinfo +-- ---------------------------- +ALTER TABLE "public"."userinfo" ADD CONSTRAINT "userinfo_pkey" PRIMARY KEY ("CustoNo"); + +-- ---------------------------- +-- Primary Key structure for table usertype +-- ---------------------------- +ALTER TABLE "public"."usertype" ADD CONSTRAINT "usertype_pkey" PRIMARY KEY ("UserType"); + +-- ---------------------------- +-- Primary Key structure for table vip_rule +-- ---------------------------- +ALTER TABLE "public"."vip_rule" ADD CONSTRAINT "vip_rule_pkey" PRIMARY KEY ("id", "rule_id"); + +-- ---------------------------- +-- Primary Key structure for table worker +-- ---------------------------- +ALTER TABLE "public"."worker" ADD CONSTRAINT "worker_pkey" PRIMARY KEY ("WorkerId"); + +-- ---------------------------- +-- Primary Key structure for table workercheck +-- ---------------------------- +ALTER TABLE "public"."workercheck" ADD CONSTRAINT "workercheck_pkey" PRIMARY KEY ("Id"); + +-- ---------------------------- +-- Primary Key structure for table workergoodbad +-- ---------------------------- +ALTER TABLE "public"."workergoodbad" ADD CONSTRAINT "workergoodbad_pkey" PRIMARY KEY ("Id"); + +-- ---------------------------- +-- Primary Key structure for table workerhistory +-- ---------------------------- +ALTER TABLE "public"."workerhistory" ADD CONSTRAINT "workerhistory_pkey" PRIMARY KEY ("Id"); + +-- ---------------------------- +-- Primary Key structure for table workerpic +-- ---------------------------- +ALTER TABLE "public"."workerpic" ADD CONSTRAINT "workerpic_pkey" PRIMARY KEY ("Id"); diff --git "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/PostgreSQL\347\211\210\346\234\254/table.sql" "b/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/PostgreSQL\347\211\210\346\234\254/table.sql" deleted file mode 100644 index 70db385..0000000 --- "a/\346\225\260\346\215\256\345\272\223\350\204\232\346\234\254/PostgreSQL\347\211\210\346\234\254/table.sql" +++ /dev/null @@ -1,1215 +0,0 @@ --- ---------------------------- --- Sequence structure for upms_log_id_seq --- ---------------------------- -DROP SEQUENCE IF EXISTS "public"."upms_log_id_seq"; -CREATE SEQUENCE "public"."upms_log_id_seq" -INCREMENT 1 -MINVALUE 1 -MAXVALUE 9223372036854775807 -START 1 -CACHE 1; - --- ---------------------------- --- Table structure for admininfo --- ---------------------------- -DROP TABLE IF EXISTS "public"."admininfo"; -CREATE TABLE "public"."admininfo" ( - "Id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), - "AdminAccount" varchar(15) COLLATE "pg_catalog"."default" NOT NULL, - "AdminPassword" varchar(200) COLLATE "pg_catalog"."default", - "AdminType" varchar(15) COLLATE "pg_catalog"."default", - "AdminName" varchar(50) COLLATE "pg_catalog"."default", - "IsAdmin" int4, - "DeleteMk" int4, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_time" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_time" date -) -; -COMMENT ON COLUMN "public"."admininfo"."Id" IS '自增长ID'; -COMMENT ON COLUMN "public"."admininfo"."AdminAccount" IS '管理员账号'; -COMMENT ON COLUMN "public"."admininfo"."AdminPassword" IS '管理员密码'; -COMMENT ON COLUMN "public"."admininfo"."AdminType" IS '管理员类型'; -COMMENT ON COLUMN "public"."admininfo"."AdminName" IS '管理员名称'; -COMMENT ON COLUMN "public"."admininfo"."IsAdmin" IS '是否为超级管理员'; -COMMENT ON COLUMN "public"."admininfo"."DeleteMk" IS '删除标记'; -COMMENT ON COLUMN "public"."admininfo"."datains_usr" IS '资料新增人'; -COMMENT ON COLUMN "public"."admininfo"."datains_time" IS '资料新增时间'; -COMMENT ON COLUMN "public"."admininfo"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."admininfo"."datachg_time" IS '资料更新时间'; -COMMENT ON TABLE "public"."admininfo" IS '管理员信息表'; - --- ---------------------------- --- Table structure for admintype --- ---------------------------- -DROP TABLE IF EXISTS "public"."admintype"; -CREATE TABLE "public"."admintype" ( - "Id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), - "type_id" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, - "type_name" varchar(50) COLLATE "pg_catalog"."default", - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."admintype"."Id" IS '编号'; -COMMENT ON COLUMN "public"."admintype"."type_id" IS '管理员类型'; -COMMENT ON COLUMN "public"."admintype"."type_name" IS '管理员类型名称'; -COMMENT ON COLUMN "public"."admintype"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."admintype"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."admintype"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."admintype"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."admintype"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."admintype" IS '管理员类型表'; - --- ---------------------------- --- Table structure for applicationversion --- ---------------------------- -DROP TABLE IF EXISTS "public"."applicationversion"; -CREATE TABLE "public"."applicationversion" ( - "base_versionId" int2 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), - "base_version" varchar(50) COLLATE "pg_catalog"."default" NOT NULL -) -; -COMMENT ON COLUMN "public"."applicationversion"."base_versionId" IS '流水号'; -COMMENT ON COLUMN "public"."applicationversion"."base_version" IS '版本号'; -COMMENT ON TABLE "public"."applicationversion" IS '应用程序版本控制表'; - --- ---------------------------- --- Table structure for backinfo --- ---------------------------- -DROP TABLE IF EXISTS "public"."backinfo"; -CREATE TABLE "public"."backinfo" ( - "BackNo" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, - "BackName" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, - "BackSource" varchar(18) COLLATE "pg_catalog"."default" NOT NULL, - "BackCash" numeric(6,2) NOT NULL, - "BackType" int4 NOT NULL, - "BackPerson" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, - "ControlClub" varchar(12) COLLATE "pg_catalog"."default" NOT NULL, - "BackClub" varchar(12) COLLATE "pg_catalog"."default" NOT NULL, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."backinfo"."BackNo" IS '物资编号'; -COMMENT ON COLUMN "public"."backinfo"."BackName" IS '物资名称'; -COMMENT ON COLUMN "public"."backinfo"."BackSource" IS '物资来源'; -COMMENT ON COLUMN "public"."backinfo"."BackCash" IS '物资金额'; -COMMENT ON COLUMN "public"."backinfo"."BackType" IS '物资类型'; -COMMENT ON COLUMN "public"."backinfo"."BackPerson" IS '经办人'; -COMMENT ON COLUMN "public"."backinfo"."ControlClub" IS '管理部门'; -COMMENT ON COLUMN "public"."backinfo"."BackClub" IS '所属部门'; -COMMENT ON COLUMN "public"."backinfo"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."backinfo"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."backinfo"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."backinfo"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."backinfo"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."backinfo" IS '酒店物资表'; - --- ---------------------------- --- Table structure for base --- ---------------------------- -DROP TABLE IF EXISTS "public"."base"; -CREATE TABLE "public"."base" ( - "url_no" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), - "url_addr" varchar(255) COLLATE "pg_catalog"."default" -) -; -COMMENT ON COLUMN "public"."base"."url_no" IS 'ID'; -COMMENT ON COLUMN "public"."base"."url_addr" IS '地址'; -COMMENT ON TABLE "public"."base" IS '程序信息配置表'; - --- ---------------------------- --- Table structure for cardcodes --- ---------------------------- -DROP TABLE IF EXISTS "public"."cardcodes"; -CREATE TABLE "public"."cardcodes" ( - "id" int8 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), - "Province" varchar(255) COLLATE "pg_catalog"."default" NOT NULL, - "City" varchar(255) COLLATE "pg_catalog"."default", - "District" varchar(255) COLLATE "pg_catalog"."default", - "bm" varchar(255) COLLATE "pg_catalog"."default" -) -; -COMMENT ON COLUMN "public"."cardcodes"."id" IS '编号'; -COMMENT ON COLUMN "public"."cardcodes"."Province" IS '省份'; -COMMENT ON COLUMN "public"."cardcodes"."City" IS '城市'; -COMMENT ON COLUMN "public"."cardcodes"."District" IS '地区'; -COMMENT ON COLUMN "public"."cardcodes"."bm" IS '地区识别码'; -COMMENT ON TABLE "public"."cardcodes" IS '身份证地区识别码表'; - --- ---------------------------- --- Table structure for cashinfo --- ---------------------------- -DROP TABLE IF EXISTS "public"."cashinfo"; -CREATE TABLE "public"."cashinfo" ( - "CashNo" varchar(12) COLLATE "pg_catalog"."default" NOT NULL, - "CashName" varchar(300) COLLATE "pg_catalog"."default" NOT NULL, - "CashPrice" numeric(10,2) NOT NULL, - "CashClub" varchar(800) COLLATE "pg_catalog"."default" NOT NULL, - "CashTime" timestamp(6) NOT NULL, - "CashSource" varchar(200) COLLATE "pg_catalog"."default" NOT NULL, - "CashPerson" varchar(800) COLLATE "pg_catalog"."default" NOT NULL, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."cashinfo"."CashNo" IS '资产编号'; -COMMENT ON COLUMN "public"."cashinfo"."CashName" IS '资产名称'; -COMMENT ON COLUMN "public"."cashinfo"."CashPrice" IS '资产总值'; -COMMENT ON COLUMN "public"."cashinfo"."CashClub" IS '所属部门'; -COMMENT ON COLUMN "public"."cashinfo"."CashTime" IS '入库时间'; -COMMENT ON COLUMN "public"."cashinfo"."CashSource" IS '资产来源'; -COMMENT ON COLUMN "public"."cashinfo"."CashPerson" IS '资产经办人'; -COMMENT ON COLUMN "public"."cashinfo"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."cashinfo"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."cashinfo"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."cashinfo"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."cashinfo"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."cashinfo" IS '酒店资产表'; - --- ---------------------------- --- Table structure for checkinfo --- ---------------------------- -DROP TABLE IF EXISTS "public"."checkinfo"; -CREATE TABLE "public"."checkinfo" ( - "CheckNo" varchar(10) COLLATE "pg_catalog"."default" NOT NULL, - "CheckClub" varchar(12) COLLATE "pg_catalog"."default" NOT NULL, - "CheckProgres" varchar(250) COLLATE "pg_catalog"."default" NOT NULL, - "CheckCash" varchar(250) COLLATE "pg_catalog"."default" NOT NULL, - "CheckScore" int4 NOT NULL, - "CheckPerson" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, - "CheckAdvice" varchar(45) COLLATE "pg_catalog"."default" NOT NULL, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."checkinfo"."CheckNo" IS '监管统计编号'; -COMMENT ON COLUMN "public"."checkinfo"."CheckClub" IS '受监管部门'; -COMMENT ON COLUMN "public"."checkinfo"."CheckProgres" IS '受监管部门总体概述'; -COMMENT ON COLUMN "public"."checkinfo"."CheckCash" IS '受监管部门交易情况'; -COMMENT ON COLUMN "public"."checkinfo"."CheckScore" IS '受监管部门得分情况'; -COMMENT ON COLUMN "public"."checkinfo"."CheckPerson" IS '本次监管负责人'; -COMMENT ON COLUMN "public"."checkinfo"."CheckAdvice" IS '监管建议'; -COMMENT ON COLUMN "public"."checkinfo"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."checkinfo"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."checkinfo"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."checkinfo"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."checkinfo"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."checkinfo" IS '监管统计表'; - --- ---------------------------- --- Table structure for counterrule --- ---------------------------- -DROP TABLE IF EXISTS "public"."counterrule"; -CREATE TABLE "public"."counterrule" ( - "rule_id" int4 NOT NULL, - "rule_name" varchar(50) COLLATE "pg_catalog"."default", - "rule_desc" varchar(100) COLLATE "pg_catalog"."default", - "now_id" int4, - "prefix_name" varchar(20) COLLATE "pg_catalog"."default", - "custo_format" varchar(50) COLLATE "pg_catalog"."default", - "number_format" varchar(10) COLLATE "pg_catalog"."default", - "separating_char" varchar(5) COLLATE "pg_catalog"."default", - "datains_usrid" varchar(20) COLLATE "pg_catalog"."default", - "datains_time" timestamp(6), - "datachg_usrid" varchar(20) COLLATE "pg_catalog"."default", - "datachg_time" timestamp(6) -) -; -COMMENT ON COLUMN "public"."counterrule"."rule_id" IS '规则编号'; -COMMENT ON COLUMN "public"."counterrule"."rule_name" IS '规格名称'; -COMMENT ON COLUMN "public"."counterrule"."rule_desc" IS '规则描述'; -COMMENT ON COLUMN "public"."counterrule"."now_id" IS '当前ID'; -COMMENT ON COLUMN "public"."counterrule"."prefix_name" IS '规则简写'; -COMMENT ON COLUMN "public"."counterrule"."custo_format" IS '规则格式'; -COMMENT ON COLUMN "public"."counterrule"."number_format" IS '编号前缀'; -COMMENT ON COLUMN "public"."counterrule"."separating_char" IS '规则分割符'; -COMMENT ON COLUMN "public"."counterrule"."datains_usrid" IS '资料新增人'; -COMMENT ON COLUMN "public"."counterrule"."datains_time" IS '资料新增时间'; -COMMENT ON COLUMN "public"."counterrule"."datachg_usrid" IS '资料更新人'; -COMMENT ON COLUMN "public"."counterrule"."datachg_time" IS '资料更新时间'; -COMMENT ON TABLE "public"."counterrule" IS '业务流水号规则表'; - --- ---------------------------- --- Table structure for custospend --- ---------------------------- -DROP TABLE IF EXISTS "public"."custospend"; -CREATE TABLE "public"."custospend" ( - "SpendId" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), - "RoomNo" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, - "CustoNo" varchar(15) COLLATE "pg_catalog"."default" NOT NULL, - "SpendName" varchar(25) COLLATE "pg_catalog"."default" NOT NULL, - "SpendAmount" int4 NOT NULL, - "SpendPrice" numeric(10,2) NOT NULL, - "SpendMoney" numeric(10,2) NOT NULL, - "SpendTime" timestamp(6) NOT NULL, - "MoneyState" varchar(9) COLLATE "pg_catalog"."default", - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."custospend"."SpendId" IS '记录编号'; -COMMENT ON COLUMN "public"."custospend"."RoomNo" IS '房间编号'; -COMMENT ON COLUMN "public"."custospend"."CustoNo" IS '客户编号'; -COMMENT ON COLUMN "public"."custospend"."SpendName" IS '商品名称'; -COMMENT ON COLUMN "public"."custospend"."SpendAmount" IS '商品数量'; -COMMENT ON COLUMN "public"."custospend"."SpendPrice" IS '商品价格'; -COMMENT ON COLUMN "public"."custospend"."SpendMoney" IS '消费总额'; -COMMENT ON COLUMN "public"."custospend"."SpendTime" IS '消费时间'; -COMMENT ON COLUMN "public"."custospend"."MoneyState" IS '结算状态'; -COMMENT ON COLUMN "public"."custospend"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."custospend"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."custospend"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."custospend"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."custospend"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."custospend" IS '商品消费表'; - --- ---------------------------- --- Table structure for dept --- ---------------------------- -DROP TABLE IF EXISTS "public"."dept"; -CREATE TABLE "public"."dept" ( - "dept_no" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, - "dept_name" varchar(100) COLLATE "pg_catalog"."default", - "dept_desc" varchar(255) COLLATE "pg_catalog"."default", - "dept_date" date, - "dept_leader" varchar(20) COLLATE "pg_catalog"."default", - "dept_parent" varchar(50) COLLATE "pg_catalog"."default", - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."dept"."dept_no" IS '部门编号'; -COMMENT ON COLUMN "public"."dept"."dept_name" IS '部门名称'; -COMMENT ON COLUMN "public"."dept"."dept_desc" IS '部门描述'; -COMMENT ON COLUMN "public"."dept"."dept_date" IS '创建时间(部门)'; -COMMENT ON COLUMN "public"."dept"."dept_leader" IS '部门主管'; -COMMENT ON COLUMN "public"."dept"."dept_parent" IS '上级部门'; -COMMENT ON COLUMN "public"."dept"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."dept"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."dept"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."dept"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."dept"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."dept" IS '部门表'; - --- ---------------------------- --- Table structure for education --- ---------------------------- -DROP TABLE IF EXISTS "public"."education"; -CREATE TABLE "public"."education" ( - "education_no" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, - "education_name" varchar(100) COLLATE "pg_catalog"."default", - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."education"."education_no" IS '学历编号'; -COMMENT ON COLUMN "public"."education"."education_name" IS '学历名称'; -COMMENT ON COLUMN "public"."education"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."education"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."education"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."education"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."education"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."education" IS '学历表'; - --- ---------------------------- --- Table structure for fonts --- ---------------------------- -DROP TABLE IF EXISTS "public"."fonts"; -CREATE TABLE "public"."fonts" ( - "FontsId" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), - "FontsMess" varchar(250) COLLATE "pg_catalog"."default" NOT NULL, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."fonts"."FontsId" IS 'ID'; -COMMENT ON COLUMN "public"."fonts"."FontsMess" IS '文字信息'; -COMMENT ON COLUMN "public"."fonts"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."fonts"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."fonts"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."fonts"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."fonts"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."fonts" IS '主页跑马灯信息表'; - --- ---------------------------- --- Table structure for gbtype --- ---------------------------- -DROP TABLE IF EXISTS "public"."gbtype"; -CREATE TABLE "public"."gbtype" ( - "GBTypeId" int4 NOT NULL, - "GBName" varchar(255) COLLATE "pg_catalog"."default", - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."gbtype"."GBTypeId" IS '奖惩类型ID'; -COMMENT ON COLUMN "public"."gbtype"."GBName" IS '奖惩类型名称'; -COMMENT ON COLUMN "public"."gbtype"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."gbtype"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."gbtype"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."gbtype"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."gbtype"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."gbtype" IS '奖惩类型'; - --- ---------------------------- --- Table structure for module --- ---------------------------- -DROP TABLE IF EXISTS "public"."module"; -CREATE TABLE "public"."module" ( - "module_id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), - "module_name" varchar(200) COLLATE "pg_catalog"."default", - "module_desc" varchar(255) COLLATE "pg_catalog"."default", - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_time" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_time" date -) -; -COMMENT ON COLUMN "public"."module"."module_id" IS '模块ID'; -COMMENT ON COLUMN "public"."module"."module_name" IS '模块名称'; -COMMENT ON COLUMN "public"."module"."module_desc" IS '模块描述'; -COMMENT ON COLUMN "public"."module"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."module"."datains_usr" IS '资料新增人'; -COMMENT ON COLUMN "public"."module"."datains_time" IS '资料新增时间'; -COMMENT ON COLUMN "public"."module"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."module"."datachg_time" IS '资料更新时间'; -COMMENT ON TABLE "public"."module" IS '系统模块表'; - --- ---------------------------- --- Table structure for module_zero --- ---------------------------- -DROP TABLE IF EXISTS "public"."module_zero"; -CREATE TABLE "public"."module_zero" ( - "module_id" int4 NOT NULL, - "admin_account" varchar(15) COLLATE "pg_catalog"."default", - "module_name" varchar(200) COLLATE "pg_catalog"."default", - "module_enable" int4 -) -; -COMMENT ON COLUMN "public"."module_zero"."module_id" IS '模块ID'; -COMMENT ON COLUMN "public"."module_zero"."admin_account" IS '管理员账号'; -COMMENT ON COLUMN "public"."module_zero"."module_name" IS '模块名称'; -COMMENT ON COLUMN "public"."module_zero"."module_enable" IS '是否开启'; -COMMENT ON TABLE "public"."module_zero" IS '系统模块权限表'; - --- ---------------------------- --- Table structure for nation --- ---------------------------- -DROP TABLE IF EXISTS "public"."nation"; -CREATE TABLE "public"."nation" ( - "nation_no" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, - "nation_name" varchar(100) COLLATE "pg_catalog"."default" NOT NULL, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."nation"."nation_no" IS '民族编号'; -COMMENT ON COLUMN "public"."nation"."nation_name" IS '民族名称'; -COMMENT ON COLUMN "public"."nation"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."nation"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."nation"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."nation"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."nation"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."nation" IS '民族信息表'; - --- ---------------------------- --- Table structure for operationlog --- ---------------------------- -DROP TABLE IF EXISTS "public"."operationlog"; -CREATE TABLE "public"."operationlog" ( - "OperationId" int8 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), - "OperationTime" timestamp(0) NOT NULL, - "LogContent" varchar(8000) COLLATE "pg_catalog"."default" NOT NULL, - "OperationAccount" varchar(300) COLLATE "pg_catalog"."default" NOT NULL, - "OperationLevel" int4, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" timestamp(0) DEFAULT NULL::timestamp without time zone, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" timestamp(0) DEFAULT NULL::timestamp without time zone, - "SoftwareVersion" varchar(10) COLLATE "pg_catalog"."default", - "login_ip" varchar(10) COLLATE "pg_catalog"."default" -) -; -COMMENT ON COLUMN "public"."operationlog"."OperationId" IS '记录ID'; -COMMENT ON COLUMN "public"."operationlog"."OperationTime" IS '记录时间'; -COMMENT ON COLUMN "public"."operationlog"."LogContent" IS '日志内容'; -COMMENT ON COLUMN "public"."operationlog"."OperationAccount" IS '被记录账户'; -COMMENT ON COLUMN "public"."operationlog"."OperationLevel" IS '日志等级'; -COMMENT ON COLUMN "public"."operationlog"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."operationlog"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."operationlog"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."operationlog"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."operationlog"."datachg_date" IS '资料更新时间'; -COMMENT ON COLUMN "public"."operationlog"."SoftwareVersion" IS '软件版本'; -COMMENT ON COLUMN "public"."operationlog"."login_ip" IS '登录IP'; -COMMENT ON TABLE "public"."operationlog" IS '系统操作日志表'; - --- ---------------------------- --- Table structure for passporttype --- ---------------------------- -DROP TABLE IF EXISTS "public"."passporttype"; -CREATE TABLE "public"."passporttype" ( - "PassportId" int4 NOT NULL, - "PassportName" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."passporttype"."PassportId" IS '证件类型ID'; -COMMENT ON COLUMN "public"."passporttype"."PassportName" IS '证件类型名称'; -COMMENT ON COLUMN "public"."passporttype"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."passporttype"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."passporttype"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."passporttype"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."passporttype"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."passporttype" IS '证件类型表'; - --- ---------------------------- --- Table structure for pdman_db_version --- ---------------------------- -DROP TABLE IF EXISTS "public"."pdman_db_version"; -CREATE TABLE "public"."pdman_db_version" ( - "DB_VERSION" varchar(256) COLLATE "pg_catalog"."default", - "VERSION_DESC" varchar(1024) COLLATE "pg_catalog"."default", - "CREATED_TIME" varchar(32) COLLATE "pg_catalog"."default" -) -; - --- ---------------------------- --- Table structure for position --- ---------------------------- -DROP TABLE IF EXISTS "public"."position"; -CREATE TABLE "public"."position" ( - "position_no" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, - "position_name" varchar(150) COLLATE "pg_catalog"."default", - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."position"."position_no" IS '职位编号'; -COMMENT ON COLUMN "public"."position"."position_name" IS '职位名称'; -COMMENT ON COLUMN "public"."position"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."position"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."position"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."position"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."position"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."position" IS '职位表'; - --- ---------------------------- --- Table structure for reser --- ---------------------------- -DROP TABLE IF EXISTS "public"."reser"; -CREATE TABLE "public"."reser" ( - "ReserId" varchar(16) COLLATE "pg_catalog"."default" NOT NULL, - "CustoName" varchar(8) COLLATE "pg_catalog"."default", - "CustoTel" varchar(11) COLLATE "pg_catalog"."default", - "ReserWay" varchar(10) COLLATE "pg_catalog"."default", - "ReserRoom" varchar(255) COLLATE "pg_catalog"."default", - "ReserDate" date, - "ReserEndDay" date, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."reser"."ReserId" IS '预约ID '; -COMMENT ON COLUMN "public"."reser"."CustoName" IS '客户名字'; -COMMENT ON COLUMN "public"."reser"."CustoTel" IS '联系方式'; -COMMENT ON COLUMN "public"."reser"."ReserWay" IS '预约方式'; -COMMENT ON COLUMN "public"."reser"."ReserRoom" IS '预约房号'; -COMMENT ON COLUMN "public"."reser"."ReserDate" IS '预约开始日期'; -COMMENT ON COLUMN "public"."reser"."ReserEndDay" IS '预约结束日期'; -COMMENT ON COLUMN "public"."reser"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."reser"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."reser"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."reser"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."reser"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."reser" IS '预约表'; - --- ---------------------------- --- Table structure for room --- ---------------------------- -DROP TABLE IF EXISTS "public"."room"; -CREATE TABLE "public"."room" ( - "RoomNo" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, - "RoomType" int4 NOT NULL, - "CustoNo" varchar(15) COLLATE "pg_catalog"."default", - "CheckTime" timestamp(6), - "CheckOutTime" timestamp(6), - "RoomStateId" int4 NOT NULL, - "RoomMoney" numeric(10,2), - "RoomPosition" varchar(6) COLLATE "pg_catalog"."default" NOT NULL, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date, - "deposit" numeric(10,2) -) -; -COMMENT ON COLUMN "public"."room"."RoomNo" IS '房间编号'; -COMMENT ON COLUMN "public"."room"."RoomType" IS '房间类型'; -COMMENT ON COLUMN "public"."room"."CustoNo" IS '客户编号'; -COMMENT ON COLUMN "public"."room"."CheckTime" IS '入住时间'; -COMMENT ON COLUMN "public"."room"."CheckOutTime" IS '退房时间'; -COMMENT ON COLUMN "public"."room"."RoomStateId" IS '房间状态'; -COMMENT ON COLUMN "public"."room"."RoomMoney" IS '房间单价'; -COMMENT ON COLUMN "public"."room"."RoomPosition" IS '房间位置'; -COMMENT ON COLUMN "public"."room"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."room"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."room"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."room"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."room"."datachg_date" IS '资料更新时间'; -COMMENT ON COLUMN "public"."room"."deposit" IS '房间押金'; -COMMENT ON TABLE "public"."room" IS '房间表'; - --- ---------------------------- --- Table structure for roomstate --- ---------------------------- -DROP TABLE IF EXISTS "public"."roomstate"; -CREATE TABLE "public"."roomstate" ( - "RoomStateId" int4 NOT NULL, - "RoomState" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."roomstate"."RoomStateId" IS '房间状态ID'; -COMMENT ON COLUMN "public"."roomstate"."RoomState" IS '房间状态名称'; -COMMENT ON COLUMN "public"."roomstate"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."roomstate"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."roomstate"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."roomstate"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."roomstate"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."roomstate" IS '房间状态表'; - --- ---------------------------- --- Table structure for roomtype --- ---------------------------- -DROP TABLE IF EXISTS "public"."roomtype"; -CREATE TABLE "public"."roomtype" ( - "RoomType" int4 NOT NULL, - "RoomName" varchar(10) COLLATE "pg_catalog"."default" NOT NULL, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."roomtype"."RoomType" IS '房间类型ID'; -COMMENT ON COLUMN "public"."roomtype"."RoomName" IS '房间类型名称'; -COMMENT ON COLUMN "public"."roomtype"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."roomtype"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."roomtype"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."roomtype"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."roomtype"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."roomtype" IS '房间类型表'; - --- ---------------------------- --- Table structure for sellthing --- ---------------------------- -DROP TABLE IF EXISTS "public"."sellthing"; -CREATE TABLE "public"."sellthing" ( - "SellNo" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, - "SellName" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, - "SellPrice" numeric(10,2) NOT NULL, - "format" varchar(20) COLLATE "pg_catalog"."default", - "Stock" int4 NOT NULL, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."sellthing"."SellNo" IS '商品编号'; -COMMENT ON COLUMN "public"."sellthing"."SellName" IS '商品名称'; -COMMENT ON COLUMN "public"."sellthing"."SellPrice" IS '商品价格'; -COMMENT ON COLUMN "public"."sellthing"."format" IS '规格型号'; -COMMENT ON COLUMN "public"."sellthing"."Stock" IS '库存数量'; -COMMENT ON COLUMN "public"."sellthing"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."sellthing"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."sellthing"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."sellthing"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."sellthing"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."sellthing" IS '商品表'; - --- ---------------------------- --- Table structure for sextype --- ---------------------------- -DROP TABLE IF EXISTS "public"."sextype"; -CREATE TABLE "public"."sextype" ( - "sexId" int4 NOT NULL, - "sexName" varchar(15) COLLATE "pg_catalog"."default" NOT NULL, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."sextype"."sexId" IS '性别ID'; -COMMENT ON COLUMN "public"."sextype"."sexName" IS '性别名称'; -COMMENT ON COLUMN "public"."sextype"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."sextype"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."sextype"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."sextype"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."sextype"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."sextype" IS '性别类型表'; - --- ---------------------------- --- Table structure for uploadinfo --- ---------------------------- -DROP TABLE IF EXISTS "public"."uploadinfo"; -CREATE TABLE "public"."uploadinfo" ( - "NoticeNo" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, - "Noticetheme" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, - "NoticeType" varchar(100) COLLATE "pg_catalog"."default", - "NoticeTime" timestamp(6) NOT NULL, - "NoticeContent" varchar(8000) COLLATE "pg_catalog"."default" NOT NULL, - "NoticeClub" varchar(25) COLLATE "pg_catalog"."default" NOT NULL, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."uploadinfo"."NoticeNo" IS '公告编号'; -COMMENT ON COLUMN "public"."uploadinfo"."Noticetheme" IS '公告主题'; -COMMENT ON COLUMN "public"."uploadinfo"."NoticeType" IS '公告类型'; -COMMENT ON COLUMN "public"."uploadinfo"."NoticeTime" IS '发布日期'; -COMMENT ON COLUMN "public"."uploadinfo"."NoticeContent" IS '公告正文'; -COMMENT ON COLUMN "public"."uploadinfo"."NoticeClub" IS '发文部门'; -COMMENT ON COLUMN "public"."uploadinfo"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."uploadinfo"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."uploadinfo"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."uploadinfo"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."uploadinfo"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."uploadinfo" IS '公告表'; - --- ---------------------------- --- Table structure for user_log --- ---------------------------- -DROP TABLE IF EXISTS "public"."user_log"; -CREATE TABLE "public"."user_log" ( - "id" int4 NOT NULL, - "user_key" varchar(100) COLLATE "pg_catalog"."default", - "user_token" varchar(255) COLLATE "pg_catalog"."default", - "datains_time" timestamp(6) -) -; -COMMENT ON TABLE "public"."user_log" IS '用户登录信息表'; - --- ---------------------------- --- Table structure for userinfo --- ---------------------------- -DROP TABLE IF EXISTS "public"."userinfo"; -CREATE TABLE "public"."userinfo" ( - "CustoNo" varchar(15) COLLATE "pg_catalog"."default" NOT NULL, - "CustoName" varchar(15) COLLATE "pg_catalog"."default" NOT NULL, - "CustoSex" int4 NOT NULL, - "CustoTel" varchar(600) COLLATE "pg_catalog"."default" NOT NULL, - "PassportType" int4 NOT NULL, - "CustoID" varchar(600) COLLATE "pg_catalog"."default" NOT NULL, - "CustoAdress" varchar(600) COLLATE "pg_catalog"."default", - "CustoBirth" date NOT NULL, - "CustoType" int4 NOT NULL, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."userinfo"."CustoNo" IS '用户编号'; -COMMENT ON COLUMN "public"."userinfo"."CustoName" IS '用户名称'; -COMMENT ON COLUMN "public"."userinfo"."CustoSex" IS '用户性别'; -COMMENT ON COLUMN "public"."userinfo"."CustoTel" IS '用户电话'; -COMMENT ON COLUMN "public"."userinfo"."PassportType" IS '证照类型'; -COMMENT ON COLUMN "public"."userinfo"."CustoID" IS '证件号码'; -COMMENT ON COLUMN "public"."userinfo"."CustoAdress" IS '居住地址'; -COMMENT ON COLUMN "public"."userinfo"."CustoBirth" IS '出生日期'; -COMMENT ON COLUMN "public"."userinfo"."CustoType" IS '客户类型'; -COMMENT ON COLUMN "public"."userinfo"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."userinfo"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."userinfo"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."userinfo"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."userinfo"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."userinfo" IS '用户信息表'; - --- ---------------------------- --- Table structure for usertype --- ---------------------------- -DROP TABLE IF EXISTS "public"."usertype"; -CREATE TABLE "public"."usertype" ( - "UserType" int4 NOT NULL, - "TypeName" varchar(10) COLLATE "pg_catalog"."default" NOT NULL, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."usertype"."UserType" IS '客户类型ID'; -COMMENT ON COLUMN "public"."usertype"."TypeName" IS '客户类型名称'; -COMMENT ON COLUMN "public"."usertype"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."usertype"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."usertype"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."usertype"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."usertype"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."usertype" IS '用户类型表'; - --- ---------------------------- --- Table structure for vip_rule --- ---------------------------- -DROP TABLE IF EXISTS "public"."vip_rule"; -CREATE TABLE "public"."vip_rule" ( - "id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), - "rule_id" varchar(64) COLLATE "pg_catalog"."default" NOT NULL, - "rule_name" varchar(128) COLLATE "pg_catalog"."default" NOT NULL, - "rule_value" numeric(32,2) NOT NULL, - "type_id" int4 NOT NULL, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."vip_rule"."id" IS '索引ID'; -COMMENT ON COLUMN "public"."vip_rule"."rule_id" IS '会员规则流水号'; -COMMENT ON COLUMN "public"."vip_rule"."rule_name" IS '会员规则名称'; -COMMENT ON COLUMN "public"."vip_rule"."rule_value" IS '预设数值'; -COMMENT ON COLUMN "public"."vip_rule"."type_id" IS '会员等级'; -COMMENT ON COLUMN "public"."vip_rule"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."vip_rule"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."vip_rule"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."vip_rule"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."vip_rule"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."vip_rule" IS '会员等级规则表'; - --- ---------------------------- --- Table structure for worker --- ---------------------------- -DROP TABLE IF EXISTS "public"."worker"; -CREATE TABLE "public"."worker" ( - "WorkerId" varchar(12) COLLATE "pg_catalog"."default" NOT NULL, - "WorkerName" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, - "WorkerBirthday" timestamp(6) NOT NULL, - "WorkerSex" int4 NOT NULL, - "WorkerTel" varchar(300) COLLATE "pg_catalog"."default" NOT NULL, - "WorkerClub" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, - "WorkerNation" varchar(50) COLLATE "pg_catalog"."default" NOT NULL, - "WorkerAddress" varchar(600) COLLATE "pg_catalog"."default" NOT NULL, - "WorkerPosition" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, - "CardID" varchar(600) COLLATE "pg_catalog"."default" NOT NULL, - "WorkerPwd" varchar(600) COLLATE "pg_catalog"."default", - "WorkerTime" timestamp(6) NOT NULL, - "WorkerFace" varchar(20) COLLATE "pg_catalog"."default" NOT NULL, - "WorkerEducation" varchar(255) COLLATE "pg_catalog"."default" NOT NULL, - "delete_mk" int4, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."worker"."WorkerId" IS '工号'; -COMMENT ON COLUMN "public"."worker"."WorkerName" IS '名字'; -COMMENT ON COLUMN "public"."worker"."WorkerBirthday" IS '出生日期'; -COMMENT ON COLUMN "public"."worker"."WorkerSex" IS '性别'; -COMMENT ON COLUMN "public"."worker"."WorkerTel" IS '电话'; -COMMENT ON COLUMN "public"."worker"."WorkerClub" IS '部门'; -COMMENT ON COLUMN "public"."worker"."WorkerNation" IS '民族'; -COMMENT ON COLUMN "public"."worker"."WorkerAddress" IS '居住地址'; -COMMENT ON COLUMN "public"."worker"."WorkerPosition" IS '职位'; -COMMENT ON COLUMN "public"."worker"."CardID" IS '证件号码'; -COMMENT ON COLUMN "public"."worker"."WorkerPwd" IS '系统密码'; -COMMENT ON COLUMN "public"."worker"."WorkerTime" IS '入职时间'; -COMMENT ON COLUMN "public"."worker"."WorkerFace" IS '面貌'; -COMMENT ON COLUMN "public"."worker"."WorkerEducation" IS '学历'; -COMMENT ON COLUMN "public"."worker"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."worker"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."worker"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."worker"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."worker"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."worker" IS '员工表'; - --- ---------------------------- --- Table structure for workercheck --- ---------------------------- -DROP TABLE IF EXISTS "public"."workercheck"; -CREATE TABLE "public"."workercheck" ( - "Id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), - "WorkerNo" varchar(20) COLLATE "pg_catalog"."default", - "CheckTime" timestamp(6), - "CheckWay" varchar(80) COLLATE "pg_catalog"."default", - "CheckState" int4, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."workercheck"."Id" IS '自增长ID'; -COMMENT ON COLUMN "public"."workercheck"."WorkerNo" IS '工号'; -COMMENT ON COLUMN "public"."workercheck"."CheckTime" IS '打卡时间'; -COMMENT ON COLUMN "public"."workercheck"."CheckWay" IS '打卡方式'; -COMMENT ON COLUMN "public"."workercheck"."CheckState" IS '打卡状态'; -COMMENT ON COLUMN "public"."workercheck"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."workercheck"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."workercheck"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."workercheck"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."workercheck"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."workercheck" IS '员工打卡表'; - --- ---------------------------- --- Table structure for workergoodbad --- ---------------------------- -DROP TABLE IF EXISTS "public"."workergoodbad"; -CREATE TABLE "public"."workergoodbad" ( - "Id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), - "WorkNo" varchar(50) COLLATE "pg_catalog"."default", - "GBInfo" varchar(255) COLLATE "pg_catalog"."default", - "GBType" int4, - "GBOperation" varchar(200) COLLATE "pg_catalog"."default", - "GBTime" timestamp(6), - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."workergoodbad"."Id" IS '自增长ID'; -COMMENT ON COLUMN "public"."workergoodbad"."WorkNo" IS '工号'; -COMMENT ON COLUMN "public"."workergoodbad"."GBInfo" IS '奖惩信息'; -COMMENT ON COLUMN "public"."workergoodbad"."GBType" IS '奖惩类型'; -COMMENT ON COLUMN "public"."workergoodbad"."GBOperation" IS '录入人'; -COMMENT ON COLUMN "public"."workergoodbad"."GBTime" IS '录入时间'; -COMMENT ON COLUMN "public"."workergoodbad"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."workergoodbad"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."workergoodbad"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."workergoodbad"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."workergoodbad"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."workergoodbad" IS '员工奖惩记录表'; - --- ---------------------------- --- Table structure for workerhistory --- ---------------------------- -DROP TABLE IF EXISTS "public"."workerhistory"; -CREATE TABLE "public"."workerhistory" ( - "Id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), - "WorkerId" varchar(12) COLLATE "pg_catalog"."default" NOT NULL, - "StartDate" timestamp(6) NOT NULL, - "EndDate" timestamp(6) NOT NULL, - "Position" varchar(255) COLLATE "pg_catalog"."default" NOT NULL, - "Company" varchar(255) COLLATE "pg_catalog"."default" NOT NULL, - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."workerhistory"."Id" IS '自增长ID'; -COMMENT ON COLUMN "public"."workerhistory"."WorkerId" IS '工号'; -COMMENT ON COLUMN "public"."workerhistory"."StartDate" IS '开始时间'; -COMMENT ON COLUMN "public"."workerhistory"."EndDate" IS '结束时间'; -COMMENT ON COLUMN "public"."workerhistory"."Position" IS '职务'; -COMMENT ON COLUMN "public"."workerhistory"."Company" IS '公司'; -COMMENT ON COLUMN "public"."workerhistory"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."workerhistory"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."workerhistory"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."workerhistory"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."workerhistory"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."workerhistory" IS '员工履历表'; - --- ---------------------------- --- Table structure for workerpic --- ---------------------------- -DROP TABLE IF EXISTS "public"."workerpic"; -CREATE TABLE "public"."workerpic" ( - "Id" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), - "WorkerId" varchar(17) COLLATE "pg_catalog"."default", - "Pic" varchar(255) COLLATE "pg_catalog"."default" -) -; -COMMENT ON COLUMN "public"."workerpic"."Id" IS '自增长流水号'; -COMMENT ON COLUMN "public"."workerpic"."WorkerId" IS '工号'; -COMMENT ON COLUMN "public"."workerpic"."Pic" IS '照片路径'; - --- ---------------------------- --- Table structure for wtinfo --- ---------------------------- -DROP TABLE IF EXISTS "public"."wtinfo"; -CREATE TABLE "public"."wtinfo" ( - "WtiNo" int4 NOT NULL DEFAULT nextval('upms_log_id_seq'::regclass), - "RoomNo" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, - "UseDate" timestamp(6) NOT NULL, - "EndDate" timestamp(6), - "WaterUse" numeric(6,2) NOT NULL, - "PowerUse" numeric(6,2) NOT NULL, - "Record" varchar(8) COLLATE "pg_catalog"."default" NOT NULL, - "CustoNo" varchar(15) COLLATE "pg_catalog"."default", - "delete_mk" int4 NOT NULL, - "datains_usr" varchar(20) COLLATE "pg_catalog"."default", - "datains_date" date, - "datachg_usr" varchar(20) COLLATE "pg_catalog"."default", - "datachg_date" date -) -; -COMMENT ON COLUMN "public"."wtinfo"."WtiNo" IS '记录编号'; -COMMENT ON COLUMN "public"."wtinfo"."RoomNo" IS '房间编号'; -COMMENT ON COLUMN "public"."wtinfo"."UseDate" IS '开始时间'; -COMMENT ON COLUMN "public"."wtinfo"."EndDate" IS '结束时间'; -COMMENT ON COLUMN "public"."wtinfo"."WaterUse" IS '用水情况'; -COMMENT ON COLUMN "public"."wtinfo"."PowerUse" IS '用电情况'; -COMMENT ON COLUMN "public"."wtinfo"."Record" IS '记录人'; -COMMENT ON COLUMN "public"."wtinfo"."CustoNo" IS '客户编号'; -COMMENT ON COLUMN "public"."wtinfo"."delete_mk" IS '删除标记'; -COMMENT ON COLUMN "public"."wtinfo"."datains_usr" IS '资料创建人'; -COMMENT ON COLUMN "public"."wtinfo"."datains_date" IS '资料创建时间'; -COMMENT ON COLUMN "public"."wtinfo"."datachg_usr" IS '资料更新人'; -COMMENT ON COLUMN "public"."wtinfo"."datachg_date" IS '资料更新时间'; -COMMENT ON TABLE "public"."wtinfo" IS '水电费信息表'; - --- ---------------------------- --- Alter sequences owned by --- ---------------------------- -SELECT setval('"public"."upms_log_id_seq"', 55, true); - --- ---------------------------- --- Primary Key structure for table admininfo --- ---------------------------- -ALTER TABLE "public"."admininfo" ADD CONSTRAINT "admininfo_pkey" PRIMARY KEY ("Id", "AdminAccount"); - --- ---------------------------- --- Primary Key structure for table admintype --- ---------------------------- -ALTER TABLE "public"."admintype" ADD CONSTRAINT "admintype_pkey" PRIMARY KEY ("Id"); - --- ---------------------------- --- Primary Key structure for table applicationversion --- ---------------------------- -ALTER TABLE "public"."applicationversion" ADD CONSTRAINT "applicationversion_pkey" PRIMARY KEY ("base_versionId"); - --- ---------------------------- --- Primary Key structure for table backinfo --- ---------------------------- -ALTER TABLE "public"."backinfo" ADD CONSTRAINT "backinfo_pkey" PRIMARY KEY ("BackNo"); - --- ---------------------------- --- Primary Key structure for table base --- ---------------------------- -ALTER TABLE "public"."base" ADD CONSTRAINT "base_pkey" PRIMARY KEY ("url_no"); - --- ---------------------------- --- Primary Key structure for table cardcodes --- ---------------------------- -ALTER TABLE "public"."cardcodes" ADD CONSTRAINT "cardcodes_pkey" PRIMARY KEY ("id"); - --- ---------------------------- --- Primary Key structure for table cashinfo --- ---------------------------- -ALTER TABLE "public"."cashinfo" ADD CONSTRAINT "cashinfo_pkey" PRIMARY KEY ("CashNo"); - --- ---------------------------- --- Primary Key structure for table checkinfo --- ---------------------------- -ALTER TABLE "public"."checkinfo" ADD CONSTRAINT "checkinfo_pkey" PRIMARY KEY ("CheckNo"); - --- ---------------------------- --- Primary Key structure for table counterrule --- ---------------------------- -ALTER TABLE "public"."counterrule" ADD CONSTRAINT "counterrule_pkey" PRIMARY KEY ("rule_id"); - --- ---------------------------- --- Primary Key structure for table custospend --- ---------------------------- -ALTER TABLE "public"."custospend" ADD CONSTRAINT "custospend_pkey" PRIMARY KEY ("SpendId"); - --- ---------------------------- --- Primary Key structure for table dept --- ---------------------------- -ALTER TABLE "public"."dept" ADD CONSTRAINT "dept_pkey" PRIMARY KEY ("dept_no"); - --- ---------------------------- --- Primary Key structure for table education --- ---------------------------- -ALTER TABLE "public"."education" ADD CONSTRAINT "education_pkey" PRIMARY KEY ("education_no"); - --- ---------------------------- --- Primary Key structure for table fonts --- ---------------------------- -ALTER TABLE "public"."fonts" ADD CONSTRAINT "fonts_pkey" PRIMARY KEY ("FontsId"); - --- ---------------------------- --- Primary Key structure for table gbtype --- ---------------------------- -ALTER TABLE "public"."gbtype" ADD CONSTRAINT "gbtype_pkey" PRIMARY KEY ("GBTypeId"); - --- ---------------------------- --- Primary Key structure for table module --- ---------------------------- -ALTER TABLE "public"."module" ADD CONSTRAINT "module_pkey" PRIMARY KEY ("module_id"); - --- ---------------------------- --- Primary Key structure for table module_zero --- ---------------------------- -ALTER TABLE "public"."module_zero" ADD CONSTRAINT "module_zero_pkey" PRIMARY KEY ("module_id"); - --- ---------------------------- --- Primary Key structure for table nation --- ---------------------------- -ALTER TABLE "public"."nation" ADD CONSTRAINT "nation_pkey" PRIMARY KEY ("nation_no", "nation_name"); - --- ---------------------------- --- Primary Key structure for table operationlog --- ---------------------------- -ALTER TABLE "public"."operationlog" ADD CONSTRAINT "operationlog_pkey" PRIMARY KEY ("OperationId"); - --- ---------------------------- --- Primary Key structure for table passporttype --- ---------------------------- -ALTER TABLE "public"."passporttype" ADD CONSTRAINT "passporttype_pkey" PRIMARY KEY ("PassportId"); - --- ---------------------------- --- Primary Key structure for table position --- ---------------------------- -ALTER TABLE "public"."position" ADD CONSTRAINT "position_pkey" PRIMARY KEY ("position_no"); - --- ---------------------------- --- Primary Key structure for table reser --- ---------------------------- -ALTER TABLE "public"."reser" ADD CONSTRAINT "reser_pkey" PRIMARY KEY ("ReserId"); - --- ---------------------------- --- Primary Key structure for table room --- ---------------------------- -ALTER TABLE "public"."room" ADD CONSTRAINT "room_pkey" PRIMARY KEY ("RoomNo"); - --- ---------------------------- --- Primary Key structure for table roomstate --- ---------------------------- -ALTER TABLE "public"."roomstate" ADD CONSTRAINT "roomstate_pkey" PRIMARY KEY ("RoomStateId"); - --- ---------------------------- --- Primary Key structure for table roomtype --- ---------------------------- -ALTER TABLE "public"."roomtype" ADD CONSTRAINT "roomtype_pkey" PRIMARY KEY ("RoomType"); - --- ---------------------------- --- Primary Key structure for table sellthing --- ---------------------------- -ALTER TABLE "public"."sellthing" ADD CONSTRAINT "sellthing_pkey" PRIMARY KEY ("SellNo"); - --- ---------------------------- --- Primary Key structure for table sextype --- ---------------------------- -ALTER TABLE "public"."sextype" ADD CONSTRAINT "sextype_pkey" PRIMARY KEY ("sexId"); - --- ---------------------------- --- Primary Key structure for table uploadinfo --- ---------------------------- -ALTER TABLE "public"."uploadinfo" ADD CONSTRAINT "uploadinfo_pkey" PRIMARY KEY ("NoticeNo"); - --- ---------------------------- --- Primary Key structure for table user_log --- ---------------------------- -ALTER TABLE "public"."user_log" ADD CONSTRAINT "user_log_pkey" PRIMARY KEY ("id"); - --- ---------------------------- --- Primary Key structure for table userinfo --- ---------------------------- -ALTER TABLE "public"."userinfo" ADD CONSTRAINT "userinfo_pkey" PRIMARY KEY ("CustoNo"); - --- ---------------------------- --- Primary Key structure for table usertype --- ---------------------------- -ALTER TABLE "public"."usertype" ADD CONSTRAINT "usertype_pkey" PRIMARY KEY ("UserType"); - --- ---------------------------- --- Primary Key structure for table vip_rule --- ---------------------------- -ALTER TABLE "public"."vip_rule" ADD CONSTRAINT "vip_rule_pkey" PRIMARY KEY ("id", "rule_id"); - --- ---------------------------- --- Primary Key structure for table worker --- ---------------------------- -ALTER TABLE "public"."worker" ADD CONSTRAINT "worker_pkey" PRIMARY KEY ("WorkerId"); - --- ---------------------------- --- Primary Key structure for table workercheck --- ---------------------------- -ALTER TABLE "public"."workercheck" ADD CONSTRAINT "workercheck_pkey" PRIMARY KEY ("Id"); - --- ---------------------------- --- Primary Key structure for table workergoodbad --- ---------------------------- -ALTER TABLE "public"."workergoodbad" ADD CONSTRAINT "workergoodbad_pkey" PRIMARY KEY ("Id"); - --- ---------------------------- --- Primary Key structure for table workerhistory --- ---------------------------- -ALTER TABLE "public"."workerhistory" ADD CONSTRAINT "workerhistory_pkey" PRIMARY KEY ("Id"); - --- ---------------------------- --- Primary Key structure for table workerpic --- ---------------------------- -ALTER TABLE "public"."workerpic" ADD CONSTRAINT "workerpic_pkey" PRIMARY KEY ("Id"); - --- ---------------------------- --- Primary Key structure for table wtinfo --- ---------------------------- -ALTER TABLE "public"."wtinfo" ADD CONSTRAINT "wtinfo_pkey" PRIMARY KEY ("WtiNo"); -- Gitee